mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 22:14:04 +02:00
netfilter: nft_fwd_netdev: validate family and chain type
commit76a109fac2upstream. Make sure the forward action is only used from ingress. Fixes:39e6dea28a("netfilter: nf_tables: add forward expression to the netdev family") Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
113df2c58a
commit
24c290b811
|
|
@ -186,6 +186,13 @@ static int nft_fwd_neigh_dump(struct sk_buff *skb, const struct nft_expr *expr)
|
|||
return -1;
|
||||
}
|
||||
|
||||
static int nft_fwd_validate(const struct nft_ctx *ctx,
|
||||
const struct nft_expr *expr,
|
||||
const struct nft_data **data)
|
||||
{
|
||||
return nft_chain_validate_hooks(ctx->chain, (1 << NF_NETDEV_INGRESS));
|
||||
}
|
||||
|
||||
static struct nft_expr_type nft_fwd_netdev_type;
|
||||
static const struct nft_expr_ops nft_fwd_neigh_netdev_ops = {
|
||||
.type = &nft_fwd_netdev_type,
|
||||
|
|
@ -193,6 +200,7 @@ static const struct nft_expr_ops nft_fwd_neigh_netdev_ops = {
|
|||
.eval = nft_fwd_neigh_eval,
|
||||
.init = nft_fwd_neigh_init,
|
||||
.dump = nft_fwd_neigh_dump,
|
||||
.validate = nft_fwd_validate,
|
||||
};
|
||||
|
||||
static const struct nft_expr_ops nft_fwd_netdev_ops = {
|
||||
|
|
@ -201,6 +209,7 @@ static const struct nft_expr_ops nft_fwd_netdev_ops = {
|
|||
.eval = nft_fwd_netdev_eval,
|
||||
.init = nft_fwd_netdev_init,
|
||||
.dump = nft_fwd_netdev_dump,
|
||||
.validate = nft_fwd_validate,
|
||||
};
|
||||
|
||||
static const struct nft_expr_ops *
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user