]> granicus.if.org Git - ipset/commitdiff
netfilter/ipset: replace a strncpy() with strscpy()
authorQian Cai <cai@gmx.us>
Sun, 2 Dec 2018 04:06:01 +0000 (23:06 -0500)
committerJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Tue, 4 Dec 2018 09:26:57 +0000 (10:26 +0100)
To make overflows as obvious as possible and to prevent code from blithely
proceeding with a truncated string. This also has a side-effect to fix a
compilation warning when using GCC 8.2.1.

net/netfilter/ipset/ip_set_core.c: In function 'ip_set_sockfn_get':
net/netfilter/ipset/ip_set_core.c:2027:3: warning: 'strncpy' writing 32
bytes into a region of size 2 overflows the destination
[-Wstringop-overflow=]

Signed-off-by: Qian Cai <cai@gmx.us>
Signed-off-by: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
kernel/net/netfilter/ipset/ip_set_core.c

index b93805c635d2115991b2ab2395e345adfb9c20a9..b424c0410d708c91ceb9d18050744d908903f0b9 100644 (file)
@@ -2181,9 +2181,11 @@ ip_set_sockfn_get(struct sock *sk, int optval, void __user *user, int *len)
                }
                nfnl_lock(NFNL_SUBSYS_IPSET);
                set = ip_set(inst, req_get->set.index);
-               strncpy(req_get->set.name, set ? set->name : "",
-                       IPSET_MAXNAMELEN);
+               ret = strscpy(req_get->set.name, set ? set->name : "",
+                             IPSET_MAXNAMELEN);
                nfnl_unlock(NFNL_SUBSYS_IPSET);
+               if (ret < 0)
+                       goto done;
                goto copy;
        }
        default: