summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJeremy Sowden <jeremy@azazel.net>2019-11-05 21:40:26 +0000
committerFlorian Westphal <fw@strlen.de>2019-11-06 15:36:09 +0100
commit9ddd1b7fadfa6973fe1ddd6ac0e07a1759294a96 (patch)
tree3eed5ed278113431673a1906bba68f668df3155b /include
parent91487a80551ea91714082da41aa49ba52dd6e9bb (diff)
src: add and use `set_is_meter` helper
The sets constructed for meters are flagged as anonymous and dynamic. However, in some places there are only checks that they are dynamic, which can lead to normal sets being classified as meters. For example: # nft add table t # nft add set t s { type ipv4_addr; size 256; flags dynamic,timeout; } # nft add chain t c # nft add rule t c tcp dport 80 meter m size 128 { ip saddr limit rate 10/second } # nft list meters table ip t { set s { type ipv4_addr size 256 flags dynamic,timeout } meter m { type ipv4_addr size 128 flags dynamic } } # nft list meter t m table ip t { meter m { type ipv4_addr size 128 flags dynamic } } # nft list meter t s Error: No such file or directory list meter t s ^ Add a new helper `set_is_meter` and use it wherever there are checks for meters. Signed-off-by: Jeremy Sowden <jeremy@azazel.net> Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'include')
-rw-r--r--include/rule.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/rule.h b/include/rule.h
index a718923b..48b5ba50 100644
--- a/include/rule.h
+++ b/include/rule.h
@@ -356,6 +356,11 @@ static inline bool map_is_literal(uint32_t set_flags)
return !(set_is_anonymous(set_flags) || !set_is_map(set_flags));
}
+static inline bool set_is_meter(uint32_t set_flags)
+{
+ return set_is_anonymous(set_flags) && (set_flags & NFT_SET_EVAL);
+}
+
#include <statement.h>
struct counter {