ip/ip6_gre: use the same logic as SIT interfaces when computing v6LL address
authorAntonio Quartulli <a@unstable.cc>
Fri, 3 Sep 2021 16:58:42 +0000 (18:58 +0200)
committerDavid S. Miller <davem@davemloft.net>
Sun, 5 Sep 2021 12:14:37 +0000 (13:14 +0100)
commite5dd729460ca8d2da02028dbf264b65be8cd4b5f
tree2cd8d4ef4eec07aa5438db09c51cea946729c86a
parent81d0885d68ec427e62044cf46a400c9958ea0092
ip/ip6_gre: use the same logic as SIT interfaces when computing v6LL address

GRE interfaces are not Ether-like and therefore it is not
possible to generate the v6LL address the same way as (for example)
GRETAP devices.

With default settings, a GRE interface will attempt generating its v6LL
address using the EUI64 approach, but this will fail when the local
endpoint of the GRE tunnel is set to "any". In this case the GRE
interface will end up with no v6LL address, thus violating RFC4291.

SIT interfaces already implement a different logic to ensure that a v6LL
address is always computed.

Change the GRE v6LL generation logic to follow the same approach as SIT.
This way GRE interfaces will always have a v6LL address as well.

Behaviour of GRETAP interfaces has not been changed as they behave like
classic Ether-like interfaces.

To avoid code duplication sit_add_v4_addrs() has been renamed to
add_v4_addrs() and adapted to handle also the IP6GRE/GRE cases.

Signed-off-by: Antonio Quartulli <a@unstable.cc>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/addrconf.c