|
@@ -265,6 +265,9 @@ static void build_pairing_cmd(struct l2cap_conn *conn,
|
|
|
if (test_bit(HCI_RPA_RESOLVING, &hdev->dev_flags))
|
|
|
remote_dist |= SMP_DIST_ID_KEY;
|
|
|
|
|
|
+ if (test_bit(HCI_PRIVACY, &hdev->dev_flags))
|
|
|
+ local_dist |= SMP_DIST_ID_KEY;
|
|
|
+
|
|
|
if (rsp == NULL) {
|
|
|
req->io_capability = conn->hcon->io_capability;
|
|
|
req->oob_flag = SMP_OOB_NOT_PRESENT;
|
|
@@ -1189,8 +1192,7 @@ int smp_distribute_keys(struct l2cap_conn *conn, __u8 force)
|
|
|
struct smp_cmd_ident_addr_info addrinfo;
|
|
|
struct smp_cmd_ident_info idinfo;
|
|
|
|
|
|
- /* Send a dummy key */
|
|
|
- get_random_bytes(idinfo.irk, sizeof(idinfo.irk));
|
|
|
+ memcpy(idinfo.irk, hdev->irk, sizeof(idinfo.irk));
|
|
|
|
|
|
smp_send_cmd(conn, SMP_CMD_IDENT_INFO, sizeof(idinfo), &idinfo);
|
|
|
|