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
F148370184: D23737.id68488.vs68476.diff
Tue, Mar 17, 10:21 AM
F148315843: D23737.id68476.diff
Tue, Mar 17, 3:30 AM
F148259824: D23737.id68489.vs68488.diff
Mon, Mar 16, 8:37 PM
Unknown Object (File)
Mon, Mar 16, 11:11 AM
Unknown Object (File)
Sat, Mar 14, 4:06 PM
Unknown Object (File)
Sun, Mar 8, 11:04 AM
Unknown Object (File)
Sun, Mar 8, 7:37 AM
Unknown Object (File)
Thu, Mar 5, 9:56 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.