]> git.ipfire.org Git - thirdparty/iptables.git/commitdiff
libxtables: Fix for warning in xtables_ipmask_to_numeric
authorPhil Sutter <phil@nwl.cc>
Tue, 15 Mar 2022 11:17:25 +0000 (12:17 +0100)
committerPhil Sutter <phil@nwl.cc>
Tue, 15 Mar 2022 13:53:52 +0000 (14:53 +0100)
Gcc complains:

| xtables.c: In function 'xtables_ipmask_to_numeric':
| xtables.c:1491:34: warning: '__builtin___sprintf_chk' may write a terminating nul past the end of the destination [-Wformat-overflow=]
|  1491 |                 sprintf(buf, "/%s", xtables_ipaddr_to_numeric(mask));
|       |                                  ^

Indeed, xtables_ipaddr_to_numeric() returns a pointer to a 20 byte
buffer and xtables_ipmask_to_numeric() writes its content into a buffer
of same size at offset 1. Yet length of returned string is deterministic
as it is an IPv4 address. So shrink it to the minimum of 16 bytes which
eliminates the warning as well.

Fixes: a96166c24eaac ("libxtables: add xtables_ip[6]mask_to_cidr")
Signed-off-by: Phil Sutter <phil@nwl.cc>
libxtables/xtables.c

index 094cbd87ec1edecbbbe4152fd6c6cfc2436e6338..5f47f627df440cddb951ead00e69aa189cd8a04a 100644 (file)
@@ -1418,7 +1418,7 @@ void xtables_param_act(unsigned int status, const char *p1, ...)
 
 const char *xtables_ipaddr_to_numeric(const struct in_addr *addrp)
 {
-       static char buf[20];
+       static char buf[16];
        const unsigned char *bytep = (const void *)&addrp->s_addr;
 
        sprintf(buf, "%u.%u.%u.%u", bytep[0], bytep[1], bytep[2], bytep[3]);