Re: [PATCH v2 7/9] shared/gatt-db: Add gatt_db_attribute_write

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Arman,

On Wed, Oct 29, 2014 at 12:30 AM, Arman Uguray <armansito@xxxxxxxxxxxx> wrote:
> Hi Luiz,
>
> On Tue, Oct 28, 2014 at 9:18 AM, Luiz Augusto von Dentz
> <luiz.dentz@xxxxxxxxx> wrote:
>> From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx>
>>
>> ---
>>  src/shared/gatt-db.c | 32 ++++++++++++++++++++++++++++++--
>>  1 file changed, 30 insertions(+), 2 deletions(-)
>>
>> diff --git a/src/shared/gatt-db.c b/src/shared/gatt-db.c
>> index b5b6c72..5a912f8 100644
>> --- a/src/shared/gatt-db.c
>> +++ b/src/shared/gatt-db.c
>> @@ -900,7 +900,7 @@ bool gatt_db_attribute_read(struct gatt_db_attribute *attrib, uint16_t offset,
>>                 return true;
>>         }
>>
>> -       /* Check length boundary if value is stored in the db */
>> +       /* Check boundary if value is stored in the db */
>>         if (offset >= attrib->value_len)
>>                 return false;
>>
>> @@ -916,5 +916,33 @@ bool gatt_db_attribute_write(struct gatt_db_attribute *attrib, uint16_t offset,
>>                                         gatt_db_attribute_write_t func,
>>                                         void *user_data)
>>  {
>> -       return false;
>> +       if (!attrib)
>> +               return false;
>> +
>> +       if (attrib->write_func) {
>> +               attrib->write_func(attrib->handle, offset, value, len, opcode,
>> +                                               bdaddr, attrib->user_data);
>> +               return true;
>> +       }
>> +
>> +       /* For values stored in db allocate on demand */
>> +       if (!attrib->value) {
>> +               attrib->value = malloc0(len + offset);
>> +               if (!attrib->value)
>> +                       return false;
>> +               attrib->value_len = len + offset;
>> +       } else if (offset >= attrib->value_len ||
>> +                               len > (unsigned) (attrib->value_len - offset)) {
>> +               attrib->value = realloc(attrib->value, len + offset);
>
> I wouldn't immediately modify attrib->value here. Use a temporary, so
> that if realloc fails, the write will fail but the attribute value
> will remain unmodified.

Well realloc would still affect the pointer anyway, and I guess if it
fails it would return the original pointer and nothing would be change
so the return is only really useful if the original pointer is NULL
then it acts as malloc.

>> +               if (!attrib->value)
>> +                       return 0;
>
> return false, to be consistent with the previous block.

Will fix this.

>> +               attrib->value_len = len + offset;
>> +       }
>> +
>> +       memcpy(&attrib->value[offset], value, len);
>
> I'm still not sure about allowing writes if attrib->write_func is
> NULL. My thinking is, if the write_func is not set, then this
> attribute is not writable so we always return false. This is
> automatically the case for all declaration attributes since they
> wouldn't have write permission. All other writes will then always be
> delegated to the upper layer. This would keep things a bit simpler I
> think, especially since we wouldn't want some accidental usage of
> gatt_db_attribute_write on a declaration handle to break the database.

The db has no idea of permissions bits to begin with so it cannot
check consistency between permissions and callbacks, and I do remember
commenting that this allows to store values in the db itself, which is
very convenient for plugins, this is also valid for read, any plugin
should be able to read values stored in the db, so at in terms of API
it is consistent to allow writes without a callback.

>> +
>> +       if (func)
>> +               func(attrib, 0, user_data);
>> +
>> +       return true;
>>  }
>> --
>> 1.9.3
>>
>> --
>> 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
>
> Cheers,
> Arman



-- 
Luiz Augusto von Dentz
--
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




[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux