mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-04 05:09:51 +07:00
Bluetooth: Improve handling of HCI control channel in bind
Does not allow any channel different of HCI_CHANNEL_RAW and HCI_CHANNEL_CONTROL to bind. Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
This commit is contained in:
parent
23bb57633d
commit
17f9cc3124
@ -380,7 +380,10 @@ static int hci_sock_bind(struct socket *sock, struct sockaddr *addr, int addr_le
|
|||||||
if (haddr.hci_family != AF_BLUETOOTH)
|
if (haddr.hci_family != AF_BLUETOOTH)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
if (haddr.hci_channel != HCI_CHANNEL_RAW && !enable_mgmt)
|
if (haddr.hci_channel > HCI_CHANNEL_CONTROL)
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
|
if (haddr.hci_channel == HCI_CHANNEL_CONTROL && !enable_mgmt)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
lock_sock(sk);
|
lock_sock(sk);
|
||||||
|
Loading…
Reference in New Issue
Block a user