projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fa173a1
)
netfilter: nft_ct: reject direction for ct id
author
Pablo Neira Ayuso
<pablo@netfilter.org>
Mon, 5 Feb 2024 13:59:24 +0000
(14:59 +0100)
committer
Pablo Neira Ayuso
<pablo@netfilter.org>
Thu, 8 Feb 2024 11:10:19 +0000
(12:10 +0100)
Direction attribute is ignored, reject it in case this ever needs to be
supported
Fixes: 3087c3f7c23b ("netfilter: nft_ct: Add ct id support")
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/netfilter/nft_ct.c
patch
|
blob
|
history
diff --git
a/net/netfilter/nft_ct.c
b/net/netfilter/nft_ct.c
index aac98a3c966e90e76824dfe5dfa362a857128efa..bfd3e5a14dab68484469bdba71af37a460822549 100644
(file)
--- a/
net/netfilter/nft_ct.c
+++ b/
net/netfilter/nft_ct.c
@@
-476,6
+476,9
@@
static int nft_ct_get_init(const struct nft_ctx *ctx,
break;
#endif
case NFT_CT_ID:
+ if (tb[NFTA_CT_DIRECTION])
+ return -EINVAL;
+
len = sizeof(u32);
break;
default: