xtables-restore.c 13.3 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Code to restore the iptables state, from file by iptables-save.
 * (C) 2000-2002 by Harald Welte <laforge@gnumonks.org>
 * based on previous code from Rusty Russell <rusty@linuxcare.com.au>
 *
 * This code is distributed under the terms of GNU GPL v2
 */

#include <getopt.h>
#include <errno.h>
#include <stdbool.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include "iptables.h"
#include "xtables.h"
#include "libiptc/libiptc.h"
#include "xtables-multi.h"
#include "nft.h"
19
#include "nft-bridge.h"
20
21
#include <libnftnl/chain.h>

22
static int counters, verbose, noflush;
23
24
25
26
27

/* Keeping track of external matches and targets.  */
static const struct option options[] = {
	{.name = "counters", .has_arg = false, .val = 'c'},
	{.name = "verbose",  .has_arg = false, .val = 'v'},
28
	{.name = "version",       .has_arg = 0, .val = 'V'},
29
30
31
32
33
34
35
	{.name = "test",     .has_arg = false, .val = 't'},
	{.name = "help",     .has_arg = false, .val = 'h'},
	{.name = "noflush",  .has_arg = false, .val = 'n'},
	{.name = "modprobe", .has_arg = true,  .val = 'M'},
	{.name = "table",    .has_arg = true,  .val = 'T'},
	{.name = "ipv4",     .has_arg = false, .val = '4'},
	{.name = "ipv6",     .has_arg = false, .val = '6'},
36
37
	{.name = "wait",          .has_arg = 2, .val = 'w'},
	{.name = "wait-interval", .has_arg = 2, .val = 'W'},
38
39
40
41
	{NULL},
};

#define prog_name xtables_globals.program_name
42
#define prog_vers xtables_globals.program_version
43
44
45

static void print_usage(const char *name, const char *version)
{
46
	fprintf(stderr, "Usage: %s [-c] [-v] [-V] [-t] [-h] [-n] [-T table] [-M command] [-4] [-6]\n"
47
48
			"	   [ --counters ]\n"
			"	   [ --verbose ]\n"
49
			"	   [ --version]\n"
50
51
52
53
			"	   [ --test ]\n"
			"	   [ --help ]\n"
			"	   [ --noflush ]\n"
			"	   [ --table=<TABLE> ]\n"
54
55
56
			"          [ --modprobe=<command> ]\n"
			"	   [ --ipv4 ]\n"
			"	   [ --ipv6 ]\n", name);
57
58
}

59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
static struct nftnl_chain_list *get_chain_list(struct nft_handle *h)
{
	struct nftnl_chain_list *chain_list;

	chain_list = nft_chain_dump(h);
	if (chain_list == NULL)
		xtables_error(OTHER_PROBLEM, "cannot retrieve chain list\n");

	return chain_list;
}

static void chain_delete(struct nftnl_chain_list *clist, const char *curtable,
			 const char *chain)
{
	struct nftnl_chain *chain_obj;

	chain_obj = nft_chain_list_find(clist, curtable, chain);
	/* This chain has been found, delete from list. Later
	 * on, unvisited chains will be purged out.
	 */
79
	if (chain_obj != NULL) {
80
		nftnl_chain_list_del(chain_obj);
81
82
		nftnl_chain_free(chain_obj);
	}
83
84
85
86
87
88
}

struct nft_xt_restore_cb restore_cb = {
	.chain_list	= get_chain_list,
	.commit		= nft_commit,
	.abort		= nft_abort,
89
90
91
	.table_new	= nft_table_new,
	.table_flush	= nft_table_flush,
	.chain_user_flush = nft_chain_user_flush,
92
93
94
95
96
97
	.chain_del	= chain_delete,
	.do_command	= do_commandx,
	.chain_set	= nft_chain_set,
	.chain_user_add	= nft_chain_user_add,
};

98
99
100
101
static const struct xtc_ops xtc_ops = {
	.strerror	= nft_strerror,
};

102
103
104
105
void xtables_restore_parse(struct nft_handle *h,
			   struct nft_xt_restore_parse *p,
			   struct nft_xt_restore_cb *cb,
			   int argc, char *argv[])
