mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-16 08:44:38 +08:00
5964 lines
141 KiB
C
5964 lines
141 KiB
C
/*
|
|
*
|
|
* BlueZ - Bluetooth protocol stack for Linux
|
|
*
|
|
* Copyright (C) 2014 Intel Corporation. All rights reserved.
|
|
*
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <glib.h>
|
|
#include <errno.h>
|
|
#include <sys/socket.h>
|
|
|
|
#include "ipc.h"
|
|
#include "ipc-common.h"
|
|
#include "lib/sdp.h"
|
|
#include "lib/uuid.h"
|
|
#include "bluetooth.h"
|
|
#include "gatt.h"
|
|
#include "src/log.h"
|
|
#include "hal-msg.h"
|
|
#include "utils.h"
|
|
#include "src/shared/util.h"
|
|
#include "src/shared/queue.h"
|
|
#include "src/shared/gatt-db.h"
|
|
#include "attrib/gattrib.h"
|
|
#include "attrib/att.h"
|
|
#include "attrib/gatt.h"
|
|
#include "btio/btio.h"
|
|
|
|
/* set according to Android bt_gatt_client.h */
|
|
#define GATT_MAX_ATTR_LEN 600
|
|
|
|
#define GATT_SUCCESS 0x00000000
|
|
#define GATT_FAILURE 0x00000101
|
|
|
|
#define BASE_UUID16_OFFSET 12
|
|
|
|
#define GATT_PERM_READ 0x00000001
|
|
#define GATT_PERM_READ_ENCRYPTED 0x00000002
|
|
#define GATT_PERM_READ_MITM 0x00000004
|
|
#define GATT_PERM_READ_AUTHORIZATION 0x00000008
|
|
#define GATT_PERM_WRITE 0x00000100
|
|
#define GATT_PERM_WRITE_ENCRYPTED 0x00000200
|
|
#define GATT_PERM_WRITE_MITM 0x00000400
|
|
#define GATT_PERM_WRITE_AUTHORIZATION 0x00000800
|
|
#define GATT_PERM_WRITE_SIGNED 0x00010000
|
|
#define GATT_PERM_WRITE_SIGNED_MITM 0x00020000
|
|
|
|
static const uint8_t BLUETOOTH_UUID[] = {
|
|
0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80,
|
|
0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
|
|
};
|
|
|
|
typedef enum {
|
|
DEVICE_DISCONNECTED = 0,
|
|
DEVICE_CONNECT_INIT, /* connection procedure initiated */
|
|
DEVICE_CONNECT_READY, /* dev found during LE scan */
|
|
DEVICE_CONNECTED, /* connection has been established */
|
|
} gatt_device_state_t;
|
|
|
|
static const char const *device_state_str[] = {
|
|
"DISCONNECTED",
|
|
"CONNECT INIT",
|
|
"CONNECT READY",
|
|
"CONNECTED",
|
|
};
|
|
|
|
typedef enum {
|
|
APP_CLIENT,
|
|
APP_SERVER,
|
|
} gatt_app_type_t;
|
|
|
|
struct pending_trans_data {
|
|
unsigned int id;
|
|
uint8_t opcode;
|
|
};
|
|
|
|
struct gatt_app {
|
|
int32_t id;
|
|
uint8_t uuid[16];
|
|
|
|
gatt_app_type_t type;
|
|
|
|
/* Valid for client applications */
|
|
struct queue *notifications;
|
|
};
|
|
|
|
struct element_id {
|
|
bt_uuid_t uuid;
|
|
uint8_t instance;
|
|
};
|
|
|
|
struct descriptor {
|
|
struct element_id id;
|
|
uint16_t handle;
|
|
};
|
|
|
|
struct characteristic {
|
|
struct element_id id;
|
|
struct gatt_char ch;
|
|
uint16_t end_handle;
|
|
|
|
struct queue *descriptors;
|
|
};
|
|
|
|
struct service {
|
|
struct element_id id;
|
|
struct gatt_primary prim;
|
|
struct gatt_included incl;
|
|
|
|
bool primary;
|
|
|
|
struct queue *chars;
|
|
struct queue *included; /* Valid only for primary services */
|
|
bool incl_search_done;
|
|
};
|
|
|
|
struct notification_data {
|
|
struct hal_gatt_srvc_id service;
|
|
struct hal_gatt_gatt_id ch;
|
|
struct app_connection *conn;
|
|
guint notif_id;
|
|
guint ind_id;
|
|
int ref;
|
|
};
|
|
|
|
struct gatt_device {
|
|
bdaddr_t bdaddr;
|
|
uint8_t bdaddr_type;
|
|
|
|
gatt_device_state_t state;
|
|
|
|
GAttrib *attrib;
|
|
GIOChannel *att_io;
|
|
struct queue *services;
|
|
bool partial_srvc_search;
|
|
|
|
guint watch_id;
|
|
guint server_id;
|
|
|
|
int ref;
|
|
int conn_cnt;
|
|
|
|
struct queue *pending_requests;
|
|
};
|
|
|
|
struct app_connection {
|
|
struct gatt_device *device;
|
|
struct gatt_app *app;
|
|
struct queue *transactions;
|
|
int32_t id;
|
|
|
|
bool wait_execute_write;
|
|
};
|
|
|
|
static struct ipc *hal_ipc = NULL;
|
|
static bdaddr_t adapter_addr;
|
|
static bool scanning = false;
|
|
static unsigned int advertising_cnt = 0;
|
|
|
|
static struct queue *gatt_apps = NULL;
|
|
static struct queue *gatt_devices = NULL;
|
|
static struct queue *app_connections = NULL;
|
|
|
|
static struct queue *listen_apps = NULL;
|
|
static struct gatt_db *gatt_db = NULL;
|
|
|
|
static uint16_t service_changed_handle = 0;
|
|
|
|
static GIOChannel *listening_io = NULL;
|
|
|
|
static struct bt_crypto *crypto = NULL;
|
|
|
|
static int test_client_if = 0;
|
|
static const uint8_t TEST_UUID[] = {
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04
|
|
};
|
|
|
|
static void bt_le_discovery_stop_cb(void);
|
|
|
|
static bool is_bluetooth_uuid(const uint8_t *uuid)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < 16; i++) {
|
|
/* ignore minimal uuid (16) value */
|
|
if (i == 12 || i == 13)
|
|
continue;
|
|
|
|
if (uuid[i] != BLUETOOTH_UUID[i])
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static void android2uuid(const uint8_t *uuid, bt_uuid_t *dst)
|
|
{
|
|
if (is_bluetooth_uuid(uuid)) {
|
|
/* copy 16 bit uuid value from full android 128bit uuid */
|
|
dst->type = BT_UUID16;
|
|
dst->value.u16 = (uuid[13] << 8) + uuid[12];
|
|
} else {
|
|
int i;
|
|
|
|
dst->type = BT_UUID128;
|
|
for (i = 0; i < 16; i++)
|
|
dst->value.u128.data[i] = uuid[15 - i];
|
|
}
|
|
}
|
|
|
|
static void uuid2android(const bt_uuid_t *src, uint8_t *uuid)
|
|
{
|
|
bt_uuid_t uu128;
|
|
uint8_t i;
|
|
|
|
if (src->type != BT_UUID128) {
|
|
bt_uuid_to_uuid128(src, &uu128);
|
|
src = &uu128;
|
|
}
|
|
|
|
for (i = 0; i < 16; i++)
|
|
uuid[15 - i] = src->value.u128.data[i];
|
|
}
|
|
|
|
static void hal_srvc_id_to_element_id(const struct hal_gatt_srvc_id *from,
|
|
struct element_id *to)
|
|
{
|
|
to->instance = from->inst_id;
|
|
android2uuid(from->uuid, &to->uuid);
|
|
}
|
|
|
|
static void element_id_to_hal_srvc_id(const struct element_id *from,
|
|
uint8_t primary,
|
|
struct hal_gatt_srvc_id *to)
|
|
{
|
|
to->is_primary = primary;
|
|
to->inst_id = from->instance;
|
|
uuid2android(&from->uuid, to->uuid);
|
|
}
|
|
|
|
static void hal_gatt_id_to_element_id(const struct hal_gatt_gatt_id *from,
|
|
struct element_id *to)
|
|
{
|
|
to->instance = from->inst_id;
|
|
android2uuid(from->uuid, &to->uuid);
|
|
}
|
|
|
|
static void element_id_to_hal_gatt_id(const struct element_id *from,
|
|
struct hal_gatt_gatt_id *to)
|
|
{
|
|
to->inst_id = from->instance;
|
|
uuid2android(&from->uuid, to->uuid);
|
|
}
|
|
|
|
static void destroy_characteristic(void *data)
|
|
{
|
|
struct characteristic *chars = data;
|
|
|
|
if (!chars)
|
|
return;
|
|
|
|
queue_destroy(chars->descriptors, free);
|
|
free(chars);
|
|
}
|
|
|
|
static void destroy_service(void *data)
|
|
{
|
|
struct service *srvc = data;
|
|
|
|
if (!srvc)
|
|
return;
|
|
|
|
queue_destroy(srvc->chars, destroy_characteristic);
|
|
|
|
/*
|
|
* Included services we keep on two queues.
|
|
* 1. On the same queue with primary services.
|
|
* 2. On the queue inside primary service.
|
|
* So we need to free service memory only once but we need to destroy
|
|
* two queues
|
|
*/
|
|
if (srvc->primary)
|
|
queue_destroy(srvc->included, NULL);
|
|
|
|
free(srvc);
|
|
}
|
|
|
|
static bool match_app_by_uuid(const void *data, const void *user_data)
|
|
{
|
|
const uint8_t *exp_uuid = user_data;
|
|
const struct gatt_app *client = data;
|
|
|
|
return !memcmp(exp_uuid, client->uuid, sizeof(client->uuid));
|
|
}
|
|
|
|
static bool match_app_by_id(const void *data, const void *user_data)
|
|
{
|
|
int32_t exp_id = PTR_TO_INT(user_data);
|
|
const struct gatt_app *client = data;
|
|
|
|
return client->id == exp_id;
|
|
}
|
|
|
|
static struct gatt_app *find_app_by_id(int32_t id)
|
|
{
|
|
return queue_find(gatt_apps, match_app_by_id, INT_TO_PTR(id));
|
|
}
|
|
|
|
static bool match_by_value(const void *data, const void *user_data)
|
|
{
|
|
return data == user_data;
|
|
}
|
|
|
|
static bool match_device_by_bdaddr(const void *data, const void *user_data)
|
|
{
|
|
const struct gatt_device *dev = data;
|
|
const bdaddr_t *addr = user_data;
|
|
|
|
return !bacmp(&dev->bdaddr, addr);
|
|
}
|
|
|
|
static bool match_device_by_state(const void *data, const void *user_data)
|
|
{
|
|
const struct gatt_device *dev = data;
|
|
|
|
if (dev->state != PTR_TO_UINT(user_data))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool match_pending_device(const void *data, const void *user_data)
|
|
{
|
|
const struct gatt_device *dev = data;
|
|
|
|
if ((dev->state == DEVICE_CONNECT_INIT) ||
|
|
(dev->state == DEVICE_CONNECT_READY))
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
static bool match_connection_by_id(const void *data, const void *user_data)
|
|
{
|
|
const struct app_connection *conn = data;
|
|
const int32_t id = PTR_TO_INT(user_data);
|
|
|
|
return conn->id == id;
|
|
}
|
|
|
|
static bool match_connection_by_device_and_app(const void *data,
|
|
const void *user_data)
|
|
{
|
|
const struct app_connection *conn = data;
|
|
const struct app_connection *match = user_data;
|
|
|
|
return conn->device == match->device && conn->app == match->app;
|
|
}
|
|
|
|
static struct app_connection *find_connection_by_id(int32_t conn_id)
|
|
{
|
|
struct app_connection *conn;
|
|
|
|
conn = queue_find(app_connections, match_connection_by_id,
|
|
INT_TO_PTR(conn_id));
|
|
if (conn && conn->device->state == DEVICE_CONNECTED)
|
|
return conn;
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static bool match_connection_by_device(const void *data, const void *user_data)
|
|
{
|
|
const struct app_connection *conn = data;
|
|
const struct gatt_device *dev = user_data;
|
|
|
|
return conn->device == dev;
|
|
}
|
|
|
|
static bool match_connection_by_app(const void *data, const void *user_data)
|
|
{
|
|
const struct app_connection *conn = data;
|
|
const struct gatt_app *app = user_data;
|
|
|
|
return conn->app == app;
|
|
}
|
|
|
|
static struct gatt_device *find_device_by_addr(const bdaddr_t *addr)
|
|
{
|
|
return queue_find(gatt_devices, match_device_by_bdaddr, addr);
|
|
}
|
|
|
|
static struct gatt_device *find_pending_device()
|
|
{
|
|
return queue_find(gatt_devices, match_pending_device, NULL);
|
|
}
|
|
|
|
static struct gatt_device *find_device_by_state(uint32_t state)
|
|
{
|
|
return queue_find(gatt_devices, match_device_by_state,
|
|
UINT_TO_PTR(state));
|
|
}
|
|
|
|
static bool match_srvc_by_element_id(const void *data, const void *user_data)
|
|
{
|
|
const struct element_id *exp_id = user_data;
|
|
const struct service *service = data;
|
|
|
|
if (service->id.instance == exp_id->instance)
|
|
return !bt_uuid_cmp(&service->id.uuid, &exp_id->uuid);
|
|
|
|
return false;
|
|
}
|
|
|
|
static bool match_srvc_by_higher_inst_id(const void *data,
|
|
const void *user_data)
|
|
{
|
|
const struct service *s = data;
|
|
uint8_t inst_id = PTR_TO_INT(user_data);
|
|
|
|
/* For now we match inst_id as it is unique */
|
|
return inst_id < s->id.instance;
|
|
}
|
|
|
|
static bool match_srvc_by_bt_uuid(const void *data, const void *user_data)
|
|
{
|
|
const bt_uuid_t *exp_uuid = user_data;
|
|
const struct service *service = data;
|
|
|
|
return !bt_uuid_cmp(exp_uuid, &service->id.uuid);
|
|
}
|
|
|
|
static bool match_srvc_by_range(const void *data, const void *user_data)
|
|
{
|
|
const struct service *srvc = data;
|
|
const struct att_range *range = user_data;
|
|
|
|
return !memcmp(&srvc->prim.range, range, sizeof(srvc->prim.range));
|
|
}
|
|
|
|
static bool match_char_by_higher_inst_id(const void *data,
|
|
const void *user_data)
|
|
{
|
|
const struct characteristic *ch = data;
|
|
uint8_t inst_id = PTR_TO_INT(user_data);
|
|
|
|
/* For now we match inst_id as it is unique, we'll match uuids later */
|
|
return inst_id < ch->id.instance;
|
|
}
|
|
|
|
static bool match_descr_by_element_id(const void *data, const void *user_data)
|
|
{
|
|
const struct element_id *exp_id = user_data;
|
|
const struct descriptor *descr = data;
|
|
|
|
if (exp_id->instance == descr->id.instance)
|
|
return !bt_uuid_cmp(&descr->id.uuid, &exp_id->uuid);
|
|
|
|
return false;
|
|
}
|
|
|
|
static bool match_descr_by_higher_inst_id(const void *data,
|
|
const void *user_data)
|
|
{
|
|
const struct descriptor *descr = data;
|
|
uint8_t instance = PTR_TO_INT(user_data);
|
|
|
|
/* For now we match instance as it is unique */
|
|
return instance < descr->id.instance;
|
|
}
|
|
|
|
static bool match_notification(const void *a, const void *b)
|
|
{
|
|
const struct notification_data *a1 = a;
|
|
const struct notification_data *b1 = b;
|
|
|
|
if (a1->conn != b1->conn)
|
|
return false;
|
|
|
|
if (memcmp(&a1->ch, &b1->ch, sizeof(a1->ch)))
|
|
return false;
|
|
|
|
if (memcmp(&a1->service, &b1->service, sizeof(a1->service)))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool match_char_by_element_id(const void *data, const void *user_data)
|
|
{
|
|
const struct element_id *exp_id = user_data;
|
|
const struct characteristic *chars = data;
|
|
|
|
if (exp_id->instance == chars->id.instance)
|
|
return !bt_uuid_cmp(&chars->id.uuid, &exp_id->uuid);
|
|
|
|
return false;
|
|
}
|
|
|
|
static void destroy_notification(void *data)
|
|
{
|
|
struct notification_data *notification = data;
|
|
struct gatt_app *app;
|
|
|
|
if (--notification->ref)
|
|
return;
|
|
|
|
app = notification->conn->app;
|
|
queue_remove_if(app->notifications, match_notification, notification);
|
|
free(notification);
|
|
}
|
|
|
|
static void unregister_notification(void *data)
|
|
{
|
|
struct notification_data *notification = data;
|
|
struct gatt_device *dev = notification->conn->device;
|
|
|
|
/*
|
|
* No device means it was already disconnected and client cleanup was
|
|
* triggered afterwards, but once client unregisters, device stays if
|
|
* used by others. Then just unregister single handle.
|
|
*/
|
|
if (!queue_find(gatt_devices, match_by_value, dev))
|
|
return;
|
|
|
|
if (notification->notif_id && dev)
|
|
g_attrib_unregister(dev->attrib, notification->notif_id);
|
|
|
|
if (notification->ind_id && dev)
|
|
g_attrib_unregister(dev->attrib, notification->ind_id);
|
|
}
|
|
|
|
static void device_set_state(struct gatt_device *dev, uint32_t state)
|
|
{
|
|
char bda[18];
|
|
|
|
ba2str(&dev->bdaddr, bda);
|
|
DBG("gatt: Device %s state changed %s -> %s", bda,
|
|
device_state_str[dev->state], device_state_str[state]);
|
|
|
|
dev->state = state;
|
|
}
|
|
|
|
static void connection_cleanup(struct gatt_device *device)
|
|
{
|
|
if (device->watch_id) {
|
|
g_source_remove(device->watch_id);
|
|
device->watch_id = 0;
|
|
}
|
|
|
|
if (device->att_io) {
|
|
g_io_channel_shutdown(device->att_io, FALSE, NULL);
|
|
g_io_channel_unref(device->att_io);
|
|
device->att_io = NULL;
|
|
}
|
|
|
|
if (device->attrib) {
|
|
GAttrib *attrib = device->attrib;
|
|
|
|
if (device->server_id > 0)
|
|
g_attrib_unregister(device->attrib, device->server_id);
|
|
|
|
device->attrib = NULL;
|
|
g_attrib_cancel_all(attrib);
|
|
g_attrib_unref(attrib);
|
|
}
|
|
|
|
/*
|
|
* If device was in connection_pending or connectable state we
|
|
* search device list if we should stop the scan.
|
|
*/
|
|
if (!scanning && (device->state == DEVICE_CONNECT_INIT ||
|
|
device->state == DEVICE_CONNECT_READY)) {
|
|
if (!find_pending_device())
|
|
bt_le_discovery_stop(NULL);
|
|
}
|
|
|
|
/* If device is not bonded service cache should be refreshed */
|
|
if (!bt_device_is_bonded(&device->bdaddr))
|
|
queue_remove_all(device->services, NULL, NULL, destroy_service);
|
|
|
|
device_set_state(device, DEVICE_DISCONNECTED);
|
|
}
|
|
|
|
static void destroy_gatt_app(void *data)
|
|
{
|
|
struct gatt_app *app = data;
|
|
|
|
/*
|
|
* First we want to get all notifications and unregister them.
|
|
* We don't pass unregister_notification to queue_destroy,
|
|
* because destroy notification performs operations on queue
|
|
* too. So remove all elements and then destroy queue.
|
|
*/
|
|
|
|
if (app->type == APP_CLIENT)
|
|
while (queue_peek_head(app->notifications)) {
|
|
struct notification_data *notification;
|
|
|
|
notification = queue_pop_head(app->notifications);
|
|
unregister_notification(notification);
|
|
}
|
|
|
|
queue_destroy(app->notifications, free);
|
|
|
|
free(app);
|
|
}
|
|
|
|
static int register_app(const uint8_t *uuid, gatt_app_type_t app_type)
|
|
{
|
|
static int32_t application_id = 1;
|
|
struct gatt_app *app;
|
|
|
|
if (queue_find(gatt_apps, match_app_by_uuid, uuid)) {
|
|
error("gatt: app uuid is already on list");
|
|
return 0;
|
|
}
|
|
|
|
app = new0(struct gatt_app, 1);
|
|
if (!app) {
|
|
error("gatt: Cannot allocate memory for registering app");
|
|
return 0;
|
|
}
|
|
|
|
app->type = app_type;
|
|
|
|
if (app->type == APP_CLIENT) {
|
|
app->notifications = queue_new();
|
|
if (!app->notifications) {
|
|
error("gatt: couldn't allocate notifications queue");
|
|
destroy_gatt_app(app);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
memcpy(app->uuid, uuid, sizeof(app->uuid));
|
|
|
|
app->id = application_id++;
|
|
|
|
if (!queue_push_head(gatt_apps, app)) {
|
|
error("gatt: Cannot push app on the list");
|
|
destroy_gatt_app(app);
|
|
return 0;
|
|
}
|
|
|
|
if ((app->type == APP_SERVER) &&
|
|
!queue_push_tail(listen_apps, INT_TO_PTR(app->id))) {
|
|
error("gatt: Cannot push server on the list");
|
|
destroy_gatt_app(app);
|
|
return 0;
|
|
}
|
|
|
|
return app->id;
|
|
}
|
|
|
|
static void handle_client_register(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_register *cmd = buf;
|
|
struct hal_ev_gatt_client_register_client ev;
|
|
|
|
DBG("");
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
|
|
ev.client_if = register_app(cmd->uuid, APP_CLIENT);
|
|
|
|
if (ev.client_if)
|
|
ev.status = GATT_SUCCESS;
|
|
else
|
|
ev.status = GATT_FAILURE;
|
|
|
|
/* We should send notification with given in cmd UUID */
|
|
memcpy(ev.app_uuid, cmd->uuid, sizeof(ev.app_uuid));
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_CLIENT_REGISTER_CLIENT, sizeof(ev), &ev);
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT, HAL_OP_GATT_CLIENT_REGISTER,
|
|
HAL_STATUS_SUCCESS);
|
|
}
|
|
|
|
static void send_client_disconnection_notify(struct app_connection *connection,
|
|
int32_t status)
|
|
{
|
|
struct hal_ev_gatt_client_disconnect ev;
|
|
|
|
ev.client_if = connection->app->id;
|
|
ev.conn_id = connection->id;
|
|
ev.status = status;
|
|
|
|
bdaddr2android(&connection->device->bdaddr, &ev.bda);
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_CLIENT_DISCONNECT, sizeof(ev), &ev);
|
|
}
|
|
|
|
static void send_client_connection_notify(struct app_connection *connection,
|
|
int32_t status)
|
|
{
|
|
struct hal_ev_gatt_client_connect ev;
|
|
|
|
ev.client_if = connection->app->id;
|
|
ev.conn_id = connection->id;
|
|
ev.status = status;
|
|
|
|
bdaddr2android(&connection->device->bdaddr, &ev.bda);
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT, HAL_EV_GATT_CLIENT_CONNECT,
|
|
sizeof(ev), &ev);
|
|
}
|
|
|
|
static void send_server_connection_notify(struct app_connection *connection,
|
|
bool connected)
|
|
{
|
|
struct hal_ev_gatt_server_connection ev;
|
|
|
|
ev.server_if = connection->app->id;
|
|
ev.conn_id = connection->id;
|
|
ev.connected = connected;
|
|
|
|
bdaddr2android(&connection->device->bdaddr, &ev.bdaddr);
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_SERVER_CONNECTION, sizeof(ev), &ev);
|
|
}
|
|
|
|
static void send_app_disconnect_notify(struct app_connection *connection,
|
|
int32_t status)
|
|
{
|
|
if (connection->app->type == APP_CLIENT)
|
|
send_client_disconnection_notify(connection, status);
|
|
else
|
|
send_server_connection_notify(connection, !!status);
|
|
}
|
|
|
|
static void send_app_connect_notify(struct app_connection *connection,
|
|
int32_t status)
|
|
{
|
|
if (connection->app->type == APP_CLIENT)
|
|
send_client_connection_notify(connection, status);
|
|
else
|
|
send_server_connection_notify(connection, !status);
|
|
}
|
|
|
|
static void disconnect_notify_by_device(void *data, void *user_data)
|
|
{
|
|
struct app_connection *conn = data;
|
|
struct gatt_device *dev = user_data;
|
|
|
|
if (dev != conn->device)
|
|
return;
|
|
|
|
if (dev->state == DEVICE_CONNECTED)
|
|
send_app_disconnect_notify(conn, GATT_SUCCESS);
|
|
else if (dev->state == DEVICE_CONNECT_INIT ||
|
|
dev->state == DEVICE_CONNECT_READY)
|
|
send_app_connect_notify(conn, GATT_FAILURE);
|
|
}
|
|
|
|
enum pend_req_state {
|
|
REQUEST_INIT,
|
|
REQUEST_PENDING,
|
|
REQUEST_DONE,
|
|
};
|
|
|
|
struct pending_request {
|
|
uint16_t handle;
|
|
int length;
|
|
uint8_t *value;
|
|
uint16_t offset;
|
|
|
|
uint8_t *filter_value;
|
|
uint16_t filter_vlen;
|
|
|
|
enum pend_req_state state;
|
|
uint8_t error;
|
|
};
|
|
|
|
static void destroy_pending_request(void *data)
|
|
{
|
|
struct pending_request *entry = data;
|
|
|
|
free(entry->value);
|
|
free(entry->filter_value);
|
|
free(entry);
|
|
}
|
|
|
|
static void destroy_device(void *data)
|
|
{
|
|
struct gatt_device *dev = data;
|
|
|
|
if (!dev)
|
|
return;
|
|
|
|
queue_destroy(dev->services, destroy_service);
|
|
queue_destroy(dev->pending_requests, destroy_pending_request);
|
|
|
|
free(dev);
|
|
}
|
|
|
|
static struct gatt_device *device_ref(struct gatt_device *device)
|
|
{
|
|
if (!device)
|
|
return NULL;
|
|
|
|
device->ref++;
|
|
|
|
return device;
|
|
}
|
|
|
|
static void device_unref(struct gatt_device *device)
|
|
{
|
|
if (!device)
|
|
return;
|
|
|
|
if (--device->ref)
|
|
return;
|
|
|
|
destroy_device(device);
|
|
}
|
|
|
|
static void destroy_app_connection(void *data)
|
|
{
|
|
struct app_connection *conn = data;
|
|
|
|
if (!queue_find(gatt_devices, match_by_value, conn->device))
|
|
goto cleanup;
|
|
|
|
conn->device->conn_cnt--;
|
|
if (conn->device->conn_cnt == 0)
|
|
connection_cleanup(conn->device);
|
|
|
|
cleanup:
|
|
queue_destroy(conn->transactions, free);
|
|
device_unref(conn->device);
|
|
free(conn);
|
|
}
|
|
|
|
static void device_disconnect_clients(struct gatt_device *dev)
|
|
{
|
|
/* Notify disconnection to all clients */
|
|
queue_foreach(app_connections, disconnect_notify_by_device, dev);
|
|
|
|
/* Remove all clients by given device's */
|
|
queue_remove_all(app_connections, match_connection_by_device, dev,
|
|
destroy_app_connection);
|
|
}
|
|
|
|
static void send_client_primary_notify(void *data, void *user_data)
|
|
{
|
|
struct hal_ev_gatt_client_search_result ev;
|
|
struct service *p = data;
|
|
int32_t conn_id = PTR_TO_INT(user_data);
|
|
|
|
/* In service queue we will have also included services */
|
|
if (!p->primary)
|
|
return;
|
|
|
|
ev.conn_id = conn_id;
|
|
element_id_to_hal_srvc_id(&p->id, 1, &ev.srvc_id);
|
|
|
|
uuid2android(&p->id.uuid, ev.srvc_id.uuid);
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_CLIENT_SEARCH_RESULT, sizeof(ev), &ev);
|
|
}
|
|
|
|
static struct service *create_service(uint8_t id, bool primary, char *uuid,
|
|
void *data)
|
|
{
|
|
struct service *s;
|
|
|
|
s = new0(struct service, 1);
|
|
if (!s) {
|
|
error("gatt: Cannot allocate memory for gatt_primary");
|
|
return NULL;
|
|
}
|
|
|
|
s->chars = queue_new();
|
|
if (!s->chars) {
|
|
error("gatt: Cannot allocate memory for char cache");
|
|
free(s);
|
|
return NULL;
|
|
}
|
|
|
|
if (bt_string_to_uuid(&s->id.uuid, uuid) < 0) {
|
|
error("gatt: Cannot convert string to uuid");
|
|
queue_destroy(s->chars, NULL);
|
|
free(s);
|
|
return NULL;
|
|
}
|
|
|
|
s->id.instance = id;
|
|
|
|
/* Put primary service to our local list */
|
|
s->primary = primary;
|
|
if (s->primary) {
|
|
memcpy(&s->prim, data, sizeof(s->prim));
|
|
} else {
|
|
memcpy(&s->incl, data, sizeof(s->incl));
|
|
return s;
|
|
}
|
|
|
|
/* For primary service allocate queue for included services */
|
|
s->included = queue_new();
|
|
if (!s->included) {
|
|
queue_destroy(s->chars, NULL);
|
|
free(s);
|
|
return NULL;
|
|
}
|
|
|
|
return s;
|
|
}
|
|
|
|
static void le_device_found_handler(const bdaddr_t *addr, uint8_t addr_type,
|
|
int rssi, uint16_t eir_len,
|
|
const void *eir,
|
|
bool discoverable, bool bonded)
|
|
{
|
|
uint8_t buf[IPC_MTU];
|
|
struct hal_ev_gatt_client_scan_result *ev = (void *) buf;
|
|
struct gatt_device *dev;
|
|
char bda[18];
|
|
|
|
if (!scanning || (!discoverable && !bonded))
|
|
goto connect;
|
|
|
|
ba2str(addr, bda);
|
|
DBG("LE Device found: %s, rssi: %d, adv_data: %d", bda, rssi, !!eir);
|
|
|
|
bdaddr2android(addr, ev->bda);
|
|
ev->rssi = rssi;
|
|
ev->len = eir_len;
|
|
|
|
memcpy(ev->adv_data, eir, ev->len);
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_CLIENT_SCAN_RESULT,
|
|
sizeof(*ev) + ev->len, ev);
|
|
|
|
connect:
|
|
dev = find_device_by_addr(addr);
|
|
if (!dev || (dev->state != DEVICE_CONNECT_INIT))
|
|
return;
|
|
|
|
device_set_state(dev, DEVICE_CONNECT_READY);
|
|
dev->bdaddr_type = addr_type;
|
|
|
|
/*
|
|
* We are ok to perform connect now. Stop discovery
|
|
* and once it is stopped continue with creating ACL
|
|
*/
|
|
bt_le_discovery_stop(bt_le_discovery_stop_cb);
|
|
}
|
|
|
|
static gboolean disconnected_cb(GIOChannel *io, GIOCondition cond,
|
|
gpointer user_data)
|
|
{
|
|
struct gatt_device *dev = user_data;
|
|
int sock, err = 0;
|
|
socklen_t len;
|
|
|
|
sock = g_io_channel_unix_get_fd(io);
|
|
len = sizeof(err);
|
|
if (!getsockopt(sock, SOL_SOCKET, SO_ERROR, &err, &len))
|
|
DBG("%s (%d)", strerror(err), err);
|
|
|
|
device_disconnect_clients(dev);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
struct connect_data {
|
|
struct gatt_device *dev;
|
|
int32_t status;
|
|
};
|
|
|
|
static void send_app_connect_notifications(void *data, void *user_data)
|
|
{
|
|
struct app_connection *conn = data;
|
|
struct connect_data *con_data = user_data;
|
|
|
|
if (conn->device == con_data->dev)
|
|
send_app_connect_notify(conn, con_data->status);
|
|
}
|
|
|
|
static void att_handler(const uint8_t *ipdu, uint16_t len, gpointer user_data);
|
|
|
|
static void exchange_mtu_cb(guint8 status, const guint8 *pdu, guint16 plen,
|
|
gpointer user_data)
|
|
{
|
|
struct gatt_device *device = user_data;
|
|
GIOChannel *io;
|
|
GError *gerr = NULL;
|
|
uint16_t rmtu, mtu, imtu;
|
|
|
|
if (status) {
|
|
error("gatt: MTU exchange: %s", att_ecode2str(status));
|
|
goto failed;
|
|
}
|
|
|
|
if (!dec_mtu_resp(pdu, plen, &rmtu)) {
|
|
error("gatt: MTU exchange: protocol error");
|
|
goto failed;
|
|
}
|
|
|
|
if (rmtu < ATT_DEFAULT_LE_MTU) {
|
|
error("gatt: MTU exchange: mtu error");
|
|
goto failed;
|
|
}
|
|
|
|
io = g_attrib_get_channel(device->attrib);
|
|
|
|
bt_io_get(io, &gerr, BT_IO_OPT_IMTU, &imtu, BT_IO_OPT_INVALID);
|
|
if (gerr) {
|
|
error("gatt: Could not get imtu: %s", gerr->message);
|
|
g_error_free(gerr);
|
|
|
|
return;
|
|
}
|
|
|
|
mtu = MIN(rmtu, imtu);
|
|
if (mtu != imtu && !g_attrib_set_mtu(device->attrib, mtu)) {
|
|
error("gatt: MTU exchange failed");
|
|
goto failed;
|
|
}
|
|
|
|
DBG("MTU exchange succeeded: rmtu:%d, old mtu:%d, new mtu:%d", rmtu,
|
|
imtu, mtu);
|
|
|
|
failed:
|
|
device_unref(device);
|
|
}
|
|
|
|
static void send_exchange_mtu_request(struct gatt_device *device)
|
|
{
|
|
GIOChannel *io;
|
|
GError *gerr = NULL;
|
|
uint16_t imtu;
|
|
|
|
io = g_attrib_get_channel(device->attrib);
|
|
|
|
bt_io_get(io, &gerr, BT_IO_OPT_IMTU, &imtu, BT_IO_OPT_INVALID);
|
|
if (gerr) {
|
|
error("gatt: Could not get imtu: %s", gerr->message);
|
|
g_error_free(gerr);
|
|
|
|
return;
|
|
}
|
|
|
|
if (!gatt_exchange_mtu(device->attrib, imtu, exchange_mtu_cb,
|
|
device_ref(device)))
|
|
device_unref(device);
|
|
}
|
|
|
|
static void notify_att_range_change(struct gatt_device *dev,
|
|
struct att_range *range)
|
|
{
|
|
uint16_t length = 0;
|
|
uint16_t ccc;
|
|
uint8_t *pdu;
|
|
size_t mtu;
|
|
|
|
ccc = bt_get_gatt_ccc(&dev->bdaddr);
|
|
if (!ccc)
|
|
return;
|
|
|
|
pdu = g_attrib_get_buffer(dev->attrib, &mtu);
|
|
|
|
switch (ccc) {
|
|
case 0x0001:
|
|
length = enc_notification(service_changed_handle,
|
|
(uint8_t *) range,
|
|
sizeof(*range), pdu, mtu);
|
|
break;
|
|
case 0x0002:
|
|
length = enc_indication(service_changed_handle,
|
|
(uint8_t *) range, sizeof(*range), pdu,
|
|
mtu);
|
|
break;
|
|
default:
|
|
/* 0xfff4 reserved for future use */
|
|
break;
|
|
}
|
|
|
|
if (length)
|
|
g_attrib_send(dev->attrib, 0, pdu, length, NULL, NULL, NULL);
|
|
}
|
|
|
|
static void connect_cb(GIOChannel *io, GError *gerr, gpointer user_data)
|
|
{
|
|
struct gatt_device *dev = user_data;
|
|
struct connect_data data;
|
|
struct att_range range;
|
|
uint32_t status;
|
|
GAttrib *attrib;
|
|
|
|
if (dev->state != DEVICE_CONNECT_READY) {
|
|
error("gatt: Device not in a connecting state!?");
|
|
g_io_channel_shutdown(io, TRUE, NULL);
|
|
return;
|
|
}
|
|
|
|
if (dev->att_io) {
|
|
g_io_channel_unref(dev->att_io);
|
|
dev->att_io = NULL;
|
|
}
|
|
|
|
if (gerr) {
|
|
error("gatt: connection failed %s", gerr->message);
|
|
device_set_state(dev, DEVICE_DISCONNECTED);
|
|
status = GATT_FAILURE;
|
|
goto reply;
|
|
}
|
|
|
|
attrib = g_attrib_new(io);
|
|
if (!attrib) {
|
|
error("gatt: unable to create new GAttrib instance");
|
|
device_set_state(dev, DEVICE_DISCONNECTED);
|
|
status = GATT_FAILURE;
|
|
goto reply;
|
|
}
|
|
|
|
dev->attrib = attrib;
|
|
dev->watch_id = g_io_add_watch(io, G_IO_HUP | G_IO_ERR | G_IO_NVAL,
|
|
disconnected_cb, dev);
|
|
|
|
dev->server_id = g_attrib_register(attrib, GATTRIB_ALL_REQS,
|
|
GATTRIB_ALL_HANDLES,
|
|
att_handler, dev, NULL);
|
|
if (dev->server_id == 0)
|
|
error("gatt: Could not attach to server");
|
|
|
|
device_set_state(dev, DEVICE_CONNECTED);
|
|
|
|
/* Send exchange mtu request as we assume being client and server */
|
|
/* TODO: Dont exchange mtu if no client apps */
|
|
send_exchange_mtu_request(dev);
|
|
|
|
/*
|
|
* Service Changed Characteristic and CCC Descriptor handles
|
|
* should not change if there are bonded devices. We have them
|
|
* constant all the time, thus they should be excluded from
|
|
* range indicating changes.
|
|
*/
|
|
range.start = service_changed_handle + 2;
|
|
range.end = 0xffff;
|
|
|
|
/*
|
|
* If there is ccc stored for that device we were acting as server for
|
|
* it, and as we dont have last connect and last services (de)activation
|
|
* timestamps we should always assume something has changed.
|
|
*/
|
|
notify_att_range_change(dev, &range);
|
|
|
|
status = GATT_SUCCESS;
|
|
|
|
reply:
|
|
data.dev = dev;
|
|
data.status = status;
|
|
queue_foreach(app_connections, send_app_connect_notifications, &data);
|
|
device_unref(dev);
|
|
|
|
/* Check if we should restart scan */
|
|
if (scanning)
|
|
bt_le_discovery_start(le_device_found_handler);
|
|
|
|
/* FIXME: What to do if discovery won't start here. */
|
|
}
|
|
|
|
static int connect_le(struct gatt_device *dev)
|
|
{
|
|
BtIOSecLevel sec_level;
|
|
GIOChannel *io;
|
|
GError *gerr = NULL;
|
|
char addr[18];
|
|
|
|
ba2str(&dev->bdaddr, addr);
|
|
|
|
/* There is one connection attempt going on */
|
|
if (dev->att_io) {
|
|
info("gatt: connection to dev %s is ongoing", addr);
|
|
return -EALREADY;
|
|
}
|
|
|
|
DBG("Connection attempt to: %s", addr);
|
|
|
|
/* TODO: If we are bonded then we should use higier sec level */
|
|
sec_level = BT_IO_SEC_LOW;
|
|
|
|
/*
|
|
* This connection will help us catch any PDUs that comes before
|
|
* pairing finishes
|
|
*/
|
|
io = bt_io_connect(connect_cb, device_ref(dev), NULL, &gerr,
|
|
BT_IO_OPT_SOURCE_BDADDR,
|
|
&adapter_addr,
|
|
BT_IO_OPT_SOURCE_TYPE, BDADDR_LE_PUBLIC,
|
|
BT_IO_OPT_DEST_BDADDR, &dev->bdaddr,
|
|
BT_IO_OPT_DEST_TYPE, dev->bdaddr_type,
|
|
BT_IO_OPT_CID, ATT_CID,
|
|
BT_IO_OPT_SEC_LEVEL, sec_level,
|
|
BT_IO_OPT_INVALID);
|
|
if (!io) {
|
|
error("gatt: Failed bt_io_connect(%s): %s", addr,
|
|
gerr->message);
|
|
g_error_free(gerr);
|
|
return -EIO;
|
|
}
|
|
|
|
/* Keep this, so we can cancel the connection */
|
|
dev->att_io = io;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void handle_client_scan(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_scan *cmd = buf;
|
|
uint8_t status;
|
|
void *registered;
|
|
|
|
DBG("new state %d", cmd->start);
|
|
|
|
registered = find_app_by_id(cmd->client_if);
|
|
if (!registered) {
|
|
error("gatt: Client not registered");
|
|
status = HAL_STATUS_FAILED;
|
|
goto reply;
|
|
}
|
|
|
|
/* Turn off scan */
|
|
if (!cmd->start) {
|
|
DBG("Stopping LE SCAN");
|
|
|
|
if (scanning) {
|
|
bt_le_discovery_stop(NULL);
|
|
scanning = false;
|
|
}
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
goto reply;
|
|
}
|
|
|
|
/* Reply success if we already do scan */
|
|
if (scanning) {
|
|
status = HAL_STATUS_SUCCESS;
|
|
goto reply;
|
|
}
|
|
|
|
/* Turn on scan */
|
|
if (!bt_le_discovery_start(le_device_found_handler)) {
|
|
error("gatt: LE scan switch failed");
|
|
status = HAL_STATUS_FAILED;
|
|
goto reply;
|
|
}
|
|
scanning = true;
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
reply:
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT, HAL_OP_GATT_CLIENT_SCAN,
|
|
status);
|
|
}
|
|
|
|
static int connect_next_dev(void)
|
|
{
|
|
struct gatt_device *dev;
|
|
|
|
DBG("");
|
|
|
|
dev = find_device_by_state(DEVICE_CONNECT_READY);
|
|
if (!dev)
|
|
return -ENODEV;
|
|
|
|
return connect_le(dev);
|
|
}
|
|
|
|
static void bt_le_discovery_stop_cb(void)
|
|
{
|
|
DBG("");
|
|
|
|
/* Check now if there is any device ready to connect */
|
|
if (connect_next_dev() < 0)
|
|
bt_le_discovery_start(le_device_found_handler);
|
|
}
|
|
|
|
static struct gatt_device *create_device(const bdaddr_t *addr)
|
|
{
|
|
struct gatt_device *dev;
|
|
|
|
dev = new0(struct gatt_device, 1);
|
|
if (!dev)
|
|
return NULL;
|
|
|
|
bacpy(&dev->bdaddr, addr);
|
|
|
|
dev->services = queue_new();
|
|
if (!dev->services) {
|
|
error("gatt: Failed to allocate memory for client");
|
|
destroy_device(dev);
|
|
return NULL;
|
|
}
|
|
|
|
dev->pending_requests = queue_new();
|
|
if (!dev->pending_requests) {
|
|
error("gatt: Failed to allocate memory for client");
|
|
destroy_device(dev);
|
|
return NULL;
|
|
}
|
|
|
|
if (!queue_push_head(gatt_devices, dev)) {
|
|
error("gatt: Cannot push device to queue");
|
|
destroy_device(dev);
|
|
return NULL;
|
|
}
|
|
|
|
return device_ref(dev);
|
|
}
|
|
|
|
static struct app_connection *create_app_connection(struct gatt_device *device,
|
|
struct gatt_app *app)
|
|
{
|
|
struct app_connection *new_conn;
|
|
static int32_t last_conn_id = 1;
|
|
|
|
/* Check if already connected */
|
|
new_conn = new0(struct app_connection, 1);
|
|
if (!new_conn)
|
|
return NULL;
|
|
|
|
/* Make connection id unique to connection record (app, device) pair */
|
|
new_conn->app = app;
|
|
new_conn->id = last_conn_id++;
|
|
|
|
new_conn->transactions = queue_new();
|
|
if (!new_conn->transactions) {
|
|
free(new_conn);
|
|
return NULL;
|
|
}
|
|
|
|
if (!queue_push_head(app_connections, new_conn)) {
|
|
error("gatt: Cannot push client on the client queue!?");
|
|
queue_destroy(new_conn->transactions, free);
|
|
free(new_conn);
|
|
return NULL;
|
|
}
|
|
|
|
new_conn->device = device_ref(device);
|
|
new_conn->device->conn_cnt++;
|
|
|
|
return new_conn;
|
|
}
|
|
|
|
static void trigger_disconnection(struct app_connection *connection)
|
|
{
|
|
/* Notify client */
|
|
if (queue_remove(app_connections, connection))
|
|
send_app_disconnect_notify(connection, GATT_SUCCESS);
|
|
|
|
destroy_app_connection(connection);
|
|
}
|
|
|
|
static void app_disconnect_devices(struct gatt_app *client)
|
|
{
|
|
struct app_connection *conn;
|
|
|
|
/* find every connection for client record and trigger disconnect */
|
|
conn = queue_remove_if(app_connections, match_connection_by_app,
|
|
client);
|
|
while (conn) {
|
|
trigger_disconnection(conn);
|
|
|
|
conn = queue_remove_if(app_connections,
|
|
match_connection_by_app, client);
|
|
}
|
|
}
|
|
|
|
static bool trigger_connection(struct app_connection *connection)
|
|
{
|
|
switch (connection->device->state) {
|
|
case DEVICE_DISCONNECTED:
|
|
device_set_state(connection->device, DEVICE_CONNECT_INIT);
|
|
break;
|
|
case DEVICE_CONNECTED:
|
|
send_app_connect_notify(connection, GATT_SUCCESS);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
/* after state change trigger discovering */
|
|
if (!scanning && (connection->device->state == DEVICE_CONNECT_INIT))
|
|
if (!bt_le_discovery_start(le_device_found_handler)) {
|
|
error("gatt: Could not start scan");
|
|
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static uint8_t unregister_app(int client_if)
|
|
{
|
|
struct gatt_app *cl;
|
|
|
|
cl = queue_remove_if(gatt_apps, match_app_by_id, INT_TO_PTR(client_if));
|
|
if (!cl) {
|
|
error("gatt: client_if=%d not found", client_if);
|
|
|
|
return HAL_STATUS_FAILED;
|
|
}
|
|
|
|
/* Destroy app connections with proper notifications for this app. */
|
|
app_disconnect_devices(cl);
|
|
destroy_gatt_app(cl);
|
|
|
|
return HAL_STATUS_SUCCESS;
|
|
}
|
|
|
|
static void handle_client_unregister(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_unregister *cmd = buf;
|
|
uint8_t status;
|
|
|
|
DBG("");
|
|
|
|
status = unregister_app(cmd->client_if);
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_CLIENT_UNREGISTER, status);
|
|
}
|
|
|
|
static struct app_connection *find_conn(const bdaddr_t *addr, int32_t app_id)
|
|
{
|
|
struct app_connection conn_match;
|
|
struct gatt_device *dev = NULL;
|
|
struct gatt_app *app;
|
|
|
|
/* Check if app is registered */
|
|
app = find_app_by_id(app_id);
|
|
if (!app) {
|
|
error("gatt: Client id %d not found", app_id);
|
|
return NULL;
|
|
}
|
|
|
|
/* Check if device is known */
|
|
dev = find_device_by_addr(addr);
|
|
if (!dev) {
|
|
error("gatt: Client id %d not found", app_id);
|
|
return NULL;
|
|
}
|
|
|
|
conn_match.device = dev;
|
|
conn_match.app = app;
|
|
|
|
return queue_find(app_connections, match_connection_by_device_and_app,
|
|
&conn_match);
|
|
}
|
|
|
|
static uint8_t handle_connect(int32_t app_id, const bdaddr_t *addr)
|
|
{
|
|
struct app_connection conn_match;
|
|
struct app_connection *conn;
|
|
struct gatt_device *device;
|
|
struct gatt_app *app;
|
|
|
|
DBG("");
|
|
|
|
app = find_app_by_id(app_id);
|
|
if (!app)
|
|
return HAL_STATUS_FAILED;
|
|
|
|
device = find_device_by_addr(addr);
|
|
if (!device) {
|
|
device = create_device(addr);
|
|
if (!device)
|
|
return HAL_STATUS_FAILED;
|
|
}
|
|
|
|
conn_match.device = device;
|
|
conn_match.app = app;
|
|
|
|
conn = queue_find(app_connections, match_connection_by_device_and_app,
|
|
&conn_match);
|
|
if (!conn) {
|
|
conn = create_app_connection(device, app);
|
|
if (!conn)
|
|
return HAL_STATUS_NOMEM;
|
|
}
|
|
|
|
if (!trigger_connection(conn))
|
|
return HAL_STATUS_FAILED;
|
|
|
|
return HAL_STATUS_SUCCESS;
|
|
}
|
|
|
|
static void handle_client_connect(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_connect *cmd = buf;
|
|
uint8_t status;
|
|
bdaddr_t addr;
|
|
|
|
DBG("");
|
|
|
|
android2bdaddr(&cmd->bdaddr, &addr);
|
|
|
|
/* TODO handle is_direct flag */
|
|
|
|
status = handle_connect(cmd->client_if, &addr);
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT, HAL_OP_GATT_CLIENT_CONNECT,
|
|
status);
|
|
}
|
|
|
|
static void handle_client_disconnect(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_disconnect *cmd = buf;
|
|
struct app_connection *conn;
|
|
uint8_t status;
|
|
|
|
DBG("");
|
|
|
|
/* TODO: should we care to match also bdaddr when conn_id is unique? */
|
|
conn = find_connection_by_id(cmd->conn_id);
|
|
if (conn)
|
|
trigger_disconnection(conn);
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_CLIENT_DISCONNECT, status);
|
|
}
|
|
|
|
static void send_client_listen_notify(int32_t id, int32_t status)
|
|
{
|
|
struct hal_ev_gatt_client_listen ev;
|
|
|
|
/* Server if because of typo in android headers */
|
|
ev.server_if = id;
|
|
ev.status = status;
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT, HAL_EV_GATT_CLIENT_LISTEN,
|
|
sizeof(ev), &ev);
|
|
}
|
|
|
|
struct listen_data {
|
|
int32_t client_id;
|
|
bool start;
|
|
};
|
|
|
|
static void set_advertising_cb(uint8_t status, void *user_data)
|
|
{
|
|
struct listen_data *l = user_data;
|
|
|
|
send_client_listen_notify(l->client_id, status);
|
|
|
|
/* In case of success update advertising state*/
|
|
if (!status)
|
|
advertising_cnt = l->start ? 1 : 0;
|
|
|
|
/*
|
|
* Let's remove client from the list in two cases
|
|
* 1. Start failed
|
|
* 2. Stop succeed
|
|
*/
|
|
if ((l->start && status) || (!l->start && !status))
|
|
queue_remove(listen_apps, INT_TO_PTR(l->client_id));
|
|
|
|
free(l);
|
|
}
|
|
|
|
static void handle_client_listen(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_listen *cmd = buf;
|
|
uint8_t status;
|
|
struct listen_data *data;
|
|
bool req_sent = false;
|
|
void *listening_client;
|
|
|
|
DBG("");
|
|
|
|
if (!find_app_by_id(cmd->client_if)) {
|
|
error("gatt: Client not registered");
|
|
status = HAL_STATUS_FAILED;
|
|
goto reply;
|
|
}
|
|
|
|
listening_client = queue_find(listen_apps, match_by_value,
|
|
INT_TO_PTR(cmd->client_if));
|
|
/* Start listening */
|
|
if (cmd->start) {
|
|
if (listening_client) {
|
|
status = HAL_STATUS_SUCCESS;
|
|
goto reply;
|
|
}
|
|
|
|
if (!queue_push_tail(listen_apps,
|
|
INT_TO_PTR(cmd->client_if))) {
|
|
error("gatt: Could not put client on listen queue");
|
|
status = HAL_STATUS_FAILED;
|
|
goto reply;
|
|
}
|
|
|
|
/* If listen is already on just return success*/
|
|
if (advertising_cnt > 0) {
|
|
advertising_cnt++;
|
|
status = HAL_STATUS_SUCCESS;
|
|
goto reply;
|
|
}
|
|
} else {
|
|
/* Stop listening. Check if client was listening */
|
|
if (!listening_client) {
|
|
error("gatt: This client %d does not listen",
|
|
cmd->client_if);
|
|
status = HAL_STATUS_FAILED;
|
|
goto reply;
|
|
}
|
|
|
|
/*
|
|
* In case there is more listening clients don't stop
|
|
* advertising
|
|
*/
|
|
if (advertising_cnt > 1) {
|
|
advertising_cnt--;
|
|
queue_remove(listen_apps,
|
|
INT_TO_PTR(cmd->client_if));
|
|
status = HAL_STATUS_SUCCESS;
|
|
goto reply;
|
|
}
|
|
}
|
|
|
|
data = new0(struct listen_data, 1);
|
|
if (!data) {
|
|
error("gatt: Could not allocate memory for listen data");
|
|
status = HAL_STATUS_NOMEM;
|
|
goto reply;
|
|
}
|
|
|
|
data->client_id = cmd->client_if;
|
|
data->start = cmd->start;
|
|
|
|
if (!bt_le_set_advertising(cmd->start, set_advertising_cb, data)) {
|
|
error("gatt: Could not set advertising");
|
|
status = HAL_STATUS_FAILED;
|
|
free(data);
|
|
goto reply;
|
|
}
|
|
|
|
/*
|
|
* Use this flag to keep in mind that we are waiting for callback with
|
|
* result
|
|
*/
|
|
req_sent = true;
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
reply:
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT, HAL_OP_GATT_CLIENT_LISTEN,
|
|
status);
|
|
|
|
/* In case of early success or error, just send notification up */
|
|
if (!req_sent) {
|
|
int32_t gatt_status = status == HAL_STATUS_SUCCESS ?
|
|
GATT_SUCCESS : GATT_FAILURE;
|
|
send_client_listen_notify(cmd->client_if, gatt_status);
|
|
}
|
|
}
|
|
|
|
static void handle_client_refresh(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_refresh *cmd = buf;
|
|
struct gatt_device *dev;
|
|
uint8_t status;
|
|
bdaddr_t bda;
|
|
|
|
/*
|
|
* This is Android's framework hidden API call. It seams that no
|
|
* notification is expected and Bluedroid silently updates device's
|
|
* cache under the hood. As we use lazy caching ,we can just clear the
|
|
* cache and we're done.
|
|
*/
|
|
|
|
DBG("");
|
|
|
|
android2bdaddr(&cmd->bdaddr, &bda);
|
|
dev = find_device_by_addr(&bda);
|
|
if (!dev) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto done;
|
|
}
|
|
|
|
queue_remove_all(dev->services, NULL, NULL, destroy_service);
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
done:
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT, HAL_OP_GATT_CLIENT_REFRESH,
|
|
status);
|
|
}
|
|
|
|
struct discover_srvc_data {
|
|
bt_uuid_t uuid;
|
|
struct app_connection *conn;
|
|
};
|
|
|
|
static void send_client_search_complete_notify(int32_t status, int32_t conn_id)
|
|
{
|
|
struct hal_ev_gatt_client_search_complete ev;
|
|
|
|
ev.status = status;
|
|
ev.conn_id = conn_id;
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_CLIENT_SEARCH_COMPLETE, sizeof(ev), &ev);
|
|
}
|
|
|
|
static void discover_srvc_all_cb(uint8_t status, GSList *services,
|
|
void *user_data)
|
|
{
|
|
struct discover_srvc_data *cb_data = user_data;
|
|
struct gatt_device *dev = cb_data->conn->device;
|
|
int32_t gatt_status;
|
|
GSList *l;
|
|
/*
|
|
* There might be multiply services with same uuid. Therefore make sure
|
|
* each primary service one has unique instance_id
|
|
*/
|
|
uint8_t instance_id = queue_length(dev->services);
|
|
|
|
DBG("Status %d", status);
|
|
|
|
if (status) {
|
|
error("gatt: Discover all primary services failed: %s",
|
|
att_ecode2str(status));
|
|
gatt_status = GATT_FAILURE;
|
|
goto reply;
|
|
}
|
|
|
|
if (!services) {
|
|
info("gatt: No primary services found");
|
|
gatt_status = GATT_SUCCESS;
|
|
goto reply;
|
|
}
|
|
|
|
for (l = services; l; l = l->next) {
|
|
struct gatt_primary *prim = l->data;
|
|
struct service *p;
|
|
|
|
if (queue_find(dev->services, match_srvc_by_range,
|
|
&prim->range))
|
|
continue;
|
|
|
|
p = create_service(instance_id++, true, prim->uuid, prim);
|
|
if (!p)
|
|
continue;
|
|
|
|
if (!queue_push_tail(dev->services, p)) {
|
|
error("gatt: Cannot push primary service to the list");
|
|
free(p);
|
|
continue;
|
|
}
|
|
|
|
DBG("attr handle = 0x%04x, end grp handle = 0x%04x uuid: %s",
|
|
prim->range.start, prim->range.end, prim->uuid);
|
|
}
|
|
|
|
/*
|
|
* Send all found services notifications - first cache,
|
|
* then send notifies
|
|
*/
|
|
queue_foreach(dev->services, send_client_primary_notify,
|
|
INT_TO_PTR(cb_data->conn->id));
|
|
|
|
/* Full search service scanning was performed */
|
|
dev->partial_srvc_search = false;
|
|
gatt_status = GATT_SUCCESS;
|
|
|
|
reply:
|
|
send_client_search_complete_notify(gatt_status, cb_data->conn->id);
|
|
free(cb_data);
|
|
}
|
|
|
|
static void discover_srvc_by_uuid_cb(uint8_t status, GSList *ranges,
|
|
void *user_data)
|
|
{
|
|
struct discover_srvc_data *cb_data = user_data;
|
|
struct gatt_primary prim;
|
|
struct service *s;
|
|
int32_t gatt_status;
|
|
struct gatt_device *dev = cb_data->conn->device;
|
|
uint8_t instance_id = queue_length(dev->services);
|
|
|
|
DBG("Status %d", status);
|
|
|
|
if (status) {
|
|
error("gatt: Discover pri srvc filtered by uuid failed: %s",
|
|
att_ecode2str(status));
|
|
gatt_status = GATT_FAILURE;
|
|
goto reply;
|
|
}
|
|
|
|
if (!ranges) {
|
|
info("gatt: No primary services searched by uuid found");
|
|
gatt_status = GATT_SUCCESS;
|
|
goto reply;
|
|
}
|
|
|
|
bt_uuid_to_string(&cb_data->uuid, prim.uuid, sizeof(prim.uuid));
|
|
/*
|
|
* If multiple instances of the same service (as identified by UUID)
|
|
* exist, the first instance of the service is returned.
|
|
*/
|
|
memcpy(&prim.range, ranges->data, sizeof(prim.range));
|
|
|
|
s = create_service(instance_id++, true, prim.uuid, &prim);
|
|
if (!s) {
|
|
gatt_status = GATT_FAILURE;
|
|
goto reply;
|
|
}
|
|
|
|
if (!queue_push_tail(dev->services, s)) {
|
|
error("gatt: Cannot push primary service to the list");
|
|
gatt_status = GATT_FAILURE;
|
|
goto reply;
|
|
}
|
|
|
|
send_client_primary_notify(s, INT_TO_PTR(cb_data->conn->id));
|
|
|
|
DBG("attr handle = 0x%04x, end grp handle = 0x%04x uuid: %s",
|
|
prim.range.start, prim.range.end, prim.uuid);
|
|
|
|
/* Partial search service scanning was performed */
|
|
dev->partial_srvc_search = true;
|
|
gatt_status = GATT_SUCCESS;
|
|
|
|
reply:
|
|
send_client_search_complete_notify(gatt_status, cb_data->conn->id);
|
|
free(cb_data);
|
|
}
|
|
|
|
static guint search_dev_for_srvc(struct app_connection *conn, bt_uuid_t *uuid)
|
|
{
|
|
struct discover_srvc_data *cb_data =
|
|
new0(struct discover_srvc_data, 1);
|
|
|
|
if (!cb_data) {
|
|
error("gatt: Cannot allocate cb data");
|
|
return 0;
|
|
}
|
|
|
|
cb_data->conn = conn;
|
|
|
|
if (uuid) {
|
|
memcpy(&cb_data->uuid, uuid, sizeof(cb_data->uuid));
|
|
return gatt_discover_primary(conn->device->attrib, uuid,
|
|
discover_srvc_by_uuid_cb, cb_data);
|
|
}
|
|
|
|
return gatt_discover_primary(conn->device->attrib, NULL,
|
|
discover_srvc_all_cb, cb_data);
|
|
}
|
|
|
|
static void handle_client_search_service(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_search_service *cmd = buf;
|
|
struct app_connection *conn;
|
|
uint8_t status;
|
|
struct service *s;
|
|
bt_uuid_t uuid;
|
|
guint srvc_search_success;
|
|
|
|
DBG("");
|
|
|
|
if (len != sizeof(*cmd) + (cmd->filtered ? 16 : 0)) {
|
|
error("Invalid search service size (%u bytes), terminating",
|
|
len);
|
|
raise(SIGTERM);
|
|
return;
|
|
}
|
|
|
|
conn = find_connection_by_id(cmd->conn_id);
|
|
if (!conn) {
|
|
error("gatt: dev with conn_id=%d not found", cmd->conn_id);
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
goto reply;
|
|
}
|
|
|
|
if (conn->device->state != DEVICE_CONNECTED) {
|
|
char bda[18];
|
|
|
|
ba2str(&conn->device->bdaddr, bda);
|
|
error("gatt: device %s not connected", bda);
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
goto reply;
|
|
}
|
|
|
|
if (cmd->filtered)
|
|
android2uuid(cmd->filter_uuid, &uuid);
|
|
|
|
/* Services not cached yet */
|
|
if (queue_isempty(conn->device->services)) {
|
|
if (cmd->filtered)
|
|
srvc_search_success = search_dev_for_srvc(conn, &uuid);
|
|
else
|
|
srvc_search_success = search_dev_for_srvc(conn, NULL);
|
|
|
|
if (!srvc_search_success) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto reply;
|
|
}
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
goto reply;
|
|
}
|
|
|
|
/* Search in cached services for given service */
|
|
if (cmd->filtered) {
|
|
/* Search in cache for service by uuid */
|
|
s = queue_find(conn->device->services, match_srvc_by_bt_uuid,
|
|
&uuid);
|
|
|
|
if (s) {
|
|
send_client_primary_notify(s, INT_TO_PTR(conn->id));
|
|
} else {
|
|
if (!search_dev_for_srvc(conn, &uuid)) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto reply;
|
|
}
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
goto reply;
|
|
}
|
|
} else {
|
|
/* Refresh service cache if only partial search was performed */
|
|
if (conn->device->partial_srvc_search)
|
|
srvc_search_success = search_dev_for_srvc(conn, NULL);
|
|
else
|
|
queue_foreach(conn->device->services,
|
|
send_client_primary_notify,
|
|
INT_TO_PTR(cmd->conn_id));
|
|
}
|
|
|
|
send_client_search_complete_notify(GATT_SUCCESS, conn->id);
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
reply:
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_CLIENT_SEARCH_SERVICE, status);
|
|
}
|
|
|
|
static void send_client_incl_service_notify(const struct element_id *srvc_id,
|
|
const struct service *incl,
|
|
int32_t conn_id)
|
|
{
|
|
struct hal_ev_gatt_client_get_inc_service ev;
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
|
|
ev.conn_id = conn_id;
|
|
|
|
element_id_to_hal_srvc_id(srvc_id, 1, &ev.srvc_id);
|
|
|
|
if (incl) {
|
|
element_id_to_hal_srvc_id(&incl->id, 0, &ev.incl_srvc_id);
|
|
ev.status = GATT_SUCCESS;
|
|
} else {
|
|
ev.status = GATT_FAILURE;
|
|
}
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT ,
|
|
HAL_EV_GATT_CLIENT_GET_INC_SERVICE,
|
|
sizeof(ev), &ev);
|
|
}
|
|
|
|
struct get_included_data {
|
|
struct service *prim;
|
|
struct app_connection *conn;
|
|
};
|
|
|
|
static int get_inst_id_of_prim_services(const struct gatt_device *dev)
|
|
{
|
|
struct service *s = queue_peek_tail(dev->services);
|
|
|
|
if (s)
|
|
return s->id.instance;
|
|
|
|
return -1;
|
|
}
|
|
|
|
static void get_included_cb(uint8_t status, GSList *included, void *user_data)
|
|
{
|
|
struct get_included_data *data = user_data;
|
|
struct app_connection *conn = data->conn;
|
|
struct service *service = data->prim;
|
|
struct service *incl = NULL;
|
|
int instance_id;
|
|
|
|
DBG("");
|
|
|
|
free(data);
|
|
|
|
if (status) {
|
|
error("gatt: no included services found");
|
|
return;
|
|
}
|
|
|
|
/* Remember that we already search included services.*/
|
|
service->incl_search_done = true;
|
|
|
|
/*
|
|
* There might be multiply services with same uuid. Therefore make sure
|
|
* each service has unique instance id. Let's take the latest instance
|
|
* id of primary service and start iterate included services from this
|
|
* point.
|
|
*/
|
|
instance_id = get_inst_id_of_prim_services(conn->device);
|
|
if (instance_id < 0)
|
|
goto failed;
|
|
|
|
for (; included; included = included->next) {
|
|
struct gatt_included *included_service = included->data;
|
|
|
|
incl = create_service(++instance_id, false,
|
|
included_service->uuid,
|
|
included_service);
|
|
if (!incl)
|
|
continue;
|
|
|
|
/*
|
|
* Lets keep included service on two queues.
|
|
* 1. on services queue together with primary service
|
|
* 2. on special queue inside primary service
|
|
*/
|
|
if (!queue_push_tail(service->included, incl) ||
|
|
!queue_push_tail(conn->device->services, incl)) {
|
|
error("gatt: Cannot push incl service to the list");
|
|
destroy_service(incl);
|
|
continue;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Notify upper layer about first included service.
|
|
* Android framework will iterate for next one.
|
|
*/
|
|
incl = queue_peek_head(service->included);
|
|
|
|
failed:
|
|
send_client_incl_service_notify(&service->id, incl, conn->id);
|
|
}
|
|
|
|
static bool search_included_services(struct app_connection *connection,
|
|
struct service *service)
|
|
{
|
|
struct get_included_data *data;
|
|
|
|
data = new0(struct get_included_data, 1);
|
|
if (!data) {
|
|
error("gatt: failed to allocate memory for included_data");
|
|
return false;
|
|
}
|
|
|
|
data->prim = service;
|
|
data->conn = connection;
|
|
|
|
gatt_find_included(connection->device->attrib,
|
|
service->prim.range.start,
|
|
service->prim.range.end, get_included_cb, data);
|
|
return true;
|
|
}
|
|
|
|
static bool find_service(int32_t conn_id, struct element_id *service_id,
|
|
struct app_connection **connection,
|
|
struct service **service)
|
|
{
|
|
struct service *srvc;
|
|
struct app_connection *conn;
|
|
|
|
conn = find_connection_by_id(conn_id);
|
|
if (!conn) {
|
|
error("gatt: conn_id=%d not found", conn_id);
|
|
return false;
|
|
}
|
|
|
|
srvc = queue_find(conn->device->services, match_srvc_by_element_id,
|
|
service_id);
|
|
if (!srvc) {
|
|
error("gatt: Service with inst_id: %d not found",
|
|
service_id->instance);
|
|
return false;
|
|
}
|
|
|
|
*connection = conn;
|
|
*service = srvc;
|
|
|
|
return true;
|
|
}
|
|
|
|
static void handle_client_get_included_service(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_get_included_service *cmd = buf;
|
|
struct app_connection *conn;
|
|
struct service *prim_service;
|
|
struct service *incl_service = NULL;
|
|
struct element_id match_id;
|
|
struct element_id srvc_id;
|
|
uint8_t status;
|
|
|
|
DBG("");
|
|
|
|
hal_srvc_id_to_element_id(&cmd->srvc_id, &srvc_id);
|
|
|
|
if (len != sizeof(*cmd) +
|
|
(cmd->continuation ? sizeof(cmd->incl_srvc_id[0]) : 0)) {
|
|
error("Invalid get incl services size (%u bytes), terminating",
|
|
len);
|
|
raise(SIGTERM);
|
|
return;
|
|
}
|
|
|
|
hal_srvc_id_to_element_id(&cmd->srvc_id, &match_id);
|
|
if (!find_service(cmd->conn_id, &match_id, &conn, &prim_service)) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto reply;
|
|
}
|
|
|
|
if (!prim_service->incl_search_done) {
|
|
if (search_included_services(conn, prim_service))
|
|
status = HAL_STATUS_SUCCESS;
|
|
else
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_CLIENT_GET_INCLUDED_SERVICE,
|
|
status);
|
|
return;
|
|
}
|
|
|
|
/* Try to use cache here */
|
|
if (!cmd->continuation) {
|
|
incl_service = queue_peek_head(prim_service->included);
|
|
} else {
|
|
uint8_t inst_id = cmd->incl_srvc_id[0].inst_id;
|
|
incl_service = queue_find(prim_service->included,
|
|
match_srvc_by_higher_inst_id,
|
|
INT_TO_PTR(inst_id));
|
|
}
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
reply:
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_CLIENT_GET_INCLUDED_SERVICE, status);
|
|
|
|
/*
|
|
* In case of error in handling request we need to send event with
|
|
* service id of cmd and gatt failure status.
|
|
*/
|
|
send_client_incl_service_notify(&srvc_id, incl_service, cmd->conn_id);
|
|
}
|
|
|
|
static void send_client_char_notify(const struct characteristic *ch,
|
|
int32_t conn_id,
|
|
const struct service *service)
|
|
{
|
|
struct hal_ev_gatt_client_get_characteristic ev;
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
ev.status = ch ? GATT_SUCCESS : GATT_FAILURE;
|
|
|
|
if (ch) {
|
|
ev.char_prop = ch->ch.properties;
|
|
element_id_to_hal_gatt_id(&ch->id, &ev.char_id);
|
|
}
|
|
|
|
ev.conn_id = conn_id;
|
|
element_id_to_hal_srvc_id(&service->id, service->primary, &ev.srvc_id);
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_CLIENT_GET_CHARACTERISTIC,
|
|
sizeof(ev), &ev);
|
|
}
|
|
|
|
static void cache_all_srvc_chars(struct service *srvc, GSList *characteristics)
|
|
{
|
|
uint16_t inst_id = 0;
|
|
bt_uuid_t uuid;
|
|
|
|
for (; characteristics; characteristics = characteristics->next) {
|
|
struct characteristic *ch;
|
|
|
|
ch = new0(struct characteristic, 1);
|
|
if (!ch) {
|
|
error("gatt: Error while caching characteristic");
|
|
continue;
|
|
}
|
|
|
|
ch->descriptors = queue_new();
|
|
if (!ch->descriptors) {
|
|
error("gatt: Error while caching characteristic");
|
|
free(ch);
|
|
continue;
|
|
}
|
|
|
|
memcpy(&ch->ch, characteristics->data, sizeof(ch->ch));
|
|
|
|
bt_string_to_uuid(&uuid, ch->ch.uuid);
|
|
bt_uuid_to_uuid128(&uuid, &ch->id.uuid);
|
|
|
|
/*
|
|
* For now we increment inst_id and use it as characteristic
|
|
* handle
|
|
*/
|
|
ch->id.instance = ++inst_id;
|
|
|
|
/* Store end handle to use later for descriptors discovery */
|
|
if (characteristics->next) {
|
|
struct gatt_char *next = characteristics->next->data;
|
|
ch->end_handle = next->handle - 1;
|
|
} else {
|
|
ch->end_handle = srvc->primary ? srvc->prim.range.end :
|
|
srvc->incl.range.end;
|
|
}
|
|
|
|
DBG("attr handle = 0x%04x, end handle = 0x%04x uuid: %s",
|
|
ch->ch.handle, ch->end_handle, ch->ch.uuid);
|
|
|
|
if (!queue_push_tail(srvc->chars, ch)) {
|
|
error("gatt: Error while caching characteristic");
|
|
destroy_characteristic(ch);
|
|
}
|
|
}
|
|
}
|
|
|
|
struct discover_char_data {
|
|
int32_t conn_id;
|
|
struct service *service;
|
|
};
|
|
|
|
static void discover_char_cb(uint8_t status, GSList *characteristics,
|
|
void *user_data)
|
|
{
|
|
struct discover_char_data *data = user_data;
|
|
struct service *srvc = data->service;
|
|
|
|
if (queue_isempty(srvc->chars))
|
|
cache_all_srvc_chars(srvc, characteristics);
|
|
|
|
send_client_char_notify(queue_peek_head(srvc->chars), data->conn_id,
|
|
srvc);
|
|
|
|
free(data);
|
|
}
|
|
|
|
static void handle_client_get_characteristic(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_get_characteristic *cmd = buf;
|
|
struct characteristic *ch;
|
|
struct element_id match_id;
|
|
struct app_connection *conn;
|
|
struct service *srvc;
|
|
uint8_t status;
|
|
|
|
DBG("");
|
|
|
|
if (len != sizeof(*cmd) + (cmd->continuation ? sizeof(cmd->char_id[0]) : 0)) {
|
|
error("Invalid get characteristic size (%u bytes), terminating",
|
|
len);
|
|
raise(SIGTERM);
|
|
return;
|
|
}
|
|
|
|
hal_srvc_id_to_element_id(&cmd->srvc_id, &match_id);
|
|
if (!find_service(cmd->conn_id, &match_id, &conn, &srvc)) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto done;
|
|
}
|
|
|
|
/* Discover all characteristics for services if not cached yet */
|
|
if (queue_isempty(srvc->chars)) {
|
|
struct att_range range;
|
|
|
|
struct discover_char_data *cb_data =
|
|
new0(struct discover_char_data, 1);
|
|
|
|
if (!cb_data) {
|
|
error("gatt: Cannot allocate cb data");
|
|
status = HAL_STATUS_FAILED;
|
|
goto done;
|
|
}
|
|
|
|
cb_data->service = srvc;
|
|
cb_data->conn_id = conn->id;
|
|
|
|
range = srvc->primary ? srvc->prim.range : srvc->incl.range;
|
|
|
|
if (!gatt_discover_char(conn->device->attrib, range.start,
|
|
range.end, NULL,
|
|
discover_char_cb, cb_data)) {
|
|
free(cb_data);
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
goto done;
|
|
}
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
goto done;
|
|
}
|
|
|
|
if (cmd->continuation)
|
|
ch = queue_find(srvc->chars, match_char_by_higher_inst_id,
|
|
INT_TO_PTR(cmd->char_id[0].inst_id));
|
|
else
|
|
ch = queue_peek_head(srvc->chars);
|
|
|
|
send_client_char_notify(ch, conn->id, srvc);
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
done:
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_CLIENT_GET_CHARACTERISTIC, status);
|
|
}
|
|
|
|
static void send_client_descr_notify(int32_t status, int32_t conn_id,
|
|
bool primary,
|
|
const struct element_id *srvc,
|
|
const struct element_id *ch,
|
|
const struct element_id *opt_descr)
|
|
{
|
|
struct hal_ev_gatt_client_get_descriptor ev;
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
|
|
ev.status = status;
|
|
ev.conn_id = conn_id;
|
|
|
|
element_id_to_hal_srvc_id(srvc, primary, &ev.srvc_id);
|
|
element_id_to_hal_gatt_id(ch, &ev.char_id);
|
|
|
|
if (opt_descr)
|
|
element_id_to_hal_gatt_id(opt_descr, &ev.descr_id);
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_CLIENT_GET_DESCRIPTOR, sizeof(ev), &ev);
|
|
}
|
|
|
|
struct discover_desc_data {
|
|
struct app_connection *conn;
|
|
struct service *srvc;
|
|
struct characteristic *ch;
|
|
};
|
|
|
|
static void gatt_discover_desc_cb(guint8 status, GSList *descs,
|
|
gpointer user_data)
|
|
{
|
|
struct discover_desc_data *data = user_data;
|
|
struct app_connection *conn = data->conn;
|
|
struct service *srvc = data->srvc;
|
|
struct characteristic *ch = data->ch;
|
|
struct descriptor *descr;
|
|
int i = 0;
|
|
|
|
if (status != 0) {
|
|
error("Discover all characteristic descriptors failed [%s]: %s",
|
|
ch->ch.uuid, att_ecode2str(status));
|
|
goto reply;
|
|
}
|
|
|
|
for ( ; descs; descs = descs->next) {
|
|
struct gatt_desc *desc = descs->data;
|
|
bt_uuid_t uuid;
|
|
|
|
descr = new0(struct descriptor, 1);
|
|
if (!descr)
|
|
continue;
|
|
|
|
bt_string_to_uuid(&uuid, desc->uuid);
|
|
bt_uuid_to_uuid128(&uuid, &descr->id.uuid);
|
|
|
|
descr->id.instance = i++;
|
|
descr->handle = desc->handle;
|
|
|
|
DBG("attr handle = 0x%04x, uuid: %s", desc->handle, desc->uuid);
|
|
|
|
if (!queue_push_tail(ch->descriptors, descr))
|
|
free(descr);
|
|
}
|
|
|
|
reply:
|
|
descr = queue_peek_head(ch->descriptors);
|
|
|
|
send_client_descr_notify(status, conn->id, srvc->primary, &srvc->id,
|
|
&ch->id,
|
|
descr ? &descr->id : NULL);
|
|
|
|
free(data);
|
|
}
|
|
|
|
static bool build_descr_cache(struct app_connection *connection,
|
|
struct service *srvc,
|
|
struct characteristic *ch)
|
|
{
|
|
struct discover_desc_data *cb_data;
|
|
uint16_t start, end;
|
|
|
|
/* Clip range to given characteristic */
|
|
start = ch->ch.value_handle + 1;
|
|
end = ch->end_handle;
|
|
|
|
/* If there are no descriptors, notify with fail status. */
|
|
if (start > end)
|
|
return false;
|
|
|
|
cb_data = new0(struct discover_desc_data, 1);
|
|
if (!cb_data)
|
|
return false;
|
|
|
|
cb_data->conn = connection;
|
|
cb_data->srvc = srvc;
|
|
cb_data->ch = ch;
|
|
|
|
if (!gatt_discover_desc(connection->device->attrib, start, end, NULL,
|
|
gatt_discover_desc_cb, cb_data)) {
|
|
free(cb_data);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static void handle_client_get_descriptor(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_get_descriptor *cmd = buf;
|
|
struct descriptor *descr = NULL;
|
|
struct characteristic *ch;
|
|
struct service *srvc;
|
|
struct element_id srvc_id;
|
|
struct element_id char_id;
|
|
struct app_connection *conn;
|
|
int32_t conn_id;
|
|
uint8_t primary;
|
|
uint8_t status;
|
|
|
|
DBG("");
|
|
|
|
if (len != sizeof(*cmd) +
|
|
(cmd->continuation ? sizeof(cmd->descr_id[0]) : 0)) {
|
|
error("gatt: Invalid get descr command (%u bytes), terminating",
|
|
len);
|
|
|
|
raise(SIGTERM);
|
|
return;
|
|
}
|
|
|
|
conn_id = cmd->conn_id;
|
|
primary = cmd->srvc_id.is_primary;
|
|
|
|
hal_srvc_id_to_element_id(&cmd->srvc_id, &srvc_id);
|
|
hal_gatt_id_to_element_id(&cmd->char_id, &char_id);
|
|
|
|
if (!find_service(conn_id, &srvc_id, &conn, &srvc)) {
|
|
error("gatt: Get descr. could not find service");
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
ch = queue_find(srvc->chars, match_char_by_element_id, &char_id);
|
|
if (!ch) {
|
|
error("gatt: Get descr. could not find characteristic");
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
if (queue_isempty(ch->descriptors)) {
|
|
if (build_descr_cache(conn, srvc, ch)) {
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_CLIENT_GET_DESCRIPTOR,
|
|
HAL_STATUS_SUCCESS);
|
|
return;
|
|
}
|
|
}
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
/* Send from cache */
|
|
if (cmd->continuation)
|
|
descr = queue_find(ch->descriptors,
|
|
match_descr_by_higher_inst_id,
|
|
INT_TO_PTR(cmd->descr_id[0].inst_id));
|
|
else
|
|
descr = queue_peek_head(ch->descriptors);
|
|
|
|
failed:
|
|
send_client_descr_notify(descr ? GATT_SUCCESS : GATT_FAILURE, conn_id,
|
|
primary, &srvc_id, &char_id,
|
|
&descr->id);
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_CLIENT_GET_DESCRIPTOR, status);
|
|
}
|
|
|
|
struct char_op_data {
|
|
int32_t conn_id;
|
|
const struct element_id *srvc_id;
|
|
const struct element_id *char_id;
|
|
uint8_t primary;
|
|
};
|
|
|
|
static struct char_op_data *create_char_op_data(int32_t conn_id,
|
|
const struct element_id *s_id,
|
|
const struct element_id *ch_id,
|
|
bool primary)
|
|
{
|
|
struct char_op_data *d;
|
|
|
|
d = new0(struct char_op_data, 1);
|
|
if (!d)
|
|
return NULL;
|
|
|
|
d->conn_id = conn_id;
|
|
d->srvc_id = s_id;
|
|
d->char_id = ch_id;
|
|
d->primary = primary;
|
|
|
|
return d;
|
|
}
|
|
|
|
static void send_client_read_char_notify(int32_t status, const uint8_t *pdu,
|
|
uint16_t len, int32_t conn_id,
|
|
const struct element_id *s_id,
|
|
const struct element_id *ch_id,
|
|
uint8_t primary)
|
|
{
|
|
uint8_t buf[IPC_MTU];
|
|
struct hal_ev_gatt_client_read_characteristic *ev = (void *) buf;
|
|
ssize_t vlen;
|
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
ev->conn_id = conn_id;
|
|
ev->status = status;
|
|
|
|
element_id_to_hal_srvc_id(s_id, primary, &ev->data.srvc_id);
|
|
element_id_to_hal_gatt_id(ch_id, &ev->data.char_id);
|
|
|
|
if (pdu) {
|
|
vlen = dec_read_resp(pdu, len, ev->data.value, sizeof(buf));
|
|
if (vlen < 0) {
|
|
error("gatt: Protocol error");
|
|
ev->status = GATT_FAILURE;
|
|
} else {
|
|
ev->data.len = vlen;
|
|
}
|
|
}
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_CLIENT_READ_CHARACTERISTIC,
|
|
sizeof(*ev) + ev->data.len, ev);
|
|
}
|
|
|
|
static void read_char_cb(guint8 status, const guint8 *pdu, guint16 len,
|
|
gpointer user_data)
|
|
{
|
|
struct char_op_data *data = user_data;
|
|
|
|
send_client_read_char_notify(status, pdu, len, data->conn_id,
|
|
data->srvc_id, data->char_id,
|
|
data->primary);
|
|
|
|
free(data);
|
|
}
|
|
|
|
static void handle_client_read_characteristic(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_read_characteristic *cmd = buf;
|
|
struct char_op_data *cb_data;
|
|
struct characteristic *ch;
|
|
struct app_connection *conn;
|
|
struct service *srvc;
|
|
struct element_id srvc_id;
|
|
struct element_id char_id;
|
|
uint8_t status;
|
|
|
|
DBG("");
|
|
|
|
/* TODO authorization needs to be handled */
|
|
|
|
hal_srvc_id_to_element_id(&cmd->srvc_id, &srvc_id);
|
|
hal_gatt_id_to_element_id(&cmd->char_id, &char_id);
|
|
|
|
if (!find_service(cmd->conn_id, &srvc_id, &conn, &srvc)) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
/* search characteristics by element id */
|
|
ch = queue_find(srvc->chars, match_char_by_element_id, &char_id);
|
|
if (!ch) {
|
|
error("gatt: Characteristic with inst_id: %d not found",
|
|
cmd->char_id.inst_id);
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
cb_data = create_char_op_data(cmd->conn_id, &srvc->id, &ch->id,
|
|
cmd->srvc_id.is_primary);
|
|
if (!cb_data) {
|
|
error("gatt: Cannot allocate cb data");
|
|
status = HAL_STATUS_NOMEM;
|
|
goto failed;
|
|
}
|
|
|
|
if (!gatt_read_char(conn->device->attrib, ch->ch.value_handle,
|
|
read_char_cb, cb_data)) {
|
|
error("gatt: Cannot read characteristic with inst_id: %d",
|
|
cmd->char_id.inst_id);
|
|
status = HAL_STATUS_FAILED;
|
|
free(cb_data);
|
|
goto failed;
|
|
}
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
failed:
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_CLIENT_READ_CHARACTERISTIC, status);
|
|
|
|
/*
|
|
* We should send notification with service, characteristic id in case
|
|
* of errors.
|
|
*/
|
|
if (status != HAL_STATUS_SUCCESS)
|
|
send_client_read_char_notify(GATT_FAILURE, NULL, 0,
|
|
cmd->conn_id, &srvc_id, &char_id,
|
|
cmd->srvc_id.is_primary);
|
|
}
|
|
|
|
static void send_client_write_char_notify(int32_t status, int32_t conn_id,
|
|
const struct element_id *srvc_id,
|
|
const struct element_id *char_id,
|
|
uint8_t primary)
|
|
{
|
|
struct hal_ev_gatt_client_write_characteristic ev;
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
|
|
ev.conn_id = conn_id;
|
|
ev.status = status;
|
|
|
|
element_id_to_hal_srvc_id(srvc_id, primary, &ev.data.srvc_id);
|
|
element_id_to_hal_gatt_id(char_id, &ev.data.char_id);
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_CLIENT_WRITE_CHARACTERISTIC,
|
|
sizeof(ev), &ev);
|
|
}
|
|
|
|
static void write_char_cb(guint8 status, const guint8 *pdu, guint16 len,
|
|
gpointer user_data)
|
|
{
|
|
struct char_op_data *data = user_data;
|
|
|
|
send_client_write_char_notify(status, data->conn_id, data->srvc_id,
|
|
data->char_id, data->primary);
|
|
|
|
free(data);
|
|
}
|
|
|
|
static bool signed_write_cmd(struct gatt_device *dev, uint16_t handle,
|
|
const uint8_t *value, uint16_t vlen)
|
|
{
|
|
uint8_t csrk[16];
|
|
uint32_t sign_cnt;
|
|
|
|
memset(csrk, 0, 16);
|
|
|
|
if (!bt_get_csrk(&dev->bdaddr, LOCAL_CSRK, csrk, &sign_cnt)) {
|
|
error("gatt: Could not get csrk key");
|
|
return false;
|
|
}
|
|
|
|
if (!gatt_signed_write_cmd(dev->attrib, handle, value, vlen, crypto,
|
|
csrk, sign_cnt, NULL, NULL)) {
|
|
error("gatt: Could write signed cmd");
|
|
return false;
|
|
}
|
|
|
|
bt_update_sign_counter(&dev->bdaddr, LOCAL_CSRK);
|
|
|
|
return true;
|
|
}
|
|
|
|
static void handle_client_write_characteristic(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_write_characteristic *cmd = buf;
|
|
struct char_op_data *cb_data = NULL;
|
|
struct characteristic *ch;
|
|
struct app_connection *conn;
|
|
struct service *srvc;
|
|
struct element_id srvc_id;
|
|
struct element_id char_id;
|
|
uint8_t status;
|
|
guint res;
|
|
|
|
DBG("");
|
|
|
|
if (len != sizeof(*cmd) + cmd->len) {
|
|
error("Invalid write char size (%u bytes), terminating", len);
|
|
raise(SIGTERM);
|
|
return;
|
|
}
|
|
|
|
hal_srvc_id_to_element_id(&cmd->srvc_id, &srvc_id);
|
|
hal_gatt_id_to_element_id(&cmd->char_id, &char_id);
|
|
|
|
if (!find_service(cmd->conn_id, &srvc_id, &conn, &srvc)) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
/* search characteristics by instance id */
|
|
ch = queue_find(srvc->chars, match_char_by_element_id, &char_id);
|
|
if (!ch) {
|
|
error("gatt: Characteristic with inst_id: %d not found",
|
|
cmd->char_id.inst_id);
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
if (cmd->write_type != GATT_WRITE_TYPE_NO_RESPONSE) {
|
|
cb_data = create_char_op_data(cmd->conn_id, &srvc->id, &ch->id,
|
|
cmd->srvc_id.is_primary);
|
|
if (!cb_data) {
|
|
error("gatt: Cannot allocate call data");
|
|
status = HAL_STATUS_NOMEM;
|
|
goto failed;
|
|
}
|
|
}
|
|
|
|
switch (cmd->write_type) {
|
|
case GATT_WRITE_TYPE_NO_RESPONSE:
|
|
res = gatt_write_cmd(conn->device->attrib, ch->ch.value_handle,
|
|
cmd->value, cmd->len,
|
|
NULL, NULL);
|
|
break;
|
|
case GATT_WRITE_TYPE_PREPARE:
|
|
res = gatt_reliable_write_char(conn->device->attrib,
|
|
ch->ch.value_handle,
|
|
cmd->value, cmd->len,
|
|
write_char_cb, cb_data);
|
|
break;
|
|
case GATT_WRITE_TYPE_DEFAULT:
|
|
res = gatt_write_char(conn->device->attrib, ch->ch.value_handle,
|
|
cmd->value, cmd->len,
|
|
write_char_cb, cb_data);
|
|
break;
|
|
case GATT_WRITE_TYPE_SIGNED:
|
|
res = signed_write_cmd(conn->device, ch->ch.value_handle,
|
|
cmd->value, cmd->len);
|
|
break;
|
|
default:
|
|
error("gatt: Write type %d unsupported", cmd->write_type);
|
|
status = HAL_STATUS_UNSUPPORTED;
|
|
goto failed;
|
|
}
|
|
|
|
if (!res) {
|
|
error("gatt: Cannot write char. with inst_id: %d",
|
|
cmd->char_id.inst_id);
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
failed:
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_CLIENT_WRITE_CHARACTERISTIC, status);
|
|
|
|
/*
|
|
* We should send notification with service, characteristic id in case
|
|
* of error and write with no response
|
|
*/
|
|
if (status != HAL_STATUS_SUCCESS ||
|
|
cmd->write_type == GATT_WRITE_TYPE_NO_RESPONSE) {
|
|
int32_t gatt_status = (status == HAL_STATUS_SUCCESS) ?
|
|
GATT_SUCCESS : GATT_FAILURE;
|
|
|
|
send_client_write_char_notify(gatt_status, cmd->conn_id,
|
|
&srvc_id, &char_id,
|
|
cmd->srvc_id.is_primary);
|
|
free(cb_data);
|
|
}
|
|
}
|
|
|
|
static void send_client_descr_read_notify(int32_t status, const uint8_t *pdu,
|
|
guint16 len, int32_t conn_id,
|
|
const struct element_id *srvc,
|
|
const struct element_id *ch,
|
|
const struct element_id *descr,
|
|
uint8_t primary)
|
|
{
|
|
uint8_t buf[IPC_MTU];
|
|
struct hal_ev_gatt_client_read_descriptor *ev = (void *) buf;
|
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
ev->status = status;
|
|
ev->conn_id = conn_id;
|
|
|
|
element_id_to_hal_srvc_id(srvc, primary, &ev->data.srvc_id);
|
|
element_id_to_hal_gatt_id(ch, &ev->data.char_id);
|
|
element_id_to_hal_gatt_id(descr, &ev->data.descr_id);
|
|
|
|
if (len && pdu) {
|
|
ssize_t ret;
|
|
|
|
ret = dec_read_resp(pdu, len, ev->data.value,
|
|
GATT_MAX_ATTR_LEN);
|
|
if (ret < 0) {
|
|
error("gatt: Protocol error");
|
|
ev->status = GATT_FAILURE;
|
|
} else {
|
|
ev->data.len = ret;
|
|
}
|
|
}
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_CLIENT_READ_DESCRIPTOR,
|
|
sizeof(*ev) + ev->data.len, ev);
|
|
}
|
|
|
|
struct desc_data {
|
|
int32_t conn_id;
|
|
const struct element_id *srvc_id;
|
|
const struct element_id *char_id;
|
|
const struct element_id *descr_id;
|
|
uint8_t primary;
|
|
};
|
|
|
|
static void read_desc_cb(guint8 status, const guint8 *pdu, guint16 len,
|
|
gpointer user_data)
|
|
{
|
|
struct desc_data *cb_data = user_data;
|
|
|
|
if (status != 0)
|
|
error("gatt: Discover all char descriptors failed: %s",
|
|
att_ecode2str(status));
|
|
|
|
send_client_descr_read_notify(status, pdu, len, cb_data->conn_id,
|
|
cb_data->srvc_id, cb_data->char_id,
|
|
cb_data->descr_id, cb_data->primary);
|
|
|
|
free(cb_data);
|
|
}
|
|
|
|
static struct desc_data *create_desc_data(int32_t conn_id,
|
|
const struct element_id *s_id,
|
|
const struct element_id *ch_id,
|
|
const struct element_id *d_id,
|
|
uint8_t primary)
|
|
{
|
|
struct desc_data *d;
|
|
|
|
d = new0(struct desc_data, 1);
|
|
if (!d)
|
|
return NULL;
|
|
|
|
d->conn_id = conn_id;
|
|
d->srvc_id = s_id;
|
|
d->char_id = ch_id;
|
|
d->descr_id = d_id;
|
|
d->primary = primary;
|
|
|
|
return d;
|
|
}
|
|
|
|
static void handle_client_read_descriptor(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_read_descriptor *cmd = buf;
|
|
struct desc_data *cb_data;
|
|
struct characteristic *ch;
|
|
struct descriptor *descr;
|
|
struct service *srvc;
|
|
struct element_id char_id;
|
|
struct element_id descr_id;
|
|
struct element_id srvc_id;
|
|
struct app_connection *conn;
|
|
int32_t conn_id = 0;
|
|
uint8_t primary;
|
|
uint8_t status;
|
|
|
|
DBG("");
|
|
|
|
conn_id = cmd->conn_id;
|
|
primary = cmd->srvc_id.is_primary;
|
|
|
|
hal_srvc_id_to_element_id(&cmd->srvc_id, &srvc_id);
|
|
hal_gatt_id_to_element_id(&cmd->char_id, &char_id);
|
|
hal_gatt_id_to_element_id(&cmd->descr_id, &descr_id);
|
|
|
|
if (!find_service(conn_id, &srvc_id, &conn, &srvc)) {
|
|
error("gatt: Read descr. could not find service");
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
ch = queue_find(srvc->chars, match_char_by_element_id, &char_id);
|
|
if (!ch) {
|
|
error("gatt: Read descr. could not find characteristic");
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
descr = queue_find(ch->descriptors, match_descr_by_element_id,
|
|
&descr_id);
|
|
if (!descr) {
|
|
error("gatt: Read descr. could not find descriptor");
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
cb_data = create_desc_data(conn_id, &srvc->id, &ch->id, &descr->id,
|
|
primary);
|
|
if (!cb_data) {
|
|
error("gatt: Read descr. could not allocate callback data");
|
|
|
|
status = HAL_STATUS_NOMEM;
|
|
goto failed;
|
|
}
|
|
|
|
if (!gatt_read_char(conn->device->attrib, descr->handle, read_desc_cb,
|
|
cb_data)) {
|
|
free(cb_data);
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
failed:
|
|
if (status != HAL_STATUS_SUCCESS)
|
|
send_client_descr_read_notify(GATT_FAILURE, NULL, 0, conn_id,
|
|
&srvc_id, &char_id, &descr_id,
|
|
primary);
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_CLIENT_READ_DESCRIPTOR, status);
|
|
}
|
|
|
|
static void send_client_descr_write_notify(int32_t status, int32_t conn_id,
|
|
const struct element_id *srvc,
|
|
const struct element_id *ch,
|
|
const struct element_id *descr,
|
|
uint8_t primary) {
|
|
uint8_t buf[IPC_MTU];
|
|
struct hal_ev_gatt_client_write_descriptor *ev = (void *) buf;
|
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
ev->status = status;
|
|
ev->conn_id = conn_id;
|
|
|
|
element_id_to_hal_srvc_id(srvc, primary, &ev->data.srvc_id);
|
|
element_id_to_hal_gatt_id(ch, &ev->data.char_id);
|
|
element_id_to_hal_gatt_id(descr, &ev->data.descr_id);
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_CLIENT_WRITE_DESCRIPTOR,
|
|
sizeof(*ev), ev);
|
|
}
|
|
|
|
static void write_descr_cb(guint8 status, const guint8 *pdu, guint16 len,
|
|
gpointer user_data)
|
|
{
|
|
struct desc_data *cb_data = user_data;
|
|
|
|
if (status)
|
|
error("gatt: Write descriptors failed: %s",
|
|
att_ecode2str(status));
|
|
|
|
send_client_descr_write_notify(status, cb_data->conn_id,
|
|
cb_data->srvc_id, cb_data->char_id,
|
|
cb_data->descr_id, cb_data->primary);
|
|
|
|
free(cb_data);
|
|
}
|
|
|
|
static void handle_client_write_descriptor(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_write_descriptor *cmd = buf;
|
|
struct desc_data *cb_data = NULL;
|
|
struct characteristic *ch;
|
|
struct descriptor *descr;
|
|
struct service *srvc;
|
|
struct element_id srvc_id;
|
|
struct element_id char_id;
|
|
struct element_id descr_id;
|
|
struct app_connection *conn;
|
|
int32_t conn_id;
|
|
uint8_t primary;
|
|
uint8_t status;
|
|
guint res;
|
|
|
|
DBG("");
|
|
|
|
if (len != sizeof(*cmd) + cmd->len) {
|
|
error("Invalid write desriptor command (%u bytes), terminating",
|
|
len);
|
|
raise(SIGTERM);
|
|
return;
|
|
}
|
|
|
|
primary = cmd->srvc_id.is_primary;
|
|
conn_id = cmd->conn_id;
|
|
|
|
hal_srvc_id_to_element_id(&cmd->srvc_id, &srvc_id);
|
|
hal_gatt_id_to_element_id(&cmd->char_id, &char_id);
|
|
hal_gatt_id_to_element_id(&cmd->descr_id, &descr_id);
|
|
|
|
if (!find_service(cmd->conn_id, &srvc_id, &conn, &srvc)) {
|
|
error("gatt: Write descr. could not find service");
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
ch = queue_find(srvc->chars, match_char_by_element_id, &char_id);
|
|
if (!ch) {
|
|
error("gatt: Write descr. could not find characteristic");
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
descr = queue_find(ch->descriptors, match_descr_by_element_id,
|
|
&descr_id);
|
|
if (!descr) {
|
|
error("gatt: Write descr. could not find descriptor");
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
if (cmd->write_type != GATT_WRITE_TYPE_NO_RESPONSE) {
|
|
cb_data = create_desc_data(conn_id, &srvc->id, &ch->id,
|
|
&descr->id, primary);
|
|
if (!cb_data) {
|
|
error("gatt: Write descr. could not allocate cb_data");
|
|
|
|
status = HAL_STATUS_NOMEM;
|
|
goto failed;
|
|
}
|
|
}
|
|
|
|
switch (cmd->write_type) {
|
|
case GATT_WRITE_TYPE_NO_RESPONSE:
|
|
res = gatt_write_cmd(conn->device->attrib, descr->handle,
|
|
cmd->value, cmd->len, NULL , NULL);
|
|
break;
|
|
case GATT_WRITE_TYPE_PREPARE:
|
|
res = gatt_reliable_write_char(conn->device->attrib,
|
|
descr->handle, cmd->value,
|
|
cmd->len, write_descr_cb,
|
|
cb_data);
|
|
break;
|
|
case GATT_WRITE_TYPE_DEFAULT:
|
|
res = gatt_write_char(conn->device->attrib, descr->handle,
|
|
cmd->value, cmd->len,
|
|
write_descr_cb, cb_data);
|
|
break;
|
|
default:
|
|
error("gatt: Write type %d unsupported", cmd->write_type);
|
|
status = HAL_STATUS_UNSUPPORTED;
|
|
goto failed;
|
|
}
|
|
|
|
if (!res) {
|
|
error("gatt: Write desc, could not write desc");
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
failed:
|
|
if (status != HAL_STATUS_SUCCESS ||
|
|
cmd->write_type == GATT_WRITE_TYPE_NO_RESPONSE) {
|
|
int32_t gatt_status = (status == HAL_STATUS_SUCCESS) ?
|
|
GATT_SUCCESS : GATT_FAILURE;
|
|
|
|
send_client_descr_write_notify(gatt_status, conn_id, &srvc_id,
|
|
&char_id, &descr_id, primary);
|
|
free(cb_data);
|
|
}
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_CLIENT_WRITE_DESCRIPTOR, status);
|
|
}
|
|
|
|
static void send_client_write_execute_notify(int32_t id, int32_t status)
|
|
{
|
|
struct hal_ev_gatt_client_exec_write ev;
|
|
|
|
ev.conn_id = id;
|
|
ev.status = status;
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_CLIENT_EXEC_WRITE,
|
|
sizeof(ev), &ev);
|
|
}
|
|
|
|
static void write_execute_cb(guint8 status, const guint8 *pdu, guint16 len,
|
|
gpointer user_data)
|
|
{
|
|
send_client_write_execute_notify(PTR_TO_INT(user_data), status);
|
|
}
|
|
|
|
static void handle_client_execute_write(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_execute_write *cmd = buf;
|
|
struct app_connection *conn;
|
|
uint8_t status;
|
|
uint8_t flags;
|
|
|
|
DBG("");
|
|
|
|
conn = find_connection_by_id(cmd->conn_id);
|
|
if (!conn) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto reply;
|
|
}
|
|
|
|
flags = cmd->execute ? ATT_WRITE_ALL_PREP_WRITES :
|
|
ATT_CANCEL_ALL_PREP_WRITES;
|
|
|
|
if (!gatt_execute_write(conn->device->attrib, flags, write_execute_cb,
|
|
INT_TO_PTR(cmd->conn_id))) {
|
|
error("gatt: Could not send execute write");
|
|
status = HAL_STATUS_FAILED;
|
|
goto reply;
|
|
}
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
reply:
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_CLIENT_EXECUTE_WRITE, status);
|
|
|
|
/* In case of early error send also notification.*/
|
|
if (status != HAL_STATUS_SUCCESS)
|
|
send_client_write_execute_notify(cmd->conn_id, GATT_FAILURE);
|
|
}
|
|
|
|
static void handle_notification(const uint8_t *pdu, uint16_t len,
|
|
gpointer user_data)
|
|
{
|
|
uint8_t buf[IPC_MTU];
|
|
struct hal_ev_gatt_client_notify *ev = (void *) buf;
|
|
struct notification_data *notification = user_data;
|
|
uint8_t data_offset = sizeof(uint8_t) + sizeof(uint16_t);
|
|
|
|
if (len < data_offset)
|
|
return;
|
|
|
|
memcpy(&ev->char_id, ¬ification->ch, sizeof(ev->char_id));
|
|
memcpy(&ev->srvc_id, ¬ification->service, sizeof(ev->srvc_id));
|
|
bdaddr2android(¬ification->conn->device->bdaddr, &ev->bda);
|
|
ev->conn_id = notification->conn->id;
|
|
ev->is_notify = pdu[0] == ATT_OP_HANDLE_NOTIFY;
|
|
|
|
/* We have to cut opcode and handle from data */
|
|
ev->len = len - data_offset;
|
|
memcpy(ev->value, pdu + data_offset, len - data_offset);
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT, HAL_EV_GATT_CLIENT_NOTIFY,
|
|
sizeof(*ev) + ev->len, ev);
|
|
}
|
|
|
|
static void send_register_for_notification_ev(int32_t id, int32_t registered,
|
|
int32_t status,
|
|
const struct hal_gatt_srvc_id *srvc,
|
|
const struct hal_gatt_gatt_id *ch)
|
|
{
|
|
struct hal_ev_gatt_client_reg_for_notif ev;
|
|
|
|
ev.conn_id = id;
|
|
ev.status = status;
|
|
ev.registered = registered;
|
|
memcpy(&ev.srvc_id, srvc, sizeof(ev.srvc_id));
|
|
memcpy(&ev.char_id, ch, sizeof(ev.char_id));
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_CLIENT_REGISTER_FOR_NOTIF, sizeof(ev), &ev);
|
|
}
|
|
|
|
static void handle_client_register_for_notification(const void *buf,
|
|
uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_register_for_notification *cmd = buf;
|
|
struct notification_data *notification;
|
|
struct characteristic *c;
|
|
struct element_id match_id;
|
|
struct app_connection *conn;
|
|
int32_t conn_id = 0;
|
|
struct service *service;
|
|
uint8_t status;
|
|
int32_t gatt_status;
|
|
bdaddr_t addr;
|
|
|
|
DBG("");
|
|
|
|
android2bdaddr(&cmd->bdaddr, &addr);
|
|
|
|
conn = find_conn(&addr, cmd->client_if);
|
|
if (!conn) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
conn_id = conn->id;
|
|
|
|
hal_srvc_id_to_element_id(&cmd->srvc_id, &match_id);
|
|
service = queue_find(conn->device->services, match_srvc_by_element_id,
|
|
&match_id);
|
|
if (!service) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
hal_gatt_id_to_element_id(&cmd->char_id, &match_id);
|
|
c = queue_find(service->chars, match_char_by_element_id, &match_id);
|
|
if (!c) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
notification = new0(struct notification_data, 1);
|
|
if (!notification) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
memcpy(¬ification->ch, &cmd->char_id, sizeof(notification->ch));
|
|
memcpy(¬ification->service, &cmd->srvc_id,
|
|
sizeof(notification->service));
|
|
notification->conn = conn;
|
|
|
|
if (queue_find(conn->app->notifications, match_notification,
|
|
notification)) {
|
|
free(notification);
|
|
status = HAL_STATUS_SUCCESS;
|
|
goto failed;
|
|
}
|
|
|
|
notification->notif_id = g_attrib_register(conn->device->attrib,
|
|
ATT_OP_HANDLE_NOTIFY,
|
|
c->ch.value_handle,
|
|
handle_notification,
|
|
notification,
|
|
destroy_notification);
|
|
if (!notification->notif_id) {
|
|
free(notification);
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
notification->ind_id = g_attrib_register(conn->device->attrib,
|
|
ATT_OP_HANDLE_IND,
|
|
c->ch.value_handle,
|
|
handle_notification,
|
|
notification,
|
|
destroy_notification);
|
|
if (!notification->ind_id) {
|
|
g_attrib_unregister(conn->device->attrib,
|
|
notification->notif_id);
|
|
free(notification);
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
/*
|
|
* Because same data - notification - is shared by two handlers, we
|
|
* introduce ref counter to be sure that data can be freed with no risk.
|
|
* Counter is decremented in destroy_notification.
|
|
*/
|
|
notification->ref = 2;
|
|
|
|
if (!queue_push_tail(conn->app->notifications, notification)) {
|
|
unregister_notification(notification);
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
failed:
|
|
gatt_status = status ? GATT_FAILURE : GATT_SUCCESS;
|
|
send_register_for_notification_ev(conn_id, 1, gatt_status,
|
|
&cmd->srvc_id, &cmd->char_id);
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_CLIENT_REGISTER_FOR_NOTIFICATION, status);
|
|
}
|
|
|
|
static void handle_client_deregister_for_notification(const void *buf,
|
|
uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_deregister_for_notification *cmd = buf;
|
|
struct notification_data *notification, notif;
|
|
struct app_connection *conn;
|
|
int32_t conn_id = 0;
|
|
uint8_t status;
|
|
int32_t gatt_status;
|
|
bdaddr_t addr;
|
|
|
|
DBG("");
|
|
|
|
android2bdaddr(&cmd->bdaddr, &addr);
|
|
|
|
conn = find_conn(&addr, cmd->client_if);
|
|
if (!conn) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
conn_id = conn->id;
|
|
|
|
memcpy(¬if.ch, &cmd->char_id, sizeof(notif.ch));
|
|
memcpy(¬if.service, &cmd->srvc_id, sizeof(notif.service));
|
|
notif.conn = conn;
|
|
|
|
notification = queue_find(conn->app->notifications,
|
|
match_notification, ¬if);
|
|
if (!notification) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
unregister_notification(notification);
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
failed:
|
|
gatt_status = status ? GATT_FAILURE : GATT_SUCCESS;
|
|
send_register_for_notification_ev(conn_id, 0, gatt_status,
|
|
&cmd->srvc_id, &cmd->char_id);
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_CLIENT_DEREGISTER_FOR_NOTIFICATION, status);
|
|
}
|
|
|
|
static void send_client_remote_rssi_notify(int32_t client_if,
|
|
const bdaddr_t *addr,
|
|
int32_t rssi, int32_t status)
|
|
{
|
|
struct hal_ev_gatt_client_read_remote_rssi ev;
|
|
|
|
ev.client_if = client_if;
|
|
bdaddr2android(addr, &ev.address);
|
|
ev.rssi = rssi;
|
|
ev.status = status;
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_CLIENT_READ_REMOTE_RSSI, sizeof(ev), &ev);
|
|
}
|
|
|
|
static void read_remote_rssi_cb(uint8_t status, const bdaddr_t *addr,
|
|
int8_t rssi, void *user_data)
|
|
{
|
|
int32_t client_if = PTR_TO_INT(user_data);
|
|
int32_t gatt_status = status ? GATT_FAILURE : GATT_SUCCESS;
|
|
|
|
send_client_remote_rssi_notify(client_if, addr, rssi, gatt_status);
|
|
}
|
|
|
|
static void handle_client_read_remote_rssi(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_read_remote_rssi *cmd = buf;
|
|
uint8_t status;
|
|
bdaddr_t bdaddr;
|
|
|
|
DBG("");
|
|
|
|
if (!find_app_by_id(cmd->client_if)) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
android2bdaddr(cmd->bdaddr, &bdaddr);
|
|
if (!bt_read_device_rssi(&bdaddr, read_remote_rssi_cb,
|
|
INT_TO_PTR(cmd->client_if))) {
|
|
error("gatt: Could not read RSSI");
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
failed:
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_CLIENT_READ_REMOTE_RSSI, status);
|
|
|
|
if (status != HAL_STATUS_SUCCESS)
|
|
send_client_remote_rssi_notify(cmd->client_if, &bdaddr, 0,
|
|
GATT_FAILURE);
|
|
}
|
|
|
|
static void handle_client_get_device_type(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_get_device_type *cmd = buf;
|
|
struct hal_rsp_gatt_client_get_device_type rsp;
|
|
bdaddr_t bdaddr;
|
|
|
|
DBG("");
|
|
|
|
android2bdaddr(cmd->bdaddr, &bdaddr);
|
|
|
|
rsp.type = bt_get_device_android_type(&bdaddr);
|
|
|
|
ipc_send_rsp_full(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_CLIENT_GET_DEVICE_TYPE,
|
|
sizeof(rsp), &rsp, -1);
|
|
}
|
|
|
|
static void handle_client_set_adv_data(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_set_adv_data *cmd = buf;
|
|
uint8_t status;
|
|
|
|
if (len != sizeof(*cmd) + cmd->manufacturer_len) {
|
|
error("Invalid set adv data command (%u bytes), terminating",
|
|
len);
|
|
raise(SIGTERM);
|
|
return;
|
|
}
|
|
|
|
DBG("scan_rsp=%u name=%u tx=%u min=%d max=%d app=%d",
|
|
cmd->set_scan_rsp, cmd->include_name, cmd->include_txpower,
|
|
cmd->min_interval, cmd->max_interval, cmd->appearance);
|
|
|
|
DBG("manufacturer=%u service_data=%u service_uuid=%u",
|
|
cmd->manufacturer_len, cmd->service_data_len,
|
|
cmd->service_uuid_len);
|
|
|
|
/* TODO This should be implemented when kernel supports it */
|
|
if (cmd->manufacturer_len || cmd->service_data_len ||
|
|
cmd->service_uuid_len) {
|
|
error("gatt: Extra advertising data not supported");
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
failed:
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_CLIENT_SET_ADV_DATA, status);
|
|
}
|
|
|
|
static uint8_t test_read_write(bdaddr_t *bdaddr, bt_uuid_t *uuid, uint16_t op,
|
|
uint16_t u2,uint16_t u3,
|
|
uint16_t u4, uint16_t u5)
|
|
{
|
|
guint16 length = 0;
|
|
struct gatt_device *dev;
|
|
uint8_t *pdu;
|
|
size_t mtu;
|
|
|
|
dev = find_device_by_addr(bdaddr);
|
|
if (!dev || dev->state != DEVICE_CONNECTED)
|
|
return HAL_STATUS_FAILED;
|
|
|
|
pdu = g_attrib_get_buffer(dev->attrib, &mtu);
|
|
if (!pdu)
|
|
return HAL_STATUS_FAILED;
|
|
|
|
switch (op) {
|
|
case ATT_OP_READ_REQ:
|
|
length = enc_read_req(u2, pdu, mtu);
|
|
break;
|
|
case ATT_OP_READ_BY_TYPE_REQ:
|
|
length = enc_read_by_type_req(u2, u3, uuid, pdu, mtu);
|
|
break;
|
|
case ATT_OP_READ_BLOB_REQ:
|
|
length = enc_read_blob_req(u2, u3, pdu, mtu);
|
|
break;
|
|
case ATT_OP_READ_BY_GROUP_REQ:
|
|
length = enc_read_by_grp_req(u2, u3, uuid, pdu, mtu);
|
|
break;
|
|
case ATT_OP_READ_MULTI_REQ:
|
|
return HAL_STATUS_UNSUPPORTED;
|
|
case ATT_OP_WRITE_REQ:
|
|
length = enc_write_req(u2, (uint8_t *) &u3, sizeof(u3), pdu,
|
|
mtu);
|
|
break;
|
|
case ATT_OP_WRITE_CMD:
|
|
length = enc_write_cmd(u2, (uint8_t *) &u3, sizeof(u3), pdu,
|
|
mtu);
|
|
break;
|
|
case ATT_OP_PREP_WRITE_REQ:
|
|
length = enc_prep_write_req(u2, u3, (uint8_t *) &u4, sizeof(u4),
|
|
pdu, mtu);
|
|
break;
|
|
case ATT_OP_EXEC_WRITE_REQ:
|
|
length = enc_exec_write_req(u2, pdu, mtu);
|
|
break;
|
|
default:
|
|
error("gatt: Unknown operation type");
|
|
|
|
return HAL_STATUS_UNSUPPORTED;
|
|
}
|
|
|
|
if (!length)
|
|
return HAL_STATUS_FAILED;
|
|
|
|
g_attrib_send(dev->attrib, 0, pdu, length, NULL, NULL, NULL);
|
|
|
|
return HAL_STATUS_SUCCESS;
|
|
}
|
|
|
|
static void handle_client_test_command(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_client_test_command *cmd = buf;
|
|
struct gatt_app *app;
|
|
bdaddr_t bdaddr;
|
|
bt_uuid_t uuid;
|
|
uint8_t status;
|
|
|
|
DBG("");
|
|
|
|
android2bdaddr(cmd->bda1, &bdaddr);
|
|
android2uuid(cmd->uuid1, &uuid);
|
|
|
|
switch (cmd->command) {
|
|
case GATT_CLIENT_TEST_CMD_ENABLE:
|
|
if (cmd->u1) {
|
|
if (!test_client_if)
|
|
test_client_if = register_app(TEST_UUID,
|
|
APP_CLIENT);
|
|
|
|
if (test_client_if)
|
|
status = HAL_STATUS_SUCCESS;
|
|
else
|
|
status = HAL_STATUS_FAILED;
|
|
} else {
|
|
status = unregister_app(test_client_if);
|
|
test_client_if = 0;
|
|
}
|
|
break;
|
|
case GATT_CLIENT_TEST_CMD_CONNECT:
|
|
/* TODO u1 holds device type, for now assume BLE */
|
|
status = handle_connect(test_client_if, &bdaddr);
|
|
break;
|
|
case GATT_CLIENT_TEST_CMD_DISCONNECT:
|
|
app = queue_find(gatt_apps, match_app_by_id,
|
|
INT_TO_PTR(test_client_if));
|
|
if (app)
|
|
app_disconnect_devices(app);
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
break;
|
|
case GATT_CLIENT_TEST_CMD_DISCOVER:
|
|
status = HAL_STATUS_FAILED;
|
|
break;
|
|
case GATT_CLIENT_TEST_CMD_READ:
|
|
case GATT_CLIENT_TEST_CMD_WRITE:
|
|
status = test_read_write(&bdaddr, &uuid, cmd->u1, cmd->u2,
|
|
cmd->u3, cmd->u4, cmd->u5);
|
|
break;
|
|
case GATT_CLIENT_TEST_CMD_PAIRING_CONFIG:
|
|
default:
|
|
status = HAL_STATUS_FAILED;
|
|
break;
|
|
}
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_CLIENT_TEST_COMMAND, status);
|
|
}
|
|
|
|
static void handle_server_register(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_server_register *cmd = buf;
|
|
struct hal_ev_gatt_server_register ev;
|
|
|
|
DBG("");
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
|
|
ev.server_if = register_app(cmd->uuid, APP_SERVER);
|
|
|
|
if (ev.server_if)
|
|
ev.status = GATT_SUCCESS;
|
|
else
|
|
ev.status = GATT_FAILURE;
|
|
|
|
memcpy(ev.uuid, cmd->uuid, sizeof(ev.uuid));
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_SERVER_REGISTER, sizeof(ev), &ev);
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT, HAL_OP_GATT_SERVER_REGISTER,
|
|
HAL_STATUS_SUCCESS);
|
|
}
|
|
|
|
static void handle_server_unregister(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_server_unregister *cmd = buf;
|
|
uint8_t status;
|
|
|
|
DBG("");
|
|
|
|
status = unregister_app(cmd->server_if);
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_SERVER_UNREGISTER, status);
|
|
}
|
|
|
|
static void handle_server_connect(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_server_connect *cmd = buf;
|
|
uint8_t status;
|
|
bdaddr_t addr;
|
|
|
|
DBG("");
|
|
|
|
android2bdaddr(&cmd->bdaddr, &addr);
|
|
|
|
status = handle_connect(cmd->server_if, &addr);
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT, HAL_OP_GATT_SERVER_CONNECT,
|
|
status);
|
|
}
|
|
|
|
static void handle_server_disconnect(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_server_disconnect *cmd = buf;
|
|
struct app_connection *conn;
|
|
uint8_t status;
|
|
|
|
DBG("");
|
|
|
|
/* TODO: should we care to match also bdaddr when conn_id is unique? */
|
|
conn = find_connection_by_id(cmd->conn_id);
|
|
if (conn)
|
|
trigger_disconnection(conn);
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_SERVER_DISCONNECT, status);
|
|
}
|
|
|
|
static void handle_server_add_service(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_server_add_service *cmd = buf;
|
|
struct hal_ev_gatt_server_service_added ev;
|
|
struct gatt_app *server;
|
|
uint8_t status;
|
|
bt_uuid_t uuid;
|
|
|
|
DBG("");
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
|
|
server = find_app_by_id(cmd->server_if);
|
|
if (!server) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
android2uuid(cmd->srvc_id.uuid, &uuid);
|
|
|
|
ev.srvc_handle = gatt_db_add_service(gatt_db, &uuid,
|
|
cmd->srvc_id.is_primary,
|
|
cmd->num_handles);
|
|
if (!ev.srvc_handle) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
failed:
|
|
ev.status = status == HAL_STATUS_SUCCESS ? GATT_SUCCESS : GATT_FAILURE;
|
|
ev.srvc_id = cmd->srvc_id;
|
|
ev.server_if = cmd->server_if;
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_SERVER_SERVICE_ADDED, sizeof(ev), &ev);
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_SERVER_ADD_SERVICE, status);
|
|
}
|
|
|
|
static void handle_server_add_included_service(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_server_add_inc_service *cmd = buf;
|
|
struct hal_ev_gatt_server_inc_srvc_added ev;
|
|
struct gatt_app *server;
|
|
uint8_t status;
|
|
|
|
DBG("");
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
|
|
server = find_app_by_id(cmd->server_if);
|
|
if (!server) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
ev.incl_srvc_handle = gatt_db_add_included_service(gatt_db,
|
|
cmd->service_handle,
|
|
cmd->included_handle);
|
|
if (!ev.incl_srvc_handle) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
failed:
|
|
ev.srvc_handle = cmd->service_handle;
|
|
ev.status = status;
|
|
ev.server_if = cmd->server_if;
|
|
ev.status = status == HAL_STATUS_SUCCESS ? GATT_SUCCESS : GATT_FAILURE;
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_SERVER_INC_SRVC_ADDED, sizeof(ev), &ev);
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_SERVER_ADD_INC_SERVICE, status);
|
|
}
|
|
|
|
static bool is_service(const bt_uuid_t *type)
|
|
{
|
|
bt_uuid_t uuid;
|
|
|
|
bt_uuid16_create(&uuid, GATT_PRIM_SVC_UUID);
|
|
if (!bt_uuid_cmp(&uuid, type))
|
|
return true;
|
|
|
|
bt_uuid16_create(&uuid, GATT_SND_SVC_UUID);
|
|
if (!bt_uuid_cmp(&uuid, type))
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
static bool match_pending_dev_request(const void *data, const void *user_data)
|
|
{
|
|
const struct pending_request *pending_request = data;
|
|
|
|
return pending_request->state == REQUEST_PENDING;
|
|
}
|
|
|
|
static void send_dev_complete_response(struct gatt_device *device,
|
|
uint8_t opcode)
|
|
{
|
|
size_t mtu;
|
|
uint8_t *rsp = g_attrib_get_buffer(device->attrib, &mtu);
|
|
struct pending_request *val;
|
|
uint16_t len = 0;
|
|
uint8_t error = 0;
|
|
|
|
if (queue_find(device->pending_requests, match_pending_dev_request,
|
|
NULL)) {
|
|
DBG("Still pending requests");
|
|
return;
|
|
}
|
|
|
|
switch (opcode) {
|
|
case ATT_OP_READ_BY_TYPE_REQ: {
|
|
struct att_data_list *adl;
|
|
int iterator = 0;
|
|
int length;
|
|
struct queue *temp;
|
|
|
|
temp = queue_new();
|
|
if (!temp)
|
|
goto done;
|
|
|
|
val = queue_pop_head(device->pending_requests);
|
|
if (!val) {
|
|
queue_destroy(temp, NULL);
|
|
error = ATT_ECODE_ATTR_NOT_FOUND;
|
|
goto done;
|
|
}
|
|
|
|
if (val->error) {
|
|
queue_destroy(temp, NULL);
|
|
error = val->error;
|
|
goto done;
|
|
}
|
|
|
|
length = val->length;
|
|
|
|
while (val && val->length == length && val->error == 0) {
|
|
queue_push_tail(temp, val);
|
|
val = queue_pop_head(device->pending_requests);
|
|
}
|
|
|
|
adl = att_data_list_alloc(queue_length(temp), sizeof(uint16_t) +
|
|
length);
|
|
|
|
val = queue_pop_head(temp);
|
|
while (val) {
|
|
uint8_t *value = adl->data[iterator++];
|
|
|
|
put_le16(val->handle, value);
|
|
memcpy(&value[2], val->value, val->length);
|
|
|
|
destroy_pending_request(val);
|
|
val = queue_pop_head(temp);
|
|
}
|
|
|
|
len = enc_read_by_type_resp(adl, rsp, mtu);
|
|
|
|
att_data_list_free(adl);
|
|
queue_destroy(temp, destroy_pending_request);
|
|
|
|
break;
|
|
}
|
|
case ATT_OP_READ_BLOB_REQ:
|
|
val = queue_pop_head(device->pending_requests);
|
|
if (val->error) {
|
|
error = val->error;
|
|
goto done;
|
|
}
|
|
|
|
len = enc_read_blob_resp(val->value, val->length, val->offset,
|
|
rsp, mtu);
|
|
destroy_pending_request(val);
|
|
break;
|
|
case ATT_OP_READ_REQ:
|
|
val = queue_pop_head(device->pending_requests);
|
|
if (val->error) {
|
|
error = val->error;
|
|
goto done;
|
|
}
|
|
|
|
len = enc_read_resp(val->value, val->length, rsp, mtu);
|
|
destroy_pending_request(val);
|
|
break;
|
|
case ATT_OP_READ_BY_GROUP_REQ: {
|
|
struct att_data_list *adl;
|
|
int iterator = 0;
|
|
int length;
|
|
struct queue *temp;
|
|
|
|
temp = queue_new();
|
|
if (!temp)
|
|
goto done;
|
|
|
|
val = queue_pop_head(device->pending_requests);
|
|
if (!val) {
|
|
queue_destroy(temp, NULL);
|
|
error = ATT_ECODE_ATTR_NOT_FOUND;
|
|
goto done;
|
|
}
|
|
|
|
length = val->length;
|
|
|
|
while (val && val->length == length) {
|
|
queue_push_tail(temp, val);
|
|
val = queue_pop_head(device->pending_requests);
|
|
}
|
|
|
|
adl = att_data_list_alloc(queue_length(temp),
|
|
2 * sizeof(uint16_t) + length);
|
|
|
|
val = queue_pop_head(temp);
|
|
while (val) {
|
|
uint8_t *value = adl->data[iterator++];
|
|
uint16_t end_handle;
|
|
|
|
end_handle = gatt_db_get_end_handle(gatt_db,
|
|
val->handle);
|
|
|
|
put_le16(val->handle, value);
|
|
put_le16(end_handle, &value[2]);
|
|
memcpy(&value[4], val->value, val->length);
|
|
|
|
destroy_pending_request(val);
|
|
val = queue_pop_head(temp);
|
|
}
|
|
|
|
len = enc_read_by_grp_resp(adl, rsp, mtu);
|
|
|
|
att_data_list_free(adl);
|
|
queue_destroy(temp, destroy_pending_request);
|
|
|
|
break;
|
|
}
|
|
case ATT_OP_FIND_BY_TYPE_REQ: {
|
|
GSList *list = NULL;
|
|
|
|
val = queue_pop_head(device->pending_requests);
|
|
while (val) {
|
|
struct att_range *range;
|
|
const bt_uuid_t *type;
|
|
|
|
/* Its find by type and value - filter by value here */
|
|
if ((val->length != val->filter_vlen) ||
|
|
memcmp(val->value, val->filter_value,
|
|
val->length)) {
|
|
|
|
destroy_pending_request(val);
|
|
val = queue_pop_head(device->pending_requests);
|
|
continue;
|
|
}
|
|
|
|
range = new0(struct att_range, 1);
|
|
if (!range) {
|
|
destroy_pending_request(val);
|
|
error = ATT_ECODE_INSUFF_RESOURCES;
|
|
break;
|
|
}
|
|
|
|
range->start = val->handle;
|
|
range->end = range->start;
|
|
|
|
/* Get proper end handle if its group type */
|
|
type = gatt_db_get_attribute_type(gatt_db, val->handle);
|
|
if (is_service(type))
|
|
range->end = gatt_db_get_end_handle(gatt_db,
|
|
val->handle);
|
|
|
|
list = g_slist_append(list, range);
|
|
|
|
destroy_pending_request(val);
|
|
val = queue_pop_head(device->pending_requests);
|
|
}
|
|
|
|
if (list && !error)
|
|
len = enc_find_by_type_resp(list, rsp, mtu);
|
|
else
|
|
error = ATT_ECODE_ATTR_NOT_FOUND;
|
|
|
|
g_slist_free_full(list, free);
|
|
|
|
break;
|
|
}
|
|
case ATT_OP_EXEC_WRITE_REQ:
|
|
val = queue_pop_head(device->pending_requests);
|
|
if (val->error) {
|
|
error = val->error;
|
|
goto done;
|
|
}
|
|
|
|
len = enc_exec_write_resp(rsp);
|
|
destroy_pending_request(val);
|
|
break;
|
|
case ATT_OP_WRITE_REQ:
|
|
val = queue_pop_head(device->pending_requests);
|
|
if (val->error) {
|
|
error = val->error;
|
|
goto done;
|
|
}
|
|
|
|
len = enc_write_resp(rsp);
|
|
destroy_pending_request(val);
|
|
break;
|
|
case ATT_OP_PREP_WRITE_REQ:
|
|
val = queue_pop_head(device->pending_requests);
|
|
if (val->error) {
|
|
error = val->error;
|
|
goto done;
|
|
}
|
|
|
|
len = enc_prep_write_resp(val->handle, val->offset, val->value,
|
|
val->length, rsp, mtu);
|
|
destroy_pending_request(val);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
done:
|
|
if (!len)
|
|
len = enc_error_resp(opcode, 0x0000, error, rsp, mtu);
|
|
|
|
g_attrib_send(device->attrib, 0, rsp, len, NULL, NULL, NULL);
|
|
|
|
queue_remove_all(device->pending_requests, NULL, NULL,
|
|
destroy_pending_request);
|
|
}
|
|
|
|
struct request_processing_data {
|
|
uint8_t opcode;
|
|
struct gatt_device *device;
|
|
};
|
|
|
|
static bool match_dev_request_by_handle(const void *data, const void *user_data)
|
|
{
|
|
const struct pending_request *handle_data = data;
|
|
uint16_t handle = PTR_TO_UINT(user_data);
|
|
|
|
return handle_data->handle == handle;
|
|
}
|
|
|
|
static uint8_t check_device_permissions(struct gatt_device *device,
|
|
uint8_t opcode, uint32_t permissions)
|
|
{
|
|
GIOChannel *io;
|
|
int sec_level;
|
|
|
|
io = g_attrib_get_channel(device->attrib);
|
|
|
|
if (!bt_io_get(io, NULL, BT_IO_OPT_SEC_LEVEL, &sec_level,
|
|
BT_IO_OPT_INVALID))
|
|
return ATT_ECODE_UNLIKELY;
|
|
|
|
DBG("opcode %u permissions %u sec_level %u", opcode, permissions,
|
|
sec_level);
|
|
|
|
switch (opcode) {
|
|
case ATT_OP_SIGNED_WRITE_CMD:
|
|
if (!(permissions & GATT_PERM_WRITE_SIGNED))
|
|
return ATT_ECODE_WRITE_NOT_PERM;
|
|
|
|
if ((permissions & GATT_PERM_WRITE_SIGNED_MITM) &&
|
|
sec_level < BT_SECURITY_HIGH)
|
|
return ATT_ECODE_AUTHENTICATION;
|
|
break;
|
|
case ATT_OP_READ_BY_TYPE_REQ:
|
|
case ATT_OP_READ_REQ:
|
|
case ATT_OP_READ_BLOB_REQ:
|
|
case ATT_OP_READ_MULTI_REQ:
|
|
case ATT_OP_READ_BY_GROUP_REQ:
|
|
case ATT_OP_FIND_BY_TYPE_REQ:
|
|
case ATT_OP_FIND_INFO_REQ:
|
|
if (!(permissions & GATT_PERM_READ))
|
|
return ATT_ECODE_READ_NOT_PERM;
|
|
|
|
if ((permissions & GATT_PERM_READ_ENCRYPTED) &&
|
|
sec_level < BT_SECURITY_MEDIUM)
|
|
return ATT_ECODE_INSUFF_ENC;
|
|
|
|
if ((permissions & GATT_PERM_READ_MITM) &&
|
|
sec_level < BT_SECURITY_HIGH)
|
|
return ATT_ECODE_AUTHENTICATION;
|
|
|
|
if (permissions & GATT_PERM_READ_AUTHORIZATION)
|
|
return ATT_ECODE_AUTHORIZATION;
|
|
break;
|
|
case ATT_OP_WRITE_REQ:
|
|
case ATT_OP_WRITE_CMD:
|
|
case ATT_OP_PREP_WRITE_REQ:
|
|
case ATT_OP_EXEC_WRITE_REQ:
|
|
if (!(permissions & GATT_PERM_WRITE))
|
|
return ATT_ECODE_WRITE_NOT_PERM;
|
|
|
|
if ((permissions & GATT_PERM_WRITE_ENCRYPTED) &&
|
|
sec_level < BT_SECURITY_MEDIUM)
|
|
return ATT_ECODE_INSUFF_ENC;
|
|
|
|
if ((permissions & GATT_PERM_WRITE_MITM) &&
|
|
sec_level < BT_SECURITY_HIGH)
|
|
return ATT_ECODE_AUTHENTICATION;
|
|
|
|
if (permissions & GATT_PERM_WRITE_AUTHORIZATION)
|
|
return ATT_ECODE_AUTHORIZATION;
|
|
break;
|
|
default:
|
|
return ATT_ECODE_UNLIKELY;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void fill_gatt_response(struct pending_request *request, uint16_t handle,
|
|
uint16_t offset, uint8_t status,
|
|
uint16_t len, const uint8_t *data)
|
|
{
|
|
request->handle = handle;
|
|
request->offset = offset;
|
|
request->length = len;
|
|
request->state = REQUEST_DONE;
|
|
request->error = status;
|
|
|
|
if (!len)
|
|
return;
|
|
|
|
request->value = malloc0(len);
|
|
if (!request->value) {
|
|
request->error = ATT_ECODE_INSUFF_RESOURCES;
|
|
|
|
return;
|
|
}
|
|
|
|
memcpy(request->value, data, len);
|
|
}
|
|
|
|
static void fill_gatt_response_by_handle(uint16_t handle, uint16_t offset,
|
|
uint8_t status, uint16_t len,
|
|
const uint8_t *data,
|
|
struct gatt_device *dev)
|
|
{
|
|
struct pending_request *entry;
|
|
|
|
entry = queue_find(dev->pending_requests, match_dev_request_by_handle,
|
|
UINT_TO_PTR(handle));
|
|
if (entry) {
|
|
DBG("No pending response found! Bogus android response?");
|
|
return;
|
|
}
|
|
|
|
fill_gatt_response(entry, handle, offset, status, len, data);
|
|
}
|
|
|
|
static void read_requested_attributes(void *data, void *user_data)
|
|
{
|
|
struct pending_request *resp_data = data;
|
|
struct request_processing_data *process_data = user_data;
|
|
uint32_t permissions;
|
|
uint8_t *value, error;
|
|
int value_len = 0;
|
|
|
|
if (!gatt_db_get_attribute_permissions(gatt_db, resp_data->handle,
|
|
&permissions)) {
|
|
resp_data->error = ATT_ECODE_ATTR_NOT_FOUND;
|
|
resp_data->state = REQUEST_DONE;
|
|
return;
|
|
}
|
|
|
|
/*
|
|
* Check if it is attribute we didn't declare permissions, like service
|
|
* declaration or included service. Set permissions to read only
|
|
*/
|
|
if (permissions == 0)
|
|
permissions = GATT_PERM_READ;
|
|
|
|
error = check_device_permissions(process_data->device,
|
|
process_data->opcode,
|
|
permissions);
|
|
if (error)
|
|
goto done;
|
|
|
|
if (!gatt_db_read(gatt_db, resp_data->handle,
|
|
resp_data->offset,
|
|
process_data->opcode,
|
|
&process_data->device->bdaddr,
|
|
&value, &value_len)) {
|
|
error = ATT_ECODE_UNLIKELY;
|
|
goto done;
|
|
}
|
|
|
|
done:
|
|
/* We have value here already if no callback will be called */
|
|
if (value_len >= 0)
|
|
fill_gatt_response(resp_data, resp_data->handle,
|
|
resp_data->offset, error, value_len,
|
|
value);
|
|
}
|
|
|
|
static void process_dev_pending_requests(struct gatt_device *device,
|
|
uint8_t att_opcode)
|
|
{
|
|
struct request_processing_data process_data;
|
|
|
|
if (queue_isempty(device->pending_requests))
|
|
return;
|
|
|
|
process_data.device = device;
|
|
process_data.opcode = att_opcode;
|
|
|
|
/* Process pending requests and prepare response */
|
|
queue_foreach(device->pending_requests, read_requested_attributes,
|
|
&process_data);
|
|
|
|
send_dev_complete_response(device, att_opcode);
|
|
}
|
|
|
|
static struct pending_trans_data *conn_add_transact(struct app_connection *conn,
|
|
uint8_t opcode)
|
|
{
|
|
struct pending_trans_data *transaction;
|
|
static int32_t trans_id = 1;
|
|
|
|
transaction = new0(struct pending_trans_data, 1);
|
|
if (!transaction)
|
|
return NULL;
|
|
|
|
if (!queue_push_tail(conn->transactions, transaction)) {
|
|
free(transaction);
|
|
return NULL;
|
|
}
|
|
|
|
transaction->id = trans_id++;
|
|
transaction->opcode = opcode;
|
|
|
|
return transaction;
|
|
}
|
|
|
|
static void read_cb(uint16_t handle, uint16_t offset, uint8_t att_opcode,
|
|
bdaddr_t *bdaddr, void *user_data)
|
|
{
|
|
struct pending_trans_data *transaction;
|
|
struct hal_ev_gatt_server_request_read ev;
|
|
struct gatt_app *app;
|
|
struct app_connection *conn;
|
|
int32_t id = PTR_TO_INT(user_data);
|
|
struct gatt_device *dev;
|
|
|
|
app = find_app_by_id(id);
|
|
if (!app) {
|
|
error("gatt: read_cb, cound not found app id");
|
|
goto failed;
|
|
}
|
|
|
|
conn = find_conn(bdaddr, app->id);
|
|
if (!conn) {
|
|
error("gatt: read_cb, cound not found connection");
|
|
goto failed;
|
|
}
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
|
|
/* Store the request data, complete callback and transaction id */
|
|
transaction = conn_add_transact(conn, att_opcode);
|
|
if (!transaction)
|
|
goto failed;
|
|
|
|
bdaddr2android(bdaddr, ev.bdaddr);
|
|
ev.conn_id = conn->id;
|
|
ev.attr_handle = handle;
|
|
ev.offset = offset;
|
|
ev.is_long = att_opcode == ATT_OP_READ_BLOB_REQ;
|
|
ev.trans_id = transaction->id;
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_SERVER_REQUEST_READ,
|
|
sizeof(ev), &ev);
|
|
|
|
return;
|
|
|
|
failed:
|
|
dev = find_device_by_addr(bdaddr);
|
|
if (dev)
|
|
fill_gatt_response_by_handle(handle, 0, ATT_ECODE_UNLIKELY, 0,
|
|
NULL, dev);
|
|
}
|
|
|
|
static void write_cb(uint16_t handle, uint16_t offset,
|
|
const uint8_t *value, size_t len,
|
|
uint8_t att_opcode, bdaddr_t *bdaddr,
|
|
void *user_data)
|
|
{
|
|
uint8_t buf[IPC_MTU];
|
|
struct hal_ev_gatt_server_request_write *ev = (void *) buf;
|
|
struct pending_trans_data *transaction;
|
|
struct gatt_app *app;
|
|
int32_t id = PTR_TO_INT(user_data);
|
|
struct app_connection *conn;
|
|
struct gatt_device *dev;
|
|
|
|
app = find_app_by_id(id);
|
|
if (!app) {
|
|
error("gatt: write_cb could not found app id");
|
|
goto failed;
|
|
}
|
|
|
|
conn = find_conn(bdaddr, app->id);
|
|
if (!conn) {
|
|
error("gatt: write_cb could not found connection");
|
|
goto failed;
|
|
}
|
|
|
|
/*
|
|
* Remember that this application has ongoing prep write
|
|
* Need it later to find out where to send execute write
|
|
*/
|
|
if (att_opcode == ATT_OP_PREP_WRITE_REQ)
|
|
conn->wait_execute_write = true;
|
|
|
|
/* Store the request data, complete callback and transaction id */
|
|
transaction = conn_add_transact(conn, att_opcode);
|
|
if (!transaction)
|
|
goto failed;
|
|
|
|
memset(ev, 0, sizeof(*ev));
|
|
|
|
bdaddr2android(bdaddr, &ev->bdaddr);
|
|
ev->attr_handle = handle;
|
|
ev->offset = offset;
|
|
|
|
ev->conn_id = conn->id;
|
|
ev->trans_id = transaction->id;
|
|
|
|
ev->is_prep = att_opcode == ATT_OP_PREP_WRITE_REQ;
|
|
ev->need_rsp = att_opcode == ATT_OP_WRITE_REQ;
|
|
|
|
ev->length = len;
|
|
memcpy(ev->value, value, len);
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_SERVER_REQUEST_WRITE,
|
|
sizeof(*ev) + ev->length , ev);
|
|
return;
|
|
|
|
failed:
|
|
dev = find_device_by_addr(bdaddr);
|
|
if (dev)
|
|
fill_gatt_response_by_handle(handle, 0, ATT_ECODE_UNLIKELY, 0,
|
|
NULL, dev);
|
|
}
|
|
|
|
static uint32_t android_to_gatt_permissions(int32_t hal_permissions)
|
|
{
|
|
uint32_t permissions = 0;
|
|
|
|
if (hal_permissions & HAL_GATT_PERMISSION_READ)
|
|
permissions |= GATT_PERM_READ;
|
|
|
|
if (hal_permissions & HAL_GATT_PERMISSION_READ_ENCRYPTED)
|
|
permissions |= GATT_PERM_READ_ENCRYPTED | GATT_PERM_READ;
|
|
|
|
if (hal_permissions & HAL_GATT_PERMISSION_READ_ENCRYPTED_MITM)
|
|
permissions |= GATT_PERM_READ_MITM | GATT_PERM_READ_ENCRYPTED |
|
|
GATT_PERM_READ;
|
|
|
|
if (hal_permissions & HAL_GATT_PERMISSION_WRITE)
|
|
permissions |= GATT_PERM_WRITE;
|
|
|
|
if (hal_permissions & HAL_GATT_PERMISSION_WRITE_ENCRYPTED)
|
|
permissions |= GATT_PERM_WRITE_ENCRYPTED | GATT_PERM_WRITE;
|
|
|
|
if (hal_permissions & HAL_GATT_PERMISSION_WRITE_ENCRYPTED_MITM)
|
|
permissions |= GATT_PERM_WRITE_MITM |
|
|
GATT_PERM_WRITE_ENCRYPTED | GATT_PERM_WRITE;
|
|
|
|
if (hal_permissions & HAL_GATT_PERMISSION_WRITE_SIGNED)
|
|
permissions |= GATT_PERM_WRITE_SIGNED;
|
|
|
|
if (hal_permissions & HAL_GATT_PERMISSION_WRITE_SIGNED_MITM)
|
|
permissions |= GATT_PERM_WRITE_SIGNED_MITM |
|
|
GATT_PERM_WRITE_SIGNED;
|
|
|
|
return permissions;
|
|
}
|
|
|
|
static void handle_server_add_characteristic(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_server_add_characteristic *cmd = buf;
|
|
struct hal_ev_gatt_server_characteristic_added ev;
|
|
struct gatt_app *server;
|
|
bt_uuid_t uuid;
|
|
uint8_t status;
|
|
uint32_t permissions;
|
|
int32_t app_id = cmd->server_if;
|
|
|
|
DBG("");
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
|
|
server = find_app_by_id(app_id);
|
|
if (!server) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
android2uuid(cmd->uuid, &uuid);
|
|
permissions = android_to_gatt_permissions(cmd->permissions);
|
|
|
|
ev.char_handle = gatt_db_add_characteristic(gatt_db,
|
|
cmd->service_handle,
|
|
&uuid, permissions,
|
|
cmd->properties,
|
|
read_cb, write_cb,
|
|
INT_TO_PTR(app_id));
|
|
if (!ev.char_handle)
|
|
status = HAL_STATUS_FAILED;
|
|
else
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
failed:
|
|
ev.srvc_handle = cmd->service_handle;
|
|
ev.status = status;
|
|
ev.server_if = app_id;
|
|
ev.status = status == HAL_STATUS_SUCCESS ? GATT_SUCCESS : GATT_FAILURE;
|
|
memcpy(ev.uuid, cmd->uuid, sizeof(cmd->uuid));
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_SERVER_CHAR_ADDED, sizeof(ev), &ev);
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_SERVER_ADD_CHARACTERISTIC, status);
|
|
}
|
|
|
|
static void handle_server_add_descriptor(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_server_add_descriptor *cmd = buf;
|
|
struct hal_ev_gatt_server_descriptor_added ev;
|
|
struct gatt_app *server;
|
|
bt_uuid_t uuid;
|
|
uint8_t status;
|
|
uint32_t permissions;
|
|
int32_t app_id = cmd->server_if;
|
|
|
|
DBG("");
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
|
|
server = find_app_by_id(app_id);
|
|
if (!server) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
android2uuid(cmd->uuid, &uuid);
|
|
permissions = android_to_gatt_permissions(cmd->permissions);
|
|
|
|
ev.descr_handle = gatt_db_add_char_descriptor(gatt_db,
|
|
cmd->service_handle,
|
|
&uuid, permissions,
|
|
read_cb, write_cb,
|
|
INT_TO_PTR(app_id));
|
|
if (!ev.descr_handle)
|
|
status = HAL_STATUS_FAILED;
|
|
else
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
failed:
|
|
ev.server_if = app_id;
|
|
ev.srvc_handle = cmd->service_handle;
|
|
memcpy(ev.uuid, cmd->uuid, sizeof(cmd->uuid));
|
|
ev.status = status == HAL_STATUS_SUCCESS ? GATT_SUCCESS : GATT_FAILURE;
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_SERVER_DESCRIPTOR_ADDED, sizeof(ev), &ev);
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_SERVER_ADD_DESCRIPTOR, status);
|
|
}
|
|
|
|
static void notify_service_change(void *data, void *user_data)
|
|
{
|
|
struct att_range range;
|
|
|
|
range.start = PTR_TO_UINT(user_data);
|
|
range.end = gatt_db_get_end_handle(gatt_db, range.start);
|
|
|
|
/* In case of db error */
|
|
if (!range.end)
|
|
return;
|
|
|
|
notify_att_range_change(data, &range);
|
|
}
|
|
|
|
static void handle_server_start_service(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_server_start_service *cmd = buf;
|
|
struct hal_ev_gatt_server_service_started ev;
|
|
struct gatt_app *server;
|
|
uint8_t status;
|
|
|
|
DBG("");
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
|
|
server = find_app_by_id(cmd->server_if);
|
|
if (!server) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
/* TODO: support BR/EDR (cmd->transport) */
|
|
|
|
if (!gatt_db_service_set_active(gatt_db, cmd->service_handle, true)) {
|
|
/* we ignore service now */
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
queue_foreach(gatt_devices, notify_service_change,
|
|
UINT_TO_PTR(cmd->service_handle));
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
failed:
|
|
ev.status = status == HAL_STATUS_SUCCESS ? GATT_SUCCESS : GATT_FAILURE;
|
|
ev.server_if = cmd->server_if;
|
|
ev.srvc_handle = cmd->service_handle;
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_SERVER_SERVICE_STARTED, sizeof(ev), &ev);
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_SERVER_START_SERVICE, status);
|
|
}
|
|
|
|
static void handle_server_stop_service(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_server_stop_service *cmd = buf;
|
|
struct hal_ev_gatt_server_service_stopped ev;
|
|
struct gatt_app *server;
|
|
uint8_t status;
|
|
|
|
DBG("");
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
|
|
server = find_app_by_id(cmd->server_if);
|
|
if (!server) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
if (!gatt_db_service_set_active(gatt_db, cmd->service_handle, false))
|
|
status = HAL_STATUS_FAILED;
|
|
else
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
queue_foreach(gatt_devices, notify_service_change,
|
|
UINT_TO_PTR(cmd->service_handle));
|
|
|
|
failed:
|
|
ev.status = status == HAL_STATUS_SUCCESS ? GATT_SUCCESS : GATT_FAILURE;
|
|
ev.server_if = cmd->server_if;
|
|
ev.srvc_handle = cmd->service_handle;
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_SERVER_SERVICE_STOPPED, sizeof(ev), &ev);
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_SERVER_STOP_SERVICE, status);
|
|
}
|
|
|
|
static void handle_server_delete_service(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_server_delete_service *cmd = buf;
|
|
struct hal_ev_gatt_server_service_deleted ev;
|
|
struct gatt_app *server;
|
|
uint8_t status;
|
|
|
|
DBG("");
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
|
|
server = find_app_by_id(cmd->server_if);
|
|
if (!server) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
if (!gatt_db_remove_service(gatt_db, cmd->service_handle)) {
|
|
status = HAL_STATUS_FAILED;
|
|
goto failed;
|
|
}
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
failed:
|
|
ev.status = status == HAL_STATUS_SUCCESS ? GATT_SUCCESS : GATT_FAILURE;
|
|
ev.srvc_handle = cmd->service_handle;
|
|
ev.server_if = cmd->server_if;
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_SERVER_SERVICE_DELETED, sizeof(ev), &ev);
|
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_SERVER_DELETE_SERVICE, status);
|
|
}
|
|
|
|
static void handle_server_send_indication(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_server_send_indication *cmd = buf;
|
|
struct app_connection *conn;
|
|
uint8_t status;
|
|
uint16_t length;
|
|
uint8_t *pdu;
|
|
size_t mtu;
|
|
|
|
DBG("");
|
|
|
|
conn = find_connection_by_id(cmd->conn_id);
|
|
if (!conn) {
|
|
error("gatt: Could not find connection");
|
|
status = HAL_STATUS_FAILED;
|
|
goto reply;
|
|
}
|
|
|
|
pdu = g_attrib_get_buffer(conn->device->attrib, &mtu);
|
|
|
|
if (cmd->confirm)
|
|
/* TODO: Add data to track confirmation for this request */
|
|
length = enc_indication(cmd->attribute_handle,
|
|
(uint8_t *)cmd->value, cmd->len, pdu,
|
|
mtu);
|
|
else
|
|
length = enc_notification(cmd->attribute_handle,
|
|
(uint8_t *)cmd->value, cmd->len,
|
|
pdu, mtu);
|
|
|
|
g_attrib_send(conn->device->attrib, 0, pdu, length, NULL, NULL, NULL);
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
reply:
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_SERVER_SEND_INDICATION, status);
|
|
}
|
|
|
|
static bool match_trans_id(const void *data, const void *user_data)
|
|
{
|
|
const struct pending_trans_data *transaction = data;
|
|
|
|
return transaction->id == PTR_TO_UINT(user_data);
|
|
}
|
|
|
|
|
|
static bool find_conn_waiting_exec_write(const void *data,
|
|
const void *user_data)
|
|
{
|
|
const struct app_connection *conn = data;
|
|
|
|
return conn->wait_execute_write;
|
|
}
|
|
|
|
static bool pending_execute_write(void)
|
|
{
|
|
return queue_find(app_connections, find_conn_waiting_exec_write, NULL);
|
|
}
|
|
|
|
static void handle_server_send_response(const void *buf, uint16_t len)
|
|
{
|
|
const struct hal_cmd_gatt_server_send_response *cmd = buf;
|
|
struct pending_trans_data *transaction;
|
|
uint16_t handle = cmd->handle;
|
|
struct app_connection *conn;
|
|
uint8_t status;
|
|
|
|
DBG("");
|
|
|
|
conn = find_connection_by_id(cmd->conn_id);
|
|
if (!conn) {
|
|
error("gatt: could not found connection");
|
|
status = HAL_STATUS_FAILED;
|
|
goto reply;
|
|
}
|
|
|
|
transaction = queue_remove_if(conn->transactions, match_trans_id,
|
|
UINT_TO_PTR(cmd->trans_id));
|
|
if (!transaction) {
|
|
error("gatt: transaction ID = %d not found", cmd->trans_id);
|
|
status = HAL_STATUS_FAILED;
|
|
goto reply;
|
|
}
|
|
|
|
if (transaction->opcode == ATT_OP_EXEC_WRITE_REQ) {
|
|
conn->wait_execute_write = false;
|
|
|
|
/* Check for execute response from all server applications */
|
|
if (pending_execute_write())
|
|
goto done;
|
|
|
|
/* Make sure handle is 0. We need it to find pending request */
|
|
handle = 0;
|
|
|
|
/*
|
|
* FIXME: Handle situation when not all server applications
|
|
* respond with a success.
|
|
*/
|
|
}
|
|
|
|
fill_gatt_response_by_handle(handle, cmd->offset, cmd->status, cmd->len,
|
|
cmd->data, conn->device);
|
|
send_dev_complete_response(conn->device, transaction->opcode);
|
|
|
|
done:
|
|
/* Clean request data */
|
|
free(transaction);
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
reply:
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_OP_GATT_SERVER_SEND_RESPONSE, status);
|
|
}
|
|
|
|
static const struct ipc_handler cmd_handlers[] = {
|
|
/* HAL_OP_GATT_CLIENT_REGISTER */
|
|
{ handle_client_register, false,
|
|
sizeof(struct hal_cmd_gatt_client_register) },
|
|
/* HAL_OP_GATT_CLIENT_UNREGISTER */
|
|
{ handle_client_unregister, false,
|
|
sizeof(struct hal_cmd_gatt_client_unregister) },
|
|
/* HAL_OP_GATT_CLIENT_SCAN */
|
|
{ handle_client_scan, false,
|
|
sizeof(struct hal_cmd_gatt_client_scan) },
|
|
/* HAL_OP_GATT_CLIENT_CONNECT */
|
|
{ handle_client_connect, false,
|
|
sizeof(struct hal_cmd_gatt_client_connect) },
|
|
/* HAL_OP_GATT_CLIENT_DISCONNECT */
|
|
{ handle_client_disconnect, false,
|
|
sizeof(struct hal_cmd_gatt_client_disconnect) },
|
|
/* HAL_OP_GATT_CLIENT_LISTEN */
|
|
{ handle_client_listen, false,
|
|
sizeof(struct hal_cmd_gatt_client_listen) },
|
|
/* HAL_OP_GATT_CLIENT_REFRESH */
|
|
{ handle_client_refresh, false,
|
|
sizeof(struct hal_cmd_gatt_client_refresh) },
|
|
/* HAL_OP_GATT_CLIENT_SEARCH_SERVICE */
|
|
{ handle_client_search_service, true,
|
|
sizeof(struct hal_cmd_gatt_client_search_service) },
|
|
/* HAL_OP_GATT_CLIENT_GET_INCLUDED_SERVICE */
|
|
{ handle_client_get_included_service, true,
|
|
sizeof(struct hal_cmd_gatt_client_get_included_service) },
|
|
/* HAL_OP_GATT_CLIENT_GET_CHARACTERISTIC */
|
|
{ handle_client_get_characteristic, true,
|
|
sizeof(struct hal_cmd_gatt_client_get_characteristic) },
|
|
/* HAL_OP_GATT_CLIENT_GET_DESCRIPTOR */
|
|
{ handle_client_get_descriptor, true,
|
|
sizeof(struct hal_cmd_gatt_client_get_descriptor) },
|
|
/* HAL_OP_GATT_CLIENT_READ_CHARACTERISTIC */
|
|
{ handle_client_read_characteristic, false,
|
|
sizeof(struct hal_cmd_gatt_client_read_characteristic) },
|
|
/* HAL_OP_GATT_CLIENT_WRITE_CHARACTERISTIC */
|
|
{ handle_client_write_characteristic, true,
|
|
sizeof(struct hal_cmd_gatt_client_write_characteristic) },
|
|
/* HAL_OP_GATT_CLIENT_READ_DESCRIPTOR */
|
|
{ handle_client_read_descriptor, false,
|
|
sizeof(struct hal_cmd_gatt_client_read_descriptor) },
|
|
/* HAL_OP_GATT_CLIENT_WRITE_DESCRIPTOR */
|
|
{ handle_client_write_descriptor, true,
|
|
sizeof(struct hal_cmd_gatt_client_write_descriptor) },
|
|
/* HAL_OP_GATT_CLIENT_EXECUTE_WRITE */
|
|
{ handle_client_execute_write, false,
|
|
sizeof(struct hal_cmd_gatt_client_execute_write)},
|
|
/* HAL_OP_GATT_CLIENT_REGISTER_FOR_NOTIFICATION */
|
|
{ handle_client_register_for_notification, false,
|
|
sizeof(struct hal_cmd_gatt_client_register_for_notification) },
|
|
/* HAL_OP_GATT_CLIENT_DEREGISTER_FOR_NOTIFICATION */
|
|
{ handle_client_deregister_for_notification, false,
|
|
sizeof(struct hal_cmd_gatt_client_deregister_for_notification) },
|
|
/* HAL_OP_GATT_CLIENT_READ_REMOTE_RSSI */
|
|
{ handle_client_read_remote_rssi, false,
|
|
sizeof(struct hal_cmd_gatt_client_read_remote_rssi) },
|
|
/* HAL_OP_GATT_CLIENT_GET_DEVICE_TYPE */
|
|
{ handle_client_get_device_type, false,
|
|
sizeof(struct hal_cmd_gatt_client_get_device_type) },
|
|
/* HAL_OP_GATT_CLIENT_SET_ADV_DATA */
|
|
{ handle_client_set_adv_data, true,
|
|
sizeof(struct hal_cmd_gatt_client_set_adv_data) },
|
|
/* HAL_OP_GATT_CLIENT_TEST_COMMAND */
|
|
{ handle_client_test_command, false,
|
|
sizeof(struct hal_cmd_gatt_client_test_command) },
|
|
/* HAL_OP_GATT_SERVER_REGISTER */
|
|
{ handle_server_register, false,
|
|
sizeof(struct hal_cmd_gatt_server_register) },
|
|
/* HAL_OP_GATT_SERVER_UNREGISTER */
|
|
{ handle_server_unregister, false,
|
|
sizeof(struct hal_cmd_gatt_server_unregister) },
|
|
/* HAL_OP_GATT_SERVER_CONNECT */
|
|
{ handle_server_connect, false,
|
|
sizeof(struct hal_cmd_gatt_server_connect) },
|
|
/* HAL_OP_GATT_SERVER_DISCONNECT */
|
|
{ handle_server_disconnect, false,
|
|
sizeof(struct hal_cmd_gatt_server_disconnect) },
|
|
/* HAL_OP_GATT_SERVER_ADD_SERVICE */
|
|
{ handle_server_add_service, false,
|
|
sizeof(struct hal_cmd_gatt_server_add_service) },
|
|
/* HAL_OP_GATT_SERVER_ADD_INC_SERVICE */
|
|
{ handle_server_add_included_service, false,
|
|
sizeof(struct hal_cmd_gatt_server_add_inc_service) },
|
|
/* HAL_OP_GATT_SERVER_ADD_CHARACTERISTIC */
|
|
{ handle_server_add_characteristic, false,
|
|
sizeof(struct hal_cmd_gatt_server_add_characteristic) },
|
|
/* HAL_OP_GATT_SERVER_ADD_DESCRIPTOR */
|
|
{ handle_server_add_descriptor, false,
|
|
sizeof(struct hal_cmd_gatt_server_add_descriptor) },
|
|
/* HAL_OP_GATT_SERVER_START_SERVICE */
|
|
{ handle_server_start_service, false,
|
|
sizeof(struct hal_cmd_gatt_server_start_service) },
|
|
/* HAL_OP_GATT_SERVER_STOP_SERVICE */
|
|
{ handle_server_stop_service, false,
|
|
sizeof(struct hal_cmd_gatt_server_stop_service) },
|
|
/* HAL_OP_GATT_SERVER_DELETE_SERVICE */
|
|
{ handle_server_delete_service, false,
|
|
sizeof(struct hal_cmd_gatt_server_delete_service) },
|
|
/* HAL_OP_GATT_SERVER_SEND_INDICATION */
|
|
{ handle_server_send_indication, true,
|
|
sizeof(struct hal_cmd_gatt_server_send_indication) },
|
|
/* HAL_OP_GATT_SERVER_SEND_RESPONSE */
|
|
{ handle_server_send_response, true,
|
|
sizeof(struct hal_cmd_gatt_server_send_response) },
|
|
};
|
|
|
|
static uint8_t read_by_group_type(const uint8_t *cmd, uint16_t cmd_len,
|
|
struct gatt_device *device)
|
|
{
|
|
uint16_t start, end;
|
|
int len;
|
|
bt_uuid_t uuid;
|
|
struct queue *q;
|
|
|
|
len = dec_read_by_grp_req(cmd, cmd_len, &start, &end, &uuid);
|
|
if (!len)
|
|
return ATT_ECODE_INVALID_PDU;
|
|
|
|
if (start > end || start == 0)
|
|
return ATT_ECODE_INVALID_HANDLE;
|
|
|
|
q = queue_new();
|
|
if (!q)
|
|
return ATT_ECODE_INSUFF_RESOURCES;
|
|
|
|
gatt_db_read_by_group_type(gatt_db, start, end, uuid, q);
|
|
|
|
if (queue_isempty(q)) {
|
|
queue_destroy(q, NULL);
|
|
return ATT_ECODE_ATTR_NOT_FOUND;
|
|
}
|
|
|
|
while (queue_peek_head(q)) {
|
|
uint16_t handle = PTR_TO_UINT(queue_pop_head(q));
|
|
struct pending_request *entry;
|
|
|
|
entry = new0(struct pending_request, 1);
|
|
if (!entry) {
|
|
queue_destroy(q, destroy_pending_request);
|
|
return ATT_ECODE_UNLIKELY;
|
|
}
|
|
|
|
entry->handle = handle;
|
|
entry->state = REQUEST_INIT;
|
|
|
|
if (!queue_push_tail(device->pending_requests, entry)) {
|
|
queue_remove_all(device->pending_requests, NULL, NULL,
|
|
destroy_pending_request);
|
|
free(entry);
|
|
queue_destroy(q, NULL);
|
|
return ATT_ECODE_UNLIKELY;
|
|
}
|
|
}
|
|
|
|
queue_destroy(q, NULL);
|
|
process_dev_pending_requests(device, cmd[0]);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static uint8_t read_by_type(const uint8_t *cmd, uint16_t cmd_len,
|
|
struct gatt_device *device)
|
|
{
|
|
uint16_t start, end;
|
|
uint16_t len;
|
|
bt_uuid_t uuid;
|
|
struct queue *q;
|
|
|
|
DBG("");
|
|
|
|
len = dec_read_by_type_req(cmd, cmd_len, &start, &end, &uuid);
|
|
if (!len)
|
|
return ATT_ECODE_INVALID_PDU;
|
|
|
|
if (start > end || start == 0)
|
|
return ATT_ECODE_INVALID_HANDLE;
|
|
|
|
q = queue_new();
|
|
if (!q)
|
|
return ATT_ECODE_INSUFF_RESOURCES;
|
|
|
|
gatt_db_read_by_type(gatt_db, start, end, uuid, q);
|
|
|
|
if (queue_isempty(q)) {
|
|
queue_destroy(q, NULL);
|
|
return ATT_ECODE_ATTR_NOT_FOUND;
|
|
}
|
|
|
|
while (queue_peek_head(q)) {
|
|
struct pending_request *data;
|
|
uint16_t handle = PTR_TO_UINT(queue_pop_head(q));
|
|
|
|
data = new0(struct pending_request, 1);
|
|
if (!data) {
|
|
queue_destroy(q, NULL);
|
|
return ATT_ECODE_INSUFF_RESOURCES;
|
|
}
|
|
|
|
data->state = REQUEST_INIT;
|
|
data->handle = handle;
|
|
queue_push_tail(device->pending_requests, data);
|
|
}
|
|
|
|
queue_destroy(q, NULL);
|
|
|
|
process_dev_pending_requests(device, ATT_OP_READ_BY_TYPE_REQ);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static uint8_t read_request(const uint8_t *cmd, uint16_t cmd_len,
|
|
struct gatt_device *dev)
|
|
{
|
|
uint16_t handle;
|
|
uint16_t len;
|
|
uint16_t offset;
|
|
struct pending_request *data;
|
|
|
|
DBG("");
|
|
|
|
switch (cmd[0]) {
|
|
case ATT_OP_READ_BLOB_REQ:
|
|
len = dec_read_blob_req(cmd, cmd_len, &handle, &offset);
|
|
if (!len)
|
|
return ATT_ECODE_INVALID_PDU;
|
|
break;
|
|
case ATT_OP_READ_REQ:
|
|
len = dec_read_req(cmd, cmd_len, &handle);
|
|
if (!len)
|
|
return ATT_ECODE_INVALID_PDU;
|
|
offset = 0;
|
|
break;
|
|
default:
|
|
error("gatt: Unexpected read type 0x%02x", cmd[0]);
|
|
return ATT_ECODE_REQ_NOT_SUPP;
|
|
}
|
|
|
|
if (handle == 0)
|
|
return ATT_ECODE_INVALID_HANDLE;
|
|
|
|
data = new0(struct pending_request, 1);
|
|
if (!data)
|
|
return ATT_ECODE_INSUFF_RESOURCES;
|
|
|
|
data->offset = offset;
|
|
data->handle = handle;
|
|
data->state = REQUEST_INIT;
|
|
if (!queue_push_tail(dev->pending_requests, data)) {
|
|
free(data);
|
|
return ATT_ECODE_INSUFF_RESOURCES;
|
|
}
|
|
|
|
process_dev_pending_requests(dev, cmd[0]);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static uint8_t mtu_att_handle(const uint8_t *cmd, uint16_t cmd_len,
|
|
struct gatt_device *dev)
|
|
{
|
|
uint16_t mtu, imtu, omtu;
|
|
size_t length;
|
|
GIOChannel *io;
|
|
GError *gerr = NULL;
|
|
uint16_t len;
|
|
uint8_t *rsp;
|
|
|
|
DBG("");
|
|
|
|
len = dec_mtu_req(cmd, cmd_len, &mtu);
|
|
if (!len)
|
|
return ATT_ECODE_INVALID_PDU;
|
|
|
|
if (mtu < ATT_DEFAULT_LE_MTU)
|
|
return ATT_ECODE_REQ_NOT_SUPP;
|
|
|
|
io = g_attrib_get_channel(dev->attrib);
|
|
|
|
bt_io_get(io, &gerr,
|
|
BT_IO_OPT_IMTU, &imtu,
|
|
BT_IO_OPT_OMTU, &omtu,
|
|
BT_IO_OPT_INVALID);
|
|
if (gerr) {
|
|
error("bt_io_get: %s", gerr->message);
|
|
g_error_free(gerr);
|
|
return ATT_ECODE_UNLIKELY;
|
|
}
|
|
|
|
rsp = g_attrib_get_buffer(dev->attrib, &length);
|
|
|
|
/* Respond with our IMTU */
|
|
len = enc_mtu_resp(imtu, rsp, length);
|
|
if (!len)
|
|
return ATT_ECODE_UNLIKELY;
|
|
|
|
g_attrib_send(dev->attrib, 0, rsp, len, NULL, NULL, NULL);
|
|
|
|
/* Limit OMTU to received value */
|
|
mtu = MIN(mtu, omtu);
|
|
g_attrib_set_mtu(dev->attrib, mtu);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static uint8_t find_info_handle(const uint8_t *cmd, uint16_t cmd_len,
|
|
uint8_t *rsp, size_t rsp_size,
|
|
uint16_t *length)
|
|
{
|
|
struct queue *q;
|
|
struct att_data_list *adl;
|
|
int iterator = 0;
|
|
uint16_t start, end;
|
|
uint16_t len;
|
|
|
|
DBG("");
|
|
|
|
len = dec_find_info_req(cmd, cmd_len, &start, &end);
|
|
if (!len)
|
|
return ATT_ECODE_INVALID_PDU;
|
|
|
|
if (start > end || start == 0)
|
|
return ATT_ECODE_INVALID_HANDLE;
|
|
|
|
q = queue_new();
|
|
if (!q)
|
|
return ATT_ECODE_UNLIKELY;
|
|
|
|
gatt_db_find_information(gatt_db, start, end, q);
|
|
|
|
if (queue_isempty(q)) {
|
|
queue_destroy(q, NULL);
|
|
return ATT_ECODE_ATTR_NOT_FOUND;
|
|
}
|
|
|
|
len = queue_length(q);
|
|
adl = att_data_list_alloc(len, 2 * sizeof(uint16_t));
|
|
if (!adl) {
|
|
queue_destroy(q, NULL);
|
|
return ATT_ECODE_INSUFF_RESOURCES;
|
|
}
|
|
|
|
while (queue_peek_head(q)) {
|
|
uint8_t *value;
|
|
const bt_uuid_t *type;
|
|
uint16_t handle = PTR_TO_UINT(queue_pop_head(q));
|
|
|
|
type = gatt_db_get_attribute_type(gatt_db, handle);
|
|
if (!type)
|
|
break;
|
|
|
|
value = adl->data[iterator++];
|
|
|
|
put_le16(handle, value);
|
|
memcpy(&value[2], &type->value.u16, bt_uuid_len(type));
|
|
|
|
}
|
|
|
|
if (!adl) {
|
|
queue_destroy(q, NULL);
|
|
return ATT_ECODE_INSUFF_RESOURCES;
|
|
}
|
|
|
|
len = enc_find_info_resp(ATT_FIND_INFO_RESP_FMT_16BIT, adl, rsp,
|
|
rsp_size);
|
|
if (!len)
|
|
return ATT_ECODE_UNLIKELY;
|
|
|
|
*length = len;
|
|
att_data_list_free(adl);
|
|
queue_destroy(q, free);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static uint8_t find_by_type_request(const uint8_t *cmd, uint16_t cmd_len,
|
|
struct gatt_device *device)
|
|
{
|
|
uint8_t search_value[cmd_len];
|
|
size_t search_vlen;
|
|
uint16_t start, end;
|
|
uint16_t handle;
|
|
struct queue *q;
|
|
bt_uuid_t uuid;
|
|
uint16_t len;
|
|
|
|
DBG("");
|
|
|
|
len = dec_find_by_type_req(cmd, cmd_len, &start, &end, &uuid,
|
|
search_value, &search_vlen);
|
|
if (!len)
|
|
return ATT_ECODE_INVALID_PDU;
|
|
|
|
if (start > end || start == 0)
|
|
return ATT_ECODE_INVALID_HANDLE;
|
|
|
|
q = queue_new();
|
|
if (!q)
|
|
return ATT_ECODE_UNLIKELY;
|
|
|
|
gatt_db_find_by_type(gatt_db, start, end, &uuid, q);
|
|
|
|
handle = PTR_TO_UINT(queue_pop_head(q));
|
|
while (handle) {
|
|
struct pending_request *data;
|
|
|
|
data = new0(struct pending_request, 1);
|
|
if (!data) {
|
|
queue_destroy(q, NULL);
|
|
return ATT_ECODE_INSUFF_RESOURCES;
|
|
}
|
|
|
|
data->filter_value = malloc0(search_vlen);
|
|
if (!data) {
|
|
destroy_pending_request(data);
|
|
queue_destroy(q, NULL);
|
|
return ATT_ECODE_INSUFF_RESOURCES;
|
|
}
|
|
|
|
data->state = REQUEST_INIT;
|
|
data->handle = handle;
|
|
data->filter_vlen = search_vlen;
|
|
memcpy(data->filter_value, search_value, search_vlen);
|
|
|
|
queue_push_tail(device->pending_requests, data);
|
|
|
|
handle = PTR_TO_UINT(queue_pop_head(q));
|
|
}
|
|
|
|
queue_destroy(q, NULL);
|
|
|
|
process_dev_pending_requests(device, ATT_OP_FIND_BY_TYPE_REQ);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void write_cmd_request(const uint8_t *cmd, uint16_t cmd_len,
|
|
struct gatt_device *dev)
|
|
{
|
|
uint8_t value[cmd_len];
|
|
uint32_t permissions;
|
|
uint16_t handle;
|
|
uint16_t len;
|
|
size_t vlen;
|
|
|
|
len = dec_write_cmd(cmd, cmd_len, &handle, value, &vlen);
|
|
if (!len)
|
|
return;
|
|
|
|
if (handle == 0)
|
|
return;
|
|
|
|
if (!gatt_db_get_attribute_permissions(gatt_db, handle, &permissions))
|
|
return;
|
|
|
|
if (check_device_permissions(dev, cmd[0], permissions))
|
|
return;
|
|
|
|
gatt_db_write(gatt_db, handle, 0, value, vlen, cmd[0], &dev->bdaddr);
|
|
}
|
|
|
|
static void write_signed_cmd_request(const uint8_t *cmd, uint16_t cmd_len,
|
|
struct gatt_device *dev)
|
|
{
|
|
uint8_t value[ATT_DEFAULT_LE_MTU];
|
|
uint8_t s[ATT_SIGNATURE_LEN];
|
|
uint32_t permissions;
|
|
uint16_t handle;
|
|
uint16_t len;
|
|
size_t vlen;
|
|
uint8_t csrk[16];
|
|
uint32_t sign_cnt;
|
|
|
|
if (!bt_get_csrk(&dev->bdaddr, REMOTE_CSRK, csrk, &sign_cnt)) {
|
|
error("gatt: No valid csrk from remote device");
|
|
return;
|
|
}
|
|
|
|
len = dec_signed_write_cmd(cmd, cmd_len, &handle, value, &vlen, s);
|
|
|
|
if (handle == 0)
|
|
return;
|
|
|
|
if (!gatt_db_get_attribute_permissions(gatt_db, handle, &permissions))
|
|
return;
|
|
|
|
if (check_device_permissions(dev, cmd[0], permissions))
|
|
return;
|
|
|
|
if (len) {
|
|
uint8_t t[ATT_SIGNATURE_LEN];
|
|
uint32_t r_sign_cnt = get_le32(s);
|
|
|
|
if (r_sign_cnt != sign_cnt) {
|
|
error("gatt: sign_cnt does not match (%d!=%d)",
|
|
sign_cnt, r_sign_cnt);
|
|
return;
|
|
}
|
|
|
|
/* Generate signature and verify it */
|
|
if (!bt_crypto_sign_att(crypto, csrk, cmd,
|
|
cmd_len - ATT_SIGNATURE_LEN,
|
|
sign_cnt, t)) {
|
|
error("gatt: Error when generating att signature");
|
|
return;
|
|
}
|
|
|
|
if (memcmp(t, s, ATT_SIGNATURE_LEN)) {
|
|
error("gatt: signature does not match");
|
|
return;
|
|
}
|
|
/* Signature OK, proceed with write */
|
|
bt_update_sign_counter(&dev->bdaddr, REMOTE_CSRK);
|
|
gatt_db_write(gatt_db, handle, 0, value, vlen, cmd[0],
|
|
&dev->bdaddr);
|
|
}
|
|
}
|
|
|
|
static uint8_t write_req_request(const uint8_t *cmd, uint16_t cmd_len,
|
|
struct gatt_device *dev)
|
|
{
|
|
uint8_t value[cmd_len];
|
|
struct pending_request *data;
|
|
uint32_t permissions;
|
|
uint16_t handle;
|
|
uint16_t len;
|
|
uint8_t error;
|
|
size_t vlen;
|
|
|
|
len = dec_write_req(cmd, cmd_len, &handle, value, &vlen);
|
|
if (!len)
|
|
return ATT_ECODE_INVALID_PDU;
|
|
|
|
if (handle == 0)
|
|
return ATT_ECODE_INVALID_HANDLE;
|
|
|
|
if (!gatt_db_get_attribute_permissions(gatt_db, handle, &permissions))
|
|
return ATT_ECODE_ATTR_NOT_FOUND;
|
|
|
|
error = check_device_permissions(dev, cmd[0], permissions);
|
|
if (error)
|
|
return error;
|
|
|
|
data = new0(struct pending_request, 1);
|
|
if (!data)
|
|
return ATT_ECODE_INSUFF_RESOURCES;
|
|
|
|
data->handle = handle;
|
|
data->state = REQUEST_PENDING;
|
|
|
|
if (!queue_push_tail(dev->pending_requests, data)) {
|
|
free(data);
|
|
return ATT_ECODE_INSUFF_RESOURCES;
|
|
}
|
|
|
|
if (!gatt_db_write(gatt_db, handle, 0, value, vlen, cmd[0],
|
|
&dev->bdaddr)) {
|
|
queue_remove(dev->pending_requests, data);
|
|
free(data);
|
|
return ATT_ECODE_UNLIKELY;
|
|
}
|
|
|
|
send_dev_complete_response(dev, cmd[0]);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static uint8_t write_prep_request(const uint8_t *cmd, uint16_t cmd_len,
|
|
struct gatt_device *dev)
|
|
{
|
|
uint8_t value[cmd_len];
|
|
struct pending_request *data;
|
|
uint32_t permissions;
|
|
uint16_t handle;
|
|
uint16_t offset;
|
|
uint8_t error;
|
|
uint16_t len;
|
|
size_t vlen;
|
|
|
|
len = dec_prep_write_req(cmd, cmd_len, &handle, &offset,
|
|
value, &vlen);
|
|
if (!len)
|
|
return ATT_ECODE_INVALID_PDU;
|
|
|
|
if (handle == 0)
|
|
return ATT_ECODE_INVALID_HANDLE;
|
|
|
|
if (!gatt_db_get_attribute_permissions(gatt_db, handle, &permissions))
|
|
return ATT_ECODE_ATTR_NOT_FOUND;
|
|
|
|
error = check_device_permissions(dev, cmd[0], permissions);
|
|
if (error)
|
|
return error;
|
|
|
|
data = new0(struct pending_request, 1);
|
|
if (!data)
|
|
return ATT_ECODE_INSUFF_RESOURCES;
|
|
|
|
data->handle = handle;
|
|
data->offset = offset;
|
|
data->state = REQUEST_PENDING;
|
|
|
|
if (!queue_push_tail(dev->pending_requests, data)) {
|
|
free(data);
|
|
return ATT_ECODE_INSUFF_RESOURCES;
|
|
}
|
|
|
|
if (!gatt_db_write(gatt_db, handle, offset, value, vlen, cmd[0],
|
|
&dev->bdaddr))
|
|
return ATT_ECODE_UNLIKELY;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void send_server_write_execute_notify(void *data, void *user_data)
|
|
{
|
|
struct hal_ev_gatt_server_request_exec_write *ev = user_data;
|
|
struct pending_trans_data *transaction;
|
|
struct app_connection *conn = data;
|
|
|
|
if (!conn->wait_execute_write)
|
|
return;
|
|
|
|
ev->conn_id = conn->id;
|
|
|
|
transaction = conn_add_transact(conn, ATT_OP_EXEC_WRITE_REQ);
|
|
if (!transaction) {
|
|
conn->wait_execute_write = false;
|
|
return;
|
|
}
|
|
|
|
ev->trans_id = transaction->id;
|
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_GATT,
|
|
HAL_EV_GATT_SERVER_REQUEST_EXEC_WRITE,
|
|
sizeof(*ev), ev);
|
|
}
|
|
|
|
static uint8_t write_execute_request(const uint8_t *cmd, uint16_t cmd_len,
|
|
struct gatt_device *dev)
|
|
{
|
|
struct hal_ev_gatt_server_request_exec_write ev;
|
|
uint8_t value;
|
|
struct pending_request *data;
|
|
|
|
/*
|
|
* Check if there was any write prep before.
|
|
* TODO: Try to find better error code if possible
|
|
*/
|
|
if (!pending_execute_write())
|
|
return ATT_ECODE_UNLIKELY;
|
|
|
|
if (!dec_exec_write_req(cmd, cmd_len, &value))
|
|
return ATT_ECODE_INVALID_PDU;
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
bdaddr2android(&dev->bdaddr, &ev.bdaddr);
|
|
ev.exec_write = value;
|
|
|
|
data = new0(struct pending_request, 1);
|
|
if (!data)
|
|
return ATT_ECODE_INSUFF_RESOURCES;
|
|
|
|
data->state = REQUEST_PENDING;
|
|
if (!queue_push_tail(dev->pending_requests, data)) {
|
|
free(data);
|
|
return ATT_ECODE_INSUFF_RESOURCES;
|
|
}
|
|
|
|
queue_foreach(app_connections, send_server_write_execute_notify, &ev);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void att_handler(const uint8_t *ipdu, uint16_t len, gpointer user_data)
|
|
{
|
|
struct gatt_device *dev = user_data;
|
|
uint8_t status;
|
|
uint16_t resp_length = 0;
|
|
size_t length;
|
|
uint8_t *opdu = g_attrib_get_buffer(dev->attrib, &length);
|
|
|
|
DBG("op 0x%02x", ipdu[0]);
|
|
|
|
if (len > length) {
|
|
error("gatt: Too much data on ATT socket %p", opdu);
|
|
status = ATT_ECODE_INVALID_PDU;
|
|
goto done;
|
|
}
|
|
|
|
switch (ipdu[0]) {
|
|
case ATT_OP_READ_BY_GROUP_REQ:
|
|
status = read_by_group_type(ipdu, len, dev);
|
|
break;
|
|
case ATT_OP_READ_BY_TYPE_REQ:
|
|
status = read_by_type(ipdu, len, dev);
|
|
break;
|
|
case ATT_OP_READ_REQ:
|
|
case ATT_OP_READ_BLOB_REQ:
|
|
status = read_request(ipdu, len, dev);
|
|
break;
|
|
case ATT_OP_MTU_REQ:
|
|
status = mtu_att_handle(ipdu, len, dev);
|
|
break;
|
|
case ATT_OP_FIND_INFO_REQ:
|
|
status = find_info_handle(ipdu, len, opdu, length,
|
|
&resp_length);
|
|
break;
|
|
case ATT_OP_WRITE_REQ:
|
|
status = write_req_request(ipdu, len, dev);
|
|
if (!status)
|
|
return;
|
|
break;
|
|
case ATT_OP_WRITE_CMD:
|
|
write_cmd_request(ipdu, len, dev);
|
|
/* No response on write cmd */
|
|
return;
|
|
case ATT_OP_SIGNED_WRITE_CMD:
|
|
write_signed_cmd_request(ipdu, len, dev);
|
|
/* No response on write signed cmd */
|
|
return;
|
|
case ATT_OP_PREP_WRITE_REQ:
|
|
status = write_prep_request(ipdu, len, dev);
|
|
if (!status)
|
|
return;
|
|
break;
|
|
case ATT_OP_FIND_BY_TYPE_REQ:
|
|
status = find_by_type_request(ipdu, len, dev);
|
|
break;
|
|
case ATT_OP_HANDLE_IND:
|
|
/*
|
|
* We have to send confirmation here. If some client is
|
|
* registered for this indication, event will be send in
|
|
* handle_notification
|
|
*/
|
|
resp_length = enc_confirmation(opdu, sizeof(opdu));
|
|
status = 0;
|
|
break;
|
|
case ATT_OP_HANDLE_NOTIFY:
|
|
/* Client will handle this */
|
|
return;
|
|
case ATT_OP_EXEC_WRITE_REQ:
|
|
status = write_execute_request(ipdu, len, dev);
|
|
if (!status)
|
|
return;
|
|
break;
|
|
case ATT_OP_HANDLE_CNF:
|
|
case ATT_OP_READ_MULTI_REQ:
|
|
default:
|
|
DBG("Unsupported request 0x%02x", ipdu[0]);
|
|
status = ATT_ECODE_REQ_NOT_SUPP;
|
|
goto done;
|
|
}
|
|
|
|
done:
|
|
if (status)
|
|
resp_length = enc_error_resp(ipdu[0], 0x0000, status, opdu,
|
|
length);
|
|
|
|
if (resp_length)
|
|
g_attrib_send(dev->attrib, 0, opdu, resp_length, NULL, NULL,
|
|
NULL);
|
|
}
|
|
|
|
static void create_listen_connections(void *data, void *user_data)
|
|
{
|
|
struct gatt_device *dev = user_data;
|
|
int32_t id = PTR_TO_INT(data);
|
|
struct gatt_app *app;
|
|
|
|
app = find_app_by_id(id);
|
|
if (app)
|
|
create_app_connection(dev, app);
|
|
}
|
|
|
|
static void connect_confirm(GIOChannel *io, void *user_data)
|
|
{
|
|
struct gatt_device *dev;
|
|
uint8_t dst_type;
|
|
bdaddr_t dst;
|
|
GError *gerr = NULL;
|
|
|
|
DBG("");
|
|
|
|
bt_io_get(io, &gerr,
|
|
BT_IO_OPT_DEST_BDADDR, &dst,
|
|
BT_IO_OPT_DEST_TYPE, &dst_type,
|
|
BT_IO_OPT_INVALID);
|
|
if (gerr) {
|
|
error("gatt: bt_io_get: %s", gerr->message);
|
|
g_error_free(gerr);
|
|
return;
|
|
}
|
|
|
|
/* TODO Handle collision */
|
|
dev = find_device_by_addr(&dst);
|
|
if (!dev) {
|
|
dev = create_device(&dst);
|
|
if (!dev) {
|
|
error("gatt: Could not create device");
|
|
goto drop;
|
|
}
|
|
|
|
dev->bdaddr_type = dst_type;
|
|
} else {
|
|
if (dev->state != DEVICE_DISCONNECTED) {
|
|
char addr[18];
|
|
|
|
ba2str(&dst, addr);
|
|
info("gatt: Rejecting incoming connection from %s",
|
|
addr);
|
|
goto drop;
|
|
}
|
|
}
|
|
|
|
if (!bt_io_accept(io, connect_cb, device_ref(dev), NULL, NULL)) {
|
|
error("gatt: failed to accept connection");
|
|
device_unref(dev);
|
|
goto drop;
|
|
}
|
|
|
|
queue_foreach(listen_apps, create_listen_connections, dev);
|
|
device_set_state(dev, DEVICE_CONNECT_READY);
|
|
|
|
return;
|
|
|
|
drop:
|
|
g_io_channel_shutdown(io, TRUE, NULL);
|
|
}
|
|
|
|
struct gap_srvc_handles {
|
|
uint16_t srvc;
|
|
|
|
/* Characteristics */
|
|
uint16_t dev_name;
|
|
uint16_t appear;
|
|
uint16_t priv;
|
|
};
|
|
|
|
static struct gap_srvc_handles gap_srvc_data;
|
|
|
|
#define APPEARANCE_GENERIC_PHONE 0x0040
|
|
#define PERIPHERAL_PRIVACY_DISABLE 0x00
|
|
|
|
static void gap_read_cb(uint16_t handle, uint16_t offset, uint8_t att_opcode,
|
|
bdaddr_t *bdaddr, void *user_data)
|
|
{
|
|
struct pending_request *entry;
|
|
struct gatt_device *dev;
|
|
|
|
DBG("");
|
|
|
|
dev = find_device_by_addr(bdaddr);
|
|
if (!dev) {
|
|
error("gatt: Could not find device ?!");
|
|
return;
|
|
}
|
|
|
|
entry = queue_find(dev->pending_requests, match_dev_request_by_handle,
|
|
UINT_TO_PTR(handle));
|
|
if (!entry)
|
|
return;
|
|
|
|
if (handle == gap_srvc_data.dev_name) {
|
|
const char *name = bt_get_adapter_name();
|
|
|
|
entry->value = malloc0(strlen(name));
|
|
if (!entry->value) {
|
|
entry->error = ATT_ECODE_INSUFF_RESOURCES;
|
|
goto done;
|
|
}
|
|
|
|
entry->length = strlen(name);
|
|
memcpy(entry->value, bt_get_adapter_name(), entry->length);
|
|
} else if (handle == gap_srvc_data.appear) {
|
|
entry->value = malloc0(2);
|
|
if (!entry->value) {
|
|
entry->error = ATT_ECODE_INSUFF_RESOURCES;
|
|
goto done;
|
|
}
|
|
|
|
put_le16(APPEARANCE_GENERIC_PHONE, entry->value);
|
|
entry->length = sizeof(uint8_t) * 2;
|
|
} else if (handle == gap_srvc_data.priv) {
|
|
entry->value = malloc0(1);
|
|
if (!entry->value) {
|
|
entry->error = ATT_ECODE_INSUFF_RESOURCES;
|
|
goto done;
|
|
}
|
|
|
|
*entry->value = PERIPHERAL_PRIVACY_DISABLE;
|
|
entry->length = sizeof(uint8_t);
|
|
} else {
|
|
entry->error = ATT_ECODE_ATTR_NOT_FOUND;
|
|
}
|
|
|
|
entry->offset = offset;
|
|
|
|
done:
|
|
entry->state = REQUEST_DONE;
|
|
}
|
|
|
|
static void register_gap_service(void)
|
|
{
|
|
bt_uuid_t uuid;
|
|
|
|
/* GAP UUID */
|
|
bt_uuid16_create(&uuid, 0x1800);
|
|
gap_srvc_data.srvc = gatt_db_add_service(gatt_db, &uuid, true, 7);
|
|
|
|
/* Device name characteristic */
|
|
bt_uuid16_create(&uuid, GATT_CHARAC_DEVICE_NAME);
|
|
gap_srvc_data.dev_name =
|
|
gatt_db_add_characteristic(gatt_db, gap_srvc_data.srvc,
|
|
&uuid, GATT_PERM_READ,
|
|
GATT_CHR_PROP_READ,
|
|
gap_read_cb, NULL,
|
|
NULL);
|
|
|
|
/* Appearance */
|
|
bt_uuid16_create(&uuid, GATT_CHARAC_APPEARANCE);
|
|
gap_srvc_data.appear =
|
|
gatt_db_add_characteristic(gatt_db, gap_srvc_data.srvc,
|
|
&uuid, GATT_PERM_READ,
|
|
GATT_CHR_PROP_READ,
|
|
gap_read_cb, NULL,
|
|
NULL);
|
|
|
|
/* Pripheral privacy flag */
|
|
bt_uuid16_create(&uuid, GATT_CHARAC_PERIPHERAL_PRIV_FLAG);
|
|
gap_srvc_data.priv =
|
|
gatt_db_add_characteristic(gatt_db, gap_srvc_data.srvc,
|
|
&uuid, GATT_PERM_READ,
|
|
GATT_CHR_PROP_READ,
|
|
gap_read_cb, NULL,
|
|
NULL);
|
|
|
|
gatt_db_service_set_active(gatt_db, gap_srvc_data.srvc , true);
|
|
}
|
|
|
|
/* TODO: Get those data from device possible via androig/bluetooth.c */
|
|
static struct device_info {
|
|
const char *manufacturer_name;
|
|
const char *system_id;
|
|
const char *model_number;
|
|
const char *serial_number;
|
|
const char *firmware_rev;
|
|
const char *hardware_rev;
|
|
const char *software_rev;
|
|
} device_info = {
|
|
.manufacturer_name = "BlueZ",
|
|
.system_id = "BlueZ for Android",
|
|
.model_number = "model no",
|
|
.serial_number = "serial no",
|
|
.firmware_rev = "firmware rev",
|
|
.hardware_rev = "hardware rev",
|
|
.software_rev = "software rev",
|
|
};
|
|
|
|
static void device_info_read_cb(uint16_t handle, uint16_t offset,
|
|
uint8_t att_opcode, bdaddr_t *bdaddr,
|
|
void *user_data)
|
|
{
|
|
struct pending_request *entry;
|
|
struct gatt_device *dev;
|
|
char *buf = user_data;
|
|
|
|
dev = find_device_by_addr(bdaddr);
|
|
if (!dev) {
|
|
error("gatt: Could not find device ?!");
|
|
return;
|
|
}
|
|
|
|
entry = queue_find(dev->pending_requests, match_dev_request_by_handle,
|
|
UINT_TO_PTR(handle));
|
|
if (!entry)
|
|
return;
|
|
|
|
entry->value = malloc0(strlen(buf));
|
|
if (!entry->value) {
|
|
entry->error = ATT_ECODE_UNLIKELY;
|
|
goto done;
|
|
}
|
|
|
|
entry->length = strlen(buf);
|
|
memcpy(entry->value, buf, entry->length);
|
|
entry->offset = offset;
|
|
|
|
done:
|
|
entry->state = REQUEST_DONE;
|
|
}
|
|
|
|
static void register_device_info_service(void)
|
|
{
|
|
bt_uuid_t uuid;
|
|
uint16_t srvc_handle;
|
|
|
|
DBG("");
|
|
|
|
/* Device Information Service */
|
|
bt_uuid16_create(&uuid, 0x180a);
|
|
srvc_handle = gatt_db_add_service(gatt_db, &uuid, true, 15);
|
|
|
|
/* User data are not const hence (void *) cast is used */
|
|
bt_uuid16_create(&uuid, GATT_CHARAC_SYSTEM_ID);
|
|
gatt_db_add_characteristic(gatt_db, srvc_handle, &uuid, GATT_PERM_READ,
|
|
GATT_CHR_PROP_READ,
|
|
device_info_read_cb, NULL,
|
|
(void *) device_info.system_id);
|
|
|
|
bt_uuid16_create(&uuid, GATT_CHARAC_MODEL_NUMBER_STRING);
|
|
gatt_db_add_characteristic(gatt_db, srvc_handle, &uuid, GATT_PERM_READ,
|
|
GATT_CHR_PROP_READ,
|
|
device_info_read_cb, NULL,
|
|
(void *) device_info.model_number);
|
|
|
|
bt_uuid16_create(&uuid, GATT_CHARAC_SERIAL_NUMBER_STRING);
|
|
gatt_db_add_characteristic(gatt_db, srvc_handle, &uuid, GATT_PERM_READ,
|
|
GATT_CHR_PROP_READ,
|
|
device_info_read_cb, NULL,
|
|
(void *) device_info.serial_number);
|
|
|
|
bt_uuid16_create(&uuid, GATT_CHARAC_FIRMWARE_REVISION_STRING);
|
|
gatt_db_add_characteristic(gatt_db, srvc_handle, &uuid, GATT_PERM_READ,
|
|
GATT_CHR_PROP_READ,
|
|
device_info_read_cb, NULL,
|
|
(void *) device_info.firmware_rev);
|
|
|
|
bt_uuid16_create(&uuid, GATT_CHARAC_HARDWARE_REVISION_STRING);
|
|
gatt_db_add_characteristic(gatt_db, srvc_handle, &uuid, GATT_PERM_READ,
|
|
GATT_CHR_PROP_READ,
|
|
device_info_read_cb, NULL,
|
|
(void *) device_info.hardware_rev);
|
|
|
|
bt_uuid16_create(&uuid, GATT_CHARAC_SOFTWARE_REVISION_STRING);
|
|
gatt_db_add_characteristic(gatt_db, srvc_handle, &uuid, GATT_PERM_READ,
|
|
GATT_CHR_PROP_READ,
|
|
device_info_read_cb, NULL,
|
|
(void *) device_info.software_rev);
|
|
|
|
bt_uuid16_create(&uuid, GATT_CHARAC_MANUFACTURER_NAME_STRING);
|
|
gatt_db_add_characteristic(gatt_db, srvc_handle, &uuid, GATT_PERM_READ,
|
|
GATT_CHR_PROP_READ,
|
|
device_info_read_cb, NULL,
|
|
(void *) device_info.manufacturer_name);
|
|
|
|
gatt_db_service_set_active(gatt_db, srvc_handle, true);
|
|
}
|
|
|
|
static void gatt_srvc_change_write_cb(uint16_t handle, uint16_t offset,
|
|
const uint8_t *val, size_t len,
|
|
uint8_t att_opcode,
|
|
bdaddr_t *bdaddr,
|
|
void *user_data)
|
|
{
|
|
struct pending_request *entry;
|
|
struct gatt_device *dev;
|
|
|
|
dev = find_device_by_addr(bdaddr);
|
|
if (!dev) {
|
|
error("gatt: Could not find device ?!");
|
|
return;
|
|
}
|
|
|
|
entry = queue_find(dev->pending_requests, match_dev_request_by_handle,
|
|
UINT_TO_PTR(handle));
|
|
if (!entry)
|
|
return;
|
|
|
|
entry->state = REQUEST_DONE;
|
|
|
|
if (!bt_device_is_bonded(bdaddr)) {
|
|
entry->error = ATT_ECODE_AUTHORIZATION;
|
|
return;
|
|
}
|
|
|
|
/* Set services changed indication value */
|
|
bt_store_gatt_ccc(bdaddr, *val);
|
|
}
|
|
|
|
static void gatt_srvc_change_read_cb(uint16_t handle, uint16_t offset,
|
|
uint8_t att_opcode, bdaddr_t *bdaddr,
|
|
void *user_data)
|
|
{
|
|
struct pending_request *entry;
|
|
struct gatt_device *dev;
|
|
uint16_t ccc = 0;
|
|
|
|
dev = find_device_by_addr(bdaddr);
|
|
if (!dev) {
|
|
error("gatt: Could not find device ?!");
|
|
return;
|
|
}
|
|
|
|
entry = queue_find(dev->pending_requests, match_dev_request_by_handle,
|
|
UINT_TO_PTR(handle));
|
|
if (!entry)
|
|
return;
|
|
|
|
ccc = bt_get_gatt_ccc(&dev->bdaddr);
|
|
entry->state = REQUEST_DONE;
|
|
|
|
entry->value = (uint8_t *) new0(uint16_t, 1);
|
|
if (!entry->value) {
|
|
entry->error = ATT_ECODE_INSUFF_RESOURCES;
|
|
|
|
return;
|
|
}
|
|
|
|
entry->length = sizeof(uint16_t);
|
|
memcpy(entry->value, &ccc, sizeof(ccc));
|
|
}
|
|
|
|
static void register_gatt_service(void)
|
|
{
|
|
bt_uuid_t uuid;
|
|
uint16_t srvc_handle;
|
|
|
|
DBG("");
|
|
|
|
bt_uuid16_create(&uuid, 0x1801);
|
|
srvc_handle = gatt_db_add_service(gatt_db, &uuid, true, 4);
|
|
|
|
bt_uuid16_create(&uuid, GATT_CHARAC_SERVICE_CHANGED);
|
|
service_changed_handle = gatt_db_add_characteristic(gatt_db,
|
|
srvc_handle, &uuid, 0,
|
|
GATT_CHR_PROP_INDICATE, NULL, NULL,
|
|
NULL);
|
|
|
|
bt_uuid16_create(&uuid, GATT_CLIENT_CHARAC_CFG_UUID);
|
|
gatt_db_add_char_descriptor(gatt_db, srvc_handle, &uuid,
|
|
GATT_PERM_READ | GATT_PERM_WRITE,
|
|
gatt_srvc_change_read_cb,
|
|
gatt_srvc_change_write_cb, NULL);
|
|
|
|
gatt_db_service_set_active(gatt_db, srvc_handle, true);
|
|
}
|
|
|
|
static bool start_listening_io(void)
|
|
{
|
|
GError *gerr = NULL;
|
|
|
|
/* For now only listen on BLE */
|
|
listening_io = bt_io_listen(NULL, connect_confirm,
|
|
&listening_io, NULL, &gerr,
|
|
BT_IO_OPT_SOURCE_TYPE, BDADDR_LE_PUBLIC,
|
|
BT_IO_OPT_CID, ATT_CID,
|
|
BT_IO_OPT_SEC_LEVEL, BT_IO_SEC_LOW,
|
|
BT_IO_OPT_INVALID);
|
|
if (!listening_io) {
|
|
error("gatt: Failed to start listening IO (%s)", gerr->message);
|
|
g_error_free(gerr);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool bt_gatt_register(struct ipc *ipc, const bdaddr_t *addr)
|
|
{
|
|
DBG("");
|
|
|
|
if (!start_listening_io())
|
|
return false;
|
|
|
|
crypto = bt_crypto_new();
|
|
if (!crypto) {
|
|
error("gatt: Failed to setup crypto");
|
|
|
|
g_io_channel_unref(listening_io);
|
|
listening_io = NULL;
|
|
|
|
return false;
|
|
}
|
|
|
|
gatt_devices = queue_new();
|
|
gatt_apps = queue_new();
|
|
app_connections = queue_new();
|
|
listen_apps = queue_new();
|
|
gatt_db = gatt_db_new();
|
|
|
|
if (!gatt_devices || !gatt_apps || !listen_apps || !app_connections ||
|
|
!gatt_db) {
|
|
error("gatt: Failed to allocate memory for queues");
|
|
|
|
queue_destroy(gatt_apps, NULL);
|
|
gatt_apps = NULL;
|
|
|
|
queue_destroy(gatt_devices, NULL);
|
|
gatt_devices = NULL;
|
|
|
|
queue_destroy(app_connections, NULL);
|
|
app_connections = NULL;
|
|
|
|
queue_destroy(listen_apps, NULL);
|
|
listen_apps = NULL;
|
|
|
|
gatt_db_destroy(gatt_db);
|
|
gatt_db = NULL;
|
|
|
|
g_io_channel_unref(listening_io);
|
|
listening_io = NULL;
|
|
|
|
bt_crypto_unref(crypto);
|
|
|
|
return false;
|
|
}
|
|
|
|
bacpy(&adapter_addr, addr);
|
|
|
|
hal_ipc = ipc;
|
|
|
|
ipc_register(hal_ipc, HAL_SERVICE_ID_GATT, cmd_handlers,
|
|
G_N_ELEMENTS(cmd_handlers));
|
|
|
|
register_gap_service();
|
|
register_device_info_service();
|
|
register_gatt_service();
|
|
|
|
return true;
|
|
}
|
|
|
|
void bt_gatt_unregister(void)
|
|
{
|
|
DBG("");
|
|
|
|
ipc_unregister(hal_ipc, HAL_SERVICE_ID_GATT);
|
|
hal_ipc = NULL;
|
|
|
|
queue_destroy(gatt_apps, destroy_gatt_app);
|
|
gatt_apps = NULL;
|
|
|
|
queue_destroy(app_connections, destroy_app_connection);
|
|
app_connections = NULL;
|
|
|
|
queue_destroy(gatt_devices, destroy_device);
|
|
gatt_devices = NULL;
|
|
|
|
queue_destroy(listen_apps, NULL);
|
|
listen_apps = NULL;
|
|
|
|
gatt_db_destroy(gatt_db);
|
|
gatt_db = NULL;
|
|
|
|
g_io_channel_unref(listening_io);
|
|
listening_io = NULL;
|
|
|
|
bt_crypto_unref(crypto);
|
|
crypto = NULL;
|
|
}
|