]> git.baikalelectronics.ru Git - kernel.git/commit
ipv6: make DAD fail with enhanced DAD when nonce length differs
authorSabrina Dubroca <sd@queasysnail.net>
Fri, 13 Jul 2018 15:21:42 +0000 (17:21 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 16 Jul 2018 20:45:16 +0000 (13:45 -0700)
commit9db701a57ca2390f1e3d0a23d5d1d715899912bd
tree223ce6619b5d4e3d86a9cdd5d8525acacd31453a
parent7850619f27c9b4d3fe20fa45e0bbc562df3a632b
ipv6: make DAD fail with enhanced DAD when nonce length differs

Commit 500cae5319e9 ("ipv6 addrconf: Implemented enhanced DAD (RFC7527)")
added enhanced DAD with a nonce length of 6 bytes. However, RFC7527
doesn't specify the length of the nonce, other than being 6 + 8*k bytes,
with integer k >= 0 (RFC3971 5.3.2). The current implementation simply
assumes that the nonce will always be 6 bytes, but others systems are
free to choose different sizes.

If another system sends a nonce of different length but with the same 6
bytes prefix, it shouldn't be considered as the same nonce. Thus, check
that the length of the received nonce is the same as the length we sent.

Ugly scapy test script running on veth0:

def loop():
    pkt=sniff(iface="veth0", filter="icmp6", count=1)
    pkt = pkt[0]
    b = bytearray(pkt[Raw].load)
    b[1] += 1
    b += b'\xde\xad\xbe\xef\xde\xad\xbe\xef'
    pkt[Raw].load = bytes(b)
    pkt[IPv6].plen += 8
    # fixup checksum after modifying the payload
    pkt[IPv6].payload.cksum -= 0x3b44
    if pkt[IPv6].payload.cksum < 0:
        pkt[IPv6].payload.cksum += 0xffff
    sendp(pkt, iface="veth0")

This should result in DAD failure for any address added to veth0's peer,
but is currently ignored.

Fixes: 500cae5319e9 ("ipv6 addrconf: Implemented enhanced DAD (RFC7527)")
Signed-off-by: Sabrina Dubroca <sd@queasysnail.net>
Reviewed-by: Stefano Brivio <sbrivio@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/ndisc.c