diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2014-07-17 15:35:39 +0300 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-07-17 14:39:40 +0200 |
commit | 977f8fce0279e5f96dc5c5068610d60b9ae94802 (patch) | |
tree | b2a84081d8c112589b06ac044a78b955b2b8becd /net/bluetooth/hci_conn.c | |
parent | e7cafc45258c852c5176cd421615846e79a3d307 (diff) | |
download | op-kernel-dev-977f8fce0279e5f96dc5c5068610d60b9ae94802.zip op-kernel-dev-977f8fce0279e5f96dc5c5068610d60b9ae94802.tar.gz |
Bluetooth: Introduce a flag to track who really initiates authentication
Even though our side requests authentication, the original action that
caused it may be remotely triggered, such as an incoming L2CAP or RFCOMM
connect request. To track this information introduce a new hci_conn flag
called HCI_CONN_AUTH_INITIATOR.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/hci_conn.c')
-rw-r--r-- | net/bluetooth/hci_conn.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c index 76c5a38..0d76054 100644 --- a/net/bluetooth/hci_conn.c +++ b/net/bluetooth/hci_conn.c @@ -1027,6 +1027,9 @@ auth: if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags)) return 0; + if (initiator) + set_bit(HCI_CONN_AUTH_INITIATOR, &conn->flags); + if (!hci_conn_auth(conn, sec_level, auth_type)) return 0; |