Page MenuHomeFreeBSD

Fix ipfw fwd that doesn't work in some cases
ClosedPublic

Authored by ae on Apr 1 2022, 1:52 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Jul 14, 2:51 AM
Unknown Object (File)
Fri, Jul 12, 9:40 PM
Unknown Object (File)
Fri, Jul 12, 2:39 PM
Unknown Object (File)
Fri, Jul 12, 2:16 PM
Unknown Object (File)
Wed, Jul 10, 10:36 AM
Unknown Object (File)
Jun 26 2024, 7:05 PM
Unknown Object (File)
Jun 18 2024, 1:17 PM
Unknown Object (File)
Jun 17 2024, 4:17 PM

Details

Summary

We need to use destination address stored in dst variable instead of IP header when doing route lookup.
Thus correct address will be used when PACKET_TAG_IPFORWARD is set by ipfw.

This code path is used when ip_output is called with NULL route pointer, in this case ro == &iproute and dst is initialized as ip->ip_dst. After ip_output_pfil dst value can be changed to the address from fwd_tag, but IP header keeps unchanged, thus we need to use dst variable in fib4_lookup.

IPv6 code is a bit different and patch seems hackish.
Probably we should just move block to be before again: label

if (ro == NULL || ro->ro_nh == NULL) {
        bzero(dst, sizeof(*dst));
        dst->sin6_family = AF_INET6;
        dst->sin6_len = sizeof(*dst);
        dst->sin6_addr = ip6->ip6_dst;
}

Regression was introduced in D19804 and D23886.

PR: 256828, 261697, 255705

Diff Detail

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