File: nft-json-file.c

package info (click to toggle)
nftables 1.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 14,372 kB
  • sloc: ansic: 49,171; sh: 18,252; yacc: 5,603; python: 1,710; lex: 1,342; makefile: 352
file content (30 lines) | stat: -rw-r--r-- 687 bytes parent folder | download | duplicates (3)
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
/* gcc nft-json-file.c -o nft-json-file -lnftables */
#include <stdlib.h>
#include <nftables/libnftables.h>

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

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

	nft_ctx_output_set_flags(ctx, NFT_CTX_OUTPUT_JSON);

	/* create ruleset: all commands in the buffer are atomically applied */
	err = nft_run_cmd_from_filename(ctx, "json-ruleset.nft");
	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;
}