Skip to content
Snippets Groups Projects
Commit f67ed26f authored by David S. Miller's avatar David S. Miller Committed by David S. Miller
Browse files

[NET]: Ensure device name passed to SO_BINDTODEVICE is NULL terminated.


Found by Solar Designer.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a1a8feed
No related merge requests found
......@@ -404,8 +404,9 @@ int sock_setsockopt(struct socket *sock, int level, int optname,
if (!valbool) {
sk->sk_bound_dev_if = 0;
} else {
if (optlen > IFNAMSIZ)
optlen = IFNAMSIZ;
if (optlen > IFNAMSIZ - 1)
optlen = IFNAMSIZ - 1;
memset(devname, 0, sizeof(devname));
if (copy_from_user(devname, optval, optlen)) {
ret = -EFAULT;
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment