mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
netfilter: nf_tables: reject constant set with timeout
commit5f4fc4bd5c
upstream. This set combination is weird: it allows for elements to be added/deleted, but once bound to the rule it cannot be updated anymore. Eventually, all elements expire, leading to an empty set which cannot be updated anymore. Reject this flags combination. Cc: stable@vger.kernel.org Fixes:761da2935d
("netfilter: nf_tables: add set timeout API support") Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e9a0d3f376
commit
0920c618d2
@ -3772,6 +3772,9 @@ static int nf_tables_newset(struct net *net, struct sock *nlsk,
|
||||
if ((flags & (NFT_SET_ANONYMOUS | NFT_SET_TIMEOUT | NFT_SET_EVAL)) ==
|
||||
(NFT_SET_ANONYMOUS | NFT_SET_TIMEOUT))
|
||||
return -EOPNOTSUPP;
|
||||
if ((flags & (NFT_SET_CONSTANT | NFT_SET_TIMEOUT)) ==
|
||||
(NFT_SET_CONSTANT | NFT_SET_TIMEOUT))
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
||||
dtype = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user