106
107
{
	char buffer[10240];
108
	int in_table = 0;
109
	struct builtin_table *curtable = NULL;
110
	const struct xtc_ops *ops = &xtc_ops;
111
	struct nftnl_chain_list *chain_list = NULL;
112
113
114

	line = 0;

115
116
	if (cb->chain_list)
		chain_list = cb->chain_list(h);
117
118

	/* Grab standard input. */
119
	while (fgets(buffer, sizeof(buffer), p->in)) {
120
121
122
		int ret = 0;

		line++;
123
124
		h->error.lineno = line;

125
126
127
128
129
130
131
		if (buffer[0] == '\n')
			continue;
		else if (buffer[0] == '#') {
			if (verbose)
				fputs(buffer, stdout);
			continue;
		} else if ((strcmp(buffer, "COMMIT\n") == 0) && (in_table)) {
132
			if (!p->testing) {
133
134
135
136
137
				/* Commit per table, although we support
				 * global commit at once, stick by now to
				 * the existing behaviour.
				 */
				DEBUGP("Calling commit\n");
138
139
				if (cb->commit)
					ret = cb->commit(h);
140
141
			} else {
				DEBUGP("Not calling commit, testing\n");
142
143
				if (cb->abort)
					ret = cb->abort(h);
144
145
146
			}
			in_table = 0;

147
		} else if ((buffer[0] == '*') && (!in_table || !p->commit)) {
148
149
150
151
152
153
154
155
156
157
158
			/* New table */
			char *table;

			table = strtok(buffer+1, " \t\n");
			DEBUGP("line %u, table '%s'\n", line, table);
			if (!table) {
				xtables_error(PARAMETER_PROBLEM,
					"%s: line %u table name invalid\n",
					xt_params->program_name, line);
				exit(1);
			}
159
160
161
162
163
			curtable = nft_table_builtin_find(h, table);
			if (!curtable)
				xtables_error(PARAMETER_PROBLEM,
					"%s: line %u table name '%s' invalid\n",
					xt_params->program_name, line, table);
164

165
			if (p->tablename && (strcmp(p->tablename, table) != 0))
166
167
168
169
170
				continue;

			if (noflush == 0) {
				DEBUGP("Cleaning all chains of table '%s'\n",
					table);
171
172
				if (cb->table_flush)
					cb->table_flush(h, table);
173
174
175
176
177
			}

			ret = 1;
			in_table = 1;

178
179
180
			if (cb->table_new)
				cb->table_new(h, table);

181
182
183
184
		} else if ((buffer[0] == ':') && (in_table)) {
			/* New chain. */
			char *policy, *chain = NULL;
			struct xt_counters count = {};
185
			bool chain_exists = false;
186
187
188
189
190
191
192
193
194
195

			chain = strtok(buffer+1, " \t\n");
			DEBUGP("line %u, chain '%s'\n", line, chain);
			if (!chain) {
				xtables_error(PARAMETER_PROBLEM,
					   "%s: line %u chain name invalid\n",
					   xt_params->program_name, line);
				exit(1);
			}

196
197
			if (noflush == 0) {
				if (cb->chain_del)
198
					cb->chain_del(chain_list, curtable->name,
199
						      chain);
200
201
202
			} else if (nft_chain_list_find(chain_list,
						       curtable->name, chain)) {
				chain_exists = true;
203
204
205
206
207
208
				/* Apparently -n still flushes existing user
				 * defined chains that are redefined. Otherwise,
				 * leave them as is.
				 */
				if (cb->chain_user_flush)
					cb->chain_user_flush(h, chain_list,
209
							     curtable->name, chain);
210
			}
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226

			if (strlen(chain) >= XT_EXTENSION_MAXNAMELEN)
				xtables_error(PARAMETER_PROBLEM,
					   "Invalid chain name `%s' "
					   "(%u chars max)",
					   chain, XT_EXTENSION_MAXNAMELEN - 1);

			policy = strtok(NULL, " \t\n");
			DEBUGP("line %u, policy '%s'\n", line, policy);
			if (!policy) {
				xtables_error(PARAMETER_PROBLEM,
					   "%s: line %u policy invalid\n",
					   xt_params->program_name, line);
				exit(1);
			}

227
			if (nft_chain_builtin_find(curtable, chain)) {
228
229
230
231
232
233
234
235
236
237
				if (counters) {
					char *ctrs;
					ctrs = strtok(NULL, " \t\n");

					if (!ctrs || !parse_counters(ctrs, &count))
						xtables_error(PARAMETER_PROBLEM,
							   "invalid policy counters "
							   "for chain '%s'\n", chain);

				}
238
				if (cb->chain_set &&
239
240
				    cb->chain_set(h, curtable->name,
					          chain, policy, &count) < 0) {
241
242
243
244
245
246
247
248
249
250
251
					xtables_error(OTHER_PROBLEM,
						      "Can't set policy `%s'"
						      " on `%s' line %u: %s\n",
						      policy, chain, line,
						      ops->strerror(errno));
				}
				DEBUGP("Setting policy of chain %s to %s\n",
				       chain, policy);
				ret = 1;

			} else {
252
253
254
255
				if (!chain_exists &&
				    cb->chain_user_add &&
				    cb->chain_user_add(h, chain,
						       curtable->name) < 0) {
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
					if (errno == EEXIST)
						continue;

					xtables_error(PARAMETER_PROBLEM,
						      "cannot create chain "
						      "'%s' (%s)\n", chain,
						      strerror(errno));
				}
				continue;
			}

		} else if (in_table) {
			int a;
			char *pcnt = NULL;
			char *bcnt = NULL;
			char *parsestart;

			/* reset the newargv */
			newargc = 0;

			if (buffer[0] == '[') {
				/* we have counters in our input */
278
279
				char *ptr = strchr(buffer, ']');

280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
				if (!ptr)
					xtables_error(PARAMETER_PROBLEM,
						   "Bad line %u: need ]\n",
						   line);

				pcnt = strtok(buffer+1, ":");
				if (!pcnt)
					xtables_error(PARAMETER_PROBLEM,
						   "Bad line %u: need :\n",
						   line);

				bcnt = strtok(NULL, "]");
				if (!bcnt)
					xtables_error(PARAMETER_PROBLEM,
						   "Bad line %u: need ]\n",
						   line);

				/* start command parsing after counter */
				parsestart = ptr + 1;
			} else {
				/* start command parsing at start of line */
				parsestart = buffer;
			}

304
305
306
			add_argv(argv[0], 0);
			add_argv("-t", 0);
			add_argv(curtable->name, 0);
307
308

			if (counters && pcnt && bcnt) {
309
310
311
				add_argv("--set-counters", 0);
				add_argv((char *) pcnt, 0);
				add_argv((char *) bcnt, 0);
312
313
			}

314
			add_param_to_argv(parsestart, line);
315
316

			DEBUGP("calling do_command4(%u, argv, &%s, handle):\n",
317
				newargc, curtable->name);
318
319
320
321

			for (a = 0; a < newargc; a++)
				DEBUGP("argv[%u]: %s\n", a, newargv[a]);

322
323
			ret = cb->do_command(h, newargc, newargv,
					    &newargv[2], true);
324
			if (ret < 0) {
325
326
327
328
329
				if (cb->abort)
					ret = cb->abort(h);
				else
					ret = 0;

330
331
332
333
334
335
336
337
338
339
				if (ret < 0) {
					fprintf(stderr, "failed to abort "
							"commit operation\n");
				}
				exit(1);
			}

			free_argv();
			fflush(stdout);
		}
340
341
		if (p->tablename && curtable &&
		    (strcmp(p->tablename, curtable->name) != 0))
342
343
344
345
346
347
348
			continue;
		if (!ret) {
			fprintf(stderr, "%s: line %u failed\n",
					xt_params->program_name, line);
			exit(1);
		}
	}
349
	if (in_table && p->commit) {
350
351
352
		fprintf(stderr, "%s: COMMIT expected at line %u\n",
				xt_params->program_name, line + 1);
		exit(1);
353
354
355
	} else if (in_table && cb->commit && !cb->commit(h)) {
		xtables_error(OTHER_PROBLEM, "%s: final implicit COMMIT failed",
			      xt_params->program_name);
356
	}
357
358
359
360
361
}

