summaryrefslogtreecommitdiffstats
path: root/examples/nft-ruleset-parse-file.c
blob: cac7d0d07d4cfe5c399faf63f125101aa84b395f (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
/*
 * (C) 2014 by Alvaro Neira Ayuso <alvaroneay@gmail.com>
 *
 * 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 <stdlib.h>
#include <time.h>
#include <string.h>
#include <stddef.h>     /* for offsetof */
#include <netinet/in.h>
#include <netinet/ip.h>
#include <netinet/tcp.h>
#include <arpa/inet.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <errno.h>

#include <linux/netfilter.h>
#include <linux/netfilter/nfnetlink.h>
#include <linux/netfilter/nf_tables.h>

#include <libmnl/libmnl.h>
#include <libnftnl/ruleset.h>
#include <libnftnl/table.h>
#include <libnftnl/chain.h>
#include <libnftnl/rule.h>
#include <libnftnl/set.h>

struct mnl_nlmsg_batch *batch;
uint32_t seq;

static int nft_ruleset_set_elems(const struct nft_parse_ctx *ctx)
{
	struct nft_set_elems_iter *iter_elems;
	uint16_t nl_type, nl_flags;
	uint32_t cmd;
	struct nlmsghdr *nlh;
	struct nft_set *set;

	cmd = nft_ruleset_ctx_get_u32(ctx, NFT_RULESET_CTX_CMD);

	set = nft_ruleset_ctx_get(ctx, NFT_RULESET_CTX_SET);
	if (set == NULL)
		return -1;

	switch (cmd) {
	case NFT_CMD_ADD:
		nl_type = NFT_MSG_NEWSETELEM;
		nl_flags = NLM_F_CREATE|NLM_F_EXCL|NLM_F_ACK;
		break;
	case NFT_CMD_DELETE:
		nl_type = NFT_MSG_DELSETELEM;
		/* This will generate an ACK message for each request. When
		 * removing NLM_F_ACK, the kernel will only report when things
		 * go wrong
		 */
		nl_flags = NLM_F_ACK;
		break;
	default:
		goto err;
	}

	iter_elems = nft_set_elems_iter_create(set);
	if (iter_elems == NULL)
		goto err;

	nlh = nft_set_nlmsg_build_hdr(mnl_nlmsg_batch_current(batch), nl_type,
				      nft_set_attr_get_u32(set,
							   NFT_SET_ATTR_FAMILY),
				      nl_flags, seq++);

	nft_set_elems_nlmsg_build_payload_iter(nlh, iter_elems);
	mnl_nlmsg_batch_next(batch);

	nft_set_elems_iter_destroy(iter_elems);
	return 0;
err:
	return -1;
}

static int nft_ruleset_set(const struct nft_parse_ctx *ctx)
{

	struct nlmsghdr *nlh;
	uint16_t nl_type, nl_flags;
	struct nft_set *set;
	uint32_t cmd;
	int ret;

	cmd = nft_ruleset_ctx_get_u32(ctx, NFT_RULESET_CTX_CMD);

	set = nft_ruleset_ctx_get(ctx, NFT_RULESET_CTX_SET);
	if (set == NULL)
		return -1;

	switch (cmd) {
	case NFT_CMD_ADD:
		nl_type = NFT_MSG_NEWSET;
		nl_flags = NLM_F_CREATE|NLM_F_ACK;
		break;
	case NFT_CMD_DELETE:
		nl_type = NFT_MSG_DELSET;
		nl_flags = NLM_F_ACK;
		break;
	default:
		goto err;
	}

	nlh = nft_set_nlmsg_build_hdr(mnl_nlmsg_batch_current(batch),
				      nl_type,
				      nft_set_attr_get_u32(set,
							   NFT_SET_ATTR_FAMILY),
				      nl_flags,
				      seq++);

	nft_set_nlmsg_build_payload(nlh, set);
	mnl_nlmsg_batch_next(batch);

	ret = nft_ruleset_set_elems(ctx);
	return ret;
err:
	return -1;
}

static int nft_ruleset_rule_build_msg(const struct nft_parse_ctx *ctx,
				      uint32_t cmd, struct nft_rule *rule)
{
	struct nlmsghdr *nlh;
	uint16_t nl_type, nl_flags;

	switch (cmd) {
	case NFT_CMD_ADD:
		nl_type = NFT_MSG_NEWRULE;
		nl_flags = NLM_F_APPEND|NLM_F_CREATE|NLM_F_ACK;
		nft_rule_attr_unset(rule, NFT_RULE_ATTR_HANDLE);
		break;
	case NFT_CMD_DELETE:
		nl_type = NFT_MSG_DELRULE;
		nl_flags = NLM_F_ACK;
		break;
	case NFT_CMD_REPLACE:
		nl_type = NFT_MSG_NEWRULE;
		nl_flags = NLM_F_REPLACE|NLM_F_ACK;
		break;
	case NFT_CMD_INSERT:
		nl_type = NFT_MSG_NEWRULE;
		nl_flags = NLM_F_CREATE|NLM_F_ACK;
		nft_rule_attr_unset(rule, NFT_RULE_ATTR_HANDLE);
		break;
	default:
		return -1;
	}

	nlh = nft_rule_nlmsg_build_hdr(mnl_nlmsg_batch_current(batch),
				       nl_type,
				       nft_rule_attr_get_u32(rule,
							  NFT_RULE_ATTR_FAMILY),
				       nl_flags,
				       seq++);

	nft_rule_nlmsg_build_payload(nlh, rule);
	mnl_nlmsg_batch_next(batch);

	return 0;
}

static int nft_ruleset_rule(const struct nft_parse_ctx *ctx)
{
	struct nft_rule *rule;
	int ret;
	uint32_t cmd;

	cmd = nft_ruleset_ctx_get_u32(ctx, NFT_RULESET_CTX_CMD);

	rule = nft_ruleset_ctx_get(ctx, NFT_RULESET_CTX_RULE);
	if (rule == NULL)
		return -1;

	ret = nft_ruleset_rule_build_msg(ctx, cmd, rule);

	return ret;
}

static int nft_ruleset_flush_rules(const struct nft_parse_ctx *ctx)
{
	struct nft_rule *nlr;
	struct nft_table *nlt;
	struct nft_chain *nlc;
	uint32_t type;
	int ret;

	nlr = nft_rule_alloc();
	if (nlr == NULL)
		return -1;

	type = nft_ruleset_ctx_get_u32(ctx, NFT_RULESET_CTX_TYPE);
	switch (type) {
	case NFT_RULESET_TABLE:
		nlt = nft_ruleset_ctx_get(ctx, NFT_RULESET_CTX_TABLE);
		nft_rule_attr_set(nlr, NFT_RULE_ATTR_TABLE,
				  nft_table_attr_get(nlt, NFT_TABLE_ATTR_NAME));
		nft_rule_attr_set(nlr, NFT_RULE_ATTR_FAMILY,
				nft_table_attr_get(nlt, NFT_TABLE_ATTR_FAMILY));
		break;
	case NFT_RULESET_CHAIN:
		nlc = nft_ruleset_ctx_get(ctx, NFT_RULESET_CTX_CHAIN);
		nft_rule_attr_set(nlr, NFT_RULE_ATTR_TABLE,
				  nft_chain_attr_get(nlc,
						     NFT_CHAIN_ATTR_TABLE));
		nft_rule_attr_set(nlr, NFT_RULE_ATTR_CHAIN,
				  nft_chain_attr_get(nlc,
						     NFT_CHAIN_ATTR_NAME));
		nft_rule_attr_set(nlr, NFT_RULE_ATTR_FAMILY,
				nft_chain_attr_get(nlc, NFT_TABLE_ATTR_FAMILY));
		break;
	default:
		goto err;
	}

	ret = nft_ruleset_rule_build_msg(ctx, NFT_CMD_DELETE, nlr);
	nft_rule_free(nlr);

	return ret;
err:
	nft_rule_free(nlr);
	return -1;
}

static int nft_ruleset_chain(const struct nft_parse_ctx *ctx)
{
	struct nlmsghdr *nlh;
	uint16_t nl_type, nl_flags;
	uint32_t cmd;
	struct nft_chain *chain;

	cmd = nft_ruleset_ctx_get_u32(ctx, NFT_RULESET_CTX_CMD);

	chain = nft_ruleset_ctx_get(ctx, NFT_RULESET_CTX_CHAIN);
	if (chain == NULL)
		return -1;

	switch (cmd) {
	case NFT_CMD_ADD:
		nl_type = NFT_MSG_NEWCHAIN;
		nl_flags = NLM_F_CREATE|NLM_F_ACK;
		break;
	case NFT_CMD_DELETE:
		nl_type = NFT_MSG_DELCHAIN;
		nl_flags = NLM_F_ACK;
		break;
	case NFT_CMD_FLUSH:
		return nft_ruleset_flush_rules(ctx);
	default:
		goto err;
	}

	nft_chain_attr_unset(chain, NFT_CHAIN_ATTR_HANDLE);
	nlh = nft_chain_nlmsg_build_hdr(mnl_nlmsg_batch_current(batch),
					nl_type,
					nft_chain_attr_get_u32(chain,
							 NFT_CHAIN_ATTR_FAMILY),
					nl_flags,
					seq++);

	nft_chain_nlmsg_build_payload(nlh, chain);
	mnl_nlmsg_batch_next(batch);

	return 0;
err:
	return -1;
}

static int nft_ruleset_table_build_msg(const struct nft_parse_ctx *ctx,
				       uint32_t cmd, struct nft_table *table)
{
	struct nlmsghdr *nlh;
	uint16_t nl_type, nl_flags;

	switch (cmd) {
	case NFT_CMD_ADD:
		nl_type = NFT_MSG_NEWTABLE;
		nl_flags = NLM_F_CREATE|NLM_F_ACK;
		break;
	case NFT_CMD_DELETE:
		nl_type = NFT_MSG_DELTABLE;
		nl_flags = NLM_F_ACK;
		break;
	case NFT_CMD_FLUSH:
		return nft_ruleset_flush_rules(ctx);
	default:
		return -1;
	}

	nlh = nft_table_nlmsg_build_hdr(mnl_nlmsg_batch_current(batch),
					nl_type,
					nft_table_attr_get_u32(table,
							 NFT_TABLE_ATTR_FAMILY),
					nl_flags,
					seq++);

	nft_table_nlmsg_build_payload(nlh, table);
	mnl_nlmsg_batch_next(batch);

	return 0;
}

static int nft_ruleset_table(const struct nft_parse_ctx *ctx)
{
	struct nft_table *table;
	uint32_t cmd;
	int ret;

	cmd = nft_ruleset_ctx_get_u32(ctx, NFT_RULESET_CTX_CMD);

	table = nft_ruleset_ctx_get(ctx, NFT_RULESET_CTX_TABLE);
	if (table == NULL)
		return -1;

	ret = nft_ruleset_table_build_msg(ctx, cmd, table);

	return ret;
}

static int nft_ruleset_flush_ruleset(const struct nft_parse_ctx *ctx)
{
	struct nft_table *table;
	int ret;

	table = nft_table_alloc();
	if (table == NULL)
		return -1;

	ret = nft_ruleset_table_build_msg(ctx, NFT_CMD_DELETE, table);
	nft_table_free(table);

	return ret;
}

static int ruleset_elems_cb(const struct nft_parse_ctx *ctx)
{
	uint32_t type;
	int ret;

	type = nft_ruleset_ctx_get_u32(ctx, NFT_RULESET_CTX_TYPE);

	switch (type) {
	case NFT_RULESET_TABLE:
		ret = nft_ruleset_table(ctx);
		break;
	case NFT_RULESET_CHAIN:
		ret = nft_ruleset_chain(ctx);
		break;
	case NFT_RULESET_RULE:
		ret = nft_ruleset_rule(ctx);
		break;
	case NFT_RULESET_SET:
		ret = nft_ruleset_set(ctx);
		break;
	case NFT_RULESET_SET_ELEMS:
		ret = nft_ruleset_set_elems(ctx);
		break;
	case NFT_RULESET_RULESET:
		ret = nft_ruleset_flush_ruleset(ctx);
		break;
	default:
		return -1;
	}

	nft_ruleset_ctx_free(ctx);
	return ret;
}

int main(int argc, char *argv[])
{
	struct nft_parse_err *err;
	const char *filename;
	FILE *fp;
	int ret = -1, len, batching, portid;
	uint32_t ruleset_seq;
	char buf[MNL_SOCKET_BUFFER_SIZE];
	struct mnl_socket *nl;

	if (argc < 2) {
		printf("Usage: %s <file>\n", argv[0]);
		exit(EXIT_FAILURE);
	}

	fp = fopen(argv[1], "r");
	if (fp == NULL) {
		printf("unable to open file %s: %s\n", argv[1],
		       strerror(errno));
		exit(EXIT_FAILURE);
	}

	err = nft_parse_err_alloc();
	if (err == NULL) {
		perror("error");
		exit(EXIT_FAILURE);
	}

	batching = nft_batch_is_supported();
	if (batching < 0) {
		perror("Cannot talk to nfnetlink");
		exit(EXIT_FAILURE);
	}

	seq = time(NULL);
	batch = mnl_nlmsg_batch_start(buf, sizeof(buf));

	if (batching) {
		nft_batch_begin(mnl_nlmsg_batch_current(batch), seq++);
		mnl_nlmsg_batch_next(batch);
	}
	ruleset_seq = seq;

	filename = argv[1];
	len = strlen(filename);
	if (len >= 5 && strcmp(&filename[len - 5], ".json") == 0)
		ret = nft_ruleset_parse_file_cb(NFT_PARSE_JSON, fp, err, NULL,
						&ruleset_elems_cb);
	else if (len >= 4 && strcmp(&filename[len - 4], ".xml") == 0)
		ret = nft_ruleset_parse_file_cb(NFT_PARSE_XML, fp, err, NULL,
						&ruleset_elems_cb);
	else {
		printf("the filename %s must to end in .xml or .json\n",
			filename);
		exit(EXIT_FAILURE);
	}

	if (ret < 0) {
		nft_parse_perror("fail", err);
		exit(EXIT_FAILURE);
	}

	fclose(fp);

	if (batching) {
		nft_batch_end(mnl_nlmsg_batch_current(batch), seq++);
		mnl_nlmsg_batch_next(batch);
	}

	nl = mnl_socket_open(NETLINK_NETFILTER);
	if (nl == NULL) {
		perror("mnl_socket_open");
		exit(EXIT_FAILURE);
	}

	if (mnl_socket_bind(nl, 0, MNL_SOCKET_AUTOPID) < 0) {
		perror("mnl_socket_bind");
		exit(EXIT_FAILURE);
	}
	portid = mnl_socket_get_portid(nl);

	if (mnl_socket_sendto(nl, mnl_nlmsg_batch_head(batch),
			      mnl_nlmsg_batch_size(batch)) < 0) {
		perror("mnl_socket_send");
		exit(EXIT_FAILURE);
	}

	mnl_nlmsg_batch_stop(batch);

	ret = mnl_socket_recvfrom(nl, buf, sizeof(buf));
	while (ret > 0) {
		ret = mnl_cb_run(buf, ret, ruleset_seq, portid, NULL, NULL);
		if (ret <= 0)
			break;
		ret = mnl_socket_recvfrom(nl, buf, sizeof(buf));
	}
	if (ret == -1) {
		perror("error");
		exit(EXIT_FAILURE);
	}

	mnl_socket_close(nl);
	return EXIT_SUCCESS;
}