diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:04:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:04:34 +0000 |
commit | 371c8a8bca2b6862226bc79c13d143e07c1d8fc3 (patch) | |
tree | 06c7dc8826596690422e79d5bde2f46c90492de3 /tests/nft-flowtable-test.c | |
parent | Initial commit. (diff) | |
download | libnftnl-371c8a8bca2b6862226bc79c13d143e07c1d8fc3.tar.xz libnftnl-371c8a8bca2b6862226bc79c13d143e07c1d8fc3.zip |
Adding upstream version 1.2.6.upstream/1.2.6upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/nft-flowtable-test.c')
-rw-r--r-- | tests/nft-flowtable-test.c | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/tests/nft-flowtable-test.c b/tests/nft-flowtable-test.c new file mode 100644 index 0000000..8ab8d4c --- /dev/null +++ b/tests/nft-flowtable-test.c @@ -0,0 +1,87 @@ +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <netinet/in.h> +#include <linux/netfilter/nf_tables.h> +#include <libnftnl/flowtable.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_flowtable(struct nftnl_flowtable *a, struct nftnl_flowtable *b) +{ + if (strcmp(nftnl_flowtable_get_str(a, NFTNL_FLOWTABLE_NAME), + nftnl_flowtable_get_str(b, NFTNL_FLOWTABLE_NAME)) != 0) + print_err("Flowtable name mismatches"); + if (strcmp(nftnl_flowtable_get_str(a, NFTNL_FLOWTABLE_TABLE), + nftnl_flowtable_get_str(b, NFTNL_FLOWTABLE_TABLE)) != 0) + print_err("Flowtable table mismatches"); + if (nftnl_flowtable_get_u32(a, NFTNL_FLOWTABLE_FAMILY) != + nftnl_flowtable_get_u32(b, NFTNL_FLOWTABLE_FAMILY)) + print_err("Flowtable family mismatches"); + if (nftnl_flowtable_get_u32(a, NFTNL_FLOWTABLE_HOOKNUM) != + nftnl_flowtable_get_u32(b, NFTNL_FLOWTABLE_HOOKNUM)) + print_err("Flowtable hooknum mismatches"); + if (nftnl_flowtable_get_s32(a, NFTNL_FLOWTABLE_PRIO) != + nftnl_flowtable_get_s32(b, NFTNL_FLOWTABLE_PRIO)) + print_err("Flowtable prio mismatches"); + if (nftnl_flowtable_get_u32(a, NFTNL_FLOWTABLE_USE) != + nftnl_flowtable_get_u32(b, NFTNL_FLOWTABLE_USE)) + print_err("Flowtable use mismatches"); +#if 0 + if (nftnl_flowtable_get_u32(a, NFTNL_FLOWTABLE_SIZE) != + nftnl_flowtable_get_u32(b, NFTNL_FLOWTABLE_SIZE)) + print_err("Flowtable size mismatches"); +#endif + if (nftnl_flowtable_get_u32(a, NFTNL_FLOWTABLE_FLAGS) != + nftnl_flowtable_get_u32(b, NFTNL_FLOWTABLE_FLAGS)) + print_err("Flowtable flags mismatches"); + if (nftnl_flowtable_get_u64(a, NFTNL_FLOWTABLE_HANDLE) != + nftnl_flowtable_get_u64(b, NFTNL_FLOWTABLE_HANDLE)) + print_err("Flowtable handle mismatches"); +} + +int main(int argc, char *argv[]) +{ + struct nftnl_flowtable *a, *b; + char buf[4096]; + struct nlmsghdr *nlh; + + a = nftnl_flowtable_alloc(); + b = nftnl_flowtable_alloc(); + if (a == NULL || b == NULL) + print_err("OOM"); + + nftnl_flowtable_set_str(a, NFTNL_FLOWTABLE_NAME, "test"); + nftnl_flowtable_set_u32(a, NFTNL_FLOWTABLE_FAMILY, AF_INET); + nftnl_flowtable_set_str(a, NFTNL_FLOWTABLE_TABLE, "Table"); + nftnl_flowtable_set_u32(a, NFTNL_FLOWTABLE_HOOKNUM, 0x34567812); + nftnl_flowtable_set_s32(a, NFTNL_FLOWTABLE_PRIO, 0x56781234); + nftnl_flowtable_set_u32(a, NFTNL_FLOWTABLE_USE, 0x78123456); + nftnl_flowtable_set_u32(a, NFTNL_FLOWTABLE_SIZE, 0x89016745); + nftnl_flowtable_set_u32(a, NFTNL_FLOWTABLE_FLAGS, 0x45016723); + nftnl_flowtable_set_u64(a, NFTNL_FLOWTABLE_HANDLE, 0x2345016789); + + nlh = nftnl_nlmsg_build_hdr(buf, NFT_MSG_NEWFLOWTABLE, AF_INET, + 0, 1234); + nftnl_flowtable_nlmsg_build_payload(nlh, a); + + if (nftnl_flowtable_nlmsg_parse(nlh, b) < 0) + print_err("parsing problems"); + + cmp_nftnl_flowtable(a, b); + + nftnl_flowtable_free(a); + nftnl_flowtable_free(b); + + if (!test_ok) + exit(EXIT_FAILURE); + + printf("%s: \033[32mOK\e[0m\n", argv[0]); + return EXIT_SUCCESS; +} |