From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (1.0) Subject: Re: Non-consecutive handle values in GATT From: Andrejs Hanins In-Reply-To: Date: Thu, 5 Mar 2015 00:34:11 +0200 Cc: Arman Uguray , "linux-bluetooth@vger.kernel.org" , Marcin Kraglak , Szymon Janc Message-Id: <007858C7-D538-407D-8212-D3B0CB880165@ubnt.com> References: <54F752D8.1000605@ubnt.com> To: Lukasz Rymanowski Sender: linux-bluetooth-owner@vger.kernel.org List-ID: > On 05 Mar 2015, at 00:21, Lukasz Rymanowski wrote: > > Hi Andrejs, > >> On Wed, Mar 4, 2015 at 10:39 PM, Arman Uguray wrote: >> Hi Andrejs, >> >>> On Wed, Mar 4, 2015 at 10:45 AM, Andrejs Hanins wrote: >>> Hello, >>> >>> I'm experimenting with an LE peripheral device which provides GATT >>> services described by attributes with non-consecutive handle values, i.e. >>> there are "gaps" between handle values. According to the Bluetooth Core >>> specification 4.0 (Volume 3, Part G, "2.5.1 Overview") it is allowed: >>> >>> Although the Attribute Handle values are in increasing order, following >>> Attribute Handle values may differ by more than one. >>> >>> Based on my experiments, BlueZ 5.28 and also git-master as of today does >>> not support non-consecutive handle values GATT table. As a result, I can't >>> connect to my device because gatt-client fails to initialize properly. The >>> failing place is in discover_descs(): >>> >>> if (gatt_db_attribute_get_handle(attr) != >>> chrc_data->value_handle) >>> goto failed; >>> >>> The value of chrc_data->value_handle is correct and matches GATT table >>> one the device, but the attr->handle has the value of previous attribute >>> (Primary Service UUID in my case) +2. This handle value calculation happens >>> in gatt_db_service_add_characteristic() which has strange code: >>> >>> /* We set handle of characteristic value, which will be added next */ >>> put_le16(get_handle_at_index(service, i - 1) + 2, &value[1]); >>> >>> Before trying to fix the problem by myself it would be great to hear >>> some comments about this issue. Does it seem like a bug or I missed >>> something? >>> >>> As a note, I can successfully connect to my LE peripheral from an iPhone >>> LightBlue app, which does not posses any issues during GATT discovery and >>> can read/write the characteristic on the device. > > Can you share what device are you using? Is it on the market already? > I'm just curious as I haven't seen any device doing it on last couple UPFs > > But indeed, it looks like this is something we need to fix. It's a Broadcom dev kit for LE development. I'm running one of Broadcom examples which has non-consecutive handle values within single service. Of course, there is a full control over GATT and we can change handle values to be on +1 basis, no big deal, but in general BT core specs do not require it, so fix is nice to have to be on a safe side in case there will be such device in a wild. I spent a day to understand it digging the code :) > > \Lukasz >> >> This is interesting. The gatt-db was initially designed for the >> server-role, with the assumption being that the handles of a service >> will be contiguous. So, it allows gaps between separate service ranges >> but not between individual attributes between the handles of a >> service. This assumption is OK for server-role but now that we also >> use gatt-db for the client role, then maybe this assumption is >> incorrect in some cases. >> >> So I guess we need a way to enter individual attributes with arbitrary >> handles directly into the database, since it currently creates a >> contiguous array to store the attributes of a service. I remember Luiz >> was talking about changing the way the gatt-db addition/removal works >> on IRC so maybe he can provide more input here. Fwiw, we never >> encountered this issue because in practice I've never seen a database >> implementation that skips attribute handles within a service. >> >>> >>> BR, Andrey >>> -- >>> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" >>> in >>> the body of a message to majordomo@vger.kernel.org >>> More majordomo info at http://vger.kernel.org/majordomo-info.html >> >> Cheers, >> Arman >> -- >> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in >> the body of a message to majordomo@vger.kernel.org >> More majordomo info at http://vger.kernel.org/majordomo-info.html