net: sockmap: Remove unnecessary sk_fullsock checks
authorLorenz Bauer <lmb@cloudflare.com>
Wed, 9 Sep 2020 16:27:10 +0000 (17:27 +0100)
committerAlexei Starovoitov <ast@kernel.org>
Thu, 10 Sep 2020 19:31:55 +0000 (12:31 -0700)
commit654785a1afe1b1428106c322c7ea650e3f8d29e9
treeee628a555cfd8b69b848cf8516bc647b48bbdff2
parentf28ef96d7b04a76575a020a9da4f92358abe68c6
net: sockmap: Remove unnecessary sk_fullsock checks

The lookup paths for sockmap and sockhash currently include a check
that returns NULL if the socket we just found is not a full socket.
However, this check is not necessary. On insertion we ensure that
we have a full socket (caveat around sock_ops), so request sockets
are not a problem. Time-wait sockets are allocated separate from
the original socket and then fed into the hashdance. They don't
affect the sockets already stored in the sockmap.

Suggested-by: Jakub Sitnicki <jakub@cloudflare.com>
Signed-off-by: Lorenz Bauer <lmb@cloudflare.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/20200909162712.221874-2-lmb@cloudflare.com
net/core/sock_map.c