Blame SOURCES/0051-Eliminate-inet_aton-and-inet_ntoa.patch

082114
From 97b85789657bab340fd7aaaf6d41b8f698f9a5b1 Mon Sep 17 00:00:00 2001
082114
From: Phil Sutter <phil@nwl.cc>
082114
Date: Tue, 27 Apr 2021 09:12:53 +0200
082114
Subject: [PATCH] Eliminate inet_aton() and inet_ntoa()
082114
082114
Both functions are obsolete, replace them by equivalent calls to
082114
inet_pton() and inet_ntop().
082114
082114
Signed-off-by: Phil Sutter <phil@nwl.cc>
082114
(cherry picked from commit acac2dbe64e5120394fa715bb5fe95c42d08b8b3)
082114
---
082114
 extensions/libebt_among.c |  6 ++++--
082114
 iptables/nft-ipv4.c       | 23 ++++++++++++++---------
082114
 2 files changed, 18 insertions(+), 11 deletions(-)
082114
082114
diff --git a/extensions/libebt_among.c b/extensions/libebt_among.c
082114
index 2b9a1b6566684..7eb898f984bba 100644
082114
--- a/extensions/libebt_among.c
082114
+++ b/extensions/libebt_among.c
082114
@@ -66,7 +66,7 @@ parse_nft_among_pair(char *buf, struct nft_among_pair *pair, bool have_ip)
082114
 	if (sep) {
082114
 		*sep = '\0';
082114
 
082114
-		if (!inet_aton(sep + 1, &pair->in))
082114
+		if (!inet_pton(AF_INET, sep + 1, &pair->in))
082114
 			xtables_error(PARAMETER_PROBLEM,
082114
 				      "Invalid IP address '%s'\n", sep + 1);
082114
 	}
082114
@@ -194,6 +194,7 @@ static void __bramong_print(struct nft_among_pair *pairs,
082114
 			    int cnt, bool inv, bool have_ip)
082114
 {
082114
 	const char *isep = inv ? "! " : "";
082114
+	char abuf[INET_ADDRSTRLEN];
082114
 	int i;
082114
 
082114
 	for (i = 0; i < cnt; i++) {
082114
@@ -202,7 +203,8 @@ static void __bramong_print(struct nft_among_pair *pairs,
082114
 
082114
 		printf("%s", ether_ntoa(&pairs[i].ether));
082114
 		if (pairs[i].in.s_addr != INADDR_ANY)
082114
-			printf("=%s", inet_ntoa(pairs[i].in));
082114
+			printf("=%s", inet_ntop(AF_INET, &pairs[i].in,
082114
+						abuf, sizeof(abuf)));
082114
 	}
082114
 	printf(" ");
082114
 }
082114
diff --git a/iptables/nft-ipv4.c b/iptables/nft-ipv4.c
082114
index af5db31532540..d8c48ce8817b6 100644
082114
--- a/iptables/nft-ipv4.c
082114
+++ b/iptables/nft-ipv4.c
082114
@@ -136,7 +136,7 @@ static void get_frag(struct nft_xt_ctx *ctx, struct nftnl_expr *e, bool *inv)
082114
 
082114
 static const char *mask_to_str(uint32_t mask)
082114
 {
082114
-	static char mask_str[sizeof("255.255.255.255")];
082114
+	static char mask_str[INET_ADDRSTRLEN];
082114
 	uint32_t bits, hmask = ntohl(mask);
082114
 	struct in_addr mask_addr = {
082114
 		.s_addr = mask,
082114
@@ -155,7 +155,7 @@ static const char *mask_to_str(uint32_t mask)
082114
 	if (i >= 0)
082114
 		sprintf(mask_str, "%u", i);
082114
 	else
082114
-		sprintf(mask_str, "%s", inet_ntoa(mask_addr));
082114
+		inet_ntop(AF_INET, &mask_addr, mask_str, sizeof(mask_str));
082114
 
082114
 	return mask_str;
082114
 }
082114
@@ -298,10 +298,13 @@ static void nft_ipv4_print_rule(struct nft_handle *h, struct nftnl_rule *r,
082114
 static void save_ipv4_addr(char letter, const struct in_addr *addr,
082114
 			   uint32_t mask, int invert)
082114
 {
082114
+	char addrbuf[INET_ADDRSTRLEN];
082114
+
082114
 	if (!mask && !invert && !addr->s_addr)
082114
 		return;
082114
 
082114
-	printf("%s-%c %s/%s ", invert ? "! " : "", letter, inet_ntoa(*addr),
082114
+	printf("%s-%c %s/%s ", invert ? "! " : "", letter,
082114
+	       inet_ntop(AF_INET, addr, addrbuf, sizeof(addrbuf)),
082114
 	       mask_to_str(mask));
082114
 }
082114
 
082114
@@ -387,25 +390,27 @@ static void xlate_ipv4_addr(const char *selector, const struct in_addr *addr,
082114
 			    const struct in_addr *mask,
082114
 			    bool inv, struct xt_xlate *xl)
082114
 {
082114
+	char mbuf[INET_ADDRSTRLEN], abuf[INET_ADDRSTRLEN];
082114
 	const char *op = inv ? "!= " : "";
082114
 	int cidr;
082114
 
082114
 	if (!inv && !addr->s_addr && !mask->s_addr)
082114
 		return;
082114
 
082114
+	inet_ntop(AF_INET, addr, abuf, sizeof(abuf));
082114
+
082114
 	cidr = xtables_ipmask_to_cidr(mask);
082114
 	switch (cidr) {
082114
 	case -1:
082114
-		/* inet_ntoa() is not reentrant */
082114
-		xt_xlate_add(xl, "%s & %s ", selector, inet_ntoa(*mask));
082114
-		xt_xlate_add(xl, "%s %s ", inv ? "!=" : "==", inet_ntoa(*addr));
082114
+		xt_xlate_add(xl, "%s & %s %s %s ", selector,
082114
+			     inet_ntop(AF_INET, mask, mbuf, sizeof(mbuf)),
082114
+			     inv ? "!=" : "==", abuf);
082114
 		break;
082114
 	case 32:
082114
-		xt_xlate_add(xl, "%s %s%s ", selector, op, inet_ntoa(*addr));
082114
+		xt_xlate_add(xl, "%s %s%s ", selector, op, abuf);
082114
 		break;
082114
 	default:
082114
-		xt_xlate_add(xl, "%s %s%s/%d ", selector, op, inet_ntoa(*addr),
082114
-			     cidr);
082114
+		xt_xlate_add(xl, "%s %s%s/%d ", selector, op, abuf, cidr);
082114
 	}
082114
 }
082114
 
082114
-- 
082114
2.31.1
082114