File gatt-Make-use-of-gatt_db_attribute_set_fixed_length.patch of Package bluez.25504
From 6a50b6aeda78a88eafb177718109c256eec077a6 Mon Sep 17 00:00:00 2001
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Date: Tue, 5 Jan 2021 16:45:37 -0800
Subject: [PATCH] gatt: Make use of gatt_db_attribute_set_fixed_length
This makes use of gatt_db_attribute_set_fixed_length so the database is
aware of the length of the values and perform bounds checking.
---
src/gatt-database.c | 36 ++++++++++++++++--------------------
1 file changed, 16 insertions(+), 20 deletions(-)
Index: bluez-5.55/src/gatt-database.c
===================================================================
--- bluez-5.55.orig/src/gatt-database.c
+++ bluez-5.55/src/gatt-database.c
@@ -170,12 +170,14 @@ struct notify {
void *user_data;
};
+#define CLI_FEAT_SIZE 1
+
struct device_state {
struct btd_gatt_database *db;
bdaddr_t bdaddr;
uint8_t bdaddr_type;
unsigned int disc_id;
- uint8_t cli_feat[1];
+ uint8_t cli_feat[CLI_FEAT_SIZE];
bool change_aware;
bool out_of_sync;
struct queue *ccc_states;
@@ -697,18 +699,12 @@ static void gap_appearance_read_cb(struc
dev_class = btd_adapter_get_class(database->adapter);
- if (offset > 2) {
- error = BT_ATT_ERROR_INVALID_OFFSET;
- goto done;
- }
-
appearance[0] = dev_class & 0x00ff;
appearance[1] = (dev_class >> 8) & 0x001f;
len -= offset;
value = len ? &appearance[offset] : NULL;
-done:
gatt_db_attribute_read_result(attrib, id, error, value, len);
}
@@ -829,7 +825,7 @@ static void database_add_record(struct b
static void populate_gap_service(struct btd_gatt_database *database)
{
bt_uuid_t uuid;
- struct gatt_db_attribute *service;
+ struct gatt_db_attribute *service, *attrib;
/* Add the GAP service */
bt_uuid16_create(&uuid, UUID_GAP);
@@ -848,10 +844,12 @@ static void populate_gap_service(struct
* Device Appearance characteristic.
*/
bt_uuid16_create(&uuid, GATT_CHARAC_APPEARANCE);
- gatt_db_service_add_characteristic(service, &uuid, BT_ATT_PERM_READ,
+ attrib = gatt_db_service_add_characteristic(service, &uuid,
+ BT_ATT_PERM_READ,
BT_GATT_CHRC_PROP_READ,
gap_appearance_read_cb,
NULL, database);
+ gatt_db_attribute_set_fixed_length(attrib, 2);
gatt_db_service_set_active(service, true);
@@ -874,11 +872,6 @@ static void gatt_ccc_read_cb(struct gatt
DBG("CCC read called for handle: 0x%04x", handle);
- if (offset) {
- ecode = BT_ATT_ERROR_INVALID_OFFSET;
- goto done;
- }
-
ccc = get_ccc_state(database, att, handle);
if (!ccc) {
ecode = BT_ATT_ERROR_UNLIKELY;
@@ -1055,6 +1048,8 @@ service_add_ccc(struct gatt_db_attribute
return NULL;
}
+ gatt_db_attribute_set_fixed_length(ccc, 2);
+
ccc_cb->handle = gatt_db_attribute_get_handle(ccc);
ccc_cb->callback = write_callback;
ccc_cb->destroy = destroy;
@@ -1084,11 +1079,6 @@ static void cli_feat_read_cb(struct gatt
goto done;
}
- if (offset >= sizeof(state->cli_feat)) {
- ecode = BT_ATT_ERROR_INVALID_OFFSET;
- goto done;
- }
-
len = sizeof(state->cli_feat) - offset;
value = len ? &state->cli_feat[offset] : NULL;
@@ -1217,6 +1207,7 @@ static void populate_gatt_service(struct
cli_feat_read_cb, cli_feat_write_cb,
database);
+ gatt_db_attribute_set_fixed_length(database->cli_feat, CLI_FEAT_SIZE);
/* Only expose database hash chrc if supported */
if (gatt_db_hash_support(database->db)) {
@@ -1224,6 +1215,7 @@ static void populate_gatt_service(struct
database->db_hash = gatt_db_service_add_characteristic(service,
&uuid, BT_ATT_PERM_READ, BT_GATT_CHRC_PROP_READ,
db_hash_read_cb, NULL, database);
+ gatt_db_attribute_set_fixed_length(database->db_hash, 16);
}
/* Only enable EATT if there is a socket listening */
@@ -1232,6 +1224,7 @@ static void populate_gatt_service(struct
database->eatt = gatt_db_service_add_characteristic(service,
&uuid, BT_ATT_PERM_READ, BT_GATT_CHRC_PROP_READ,
server_feat_read_cb, NULL, database);
+ gatt_db_attribute_set_fixed_length(database->eatt, 1);
}
gatt_db_service_set_active(service, true);
@@ -1263,12 +1256,15 @@ static void populate_devinfo_service(str
service = gatt_db_add_service(database->db, &uuid, true, 3);
if (main_opts.did_source > 0) {
+ struct gatt_db_attribute *attrib;
+
bt_uuid16_create(&uuid, GATT_CHARAC_PNP_ID);
- gatt_db_service_add_characteristic(service, &uuid,
+ attrib = gatt_db_service_add_characteristic(service, &uuid,
BT_ATT_PERM_READ,
BT_GATT_CHRC_PROP_READ,
device_info_read_pnp_id_cb,
NULL, database);
+ gatt_db_attribute_set_fixed_length(attrib, 7);
}
gatt_db_service_set_active(service, true);