static int
xtables_restore_main(int family, const char *progname, int argc, char *argv[])
{
362
	struct builtin_table *tables;
363
364
365
366
367
	struct nft_handle h = {
		.family = family,
		.restore = true,
	};
	int c;
368
369
370
	struct nft_xt_restore_parse p = {
		.commit = true,
	};
371
372
373
374
375
376
377
378
379
380
381
382

	line = 0;

	xtables_globals.program_name = progname;
	c = xtables_init_all(&xtables_globals, family);
	if (c < 0) {
		fprintf(stderr, "%s/%s Failed to initialize xtables\n",
				xtables_globals.program_name,
				xtables_globals.program_version);
		exit(1);
	}

383
	while ((c = getopt_long(argc, argv, "bcvVthnM:T:46wW", options, NULL)) != -1) {
384
385
386
387
388
389
390
391
392
393
		switch (c) {
			case 'b':
				fprintf(stderr, "-b/--binary option is not implemented\n");
				break;
			case 'c':
				counters = 1;
				break;
			case 'v':
				verbose = 1;
				break;
394
395
396
			case 'V':
				printf("%s v%s (nf_tables)\n", prog_name, prog_vers);
				exit(0);
397
398
399
400
401
402
			case 't':
				p.testing = 1;
				break;
			case 'h':
				print_usage("xtables-restore",
					    IPTABLES_VERSION);
403
				exit(0);
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
			case 'n':
				noflush = 1;
				break;
			case 'M':
				xtables_modprobe_program = optarg;
				break;
			case 'T':
				p.tablename = optarg;
				break;
			case '4':
				h.family = AF_INET;
				break;
			case '6':
				h.family = AF_INET6;
				xtables_set_nfproto(AF_INET6);
				break;
420
421
			case 'w': /* fallthrough.  Ignored by xt-restore */
			case 'W':
422
423
				if (!optarg && xs_has_arg(argc, argv))
					optind++;
424
				break;
425
426
427
428
			default:
				fprintf(stderr,
					"Try `xtables-restore -h' for more information.\n");
				exit(1);
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
		}
	}

	if (optind == argc - 1) {
		p.in = fopen(argv[optind], "re");
		if (!p.in) {
			fprintf(stderr, "Can't open %s: %s\n", argv[optind],
				strerror(errno));
			exit(1);
		}
	} else if (optind < argc) {
		fprintf(stderr, "Unknown arguments found on commandline\n");
		exit(1);
	} else {
		p.in = stdin;
	}

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
	switch (family) {
	case NFPROTO_IPV4:
	case NFPROTO_IPV6: /* fallthough, same table */
		tables = xtables_ipv4;
#if defined(ALL_INCLUSIVE) || defined(NO_SHARED_LIBS)
		init_extensions();
		init_extensions4();
#endif
		break;
	case NFPROTO_ARP:
		tables = xtables_arp;
		break;
	case NFPROTO_BRIDGE:
		tables = xtables_bridge;
		break;
	default:
		fprintf(stderr, "Unknown family %d\n", family);
		return 1;
	}

	if (nft_init(&h, tables) < 0) {
		fprintf(stderr, "%s/%s Failed to initialize nft: %s\n",
				xtables_globals.program_name,
				xtables_globals.program_version,
				strerror(errno));
		exit(EXIT_FAILURE);
	}

474
	xtables_restore_parse(&h, &p, &restore_cb, argc, argv);
475

476
	nft_fini(&h);
477
	fclose(p.in);
478
479
480
481
482
483
484
485
486
487
488
489
490
491
	return 0;
}

