mirror of
https://git.netfilter.org/libnftnl
synced 2026-01-27 10:54:07 +00:00
Replace the copyright notice in header comments by an equivalent
SPDX-License-Identifier string. Drop a following empty line if at the
bottom of the comment. Leave any other header comment content in place.
This also fixes for an incomplete notice in examples/nft-ruleset-get.c
since commit c335442eefcca ("src: incorrect header refers to GPLv2
only").
Signed-off-by: Phil Sutter <phil@nwl.cc>
Reviewed-by: Pablo Neira Ayuso <pablo@netfilter.org>
92 lines
2.3 KiB
C
92 lines
2.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* (C) 2013 by Ana Rey Botello <anarey@gmail.com>
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <netinet/in.h>
|
|
#include <netinet/ip.h>
|
|
#include <linux/netfilter/nf_tables.h>
|
|
#include <libmnl/libmnl.h>
|
|
#include <libnftnl/rule.h>
|
|
#include <libnftnl/expr.h>
|
|
|
|
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_u32(rule_a, NFTNL_EXPR_OBJREF_IMM_TYPE) !=
|
|
nftnl_expr_get_u32(rule_b, NFTNL_EXPR_OBJREF_IMM_TYPE))
|
|
print_err("Expr NFTNL_EXPR_OBJREF_IMM_TYPE mismatches");
|
|
if (strcmp(nftnl_expr_get_str(rule_a, NFTNL_EXPR_OBJREF_IMM_NAME),
|
|
nftnl_expr_get_str(rule_b, NFTNL_EXPR_OBJREF_IMM_NAME)))
|
|
print_err("Expr NFTNL_EXPR_OBJREF_IMM_NAME mismatches");
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
struct nftnl_rule *a, *b;
|
|
struct nftnl_expr *ex;
|
|
struct nlmsghdr *nlh;
|
|
char buf[4096];
|
|
struct nftnl_expr_iter *iter_a, *iter_b;
|
|
struct nftnl_expr *rule_a, *rule_b;
|
|
const char *name = "test_set_01243";
|
|
|
|
a = nftnl_rule_alloc();
|
|
b = nftnl_rule_alloc();
|
|
if (a == NULL || b == NULL)
|
|
print_err("OOM");
|
|
ex = nftnl_expr_alloc("objref");
|
|
if (ex == NULL)
|
|
print_err("OOM");
|
|
|
|
nftnl_expr_set_u32(ex, NFTNL_EXPR_OBJREF_IMM_TYPE, 0x78123456);
|
|
nftnl_expr_set_str(ex, NFTNL_EXPR_OBJREF_IMM_NAME, name);
|
|
|
|
nftnl_rule_add_expr(a, ex);
|
|
|
|
nlh = nftnl_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;
|
|
}
|