summaryrefslogtreecommitdiffstats
path: root/extensions/libxt_MARK.c
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2018-02-19 10:57:18 +0100
committerFlorian Westphal <fw@strlen.de>2018-02-20 12:44:06 +0100
commita93b5021ae85940803a890e1dc4a2ba3d6a6f37c (patch)
tree754d38f67860b299068d636d540f5346a3ba961c /extensions/libxt_MARK.c
parent577b7e20c2af1e6ea2bbe72e0c01802334fa4069 (diff)
extensions: prefer plain 'set' over 'set mark and'
adding a test case for MARK --set-mark 0 fails with exp: nft add rule ip mangle OUTPUT counter meta mark set 0x0 res: nft add rule ip mangle OUTPUT counter meta mark set mark and 0x0 This translation isn't wrong, but unneccessarily complex, so change order to first check if mask bits are all ones. In that case we can simply use an immediate value without need for logical operators. Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'extensions/libxt_MARK.c')
-rw-r--r--extensions/libxt_MARK.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/libxt_MARK.c b/extensions/libxt_MARK.c
index 12b1695e..5c6186fe 100644
--- a/extensions/libxt_MARK.c
+++ b/extensions/libxt_MARK.c
@@ -252,14 +252,14 @@ static int mark_tg_xlate(struct xt_xlate *xl,
xt_xlate_add(xl, "meta mark set ");
- if (info->mark == 0)
+ if (info->mask == 0xffffffffU)
+ xt_xlate_add(xl, "0x%x ", info->mark);
+ else if (info->mark == 0)
xt_xlate_add(xl, "mark and 0x%x ", ~info->mask);
else if (info->mark == info->mask)
xt_xlate_add(xl, "mark or 0x%x ", info->mark);
else if (info->mask == 0)
xt_xlate_add(xl, "mark xor 0x%x ", info->mark);
- else if (info->mask == 0xffffffffU)
- xt_xlate_add(xl, "0x%x ", info->mark);
else
xt_xlate_add(xl, "mark and 0x%x xor 0x%x ", ~info->mask,
info->mark);