test case
1. create vxlan tunnel with tx csum offload on.
2. iptables nat the packet out from vxlan
3. vxlan remote will see the packet udp csum error.
I used to use skb->csum_valid to distinguish the two cases.
If donot add extra skb flags, maybe csum_start can seperate too.
在 2023/4/4 下午6:26, Edward Cree 写道:
On 04/04/2023 02:48, Fei Cheng wrote:
Thank you for remind plain text.
Use csum_start to seperate these two cases, maybe a good idea.
1.Disable tx csum
skb->ip_summed == CHECKSUM_PARTIAL && skb_transport_header == udp
2.Enable tx csum
skb->ip_summed == CHECKSUM_PARTIAL && skb_transport_header != udp
Correct?
What do you mean by "skb_transport_header == udp"? That it is a UDP
header? Or that it is at the offset of the UDP header? The inner
L4 packet could be UDP as well.
And why are you even looking at skb_transport_header when it's
csum_start that determines what the hardware will do?
AFAICT nothing in nf_nat_proto.c looks at skb_transport_header anyway;
indeed in nf_nat_icmp_reply_translation() we can call into this code
with hdroff ending up pointing way deeper in the packet.
In any case, after digging deeper into the netfilter code, it looks to
me like there's no issue in the first place: netfilter doesn't
'recompute' the UDP checksum, it just accumulates delta into it to
account for the changes it made to the packet, on the assumption that
the existing checksum is correct.
Which AIUI will do the right thing whether the checksum is
* a correct checksum for an unencapsulated packet
* a pseudohdr sum for a CHECKSUM_PARTIAL (unencapsulated) packet
* a correct (LCO) checksum for an encapsulated packet, whose inner L4
checksum may or may not be CHECKSUM_PARTIAL offloaded.
Do you have a test case that breaks with the current code?
-ed