netfilter: nft_ct: reject direction for ct id
[ Upstream commit 38ed1c7062ada30d7c11e7a7acc749bf27aa14aa ]
Direction attribute is ignored, reject it in case this ever needs to be
supported
Fixes: 3087c3f7c2
("netfilter: nft_ct: Add ct id support")
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
efdd665ce1
commit
181dade251
|
@ -484,6 +484,9 @@ static int nft_ct_get_init(const struct nft_ctx *ctx,
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
case NFT_CT_ID:
|
case NFT_CT_ID:
|
||||||
|
if (tb[NFTA_CT_DIRECTION])
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
len = sizeof(u32);
|
len = sizeof(u32);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in New Issue