net: remove duplicate fetch in sock_getsockopt
authorJingYi Hou <houjingyi647@gmail.com>
Mon, 17 Jun 2019 06:56:05 +0000 (14:56 +0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 18 Jun 2019 17:04:16 +0000 (10:04 -0700)
In sock_getsockopt(), 'optlen' is fetched the first time from userspace.
'len < 0' is then checked. Then in condition 'SO_MEMINFO', 'optlen' is
fetched the second time from userspace.

If change it between two fetches may cause security problems or unexpected
behaivor, and there is no reason to fetch it a second time.

To fix this, we need to remove the second fetch.

Signed-off-by: JingYi Hou <houjingyi647@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/sock.c

index af09a23e48226337ebe0726c4358ee543c0e81b6..aa4a00d381e38c37f61db1a1f4a393c10f29cbec 100644 (file)
@@ -1477,9 +1477,6 @@ int sock_getsockopt(struct socket *sock, int level, int optname,
        {
                u32 meminfo[SK_MEMINFO_VARS];
 
-               if (get_user(len, optlen))
-                       return -EFAULT;
-
                sk_get_meminfo(sk, meminfo);
 
                len = min_t(unsigned int, len, sizeof(meminfo));