diff options
author | Gustavo Padovan <gustavo@padovan.org> | 2012-05-07 03:07:26 -0300 |
---|---|---|
committer | Gustavo Padovan <gustavo.padovan@collabora.co.uk> | 2012-05-16 16:14:09 -0300 |
commit | c6585a4da0c709a7a9f59aab68869298b52ca1e1 (patch) | |
tree | ebd37772e20596f5ddd92e2150b6be4107ed0e99 /net/bluetooth/l2cap_sock.c | |
parent | a6a5568c03c4805d4d250f6bd9d468eeeb4ea059 (diff) | |
download | talos-op-linux-c6585a4da0c709a7a9f59aab68869298b52ca1e1.tar.gz talos-op-linux-c6585a4da0c709a7a9f59aab68869298b52ca1e1.zip |
Bluetooth: report the right security level in getsockopt
During a security level elevation we need to keep track of the current
security level of a connection until the new one is not confirmed.
Signed-off-by: Gustavo Padovan <gustavo@padovan.org>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'net/bluetooth/l2cap_sock.c')
-rw-r--r-- | net/bluetooth/l2cap_sock.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/bluetooth/l2cap_sock.c b/net/bluetooth/l2cap_sock.c index f6d8e13197d6..f52d58e05d02 100644 --- a/net/bluetooth/l2cap_sock.c +++ b/net/bluetooth/l2cap_sock.c @@ -379,7 +379,10 @@ static int l2cap_sock_getsockopt(struct socket *sock, int level, int optname, ch } memset(&sec, 0, sizeof(sec)); - sec.level = chan->sec_level; + if (chan->conn) + sec.level = chan->conn->hcon->sec_level; + else + sec.level = chan->sec_level; if (sk->sk_state == BT_CONNECTED) sec.key_size = chan->conn->hcon->enc_key_size; |