Commit cb21802b authored by Lorenz Bauer's avatar Lorenz Bauer Committed by Daniel Borkmann

bpf: sockmap: Simplify sock_map_init_proto

We can take advantage of the fact that both callers of
sock_map_init_proto are holding a RCU read lock, and
have verified that psock is valid.
Signed-off-by: default avatarLorenz Bauer <lmb@cloudflare.com>
Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
Reviewed-by: default avatarJakub Sitnicki <jakub@cloudflare.com>
Acked-by: default avatarJohn Fastabend <john.fastabend@gmail.com>
Link: https://lore.kernel.org/bpf/20200309111243.6982-7-lmb@cloudflare.com
parent f747632b
...@@ -141,28 +141,17 @@ static void sock_map_unref(struct sock *sk, void *link_raw) ...@@ -141,28 +141,17 @@ static void sock_map_unref(struct sock *sk, void *link_raw)
} }
} }
static int sock_map_init_proto(struct sock *sk) static int sock_map_init_proto(struct sock *sk, struct sk_psock *psock)
{ {
struct sk_psock *psock;
struct proto *prot; struct proto *prot;
sock_owned_by_me(sk); sock_owned_by_me(sk);
rcu_read_lock();
psock = sk_psock(sk);
if (unlikely(!psock)) {
rcu_read_unlock();
return -EINVAL;
}
prot = tcp_bpf_get_proto(sk, psock); prot = tcp_bpf_get_proto(sk, psock);
if (IS_ERR(prot)) { if (IS_ERR(prot))
rcu_read_unlock();
return PTR_ERR(prot); return PTR_ERR(prot);
}
sk_psock_update_proto(sk, psock, prot); sk_psock_update_proto(sk, psock, prot);
rcu_read_unlock();
return 0; return 0;
} }
...@@ -241,7 +230,7 @@ static int sock_map_link(struct bpf_map *map, struct sk_psock_progs *progs, ...@@ -241,7 +230,7 @@ static int sock_map_link(struct bpf_map *map, struct sk_psock_progs *progs,
if (msg_parser) if (msg_parser)
psock_set_prog(&psock->progs.msg_parser, msg_parser); psock_set_prog(&psock->progs.msg_parser, msg_parser);
ret = sock_map_init_proto(sk); ret = sock_map_init_proto(sk, psock);
if (ret < 0) if (ret < 0)
goto out_drop; goto out_drop;
...@@ -286,7 +275,7 @@ static int sock_map_link_no_progs(struct bpf_map *map, struct sock *sk) ...@@ -286,7 +275,7 @@ static int sock_map_link_no_progs(struct bpf_map *map, struct sock *sk)
return -ENOMEM; return -ENOMEM;
} }
ret = sock_map_init_proto(sk); ret = sock_map_init_proto(sk, psock);
if (ret < 0) if (ret < 0)
sk_psock_put(sk, psock); sk_psock_put(sk, psock);
return ret; return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment