blob: 65670f2479ea7380d6209c6ab88cabbe5a7065b6 [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 Welte10a907f2002-08-07 09:07:41 +00007 * $Id: iptables-restore.c,v 1.21 2002/05/29 13:08:15 laforge 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' },
Marc Boucher1277b592001-12-06 15:06:34 +000030 { "verbose", 1, 0, 'v' },
Harald Weltea9d27082000-12-19 16:10:42 +000031 { "help", 0, 0, 'h' },
32 { "noflush", 0, 0, 'n'},
Harald Welte58918652001-06-16 18:25:25 +000033 { "modprobe", 1, 0, 'M'},
Marc Bouchere6869a82000-03-20 06:03:29 +000034 { 0 }
35};
36
37static void print_usage(const char *name, const char *version) __attribute__((noreturn));
38
39static void print_usage(const char *name, const char *version)
40{
Harald Weltea9d27082000-12-19 16:10:42 +000041 fprintf(stderr, "Usage: %s [-b] [-c] [-v] [-h]\n"
42 " [ --binary ]\n"
43 " [ --counters ]\n"
44 " [ --verbose ]\n"
45 " [ --help ]\n"
Harald Welte58918652001-06-16 18:25:25 +000046 " [ --noflush ]\n"
47 " [ --modprobe=<command>]\n", name);
Harald Weltea9d27082000-12-19 16:10:42 +000048
Marc Bouchere6869a82000-03-20 06:03:29 +000049 exit(1);
50}
51
Harald Welte58918652001-06-16 18:25:25 +000052iptc_handle_t create_handle(const char *tablename, const char* modprobe )
Marc Bouchere6869a82000-03-20 06:03:29 +000053{
Harald Welteae1ff9f2000-12-01 14:26:20 +000054 iptc_handle_t handle;
Marc Bouchere6869a82000-03-20 06:03:29 +000055
Harald Welteae1ff9f2000-12-01 14:26:20 +000056 handle = iptc_init(tablename);
Harald Welte58918652001-06-16 18:25:25 +000057
58 if (!handle) {
59 /* try to insmod the module if iptc_init failed */
60 iptables_insmod("ip_tables", modprobe);
61 handle = iptc_init(tablename);
62 }
63
Harald Welteae1ff9f2000-12-01 14:26:20 +000064 if (!handle) {
65 exit_error(PARAMETER_PROBLEM, "%s: unable to initialize"
66 "table '%s'\n", program_name, tablename);
67 exit(1);
Marc Bouchere6869a82000-03-20 06:03:29 +000068 }
Harald Welteae1ff9f2000-12-01 14:26:20 +000069 return handle;
Marc Bouchere6869a82000-03-20 06:03:29 +000070}
71
Harald Welted8e65632001-01-05 15:20:07 +000072int parse_counters(char *string, struct ipt_counters *ctr)
73{
74 return (sscanf(string, "[%llu:%llu]", &ctr->pcnt, &ctr->bcnt) == 2);
75}
Harald Welteae1ff9f2000-12-01 14:26:20 +000076
Harald Welte9f7fa492001-03-15 15:12:02 +000077/* global new argv and argc */
Harald Welte26e643f2001-05-03 20:50:03 +000078static char *newargv[255];
Harald Welte9f7fa492001-03-15 15:12:02 +000079static int newargc;
80
81/* function adding one argument to newargv, updating newargc
82 * returns true if argument added, false otherwise */
83static int add_argv(char *what) {
Harald Weltebb41f882001-10-21 14:11:54 +000084 DEBUGP("add_argv: %s\n", what);
Harald Welte9f7fa492001-03-15 15:12:02 +000085 if (what && ((newargc + 1) < sizeof(newargv)/sizeof(char *))) {
Harald Welte26e643f2001-05-03 20:50:03 +000086 newargv[newargc] = strdup(what);
Harald Welte9f7fa492001-03-15 15:12:02 +000087 newargc++;
88 return 1;
89 } else
90 return 0;
91}
92
Harald Welte26e643f2001-05-03 20:50:03 +000093static void free_argv(void) {
94 int i;
95
96 for (i = 0; i < newargc; i++)
97 free(newargv[i]);
98}
99
Marc Bouchere6869a82000-03-20 06:03:29 +0000100int main(int argc, char *argv[])
101{
102 iptc_handle_t handle;
103 char buffer[10240];
Marc Bouchere6869a82000-03-20 06:03:29 +0000104 unsigned int line = 0;
Harald Weltea9d27082000-12-19 16:10:42 +0000105 int c;
Harald Welteae1ff9f2000-12-01 14:26:20 +0000106 char curtable[IPT_TABLE_MAXNAMELEN + 1];
Marc Bouchere6869a82000-03-20 06:03:29 +0000107 FILE *in;
Harald Welte58918652001-06-16 18:25:25 +0000108 const char *modprobe = 0;
Marc Bouchere6869a82000-03-20 06:03:29 +0000109
110 program_name = "iptables-restore";
Harald Welte80fe35d2002-05-29 13:08:15 +0000111 program_version = IPTABLES_VERSION;
Marc Bouchere6869a82000-03-20 06:03:29 +0000112
Harald Welte3efb6ea2001-08-06 18:50:21 +0000113#ifdef NO_SHARED_LIBS
114 init_extensions();
115#endif
116
Harald Welte58918652001-06-16 18:25:25 +0000117 while ((c = getopt_long(argc, argv, "bcvhnM:", options, NULL)) != -1) {
Harald Weltea9d27082000-12-19 16:10:42 +0000118 switch (c) {
119 case 'b':
120 binary = 1;
121 break;
122 case 'c':
123 counters = 1;
124 break;
Marc Boucher1277b592001-12-06 15:06:34 +0000125 case 'v':
126 verbose = 1;
127 break;
Harald Weltea9d27082000-12-19 16:10:42 +0000128 case 'h':
129 print_usage("iptables-restore",
Harald Welte80fe35d2002-05-29 13:08:15 +0000130 IPTABLES_VERSION);
Harald Weltea9d27082000-12-19 16:10:42 +0000131 break;
132 case 'n':
133 noflush = 1;
134 break;
Harald Welte58918652001-06-16 18:25:25 +0000135 case 'M':
136 modprobe = optarg;
137 break;
Harald Weltea9d27082000-12-19 16:10:42 +0000138 }
139 }
140
Marc Bouchere6869a82000-03-20 06:03:29 +0000141 if (optind == argc - 1) {
142 in = fopen(argv[optind], "r");
143 if (!in) {
144 fprintf(stderr, "Can't open %s: %s", argv[optind],
145 strerror(errno));
146 exit(1);
147 }
148 }
149 else if (optind < argc) {
150 fprintf(stderr, "Unknown arguments found on commandline");
151 exit(1);
152 }
153 else in = stdin;
Harald Welte9f7fa492001-03-15 15:12:02 +0000154
Marc Bouchere6869a82000-03-20 06:03:29 +0000155 /* Grab standard input. */
156 while (fgets(buffer, sizeof(buffer), in)) {
157 int ret;
158
159 line++;
160 if (buffer[0] == '\n') continue;
161 else if (buffer[0] == '#') {
162 if (verbose) fputs(buffer, stdout);
163 continue;
Harald Welteae1ff9f2000-12-01 14:26:20 +0000164 } else if (strcmp(buffer, "COMMIT\n") == 0) {
165 DEBUGP("Calling commit\n");
Marc Bouchere6869a82000-03-20 06:03:29 +0000166 ret = iptc_commit(&handle);
Harald Welteae1ff9f2000-12-01 14:26:20 +0000167 } else if (buffer[0] == '*') {
168 /* New table */
169 char *table;
170
171 table = strtok(buffer+1, " \t\n");
172 DEBUGP("line %u, table '%s'\n", line, table);
173 if (!table) {
174 exit_error(PARAMETER_PROBLEM,
175 "%s: line %u table name invalid\n",
176 program_name, line);
177 exit(1);
178 }
179 strncpy(curtable, table, IPT_TABLE_MAXNAMELEN);
180
Harald Welte58918652001-06-16 18:25:25 +0000181 handle = create_handle(table, modprobe);
Harald Weltea9d27082000-12-19 16:10:42 +0000182 if (noflush == 0) {
183 DEBUGP("Cleaning all chains of table '%s'\n",
184 table);
185 for_each_chain(flush_entries, verbose, 1,
186 &handle);
187
188 DEBUGP("Deleting all user-defined chains "
189 "of table '%s'\n", table);
190 for_each_chain(delete_chain, verbose, 0,
191 &handle) ;
192 }
Harald Welteae1ff9f2000-12-01 14:26:20 +0000193
194 ret = 1;
195
196 } else if (buffer[0] == ':') {
Marc Bouchere6869a82000-03-20 06:03:29 +0000197 /* New chain. */
Harald Welteae1ff9f2000-12-01 14:26:20 +0000198 char *policy, *chain;
Marc Bouchere6869a82000-03-20 06:03:29 +0000199
Marc Bouchere6869a82000-03-20 06:03:29 +0000200 chain = strtok(buffer+1, " \t\n");
Harald Welteae1ff9f2000-12-01 14:26:20 +0000201 DEBUGP("line %u, chain '%s'\n", line, chain);
Marc Bouchere6869a82000-03-20 06:03:29 +0000202 if (!chain) {
203 exit_error(PARAMETER_PROBLEM,
204 "%s: line %u chain name invalid\n",
205 program_name, line);
206 exit(1);
207 }
Harald Welteae1ff9f2000-12-01 14:26:20 +0000208
Harald Welte9f7fa492001-03-15 15:12:02 +0000209 if (!iptc_builtin(chain, handle)) {
210 DEBUGP("Creating new chain '%s'\n", chain);
Harald Welte26e643f2001-05-03 20:50:03 +0000211 if (!iptc_create_chain(chain, &handle))
212 exit_error(PARAMETER_PROBLEM,
213 "error creating chain "
214 "'%s':%s\n", chain,
215 strerror(errno));
Harald Welte9f7fa492001-03-15 15:12:02 +0000216 }
Harald Welteae1ff9f2000-12-01 14:26:20 +0000217
Marc Bouchere6869a82000-03-20 06:03:29 +0000218 policy = strtok(NULL, " \t\n");
Harald Welteae1ff9f2000-12-01 14:26:20 +0000219 DEBUGP("line %u, policy '%s'\n", line, policy);
Marc Bouchere6869a82000-03-20 06:03:29 +0000220 if (!policy) {
221 exit_error(PARAMETER_PROBLEM,
222 "%s: line %u policy invalid\n",
223 program_name, line);
224 exit(1);
225 }
Harald Welteae1ff9f2000-12-01 14:26:20 +0000226
227 if (strcmp(policy, "-") != 0) {
Harald Welted8e65632001-01-05 15:20:07 +0000228 struct ipt_counters count;
229
230 if (counters) {
231 char *ctrs;
232 ctrs = strtok(NULL, " \t\n");
233
234 parse_counters(ctrs, &count);
235
236 } else {
237 memset(&count, 0,
238 sizeof(struct ipt_counters));
239 }
Harald Welteae1ff9f2000-12-01 14:26:20 +0000240
241 DEBUGP("Setting policy of chain %s to %s\n",
242 chain, policy);
243
Harald Welted8e65632001-01-05 15:20:07 +0000244 if (!iptc_set_policy(chain, policy, &count,
245 &handle))
Harald Welteae1ff9f2000-12-01 14:26:20 +0000246 exit_error(OTHER_PROBLEM,
247 "Can't set policy `%s'"
248 " on `%s' line %u: %s\n",
249 chain, policy, line,
250 iptc_strerror(errno));
251 }
252
253 ret = 1;
254
Marc Bouchere6869a82000-03-20 06:03:29 +0000255 } else {
Harald Welte9f7fa492001-03-15 15:12:02 +0000256 int a;
Marc Bouchere6869a82000-03-20 06:03:29 +0000257 char *ptr = buffer;
Harald Welteccd49e52001-01-23 22:54:34 +0000258 char *pcnt = NULL;
259 char *bcnt = NULL;
Harald Welte9f7fa492001-03-15 15:12:02 +0000260 char *parsestart;
261
Harald Welte26e643f2001-05-03 20:50:03 +0000262 /* the parser */
263 char *param_start, *curchar;
264 int quote_open;
265
Harald Welte9f7fa492001-03-15 15:12:02 +0000266 /* reset the newargv */
267 newargc = 0;
Marc Bouchere6869a82000-03-20 06:03:29 +0000268
Marc Bouchere6869a82000-03-20 06:03:29 +0000269 if (buffer[0] == '[') {
Harald Welte9f7fa492001-03-15 15:12:02 +0000270 /* we have counters in our input */
Marc Bouchere6869a82000-03-20 06:03:29 +0000271 ptr = strchr(buffer, ']');
272 if (!ptr)
273 exit_error(PARAMETER_PROBLEM,
274 "Bad line %u: need ]\n",
275 line);
Harald Welte9f7fa492001-03-15 15:12:02 +0000276
Harald Welteccd49e52001-01-23 22:54:34 +0000277 pcnt = strtok(buffer+1, ":");
Harald Welte9f7fa492001-03-15 15:12:02 +0000278 if (!pcnt)
279 exit_error(PARAMETER_PROBLEM,
280 "Bad line %u: need :\n",
281 line);
282
Harald Welteccd49e52001-01-23 22:54:34 +0000283 bcnt = strtok(NULL, "]");
Harald Welte9f7fa492001-03-15 15:12:02 +0000284 if (!bcnt)
285 exit_error(PARAMETER_PROBLEM,
286 "Bad line %u: need ]\n",
287 line);
288
289 /* start command parsing after counter */
290 parsestart = ptr + 1;
291 } else {
292 /* start command parsing at start of line */
293 parsestart = buffer;
Marc Bouchere6869a82000-03-20 06:03:29 +0000294 }
Rusty Russell7e53bf92000-03-20 07:03:28 +0000295
Harald Welte9f7fa492001-03-15 15:12:02 +0000296 add_argv(argv[0]);
297 add_argv("-t");
298 add_argv((char *) &curtable);
299
Harald Welteccd49e52001-01-23 22:54:34 +0000300 if (counters && pcnt && bcnt) {
Harald Welte9f7fa492001-03-15 15:12:02 +0000301 add_argv("--set-counters");
302 add_argv((char *) pcnt);
303 add_argv((char *) bcnt);
Harald Welteccd49e52001-01-23 22:54:34 +0000304 }
Harald Welteae1ff9f2000-12-01 14:26:20 +0000305
Harald Welte26e643f2001-05-03 20:50:03 +0000306 /* After fighting with strtok enough, here's now
307 * a 'real' parser. According to Rusty I'm now no
308 * longer a real hacker, but I can live with that */
309
310 quote_open = 0;
311 param_start = parsestart;
312
313 for (curchar = parsestart; *curchar; curchar++) {
314 if (*curchar == '"') {
315 if (quote_open) {
316 quote_open = 0;
317 *curchar = ' ';
318 } else {
319 quote_open = 1;
320 param_start++;
321 }
322 }
323 if (*curchar == ' '
324 || *curchar == '\t'
325 || * curchar == '\n') {
326 char param_buffer[1024];
327 int param_len = curchar-param_start;
328
329 if (quote_open)
330 continue;
331
Harald Welte974d0102001-05-26 04:41:56 +0000332 if (!param_len) {
333 /* two spaces? */
334 param_start++;
335 continue;
336 }
Harald Welte26e643f2001-05-03 20:50:03 +0000337
338 /* end of one parameter */
339 strncpy(param_buffer, param_start,
340 param_len);
341 *(param_buffer+param_len) = '\0';
Harald Weltebb41f882001-10-21 14:11:54 +0000342
343 /* check if table name specified */
Harald Welte48a6f902001-10-22 15:16:21 +0000344 if (!strncmp(param_buffer, "-t", 3)
345 || !strncmp(param_buffer, "--table", 8)) {
Harald Weltebb41f882001-10-21 14:11:54 +0000346 exit_error(PARAMETER_PROBLEM,
347 "Line %u seems to have a "
348 "-t table option.\n", line);
349 exit(1);
350 }
351
Harald Welte26e643f2001-05-03 20:50:03 +0000352 add_argv(param_buffer);
353 param_start += param_len + 1;
354 } else {
355 /* regular character, skip */
356 }
Marc Bouchere6869a82000-03-20 06:03:29 +0000357 }
358
Harald Welte26e643f2001-05-03 20:50:03 +0000359 DEBUGP("calling do_command(%u, argv, &%s, handle):\n",
360 newargc, curtable);
Harald Welteae1ff9f2000-12-01 14:26:20 +0000361
Harald Weltefa48fc82001-10-16 09:51:33 +0000362 for (a = 0; a < newargc; a++)
Harald Welteae1ff9f2000-12-01 14:26:20 +0000363 DEBUGP("argv[%u]: %s\n", a, newargv[a]);
364
Harald Welte26e643f2001-05-03 20:50:03 +0000365 ret = do_command(newargc, newargv,
366 &newargv[2], &handle);
367
368 free_argv();
Marc Bouchere6869a82000-03-20 06:03:29 +0000369 }
370 if (!ret) {
371 fprintf(stderr, "%s: line %u failed\n",
372 program_name, line);
373 exit(1);
374 }
375 }
376
377 return 0;
378}