Commit eec89a77 authored by Emrah Demir's avatar Emrah Demir Committed by Willy Tarreau

mISDN: Fixing missing validation in base_sock_bind()

commit b8216468 upstream.

Add validation code into mISDN/socket.c
Signed-off-by: default avatarEmrah Demir <ed@abdsec.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarWilly Tarreau <w@1wt.eu>
parent 54fbda50
......@@ -717,6 +717,9 @@ base_sock_bind(struct socket *sock, struct sockaddr *addr, int addr_len)
if (!maddr || maddr->family != AF_ISDN)
return -EINVAL;
if (addr_len < sizeof(struct sockaddr_mISDN))
return -EINVAL;
lock_sock(sk);
if (_pms(sk)->dev) {
......
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