Commit 7cc2ade2 authored by Marcel Holtmann's avatar Marcel Holtmann Committed by Johan Hedberg

Bluetooth: Simplify HCI socket bind handling

The HCI socket bind handling checks a few too many times the channel
we are binding. So centralize this and make the function easier to read.
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
Signed-off-by: default avatarJohan Hedberg <johan.hedberg@intel.com>
parent 3a208627
...@@ -367,34 +367,49 @@ static int hci_sock_bind(struct socket *sock, struct sockaddr *addr, int addr_le ...@@ -367,34 +367,49 @@ 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_CONTROL)
return -EINVAL;
if (haddr.hci_channel == HCI_CHANNEL_CONTROL) {
if (!enable_mgmt)
return -EINVAL;
set_bit(HCI_PI_MGMT_INIT, &hci_pi(sk)->flags);
}
lock_sock(sk); lock_sock(sk);
if (sk->sk_state == BT_BOUND || hci_pi(sk)->hdev) { if (sk->sk_state == BT_BOUND) {
err = -EALREADY; err = -EALREADY;
goto done; goto done;
} }
if (haddr.hci_dev != HCI_DEV_NONE) { switch (haddr.hci_channel) {
hdev = hci_dev_get(haddr.hci_dev); case HCI_CHANNEL_RAW:
if (!hdev) { if (hci_pi(sk)->hdev) {
err = -ENODEV; err = -EALREADY;
goto done; goto done;
} }
atomic_inc(&hdev->promisc); if (haddr.hci_dev != HCI_DEV_NONE) {
hdev = hci_dev_get(haddr.hci_dev);
if (!hdev) {
err = -ENODEV;
goto done;
}
atomic_inc(&hdev->promisc);
}
hci_pi(sk)->hdev = hdev;
break;
case HCI_CHANNEL_CONTROL:
if (haddr.hci_dev != HCI_DEV_NONE || !enable_mgmt) {
err = -EINVAL;
goto done;
}
set_bit(HCI_PI_MGMT_INIT, &hci_pi(sk)->flags);
break;
default:
err = -EINVAL;
goto done;
} }
hci_pi(sk)->channel = haddr.hci_channel; hci_pi(sk)->channel = haddr.hci_channel;
hci_pi(sk)->hdev = hdev;
sk->sk_state = BT_BOUND; sk->sk_state = BT_BOUND;
done: done:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment