]> git.baikalelectronics.ru Git - kernel.git/commit
dev_forward_skb: do not scrub skb mark within the same name space
authorNicolas Dichtel <nicolas.dichtel@6wind.com>
Thu, 24 Jun 2021 08:05:05 +0000 (10:05 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 25 Jun 2021 18:04:39 +0000 (11:04 -0700)
commit5aaed631a4aea4a09f3f344f2a3c11e359508977
tree0271645465d1680a127b48238d9d355d9753c114
parent1b9e8417b84f5abcbb08b445cd9dd6b0d06b40b9
dev_forward_skb: do not scrub skb mark within the same name space

The goal is to keep the mark during a bpf_redirect(), like it is done for
legacy encapsulation / decapsulation, when there is no x-netns.
This was initially done in commit 90d89c72fce7 ("skbuff: Do not scrub skb
mark within the same name space").

When the call to skb_scrub_packet() was added in dev_forward_skb() (commit
66142978db24 ("skb: allow skb_scrub_packet() to be used by tunnels")), the
second argument (xnet) was set to true to force a call to skb_orphan(). At
this time, the mark was always cleanned up by skb_scrub_packet(), whatever
xnet value was.
This call to skb_orphan() was removed later in commit
ad414b1000c3 ("skbuff: preserve sock reference when scrubbing the skb.").
But this 'true' stayed here without any real reason.

Let's correctly set xnet in ____dev_forward_skb(), this function has access
to the previous interface and to the new interface.

Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/netdevice.h