Return-Path: MIME-Version: 1.0 In-Reply-To: References: <20130503044355.GB3742@x220> Date: Fri, 3 May 2013 12:06:04 -0300 Message-ID: Subject: Re: GATT Clients and Servers in the kernel (was Re:[PATCH BlueZ v3 06/16] attrib...) From: Andre Guedes To: Marcel Holtmann Cc: Johan Hedberg , Vinicius Gomes , Jefferson Delfes , BlueZ development Content-Type: text/plain; charset=ISO-8859-1 List-ID: Hi Marcel, Johan and Vinicius, On Fri, May 3, 2013 at 3:17 AM, Marcel Holtmann wrote= : > Hi Johan, > >>>> the long term plan is to use standard types like bool, char, uint8_t >>>> and also void * here. However we might want to also see how to get >>>> rid of g_ prefix as well. Especially g_attrib seems to be a good >>>> candidate to get rid of. >>>> >>>> I also like to see ATT and GATT being implemented as src/shared/ >>>> under LGPL so we can be easily share it in the future. I already >>>> have some (unpublished) code for src/shared/att.[ch] and >>>> src/shared/gatt.[ch] already, but I think what we first need to do >>>> is to figure out how we handle clients and servers from the kernel >>>> side. Especially with the background of the kernel auto-connecting >>>> LE channels in the future. >>> >>> I am assuming you were talking about the connection establishment. If >>> not, I am not following. >>> >>> I can only think of an evolutionary approach of what we are already >>> doing: >>> >>> - when we are the initiating side, the kernel will only auto-connect >>> devices that have an associated socket blocking on connect(); the >>> kernel may even use the white list if it seems appropriate (no >>> resolvable addresses in the list of "to be connected" sockets for >>> example). >> >> You'll need to sync up with Marcel regarding how this should be done >> (I'll be effectively offline until next Tuesday so you wont be getting >> more clarifications from me before that). >> >> I've never thought that doing tying connect() to the auto-connect >> procedure is a good idea, and based on my last chat with Marcel a few >> days ago he was agreeing. Having a pending connect() for potentially >> days or even months is not really very intuitive compared to how >> connect() is typically used. Instead, I think the ATT server socket >> should always be the point of entry of new connections, regardless of >> who is initiating. We'll then have a new mgmt command to add devices to >> a kernel-side list, potentially along with the necessary scan >> parameters, and the kernel will then do the passive scanning based on >> that. > > that is still my thinking here. Essentially every LE connection will beco= me an incoming connection. At least from the point of bluetoothd. > > The reasoning so far is pretty simple. The kernel needs to take control o= ver the connect and auto-connect procedures. This means it has to figure ou= t the right scanning parameters. No call to connect() will be able to provi= de the right amount of parameters here anyway. And doing a connect() with a= n infinite timeout seems the wrong approach. Still in the connect() approach for the initiating side, what about if we had a socket option to set up the connection parameters? The user would call setsockopt() to provide the right connection parameters (for this connection) and then call connect(). If there is more than one LE connection attempt going on, the kernel chooses the set of parameters (provided by each setsockopt()) which is more restrictive. This way, we wouldn't require a extra mgmt command and the whole LE connection functionality would be confined in the socket interface instead of a mix of socket and management interfaces. Regarding the connect() with no timeout, yes, I think it is a bit weird too. However, it seems this is the way connection is handled by the LE spec. > So I think it is better for bluetoothd to just sit and only consume 1 fil= e descriptor for the listen socket instead of 10 or more for keeping one fo= r every connect() we are holding. Especially with cases where devices are r= unning for month and only ever now and then they want to actually connect. = This is especially important if the connection interval is actually handled= by the peripheral and we have no control. Following the server socket approach, let's say we have a BlueZ vs BlueZ scenario (one the GATT server the other the GATT client). Both (server and client) would call accept() to establish a connection. This seems a weird usage of socket interface. Besides, what happens with connect()? We will have to support it anyway, right? At the end, we will have two ways to initiate a LE connection? BR, Andre