From: Marcel Holtmann <marcel@holtmann.org>
To: johan.hedberg@gmail.com
Cc: linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH 3/9] Bluetooth: mgmt: Allow connectable/discoverable changes in off state
Date: Tue, 21 Feb 2012 17:14:24 +0100 [thread overview]
Message-ID: <1329840864.2049.21.camel@aeonflux> (raw)
In-Reply-To: <1329840005-4977-3-git-send-email-johan.hedberg@gmail.com>
Hi Johan,
> This patch makes it possible to toggle the connectable & discoverable
> settings when powered off. Two new hdev->dev_flags flags are added to
> track what the scan mode should be when the device is finally powered
> on.
>
> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
> ---
> include/net/bluetooth/hci.h | 2 +
> net/bluetooth/hci_core.c | 1 +
> net/bluetooth/mgmt.c | 86 ++++++++++++++++++++++++++++++++++---------
> 3 files changed, 71 insertions(+), 18 deletions(-)
>
> diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h
> index ec37049..169d2f8 100644
> --- a/include/net/bluetooth/hci.h
> +++ b/include/net/bluetooth/hci.h
> @@ -96,6 +96,8 @@ enum {
> HCI_LE_SCAN,
> HCI_SSP_ENABLED,
> HCI_HS_ENABLED,
> + HCI_CONNECTABLE,
> + HCI_DISCOVERABLE,
> };
>
> /* HCI ioctl defines */
> diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c
> index a787c9c..9d19949 100644
> --- a/net/bluetooth/hci_core.c
> +++ b/net/bluetooth/hci_core.c
> @@ -737,6 +737,7 @@ static int hci_dev_do_close(struct hci_dev *hdev)
> if (hdev->discov_timeout > 0) {
> cancel_delayed_work(&hdev->discov_off);
> hdev->discov_timeout = 0;
> + clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
> }
>
> if (test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
> diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c
> index 03a1384..54df0c0 100644
> --- a/net/bluetooth/mgmt.c
> +++ b/net/bluetooth/mgmt.c
> @@ -398,10 +398,10 @@ static u32 get_current_settings(struct hci_dev *hdev)
> if (!test_bit(HCI_AUTO_OFF, &hdev->dev_flags))
> settings |= MGMT_SETTING_POWERED;
>
> - if (test_bit(HCI_PSCAN, &hdev->flags))
> + if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
> settings |= MGMT_SETTING_CONNECTABLE;
>
> - if (test_bit(HCI_ISCAN, &hdev->flags))
> + if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
> settings |= MGMT_SETTING_DISCOVERABLE;
>
> if (test_bit(HCI_PAIRABLE, &hdev->dev_flags))
> @@ -796,6 +796,7 @@ static int set_discoverable(struct sock *sk, u16 index, void *data, u16 len)
> struct mgmt_cp_set_discoverable *cp = data;
> struct hci_dev *hdev;
> struct pending_cmd *cmd;
> + u16 timeout;
> u8 scan;
> int err;
>
> @@ -810,9 +811,11 @@ static int set_discoverable(struct sock *sk, u16 index, void *data, u16 len)
> return cmd_status(sk, index, MGMT_OP_SET_DISCOVERABLE,
> MGMT_STATUS_INVALID_PARAMS);
>
> + timeout = get_unaligned_le16(&cp->timeout);
> +
> hci_dev_lock(hdev);
>
> - if (!hdev_is_powered(hdev)) {
> + if (!hdev_is_powered(hdev) && timeout > 0) {
> err = cmd_status(sk, index, MGMT_OP_SET_DISCOVERABLE,
> MGMT_STATUS_NOT_POWERED);
> goto failed;
> @@ -825,8 +828,17 @@ static int set_discoverable(struct sock *sk, u16 index, void *data, u16 len)
> goto failed;
> }
>
> - if (cp->val == test_bit(HCI_ISCAN, &hdev->flags) &&
> - test_bit(HCI_PSCAN, &hdev->flags)) {
> + if (!hdev_is_powered(hdev)) {
> + if (cp->val) {
> + set_bit(HCI_CONNECTABLE, &hdev->dev_flags);
> + set_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
I think this is wrong. Even when powered off, we should only allow
setting DISCOVERABLE when CONNECTABLE has been set previously.
No need to automatically enable CONNECTABLE. Just fail here.
> + } else
> + clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
> + err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
> + goto failed;
> + }
> +
> + if (!!cp->val == test_bit(HCI_DISCOVERABLE, &hdev->dev_flags)) {
> err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
> goto failed;
> }
> @@ -849,7 +861,7 @@ static int set_discoverable(struct sock *sk, u16 index, void *data, u16 len)
> mgmt_pending_remove(cmd);
>
> if (cp->val)
> - hdev->discov_timeout = get_unaligned_le16(&cp->timeout);
> + hdev->discov_timeout = timeout;
>
> failed:
> hci_dev_unlock(hdev);
> @@ -880,8 +892,13 @@ static int set_connectable(struct sock *sk, u16 index, void *data, u16 len)
> hci_dev_lock(hdev);
>
> if (!hdev_is_powered(hdev)) {
> - err = cmd_status(sk, index, MGMT_OP_SET_CONNECTABLE,
> - MGMT_STATUS_NOT_POWERED);
> + if (cp->val)
> + set_bit(HCI_CONNECTABLE, &hdev->dev_flags);
> + else {
> + clear_bit(HCI_CONNECTABLE, &hdev->dev_flags);
> + clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
> + }
> + err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
> goto failed;
This looks fine here.
However we need to handle an eventual discovery timeout.
> }
>
> @@ -892,7 +909,7 @@ static int set_connectable(struct sock *sk, u16 index, void *data, u16 len)
> goto failed;
> }
>
> - if (cp->val == test_bit(HCI_PSCAN, &hdev->flags)) {
> + if (!!cp->val == test_bit(HCI_PSCAN, &hdev->flags)) {
> err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
> goto failed;
> }
> @@ -2866,9 +2883,22 @@ int mgmt_powered(struct hci_dev *hdev, u8 powered)
> __le32 ev;
> int err;
>
> + if (!test_bit(HCI_MGMT, &hdev->dev_flags))
> + return 0;
> +
> mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
>
> - if (!powered) {
> + if (powered) {
> + u8 scan = 0;
> +
> + if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
> + scan |= SCAN_PAGE;
> + if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
> + scan |= SCAN_INQUIRY;
> +
> + if (scan)
> + hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
> + } else {
> u8 status = ENETDOWN;
> mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status);
> }
> @@ -2887,15 +2917,25 @@ int mgmt_powered(struct hci_dev *hdev, u8 powered)
> int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable)
> {
> struct cmd_lookup match = { NULL, hdev };
> - __le32 ev;
> - int err;
> + bool changed = false;
> + int err = 0;
>
> mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, hdev, settings_rsp, &match);
>
> - ev = cpu_to_le32(get_current_settings(hdev));
> + if (discoverable) {
> + if (!test_and_set_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
> + changed = true;
> + } else {
> + if (test_and_clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
> + changed = true;
> + }
>
> - err = mgmt_event(MGMT_EV_NEW_SETTINGS, hdev, &ev, sizeof(ev),
> + if (changed) {
> + __le32 ev = cpu_to_le32(get_current_settings(hdev));
> + err = mgmt_event(MGMT_EV_NEW_SETTINGS, hdev, &ev, sizeof(ev),
> match.sk);
> + }
> +
> if (match.sk)
> sock_put(match.sk);
>
> @@ -2904,16 +2944,26 @@ int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable)
>
> int mgmt_connectable(struct hci_dev *hdev, u8 connectable)
> {
> - __le32 ev;
> struct cmd_lookup match = { NULL, hdev };
> - int err;
> + bool changed = false;
> + int err = 0;
>
> mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, hdev, settings_rsp,
> &match);
>
> - ev = cpu_to_le32(get_current_settings(hdev));
> + if (connectable) {
> + if (!test_and_set_bit(HCI_CONNECTABLE, &hdev->dev_flags))
> + changed = true;
> + } else {
> + if (test_and_clear_bit(HCI_CONNECTABLE, &hdev->dev_flags))
> + changed = true;
> + }
>
> - err = mgmt_event(MGMT_EV_NEW_SETTINGS, hdev, &ev, sizeof(ev), match.sk);
> + if (changed) {
> + __le32 ev = cpu_to_le32(get_current_settings(hdev));
> + err = mgmt_event(MGMT_EV_NEW_SETTINGS, hdev, &ev, sizeof(ev),
> + match.sk);
> + }
>
> if (match.sk)
> sock_put(match.sk);
Regards
Marcel
next prev parent reply other threads:[~2012-02-21 16:14 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-21 15:59 [PATCH 1/9] Bluetooth: mgmt: Fix powered checks for commands johan.hedberg
2012-02-21 15:59 ` [PATCH 2/9] Bluetooth: mgmt: Fix set_local_name and set_dev_class powered checks johan.hedberg
2012-02-21 16:09 ` Marcel Holtmann
2012-02-21 15:59 ` [PATCH 3/9] Bluetooth: mgmt: Allow connectable/discoverable changes in off state johan.hedberg
2012-02-21 16:14 ` Marcel Holtmann [this message]
2012-02-21 16:00 ` [PATCH 4/9] Bluetooth: mgmt: Fix current settings values when powered off johan.hedberg
2012-02-21 16:15 ` Marcel Holtmann
2012-02-21 16:00 ` [PATCH 5/9] Bluetooth: mgmt: Add convenience function for sending New Settings johan.hedberg
2012-02-21 16:15 ` Marcel Holtmann
2012-02-21 16:00 ` [PATCH 6/9] Bluetooth: mgmt: Fix New Settings event for connectable/discoverable johan.hedberg
2012-02-21 16:21 ` Marcel Holtmann
2012-02-21 17:46 ` Johan Hedberg
2012-02-21 16:00 ` [PATCH 7/9] Bluetooth: mgmt: Fix set_fast_connectable error return johan.hedberg
2012-02-21 16:16 ` Marcel Holtmann
2012-02-21 16:00 ` [PATCH 8/9] Bluetooth: mgmt: Fix pairable setting upon initialization johan.hedberg
2012-02-21 16:17 ` Marcel Holtmann
2012-02-21 16:00 ` [PATCH 9/9] Bluetooth: Fix clearing of persistent dev_flags johan.hedberg
2012-02-21 16:18 ` Marcel Holtmann
2012-02-21 16:09 ` [PATCH 1/9] Bluetooth: mgmt: Fix powered checks for commands Marcel Holtmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1329840864.2049.21.camel@aeonflux \
--to=marcel@holtmann.org \
--cc=johan.hedberg@gmail.com \
--cc=linux-bluetooth@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).