Page MenuHomeFreeBSD

ip6+carp: revise the generation of ND6 NA
ClosedPublic

Authored by ae on Oct 1 2025, 12:17 PM.
Tags
None
Referenced Files
F168917111: D52825.id163415.diff
Sun, Aug 30, 6:11 PM
F168915692: D52825.id.diff
Sun, Aug 30, 5:57 PM
F168913615: D52825.id163220.diff
Sun, Aug 30, 5:40 PM
Unknown Object (File)
Sat, Aug 22, 3:03 AM
Unknown Object (File)
Wed, Aug 19, 8:30 AM
Unknown Object (File)
Sun, Aug 9, 2:45 PM
Unknown Object (File)
Sun, Aug 9, 2:36 PM
Unknown Object (File)
Sun, Aug 9, 2:16 AM

Details

Summary
  • use ND_NA_FLAG_ROUTER flag in carp_send_na() when we work as router
  • use in6addr_any as destination address for nd6_na_output(), then it will use ipv6-all-nodes multicast address.
  • add in6_selectsrc_nbr() function that accepts additional argument ip6_moptions. Use this function from ND6 code to avoid cases when nd6_na_output/nd6_ns_output can not find source address for multicast destinations:
kernel: carp: 83@vlan524: BACKUP -> MASTER (master will time out)
kernel: nd6_na_output: source can't be determined: dst=ff02::1, error=51
  • add some comments from RFC2461 for better understanding.
  • use tlladdr argument as flags and use ND6_NA_OPT_LLA when we need to add target link-layer address option, and ND6_NA_CARP_MASTER when we know that target address is CARP master. Then we can call carp_macmatch6() if target address is CARP master and ND6 NA packet will have correct mac address.
  • move blocks of code where multicast options is initialized and use it when destination address is multicast. Thus we can set M_MCAST flag and prepare ip6_moptions for correct IPv6 source address selection.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable