All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Gustavo F. Padovan" <gustavo@padovan.org>
To: linux-bluetooth@vger.kernel.org
Cc: "Gustavo F. Padovan" <padovan@profusion.mobi>
Subject: Re: [PATCH] Bluetooth: Don't accept ConfigReq if we aren't in the BT_CONFIG state
Date: Fri, 18 Jun 2010 20:59:29 -0300	[thread overview]
Message-ID: <20100618235929.GB14514@vigoh> (raw)
In-Reply-To: <1276493175-9650-1-git-send-email-gustavo@padovan.org>

* Gustavo F. Padovan <gustavo@padovan.org> [2010-06-14 02:26:15 -0300]:

> From: Gustavo F. Padovan <padovan@profusion.mobi>
> 
> If such event happens we shall reply with a Command Reject, because we are
> not expecting any configure request.
> 
> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
> ---
>  net/bluetooth/l2cap.c |    8 +++++++-
>  1 files changed, 7 insertions(+), 1 deletions(-)
> 
> diff --git a/net/bluetooth/l2cap.c b/net/bluetooth/l2cap.c
> index 9753b69..f725fcc 100644
> --- a/net/bluetooth/l2cap.c
> +++ b/net/bluetooth/l2cap.c
> @@ -2741,8 +2741,14 @@ static inline int l2cap_config_req(struct l2cap_conn *conn, struct l2cap_cmd_hdr
>  	if (!sk)
>  		return -ENOENT;
>  
> -	if (sk->sk_state == BT_DISCONN)
> +	if (sk->sk_state != BT_CONFIG) {
> +		struct l2cap_cmd_rej rej;
> +
> +		rej.reason = cpu_to_le16(0x0002);
> +		l2cap_send_cmd(conn, cmd.ident, L2CAP_COMMAND_REJ,
> +				sizeof(rej), &rej);
>  		goto unlock;
> +	}
>  
>  	/* Reject if config buffer is too small. */
>  	len = cmd_len - sizeof(*req);

I tested this one by myself. I'm queueing it for -next. 
With a little modification it works.

-               l2cap_send_cmd(conn, cmd.ident, L2CAP_COMMAND_REJ,
+               l2cap_send_cmd(conn, cmd->ident, L2CAP_COMMAND_REJ,

i.e., the original patch even compile. ;)


-- 
Gustavo F. Padovan
http://padovan.org

      reply	other threads:[~2010-06-18 23:59 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-06-13 21:28 odd cid change in l2cap negotiation Andrew Kohlsmith (mailing lists account)
2010-06-13 23:12 ` Andrew Kohlsmith (mailing lists account)
2010-06-14  0:50 ` Gustavo F. Padovan
2010-06-14  5:26   ` [PATCH] Bluetooth: Don't accept ConfigReq if we aren't in the BT_CONFIG state Gustavo F. Padovan
2010-06-18 23:59     ` Gustavo F. Padovan [this message]

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=20100618235929.GB14514@vigoh \
    --to=gustavo@padovan.org \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.