linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ville Tervo <ville.tervo@nokia.com>
To: "ext Gustavo F. Padovan" <padovan@profusion.mobi>
Cc: "linux-bluetooth@vger.kernel.org" <linux-bluetooth@vger.kernel.org>
Subject: Re: [PATCH 4/6] Bluetooth: Add LE connection support to L2CAP
Date: Mon, 25 Oct 2010 10:11:53 +0300	[thread overview]
Message-ID: <20101025071153.GW15050@null> (raw)
In-Reply-To: <20101022191457.GE980@vigoh>

On Fri, Oct 22, 2010 at 09:14:57PM +0200, ext Gustavo F. Padovan wrote:
> Hi Ville,
> 
> * Ville Tervo <ville.tervo@nokia.com> [2010-10-18 16:02:54 +0300]:
> 
> > Add basic LE connection support to L2CAP. LE
> > connection can be created by specifying cid
> > in struct sockaddr_l2
> > 
> > Signed-off-by: Ville Tervo <ville.tervo@nokia.com>
> > ---
> >  include/net/bluetooth/l2cap.h |    3 +++
> >  net/bluetooth/l2cap.c         |   32 ++++++++++++++++++++++++--------
> >  2 files changed, 27 insertions(+), 8 deletions(-)
> > 
> > diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h
> > index c819c8b..cc3a140 100644
> > --- a/include/net/bluetooth/l2cap.h
> > +++ b/include/net/bluetooth/l2cap.h
> > @@ -160,6 +160,9 @@ struct l2cap_conn_rsp {
> >  /* channel indentifier */
> >  #define L2CAP_CID_SIGNALING	0x0001
> >  #define L2CAP_CID_CONN_LESS	0x0002
> > +#define L2CAP_CID_LE_DATA	0x0004
> > +#define L2CAP_CID_LE_SIGNALING	0x0005
> > +#define L2CAP_CID_SMP		0x0006
> >  #define L2CAP_CID_DYN_START	0x0040
> >  #define L2CAP_CID_DYN_END	0xffff
> >  
> > diff --git a/net/bluetooth/l2cap.c b/net/bluetooth/l2cap.c
> > index 16049de..bf5daf3 100644
> > --- a/net/bluetooth/l2cap.c
> > +++ b/net/bluetooth/l2cap.c
> > @@ -617,6 +617,12 @@ static void l2cap_conn_ready(struct l2cap_conn *conn)
> >  	for (sk = l->head; sk; sk = l2cap_pi(sk)->next_c) {
> >  		bh_lock_sock(sk);
> >  
> > +		if (conn->hcon->type == LE_LINK) {
> > +			l2cap_sock_clear_timer(sk);
> > +			sk->sk_state = BT_CONNECTED;
> > +			sk->sk_state_change(sk);
> > +		}
> > +
> >  		if (sk->sk_type != SOCK_SEQPACKET &&
> >  				sk->sk_type != SOCK_STREAM) {
> >  			l2cap_sock_clear_timer(sk);
> > @@ -675,7 +681,11 @@ static struct l2cap_conn *l2cap_conn_add(struct hci_conn *hcon, u8 status)
> >  
> >  	BT_DBG("hcon %p conn %p", hcon, conn);
> >  
> > -	conn->mtu = hcon->hdev->acl_mtu;
> > +	if (hcon->hdev->le_mtu && hcon->type == LE_LINK)
> > +		conn->mtu = hcon->hdev->le_mtu;
> > +	else
> > +		conn->mtu = hcon->hdev->acl_mtu;
> > +
> >  	conn->src = &hcon->hdev->bdaddr;
> >  	conn->dst = &hcon->dst;
> >  
> > @@ -1102,8 +1112,13 @@ static int l2cap_do_connect(struct sock *sk)
> >  		}
> >  	}
> >  
> > -	hcon = hci_connect(hdev, ACL_LINK, dst,
> > +	if (l2cap_pi(sk)->dcid == L2CAP_CID_LE_DATA)
> > +		hcon = hci_connect(hdev, LE_LINK, dst,
> > +					l2cap_pi(sk)->sec_level, auth_type);
> > +	else
> 
> 
> I think that "else if (l2cap_pi(sk)->psm)" is better here, we do not
> want to permit go ahead with psm 0.

That is checked already in l2cap_sock_connect().

-- 
Ville

  reply	other threads:[~2010-10-25  7:11 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-10-18 13:02 [RFC] Bluetooth Low energy support Ville Tervo
2010-10-18 13:02 ` [PATCH 1/6] Bluetooth: Add low energy commands and events Ville Tervo
2010-10-18 13:02 ` [PATCH 2/6] Bluetooth: Add LE connect support Ville Tervo
2010-10-22 18:46   ` Gustavo F. Padovan
2010-10-25  7:07     ` Ville Tervo
2010-10-18 13:02 ` [PATCH 3/6] Bluetooth: Use LE buffers for LE traffic Ville Tervo
2010-10-22 18:53   ` Gustavo F. Padovan
2010-10-25  7:09     ` Ville Tervo
2010-10-18 13:02 ` [PATCH 4/6] Bluetooth: Add LE connection support to L2CAP Ville Tervo
2010-10-22 19:14   ` Gustavo F. Padovan
2010-10-25  7:11     ` Ville Tervo [this message]
2010-10-18 13:02 ` [PATCH 5/6] Bluetooth: Add server socket support for LE connection Ville Tervo
2010-10-18 13:02 ` [PATCH 6/6] Bluetooth: Do not send disconn comand over LE links Ville Tervo
2010-11-09 16:25 ` [RFC] Bluetooth Low energy support Anderson Lizardo
2010-11-10  6:20   ` Ville Tervo
2010-11-10 10:46     ` Anderson Lizardo
2010-11-10 12:51       ` Ville Tervo
  -- strict thread matches above, loose matches on Subject: below --
2010-10-25 12:21 [PATCH] Basic bluetooth low " Ville Tervo
2010-10-25 12:21 ` [PATCH 4/6] Bluetooth: Add LE connection support to L2CAP Ville Tervo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20101025071153.GW15050@null \
    --to=ville.tervo@nokia.com \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=padovan@profusion.mobi \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).