From: Andre Dieb Martins <andre.dieb@xxxxxxxxxxx> Only enable notification/indication if the descriptor allows it. --- src/attrib-server.c | 11 ++++++++--- 1 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/attrib-server.c b/src/attrib-server.c index be71621..5675a1b 100644 --- a/src/attrib-server.c +++ b/src/attrib-server.c @@ -197,19 +197,21 @@ static uint8_t client_set_notifications(struct attribute *attr, struct gatt_channel *channel = user_data; struct attribute *a, *last_chr_val = NULL; uint16_t handle, cfg_val; + uint8_t perm; uuid_t uuid; GSList *l; cfg_val = att_get_u16(attr->data); sdp_uuid16_create(&uuid, GATT_CHARAC_UUID); - for (l = database, handle = 0; l != NULL; l = l->next) { + for (l = database, handle = 0, perm = 0; l != NULL; l = l->next) { a = l->data; if (a->handle >= attr->handle) break; if (sdp_uuid_cmp(&a->uuid, &uuid) == 0) { + perm = att_get_u8(&a->data[0]); handle = att_get_u16(&a->data[1]); continue; } @@ -221,8 +223,11 @@ static uint8_t client_set_notifications(struct attribute *attr, if (last_chr_val == NULL) return 0; - /* FIXME: Characteristic properties shall be checked for - * Notification/Indication permissions. */ + if ((cfg_val & 0x0001) && !(perm & ATT_CHAR_PROPER_NOTIFY)) + return ATT_ECODE_WRITE_NOT_PERM; + + if ((cfg_val & 0x0002) && !(perm & ATT_CHAR_PROPER_INDICATE)) + return ATT_ECODE_WRITE_NOT_PERM; if (cfg_val & 0x0001) channel->notify = g_slist_append(channel->notify, last_chr_val); -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html