2014-12-19 11:40:20 +00:00
|
|
|
/*
|
|
|
|
BlueZ - Bluetooth protocol stack for Linux
|
|
|
|
|
|
|
|
Copyright (C) 2014 Intel Corporation
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License version 2 as
|
|
|
|
published by the Free Software Foundation;
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
|
|
|
|
IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
|
|
|
|
CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
|
|
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
|
|
ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
|
|
|
|
COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
|
|
|
|
SOFTWARE IS DISCLAIMED.
|
|
|
|
*/
|
|
|
|
|
2017-02-02 18:15:33 +00:00
|
|
|
#include <linux/sched/signal.h>
|
|
|
|
|
2014-12-19 11:40:20 +00:00
|
|
|
#include <net/bluetooth/bluetooth.h>
|
|
|
|
#include <net/bluetooth/hci_core.h>
|
2015-11-18 10:49:20 +00:00
|
|
|
#include <net/bluetooth/mgmt.h>
|
2014-12-19 11:40:20 +00:00
|
|
|
|
|
|
|
#include "smp.h"
|
|
|
|
#include "hci_request.h"
|
2021-01-22 08:36:17 +00:00
|
|
|
#include "msft.h"
|
2021-09-20 22:59:37 +00:00
|
|
|
#include "eir.h"
|
2014-12-19 11:40:20 +00:00
|
|
|
|
|
|
|
void hci_req_init(struct hci_request *req, struct hci_dev *hdev)
|
|
|
|
{
|
|
|
|
skb_queue_head_init(&req->cmd_q);
|
|
|
|
req->hdev = hdev;
|
|
|
|
req->err = 0;
|
|
|
|
}
|
|
|
|
|
2017-10-25 05:28:48 +00:00
|
|
|
void hci_req_purge(struct hci_request *req)
|
|
|
|
{
|
|
|
|
skb_queue_purge(&req->cmd_q);
|
|
|
|
}
|
|
|
|
|
2019-05-02 02:01:52 +00:00
|
|
|
bool hci_req_status_pend(struct hci_dev *hdev)
|
|
|
|
{
|
|
|
|
return hdev->req_status == HCI_REQ_PEND;
|
|
|
|
}
|
|
|
|
|
2015-04-02 10:41:08 +00:00
|
|
|
static int req_run(struct hci_request *req, hci_req_complete_t complete,
|
|
|
|
hci_req_complete_skb_t complete_skb)
|
2014-12-19 11:40:20 +00:00
|
|
|
{
|
|
|
|
struct hci_dev *hdev = req->hdev;
|
|
|
|
struct sk_buff *skb;
|
|
|
|
unsigned long flags;
|
|
|
|
|
2020-11-11 07:02:19 +00:00
|
|
|
bt_dev_dbg(hdev, "length %u", skb_queue_len(&req->cmd_q));
|
2014-12-19 11:40:20 +00:00
|
|
|
|
|
|
|
/* If an error occurred during request building, remove all HCI
|
|
|
|
* commands queued on the HCI request queue.
|
|
|
|
*/
|
|
|
|
if (req->err) {
|
|
|
|
skb_queue_purge(&req->cmd_q);
|
|
|
|
return req->err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Do not allow empty requests */
|
|
|
|
if (skb_queue_empty(&req->cmd_q))
|
|
|
|
return -ENODATA;
|
|
|
|
|
|
|
|
skb = skb_peek_tail(&req->cmd_q);
|
2015-11-05 07:31:40 +00:00
|
|
|
if (complete) {
|
|
|
|
bt_cb(skb)->hci.req_complete = complete;
|
|
|
|
} else if (complete_skb) {
|
|
|
|
bt_cb(skb)->hci.req_complete_skb = complete_skb;
|
|
|
|
bt_cb(skb)->hci.req_flags |= HCI_REQ_SKB;
|
|
|
|
}
|
2014-12-19 11:40:20 +00:00
|
|
|
|
|
|
|
spin_lock_irqsave(&hdev->cmd_q.lock, flags);
|
|
|
|
skb_queue_splice_tail(&req->cmd_q, &hdev->cmd_q);
|
|
|
|
spin_unlock_irqrestore(&hdev->cmd_q.lock, flags);
|
|
|
|
|
|
|
|
queue_work(hdev->workqueue, &hdev->cmd_work);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-04-02 10:41:08 +00:00
|
|
|
int hci_req_run(struct hci_request *req, hci_req_complete_t complete)
|
|
|
|
{
|
|
|
|
return req_run(req, complete, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
int hci_req_run_skb(struct hci_request *req, hci_req_complete_skb_t complete)
|
|
|
|
{
|
|
|
|
return req_run(req, NULL, complete);
|
|
|
|
}
|
|
|
|
|
Bluetooth: hci_sync: Make use of hci_cmd_sync_queue set 1
This make use of hci_cmd_sync_queue for the following MGMT commands:
Set Device Class
Set Device ID
Add UUID
Remove UUID
tools/mgmt-tester -s "Set Device Class"
Test Summary
------------
Set Device Class - Success 1 Passed
Set Device Class - Success 2 Passed
Set Device Class - Invalid parameters 1 Passed
Total: 3, Passed: 3 (100.0%), Failed: 0, Not Run: 0
Overall execution time: 0.0599 seconds
tools/mgmt-tester -s "Set Device ID"
Test Summary
------------
Set Device ID - Success 1 Passed
Set Device ID - Success 2 Passed
Set Device ID - Disable Passed
Set Device ID - Power off and Power on Passed
Set Device ID - SSP off and Power on Passed
Set Device ID - Invalid Parameter Passed
Total: 6, Passed: 6 (100.0%), Failed: 0, Not Run: 0
Overall execution time: 0.107 seconds
tools/mgmt-tester -s "Add UUID"
Test Summary
------------
Add UUID - UUID-16 1 Passed
Add UUID - UUID-16 multiple 1 Passed
Add UUID - UUID-16 partial 1 Passed
Add UUID - UUID-32 1 Passed
Add UUID - UUID-32 multiple 1 Passed
Add UUID - UUID-32 partial 1 Passed
Add UUID - UUID-128 1 Passed
Add UUID - UUID-128 multiple 1 Passed
Add UUID - UUID-128 partial 1 Passed
Add UUID - UUID mix Passed
Total: 10, Passed: 10 (100.0%), Failed: 0, Not Run: 0
Overall execution time: 0.198 seconds
tools/mgmt-tester -s "Remove UUID"
Test Summary
------------
Remove UUID - Success 1 Passed
Remove UUID - All UUID - Success 2 Passed
Remove UUID - Power Off - Success 3 Passed
Remove UUID - Power Off and On - Success 4 Passed
Remove UUID - Not Exist - Invalid Params 1 Passed
Total: 5, Passed: 5 (100.0%), Failed: 0, Not Run: 0
Overall execution time: 0.0908 seconds
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
2021-10-27 23:58:39 +00:00
|
|
|
void hci_req_sync_complete(struct hci_dev *hdev, u8 result, u16 opcode,
|
|
|
|
struct sk_buff *skb)
|
2015-11-10 07:44:54 +00:00
|
|
|
{
|
2020-11-11 07:02:19 +00:00
|
|
|
bt_dev_dbg(hdev, "result 0x%2.2x", result);
|
2015-11-10 07:44:54 +00:00
|
|
|
|
|
|
|
if (hdev->req_status == HCI_REQ_PEND) {
|
|
|
|
hdev->req_result = result;
|
|
|
|
hdev->req_status = HCI_REQ_DONE;
|
|
|
|
if (skb)
|
|
|
|
hdev->req_skb = skb_get(skb);
|
|
|
|
wake_up_interruptible(&hdev->req_wait_q);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Execute request and wait for completion. */
|
2015-11-11 06:11:25 +00:00
|
|
|
int __hci_req_sync(struct hci_dev *hdev, int (*func)(struct hci_request *req,
|
|
|
|
unsigned long opt),
|
2015-11-11 06:11:19 +00:00
|
|
|
unsigned long opt, u32 timeout, u8 *hci_status)
|
2015-11-10 07:44:54 +00:00
|
|
|
{
|
|
|
|
struct hci_request req;
|
|
|
|
int err = 0;
|
|
|
|
|
2020-11-11 07:02:19 +00:00
|
|
|
bt_dev_dbg(hdev, "start");
|
2015-11-10 07:44:54 +00:00
|
|
|
|
|
|
|
hci_req_init(&req, hdev);
|
|
|
|
|
|
|
|
hdev->req_status = HCI_REQ_PEND;
|
|
|
|
|
2015-11-11 06:11:25 +00:00
|
|
|
err = func(&req, opt);
|
|
|
|
if (err) {
|
|
|
|
if (hci_status)
|
|
|
|
*hci_status = HCI_ERROR_UNSPECIFIED;
|
|
|
|
return err;
|
|
|
|
}
|
2015-11-10 07:44:54 +00:00
|
|
|
|
|
|
|
err = hci_req_run_skb(&req, hci_req_sync_complete);
|
|
|
|
if (err < 0) {
|
|
|
|
hdev->req_status = 0;
|
|
|
|
|
|
|
|
/* ENODATA means the HCI request command queue is empty.
|
|
|
|
* This can happen when a request with conditionals doesn't
|
|
|
|
* trigger any commands to be sent. This is normal behavior
|
|
|
|
* and should not trigger an error return.
|
|
|
|
*/
|
2015-11-23 12:40:47 +00:00
|
|
|
if (err == -ENODATA) {
|
|
|
|
if (hci_status)
|
|
|
|
*hci_status = 0;
|
2015-11-10 07:44:54 +00:00
|
|
|
return 0;
|
2015-11-23 12:40:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (hci_status)
|
|
|
|
*hci_status = HCI_ERROR_UNSPECIFIED;
|
2015-11-10 07:44:54 +00:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2018-04-19 15:29:37 +00:00
|
|
|
err = wait_event_interruptible_timeout(hdev->req_wait_q,
|
|
|
|
hdev->req_status != HCI_REQ_PEND, timeout);
|
2015-11-10 07:44:54 +00:00
|
|
|
|
2018-04-19 15:29:37 +00:00
|
|
|
if (err == -ERESTARTSYS)
|
2015-11-10 07:44:54 +00:00
|
|
|
return -EINTR;
|
|
|
|
|
|
|
|
switch (hdev->req_status) {
|
|
|
|
case HCI_REQ_DONE:
|
|
|
|
err = -bt_to_errno(hdev->req_result);
|
2015-11-11 06:11:19 +00:00
|
|
|
if (hci_status)
|
|
|
|
*hci_status = hdev->req_result;
|
2015-11-10 07:44:54 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case HCI_REQ_CANCELED:
|
|
|
|
err = -hdev->req_result;
|
2015-11-11 06:11:19 +00:00
|
|
|
if (hci_status)
|
|
|
|
*hci_status = HCI_ERROR_UNSPECIFIED;
|
2015-11-10 07:44:54 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
err = -ETIMEDOUT;
|
2015-11-11 06:11:19 +00:00
|
|
|
if (hci_status)
|
|
|
|
*hci_status = HCI_ERROR_UNSPECIFIED;
|
2015-11-10 07:44:54 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-08-23 05:59:19 +00:00
|
|
|
kfree_skb(hdev->req_skb);
|
|
|
|
hdev->req_skb = NULL;
|
2015-11-10 07:44:54 +00:00
|
|
|
hdev->req_status = hdev->req_result = 0;
|
|
|
|
|
2020-11-11 07:02:19 +00:00
|
|
|
bt_dev_dbg(hdev, "end: err %d", err);
|
2015-11-10 07:44:54 +00:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2015-11-11 06:11:25 +00:00
|
|
|
int hci_req_sync(struct hci_dev *hdev, int (*req)(struct hci_request *req,
|
|
|
|
unsigned long opt),
|
2015-11-11 06:11:19 +00:00
|
|
|
unsigned long opt, u32 timeout, u8 *hci_status)
|
2015-11-10 07:44:54 +00:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Serialize all requests */
|
2015-11-10 07:44:55 +00:00
|
|
|
hci_req_sync_lock(hdev);
|
2021-04-12 11:17:57 +00:00
|
|
|
/* check the state after obtaing the lock to protect the HCI_UP
|
|
|
|
* against any races from hci_dev_do_close when the controller
|
|
|
|
* gets removed.
|
|
|
|
*/
|
|
|
|
if (test_bit(HCI_UP, &hdev->flags))
|
|
|
|
ret = __hci_req_sync(hdev, req, opt, timeout, hci_status);
|
|
|
|
else
|
|
|
|
ret = -ENETDOWN;
|
2015-11-10 07:44:55 +00:00
|
|
|
hci_req_sync_unlock(hdev);
|
2015-11-10 07:44:54 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-12-19 11:40:20 +00:00
|
|
|
struct sk_buff *hci_prepare_cmd(struct hci_dev *hdev, u16 opcode, u32 plen,
|
|
|
|
const void *param)
|
|
|
|
{
|
|
|
|
int len = HCI_COMMAND_HDR_SIZE + plen;
|
|
|
|
struct hci_command_hdr *hdr;
|
|
|
|
struct sk_buff *skb;
|
|
|
|
|
|
|
|
skb = bt_skb_alloc(len, GFP_ATOMIC);
|
|
|
|
if (!skb)
|
|
|
|
return NULL;
|
|
|
|
|
networking: make skb_put & friends return void pointers
It seems like a historic accident that these return unsigned char *,
and in many places that means casts are required, more often than not.
Make these functions (skb_put, __skb_put and pskb_put) return void *
and remove all the casts across the tree, adding a (u8 *) cast only
where the unsigned char pointer was used directly, all done with the
following spatch:
@@
expression SKB, LEN;
typedef u8;
identifier fn = { skb_put, __skb_put };
@@
- *(fn(SKB, LEN))
+ *(u8 *)fn(SKB, LEN)
@@
expression E, SKB, LEN;
identifier fn = { skb_put, __skb_put };
type T;
@@
- E = ((T *)(fn(SKB, LEN)))
+ E = fn(SKB, LEN)
which actually doesn't cover pskb_put since there are only three
users overall.
A handful of stragglers were converted manually, notably a macro in
drivers/isdn/i4l/isdn_bsdcomp.c and, oddly enough, one of the many
instances in net/bluetooth/hci_sock.c. In the former file, I also
had to fix one whitespace problem spatch introduced.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-06-16 12:29:21 +00:00
|
|
|
hdr = skb_put(skb, HCI_COMMAND_HDR_SIZE);
|
2014-12-19 11:40:20 +00:00
|
|
|
hdr->opcode = cpu_to_le16(opcode);
|
|
|
|
hdr->plen = plen;
|
|
|
|
|
|
|
|
if (plen)
|
networking: introduce and use skb_put_data()
A common pattern with skb_put() is to just want to memcpy()
some data into the new space, introduce skb_put_data() for
this.
An spatch similar to the one for skb_put_zero() converts many
of the places using it:
@@
identifier p, p2;
expression len, skb, data;
type t, t2;
@@
(
-p = skb_put(skb, len);
+p = skb_put_data(skb, data, len);
|
-p = (t)skb_put(skb, len);
+p = skb_put_data(skb, data, len);
)
(
p2 = (t2)p;
-memcpy(p2, data, len);
|
-memcpy(p, data, len);
)
@@
type t, t2;
identifier p, p2;
expression skb, data;
@@
t *p;
...
(
-p = skb_put(skb, sizeof(t));
+p = skb_put_data(skb, data, sizeof(t));
|
-p = (t *)skb_put(skb, sizeof(t));
+p = skb_put_data(skb, data, sizeof(t));
)
(
p2 = (t2)p;
-memcpy(p2, data, sizeof(*p));
|
-memcpy(p, data, sizeof(*p));
)
@@
expression skb, len, data;
@@
-memcpy(skb_put(skb, len), data, len);
+skb_put_data(skb, data, len);
(again, manually post-processed to retain some comments)
Reviewed-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-06-16 12:29:20 +00:00
|
|
|
skb_put_data(skb, param, plen);
|
2014-12-19 11:40:20 +00:00
|
|
|
|
2020-11-11 07:02:19 +00:00
|
|
|
bt_dev_dbg(hdev, "skb len %d", skb->len);
|
2014-12-19 11:40:20 +00:00
|
|
|
|
2015-11-05 06:10:00 +00:00
|
|
|
hci_skb_pkt_type(skb) = HCI_COMMAND_PKT;
|
|
|
|
hci_skb_opcode(skb) = opcode;
|
2014-12-19 11:40:20 +00:00
|
|
|
|
|
|
|
return skb;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Queue a command to an asynchronous HCI request */
|
|
|
|
void hci_req_add_ev(struct hci_request *req, u16 opcode, u32 plen,
|
|
|
|
const void *param, u8 event)
|
|
|
|
{
|
|
|
|
struct hci_dev *hdev = req->hdev;
|
|
|
|
struct sk_buff *skb;
|
|
|
|
|
2020-11-11 07:02:19 +00:00
|
|
|
bt_dev_dbg(hdev, "opcode 0x%4.4x plen %d", opcode, plen);
|
2014-12-19 11:40:20 +00:00
|
|
|
|
|
|
|
/* If an error occurred during request building, there is no point in
|
|
|
|
* queueing the HCI command. We can simply return.
|
|
|
|
*/
|
|
|
|
if (req->err)
|
|
|
|
return;
|
|
|
|
|
|
|
|
skb = hci_prepare_cmd(hdev, opcode, plen, param);
|
|
|
|
if (!skb) {
|
2017-10-30 09:42:59 +00:00
|
|
|
bt_dev_err(hdev, "no memory for command (opcode 0x%4.4x)",
|
|
|
|
opcode);
|
2014-12-19 11:40:20 +00:00
|
|
|
req->err = -ENOMEM;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (skb_queue_empty(&req->cmd_q))
|
2015-11-05 07:31:40 +00:00
|
|
|
bt_cb(skb)->hci.req_flags |= HCI_REQ_START;
|
2014-12-19 11:40:20 +00:00
|
|
|
|
2022-05-21 20:10:50 +00:00
|
|
|
hci_skb_event(skb) = event;
|
2014-12-19 11:40:20 +00:00
|
|
|
|
|
|
|
skb_queue_tail(&req->cmd_q, skb);
|
|
|
|
}
|
|
|
|
|
|
|
|
void hci_req_add(struct hci_request *req, u16 opcode, u32 plen,
|
|
|
|
const void *param)
|
|
|
|
{
|
2022-11-16 20:28:56 +00:00
|
|
|
bt_dev_dbg(req->hdev, "HCI_REQ-0x%4.4x", opcode);
|
2014-12-19 11:40:20 +00:00
|
|
|
hci_req_add_ev(req, opcode, plen, param, 0);
|
|
|
|
}
|
|
|
|
|
2020-11-26 04:22:21 +00:00
|
|
|
static void start_interleave_scan(struct hci_dev *hdev)
|
|
|
|
{
|
|
|
|
hdev->interleave_scan_state = INTERLEAVE_SCAN_NO_FILTER;
|
|
|
|
queue_delayed_work(hdev->req_workqueue,
|
|
|
|
&hdev->interleave_scan, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool is_interleave_scanning(struct hci_dev *hdev)
|
|
|
|
{
|
|
|
|
return hdev->interleave_scan_state != INTERLEAVE_SCAN_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cancel_interleave_scan(struct hci_dev *hdev)
|
|
|
|
{
|
|
|
|
bt_dev_dbg(hdev, "cancelling interleave scan");
|
|
|
|
|
|
|
|
cancel_delayed_work_sync(&hdev->interleave_scan);
|
|
|
|
|
|
|
|
hdev->interleave_scan_state = INTERLEAVE_SCAN_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return true if interleave_scan wasn't started until exiting this function,
|
|
|
|
* otherwise, return false
|
|
|
|
*/
|
|
|
|
static bool __hci_update_interleaved_scan(struct hci_dev *hdev)
|
|
|
|
{
|
2021-01-22 08:36:16 +00:00
|
|
|
/* Do interleaved scan only if all of the following are true:
|
|
|
|
* - There is at least one ADV monitor
|
|
|
|
* - At least one pending LE connection or one device to be scanned for
|
|
|
|
* - Monitor offloading is not supported
|
|
|
|
* If so, we should alternate between allowlist scan and one without
|
|
|
|
* any filters to save power.
|
2020-11-26 04:22:21 +00:00
|
|
|
*/
|
|
|
|
bool use_interleaving = hci_is_adv_monitoring(hdev) &&
|
|
|
|
!(list_empty(&hdev->pend_le_conns) &&
|
2021-01-22 08:36:16 +00:00
|
|
|
list_empty(&hdev->pend_le_reports)) &&
|
|
|
|
hci_get_adv_monitor_offload_ext(hdev) ==
|
|
|
|
HCI_ADV_MONITOR_EXT_NONE;
|
2020-11-26 04:22:21 +00:00
|
|
|
bool is_interleaving = is_interleave_scanning(hdev);
|
|
|
|
|
|
|
|
if (use_interleaving && !is_interleaving) {
|
|
|
|
start_interleave_scan(hdev);
|
|
|
|
bt_dev_dbg(hdev, "starting interleave scan");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!use_interleaving && is_interleaving)
|
|
|
|
cancel_interleave_scan(hdev);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-07-23 12:39:01 +00:00
|
|
|
void hci_req_add_le_scan_disable(struct hci_request *req, bool rpa_le_conn)
|
2014-12-19 11:40:20 +00:00
|
|
|
{
|
2018-07-06 11:35:28 +00:00
|
|
|
struct hci_dev *hdev = req->hdev;
|
2014-12-19 11:40:20 +00:00
|
|
|
|
2020-03-11 15:54:02 +00:00
|
|
|
if (hdev->scanning_paused) {
|
|
|
|
bt_dev_dbg(hdev, "Scanning is paused for suspend");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-06 11:35:28 +00:00
|
|
|
if (use_ext_scan(hdev)) {
|
|
|
|
struct hci_cp_le_set_ext_scan_enable cp;
|
|
|
|
|
|
|
|
memset(&cp, 0, sizeof(cp));
|
|
|
|
cp.enable = LE_SCAN_DISABLE;
|
|
|
|
hci_req_add(req, HCI_OP_LE_SET_EXT_SCAN_ENABLE, sizeof(cp),
|
|
|
|
&cp);
|
|
|
|
} else {
|
|
|
|
struct hci_cp_le_set_scan_enable cp;
|
|
|
|
|
|
|
|
memset(&cp, 0, sizeof(cp));
|
|
|
|
cp.enable = LE_SCAN_DISABLE;
|
|
|
|
hci_req_add(req, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(cp), &cp);
|
|
|
|
}
|
2020-07-23 12:38:57 +00:00
|
|
|
|
2020-07-23 12:39:01 +00:00
|
|
|
/* Disable address resolution */
|
2021-10-27 23:58:42 +00:00
|
|
|
if (hci_dev_test_flag(hdev, HCI_LL_RPA_RESOLUTION) && !rpa_le_conn) {
|
2020-07-23 12:38:57 +00:00
|
|
|
__u8 enable = 0x00;
|
2020-07-23 12:39:03 +00:00
|
|
|
|
2020-07-23 12:38:57 +00:00
|
|
|
hci_req_add(req, HCI_OP_LE_SET_ADDR_RESOLV_ENABLE, 1, &enable);
|
|
|
|
}
|
2014-12-19 11:40:20 +00:00
|
|
|
}
|
|
|
|
|
2021-06-04 08:26:27 +00:00
|
|
|
static void del_from_accept_list(struct hci_request *req, bdaddr_t *bdaddr,
|
|
|
|
u8 bdaddr_type)
|
2020-03-11 15:54:02 +00:00
|
|
|
{
|
2021-06-04 08:26:27 +00:00
|
|
|
struct hci_cp_le_del_from_accept_list cp;
|
2020-03-11 15:54:02 +00:00
|
|
|
|
|
|
|
cp.bdaddr_type = bdaddr_type;
|
|
|
|
bacpy(&cp.bdaddr, bdaddr);
|
|
|
|
|
2021-06-04 08:26:27 +00:00
|
|
|
bt_dev_dbg(req->hdev, "Remove %pMR (0x%x) from accept list", &cp.bdaddr,
|
2020-03-11 15:54:02 +00:00
|
|
|
cp.bdaddr_type);
|
2021-06-04 08:26:27 +00:00
|
|
|
hci_req_add(req, HCI_OP_LE_DEL_FROM_ACCEPT_LIST, sizeof(cp), &cp);
|
2020-07-23 12:38:58 +00:00
|
|
|
|
2021-10-27 23:58:42 +00:00
|
|
|
if (use_ll_privacy(req->hdev)) {
|
2020-07-23 12:38:58 +00:00
|
|
|
struct smp_irk *irk;
|
|
|
|
|
|
|
|
irk = hci_find_irk_by_addr(req->hdev, bdaddr, bdaddr_type);
|
|
|
|
if (irk) {
|
|
|
|
struct hci_cp_le_del_from_resolv_list cp;
|
|
|
|
|
|
|
|
cp.bdaddr_type = bdaddr_type;
|
|
|
|
bacpy(&cp.bdaddr, bdaddr);
|
|
|
|
|
|
|
|
hci_req_add(req, HCI_OP_LE_DEL_FROM_RESOLV_LIST,
|
|
|
|
sizeof(cp), &cp);
|
|
|
|
}
|
|
|
|
}
|
2020-03-11 15:54:02 +00:00
|
|
|
}
|
|
|
|
|
2021-06-04 08:26:27 +00:00
|
|
|
/* Adds connection to accept list if needed. On error, returns -1. */
|
|
|
|
static int add_to_accept_list(struct hci_request *req,
|
|
|
|
struct hci_conn_params *params, u8 *num_entries,
|
|
|
|
bool allow_rpa)
|
2014-12-19 11:40:20 +00:00
|
|
|
{
|
2021-06-04 08:26:27 +00:00
|
|
|
struct hci_cp_le_add_to_accept_list cp;
|
2020-03-11 15:54:02 +00:00
|
|
|
struct hci_dev *hdev = req->hdev;
|
|
|
|
|
2021-06-04 08:26:27 +00:00
|
|
|
/* Already in accept list */
|
|
|
|
if (hci_bdaddr_list_lookup(&hdev->le_accept_list, ¶ms->addr,
|
2020-03-11 15:54:02 +00:00
|
|
|
params->addr_type))
|
|
|
|
return 0;
|
2014-12-19 11:40:20 +00:00
|
|
|
|
2020-03-11 15:54:02 +00:00
|
|
|
/* Select filter policy to accept all advertising */
|
2021-06-04 08:26:27 +00:00
|
|
|
if (*num_entries >= hdev->le_accept_list_size)
|
2020-03-11 15:54:02 +00:00
|
|
|
return -1;
|
|
|
|
|
2021-06-04 08:26:27 +00:00
|
|
|
/* Accept list can not be used with RPAs */
|
2020-10-29 07:48:21 +00:00
|
|
|
if (!allow_rpa &&
|
|
|
|
!hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY) &&
|
2020-03-11 15:54:02 +00:00
|
|
|
hci_find_irk_by_addr(hdev, ¶ms->addr, params->addr_type)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-06-04 08:26:27 +00:00
|
|
|
/* During suspend, only wakeable devices can be in accept list */
|
2021-12-01 19:49:50 +00:00
|
|
|
if (hdev->suspended &&
|
bluetooth: don't use bitmaps for random flag accesses
The bluetooth code uses our bitmap infrastructure for the two bits (!)
of connection setup flags, and in the process causes odd problems when
it converts between a bitmap and just the regular values of said bits.
It's completely pointless to do things like bitmap_to_arr32() to convert
a bitmap into a u32. It shoudln't have been a bitmap in the first
place. The reason to use bitmaps is if you have arbitrary number of
bits you want to manage (not two!), or if you rely on the atomicity
guarantees of the bitmap setting and clearing.
The code could use an "atomic_t" and use "atomic_or/andnot()" to set and
clear the bit values, but considering that it then copies the bitmaps
around with "bitmap_to_arr32()" and friends, there clearly cannot be a
lot of atomicity requirements.
So just use a regular integer.
In the process, this avoids the warnings about erroneous use of
bitmap_from_u64() which were triggered on 32-bit architectures when
conversion from a u64 would access two words (and, surprise, surprise,
only one word is needed - and indeed overkill - for a 2-bit bitmap).
That was always problematic, but the compiler seems to notice it and
warn about the invalid pattern only after commit 0a97953fd221 ("lib: add
bitmap_{from,to}_arr64") changed the exact implementation details of
'bitmap_from_u64()', as reported by Sudip Mukherjee and Stephen Rothwell.
Fixes: fe92ee6425a2 ("Bluetooth: hci_core: Rework hci_conn_params flags")
Link: https://lore.kernel.org/all/YpyJ9qTNHJzz0FHY@debian/
Link: https://lore.kernel.org/all/20220606080631.0c3014f2@canb.auug.org.au/
Link: https://lore.kernel.org/all/20220605162537.1604762-1-yury.norov@gmail.com/
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Reported-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Reviewed-by: Yury Norov <yury.norov@gmail.com>
Cc: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Cc: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2022-06-05 18:51:48 +00:00
|
|
|
!(params->flags & HCI_CONN_FLAG_REMOTE_WAKEUP))
|
2020-03-11 15:54:02 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
*num_entries += 1;
|
2014-12-19 11:40:20 +00:00
|
|
|
cp.bdaddr_type = params->addr_type;
|
|
|
|
bacpy(&cp.bdaddr, ¶ms->addr);
|
|
|
|
|
2021-06-04 08:26:27 +00:00
|
|
|
bt_dev_dbg(hdev, "Add %pMR (0x%x) to accept list", &cp.bdaddr,
|
2020-03-11 15:54:02 +00:00
|
|
|
cp.bdaddr_type);
|
2021-06-04 08:26:27 +00:00
|
|
|
hci_req_add(req, HCI_OP_LE_ADD_TO_ACCEPT_LIST, sizeof(cp), &cp);
|
2020-03-11 15:54:02 +00:00
|
|
|
|
2021-10-27 23:58:42 +00:00
|
|
|
if (use_ll_privacy(hdev)) {
|
2020-07-23 12:38:58 +00:00
|
|
|
struct smp_irk *irk;
|
|
|
|
|
|
|
|
irk = hci_find_irk_by_addr(hdev, ¶ms->addr,
|
|
|
|
params->addr_type);
|
|
|
|
if (irk) {
|
|
|
|
struct hci_cp_le_add_to_resolv_list cp;
|
|
|
|
|
|
|
|
cp.bdaddr_type = params->addr_type;
|
|
|
|
bacpy(&cp.bdaddr, ¶ms->addr);
|
|
|
|
memcpy(cp.peer_irk, irk->val, 16);
|
|
|
|
|
|
|
|
if (hci_dev_test_flag(hdev, HCI_PRIVACY))
|
|
|
|
memcpy(cp.local_irk, hdev->irk, 16);
|
|
|
|
else
|
|
|
|
memset(cp.local_irk, 0, 16);
|
|
|
|
|
|
|
|
hci_req_add(req, HCI_OP_LE_ADD_TO_RESOLV_LIST,
|
|
|
|
sizeof(cp), &cp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-11 15:54:02 +00:00
|
|
|
return 0;
|
2014-12-19 11:40:20 +00:00
|
|
|
}
|
|
|
|
|
2021-06-04 08:26:27 +00:00
|
|
|
static u8 update_accept_list(struct hci_request *req)
|
2014-12-19 11:40:20 +00:00
|
|
|
{
|
|
|
|
struct hci_dev *hdev = req->hdev;
|
|
|
|
struct hci_conn_params *params;
|
|
|
|
struct bdaddr_list *b;
|
2020-03-11 15:54:02 +00:00
|
|
|
u8 num_entries = 0;
|
|
|
|
bool pend_conn, pend_report;
|
2021-06-04 08:26:27 +00:00
|
|
|
/* We allow usage of accept list even with RPAs in suspend. In the worst
|
|
|
|
* case, we won't be able to wake from devices that use the privacy1.2
|
2020-03-11 15:54:02 +00:00
|
|
|
* features. Additionally, once we support privacy1.2 and IRK
|
|
|
|
* offloading, we can update this to also check for those conditions.
|
|
|
|
*/
|
|
|
|
bool allow_rpa = hdev->suspended;
|
2014-12-19 11:40:20 +00:00
|
|
|
|
2021-10-27 23:58:42 +00:00
|
|
|
if (use_ll_privacy(hdev))
|
2021-04-05 14:30:41 +00:00
|
|
|
allow_rpa = true;
|
|
|
|
|
2021-06-04 08:26:27 +00:00
|
|
|
/* Go through the current accept list programmed into the
|
2014-12-19 11:40:20 +00:00
|
|
|
* controller one by one and check if that address is still
|
|
|
|
* in the list of pending connections or list of devices to
|
|
|
|
* report. If not present in either list, then queue the
|
|
|
|
* command to remove it from the controller.
|
|
|
|
*/
|
2021-06-04 08:26:27 +00:00
|
|
|
list_for_each_entry(b, &hdev->le_accept_list, list) {
|
2020-03-11 15:54:02 +00:00
|
|
|
pend_conn = hci_pend_le_action_lookup(&hdev->pend_le_conns,
|
|
|
|
&b->bdaddr,
|
|
|
|
b->bdaddr_type);
|
|
|
|
pend_report = hci_pend_le_action_lookup(&hdev->pend_le_reports,
|
|
|
|
&b->bdaddr,
|
|
|
|
b->bdaddr_type);
|
|
|
|
|
|
|
|
/* If the device is not likely to connect or report,
|
2021-06-04 08:26:27 +00:00
|
|
|
* remove it from the accept list.
|
2016-01-26 19:31:31 +00:00
|
|
|
*/
|
2020-03-11 15:54:02 +00:00
|
|
|
if (!pend_conn && !pend_report) {
|
2021-06-04 08:26:27 +00:00
|
|
|
del_from_accept_list(req, &b->bdaddr, b->bdaddr_type);
|
2014-12-19 11:40:20 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2021-06-04 08:26:27 +00:00
|
|
|
/* Accept list can not be used with RPAs */
|
2020-10-29 07:48:21 +00:00
|
|
|
if (!allow_rpa &&
|
|
|
|
!hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY) &&
|
2020-03-11 15:54:02 +00:00
|
|
|
hci_find_irk_by_addr(hdev, &b->bdaddr, b->bdaddr_type)) {
|
2016-01-26 19:31:31 +00:00
|
|
|
return 0x00;
|
|
|
|
}
|
2014-12-19 11:40:20 +00:00
|
|
|
|
2020-03-11 15:54:02 +00:00
|
|
|
num_entries++;
|
2014-12-19 11:40:20 +00:00
|
|
|
}
|
|
|
|
|
2021-06-04 08:26:27 +00:00
|
|
|
/* Since all no longer valid accept list entries have been
|
2014-12-19 11:40:20 +00:00
|
|
|
* removed, walk through the list of pending connections
|
|
|
|
* and ensure that any new device gets programmed into
|
|
|
|
* the controller.
|
|
|
|
*
|
|
|
|
* If the list of the devices is larger than the list of
|
2021-06-04 08:26:27 +00:00
|
|
|
* available accept list entries in the controller, then
|
2014-12-19 11:40:20 +00:00
|
|
|
* just abort and return filer policy value to not use the
|
2021-06-04 08:26:27 +00:00
|
|
|
* accept list.
|
2014-12-19 11:40:20 +00:00
|
|
|
*/
|
|
|
|
list_for_each_entry(params, &hdev->pend_le_conns, action) {
|
2021-06-04 08:26:27 +00:00
|
|
|
if (add_to_accept_list(req, params, &num_entries, allow_rpa))
|
2014-12-19 11:40:20 +00:00
|
|
|
return 0x00;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* After adding all new pending connections, walk through
|
|
|
|
* the list of pending reports and also add these to the
|
2021-06-04 08:26:27 +00:00
|
|
|
* accept list if there is still space. Abort if space runs out.
|
2014-12-19 11:40:20 +00:00
|
|
|
*/
|
|
|
|
list_for_each_entry(params, &hdev->pend_le_reports, action) {
|
2021-06-04 08:26:27 +00:00
|
|
|
if (add_to_accept_list(req, params, &num_entries, allow_rpa))
|
2014-12-19 11:40:20 +00:00
|
|
|
return 0x00;
|
|
|
|
}
|
|
|
|
|
2020-11-26 04:22:21 +00:00
|
|
|
/* Use the allowlist unless the following conditions are all true:
|
|
|
|
* - We are not currently suspending
|
2021-01-22 08:36:16 +00:00
|
|
|
* - There are 1 or more ADV monitors registered and it's not offloaded
|
2020-11-26 04:22:21 +00:00
|
|
|
* - Interleaved scanning is not currently using the allowlist
|
2020-06-17 14:39:18 +00:00
|
|
|
*/
|
2020-11-26 04:22:21 +00:00
|
|
|
if (!idr_is_empty(&hdev->adv_monitors_idr) && !hdev->suspended &&
|
2021-01-22 08:36:16 +00:00
|
|
|
hci_get_adv_monitor_offload_ext(hdev) == HCI_ADV_MONITOR_EXT_NONE &&
|
2020-11-26 04:22:21 +00:00
|
|
|
hdev->interleave_scan_state != INTERLEAVE_SCAN_ALLOWLIST)
|
2020-06-17 14:39:18 +00:00
|
|
|
return 0x00;
|
|
|
|
|
2021-06-04 08:26:27 +00:00
|
|
|
/* Select filter policy to use accept list */
|
2014-12-19 11:40:20 +00:00
|
|
|
return 0x01;
|
|
|
|
}
|
|
|
|
|
2016-03-09 15:30:34 +00:00
|
|
|
static bool scan_use_rpa(struct hci_dev *hdev)
|
|
|
|
{
|
|
|
|
return hci_dev_test_flag(hdev, HCI_PRIVACY);
|
|
|
|
}
|
|
|
|
|
2018-07-06 11:35:27 +00:00
|
|
|
static void hci_req_start_scan(struct hci_request *req, u8 type, u16 interval,
|
2020-07-23 12:38:57 +00:00
|
|
|
u16 window, u8 own_addr_type, u8 filter_policy,
|
2021-05-20 05:12:09 +00:00
|
|
|
bool filter_dup, bool addr_resolv)
|
2014-12-19 11:40:20 +00:00
|
|
|
{
|
2018-07-06 11:35:28 +00:00
|
|
|
struct hci_dev *hdev = req->hdev;
|
2018-07-06 11:35:27 +00:00
|
|
|
|
2020-06-24 18:34:19 +00:00
|
|
|
if (hdev->scanning_paused) {
|
|
|
|
bt_dev_dbg(hdev, "Scanning is paused for suspend");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-10-27 23:58:42 +00:00
|
|
|
if (use_ll_privacy(hdev) && addr_resolv) {
|
2020-07-23 12:38:57 +00:00
|
|
|
u8 enable = 0x01;
|
2020-07-23 12:39:03 +00:00
|
|
|
|
2020-07-23 12:38:57 +00:00
|
|
|
hci_req_add(req, HCI_OP_LE_SET_ADDR_RESOLV_ENABLE, 1, &enable);
|
|
|
|
}
|
|
|
|
|
2018-07-06 11:35:28 +00:00
|
|
|
/* Use ext scanning if set ext scan param and ext scan enable is
|
|
|
|
* supported
|
|
|
|
*/
|
|
|
|
if (use_ext_scan(hdev)) {
|
|
|
|
struct hci_cp_le_set_ext_scan_params *ext_param_cp;
|
|
|
|
struct hci_cp_le_set_ext_scan_enable ext_enable_cp;
|
|
|
|
struct hci_cp_le_scan_phy_params *phy_params;
|
2018-07-19 11:39:37 +00:00
|
|
|
u8 data[sizeof(*ext_param_cp) + sizeof(*phy_params) * 2];
|
|
|
|
u32 plen;
|
2018-07-06 11:35:28 +00:00
|
|
|
|
|
|
|
ext_param_cp = (void *)data;
|
|
|
|
phy_params = (void *)ext_param_cp->data;
|
|
|
|
|
|
|
|
memset(ext_param_cp, 0, sizeof(*ext_param_cp));
|
|
|
|
ext_param_cp->own_addr_type = own_addr_type;
|
|
|
|
ext_param_cp->filter_policy = filter_policy;
|
|
|
|
|
2018-07-19 11:39:37 +00:00
|
|
|
plen = sizeof(*ext_param_cp);
|
|
|
|
|
|
|
|
if (scan_1m(hdev) || scan_2m(hdev)) {
|
|
|
|
ext_param_cp->scanning_phys |= LE_SCAN_PHY_1M;
|
|
|
|
|
|
|
|
memset(phy_params, 0, sizeof(*phy_params));
|
|
|
|
phy_params->type = type;
|
|
|
|
phy_params->interval = cpu_to_le16(interval);
|
|
|
|
phy_params->window = cpu_to_le16(window);
|
|
|
|
|
|
|
|
plen += sizeof(*phy_params);
|
|
|
|
phy_params++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (scan_coded(hdev)) {
|
|
|
|
ext_param_cp->scanning_phys |= LE_SCAN_PHY_CODED;
|
|
|
|
|
|
|
|
memset(phy_params, 0, sizeof(*phy_params));
|
|
|
|
phy_params->type = type;
|
|
|
|
phy_params->interval = cpu_to_le16(interval);
|
|
|
|
phy_params->window = cpu_to_le16(window);
|
|
|
|
|
|
|
|
plen += sizeof(*phy_params);
|
|
|
|
phy_params++;
|
|
|
|
}
|
2018-07-06 11:35:28 +00:00
|
|
|
|
|
|
|
hci_req_add(req, HCI_OP_LE_SET_EXT_SCAN_PARAMS,
|
2018-07-19 11:39:37 +00:00
|
|
|
plen, ext_param_cp);
|
2018-07-06 11:35:28 +00:00
|
|
|
|
|
|
|
memset(&ext_enable_cp, 0, sizeof(ext_enable_cp));
|
|
|
|
ext_enable_cp.enable = LE_SCAN_ENABLE;
|
2021-05-20 05:12:09 +00:00
|
|
|
ext_enable_cp.filter_dup = filter_dup;
|
2018-07-06 11:35:28 +00:00
|
|
|
|
|
|
|
hci_req_add(req, HCI_OP_LE_SET_EXT_SCAN_ENABLE,
|
|
|
|
sizeof(ext_enable_cp), &ext_enable_cp);
|
|
|
|
} else {
|
|
|
|
struct hci_cp_le_set_scan_param param_cp;
|
|
|
|
struct hci_cp_le_set_scan_enable enable_cp;
|
|
|
|
|
|
|
|
memset(¶m_cp, 0, sizeof(param_cp));
|
|
|
|
param_cp.type = type;
|
|
|
|
param_cp.interval = cpu_to_le16(interval);
|
|
|
|
param_cp.window = cpu_to_le16(window);
|
|
|
|
param_cp.own_address_type = own_addr_type;
|
|
|
|
param_cp.filter_policy = filter_policy;
|
|
|
|
hci_req_add(req, HCI_OP_LE_SET_SCAN_PARAM, sizeof(param_cp),
|
|
|
|
¶m_cp);
|
|
|
|
|
|
|
|
memset(&enable_cp, 0, sizeof(enable_cp));
|
|
|
|
enable_cp.enable = LE_SCAN_ENABLE;
|
2021-05-20 05:12:09 +00:00
|
|
|
enable_cp.filter_dup = filter_dup;
|
2018-07-06 11:35:28 +00:00
|
|
|
hci_req_add(req, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(enable_cp),
|
|
|
|
&enable_cp);
|
|
|
|
}
|
2018-07-06 11:35:27 +00:00
|
|
|
}
|
|
|
|
|
2022-08-05 23:42:34 +00:00
|
|
|
static void set_random_addr(struct hci_request *req, bdaddr_t *rpa);
|
|
|
|
static int hci_update_random_address(struct hci_request *req,
|
|
|
|
bool require_privacy, bool use_rpa,
|
|
|
|
u8 *own_addr_type)
|
|
|
|
{
|
|
|
|
struct hci_dev *hdev = req->hdev;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
/* If privacy is enabled use a resolvable private address. If
|
|
|
|
* current RPA has expired or there is something else than
|
|
|
|
* the current RPA in use, then generate a new one.
|
|
|
|
*/
|
|
|
|
if (use_rpa) {
|
|
|
|
/* If Controller supports LL Privacy use own address type is
|
|
|
|
* 0x03
|
|
|
|
*/
|
|
|
|
if (use_ll_privacy(hdev))
|
|
|
|
*own_addr_type = ADDR_LE_DEV_RANDOM_RESOLVED;
|
|
|
|
else
|
|
|
|
*own_addr_type = ADDR_LE_DEV_RANDOM;
|
|
|
|
|
|
|
|
if (rpa_valid(hdev))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err = smp_generate_rpa(hdev, hdev->irk, &hdev->rpa);
|
|
|
|
if (err < 0) {
|
|
|
|
bt_dev_err(hdev, "failed to generate new RPA");
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
set_random_addr(req, &hdev->rpa);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* In case of required privacy without resolvable private address,
|
|
|
|
* use an non-resolvable private address. This is useful for active
|
|
|
|
* scanning and non-connectable advertising.
|
|
|
|
*/
|
|
|
|
if (require_privacy) {
|
|
|
|
bdaddr_t nrpa;
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
/* The non-resolvable private address is generated
|
|
|
|
* from random six bytes with the two most significant
|
|
|
|
* bits cleared.
|
|
|
|
*/
|
|
|
|
get_random_bytes(&nrpa, 6);
|
|
|
|
nrpa.b[5] &= 0x3f;
|
|
|
|
|
|
|
|
/* The non-resolvable private address shall not be
|
|
|
|
* equal to the public address.
|
|
|
|
*/
|
|
|
|
if (bacmp(&hdev->bdaddr, &nrpa))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
*own_addr_type = ADDR_LE_DEV_RANDOM;
|
|
|
|
set_random_addr(req, &nrpa);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If forcing static address is in use or there is no public
|
|
|
|
* address use the static address as random address (but skip
|
|
|
|
* the HCI command if the current random address is already the
|
|
|
|
* static one.
|
|
|
|
*
|
|
|
|
* In case BR/EDR has been disabled on a dual-mode controller
|
|
|
|
* and a static address has been configured, then use that
|
|
|
|
* address instead of the public BR/EDR address.
|
|
|
|
*/
|
|
|
|
if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
|
|
|
|
!bacmp(&hdev->bdaddr, BDADDR_ANY) ||
|
|
|
|
(!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
|
|
|
|
bacmp(&hdev->static_addr, BDADDR_ANY))) {
|
|
|
|
*own_addr_type = ADDR_LE_DEV_RANDOM;
|
|
|
|
if (bacmp(&hdev->static_addr, &hdev->random_addr))
|
|
|
|
hci_req_add(req, HCI_OP_LE_SET_RANDOM_ADDR, 6,
|
|
|
|
&hdev->static_addr);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Neither privacy nor static address is being used so use a
|
|
|
|
* public address.
|
|
|
|
*/
|
|
|
|
*own_addr_type = ADDR_LE_DEV_PUBLIC;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-07-23 12:38:57 +00:00
|
|
|
/* Ensure to call hci_req_add_le_scan_disable() first to disable the
|
|
|
|
* controller based address resolution to be able to reconfigure
|
|
|
|
* resolving list.
|
|
|
|
*/
|
2018-07-06 11:35:27 +00:00
|
|
|
void hci_req_add_le_passive_scan(struct hci_request *req)
|
|
|
|
{
|
2014-12-19 11:40:20 +00:00
|
|
|
struct hci_dev *hdev = req->hdev;
|
|
|
|
u8 own_addr_type;
|
|
|
|
u8 filter_policy;
|
2020-05-13 02:09:32 +00:00
|
|
|
u16 window, interval;
|
2021-05-20 05:12:09 +00:00
|
|
|
/* Default is to enable duplicates filter */
|
|
|
|
u8 filter_dup = LE_SCAN_FILTER_DUP_ENABLE;
|
2020-07-23 12:38:57 +00:00
|
|
|
/* Background scanning should run with address resolution */
|
|
|
|
bool addr_resolv = true;
|
2020-03-11 15:54:02 +00:00
|
|
|
|
|
|
|
if (hdev->scanning_paused) {
|
|
|
|
bt_dev_dbg(hdev, "Scanning is paused for suspend");
|
|
|
|
return;
|
|
|
|
}
|
2014-12-19 11:40:20 +00:00
|
|
|
|
|
|
|
/* Set require_privacy to false since no SCAN_REQ are send
|
|
|
|
* during passive scanning. Not using an non-resolvable address
|
|
|
|
* here is important so that peer devices using direct
|
|
|
|
* advertising with our address will be correctly reported
|
|
|
|
* by the controller.
|
|
|
|
*/
|
2016-03-09 15:30:34 +00:00
|
|
|
if (hci_update_random_address(req, false, scan_use_rpa(hdev),
|
|
|
|
&own_addr_type))
|
2014-12-19 11:40:20 +00:00
|
|
|
return;
|
|
|
|
|
2020-11-26 04:22:25 +00:00
|
|
|
if (hdev->enable_advmon_interleave_scan &&
|
|
|
|
__hci_update_interleaved_scan(hdev))
|
2020-11-26 04:22:21 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
bt_dev_dbg(hdev, "interleave state %d", hdev->interleave_scan_state);
|
2021-06-04 08:26:27 +00:00
|
|
|
/* Adding or removing entries from the accept list must
|
2014-12-19 11:40:20 +00:00
|
|
|
* happen before enabling scanning. The controller does
|
2021-06-04 08:26:27 +00:00
|
|
|
* not allow accept list modification while scanning.
|
2014-12-19 11:40:20 +00:00
|
|
|
*/
|
2021-06-04 08:26:27 +00:00
|
|
|
filter_policy = update_accept_list(req);
|
2014-12-19 11:40:20 +00:00
|
|
|
|
|
|
|
/* When the controller is using random resolvable addresses and
|
|
|
|
* with that having LE privacy enabled, then controllers with
|
|
|
|
* Extended Scanner Filter Policies support can now enable support
|
|
|
|
* for handling directed advertising.
|
|
|
|
*
|
2021-06-04 08:26:27 +00:00
|
|
|
* So instead of using filter polices 0x00 (no accept list)
|
|
|
|
* and 0x01 (accept list enabled) use the new filter policies
|
|
|
|
* 0x02 (no accept list) and 0x03 (accept list enabled).
|
2014-12-19 11:40:20 +00:00
|
|
|
*/
|
2015-03-13 09:11:00 +00:00
|
|
|
if (hci_dev_test_flag(hdev, HCI_PRIVACY) &&
|
2014-12-19 11:40:20 +00:00
|
|
|
(hdev->le_features[0] & HCI_LE_EXT_SCAN_POLICY))
|
|
|
|
filter_policy |= 0x02;
|
|
|
|
|
2020-03-11 15:54:02 +00:00
|
|
|
if (hdev->suspended) {
|
2020-06-11 02:01:56 +00:00
|
|
|
window = hdev->le_scan_window_suspend;
|
|
|
|
interval = hdev->le_scan_int_suspend;
|
2020-07-31 01:05:34 +00:00
|
|
|
} else if (hci_is_le_conn_scanning(hdev)) {
|
|
|
|
window = hdev->le_scan_window_connect;
|
|
|
|
interval = hdev->le_scan_int_connect;
|
2020-09-18 03:11:49 +00:00
|
|
|
} else if (hci_is_adv_monitoring(hdev)) {
|
|
|
|
window = hdev->le_scan_window_adv_monitor;
|
|
|
|
interval = hdev->le_scan_int_adv_monitor;
|
2021-05-20 05:12:09 +00:00
|
|
|
|
|
|
|
/* Disable duplicates filter when scanning for advertisement
|
|
|
|
* monitor for the following reasons.
|
|
|
|
*
|
|
|
|
* For HW pattern filtering (ex. MSFT), Realtek and Qualcomm
|
|
|
|
* controllers ignore RSSI_Sampling_Period when the duplicates
|
|
|
|
* filter is enabled.
|
|
|
|
*
|
|
|
|
* For SW pattern filtering, when we're not doing interleaved
|
|
|
|
* scanning, it is necessary to disable duplicates filter,
|
|
|
|
* otherwise hosts can only receive one advertisement and it's
|
|
|
|
* impossible to know if a peer is still in range.
|
|
|
|
*/
|
|
|
|
filter_dup = LE_SCAN_FILTER_DUP_DISABLE;
|
2020-03-11 15:54:02 +00:00
|
|
|
} else {
|
|
|
|
window = hdev->le_scan_window;
|
|
|
|
interval = hdev->le_scan_interval;
|
|
|
|
}
|
|
|
|
|
2021-06-04 08:26:27 +00:00
|
|
|
bt_dev_dbg(hdev, "LE passive scan with accept list = %d",
|
|
|
|
filter_policy);
|
2020-03-11 15:54:02 +00:00
|
|
|
hci_req_start_scan(req, LE_SCAN_PASSIVE, interval, window,
|
2021-05-20 05:12:09 +00:00
|
|
|
own_addr_type, filter_policy, filter_dup,
|
|
|
|
addr_resolv);
|
2014-12-19 11:40:20 +00:00
|
|
|
}
|
|
|
|
|
2020-11-26 04:22:21 +00:00
|
|
|
static int hci_req_add_le_interleaved_scan(struct hci_request *req,
|
|
|
|
unsigned long opt)
|
|
|
|
{
|
|
|
|
struct hci_dev *hdev = req->hdev;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
hci_dev_lock(hdev);
|
|
|
|
|
|
|
|
if (hci_dev_test_flag(hdev, HCI_LE_SCAN))
|
|
|
|
hci_req_add_le_scan_disable(req, false);
|
|
|
|
hci_req_add_le_passive_scan(req);
|
|
|
|
|
|
|
|
switch (hdev->interleave_scan_state) {
|
|
|
|
case INTERLEAVE_SCAN_ALLOWLIST:
|
|
|
|
bt_dev_dbg(hdev, "next state: allowlist");
|
|
|
|
hdev->interleave_scan_state = INTERLEAVE_SCAN_NO_FILTER;
|
|
|
|
break;
|
|
|
|
case INTERLEAVE_SCAN_NO_FILTER:
|
|
|
|
bt_dev_dbg(hdev, "next state: no filter");
|
|
|
|
hdev->interleave_scan_state = INTERLEAVE_SCAN_ALLOWLIST;
|
|
|
|
break;
|
|
|
|
case INTERLEAVE_SCAN_NONE:
|
|
|
|
BT_ERR("unexpected error");
|
|
|
|
ret = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
hci_dev_unlock(hdev);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void interleave_scan_work(struct work_struct *work)
|
|
|
|
{
|
|
|
|
struct hci_dev *hdev = container_of(work, struct hci_dev,
|
|
|
|
interleave_scan.work);
|
|
|
|
u8 status;
|
|
|
|
unsigned long timeout;
|
|
|
|
|
|
|
|
if (hdev->interleave_scan_state == INTERLEAVE_SCAN_ALLOWLIST) {
|
|
|
|
timeout = msecs_to_jiffies(hdev->advmon_allowlist_duration);
|
|
|
|
} else if (hdev->interleave_scan_state == INTERLEAVE_SCAN_NO_FILTER) {
|
|
|
|
timeout = msecs_to_jiffies(hdev->advmon_no_filter_duration);
|
|
|
|
} else {
|
|
|
|
bt_dev_err(hdev, "unexpected error");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
hci_req_sync(hdev, hci_req_add_le_interleaved_scan, 0,
|
|
|
|
HCI_CMD_TIMEOUT, &status);
|
|
|
|
|
|
|
|
/* Don't continue interleaving if it was canceled */
|
|
|
|
if (is_interleave_scanning(hdev))
|
|
|
|
queue_delayed_work(hdev->req_workqueue,
|
|
|
|
&hdev->interleave_scan, timeout);
|
|
|
|
}
|
|
|
|
|
2021-08-02 23:56:19 +00:00
|
|
|
static void set_random_addr(struct hci_request *req, bdaddr_t *rpa)
|
|
|
|
{
|
|
|
|
struct hci_dev *hdev = req->hdev;
|
|
|
|
|
|
|
|
/* If we're advertising or initiating an LE connection we can't
|
|
|
|
* go ahead and change the random address at this time. This is
|
|
|
|
* because the eventual initiator address used for the
|
|
|
|
* subsequently created connection will be undefined (some
|
|
|
|
* controllers use the new address and others the one we had
|
|
|
|
* when the operation started).
|
|
|
|
*
|
|
|
|
* In this kind of scenario skip the update and let the random
|
|
|
|
* address be updated at the next cycle.
|
|
|
|
*/
|
|
|
|
if (hci_dev_test_flag(hdev, HCI_LE_ADV) ||
|
|
|
|
hci_lookup_le_connect(hdev)) {
|
|
|
|
bt_dev_dbg(hdev, "Deferring random address update");
|
|
|
|
hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
hci_req_add(req, HCI_OP_LE_SET_RANDOM_ADDR, 6, rpa);
|
|
|
|
}
|
|
|
|
|
2015-11-11 06:11:16 +00:00
|
|
|
void hci_request_setup(struct hci_dev *hdev)
|
|
|
|
{
|
2020-11-26 04:22:21 +00:00
|
|
|
INIT_DELAYED_WORK(&hdev->interleave_scan, interleave_scan_work);
|
2015-11-11 06:11:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void hci_request_cancel_all(struct hci_dev *hdev)
|
|
|
|
{
|
2021-12-17 15:28:09 +00:00
|
|
|
__hci_cmd_sync_cancel(hdev, ENODEV);
|
2015-11-12 13:15:00 +00:00
|
|
|
|
2020-11-26 04:22:21 +00:00
|
|
|
cancel_interleave_scan(hdev);
|
2015-11-11 06:11:16 +00:00
|
|
|
}
|