* [PATCH nf-next] netfilter: fix type in parsing in nf_tables_set_alloc_name
@ 2013-12-31 11:40 Daniel Borkmann
2014-01-03 23:02 ` Pablo Neira Ayuso
0 siblings, 1 reply; 2+ messages in thread
From: Daniel Borkmann @ 2013-12-31 11:40 UTC (permalink / raw)
To: pablo; +Cc: netfilter-devel
In nf_tables_set_alloc_name(), we are trying to find a new, unused
name for our new set and interate through the list of present sets.
As far as I can see, we're using format string %d to parse already
present names in order to mark their presence in a bitmap, so that
we can later on find the first 0 in that map to assign the new set
name to. We should rather use a temporary variable of type int to
store the result of sscanf() to, and for making sanity checks on.
Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
---
I think this is not really critical, and can go through nf-next.
Pablo, if you think otherwise, feel free to apply it to nf-net.
net/netfilter/nf_tables_api.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/net/netfilter/nf_tables_api.c b/net/netfilter/nf_tables_api.c
index f93b7d0..937c34c 100644
--- a/net/netfilter/nf_tables_api.c
+++ b/net/netfilter/nf_tables_api.c
@@ -1973,11 +1973,14 @@ static int nf_tables_set_alloc_name(struct nft_ctx *ctx, struct nft_set *set,
return -ENOMEM;
list_for_each_entry(i, &ctx->table->sets, list) {
- if (!sscanf(i->name, name, &n))
+ int tmp;
+
+ if (!sscanf(i->name, name, &tmp))
continue;
- if (n < 0 || n > BITS_PER_LONG * PAGE_SIZE)
+ if (tmp < 0 || tmp > BITS_PER_LONG * PAGE_SIZE)
continue;
- set_bit(n, inuse);
+
+ set_bit(tmp, inuse);
}
n = find_first_zero_bit(inuse, BITS_PER_LONG * PAGE_SIZE);
--
1.7.11.7
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH nf-next] netfilter: fix type in parsing in nf_tables_set_alloc_name
2013-12-31 11:40 [PATCH nf-next] netfilter: fix type in parsing in nf_tables_set_alloc_name Daniel Borkmann
@ 2014-01-03 23:02 ` Pablo Neira Ayuso
0 siblings, 0 replies; 2+ messages in thread
From: Pablo Neira Ayuso @ 2014-01-03 23:02 UTC (permalink / raw)
To: Daniel Borkmann; +Cc: netfilter-devel
On Tue, Dec 31, 2013 at 12:40:05PM +0100, Daniel Borkmann wrote:
> In nf_tables_set_alloc_name(), we are trying to find a new, unused
> name for our new set and interate through the list of present sets.
> As far as I can see, we're using format string %d to parse already
> present names in order to mark their presence in a bitmap, so that
> we can later on find the first 0 in that map to assign the new set
> name to. We should rather use a temporary variable of type int to
> store the result of sscanf() to, and for making sanity checks on.
Applied, thanks.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-01-03 23:02 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-31 11:40 [PATCH nf-next] netfilter: fix type in parsing in nf_tables_set_alloc_name Daniel Borkmann
2014-01-03 23:02 ` Pablo Neira Ayuso
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).