]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
evaluate: reject attempt to update a set
authorFlorian Westphal <fw@strlen.de>
Mon, 4 Dec 2023 21:00:06 +0000 (22:00 +0100)
committerFlorian Westphal <fw@strlen.de>
Tue, 5 Dec 2023 11:43:21 +0000 (12:43 +0100)
This will crash as set->data is NULL, so check that SET_REF is pointing
to a map:

Error: candidates_ipv4 is not a map
tcp dport 10003 ip saddr . tcp dport @candidates_ipv4 add @candidates_ipv4 { ip saddr . 10 :0004 timeout 1s }
                                     ~~~~~~~~~~~~~~~~

Signed-off-by: Florian Westphal <fw@strlen.de>
src/evaluate.c
tests/shell/testcases/bogons/nft-f/add_to_a_set_crash [new file with mode: 0644]

index 131b0a0eaa66b3e19e4d68581ceb499dbab44c0c..f05cac416eb8cc4c58fda8ab644529612b11ba39 100644 (file)
@@ -4344,6 +4344,10 @@ static int stmt_evaluate_map(struct eval_ctx *ctx, struct stmt *stmt)
                return expr_error(ctx->msgs, stmt->map.set,
                                  "Expression does not refer to a set");
 
+       if (!set_is_map(stmt->map.set->set->flags))
+               return expr_error(ctx->msgs, stmt->map.set,
+                                 "%s is not a map", stmt->map.set->set->handle.set.name);
+
        if (stmt_evaluate_key(ctx, stmt,
                              stmt->map.set->set->key->dtype,
                              stmt->map.set->set->key->len,
diff --git a/tests/shell/testcases/bogons/nft-f/add_to_a_set_crash b/tests/shell/testcases/bogons/nft-f/add_to_a_set_crash
new file mode 100644 (file)
index 0000000..80a01b4
--- /dev/null
@@ -0,0 +1,11 @@
+table t {
+        set candidates_ipv4 {
+                type ipv4_addr . inet_service
+                size 65535
+                flags dynamic,timeout
+        }
+
+        chain input {
+                tcp dport 10003 ip saddr . tcp dport @candidates_ipv4 add @candidates_ipv4 { ip saddr . 10 :0004 timeout 1s }
+        }
+}