Commit 3e76b2af authored by Florian Westphal's avatar Florian Westphal Committed by Luis Henriques

netfilter: x_tables: pass xt_counters struct instead of packet counter

BugLink: https://bugs.launchpad.net/bugs/1640786

On SMP we overload the packet counter (unsigned long) to contain
percpu offset.  Hide this from callers and pass xt_counters address
instead.

Preparation patch to allocate the percpu counters in page-sized batch
chunks.
Signed-off-by: default avatarFlorian Westphal <fw@strlen.de>
Acked-by: default avatarEric Dumazet <edumazet@google.com>
Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
(backported from commit 4d31eef5)
Signed-off-by: default avatarEric Desrochers <eric.desrochers@canonical.com>
Acked-by: default avatarTim Gardner <tim.gardner@canonical.com>
Acked-by: default avatarSeth Forshee <seth.forshee@canonical.com>
Signed-off-by: default avatarLuis Henriques <luis.henriques@canonical.com>
parent 5b948252
...@@ -391,11 +391,7 @@ static inline u64 xt_percpu_counter_alloc(void) ...@@ -391,11 +391,7 @@ static inline u64 xt_percpu_counter_alloc(void)
return 0; return 0;
} }
static inline void xt_percpu_counter_free(u64 pcnt) void xt_percpu_counter_free(struct xt_counters *cnt);
{
if (nr_cpu_ids > 1)
free_percpu((void __percpu *) (unsigned long) pcnt);
}
static inline struct xt_counters * static inline struct xt_counters *
xt_get_this_cpu_counter(struct xt_counters *cnt) xt_get_this_cpu_counter(struct xt_counters *cnt)
......
...@@ -553,7 +553,7 @@ find_check_entry(struct arpt_entry *e, const char *name, unsigned int size) ...@@ -553,7 +553,7 @@ find_check_entry(struct arpt_entry *e, const char *name, unsigned int size)
err: err:
module_put(t->u.kernel.target->me); module_put(t->u.kernel.target->me);
out: out:
xt_percpu_counter_free(e->counters.pcnt); xt_percpu_counter_free(&e->counters);
return ret; return ret;
} }
...@@ -641,7 +641,7 @@ static inline void cleanup_entry(struct arpt_entry *e) ...@@ -641,7 +641,7 @@ static inline void cleanup_entry(struct arpt_entry *e)
if (par.target->destroy != NULL) if (par.target->destroy != NULL)
par.target->destroy(&par); par.target->destroy(&par);
module_put(par.target->me); module_put(par.target->me);
xt_percpu_counter_free(e->counters.pcnt); xt_percpu_counter_free(&e->counters);
} }
/* Checks and translates the user-supplied table segment (held in /* Checks and translates the user-supplied table segment (held in
......
...@@ -715,7 +715,7 @@ find_check_entry(struct ipt_entry *e, struct net *net, const char *name, ...@@ -715,7 +715,7 @@ find_check_entry(struct ipt_entry *e, struct net *net, const char *name,
cleanup_match(ematch, net); cleanup_match(ematch, net);
} }
xt_percpu_counter_free(e->counters.pcnt); xt_percpu_counter_free(&e->counters);
return ret; return ret;
} }
...@@ -811,7 +811,7 @@ cleanup_entry(struct ipt_entry *e, struct net *net) ...@@ -811,7 +811,7 @@ cleanup_entry(struct ipt_entry *e, struct net *net)
if (par.target->destroy != NULL) if (par.target->destroy != NULL)
par.target->destroy(&par); par.target->destroy(&par);
module_put(par.target->me); module_put(par.target->me);
xt_percpu_counter_free(e->counters.pcnt); xt_percpu_counter_free(&e->counters);
} }
/* Checks and translates the user-supplied table segment (held in /* Checks and translates the user-supplied table segment (held in
......
...@@ -727,7 +727,7 @@ find_check_entry(struct ip6t_entry *e, struct net *net, const char *name, ...@@ -727,7 +727,7 @@ find_check_entry(struct ip6t_entry *e, struct net *net, const char *name,
cleanup_match(ematch, net); cleanup_match(ematch, net);
} }
xt_percpu_counter_free(e->counters.pcnt); xt_percpu_counter_free(&e->counters);
return ret; return ret;
} }
...@@ -823,7 +823,7 @@ static void cleanup_entry(struct ip6t_entry *e, struct net *net) ...@@ -823,7 +823,7 @@ static void cleanup_entry(struct ip6t_entry *e, struct net *net)
par.target->destroy(&par); par.target->destroy(&par);
module_put(par.target->me); module_put(par.target->me);
xt_percpu_counter_free(e->counters.pcnt); xt_percpu_counter_free(&e->counters);
} }
/* Checks and translates the user-supplied table segment (held in /* Checks and translates the user-supplied table segment (held in
......
...@@ -1550,6 +1550,15 @@ void xt_proto_fini(struct net *net, u_int8_t af) ...@@ -1550,6 +1550,15 @@ void xt_proto_fini(struct net *net, u_int8_t af)
} }
EXPORT_SYMBOL_GPL(xt_proto_fini); EXPORT_SYMBOL_GPL(xt_proto_fini);
void xt_percpu_counter_free(struct xt_counters *counters)
{
unsigned long pcnt = counters->pcnt;
if (nr_cpu_ids > 1)
free_percpu((void __percpu *)pcnt);
}
EXPORT_SYMBOL_GPL(xt_percpu_counter_free);
static int __net_init xt_net_init(struct net *net) static int __net_init xt_net_init(struct net *net)
{ {
int i; int i;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment