mirror of
https://github.com/hardkernel/linux.git
synced 2026-04-04 12:13:05 +09:00
netfilter: nf_tables: fix chain filter in nf_tables_dump_rules()
[ Upstream commit24c0df82ef] ctx->chain may be null now that we have very large object names, so we cannot check for ctx->chain[0] here. Fixes:b7263e071a("netfilter: nf_tables: Allow table names of up to 255 chars") Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org> Acked-by: Phil Sutter <phil@nwl.cc> Signed-off-by: Sasha Levin <alexander.levin@verizon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
def8d0ae4a
commit
e2f52fa3f8
@@ -2072,7 +2072,7 @@ static int nf_tables_dump_rules(struct sk_buff *skb,
|
||||
continue;
|
||||
|
||||
list_for_each_entry_rcu(chain, &table->chains, list) {
|
||||
if (ctx && ctx->chain[0] &&
|
||||
if (ctx && ctx->chain &&
|
||||
strcmp(ctx->chain, chain->name) != 0)
|
||||
continue;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user