int xtables_ip4_restore_main(int argc, char *argv[])
{
	return xtables_restore_main(NFPROTO_IPV4, "iptables-restore",
				    argc, argv);
}

int xtables_ip6_restore_main(int argc, char *argv[])
{
	return xtables_restore_main(NFPROTO_IPV6, "ip6tables-restore",
				    argc, argv);
}
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563

struct nft_xt_restore_cb ebt_restore_cb = {
	.chain_list	= get_chain_list,
	.commit		= nft_commit,
	.table_new	= nft_table_new,
	.table_flush	= nft_table_flush,
	.chain_user_flush = nft_chain_user_flush,
	.chain_del	= chain_delete,
	.do_command	= do_commandeb,
	.chain_set	= nft_chain_set,
	.chain_user_add	= nft_chain_user_add,
};

static const struct option ebt_restore_options[] = {
	{.name = "noflush", .has_arg = 0, .val = 'n'},
	{ 0 }
};

int xtables_eb_restore_main(int argc, char *argv[])
{
	struct nft_xt_restore_parse p = {
		.in = stdin,
	};
	struct nft_handle h;
	int c;

	while ((c = getopt_long(argc, argv, "n",
				ebt_restore_options, NULL)) != -1) {
		switch(c) {
		case 'n':
			noflush = 1;
			break;
		default:
			fprintf(stderr,
				"Usage: ebtables-restore [ --noflush ]\n");
			exit(1);
			break;
		}
	}

	nft_init_eb(&h, "ebtables-restore");
	xtables_restore_parse(&h, &p, &ebt_restore_cb, argc, argv);
	nft_fini(&h);

	return 0;
}

struct nft_xt_restore_cb arp_restore_cb = {
	.chain_list	= get_chain_list,
	.commit		= nft_commit,
	.table_new	= nft_table_new,
	.table_flush	= nft_table_flush,
	.chain_user_flush = nft_chain_user_flush,
	.chain_del	= chain_delete,
	.do_command	= do_commandarp,
	.chain_set	= nft_chain_set,
	.chain_user_add	= nft_chain_user_add,
};

int xtables_arp_restore_main(int argc, char *argv[])
{
	struct nft_xt_restore_parse p = {
		.in = stdin,
	};
	struct nft_handle h;

	nft_init_arp(&h, "arptables-restore");
	xtables_restore_parse(&h, &p, &arp_restore_cb, argc, argv);
	nft_fini(&h);

	return 0;
}