mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-18 10:13:57 +08:00
Bluetooth: Include security level 4 in connections check
This check is only used for RFCOMM connections and most likely no RFCOMM based profile will require security level 4 secure connection security policy. In case it ever does make sure that seucrity level 4 is treated as sufficient security level. Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
This commit is contained in:
parent
0ab04a9c0e
commit
9cb2e030e6
@ -860,13 +860,17 @@ int hci_conn_check_secure(struct hci_conn *conn, __u8 sec_level)
|
||||
{
|
||||
BT_DBG("hcon %p", conn);
|
||||
|
||||
if (sec_level != BT_SECURITY_HIGH)
|
||||
return 1; /* Accept if non-secure is required */
|
||||
|
||||
if (conn->sec_level == BT_SECURITY_HIGH)
|
||||
/* Accept if non-secure or higher security level is required */
|
||||
if (sec_level != BT_SECURITY_HIGH && sec_level != BT_SECURITY_FIPS)
|
||||
return 1;
|
||||
|
||||
return 0; /* Reject not secure link */
|
||||
/* Accept if secure or higher security level is already present */
|
||||
if (conn->sec_level == BT_SECURITY_HIGH ||
|
||||
conn->sec_level == BT_SECURITY_FIPS)
|
||||
return 1;
|
||||
|
||||
/* Reject not secure link */
|
||||
return 0;
|
||||
}
|
||||
EXPORT_SYMBOL(hci_conn_check_secure);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user