blob: 46590ca95af78b74d35e8ace40b47286002b1e41 [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 *
Martin Josefssonbb2f68a2004-02-01 22:03:27 +00007 * $Id: iptables-restore.c,v 1.32 2004/02/01 21:46:04 gandalf 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{
76 return (sscanf(string, "[%llu:%llu]", &ctr->pcnt, &ctr->bcnt) == 2);
77}
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
Marc Bouchere6869a82000-03-20 06:03:29 +0000102int main(int argc, char *argv[])
103{
Martin Josefsson841e4ae2003-05-02 15:30:11 +0000104 iptc_handle_t handle = NULL;
Marc Bouchere6869a82000-03-20 06:03:29 +0000105 char buffer[10240];
Harald Weltea9d27082000-12-19 16:10:42 +0000106 int c;
Harald Welteae1ff9f2000-12-01 14:26:20 +0000107 char curtable[IPT_TABLE_MAXNAMELEN + 1];
Marc Bouchere6869a82000-03-20 06:03:29 +0000108 FILE *in;
Harald Welte58918652001-06-16 18:25:25 +0000109 const char *modprobe = 0;
Martin Josefssonbb2f68a2004-02-01 22:03:27 +0000110 int in_table = 0, testing = 0;
Marc Bouchere6869a82000-03-20 06:03:29 +0000111
112 program_name = "iptables-restore";
Harald Welte80fe35d2002-05-29 13:08:15 +0000113 program_version = IPTABLES_VERSION;
Illes Marci63e90632003-03-03 08:08:37 +0000114 line = 0;
Marc Bouchere6869a82000-03-20 06:03:29 +0000115
Harald Welte3efb6ea2001-08-06 18:50:21 +0000116#ifdef NO_SHARED_LIBS
117 init_extensions();
118#endif
119
Martin Josefssonbb2f68a2004-02-01 22:03:27 +0000120 while ((c = getopt_long(argc, argv, "bcvthnM:", options, NULL)) != -1) {
Harald Weltea9d27082000-12-19 16:10:42 +0000121 switch (c) {
122 case 'b':
123 binary = 1;
124 break;
125 case 'c':
126 counters = 1;
127 break;
Marc Boucher1277b592001-12-06 15:06:34 +0000128 case 'v':
129 verbose = 1;
130 break;
Martin Josefssonbb2f68a2004-02-01 22:03:27 +0000131 case 't':
132 testing = 1;
133 break;
Harald Weltea9d27082000-12-19 16:10:42 +0000134 case 'h':
135 print_usage("iptables-restore",
Harald Welte80fe35d2002-05-29 13:08:15 +0000136 IPTABLES_VERSION);
Harald Weltea9d27082000-12-19 16:10:42 +0000137 break;
138 case 'n':
139 noflush = 1;
140 break;
Harald Welte58918652001-06-16 18:25:25 +0000141 case 'M':
142 modprobe = optarg;
143 break;
Harald Weltea9d27082000-12-19 16:10:42 +0000144 }
145 }
146
Marc Bouchere6869a82000-03-20 06:03:29 +0000147 if (optind == argc - 1) {
148 in = fopen(argv[optind], "r");
149 if (!in) {
150 fprintf(stderr, "Can't open %s: %s", argv[optind],
151 strerror(errno));
152 exit(1);
153 }
154 }
155 else if (optind < argc) {
156 fprintf(stderr, "Unknown arguments found on commandline");
157 exit(1);
158 }
159 else in = stdin;
Harald Welte9f7fa492001-03-15 15:12:02 +0000160
Marc Bouchere6869a82000-03-20 06:03:29 +0000161 /* Grab standard input. */
162 while (fgets(buffer, sizeof(buffer), in)) {
Harald Welteb3f22192003-03-06 11:56:31 +0000163 int ret = 0;
Marc Bouchere6869a82000-03-20 06:03:29 +0000164
165 line++;
Martin Josefsson5065afa2004-01-31 19:33:47 +0000166 if (buffer[0] == '\n')
167 continue;
Marc Bouchere6869a82000-03-20 06:03:29 +0000168 else if (buffer[0] == '#') {
Martin Josefsson3673dcb2004-01-31 19:41:49 +0000169 if (verbose)
170 fputs(buffer, stdout);
Marc Bouchere6869a82000-03-20 06:03:29 +0000171 continue;
Illes Marci26100fa2003-03-03 08:05:07 +0000172 } else if ((strcmp(buffer, "COMMIT\n") == 0) && (in_table)) {
Martin Josefssonbb2f68a2004-02-01 22:03:27 +0000173 if (!testing) {
174 DEBUGP("Calling commit\n");
175 ret = iptc_commit(&handle);
176 } else {
177 DEBUGP("Not calling commit, testing\n");
178 ret = 1;
179 }
Illes Marci26100fa2003-03-03 08:05:07 +0000180 in_table = 0;
Harald Welteb3f22192003-03-06 11:56:31 +0000181 } else if ((buffer[0] == '*') && (!in_table)) {
Harald Welteae1ff9f2000-12-01 14:26:20 +0000182 /* New table */
183 char *table;
184
185 table = strtok(buffer+1, " \t\n");
186 DEBUGP("line %u, table '%s'\n", line, table);
187 if (!table) {
188 exit_error(PARAMETER_PROBLEM,
189 "%s: line %u table name invalid\n",
190 program_name, line);
191 exit(1);
192 }
193 strncpy(curtable, table, IPT_TABLE_MAXNAMELEN);
Karsten Desler073df8f2004-01-31 15:33:55 +0000194 curtable[IPT_TABLE_MAXNAMELEN] = '\0';
Harald Welteae1ff9f2000-12-01 14:26:20 +0000195
Martin Josefsson841e4ae2003-05-02 15:30:11 +0000196 if (handle)
197 iptc_free(&handle);
198
Harald Welte58918652001-06-16 18:25:25 +0000199 handle = create_handle(table, modprobe);
Harald Weltea9d27082000-12-19 16:10:42 +0000200 if (noflush == 0) {
201 DEBUGP("Cleaning all chains of table '%s'\n",
202 table);
203 for_each_chain(flush_entries, verbose, 1,
204 &handle);
205
206 DEBUGP("Deleting all user-defined chains "
207 "of table '%s'\n", table);
208 for_each_chain(delete_chain, verbose, 0,
209 &handle) ;
210 }
Harald Welteae1ff9f2000-12-01 14:26:20 +0000211
212 ret = 1;
Illes Marci26100fa2003-03-03 08:05:07 +0000213 in_table = 1;
Harald Welteae1ff9f2000-12-01 14:26:20 +0000214
Illes Marci26100fa2003-03-03 08:05:07 +0000215 } else if ((buffer[0] == ':') && (in_table)) {
Marc Bouchere6869a82000-03-20 06:03:29 +0000216 /* New chain. */
Harald Welteae1ff9f2000-12-01 14:26:20 +0000217 char *policy, *chain;
Marc Bouchere6869a82000-03-20 06:03:29 +0000218
Marc Bouchere6869a82000-03-20 06:03:29 +0000219 chain = strtok(buffer+1, " \t\n");
Harald Welteae1ff9f2000-12-01 14:26:20 +0000220 DEBUGP("line %u, chain '%s'\n", line, chain);
Marc Bouchere6869a82000-03-20 06:03:29 +0000221 if (!chain) {
222 exit_error(PARAMETER_PROBLEM,
223 "%s: line %u chain name invalid\n",
224 program_name, line);
225 exit(1);
226 }
Harald Welteae1ff9f2000-12-01 14:26:20 +0000227
Harald Welte9f7fa492001-03-15 15:12:02 +0000228 if (!iptc_builtin(chain, handle)) {
229 DEBUGP("Creating new chain '%s'\n", chain);
Harald Welte26e643f2001-05-03 20:50:03 +0000230 if (!iptc_create_chain(chain, &handle))
231 exit_error(PARAMETER_PROBLEM,
232 "error creating chain "
233 "'%s':%s\n", chain,
234 strerror(errno));
Harald Welte9f7fa492001-03-15 15:12:02 +0000235 }
Harald Welteae1ff9f2000-12-01 14:26:20 +0000236
Marc Bouchere6869a82000-03-20 06:03:29 +0000237 policy = strtok(NULL, " \t\n");
Harald Welteae1ff9f2000-12-01 14:26:20 +0000238 DEBUGP("line %u, policy '%s'\n", line, policy);
Marc Bouchere6869a82000-03-20 06:03:29 +0000239 if (!policy) {
240 exit_error(PARAMETER_PROBLEM,
241 "%s: line %u policy invalid\n",
242 program_name, line);
243 exit(1);
244 }
Harald Welteae1ff9f2000-12-01 14:26:20 +0000245
246 if (strcmp(policy, "-") != 0) {
Harald Welted8e65632001-01-05 15:20:07 +0000247 struct ipt_counters count;
248
249 if (counters) {
250 char *ctrs;
251 ctrs = strtok(NULL, " \t\n");
252
253 parse_counters(ctrs, &count);
254
255 } else {
256 memset(&count, 0,
257 sizeof(struct ipt_counters));
258 }
Harald Welteae1ff9f2000-12-01 14:26:20 +0000259
260 DEBUGP("Setting policy of chain %s to %s\n",
261 chain, policy);
262
Harald Welted8e65632001-01-05 15:20:07 +0000263 if (!iptc_set_policy(chain, policy, &count,
264 &handle))
Harald Welteae1ff9f2000-12-01 14:26:20 +0000265 exit_error(OTHER_PROBLEM,
266 "Can't set policy `%s'"
267 " on `%s' line %u: %s\n",
268 chain, policy, line,
269 iptc_strerror(errno));
270 }
271
272 ret = 1;
273
Illes Marci26100fa2003-03-03 08:05:07 +0000274 } else if (in_table) {
Harald Welte9f7fa492001-03-15 15:12:02 +0000275 int a;
Marc Bouchere6869a82000-03-20 06:03:29 +0000276 char *ptr = buffer;
Harald Welteccd49e52001-01-23 22:54:34 +0000277 char *pcnt = NULL;
278 char *bcnt = NULL;
Harald Welte9f7fa492001-03-15 15:12:02 +0000279 char *parsestart;
280
Harald Welte26e643f2001-05-03 20:50:03 +0000281 /* the parser */
282 char *param_start, *curchar;
283 int quote_open;
284
Harald Welte9f7fa492001-03-15 15:12:02 +0000285 /* reset the newargv */
286 newargc = 0;
Marc Bouchere6869a82000-03-20 06:03:29 +0000287
Marc Bouchere6869a82000-03-20 06:03:29 +0000288 if (buffer[0] == '[') {
Harald Welte9f7fa492001-03-15 15:12:02 +0000289 /* we have counters in our input */
Marc Bouchere6869a82000-03-20 06:03:29 +0000290 ptr = strchr(buffer, ']');
291 if (!ptr)
292 exit_error(PARAMETER_PROBLEM,
293 "Bad line %u: need ]\n",
294 line);
Harald Welte9f7fa492001-03-15 15:12:02 +0000295
Harald Welteccd49e52001-01-23 22:54:34 +0000296 pcnt = strtok(buffer+1, ":");
Harald Welte9f7fa492001-03-15 15:12:02 +0000297 if (!pcnt)
298 exit_error(PARAMETER_PROBLEM,
299 "Bad line %u: need :\n",
300 line);
301
Harald Welteccd49e52001-01-23 22:54:34 +0000302 bcnt = strtok(NULL, "]");
Harald Welte9f7fa492001-03-15 15:12:02 +0000303 if (!bcnt)
304 exit_error(PARAMETER_PROBLEM,
305 "Bad line %u: need ]\n",
306 line);
307
308 /* start command parsing after counter */
309 parsestart = ptr + 1;
310 } else {
311 /* start command parsing at start of line */
312 parsestart = buffer;
Marc Bouchere6869a82000-03-20 06:03:29 +0000313 }
Rusty Russell7e53bf92000-03-20 07:03:28 +0000314
Harald Welte9f7fa492001-03-15 15:12:02 +0000315 add_argv(argv[0]);
316 add_argv("-t");
317 add_argv((char *) &curtable);
318
Harald Welteccd49e52001-01-23 22:54:34 +0000319 if (counters && pcnt && bcnt) {
Harald Welte9f7fa492001-03-15 15:12:02 +0000320 add_argv("--set-counters");
321 add_argv((char *) pcnt);
322 add_argv((char *) bcnt);
Harald Welteccd49e52001-01-23 22:54:34 +0000323 }
Harald Welteae1ff9f2000-12-01 14:26:20 +0000324
Harald Welte26e643f2001-05-03 20:50:03 +0000325 /* After fighting with strtok enough, here's now
326 * a 'real' parser. According to Rusty I'm now no
327 * longer a real hacker, but I can live with that */
328
329 quote_open = 0;
330 param_start = parsestart;
331
332 for (curchar = parsestart; *curchar; curchar++) {
333 if (*curchar == '"') {
Michael Rash29cdbd02004-01-05 09:41:50 +0000334 /* quote_open cannot be true if there
335 * was no previous character. Thus,
336 * curchar-1 has to be within bounds */
337 if (quote_open &&
338 *(curchar-1) != '\\') {
Harald Welte26e643f2001-05-03 20:50:03 +0000339 quote_open = 0;
340 *curchar = ' ';
341 } else {
342 quote_open = 1;
343 param_start++;
344 }
345 }
346 if (*curchar == ' '
347 || *curchar == '\t'
348 || * curchar == '\n') {
349 char param_buffer[1024];
350 int param_len = curchar-param_start;
351
352 if (quote_open)
353 continue;
354
Harald Welte974d0102001-05-26 04:41:56 +0000355 if (!param_len) {
356 /* two spaces? */
357 param_start++;
358 continue;
359 }
Harald Welte26e643f2001-05-03 20:50:03 +0000360
361 /* end of one parameter */
362 strncpy(param_buffer, param_start,
363 param_len);
364 *(param_buffer+param_len) = '\0';
Harald Weltebb41f882001-10-21 14:11:54 +0000365
366 /* check if table name specified */
Harald Welte48a6f902001-10-22 15:16:21 +0000367 if (!strncmp(param_buffer, "-t", 3)
368 || !strncmp(param_buffer, "--table", 8)) {
Harald Weltebb41f882001-10-21 14:11:54 +0000369 exit_error(PARAMETER_PROBLEM,
370 "Line %u seems to have a "
371 "-t table option.\n", line);
372 exit(1);
373 }
374
Harald Welte26e643f2001-05-03 20:50:03 +0000375 add_argv(param_buffer);
376 param_start += param_len + 1;
377 } else {
378 /* regular character, skip */
379 }
Marc Bouchere6869a82000-03-20 06:03:29 +0000380 }
381
Harald Welte26e643f2001-05-03 20:50:03 +0000382 DEBUGP("calling do_command(%u, argv, &%s, handle):\n",
383 newargc, curtable);
Harald Welteae1ff9f2000-12-01 14:26:20 +0000384
Harald Weltefa48fc82001-10-16 09:51:33 +0000385 for (a = 0; a < newargc; a++)
Harald Welteae1ff9f2000-12-01 14:26:20 +0000386 DEBUGP("argv[%u]: %s\n", a, newargv[a]);
387
Harald Welte26e643f2001-05-03 20:50:03 +0000388 ret = do_command(newargc, newargv,
389 &newargv[2], &handle);
390
391 free_argv();
Marc Bouchere6869a82000-03-20 06:03:29 +0000392 }
393 if (!ret) {
394 fprintf(stderr, "%s: line %u failed\n",
395 program_name, line);
396 exit(1);
397 }
398 }
Martin Josefsson3229a7c2004-02-01 21:46:04 +0000399 if (in_table) {
400 fprintf(stderr, "%s: COMMIT expected at line %u\n",
401 program_name, line + 1);
402 exit(1);
403 }
Marc Bouchere6869a82000-03-20 06:03:29 +0000404
405 return 0;
406}