From: Gustavo F. Padovan Date: Mon, 14 Jun 2010 05:26:15 +0000 (-0300) Subject: Bluetooth: Don't accept ConfigReq if we aren't in the BT_CONFIG state X-Git-Tag: master-2010-07-27~29^2~30 X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=8cb8e6f1684be13b51f8429b15f39c140326b327;p=~andy%2Flinux Bluetooth: Don't accept ConfigReq if we aren't in the BT_CONFIG state 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 Signed-off-by: Marcel Holtmann --- diff --git a/net/bluetooth/l2cap.c b/net/bluetooth/l2cap.c index 6a33d269389..f6e46fdddd2 100644 --- a/net/bluetooth/l2cap.c +++ b/net/bluetooth/l2cap.c @@ -3052,8 +3052,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);