summaryrefslogtreecommitdiffstats
path: root/examples/nft-buffer.c
blob: 1c4b1e041d75d6d0c4c676c4951359c60a6f387e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* gcc nft-buffer.c -o nft-buffer -lnftables */
#include <stdlib.h>
#include <nftables/libnftables.h>

const char ruleset[] =
	"flush ruleset;"
	"add table x;"
	"add chain x y { type filter hook input priority 0; };"
	"add rule x y counter;";

int main(void)
{
	struct nft_ctx *ctx;
	int err;

	ctx = nft_ctx_new(0);
	if (!ctx) {
		perror("cannot allocate nft context");
		return EXIT_FAILURE;
	}

	/* create ruleset: all commands in the buffer are atomically applied */
	err = nft_run_cmd_from_buffer(ctx, ruleset);
	if (err < 0)
		fprintf(stderr, "failed to run nftables command\n");

	err = nft_run_cmd_from_buffer(ctx, "list ruleset");
	if (err < 0)
		fprintf(stderr, "failed to run nftables command\n");

	nft_ctx_free(ctx);

	return EXIT_SUCCESS;
}