Use the hci_dev_info structure member 'type' to classify whether a HCI device is BR/EDR, or not. If not, gate BR/EDR-specific HCI commands. --- plugins/hciops.c | 20 +++++++++++++------- src/adapter.c | 2 +- src/hcid.h | 8 ++++++++ src/security.c | 4 ++-- 4 files changed, 24 insertions(+), 10 deletions(-) diff --git a/plugins/hciops.c b/plugins/hciops.c index 3e3e172..9c97c5a 100644 --- a/plugins/hciops.c +++ b/plugins/hciops.c @@ -85,7 +85,7 @@ static void device_devup_setup(int index) if (hci_devinfo(index, &di) < 0) return; - if (hci_test_bit(HCI_RAW, &di.flags)) + if (ignore_device(&di)) return; dd = hci_open_dev(index); @@ -122,6 +122,7 @@ static void device_devup_setup(int index) static void init_device(int index) { struct hci_dev_req dr; + struct hci_dev_info di; pid_t pid; int dd, err; @@ -159,12 +160,17 @@ static void init_device(int index) index, strerror(err), err); } - /* Set link policy */ - dr.dev_opt = main_opts.link_policy; - if (ioctl(dd, HCISETLINKPOL, (unsigned long) &dr) < 0 && + /* Set link policy for BR/EDR HCI devices */ + if (hci_devinfo(index, &di) < 0) + goto fail; + + if (!ignore_device(&di)) { + dr.dev_opt = main_opts.link_policy; + if (ioctl(dd, HCISETLINKPOL, (unsigned long) &dr) < 0 && errno != ENETDOWN) { - error("Can't set link policy on hci%d: %s (%d)", - index, strerror(errno), errno); + error("Can't set link policy on hci%d: %s (%d)", + index, strerror(errno), errno); + } } /* Start HCI device */ @@ -196,7 +202,7 @@ static void device_devreg_setup(int index) devup = hci_test_bit(HCI_UP, &di.flags); - if (!hci_test_bit(HCI_RAW, &di.flags)) + if (!ignore_device(&di)) manager_register_adapter(index, devup); } diff --git a/src/adapter.c b/src/adapter.c index af44a59..fc1e123 100644 --- a/src/adapter.c +++ b/src/adapter.c @@ -2300,7 +2300,7 @@ int adapter_start(struct btd_adapter *adapter) if (hci_devinfo(adapter->dev_id, &di) < 0) return -errno; - if (hci_test_bit(HCI_RAW, &di.flags)) { + if (ignore_device(&di)) { dev->ignore = 1; return -1; } diff --git a/src/hcid.h b/src/hcid.h index 9c5f1d6..50bdb65 100644 --- a/src/hcid.h +++ b/src/hcid.h @@ -23,6 +23,9 @@ * */ +#include <bluetooth/hci.h> +#include <bluetooth/hci_lib.h> + /* When all services should trust a remote device */ #define GLOBAL_TRUST "[all]" @@ -99,3 +102,8 @@ void rfkill_exit(void); void __probe_servers(const char *adapter); void __remove_servers(const char *adapter); + +static inline int ignore_device(struct hci_dev_info *di) +{ + return hci_test_bit(HCI_RAW, &di->flags) || di->type >> 4 != HCI_BREDR; +} diff --git a/src/security.c b/src/security.c index ca394e1..667f1f1 100644 --- a/src/security.c +++ b/src/security.c @@ -999,7 +999,7 @@ static gboolean io_security_event(GIOChannel *chan, GIOCondition cond, ioctl(dev, HCIGETDEVINFO, (void *) di); - if (hci_test_bit(HCI_RAW, &di->flags)) + if (ignore_device(di)) return TRUE; switch (eh->evt) { @@ -1185,7 +1185,7 @@ void start_security_manager(int hdev) io_data[hdev].channel = chan; io_data[hdev].pin_length = -1; - if (hci_test_bit(HCI_RAW, &di->flags)) + if (ignore_device(di)) return; bacpy(&cp.bdaddr, BDADDR_ANY); -- 1.7.0.2 -- David Scherba Sent by an employee of the Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum. -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html