From d2a13436aa3029333d4352e7bcddf956735ec0a8 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Thu, 18 Aug 2016 18:51:28 +0200 Subject: expr: add quota expression This patch adds support for the new quota expression. Signed-off-by: Pablo Neira Ayuso --- tests/nft-expr_quota-test.c | 92 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 tests/nft-expr_quota-test.c (limited to 'tests/nft-expr_quota-test.c') diff --git a/tests/nft-expr_quota-test.c b/tests/nft-expr_quota-test.c new file mode 100644 index 0000000..2320551 --- /dev/null +++ b/tests/nft-expr_quota-test.c @@ -0,0 +1,92 @@ +/* + * (C) 2016 by Pablo Neira Ayuso + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + */ + +#include +#include +#include + +#include +#include +#include +#include +#include +#include + +static int test_ok = 1; + +static void print_err(const char *msg) +{ + test_ok = 0; + printf("\033[31mERROR:\e[0m %s\n", msg); +} + +static void cmp_nftnl_expr(struct nftnl_expr *rule_a, struct nftnl_expr *rule_b) +{ + if (nftnl_expr_get_u64(rule_a, NFTNL_EXPR_QUOTA_BYTES) != + nftnl_expr_get_u64(rule_b, NFTNL_EXPR_QUOTA_BYTES)) + print_err("Expr NFTNL_EXPR_QUOTA_BYTES mismatches"); + if (nftnl_expr_get_u64(rule_a, NFTNL_EXPR_QUOTA_FLAGS) != + nftnl_expr_get_u64(rule_b, NFTNL_EXPR_QUOTA_FLAGS)) + print_err("Expr NFTNL_EXPR_QUOTA_FLAGS mismatches"); +} + +int main(int argc, char *argv[]) +{ + struct nftnl_expr_iter *iter_a, *iter_b; + struct nftnl_expr *rule_a, *rule_b; + struct nftnl_rule *a, *b; + struct nftnl_expr *ex; + struct nlmsghdr *nlh; + char buf[4096]; + + a = nftnl_rule_alloc(); + b = nftnl_rule_alloc(); + if (a == NULL || b == NULL) + print_err("OOM"); + + ex = nftnl_expr_alloc("counter"); + if (ex == NULL) + print_err("OOM"); + + nftnl_expr_set_u64(ex, NFTNL_EXPR_QUOTA_BYTES, 0x123456789abcdef0); + nftnl_expr_set_u32(ex, NFTNL_EXPR_QUOTA_FLAGS, 0x12345678); + nftnl_rule_add_expr(a, ex); + + nlh = nftnl_rule_nlmsg_build_hdr(buf, NFT_MSG_NEWRULE, AF_INET, 0, 1234); + nftnl_rule_nlmsg_build_payload(nlh, a); + + if (nftnl_rule_nlmsg_parse(nlh, b) < 0) + print_err("parsing problems"); + + iter_a = nftnl_expr_iter_create(a); + iter_b = nftnl_expr_iter_create(b); + if (iter_a == NULL || iter_b == NULL) + print_err("OOM"); + rule_a = nftnl_expr_iter_next(iter_a); + rule_b = nftnl_expr_iter_next(iter_b); + if (rule_a == NULL || rule_b == NULL) + print_err("OOM"); + + cmp_nftnl_expr(rule_a, rule_b); + + if (nftnl_expr_iter_next(iter_a) != NULL || + nftnl_expr_iter_next(iter_b) != NULL) + print_err("More 1 expr."); + + nftnl_expr_iter_destroy(iter_a); + nftnl_expr_iter_destroy(iter_b); + nftnl_rule_free(a); + nftnl_rule_free(b); + + if (!test_ok) + exit(EXIT_FAILURE); + printf("%s: \033[32mOK\e[0m\n", argv[0]); + return EXIT_SUCCESS; +} -- cgit v1.2.3