mirror of https://gitee.com/openkylin/linux.git
Bluetooth: Add mgmt_set_secure_conn support for any LE adapter
Since LE Secure Connections is a purely host-side feature we should offer the Secure Connections mgmt setting for any adapter with LE support. This patch updates the supported settings value and the set_secure_conn command handler accordingly. Signed-off-by: Johan Hedberg <johan.hedberg@intel.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
parent
710f11c08e
commit
a3209694f8
|
@ -574,6 +574,7 @@ static u32 get_supported_settings(struct hci_dev *hdev)
|
||||||
if (lmp_le_capable(hdev)) {
|
if (lmp_le_capable(hdev)) {
|
||||||
settings |= MGMT_SETTING_LE;
|
settings |= MGMT_SETTING_LE;
|
||||||
settings |= MGMT_SETTING_ADVERTISING;
|
settings |= MGMT_SETTING_ADVERTISING;
|
||||||
|
settings |= MGMT_SETTING_SECURE_CONN;
|
||||||
settings |= MGMT_SETTING_PRIVACY;
|
settings |= MGMT_SETTING_PRIVACY;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4572,18 +4573,13 @@ static int set_secure_conn(struct sock *sk, struct hci_dev *hdev,
|
||||||
{
|
{
|
||||||
struct mgmt_mode *cp = data;
|
struct mgmt_mode *cp = data;
|
||||||
struct pending_cmd *cmd;
|
struct pending_cmd *cmd;
|
||||||
u8 val, status;
|
u8 val;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
BT_DBG("request for %s", hdev->name);
|
BT_DBG("request for %s", hdev->name);
|
||||||
|
|
||||||
status = mgmt_bredr_support(hdev);
|
if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags) &&
|
||||||
if (status)
|
!lmp_sc_capable(hdev) && !test_bit(HCI_FORCE_SC, &hdev->dbg_flags))
|
||||||
return cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
|
|
||||||
status);
|
|
||||||
|
|
||||||
if (!lmp_sc_capable(hdev) &&
|
|
||||||
!test_bit(HCI_FORCE_SC, &hdev->dbg_flags))
|
|
||||||
return cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
|
return cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
|
||||||
MGMT_STATUS_NOT_SUPPORTED);
|
MGMT_STATUS_NOT_SUPPORTED);
|
||||||
|
|
||||||
|
@ -4593,7 +4589,10 @@ static int set_secure_conn(struct sock *sk, struct hci_dev *hdev,
|
||||||
|
|
||||||
hci_dev_lock(hdev);
|
hci_dev_lock(hdev);
|
||||||
|
|
||||||
if (!hdev_is_powered(hdev)) {
|
if (!hdev_is_powered(hdev) ||
|
||||||
|
(!lmp_sc_capable(hdev) &&
|
||||||
|
!test_bit(HCI_FORCE_SC, &hdev->dbg_flags)) ||
|
||||||
|
!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
|
||||||
bool changed;
|
bool changed;
|
||||||
|
|
||||||
if (cp->val) {
|
if (cp->val) {
|
||||||
|
|
Loading…
Reference in New Issue