From: Dan Carpenter Date: Fri, 28 Apr 2017 12:57:56 +0000 (+0300) Subject: netfilter: x_tables: unlock on error in xt_find_table_lock() X-Git-Tag: android-x86-7.1-r2~1^2~34^2~84 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=c70c7be280448ad7dce9d74fb66c858de534383a;p=android-x86%2Fkernel.git netfilter: x_tables: unlock on error in xt_find_table_lock() [ Upstream commit 7dde07e9c53617549d67dd3e1d791496d0d3868e ] According to my static checker we should unlock here before the return. That seems reasonable to me as well. Fixes" b9e69e127397 ("netfilter: xtables: don't hook tables by default") Signed-off-by: Dan Carpenter Acked-by: Florian Westphal Signed-off-by: Pablo Neira Ayuso Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/netfilter/x_tables.c b/net/netfilter/x_tables.c index ac26b71d900e..7ad1a863587a 100644 --- a/net/netfilter/x_tables.c +++ b/net/netfilter/x_tables.c @@ -1006,8 +1006,10 @@ struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af, list_for_each_entry(t, &init_net.xt.tables[af], list) { if (strcmp(t->name, name)) continue; - if (!try_module_get(t->me)) + if (!try_module_get(t->me)) { + mutex_unlock(&xt[af].mutex); return NULL; + } mutex_unlock(&xt[af].mutex); if (t->table_init(net) != 0) {