]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
Bluetooth: SMP: Fail if remote and local public keys are identical
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Wed, 10 Mar 2021 22:13:08 +0000 (14:13 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 26 May 2021 09:27:34 +0000 (11:27 +0200)
commit 6d19628f539fccf899298ff02ee4c73e4bf6df3f upstream.

This fails the pairing procedure when both remote and local non-debug
public keys are identical.

Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/bluetooth/smp.c

index a19822be0e5646c18557a7bc48216776f589be42..03e14e8624b1b709949c202434cb5224cf2d72ed 100644 (file)
@@ -2654,6 +2654,15 @@ static int smp_cmd_public_key(struct l2cap_conn *conn, struct sk_buff *skb)
        if (skb->len < sizeof(*key))
                return SMP_INVALID_PARAMS;
 
+       /* Check if remote and local public keys are the same and debug key is
+        * not in use.
+        */
+       if (!test_bit(SMP_FLAG_DEBUG_KEY, &smp->flags) &&
+           !crypto_memneq(key, smp->local_pk, 64)) {
+               bt_dev_err(hdev, "Remote and local public keys are identical");
+               return SMP_UNSPECIFIED;
+       }
+
        memcpy(smp->remote_pk, key, 64);
 
        if (test_bit(SMP_FLAG_REMOTE_OOB, &smp->flags)) {