]> git.baikalelectronics.ru Git - kernel.git/commitdiff
net: Make locking in sock_bindtoindex optional
authorFerenc Fejes <fejes@inf.elte.hu>
Sat, 30 May 2020 21:09:00 +0000 (23:09 +0200)
committerAlexei Starovoitov <ast@kernel.org>
Mon, 1 Jun 2020 21:57:14 +0000 (14:57 -0700)
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: Ferenc Fejes <fejes@inf.elte.hu>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/bee6355da40d9e991b2f2d12b67d55ebb5f5b207.1590871065.git.fejes@inf.elte.hu
include/net/sock.h
net/core/sock.c
net/ipv4/udp_tunnel.c
net/ipv6/ip6_udp_tunnel.c

index 6e9f713a78607597db035a3c1eaf50f84ea9379e..c53cc42b5ab92d0062519e60435b85c75564a967 100644 (file)
@@ -2690,7 +2690,7 @@ static inline bool sk_dev_equal_l3scope(struct sock *sk, int dif)
 
 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_no_linger(struct sock *sk);
 void sock_set_keepalive(struct sock *sk);
index 61ec573221a60195438e9ae27dabf51c6692cf30..6c4acf1f0220b1f925ebcfaa847632ec0dbe0b9b 100644 (file)
@@ -594,13 +594,15 @@ out:
        return ret;
 }
 
-int sock_bindtoindex(struct sock *sk, int ifindex)
+int sock_bindtoindex(struct sock *sk, int ifindex, bool lock_sk)
 {
        int ret;
 
-       lock_sock(sk);
+       if (lock_sk)
+               lock_sock(sk);
        ret = sock_bindtoindex_locked(sk, ifindex);
-       release_sock(sk);
+       if (lock_sk)
+               release_sock(sk);
 
        return ret;
 }
@@ -646,7 +648,7 @@ static int sock_setbindtodevice(struct sock *sk, char __user *optval,
                        goto out;
        }
 
-       return sock_bindtoindex(sk, index);
+       return sock_bindtoindex(sk, index, true);
 out:
 #endif
 
index 2158e8bddf41c7fd500de67c9d3e891ace03321c..3eecba0874aa2eb918e325b83d79bd65a00134b7 100644 (file)
@@ -22,7 +22,7 @@ int udp_sock_create4(struct net *net, struct udp_port_cfg *cfg,
                goto error;
 
        if (cfg->bind_ifindex) {
-               err = sock_bindtoindex(sock->sk, cfg->bind_ifindex);
+               err = sock_bindtoindex(sock->sk, cfg->bind_ifindex, true);
                if (err < 0)
                        goto error;
        }
index 2e0ad1bc84a8352de815a1fae4e311ab7ae21de8..cdc4d4ee2420664bb5db196df43a55ff37f17e1d 100644 (file)
@@ -30,7 +30,7 @@ int udp_sock_create6(struct net *net, struct udp_port_cfg *cfg,
                        goto error;
        }
        if (cfg->bind_ifindex) {
-               err = sock_bindtoindex(sock->sk, cfg->bind_ifindex);
+               err = sock_bindtoindex(sock->sk, cfg->bind_ifindex, true);
                if (err < 0)
                        goto error;
        }