Return-Path: MIME-Version: 1.0 In-Reply-To: <1414425900-21784-6-git-send-email-luiz.dentz@gmail.com> References: <1414425900-21784-1-git-send-email-luiz.dentz@gmail.com> <1414425900-21784-6-git-send-email-luiz.dentz@gmail.com> Date: Mon, 27 Oct 2014 11:46:38 -0700 Message-ID: Subject: Re: [PATCH BlueZ 6/9] shared/gatt-db: Add gatt_db_attribute_read From: Arman Uguray To: Luiz Augusto von Dentz Cc: BlueZ development Content-Type: text/plain; charset=UTF-8 Sender: linux-bluetooth-owner@vger.kernel.org List-ID: Hi Luiz, > > --- > src/shared/gatt-db.c | 17 ++++++++++++++++- > 1 file changed, 16 insertions(+), 1 deletion(-) > > diff --git a/src/shared/gatt-db.c b/src/shared/gatt-db.c > index 9ead5e3..acd2e9a 100644 > --- a/src/shared/gatt-db.c > +++ b/src/shared/gatt-db.c > @@ -882,7 +882,22 @@ 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; > + if (!attrib || !func) > + return false; > + > + if (offset > attrib->value_len) > + return false; > + > + if (attrib->read_func) { > + attrib->read_func(attrib->handle, offset, opcode, bdaddr, > + attrib->user_data); > + return true; > + } > + > + func(attrib, 0, &attrib->value[offset], attrib->value_len - offset, > + user_data); Wouldn't this potentially cause an invalid access if value_len == offset? I would just do a check here and pass NULL to func if that's the case. > + > + return true; > } > > bool gatt_db_attribute_write(struct gatt_db_attribute *attrib, uint16_t offset, > -- Cheers, Arman