]> git.baikalelectronics.ru Git - kernel.git/commit
bpf: clear the ip_tunnel_info.
authorWilliam Tu <u9012063@gmail.com>
Wed, 25 Apr 2018 06:46:59 +0000 (23:46 -0700)
committerDaniel Borkmann <daniel@iogearbox.net>
Wed, 25 Apr 2018 07:51:54 +0000 (09:51 +0200)
commit18da07ddbb155c5e8b8fe38a3673f6303ee0aa43
tree7fe49e4fba413a173b442c2fb866520011c689fe
parent001315eb4d0125b48b0bf2731cc3ef50474346bd
bpf: clear the ip_tunnel_info.

The percpu metadata_dst might carry the stale ip_tunnel_info
and cause incorrect behavior.  When mixing tests using ipv4/ipv6
bpf vxlan and geneve tunnel, the ipv6 tunnel info incorrectly uses
ipv4's src ip addr as its ipv6 src address, because the previous
tunnel info does not clean up.  The patch zeros the fields in
ip_tunnel_info.

Signed-off-by: William Tu <u9012063@gmail.com>
Reported-by: Yifeng Sun <pkusunyifeng@gmail.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
net/core/filter.c