mbed-os/connectivity/FEATURE_BLE/source/generic/GattClientImpl.cpp

1735 lines
50 KiB
C++

/* mbed Microcontroller Library
* Copyright (c) 2006-2020 ARM Limited
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "BLERoles.h"
#if BLE_FEATURE_GATT_CLIENT
#include <stdio.h>
#include <stdlib.h>
#include "GattClientImpl.h"
#include "ble/internal/AttServerMessage.h"
#include "ble/common/ble/DiscoveredService.h"
#include "ble/common/ble/DiscoveredCharacteristic.h"
#include "ble/common/ble/blecommon.h"
#include "source/BLEInstanceBase.h"
#include "ble/SecurityManager.h"
#include <algorithm>
using ble::AttServerMessage;
using ble::AttReadResponse;
using ble::AttReadBlobResponse;
using ble::AttReadByTypeResponse;
using ble::AttReadByGroupTypeResponse;
using ble::AttFindByTypeValueResponse;
using ble::AttErrorResponse;
using ble::AttributeOpcode;
using ble::AttWriteResponse;
using ble::AttPrepareWriteResponse;
using ble::AttExecuteWriteResponse;
using ble::AttHandleValueIndication;
using ble::AttHandleValueNotification;
using ble::AttFindInformationResponse;
#define PREPARE_WRITE_HEADER_LENGTH 5
#define WRITE_HEADER_LENGTH 3
#define CMAC_LENGTH 8
#define MAC_COUNTER_LENGTH 4
namespace ble {
namespace impl {
namespace {
static constexpr auto GATT_OP_SIGNED_WRITE_CMD = ble::GattClient::GATT_OP_SIGNED_WRITE_CMD;
static constexpr auto GATT_OP_WRITE_CMD = ble::GattClient::GATT_OP_WRITE_CMD;
static constexpr auto GATT_OP_WRITE_REQ = ble::GattClient::GATT_OP_WRITE_REQ;
}
/*
* Type of procedures which can be launched by the client.
*/
enum procedure_type_t {
COMPLETE_DISCOVERY_PROCEDURE,
READ_PROCEDURE,
WRITE_PROCEDURE,
DESCRIPTOR_DISCOVERY_PROCEDURE
};
/*
* Base class for a procedure control block
*/
struct GattClient::ProcedureControlBlock {
/*
* Base constructor for procedure control block.
*/
ProcedureControlBlock(procedure_type_t type, connection_handle_t handle) :
type(type), connection_handle(handle), next(nullptr)
{
}
virtual ~ProcedureControlBlock()
{
}
/*
* Entry point of the control block stack machine.
*/
virtual void handle(GattClient *client, const AttServerMessage &message) = 0;
/*
* Function call in case of timeout
*/
virtual void handle_timeout_error(GattClient *client) = 0;
/**
* Function called when the procedure is aborted
*/
virtual void abort(GattClient *client) = 0;
procedure_type_t type;
connection_handle_t connection_handle;
ProcedureControlBlock *next;
};
/*
* Procedure control block for the discovery process.
*/
struct GattClient::DiscoveryControlBlock : public ProcedureControlBlock {
using ProcedureControlBlock::connection_handle;
DiscoveryControlBlock(
connection_handle_t handle,
ServiceDiscovery::ServiceCallback_t service_callback,
ServiceDiscovery::CharacteristicCallback_t characteristic_callback,
UUID matching_service_uuid,
UUID matching_characteristic_uuid
) : ProcedureControlBlock(COMPLETE_DISCOVERY_PROCEDURE, handle),
service_callback(service_callback),
characteristic_callback(characteristic_callback),
matching_service_uuid(matching_service_uuid),
matching_characteristic_uuid(matching_characteristic_uuid),
services_discovered(nullptr),
done(false)
{
}
virtual ~DiscoveryControlBlock()
{
while (services_discovered) {
service_t *tmp = services_discovered->next;
delete services_discovered;
services_discovered = tmp;
}
}
virtual void handle_timeout_error(GattClient *client)
{
terminate(client);
}
virtual void abort(GattClient *client)
{
terminate(client);
}
virtual void handle(GattClient *client, const AttServerMessage &message)
{
// if end of discovery has been requested, ends it immediately
if (done) {
terminate(client);
return;
}
switch (message.opcode) {
case AttributeOpcode::READ_BY_GROUP_TYPE_RESPONSE:
handle_service_discovered(
client, static_cast<const AttReadByGroupTypeResponse &>(message)
);
break;
case AttributeOpcode::FIND_BY_VALUE_TYPE_RESPONSE:
handle_service_discovered(
client, static_cast<const AttFindByTypeValueResponse &>(message)
);
break;
case AttributeOpcode::READ_BY_TYPE_RESPONSE:
handle_characteristic_discovered(
client, static_cast<const AttReadByTypeResponse &>(message)
);
break;
case AttributeOpcode::ERROR_RESPONSE: {
const AttErrorResponse &error = static_cast<const AttErrorResponse &>(message);
if (error.error_code != AttErrorResponse::ATTRIBUTE_NOT_FOUND) {
terminate(client);
return;
}
switch (error.request_opcode) {
case AttributeOpcode::READ_BY_GROUP_TYPE_REQUEST:
case AttributeOpcode::FIND_BY_TYPE_VALUE_REQUEST:
start_characteristic_discovery(client);
break;
case AttributeOpcode::READ_BY_TYPE_REQUEST:
handle_all_characteristics_discovered(client);
break;
default:
// error
break;
}
} break;
default:
// error
break;
}
}
template<typename Response>
void handle_service_discovered(GattClient *client, const Response &response)
{
if (!response.size()) {
terminate(client);
return;
}
uint16_t end_handle = 0x0000;
for (size_t i = 0; i < response.size(); ++i) {
uint16_t start_handle = get_start_handle(response[i]);
end_handle = get_end_handle(response[i]);
UUID uuid = get_uuid(response[i]);
if (!characteristic_callback) {
DiscoveredService discovered_service;
discovered_service.setup(uuid, start_handle, end_handle);
service_callback(&discovered_service);
} else {
service_t *discovered_service = new(std::nothrow) service_t(
start_handle, end_handle, uuid
);
if (discovered_service == nullptr) {
terminate(client);
return;
}
insert_service(discovered_service);
}
}
if (end_handle == 0xFFFF) {
start_characteristic_discovery(client);
} else {
ble_error_t err = client->_pal_client.discover_primary_service(
connection_handle, end_handle + 1
);
if (err) {
terminate(client);
}
}
}
void start_characteristic_discovery(GattClient *client)
{
if (!services_discovered) {
terminate(client);
return;
}
if (!characteristic_callback) {
terminate(client);
return;
}
if (service_callback) {
DiscoveredService discovered_service;
discovered_service.setup(
services_discovered->uuid,
services_discovered->begin,
services_discovered->end
);
service_callback(&discovered_service);
}
last_characteristic = characteristic_t();
client->_pal_client.discover_characteristics_of_a_service(
connection_handle,
attribute_handle_range(
services_discovered->begin,
services_discovered->end
)
);
}
void handle_characteristic_discovered(GattClient *client, const AttReadByTypeResponse &response)
{
for (size_t i = 0; i < response.size(); ++i) {
if (last_characteristic.is_valid() == false) {
last_characteristic.set_last_handle(response[i].handle - 1);
if (matching_characteristic_uuid == UUID()
|| last_characteristic.getUUID() == matching_characteristic_uuid) {
characteristic_callback(&last_characteristic);
}
}
last_characteristic = characteristic_t(
client, connection_handle, response[i].handle, response[i].value
);
}
// check if all the characteristics of the service has been discovered
if (last_characteristic.getValueHandle() == services_discovered->end) {
handle_all_characteristics_discovered(client);
} else {
ble_error_t err = client->_pal_client.discover_characteristics_of_a_service(
connection_handle,
attribute_handle_range(
last_characteristic.getValueHandle() + 1,
services_discovered->end
)
);
if (err) {
terminate(client);
}
}
}
void handle_all_characteristics_discovered(GattClient *client)
{
if (last_characteristic.is_valid() == false) {
if (matching_characteristic_uuid == UUID()
|| matching_characteristic_uuid == last_characteristic.getUUID()) {
last_characteristic.set_last_handle(services_discovered->end);
characteristic_callback(&last_characteristic);
}
}
service_t *old = services_discovered;
services_discovered = services_discovered->next;
delete old;
if (!services_discovered) {
terminate(client);
} else {
start_characteristic_discovery(client);
}
}
void terminate(GattClient *client)
{
// unknown error, terminate the procedure immediately
client->remove_control_block(this);
connection_handle_t handle = connection_handle;
delete this;
client->on_termination(handle);
}
uint16_t get_start_handle(const AttReadByGroupTypeResponse::attribute_data_t &data)
{
return data.group_range.begin;
}
uint16_t get_start_handle(const attribute_handle_range_t &range)
{
return range.begin;
}
uint16_t get_end_handle(const AttReadByGroupTypeResponse::attribute_data_t &data)
{
return data.group_range.end;
}
uint16_t get_end_handle(const attribute_handle_range_t &range)
{
return range.end;
}
UUID get_uuid(const AttReadByGroupTypeResponse::attribute_data_t &data)
{
if (data.value.size() == 2) {
return UUID(data.value[0] | data.value[1] << 8);
} else {
return UUID(data.value.data(), UUID::LSB);
}
}
UUID get_uuid(const attribute_handle_range_t &range)
{
return matching_service_uuid;
}
struct service_t {
service_t(uint16_t begin, uint16_t end, const UUID &uuid) :
begin(begin), end(end), uuid(uuid), next(nullptr)
{
}
uint16_t begin;
uint16_t end;
UUID uuid;
service_t *next;
};
struct characteristic_t : DiscoveredCharacteristic {
characteristic_t() : DiscoveredCharacteristic()
{
lastHandle = 0x0001;
}
characteristic_t(
GattClient *client,
connection_handle_t connection_handle,
uint16_t decl_handle,
const Span<const uint8_t> value
) : DiscoveredCharacteristic()
{
gattc = client->client;
uuid = get_uuid(value);
props = get_properties(value);
declHandle = decl_handle;
valueHandle = get_value_handle(value);
lastHandle = 0x0000;
connHandle = connection_handle;
}
static UUID get_uuid(const Span<const uint8_t> &value)
{
if (value.size() == 5) {
return UUID(value[3] | (value[4] << 8));
} else {
return UUID(value.data() + 3, UUID::LSB);
}
}
static DiscoveredCharacteristic::Properties_t get_properties(const Span<const uint8_t> &value)
{
uint8_t raw_properties = value[0];
DiscoveredCharacteristic::Properties_t result;
result._broadcast = (raw_properties & (1 << 0)) ? true : false;
result._read = (raw_properties & (1 << 1)) ? true : false;
result._writeWoResp = (raw_properties & (1 << 2)) ? true : false;
result._write = (raw_properties & (1 << 3)) ? true : false;
result._notify = (raw_properties & (1 << 4)) ? true : false;
result._indicate = (raw_properties & (1 << 5)) ? true : false;
result._authSignedWrite = (raw_properties & (1 << 6)) ? true : false;
return result;
}
static uint16_t get_value_handle(const Span<const uint8_t> &value)
{
return value[1] | (value[2] << 8);
}
void set_last_handle(uint16_t last_handle)
{
lastHandle = last_handle;
}
bool is_valid() const
{
return lastHandle != 0x0000;
}
};
void insert_service(service_t *service)
{
if (services_discovered == nullptr) {
services_discovered = service;
return;
}
service_t *current = services_discovered;
while (current->next) {
current = current->next;
}
current->next = service;
}
ServiceDiscovery::ServiceCallback_t service_callback;
ServiceDiscovery::CharacteristicCallback_t characteristic_callback;
UUID matching_service_uuid;
UUID matching_characteristic_uuid;
service_t *services_discovered;
characteristic_t last_characteristic;
bool done;
};
struct GattClient::ReadControlBlock : public ProcedureControlBlock {
using ProcedureControlBlock::connection_handle;
ReadControlBlock(
connection_handle_t connection_handle, uint16_t attribute_handle, uint16_t offset
) : ProcedureControlBlock(READ_PROCEDURE, connection_handle),
attribute_handle(attribute_handle),
offset(offset), current_offset(offset), data(nullptr)
{
}
virtual ~ReadControlBlock()
{
if (data != nullptr) {
free(data);
}
}
virtual void handle_timeout_error(GattClient *client)
{
GattReadCallbackParams response = {
connection_handle,
attribute_handle,
offset,
0, // size of 0
nullptr, // no data
BLE_ERROR_UNSPECIFIED
};
terminate(client, response);
}
virtual void abort(GattClient *client)
{
GattReadCallbackParams response = {
connection_handle,
attribute_handle,
offset,
0, // size of 0
nullptr, // no data
BLE_ERROR_INVALID_STATE
};
terminate(client, response);
}
void terminate(GattClient *client, const GattReadCallbackParams &response)
{
client->remove_control_block(this);
client->processReadResponse(&response);
delete this;
}
virtual void handle(GattClient *client, const AttServerMessage &message)
{
switch (message.opcode) {
case AttributeOpcode::ERROR_RESPONSE:
handle_error(client, static_cast<const AttErrorResponse &>(message));
break;
case AttributeOpcode::READ_RESPONSE:
handle_read_response(client, static_cast<const AttReadResponse &>(message));
break;
case AttributeOpcode::READ_BLOB_RESPONSE:
handle_read_response(client, static_cast<const AttReadBlobResponse &>(message));
break;
default: {
// should not happen, terminate the procedure and notify client with an error
// in such case
GattReadCallbackParams response = {
connection_handle,
attribute_handle,
AttErrorResponse::UNLIKELY_ERROR,
0, // size of 0
nullptr, // no data
BLE_ERROR_UNSPECIFIED
};
terminate(client, response);
} break;
}
}
template<typename ResponseType>
void handle_read_response(GattClient *client, const ResponseType &read_response)
{
uint16_t mtu_size = client->get_mtu(connection_handle);
// end of responses ?
if ((uint16_t) read_response.size() < (mtu_size - 1)) {
GattReadCallbackParams response = {
connection_handle,
attribute_handle,
offset,
0, // size of 0
nullptr, // no data
BLE_ERROR_NONE
};
// is it the first response, or is there any other response already
// in the object ?
if (data == nullptr) {
response.len = (uint16_t) read_response.size();
response.data = read_response.data();
} else {
// copy the data in the existing buffer
memcpy(data + (current_offset - offset), read_response.data(), read_response.size());
response.len = (current_offset + read_response.size()) - offset;
response.data = data;
}
terminate(client, response);
} else {
// allocation which will contain the response data plus the next one.
data = (uint8_t *) realloc(data, (current_offset - offset) + ((mtu_size - 1) * 2));
if (data == nullptr) {
GattReadCallbackParams response = {
connection_handle,
attribute_handle,
offset,
AttErrorResponse::INSUFFICIENT_RESOURCES,
nullptr,
BLE_ERROR_NO_MEM
};
terminate(client, response);
return;
}
memcpy(data + (current_offset - offset), read_response.data(), read_response.size());
current_offset = current_offset + read_response.size();
ble_error_t err = client->_pal_client.read_attribute_blob(
connection_handle,
attribute_handle,
current_offset
);
if (err) {
GattReadCallbackParams response = {
connection_handle,
attribute_handle,
AttErrorResponse::UNLIKELY_ERROR,
0, // size of 0
nullptr, // no data
BLE_ERROR_UNSPECIFIED
};
terminate(client, response);
}
}
}
void handle_error(GattClient *client, const AttErrorResponse &error)
{
ble_error_t status = BLE_ERROR_UNSPECIFIED;
switch (error.error_code) {
case AttErrorResponse::INVALID_HANDLE:
status = BLE_ERROR_INVALID_PARAM;
break;
case AttErrorResponse::INSUFFICIENT_AUTHORIZATION:
status = BLE_ERROR_INVALID_STATE;
break;
case AttErrorResponse::INSUFFICIENT_AUTHENTICATION:
status = BLE_ERROR_INVALID_STATE;
break;
case AttErrorResponse::INSUFFICIENT_ENCRYPTION_KEY_SIZE:
status = BLE_ERROR_INVALID_STATE;
break;
case AttErrorResponse::INSUFFICIENT_ENCRYPTION:
status = BLE_ERROR_INVALID_STATE;
break;
case AttErrorResponse::READ_NOT_PERMITTED:
status = BLE_ERROR_OPERATION_NOT_PERMITTED;
break;
case AttErrorResponse::INVALID_OFFSET:
status = BLE_ERROR_PARAM_OUT_OF_RANGE;
break;
case AttErrorResponse::ATTRIBUTE_NOT_LONG:
status = BLE_ERROR_PARAM_OUT_OF_RANGE;
break;
default:
status = BLE_ERROR_UNSPECIFIED;
break;
}
GattReadCallbackParams response = {
connection_handle,
attribute_handle,
offset,
error.error_code,
/* data */ nullptr,
status
};
terminate(client, response);
}
uint16_t attribute_handle;
uint16_t offset;
uint16_t current_offset;
uint8_t *data;
};
/*
* Control block for the write process
*/
struct GattClient::WriteControlBlock : public ProcedureControlBlock {
using ProcedureControlBlock::connection_handle;
WriteControlBlock(
connection_handle_t connection_handle,
uint16_t attribute_handle,
uint8_t* data,
uint16_t write_length
) : ProcedureControlBlock(WRITE_PROCEDURE, connection_handle),
attribute_handle(attribute_handle), write_length(write_length), offset(0), data(data),
prepare_success(false), status(BLE_ERROR_INITIALIZATION_INCOMPLETE), error_code(0xFF)
{
}
virtual ~WriteControlBlock()
{
free(data);
}
virtual void handle_timeout_error(GattClient* client)
{
GattWriteCallbackParams response = {
connection_handle,
attribute_handle,
GattWriteCallbackParams::OP_WRITE_REQ,
BLE_ERROR_UNSPECIFIED,
0x00
};
terminate(client, response);
}
virtual void abort(GattClient *client)
{
GattWriteCallbackParams response = {
connection_handle,
attribute_handle,
GattWriteCallbackParams::OP_WRITE_REQ,
BLE_ERROR_INVALID_STATE,
0x00
};
terminate(client, response);
}
void terminate(GattClient *client, const GattWriteCallbackParams &response)
{
client->remove_control_block(this);
client->processWriteResponse(&response);
delete this;
}
virtual void handle(GattClient* client, const AttServerMessage& message)
{
switch(message.opcode) {
case AttributeOpcode::ERROR_RESPONSE:
handle_error(client, static_cast<const AttErrorResponse&>(message));
break;
case AttributeOpcode::WRITE_RESPONSE:
handle_write_response(client, static_cast<const AttWriteResponse&>(message));
break;
case AttributeOpcode::PREPARE_WRITE_RESPONSE:
handle_prepare_write_response(client, static_cast<const AttPrepareWriteResponse&>(message));
break;
case AttributeOpcode::EXECUTE_WRITE_RESPONSE:
handle_execute_write_response(client, static_cast<const AttExecuteWriteResponse&>(message));
break;
default: {
GattWriteCallbackParams response = {
connection_handle,
attribute_handle,
GattWriteCallbackParams::OP_WRITE_REQ,
BLE_ERROR_UNSPECIFIED,
AttErrorResponse::UNLIKELY_ERROR
};
terminate(client, response);
} break;
}
}
void handle_write_response(GattClient* client, const AttWriteResponse& write_response)
{
GattWriteCallbackParams response = {
connection_handle,
attribute_handle,
GattWriteCallbackParams::OP_WRITE_REQ,
BLE_ERROR_NONE,
0x00
};
terminate(client, response);
}
void handle_prepare_write_response(GattClient* client, const AttPrepareWriteResponse& write_response)
{
ble_error_t err = BLE_ERROR_UNSPECIFIED;
offset += write_response.partial_value.size();
uint16_t data_left = write_length - offset; /* offset is guaranteed to be less of equal to write_length */
if (data_left) {
uint16_t chunk_size = client->get_mtu(connection_handle) - PREPARE_WRITE_HEADER_LENGTH;
if (chunk_size > data_left) {
chunk_size = data_left;
}
err = client->_pal_client.queue_prepare_write(
connection_handle,
attribute_handle,
make_const_Span(data + offset, chunk_size),
offset
);
} else {
prepare_success = true;
err = client->_pal_client.execute_write_queue(
connection_handle, true
);
}
if (err) {
clear_prepare_queue(client, err, AttErrorResponse::UNLIKELY_ERROR);
}
}
void handle_execute_write_response(GattClient* client, const AttExecuteWriteResponse& execute_response)
{
if (prepare_success) {
status = BLE_ERROR_NONE;
error_code = 0x00;
}
GattWriteCallbackParams response = {
connection_handle,
attribute_handle,
GattWriteCallbackParams::OP_WRITE_REQ,
status,
error_code
};
terminate(client, response);
}
void clear_prepare_queue(GattClient* client, ble_error_t s, uint8_t e)
{
prepare_success = false;
status = s;
error_code = e;
ble_error_t err = client->_pal_client.execute_write_queue(
connection_handle, false
);
if (err) {
GattWriteCallbackParams response = {
connection_handle,
attribute_handle,
GattWriteCallbackParams::OP_WRITE_REQ,
err,
AttErrorResponse::UNLIKELY_ERROR
};
terminate(client, response);
}
}
void handle_error(GattClient* client, const AttErrorResponse& error)
{
ble_error_t status = BLE_ERROR_UNSPECIFIED;
switch (error.error_code) {
case AttErrorResponse::INVALID_HANDLE:
status = BLE_ERROR_INVALID_PARAM;
break;
case AttErrorResponse::INVALID_ATTRIBUTE_VALUE_LENGTH:
status = BLE_ERROR_INVALID_PARAM;
break;
case AttErrorResponse::INSUFFICIENT_AUTHORIZATION:
status = BLE_ERROR_INVALID_STATE;
break;
case AttErrorResponse::INSUFFICIENT_AUTHENTICATION:
status = BLE_ERROR_INVALID_STATE;
break;
case AttErrorResponse::INSUFFICIENT_ENCRYPTION_KEY_SIZE:
status = BLE_ERROR_INVALID_STATE;
break;
case AttErrorResponse::INSUFFICIENT_ENCRYPTION:
status = BLE_ERROR_INVALID_STATE;
break;
case AttErrorResponse::WRITE_NOT_PERMITTED:
status = BLE_ERROR_OPERATION_NOT_PERMITTED;
break;
default:
status = BLE_ERROR_UNSPECIFIED;
break;
}
if (error.request_opcode == AttributeOpcode(AttributeOpcode::PREPARE_WRITE_REQUEST)) {
clear_prepare_queue(client, status, error.error_code);
} else {
GattWriteCallbackParams response = {
connection_handle,
attribute_handle,
GattWriteCallbackParams::OP_WRITE_REQ,
status,
error.error_code
};
terminate(client, response);
}
}
uint16_t attribute_handle;
uint16_t write_length;
uint16_t offset;
uint8_t* data;
bool prepare_success;
ble_error_t status;
uint8_t error_code;
};
/*
* Control block for the descriptor discovery process
*/
struct GattClient::DescriptorDiscoveryControlBlock : public ProcedureControlBlock {
using ProcedureControlBlock::connection_handle;
DescriptorDiscoveryControlBlock(
const DiscoveredCharacteristic &characteristic,
const CharacteristicDescriptorDiscovery::DiscoveryCallback_t &discoveryCallback,
const CharacteristicDescriptorDiscovery::TerminationCallback_t &terminationCallback
) : ProcedureControlBlock(DESCRIPTOR_DISCOVERY_PROCEDURE, characteristic.getConnectionHandle()),
characteristic(characteristic),
discovery_cb(discoveryCallback),
termination_cb(terminationCallback),
next_handle(characteristic.getValueHandle() + 1),
done(false)
{
}
virtual ~DescriptorDiscoveryControlBlock()
{
}
ble_error_t start(GattClient *client)
{
return client->_pal_client.discover_characteristics_descriptors(
connection_handle,
attribute_handle_range(
next_handle,
characteristic.getLastHandle()
)
);
}
virtual void handle_timeout_error(GattClient *client)
{
terminate(client, BLE_ERROR_UNSPECIFIED);
}
virtual void abort(GattClient *client)
{
terminate(client, BLE_ERROR_INVALID_STATE);
}
virtual void handle(GattClient *client, const AttServerMessage &message)
{
if (done) {
terminate(client, BLE_ERROR_NONE);
return;
}
switch (message.opcode) {
case AttributeOpcode::ERROR_RESPONSE:
handle_error(client, static_cast<const AttErrorResponse &>(message));
return;
case AttributeOpcode::FIND_INFORMATION_RESPONSE:
handle_response(client, static_cast<const AttFindInformationResponse &>(message));
return;
default:
break;
}
}
void handle_error(GattClient *client, const AttErrorResponse &error)
{
if (error.error_code == AttErrorResponse::ATTRIBUTE_NOT_FOUND) {
terminate(client, BLE_ERROR_NONE);
} else {
terminate(client, BLE_ERROR_UNSPECIFIED, error.error_code);
}
}
void handle_response(GattClient *client, const AttFindInformationResponse &response)
{
for (size_t i = 0; i < response.size(); ++i) {
DiscoveredCharacteristicDescriptor descriptor(
client->client, connection_handle, response[i].handle, response[i].uuid
);
CharacteristicDescriptorDiscovery::DiscoveryCallbackParams_t params = {
characteristic,
descriptor
};
discovery_cb(&params);
if (done) {
terminate(client, BLE_ERROR_NONE);
return;
}
if (response[i].handle == characteristic.getLastHandle()) {
terminate(client, BLE_ERROR_NONE);
return;
}
next_handle = response[i].handle + 1;
}
ble_error_t err = start(client);
if (err) {
terminate(client, err, AttErrorResponse::UNLIKELY_ERROR);
}
}
void terminate(GattClient *client, ble_error_t status, uint8_t error_code = 0x00)
{
client->remove_control_block(this);
CharacteristicDescriptorDiscovery::TerminationCallbackParams_t params = {
characteristic,
status,
error_code
};
termination_cb(&params);
delete this;
}
DiscoveredCharacteristic characteristic;
CharacteristicDescriptorDiscovery::DiscoveryCallback_t discovery_cb;
CharacteristicDescriptorDiscovery::TerminationCallback_t termination_cb;
uint16_t next_handle;
bool done;
};
GattClient::GattClient(PalGattClient &pal_client) :
eventHandler(nullptr),
_pal_client(pal_client),
_termination_callback(),
#if BLE_FEATURE_SIGNING
_signing_event_handler(nullptr),
#endif
control_blocks(nullptr),
_is_reseting(false)
{
_pal_client.when_server_message_received(
mbed::callback(this, &GattClient::on_server_message_received)
);
_pal_client.when_transaction_timeout(
mbed::callback(this, &GattClient::on_transaction_timeout)
);
_pal_client.set_event_handler(this);
}
ble_error_t GattClient::launchServiceDiscovery(
connection_handle_t connection_handle,
ServiceDiscovery::ServiceCallback_t service_callback,
ServiceDiscovery::CharacteristicCallback_t characteristic_callback,
const UUID &matching_service_uuid,
const UUID &matching_characteristic_uuid
)
{
// verify that there is no other procedures going on this connection
if (_is_reseting || get_control_block(connection_handle)) {
return BLE_ERROR_INVALID_STATE;
}
// terminate and return if there is no callback to call
if (!service_callback && !characteristic_callback) {
on_termination(connection_handle);
return BLE_ERROR_NONE;
}
DiscoveryControlBlock *discovery_pcb = new(std::nothrow) DiscoveryControlBlock(
connection_handle,
service_callback,
characteristic_callback,
matching_service_uuid,
matching_characteristic_uuid
);
if (discovery_pcb == nullptr) {
return BLE_ERROR_NO_MEM;
}
// note: control block inserted prior the request because they are part of
// of the transaction and the callback can be call synchronously
insert_control_block(discovery_pcb);
// launch the request
ble_error_t err = BLE_ERROR_UNSPECIFIED;
if (matching_service_uuid == UUID()) {
err = _pal_client.discover_primary_service(
connection_handle,
0x0001
);
} else {
err = _pal_client.discover_primary_service_by_service_uuid(
connection_handle,
0x0001,
matching_service_uuid
);
}
if (err) {
remove_control_block(discovery_pcb);
delete discovery_pcb;
}
return err;
}
ble_error_t GattClient::discoverServices(
ble::connection_handle_t connectionHandle,
ServiceDiscovery::ServiceCallback_t callback,
const UUID &matchingServiceUUID
)
{
/* We take advantage of the property
* that providing nullptr for the characteristic callback results in
* characteristic discovery being skipped for each matching
* service. This allows for an inexpensive method to discover only
* services. Porters are free to override this. */
return launchServiceDiscovery(
connectionHandle, callback, nullptr, matchingServiceUUID
);
}
bool GattClient::isServiceDiscoveryActive() const
{
ProcedureControlBlock *pcb = control_blocks;
while (pcb) {
if (pcb->type == COMPLETE_DISCOVERY_PROCEDURE) {
return true;
}
pcb = pcb->next;
}
return false;
}
void GattClient::terminateServiceDiscovery()
{
ProcedureControlBlock *pcb = control_blocks;
while (pcb) {
if (pcb->type == COMPLETE_DISCOVERY_PROCEDURE) {
static_cast<DiscoveryControlBlock *>(pcb)->done = true;
}
pcb = pcb->next;
}
}
ble_error_t GattClient::read(
connection_handle_t connection_handle,
GattAttribute::Handle_t attribute_handle,
uint16_t offset
) const
{
// verify that there is no other procedures going on this connection
if (_is_reseting || get_control_block(connection_handle)) {
return BLE_ERROR_INVALID_STATE;
}
ReadControlBlock *read_pcb = new(std::nothrow) ReadControlBlock(
connection_handle,
attribute_handle,
offset
);
if (read_pcb == nullptr) {
return BLE_ERROR_NO_MEM;
}
insert_control_block(read_pcb);
ble_error_t err = BLE_ERROR_NONE;
if (offset == 0) {
err = _pal_client.read_attribute_value(
connection_handle, attribute_handle
);
} else {
err = _pal_client.read_attribute_blob(
connection_handle, attribute_handle, offset
);
}
if (err) {
remove_control_block(read_pcb);
delete read_pcb;
}
return err;
}
ble_error_t GattClient::write(
WriteOp_t cmd,
connection_handle_t connection_handle,
GattAttribute::Handle_t attribute_handle,
size_t length,
const uint8_t *value
) const
{
if (_is_reseting || get_control_block(connection_handle)) {
return BLE_ERROR_INVALID_STATE;
}
uint16_t mtu = get_mtu(connection_handle);
#if BLE_FEATURE_SIGNING
/* if link is encrypted signed writes should be normal writes */
if (cmd == GATT_OP_SIGNED_WRITE_CMD) {
ble::link_encryption_t encryption(ble::link_encryption_t::NOT_ENCRYPTED);
// FIXME: use security manager or a template if applicable
ble::SecurityManager &sm = createBLEInstance()->getSecurityManager();
ble_error_t status = sm.getLinkEncryption(connection_handle, &encryption);
if (status == BLE_ERROR_NONE &&
(encryption == link_encryption_t::ENCRYPTED ||
encryption == link_encryption_t::ENCRYPTED_WITH_MITM ||
encryption == link_encryption_t::ENCRYPTED_WITH_SC_AND_MITM)
) {
cmd = GATT_OP_WRITE_CMD;
}
}
#endif // BLE_FEATURE_SIGNING
if (cmd == GATT_OP_WRITE_CMD) {
if (length > (uint16_t) (mtu - WRITE_HEADER_LENGTH)) {
return BLE_ERROR_PARAM_OUT_OF_RANGE;
}
return _pal_client.write_without_response(
connection_handle,
attribute_handle,
make_const_Span(value, length)
);
#if BLE_FEATURE_SIGNING
} else if (cmd == GATT_OP_SIGNED_WRITE_CMD) {
if (length > (uint16_t) (mtu - WRITE_HEADER_LENGTH - CMAC_LENGTH - MAC_COUNTER_LENGTH)) {
return BLE_ERROR_PARAM_OUT_OF_RANGE;
}
ble_error_t status = _pal_client.signed_write_without_response(
connection_handle,
attribute_handle,
make_const_Span(value, length)
);
if (_signing_event_handler && (status == BLE_ERROR_NONE)) {
_signing_event_handler->on_signed_write();
}
return status;
#endif // BLE_FEATURE_SIGNING
} else if (cmd == GATT_OP_WRITE_REQ) {
uint8_t *data = nullptr;
if (length > (uint16_t) (mtu - WRITE_HEADER_LENGTH)) {
data = (uint8_t *) malloc(length);
if (data == nullptr) {
return BLE_ERROR_NO_MEM;
}
memcpy(data, value, length);
}
WriteControlBlock *write_pcb = new(std::nothrow) WriteControlBlock(
connection_handle,
attribute_handle,
data,
length
);
if (write_pcb == nullptr) {
free(data);
return BLE_ERROR_NO_MEM;
}
insert_control_block(write_pcb);
ble_error_t err = BLE_ERROR_UNSPECIFIED;
if (data) {
err = _pal_client.queue_prepare_write(
connection_handle,
attribute_handle,
make_const_Span(data, mtu - PREPARE_WRITE_HEADER_LENGTH),
/* offset */0
);
} else {
err = _pal_client.write_attribute(
connection_handle,
attribute_handle,
make_const_Span(value, length)
);
}
if (err) {
remove_control_block(write_pcb);
delete write_pcb;
}
return err;
}
return BLE_ERROR_NOT_IMPLEMENTED;
}
void GattClient::onServiceDiscoveryTermination(
ServiceDiscovery::TerminationCallback_t callback
)
{
_termination_callback = callback;
}
ble_error_t GattClient::discoverCharacteristicDescriptors(
const DiscoveredCharacteristic &characteristic,
const CharacteristicDescriptorDiscovery::DiscoveryCallback_t &discoveryCallback,
const CharacteristicDescriptorDiscovery::TerminationCallback_t &terminationCallback
)
{
// verify that there is no other procedures going on this connection
if (_is_reseting || get_control_block(characteristic.getConnectionHandle())) {
return BLE_ERROR_INVALID_STATE;
}
if (characteristic.getValueHandle() == characteristic.getLastHandle()) {
CharacteristicDescriptorDiscovery::TerminationCallbackParams_t params = {
characteristic,
BLE_ERROR_NONE,
/* error code */ 0x00
};
terminationCallback(&params);
return BLE_ERROR_NONE;
}
DescriptorDiscoveryControlBlock *discovery_pcb =
new(std::nothrow) DescriptorDiscoveryControlBlock(
characteristic,
discoveryCallback,
terminationCallback
);
if (discovery_pcb == nullptr) {
return BLE_ERROR_NO_MEM;
}
insert_control_block(discovery_pcb);
ble_error_t err = discovery_pcb->start(this);
if (err) {
remove_control_block(discovery_pcb);
delete discovery_pcb;
}
return err;
}
bool GattClient::isCharacteristicDescriptorDiscoveryActive(
const DiscoveredCharacteristic &characteristic
) const
{
ProcedureControlBlock *pcb = control_blocks;
while (pcb) {
if (pcb->type == DESCRIPTOR_DISCOVERY_PROCEDURE &&
static_cast<DescriptorDiscoveryControlBlock *>(pcb)->characteristic == characteristic) {
return true;
}
pcb = pcb->next;
}
return false;
}
void GattClient::terminateCharacteristicDescriptorDiscovery(
const DiscoveredCharacteristic &characteristic
)
{
ProcedureControlBlock *pcb = control_blocks;
while (pcb) {
if (pcb->type == DESCRIPTOR_DISCOVERY_PROCEDURE) {
DescriptorDiscoveryControlBlock *dpcb =
static_cast<DescriptorDiscoveryControlBlock *>(pcb);
if (dpcb->characteristic == characteristic) {
dpcb->done = true;
return;
}
}
pcb = pcb->next;
}
}
ble_error_t GattClient::negotiateAttMtu(
connection_handle_t connection
)
{
return _pal_client.exchange_mtu(connection);
}
ble_error_t GattClient::reset(void)
{
/* Notify that the instance is about to shut down. */
shutdownCallChain.call(client);
shutdownCallChain.clear();
onDataReadCallbackChain.clear();
onDataWriteCallbackChain.clear();
onHVXCallbackChain.clear();
// _is_reseting prevent executions of new procedure while the instance resets.
// otherwise new procedures can be launched from callbacks generated by the
// reset.
_is_reseting = true;
while (control_blocks) {
control_blocks->abort(this);
}
_is_reseting = false;
return BLE_ERROR_NONE;
}
#if BLE_FEATURE_SIGNING
void GattClient::set_signing_event_handler(
PalSigningMonitorEventHandler *signing_event_handler
)
{
_signing_event_handler = signing_event_handler;
}
#endif // BLE_FEATURE_SIGNING
void GattClient::on_att_mtu_change(
ble::connection_handle_t connection_handle,
uint16_t att_mtu_size
)
{
if (eventHandler) {
eventHandler->onAttMtuChange(connection_handle, att_mtu_size);
}
}
void GattClient::on_write_command_sent(
ble::connection_handle_t connection_handle,
ble::attribute_handle_t attribute_handle,
uint8_t status
)
{
GattWriteCallbackParams response = {
connection_handle,
attribute_handle,
GattWriteCallbackParams::OP_WRITE_CMD,
BLE_ERROR_NONE,
status
};
this->processWriteResponse(&response);
}
void GattClient::on_termination(connection_handle_t connection_handle)
{
if (_termination_callback) {
_termination_callback(connection_handle);
}
}
void GattClient::on_server_message_received(
connection_handle_t connection_handle,
const AttServerMessage &message
)
{
switch (message.opcode) {
case AttributeOpcode::ERROR_RESPONSE:
case AttributeOpcode::EXCHANGE_MTU_RESPONSE:
case AttributeOpcode::FIND_INFORMATION_RESPONSE:
case AttributeOpcode::FIND_BY_VALUE_TYPE_RESPONSE:
case AttributeOpcode::READ_BY_TYPE_RESPONSE:
case AttributeOpcode::READ_RESPONSE:
case AttributeOpcode::READ_BLOB_RESPONSE:
case AttributeOpcode::READ_MULTIPLE_RESPONSE:
case AttributeOpcode::READ_BY_GROUP_TYPE_RESPONSE:
case AttributeOpcode::WRITE_RESPONSE:
case AttributeOpcode::PREPARE_WRITE_RESPONSE:
case AttributeOpcode::EXECUTE_WRITE_RESPONSE: {
on_server_response(connection_handle, message);
} break;
case AttributeOpcode::HANDLE_VALUE_INDICATION:
case AttributeOpcode::HANDLE_VALUE_NOTIFICATION: {
on_server_event(connection_handle, message);
} break;
default:
// invalid message receive
return;
}
}
void GattClient::on_server_response(
connection_handle_t connection,
const AttServerMessage &message
)
{
ProcedureControlBlock *pcb = get_control_block(connection);
if (pcb == nullptr) {
return;
}
pcb->handle(this, message);
}
void GattClient::on_server_event(connection_handle_t connection, const AttServerMessage &message)
{
GattHVXCallbackParams callbacks_params = {
(connection_handle_t) connection, 0
};
switch (message.opcode) {
case AttributeOpcode::HANDLE_VALUE_NOTIFICATION: {
const AttHandleValueNotification &notification =
static_cast<const AttHandleValueNotification &>(message);
callbacks_params.handle = notification.attribute_handle;
callbacks_params.type = BLE_HVX_NOTIFICATION;
callbacks_params.len = notification.attribute_value.size();
callbacks_params.data = notification.attribute_value.data();
} break;
case AttributeOpcode::HANDLE_VALUE_INDICATION: {
const AttHandleValueIndication &indication =
static_cast<const AttHandleValueIndication &>(message);
callbacks_params.handle = indication.attribute_handle;
callbacks_params.type = BLE_HVX_INDICATION;
callbacks_params.len = indication.attribute_value.size();
callbacks_params.data = indication.attribute_value.data();
} break;
default:
return;
}
processHVXEvent(&callbacks_params);
}
void GattClient::on_transaction_timeout(connection_handle_t connection)
{
ProcedureControlBlock *pcb = get_control_block(connection);
if (pcb == nullptr) {
return;
}
pcb->handle_timeout_error(this);
}
typename GattClient::ProcedureControlBlock *
GattClient::get_control_block(connection_handle_t connection)
{
ProcedureControlBlock *it = control_blocks;
while (it && it->connection_handle != connection) {
it = it->next;
}
return it;
}
const typename GattClient::ProcedureControlBlock *
GattClient::get_control_block(connection_handle_t connection) const
{
ProcedureControlBlock *it = control_blocks;
while (it && it->connection_handle != connection) {
it = it->next;
}
return it;
}
void GattClient::insert_control_block(ProcedureControlBlock *cb) const
{
if (control_blocks == nullptr) {
control_blocks = cb;
return;
}
ProcedureControlBlock *current = control_blocks;
while (current->next) {
current = current->next;
}
current->next = cb;
}
void GattClient::remove_control_block(ProcedureControlBlock *cb) const
{
if (control_blocks == nullptr) {
return;
}
if (cb == control_blocks) {
control_blocks = control_blocks->next;
return;
}
ProcedureControlBlock *current = control_blocks;
while (current->next && current->next != cb) {
current = current->next;
}
if (current->next == nullptr) {
return;
}
current->next = cb->next;
cb->next = nullptr;
}
uint16_t GattClient::get_mtu(connection_handle_t connection) const
{
uint16_t result = 23;
if (_pal_client.get_mtu_size((connection_handle_t) connection, result) != BLE_ERROR_NONE) {
result = 23;
}
return result;
}
/**
* @see GattClient::setEventHandler
*/
void GattClient::setEventHandler(EventHandler *handler)
{
eventHandler = handler;
}
/**
* @see GattClient::onDataRead
*/
void GattClient::onDataRead(ReadCallback_t callback)
{
onDataReadCallbackChain.add(callback);
}
/**
* @see GattClient::onDataRead
*/
GattClient::ReadCallbackChain_t &GattClient::onDataRead()
{
return onDataReadCallbackChain;
}
/**
* @see GattClient::onDataWritten
*/
void GattClient::onDataWritten(WriteCallback_t callback)
{
onDataWriteCallbackChain.add(callback);
}
/**
* @see GattClient::onDataWritten
*/
GattClient::WriteCallbackChain_t &GattClient::onDataWritten()
{
return onDataWriteCallbackChain;
}
/**
* @see GattClient::onHVX
*/
void GattClient::onHVX(HVXCallback_t callback)
{
onHVXCallbackChain.add(callback);
}
/**
* @see GattClient::onShutdown
*/
void GattClient::onShutdown(const GattClientShutdownCallback_t &callback)
{
shutdownCallChain.add(callback);
}
/**
* @see GattClient::onShutdown
*/
GattClient::GattClientShutdownCallbackChain_t &GattClient::onShutdown()
{
return shutdownCallChain;
}
/**
* @see GattClient::onHVX
*/
GattClient::HVXCallbackChain_t &GattClient::onHVX()
{
return onHVXCallbackChain;
}
/**
* @see GattClient::processReadResponse
*/
void GattClient::processReadResponse(const GattReadCallbackParams *params)
{
onDataReadCallbackChain(params);
}
/**
* @see GattClient::processWriteResponse
*/
void GattClient::processWriteResponse(const GattWriteCallbackParams *params)
{
onDataWriteCallbackChain(params);
}
/**
* @see GattClient::processHVXEvent
*/
void GattClient::processHVXEvent(const GattHVXCallbackParams *params)
{
if (onHVXCallbackChain) {
onHVXCallbackChain(params);
}
}
} // namespace impl
} // namespace ble
#endif // BLE_FEATURE_GATT_SERVER