Commit 8ea204c2 authored by Ferenc Fejes's avatar Ferenc Fejes Committed by Alexei Starovoitov

net: Make locking in sock_bindtoindex optional

The sock_bindtoindex intended for kernel wide usage however
it will lock the socket regardless of the context. This modification
relax this behavior optionally: locking the socket will be optional
by calling the sock_bindtoindex with lock_sk = true.

The modification applied to all users of the sock_bindtoindex.
Signed-off-by: default avatarFerenc Fejes <fejes@inf.elte.hu>
Signed-off-by: default avatarAlexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/bee6355da40d9e991b2f2d12b67d55ebb5f5b207.1590871065.git.fejes@inf.elte.hu
parent bb2359f4
...@@ -2690,7 +2690,7 @@ static inline bool sk_dev_equal_l3scope(struct sock *sk, int dif) ...@@ -2690,7 +2690,7 @@ static inline bool sk_dev_equal_l3scope(struct sock *sk, int dif)
void sock_def_readable(struct sock *sk); void sock_def_readable(struct sock *sk);
int sock_bindtoindex(struct sock *sk, int ifindex); int sock_bindtoindex(struct sock *sk, int ifindex, bool lock_sk);
void sock_enable_timestamps(struct sock *sk); void sock_enable_timestamps(struct sock *sk);
void sock_no_linger(struct sock *sk); void sock_no_linger(struct sock *sk);
void sock_set_keepalive(struct sock *sk); void sock_set_keepalive(struct sock *sk);
......
...@@ -594,13 +594,15 @@ static int sock_bindtoindex_locked(struct sock *sk, int ifindex) ...@@ -594,13 +594,15 @@ static int sock_bindtoindex_locked(struct sock *sk, int ifindex)
return ret; return ret;
} }
int sock_bindtoindex(struct sock *sk, int ifindex) int sock_bindtoindex(struct sock *sk, int ifindex, bool lock_sk)
{ {
int ret; int ret;
lock_sock(sk); if (lock_sk)
lock_sock(sk);
ret = sock_bindtoindex_locked(sk, ifindex); ret = sock_bindtoindex_locked(sk, ifindex);
release_sock(sk); if (lock_sk)
release_sock(sk);
return ret; return ret;
} }
...@@ -646,7 +648,7 @@ static int sock_setbindtodevice(struct sock *sk, char __user *optval, ...@@ -646,7 +648,7 @@ static int sock_setbindtodevice(struct sock *sk, char __user *optval,
goto out; goto out;
} }
return sock_bindtoindex(sk, index); return sock_bindtoindex(sk, index, true);
out: out:
#endif #endif
......
...@@ -22,7 +22,7 @@ int udp_sock_create4(struct net *net, struct udp_port_cfg *cfg, ...@@ -22,7 +22,7 @@ int udp_sock_create4(struct net *net, struct udp_port_cfg *cfg,
goto error; goto error;
if (cfg->bind_ifindex) { if (cfg->bind_ifindex) {
err = sock_bindtoindex(sock->sk, cfg->bind_ifindex); err = sock_bindtoindex(sock->sk, cfg->bind_ifindex, true);
if (err < 0) if (err < 0)
goto error; goto error;
} }
......
...@@ -30,7 +30,7 @@ int udp_sock_create6(struct net *net, struct udp_port_cfg *cfg, ...@@ -30,7 +30,7 @@ int udp_sock_create6(struct net *net, struct udp_port_cfg *cfg,
goto error; goto error;
} }
if (cfg->bind_ifindex) { if (cfg->bind_ifindex) {
err = sock_bindtoindex(sock->sk, cfg->bind_ifindex); err = sock_bindtoindex(sock->sk, cfg->bind_ifindex, true);
if (err < 0) if (err < 0)
goto error; goto error;
} }
......
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