blob: 284f25c65fb06ecc0ba8b7fdefcf447aecbd1103 [file] [log] [blame]
Harald Welteae1ff9f2000-12-01 14:26:20 +00001/* Code to restore the iptables state, from file by iptables-save.
Harald Welte10a907f2002-08-07 09:07:41 +00002 * (C) 2000-2002 by Harald Welte <laforge@gnumonks.org>
Harald Welteae1ff9f2000-12-01 14:26:20 +00003 * based on previous code from Rusty Russell <rusty@linuxcare.com.au>
4 *
Harald Welte10a907f2002-08-07 09:07:41 +00005 * This code is distributed under the terms of GNU GPL v2
Harald Welteccd49e52001-01-23 22:54:34 +00006 *
Harald Welte3a506ac2004-08-30 16:00:09 +00007 * $Id: iptables-restore.c,v 1.35 2004/06/25 11:18:57 kadlec Exp $
Harald Welteae1ff9f2000-12-01 14:26:20 +00008 */
9
Marc Bouchere6869a82000-03-20 06:03:29 +000010#include <getopt.h>
11#include <sys/errno.h>
12#include <string.h>
13#include <stdio.h>
Harald Welteae1ff9f2000-12-01 14:26:20 +000014#include <stdlib.h>
15#include "iptables.h"
16#include "libiptc/libiptc.h"
17
18#ifdef DEBUG
Harald Weltec45c3152000-12-06 08:11:24 +000019#define DEBUGP(x, args...) fprintf(stderr, x, ## args)
Harald Welteae1ff9f2000-12-01 14:26:20 +000020#else
Harald Weltec45c3152000-12-06 08:11:24 +000021#define DEBUGP(x, args...)
Harald Welteae1ff9f2000-12-01 14:26:20 +000022#endif
Marc Bouchere6869a82000-03-20 06:03:29 +000023
Harald Weltea9d27082000-12-19 16:10:42 +000024static int binary = 0, counters = 0, verbose = 0, noflush = 0;
25
Marc Bouchere6869a82000-03-20 06:03:29 +000026/* Keeping track of external matches and targets. */
27static struct option options[] = {
Harald Weltea9d27082000-12-19 16:10:42 +000028 { "binary", 0, 0, 'b' },
29 { "counters", 0, 0, 'c' },
Martin Josefssonec789712004-01-31 19:28:13 +000030 { "verbose", 0, 0, 'v' },
Martin Josefssonbb2f68a2004-02-01 22:03:27 +000031 { "test", 0, 0, 't' },
Harald Weltea9d27082000-12-19 16:10:42 +000032 { "help", 0, 0, 'h' },
33 { "noflush", 0, 0, 'n'},
Harald Welte58918652001-06-16 18:25:25 +000034 { "modprobe", 1, 0, 'M'},
Marc Bouchere6869a82000-03-20 06:03:29 +000035 { 0 }
36};
37
38static void print_usage(const char *name, const char *version) __attribute__((noreturn));
39
40static void print_usage(const char *name, const char *version)
41{
Martin Josefssonbb2f68a2004-02-01 22:03:27 +000042 fprintf(stderr, "Usage: %s [-b] [-c] [-v] [-t] [-h]\n"
Harald Weltea9d27082000-12-19 16:10:42 +000043 " [ --binary ]\n"
44 " [ --counters ]\n"
45 " [ --verbose ]\n"
Martin Josefssonbb2f68a2004-02-01 22:03:27 +000046 " [ --test ]\n"
Harald Weltea9d27082000-12-19 16:10:42 +000047 " [ --help ]\n"
Harald Welte58918652001-06-16 18:25:25 +000048 " [ --noflush ]\n"
49 " [ --modprobe=<command>]\n", name);
Harald Weltea9d27082000-12-19 16:10:42 +000050
Marc Bouchere6869a82000-03-20 06:03:29 +000051 exit(1);
52}
53
Harald Welte58918652001-06-16 18:25:25 +000054iptc_handle_t create_handle(const char *tablename, const char* modprobe )
Marc Bouchere6869a82000-03-20 06:03:29 +000055{
Harald Welteae1ff9f2000-12-01 14:26:20 +000056 iptc_handle_t handle;
Marc Bouchere6869a82000-03-20 06:03:29 +000057
Harald Welteae1ff9f2000-12-01 14:26:20 +000058 handle = iptc_init(tablename);
Harald Welte58918652001-06-16 18:25:25 +000059
60 if (!handle) {
61 /* try to insmod the module if iptc_init failed */
62 iptables_insmod("ip_tables", modprobe);
63 handle = iptc_init(tablename);
64 }
65
Harald Welteae1ff9f2000-12-01 14:26:20 +000066 if (!handle) {
67 exit_error(PARAMETER_PROBLEM, "%s: unable to initialize"
68 "table '%s'\n", program_name, tablename);
69 exit(1);
Marc Bouchere6869a82000-03-20 06:03:29 +000070 }
Harald Welteae1ff9f2000-12-01 14:26:20 +000071 return handle;
Marc Bouchere6869a82000-03-20 06:03:29 +000072}
73
Harald Welted8e65632001-01-05 15:20:07 +000074int parse_counters(char *string, struct ipt_counters *ctr)
75{
Martin Josefssona28d4952004-05-26 16:04:48 +000076 return (sscanf(string, "[%llu:%llu]", (unsigned long long *)&ctr->pcnt, (unsigned long long *)&ctr->bcnt) == 2);
Harald Welted8e65632001-01-05 15:20:07 +000077}
Harald Welteae1ff9f2000-12-01 14:26:20 +000078
Harald Welte9f7fa492001-03-15 15:12:02 +000079/* global new argv and argc */
Harald Welte26e643f2001-05-03 20:50:03 +000080static char *newargv[255];
Harald Welte9f7fa492001-03-15 15:12:02 +000081static int newargc;
82
83/* function adding one argument to newargv, updating newargc
84 * returns true if argument added, false otherwise */
85static int add_argv(char *what) {
Harald Weltebb41f882001-10-21 14:11:54 +000086 DEBUGP("add_argv: %s\n", what);
Harald Welte9f7fa492001-03-15 15:12:02 +000087 if (what && ((newargc + 1) < sizeof(newargv)/sizeof(char *))) {
Harald Welte26e643f2001-05-03 20:50:03 +000088 newargv[newargc] = strdup(what);
Harald Welte9f7fa492001-03-15 15:12:02 +000089 newargc++;
90 return 1;
91 } else
92 return 0;
93}
94
Harald Welte26e643f2001-05-03 20:50:03 +000095static void free_argv(void) {
96 int i;
97
98 for (i = 0; i < newargc; i++)
99 free(newargv[i]);
100}
101
Bastiaan Bakker4e3771f2004-06-25 11:18:57 +0000102#ifdef IPTABLES_MULTI
103int
104iptables_restore_main(int argc, char *argv[])
105#else
106int
107main(int argc, char *argv[])
108#endif
Marc Bouchere6869a82000-03-20 06:03:29 +0000109{
Martin Josefsson841e4ae2003-05-02 15:30:11 +0000110 iptc_handle_t handle = NULL;
Marc Bouchere6869a82000-03-20 06:03:29 +0000111 char buffer[10240];
Harald Weltea9d27082000-12-19 16:10:42 +0000112 int c;
Harald Welteae1ff9f2000-12-01 14:26:20 +0000113 char curtable[IPT_TABLE_MAXNAMELEN + 1];
Marc Bouchere6869a82000-03-20 06:03:29 +0000114 FILE *in;
Harald Welte58918652001-06-16 18:25:25 +0000115 const char *modprobe = 0;
Martin Josefssonbb2f68a2004-02-01 22:03:27 +0000116 int in_table = 0, testing = 0;
Marc Bouchere6869a82000-03-20 06:03:29 +0000117
118 program_name = "iptables-restore";
Harald Welte80fe35d2002-05-29 13:08:15 +0000119 program_version = IPTABLES_VERSION;
Illes Marci63e90632003-03-03 08:08:37 +0000120 line = 0;
Marc Bouchere6869a82000-03-20 06:03:29 +0000121
Harald Welte3efb6ea2001-08-06 18:50:21 +0000122#ifdef NO_SHARED_LIBS
123 init_extensions();
124#endif
125
Martin Josefssonbb2f68a2004-02-01 22:03:27 +0000126 while ((c = getopt_long(argc, argv, "bcvthnM:", options, NULL)) != -1) {
Harald Weltea9d27082000-12-19 16:10:42 +0000127 switch (c) {
128 case 'b':
129 binary = 1;
130 break;
131 case 'c':
132 counters = 1;
133 break;
Marc Boucher1277b592001-12-06 15:06:34 +0000134 case 'v':
135 verbose = 1;
136 break;
Martin Josefssonbb2f68a2004-02-01 22:03:27 +0000137 case 't':
138 testing = 1;
139 break;
Harald Weltea9d27082000-12-19 16:10:42 +0000140 case 'h':
141 print_usage("iptables-restore",
Harald Welte80fe35d2002-05-29 13:08:15 +0000142 IPTABLES_VERSION);
Harald Weltea9d27082000-12-19 16:10:42 +0000143 break;
144 case 'n':
145 noflush = 1;
146 break;
Harald Welte58918652001-06-16 18:25:25 +0000147 case 'M':
148 modprobe = optarg;
149 break;
Harald Weltea9d27082000-12-19 16:10:42 +0000150 }
151 }
152
Marc Bouchere6869a82000-03-20 06:03:29 +0000153 if (optind == argc - 1) {
154 in = fopen(argv[optind], "r");
155 if (!in) {
156 fprintf(stderr, "Can't open %s: %s", argv[optind],
157 strerror(errno));
158 exit(1);
159 }
160 }
161 else if (optind < argc) {
162 fprintf(stderr, "Unknown arguments found on commandline");
163 exit(1);
164 }
165 else in = stdin;
Harald Welte9f7fa492001-03-15 15:12:02 +0000166
Marc Bouchere6869a82000-03-20 06:03:29 +0000167 /* Grab standard input. */
168 while (fgets(buffer, sizeof(buffer), in)) {
Harald Welteb3f22192003-03-06 11:56:31 +0000169 int ret = 0;
Marc Bouchere6869a82000-03-20 06:03:29 +0000170
171 line++;
Martin Josefsson5065afa2004-01-31 19:33:47 +0000172 if (buffer[0] == '\n')
173 continue;
Marc Bouchere6869a82000-03-20 06:03:29 +0000174 else if (buffer[0] == '#') {
Martin Josefsson3673dcb2004-01-31 19:41:49 +0000175 if (verbose)
176 fputs(buffer, stdout);
Marc Bouchere6869a82000-03-20 06:03:29 +0000177 continue;
Illes Marci26100fa2003-03-03 08:05:07 +0000178 } else if ((strcmp(buffer, "COMMIT\n") == 0) && (in_table)) {
Martin Josefssonbb2f68a2004-02-01 22:03:27 +0000179 if (!testing) {
180 DEBUGP("Calling commit\n");
181 ret = iptc_commit(&handle);
182 } else {
183 DEBUGP("Not calling commit, testing\n");
184 ret = 1;
185 }
Illes Marci26100fa2003-03-03 08:05:07 +0000186 in_table = 0;
Harald Welteb3f22192003-03-06 11:56:31 +0000187 } else if ((buffer[0] == '*') && (!in_table)) {
Harald Welteae1ff9f2000-12-01 14:26:20 +0000188 /* New table */
189 char *table;
190
191 table = strtok(buffer+1, " \t\n");
192 DEBUGP("line %u, table '%s'\n", line, table);
193 if (!table) {
194 exit_error(PARAMETER_PROBLEM,
195 "%s: line %u table name invalid\n",
196 program_name, line);
197 exit(1);
198 }
199 strncpy(curtable, table, IPT_TABLE_MAXNAMELEN);
Karsten Desler073df8f2004-01-31 15:33:55 +0000200 curtable[IPT_TABLE_MAXNAMELEN] = '\0';
Harald Welteae1ff9f2000-12-01 14:26:20 +0000201
Martin Josefsson841e4ae2003-05-02 15:30:11 +0000202 if (handle)
203 iptc_free(&handle);
204
Harald Welte58918652001-06-16 18:25:25 +0000205 handle = create_handle(table, modprobe);
Harald Weltea9d27082000-12-19 16:10:42 +0000206 if (noflush == 0) {
207 DEBUGP("Cleaning all chains of table '%s'\n",
208 table);
209 for_each_chain(flush_entries, verbose, 1,
210 &handle);
211
212 DEBUGP("Deleting all user-defined chains "
213 "of table '%s'\n", table);
214 for_each_chain(delete_chain, verbose, 0,
215 &handle) ;
216 }
Harald Welteae1ff9f2000-12-01 14:26:20 +0000217
218 ret = 1;
Illes Marci26100fa2003-03-03 08:05:07 +0000219 in_table = 1;
Harald Welteae1ff9f2000-12-01 14:26:20 +0000220
Illes Marci26100fa2003-03-03 08:05:07 +0000221 } else if ((buffer[0] == ':') && (in_table)) {
Marc Bouchere6869a82000-03-20 06:03:29 +0000222 /* New chain. */
Harald Welteae1ff9f2000-12-01 14:26:20 +0000223 char *policy, *chain;
Marc Bouchere6869a82000-03-20 06:03:29 +0000224
Marc Bouchere6869a82000-03-20 06:03:29 +0000225 chain = strtok(buffer+1, " \t\n");
Harald Welteae1ff9f2000-12-01 14:26:20 +0000226 DEBUGP("line %u, chain '%s'\n", line, chain);
Marc Bouchere6869a82000-03-20 06:03:29 +0000227 if (!chain) {
228 exit_error(PARAMETER_PROBLEM,
229 "%s: line %u chain name invalid\n",
230 program_name, line);
231 exit(1);
232 }
Harald Welteae1ff9f2000-12-01 14:26:20 +0000233
Harald Welte3a506ac2004-08-30 16:00:09 +0000234 if (iptc_builtin(chain, handle) <= 0) {
Harald Welte9f7fa492001-03-15 15:12:02 +0000235 DEBUGP("Creating new chain '%s'\n", chain);
Harald Welte26e643f2001-05-03 20:50:03 +0000236 if (!iptc_create_chain(chain, &handle))
237 exit_error(PARAMETER_PROBLEM,
238 "error creating chain "
239 "'%s':%s\n", chain,
240 strerror(errno));
Harald Welte9f7fa492001-03-15 15:12:02 +0000241 }
Harald Welteae1ff9f2000-12-01 14:26:20 +0000242
Marc Bouchere6869a82000-03-20 06:03:29 +0000243 policy = strtok(NULL, " \t\n");
Harald Welteae1ff9f2000-12-01 14:26:20 +0000244 DEBUGP("line %u, policy '%s'\n", line, policy);
Marc Bouchere6869a82000-03-20 06:03:29 +0000245 if (!policy) {
246 exit_error(PARAMETER_PROBLEM,
247 "%s: line %u policy invalid\n",
248 program_name, line);
249 exit(1);
250 }
Harald Welteae1ff9f2000-12-01 14:26:20 +0000251
252 if (strcmp(policy, "-") != 0) {
Harald Welted8e65632001-01-05 15:20:07 +0000253 struct ipt_counters count;
254
255 if (counters) {
256 char *ctrs;
257 ctrs = strtok(NULL, " \t\n");
258
259 parse_counters(ctrs, &count);
260
261 } else {
262 memset(&count, 0,
263 sizeof(struct ipt_counters));
264 }
Harald Welteae1ff9f2000-12-01 14:26:20 +0000265
266 DEBUGP("Setting policy of chain %s to %s\n",
267 chain, policy);
268
Harald Welted8e65632001-01-05 15:20:07 +0000269 if (!iptc_set_policy(chain, policy, &count,
270 &handle))
Harald Welteae1ff9f2000-12-01 14:26:20 +0000271 exit_error(OTHER_PROBLEM,
272 "Can't set policy `%s'"
273 " on `%s' line %u: %s\n",
274 chain, policy, line,
275 iptc_strerror(errno));
276 }
277
278 ret = 1;
279
Illes Marci26100fa2003-03-03 08:05:07 +0000280 } else if (in_table) {
Harald Welte9f7fa492001-03-15 15:12:02 +0000281 int a;
Marc Bouchere6869a82000-03-20 06:03:29 +0000282 char *ptr = buffer;
Harald Welteccd49e52001-01-23 22:54:34 +0000283 char *pcnt = NULL;
284 char *bcnt = NULL;
Harald Welte9f7fa492001-03-15 15:12:02 +0000285 char *parsestart;
286
Harald Welte26e643f2001-05-03 20:50:03 +0000287 /* the parser */
288 char *param_start, *curchar;
289 int quote_open;
290
Harald Welte9f7fa492001-03-15 15:12:02 +0000291 /* reset the newargv */
292 newargc = 0;
Marc Bouchere6869a82000-03-20 06:03:29 +0000293
Marc Bouchere6869a82000-03-20 06:03:29 +0000294 if (buffer[0] == '[') {
Harald Welte9f7fa492001-03-15 15:12:02 +0000295 /* we have counters in our input */
Marc Bouchere6869a82000-03-20 06:03:29 +0000296 ptr = strchr(buffer, ']');
297 if (!ptr)
298 exit_error(PARAMETER_PROBLEM,
299 "Bad line %u: need ]\n",
300 line);
Harald Welte9f7fa492001-03-15 15:12:02 +0000301
Harald Welteccd49e52001-01-23 22:54:34 +0000302 pcnt = strtok(buffer+1, ":");
Harald Welte9f7fa492001-03-15 15:12:02 +0000303 if (!pcnt)
304 exit_error(PARAMETER_PROBLEM,
305 "Bad line %u: need :\n",
306 line);
307
Harald Welteccd49e52001-01-23 22:54:34 +0000308 bcnt = strtok(NULL, "]");
Harald Welte9f7fa492001-03-15 15:12:02 +0000309 if (!bcnt)
310 exit_error(PARAMETER_PROBLEM,
311 "Bad line %u: need ]\n",
312 line);
313
314 /* start command parsing after counter */
315 parsestart = ptr + 1;
316 } else {
317 /* start command parsing at start of line */
318 parsestart = buffer;
Marc Bouchere6869a82000-03-20 06:03:29 +0000319 }
Rusty Russell7e53bf92000-03-20 07:03:28 +0000320
Harald Welte9f7fa492001-03-15 15:12:02 +0000321 add_argv(argv[0]);
322 add_argv("-t");
323 add_argv((char *) &curtable);
324
Harald Welteccd49e52001-01-23 22:54:34 +0000325 if (counters && pcnt && bcnt) {
Harald Welte9f7fa492001-03-15 15:12:02 +0000326 add_argv("--set-counters");
327 add_argv((char *) pcnt);
328 add_argv((char *) bcnt);
Harald Welteccd49e52001-01-23 22:54:34 +0000329 }
Harald Welteae1ff9f2000-12-01 14:26:20 +0000330
Harald Welte26e643f2001-05-03 20:50:03 +0000331 /* After fighting with strtok enough, here's now
332 * a 'real' parser. According to Rusty I'm now no
333 * longer a real hacker, but I can live with that */
334
335 quote_open = 0;
336 param_start = parsestart;
337
338 for (curchar = parsestart; *curchar; curchar++) {
339 if (*curchar == '"') {
Michael Rash29cdbd02004-01-05 09:41:50 +0000340 /* quote_open cannot be true if there
341 * was no previous character. Thus,
342 * curchar-1 has to be within bounds */
343 if (quote_open &&
344 *(curchar-1) != '\\') {
Harald Welte26e643f2001-05-03 20:50:03 +0000345 quote_open = 0;
346 *curchar = ' ';
347 } else {
348 quote_open = 1;
349 param_start++;
350 }
351 }
352 if (*curchar == ' '
353 || *curchar == '\t'
354 || * curchar == '\n') {
355 char param_buffer[1024];
356 int param_len = curchar-param_start;
357
358 if (quote_open)
359 continue;
360
Harald Welte974d0102001-05-26 04:41:56 +0000361 if (!param_len) {
362 /* two spaces? */
363 param_start++;
364 continue;
365 }
Harald Welte26e643f2001-05-03 20:50:03 +0000366
367 /* end of one parameter */
368 strncpy(param_buffer, param_start,
369 param_len);
370 *(param_buffer+param_len) = '\0';
Harald Weltebb41f882001-10-21 14:11:54 +0000371
372 /* check if table name specified */
Harald Welte48a6f902001-10-22 15:16:21 +0000373 if (!strncmp(param_buffer, "-t", 3)
374 || !strncmp(param_buffer, "--table", 8)) {
Harald Weltebb41f882001-10-21 14:11:54 +0000375 exit_error(PARAMETER_PROBLEM,
376 "Line %u seems to have a "
377 "-t table option.\n", line);
378 exit(1);
379 }
380
Harald Welte26e643f2001-05-03 20:50:03 +0000381 add_argv(param_buffer);
382 param_start += param_len + 1;
383 } else {
384 /* regular character, skip */
385 }
Marc Bouchere6869a82000-03-20 06:03:29 +0000386 }
387
Harald Welte26e643f2001-05-03 20:50:03 +0000388 DEBUGP("calling do_command(%u, argv, &%s, handle):\n",
389 newargc, curtable);
Harald Welteae1ff9f2000-12-01 14:26:20 +0000390
Harald Weltefa48fc82001-10-16 09:51:33 +0000391 for (a = 0; a < newargc; a++)
Harald Welteae1ff9f2000-12-01 14:26:20 +0000392 DEBUGP("argv[%u]: %s\n", a, newargv[a]);
393
Harald Welte26e643f2001-05-03 20:50:03 +0000394 ret = do_command(newargc, newargv,
395 &newargv[2], &handle);
396
397 free_argv();
Marc Bouchere6869a82000-03-20 06:03:29 +0000398 }
399 if (!ret) {
400 fprintf(stderr, "%s: line %u failed\n",
401 program_name, line);
402 exit(1);
403 }
404 }
Martin Josefsson3229a7c2004-02-01 21:46:04 +0000405 if (in_table) {
406 fprintf(stderr, "%s: COMMIT expected at line %u\n",
407 program_name, line + 1);
408 exit(1);
409 }
Marc Bouchere6869a82000-03-20 06:03:29 +0000410
411 return 0;
412}