提交 7be2edbb 编写于 作者: J Johan Hedberg 提交者: Marcel Holtmann

Bluetooth: Ensure hci_conn always contains the local identity address

To be consistent with the remote address info in hci_conn we want it to
also contain the local identity address information. This patch updates
the code to copy the right values in place whenever an LE connection has
been established.
Signed-off-by: NJohan Hedberg <johan.hedberg@intel.com>
Signed-off-by: NMarcel Holtmann <marcel@holtmann.org>
上级 0f4bd942
......@@ -3625,6 +3625,26 @@ static void hci_le_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
}
}
/* Ensure that the hci_conn contains the identity address type
* regardless of which address the connection was made with.
*
* If the controller has a public BD_ADDR, then by default
* use that one. If this is a LE only controller without
* a public address, default to the static random address.
*
* For debugging purposes it is possible to force
* controllers with a public address to use the static
* random address instead.
*/
if (test_bit(HCI_FORCE_STATIC_ADDR, &hdev->dev_flags) ||
!bacmp(&hdev->bdaddr, BDADDR_ANY)) {
bacpy(&conn->src, &hdev->static_addr);
conn->src_type = ADDR_LE_DEV_RANDOM;
} else {
bacpy(&conn->src, &hdev->bdaddr);
conn->src_type = ADDR_LE_DEV_PUBLIC;
}
/* Lookup the identity address from the stored connection
* address and address type.
*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册