mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 03:40:35 +09:00
netfilter: nf_tables_offload: return EOPNOTSUPP if rule specifies no actions
[ Upstream commit81ec61074b] If the rule only specifies the matching side, return EOPNOTSUPP. Otherwise, the front-end relies on the drivers to reject this rule. Fixes:c9626a2cbd("netfilter: nf_tables: add hardware offload support") Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
7aa02b4887
commit
36d08a41d2
@@ -44,6 +44,9 @@ struct nft_flow_rule *nft_flow_rule_create(struct net *net,
|
||||
expr = nft_expr_next(expr);
|
||||
}
|
||||
|
||||
if (num_actions == 0)
|
||||
return ERR_PTR(-EOPNOTSUPP);
|
||||
|
||||
flow = nft_flow_rule_alloc(num_actions);
|
||||
if (!flow)
|
||||
return ERR_PTR(-ENOMEM);
|
||||
|
||||
Reference in New Issue
Block a user