Page MenuHomeFreeBSD

nat64: Get the IPv4 address from a NAT64 address when comparing addresses in a ICMP translate
AbandonedPublic

Authored by nc on Feb 17 2020, 9:43 PM.
Referenced Files
F109480792: D23737/new/.diff
Wed, Feb 5, 3:48 PM
Unknown Object (File)
Tue, Jan 21, 5:26 PM
Unknown Object (File)
Mon, Jan 20, 6:36 PM
Unknown Object (File)
Mon, Jan 20, 8:34 AM
Unknown Object (File)
Sun, Jan 19, 11:50 PM
Unknown Object (File)
Sun, Jan 19, 3:07 PM
Unknown Object (File)
Sun, Jan 19, 6:27 AM
Unknown Object (File)
Jan 3 2025, 9:35 AM

Details

Reviewers
ae
Summary

nat64: Get the IPv4 address from an IPv6 NAT64 address when comparing a source address with a destination address in an ICMP translate.

Submitted by: Neel Chauhan <neel AT neelc DOT org>

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

ae requested changes to this revision.Feb 18 2020, 8:15 AM

The patch is not correct. IPv4 address can be embedded in different places depending from configuration.

This revision now requires changes to proceed.Feb 18 2020, 8:15 AM
nc edited the summary of this revision. (Show Details)

Here, I also compare the destination addresses. Is this what you want?

In D23737#521593, @neel_neelc.org wrote:

Here, I also compare the destination addresses. Is this what you want?

No, take a look at RFC 6052 p2.2..

Also, how did test your changes? :)
NAT64 currently is not widely used, thus changes here can break something and you will know about breakage when it will be not so easy to fix, e.g. after release.

I decided to use the existing function nat64_extract_ip4() to extract the IPv4 and removed my nat64_get_ip4().

I'm new to the FreeBSD TCP/IP stack, sorry.