]> git.baikalelectronics.ru Git - kernel.git/commit
bpf, sockmap: Remove unhash handler for BPF sockmap usage
authorJohn Fastabend <john.fastabend@gmail.com>
Wed, 3 Nov 2021 20:47:33 +0000 (13:47 -0700)
committerDaniel Borkmann <daniel@iogearbox.net>
Mon, 8 Nov 2021 23:57:19 +0000 (00:57 +0100)
commitfd501ed9752ba02480b903da287ed3621623c538
tree39cae3188e0b1daefd11bca7d479801e15758114
parentd040165ed47ef83d1bbdfe4c14d27ecfd32fdcf5
bpf, sockmap: Remove unhash handler for BPF sockmap usage

We do not need to handle unhash from BPF side we can simply wait for the
close to happen. The original concern was a socket could transition from
ESTABLISHED state to a new state while the BPF hook was still attached.
But, we convinced ourself this is no longer possible and we also improved
BPF sockmap to handle listen sockets so this is no longer a problem.

More importantly though there are cases where unhash is called when data is
in the receive queue. The BPF unhash logic will flush this data which is
wrong. To be correct it should keep the data in the receive queue and allow
a receiving application to continue reading the data. This may happen when
tcp_abort() is received for example. Instead of complicating the logic in
unhash simply moving all this to tcp_close() hook solves this.

Fixes: c28960e011756 ("bpf: skb_verdict, support SK_PASS on RX BPF path")
Signed-off-by: John Fastabend <john.fastabend@gmail.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Tested-by: Jussi Maki <joamaki@gmail.com>
Reviewed-by: Jakub Sitnicki <jakub@cloudflare.com>
Link: https://lore.kernel.org/bpf/20211103204736.248403-3-john.fastabend@gmail.com
net/ipv4/tcp_bpf.c