Page MenuHomeFreeBSD

netinet6: factor interface addition code to the dedicated function
ClosedPublic

Authored by melifaro on Sep 26 2022, 1:51 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Apr 20, 5:22 AM
Unknown Object (File)
Sun, Apr 7, 6:46 PM
Unknown Object (File)
Feb 24 2024, 2:02 AM
Unknown Object (File)
Jan 10 2024, 4:50 PM
Unknown Object (File)
Dec 20 2023, 6:04 AM
Unknown Object (File)
Nov 11 2023, 5:05 AM
Unknown Object (File)
Nov 11 2023, 12:20 AM
Unknown Object (File)
Nov 8 2023, 7:07 AM
Subscribers

Details

Summary

Move SIOCAIFADDR_IN6 (current "primary" ioctl to add an IPv6 interface address) handling code to the dedicated in6_addifaddr() function and make it a part of KPI. This allows in-kernel users to add/delete interfaces addresses without relying on ioctl interface.

Note: the code in the function is a full copy-paste, except 2 places:

  • the first difference is "compat" handling for CARP - instead of comparing the CMDs, the ioctl handler now zeroes vhid value so the carp check always fails for compat cmd.
  • the second is the return in the furst in6ifa_ifpwithaddr() check - as ia is NULL, it is possible to simply return with success.

The function by itself consumes passed ia.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 47539
Build 44426: arc lint + arc unit