Return-Path: From: Luiz Augusto von Dentz To: linux-bluetooth@vger.kernel.org Subject: [PATCH BlueZ v3 6/9] shared/gatt-db: Add gatt_db_attribute_read Date: Thu, 30 Oct 2014 15:57:42 +0200 Message-Id: <1414677465-19862-6-git-send-email-luiz.dentz@gmail.com> In-Reply-To: <1414677465-19862-1-git-send-email-luiz.dentz@gmail.com> References: <1414677465-19862-1-git-send-email-luiz.dentz@gmail.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: From: Luiz Augusto von Dentz --- src/shared/gatt-db.c | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/src/shared/gatt-db.c b/src/shared/gatt-db.c index 00023db..a70af7b 100644 --- a/src/shared/gatt-db.c +++ b/src/shared/gatt-db.c @@ -891,7 +891,28 @@ bool gatt_db_attribute_read(struct gatt_db_attribute *attrib, uint16_t offset, uint8_t opcode, bdaddr_t *bdaddr, gatt_db_attribute_read_t func, void *user_data) { - return false; + uint8_t *value; + + if (!attrib || !func) + return false; + + if (attrib->read_func) { + /* TODO: Pass callback function to read_func */ + attrib->read_func(attrib->handle, offset, opcode, bdaddr, + attrib->user_data); + return true; + } + + /* Check boundary if value is stored in the db */ + if (offset > attrib->value_len) + return false; + + /* Guard against invalid access if offset equals to value length */ + value = offset == attrib->value_len ? NULL : &attrib->value[offset]; + + func(attrib, 0, value, attrib->value_len - offset, user_data); + + return true; } bool gatt_db_attribute_write(struct gatt_db_attribute *attrib, uint16_t offset, -- 1.9.3