]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
bpf: sockmap remove duplicate queue free
authorJohn Fastabend <john.fastabend@gmail.com>
Mon, 13 May 2019 14:19:37 +0000 (07:19 -0700)
committerDaniel Borkmann <daniel@iogearbox.net>
Mon, 13 May 2019 23:31:43 +0000 (01:31 +0200)
In tcp bpf remove we free the cork list and purge the ingress msg
list. However we do this before the ref count reaches zero so it
could be possible some other access is in progress. In this case
(tcp close and/or tcp_unhash) we happen to also hold the sock
lock so no path exists but lets fix it otherwise it is extremely
fragile and breaks the reference counting rules. Also we already
check the cork list and ingress msg queue and free them once the
ref count reaches zero so its wasteful to check twice.

Fixes: 604326b41a6fb ("bpf, sockmap: convert to generic sk_msg interface")
Signed-off-by: John Fastabend <john.fastabend@gmail.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
net/ipv4/tcp_bpf.c

index 1bb7321a256d09da590c623817d7087e77f43575..4a619c85daede6983ffbdeb0fa8a5a57e997b838 100644 (file)
@@ -528,8 +528,6 @@ static void tcp_bpf_remove(struct sock *sk, struct sk_psock *psock)
 {
        struct sk_psock_link *link;
 
-       sk_psock_cork_free(psock);
-       __sk_psock_purge_ingress_msg(psock);
        while ((link = sk_psock_link_pop(psock))) {
                sk_psock_unlink(sk, link);
                sk_psock_free_link(link);