]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
ieee802154: Fix generation of random EUI-64 addresses.
authorLennert Buytenhek <buytenh@wantstofly.org>
Thu, 28 May 2015 12:38:32 +0000 (15:38 +0300)
committerMarcel Holtmann <marcel@holtmann.org>
Sun, 31 May 2015 11:40:53 +0000 (13:40 +0200)
Currently, ieee802154_random_extended_addr() has a 50% chance of
generating a group (multicast) address, while this function is used
for generating station addresses (which can't be group addresses)
for interfaces that don't have a hardware-provided address.

Also, in case get_random_bytes() generates the EUI-64 address
00:00:00:00:00:00:00:00 (extremely unlikely), which is an invalid
address, ieee802154_random_extended_addr() reacts by changing it
to 01:00:00:00:00:00:00:00, which is an invalid station address as
well, as it is a group address.

This patch changes the address generation procedure to grab eight
random bytes, treat that as an EUI-64, and then clear the Group
address bit and set the Locally Administered bit, which is in
line with how eth_random_addr() generates random EUI-48s.

Signed-off-by: Lennert Buytenhek <buytenh@wantstofly.org>
Acked-by: Alexander Aring <alex.aring@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
include/linux/ieee802154.h

index 8872ca103d0699bb7c0c6ab2a898302d920b41dd..552210d0a46fe6775a46052050c8060ad9290aa8 100644 (file)
@@ -244,9 +244,9 @@ static inline void ieee802154_random_extended_addr(__le64 *addr)
 {
        get_random_bytes(addr, IEEE802154_EXTENDED_ADDR_LEN);
 
-       /* toggle some bit if we hit an invalid extended addr */
-       if (!ieee802154_is_valid_extended_addr(*addr))
-               ((u8 *)addr)[IEEE802154_EXTENDED_ADDR_LEN - 1] ^= 0x01;
+       /* clear the group bit, and set the locally administered bit */
+       ((u8 *)addr)[IEEE802154_EXTENDED_ADDR_LEN - 1] &= ~0x01;
+       ((u8 *)addr)[IEEE802154_EXTENDED_ADDR_LEN - 1] |= 0x02;
 }
 
 #endif /* LINUX_IEEE802154_H */