[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1433247664-7151-1-git-send-email-kda@linux-powerpc.org>
Date: Tue, 2 Jun 2015 15:21:04 +0300
From: Denis Kirjanov <kda@...ux-powerpc.org>
To: netdev@...r.kernel.org
Cc: Denis Kirjanov <kda@...ux-powerpc.org>
Subject: [net-next v2] ipv4: inet_bind: check the addr_len first
Perform the address length check first, before calling
the proto specific bind() function
Signed-off-by: Denis Kirjanov <kda@...ux-powerpc.org>
v2: add the proper tag tp the subject
---
net/ipv4/af_inet.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/net/ipv4/af_inet.c b/net/ipv4/af_inet.c
index 6ad0f7a..333e2fa 100644
--- a/net/ipv4/af_inet.c
+++ b/net/ipv4/af_inet.c
@@ -426,14 +426,15 @@ int inet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
int chk_addr_ret;
int err;
+ err = -EINVAL;
+ if (addr_len < sizeof(struct sockaddr_in))
+ goto out;
+
/* If the socket has its own bind function then use it. (RAW) */
if (sk->sk_prot->bind) {
err = sk->sk_prot->bind(sk, uaddr, addr_len);
goto out;
}
- err = -EINVAL;
- if (addr_len < sizeof(struct sockaddr_in))
- goto out;
if (addr->sin_family != AF_INET) {
/* Compatibility games : accept AF_UNSPEC (mapped to AF_INET)
--
1.7.10.4
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists