|
|
621646 |
From 7e63dd95957a264d15eefdda3ea9449a6c72eb86 Mon Sep 17 00:00:00 2001
|
|
|
621646 |
From: =?UTF-8?q?Adam=20Go=C5=82=C4=99biowski?= <adamg@pld-linux.org>
|
|
|
621646 |
Date: Wed, 14 Nov 2018 07:35:28 +0100
|
|
|
621646 |
Subject: [PATCH] extensions: format-security fixes in libip[6]t_icmp
|
|
|
621646 |
MIME-Version: 1.0
|
|
|
621646 |
Content-Type: text/plain; charset=UTF-8
|
|
|
621646 |
Content-Transfer-Encoding: 8bit
|
|
|
621646 |
|
|
|
621646 |
commit 61d6c3834de3 ("xtables: add 'printf' attribute to xlate_add")
|
|
|
621646 |
introduced support for gcc feature to check format string against passed
|
|
|
621646 |
argument. This commit adds missing bits to extenstions's libipt_icmp.c
|
|
|
621646 |
and libip6t_icmp6.c that were causing build to fail.
|
|
|
621646 |
|
|
|
621646 |
Fixes: 61d6c3834de3 ("xtables: add 'printf' attribute to xlate_add")
|
|
|
621646 |
Signed-off-by: Adam Gołębiowski <adamg@pld-linux.org>
|
|
|
621646 |
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
|
|
621646 |
(cherry picked from commit 907e429d7548157016cd51aba4adc5d0c7d9f816)
|
|
|
621646 |
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
|
|
621646 |
---
|
|
|
621646 |
extensions/libip6t_icmp6.c | 4 ++--
|
|
|
621646 |
extensions/libipt_icmp.c | 2 +-
|
|
|
621646 |
2 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
621646 |
|
|
|
621646 |
diff --git a/extensions/libip6t_icmp6.c b/extensions/libip6t_icmp6.c
|
|
|
621646 |
index 45a71875722c4..cc7bfaeb72fd7 100644
|
|
|
621646 |
--- a/extensions/libip6t_icmp6.c
|
|
|
621646 |
+++ b/extensions/libip6t_icmp6.c
|
|
|
621646 |
@@ -230,7 +230,7 @@ static unsigned int type_xlate_print(struct xt_xlate *xl, unsigned int icmptype,
|
|
|
621646 |
type_name = icmp6_type_xlate(icmptype);
|
|
|
621646 |
|
|
|
621646 |
if (type_name) {
|
|
|
621646 |
- xt_xlate_add(xl, type_name);
|
|
|
621646 |
+ xt_xlate_add(xl, "%s", type_name);
|
|
|
621646 |
} else {
|
|
|
621646 |
for (i = 0; i < ARRAY_SIZE(icmpv6_codes); ++i)
|
|
|
621646 |
if (icmpv6_codes[i].type == icmptype &&
|
|
|
621646 |
@@ -239,7 +239,7 @@ static unsigned int type_xlate_print(struct xt_xlate *xl, unsigned int icmptype,
|
|
|
621646 |
break;
|
|
|
621646 |
|
|
|
621646 |
if (i != ARRAY_SIZE(icmpv6_codes))
|
|
|
621646 |
- xt_xlate_add(xl, icmpv6_codes[i].name);
|
|
|
621646 |
+ xt_xlate_add(xl, "%s", icmpv6_codes[i].name);
|
|
|
621646 |
else
|
|
|
621646 |
return 0;
|
|
|
621646 |
}
|
|
|
621646 |
diff --git a/extensions/libipt_icmp.c b/extensions/libipt_icmp.c
|
|
|
621646 |
index 5418997668d4c..e76257c54708c 100644
|
|
|
621646 |
--- a/extensions/libipt_icmp.c
|
|
|
621646 |
+++ b/extensions/libipt_icmp.c
|
|
|
621646 |
@@ -236,7 +236,7 @@ static unsigned int type_xlate_print(struct xt_xlate *xl, unsigned int icmptype,
|
|
|
621646 |
if (icmp_codes[i].type == icmptype &&
|
|
|
621646 |
icmp_codes[i].code_min == code_min &&
|
|
|
621646 |
icmp_codes[i].code_max == code_max) {
|
|
|
621646 |
- xt_xlate_add(xl, icmp_codes[i].name);
|
|
|
621646 |
+ xt_xlate_add(xl, "%s", icmp_codes[i].name);
|
|
|
621646 |
return 1;
|
|
|
621646 |
}
|
|
|
621646 |
}
|
|
|
621646 |
--
|
|
|
621646 |
2.21.0
|
|
|
621646 |
|