blob: 9f6108a21ebf60e6ba5efd6f7d437074b6fee6b2 [file] [log] [blame]
Max Kellermann5b76f682008-01-29 13:42:48 +00001/* Code to restore the iptables state, from file by ip6tables-save.
András Kis-Szabó2f523792001-02-27 09:59:48 +00002 * Author: Andras Kis-Szabo <kisza@sch.bme.hu>
3 *
4 * based on iptables-restore
5 * Authors:
Max Kellermann5b76f682008-01-29 13:42:48 +00006 * Harald Welte <laforge@gnumonks.org>
7 * Rusty Russell <rusty@linuxcare.com.au>
András Kis-Szabó0c4188f2002-08-14 11:40:41 +00008 * This code is distributed under the terms of GNU GPL v2
András Kis-Szabó2f523792001-02-27 09:59:48 +00009 *
Martin Josefsson357d59d2004-12-27 19:49:28 +000010 * $Id$
András Kis-Szabó2f523792001-02-27 09:59:48 +000011 */
12
13#include <getopt.h>
14#include <sys/errno.h>
15#include <string.h>
16#include <stdio.h>
17#include <stdlib.h>
18#include "ip6tables.h"
Yasuyuki KOZAKAI0b82e8e2007-07-24 05:47:40 +000019#include "xtables.h"
András Kis-Szabó2f523792001-02-27 09:59:48 +000020#include "libiptc/libip6tc.h"
Jan Engelhardt33690a12008-02-11 00:54:00 +010021#include "ip6tables-multi.h"
András Kis-Szabó2f523792001-02-27 09:59:48 +000022
23#ifdef DEBUG
24#define DEBUGP(x, args...) fprintf(stderr, x, ## args)
25#else
Max Kellermann5b76f682008-01-29 13:42:48 +000026#define DEBUGP(x, args...)
András Kis-Szabó2f523792001-02-27 09:59:48 +000027#endif
28
András Kis-Szabó2f523792001-02-27 09:59:48 +000029static int binary = 0, counters = 0, verbose = 0, noflush = 0;
30
31/* Keeping track of external matches and targets. */
Gáspár Lajos7bc3cb72008-03-27 08:20:39 +010032static const struct option options[] = {
33 {.name = "binary", .has_arg = false, .val = 'b'},
34 {.name = "counters", .has_arg = false, .val = 'c'},
35 {.name = "verbose", .has_arg = false, .val = 'v'},
36 {.name = "test", .has_arg = false, .val = 't'},
37 {.name = "help", .has_arg = false, .val = 'h'},
38 {.name = "noflush", .has_arg = false, .val = 'n'},
39 {.name = "modprobe", .has_arg = true, .val = 'M'},
40 {NULL},
András Kis-Szabó2f523792001-02-27 09:59:48 +000041};
42
43static void print_usage(const char *name, const char *version) __attribute__((noreturn));
44
45static void print_usage(const char *name, const char *version)
46{
Martin Josefsson60044392004-02-02 20:12:33 +000047 fprintf(stderr, "Usage: %s [-b] [-c] [-v] [-t] [-h]\n"
András Kis-Szabó2f523792001-02-27 09:59:48 +000048 " [ --binary ]\n"
49 " [ --counters ]\n"
50 " [ --verbose ]\n"
Martin Josefsson4e5e29a2004-02-02 19:59:17 +000051 " [ --test ]\n"
András Kis-Szabó2f523792001-02-27 09:59:48 +000052 " [ --help ]\n"
Harald Welte58918652001-06-16 18:25:25 +000053 " [ --noflush ]\n"
Max Kellermann5b76f682008-01-29 13:42:48 +000054 " [ --modprobe=<command>]\n", name);
55
András Kis-Szabó2f523792001-02-27 09:59:48 +000056 exit(1);
57}
58
Jan Engelhardt33690a12008-02-11 00:54:00 +010059static ip6tc_handle_t create_handle(const char *tablename,
60 const char *modprobe)
András Kis-Szabó2f523792001-02-27 09:59:48 +000061{
62 ip6tc_handle_t handle;
63
64 handle = ip6tc_init(tablename);
Harald Welte58918652001-06-16 18:25:25 +000065
66 if (!handle) {
András Kis-Szabó97fd91a2002-03-03 09:44:31 +000067 /* try to insmod the module if iptc_init failed */
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +000068 load_xtables_ko(modprobe, 0);
András Kis-Szabó97fd91a2002-03-03 09:44:31 +000069 handle = ip6tc_init(tablename);
Harald Welte58918652001-06-16 18:25:25 +000070 }
71
András Kis-Szabó2f523792001-02-27 09:59:48 +000072 if (!handle) {
Patrick McHardy5b098ac2007-02-14 13:59:12 +000073 exit_error(PARAMETER_PROBLEM, "%s: unable to initialize "
András Kis-Szabó2f523792001-02-27 09:59:48 +000074 "table '%s'\n", program_name, tablename);
75 exit(1);
76 }
77 return handle;
78}
79
Lutz Jaenickee78c69c2006-12-09 13:06:04 +000080static int parse_counters(char *string, struct ip6t_counters *ctr)
András Kis-Szabó2f523792001-02-27 09:59:48 +000081{
Patrick McHardy875441e2007-10-17 08:48:58 +000082 unsigned long long pcnt, bcnt;
83 int ret;
Patrick McHardy31f51c62007-10-16 08:49:31 +000084
Patrick McHardy875441e2007-10-17 08:48:58 +000085 ret = sscanf(string, "[%llu:%llu]",
86 (unsigned long long *)&pcnt,
87 (unsigned long long *)&bcnt);
88 ctr->pcnt = pcnt;
89 ctr->bcnt = bcnt;
90 return ret == 2;
András Kis-Szabó2f523792001-02-27 09:59:48 +000091}
92
Harald Welte885c6eb2001-10-04 08:30:46 +000093/* global new argv and argc */
94static char *newargv[255];
95static int newargc;
96
Max Kellermann5b76f682008-01-29 13:42:48 +000097/* function adding one argument to newargv, updating newargc
András Kis-Szabó97fd91a2002-03-03 09:44:31 +000098 * returns true if argument added, false otherwise */
Harald Welte885c6eb2001-10-04 08:30:46 +000099static int add_argv(char *what) {
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000100 DEBUGP("add_argv: %s\n", what);
101 if (what && ((newargc + 1) < sizeof(newargv)/sizeof(char *))) {
102 newargv[newargc] = strdup(what);
103 newargc++;
104 return 1;
Max Kellermann5b76f682008-01-29 13:42:48 +0000105 } else
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000106 return 0;
Harald Welte885c6eb2001-10-04 08:30:46 +0000107}
108
109static void free_argv(void) {
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000110 int i;
Harald Welte885c6eb2001-10-04 08:30:46 +0000111
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000112 for (i = 0; i < newargc; i++)
113 free(newargv[i]);
Harald Welte885c6eb2001-10-04 08:30:46 +0000114}
115
Hann-Huei Chiou4bc48332007-10-23 14:22:34 +0000116#ifdef IPTABLES_MULTI
117int ip6tables_restore_main(int argc, char *argv[])
118#else
András Kis-Szabó2f523792001-02-27 09:59:48 +0000119int main(int argc, char *argv[])
Hann-Huei Chiou4bc48332007-10-23 14:22:34 +0000120#endif
András Kis-Szabó2f523792001-02-27 09:59:48 +0000121{
Martin Josefsson841e4ae2003-05-02 15:30:11 +0000122 ip6tc_handle_t handle = NULL;
András Kis-Szabó2f523792001-02-27 09:59:48 +0000123 char buffer[10240];
András Kis-Szabó2f523792001-02-27 09:59:48 +0000124 int c;
125 char curtable[IP6T_TABLE_MAXNAMELEN + 1];
András Kis-Szabó2f523792001-02-27 09:59:48 +0000126 FILE *in;
Harald Welte58918652001-06-16 18:25:25 +0000127 const char *modprobe = 0;
Martin Josefsson4e5e29a2004-02-02 19:59:17 +0000128 int in_table = 0, testing = 0;
András Kis-Szabó2f523792001-02-27 09:59:48 +0000129
130 program_name = "ip6tables-restore";
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200131 program_version = XTABLES_VERSION;
Harald Weltea8658ca2003-03-05 07:46:15 +0000132 line = 0;
András Kis-Szabó2f523792001-02-27 09:59:48 +0000133
Jan Engelhardt21b41ee2008-02-11 01:02:00 +0100134 lib_dir = getenv("XTABLES_LIBDIR");
135 if (lib_dir == NULL) {
136 lib_dir = getenv("IP6TABLES_LIB_DIR");
137 if (lib_dir != NULL)
138 fprintf(stderr, "IP6TABLES_LIB_DIR is deprecated\n");
139 }
140 if (lib_dir == NULL)
141 lib_dir = XTABLES_LIBDIR;
Martin Josefsson357d59d2004-12-27 19:49:28 +0000142
Harald Welte3efb6ea2001-08-06 18:50:21 +0000143#ifdef NO_SHARED_LIBS
144 init_extensions();
145#endif
146
Martin Josefsson4e5e29a2004-02-02 19:59:17 +0000147 while ((c = getopt_long(argc, argv, "bcvthnM:", options, NULL)) != -1) {
András Kis-Szabó2f523792001-02-27 09:59:48 +0000148 switch (c) {
149 case 'b':
150 binary = 1;
151 break;
152 case 'c':
153 counters = 1;
154 break;
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000155 case 'v':
156 verbose = 1;
157 break;
Martin Josefsson4e5e29a2004-02-02 19:59:17 +0000158 case 't':
159 testing = 1;
160 break;
András Kis-Szabó2f523792001-02-27 09:59:48 +0000161 case 'h':
162 print_usage("ip6tables-restore",
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200163 XTABLES_VERSION);
András Kis-Szabó2f523792001-02-27 09:59:48 +0000164 break;
165 case 'n':
166 noflush = 1;
167 break;
Harald Welte58918652001-06-16 18:25:25 +0000168 case 'M':
169 modprobe = optarg;
170 break;
András Kis-Szabó2f523792001-02-27 09:59:48 +0000171 }
172 }
Max Kellermann5b76f682008-01-29 13:42:48 +0000173
András Kis-Szabó2f523792001-02-27 09:59:48 +0000174 if (optind == argc - 1) {
175 in = fopen(argv[optind], "r");
176 if (!in) {
Pavel Rusnak972af092007-05-10 15:00:39 +0000177 fprintf(stderr, "Can't open %s: %s\n", argv[optind],
András Kis-Szabó2f523792001-02-27 09:59:48 +0000178 strerror(errno));
179 exit(1);
180 }
181 }
182 else if (optind < argc) {
Pavel Rusnak972af092007-05-10 15:00:39 +0000183 fprintf(stderr, "Unknown arguments found on commandline\n");
András Kis-Szabó2f523792001-02-27 09:59:48 +0000184 exit(1);
185 }
186 else in = stdin;
Max Kellermann5b76f682008-01-29 13:42:48 +0000187
András Kis-Szabó2f523792001-02-27 09:59:48 +0000188 /* Grab standard input. */
189 while (fgets(buffer, sizeof(buffer), in)) {
Martin Josefssoncc536282004-02-02 20:14:56 +0000190 int ret = 0;
András Kis-Szabó2f523792001-02-27 09:59:48 +0000191
192 line++;
Martin Josefsson5065afa2004-01-31 19:33:47 +0000193 if (buffer[0] == '\n')
194 continue;
András Kis-Szabó2f523792001-02-27 09:59:48 +0000195 else if (buffer[0] == '#') {
Martin Josefsson3673dcb2004-01-31 19:41:49 +0000196 if (verbose)
197 fputs(buffer, stdout);
András Kis-Szabó2f523792001-02-27 09:59:48 +0000198 continue;
Harald Weltea8658ca2003-03-05 07:46:15 +0000199 } else if ((strcmp(buffer, "COMMIT\n") == 0) && (in_table)) {
Martin Josefsson4e5e29a2004-02-02 19:59:17 +0000200 if (!testing) {
201 DEBUGP("Calling commit\n");
202 ret = ip6tc_commit(&handle);
203 } else {
204 DEBUGP("Not calling commit, testing\n");
205 ret = 1;
206 }
Harald Weltea8658ca2003-03-05 07:46:15 +0000207 in_table = 0;
208 } else if ((buffer[0] == '*') && (!in_table)) {
András Kis-Szabó2f523792001-02-27 09:59:48 +0000209 /* New table */
210 char *table;
211
212 table = strtok(buffer+1, " \t\n");
213 DEBUGP("line %u, table '%s'\n", line, table);
214 if (!table) {
Max Kellermann5b76f682008-01-29 13:42:48 +0000215 exit_error(PARAMETER_PROBLEM,
András Kis-Szabó2f523792001-02-27 09:59:48 +0000216 "%s: line %u table name invalid\n",
217 program_name, line);
218 exit(1);
219 }
220 strncpy(curtable, table, IP6T_TABLE_MAXNAMELEN);
Karsten Desler073df8f2004-01-31 15:33:55 +0000221 curtable[IP6T_TABLE_MAXNAMELEN] = '\0';
András Kis-Szabó2f523792001-02-27 09:59:48 +0000222
Martin Josefsson841e4ae2003-05-02 15:30:11 +0000223 if (handle)
224 ip6tc_free(&handle);
225
Harald Welte58918652001-06-16 18:25:25 +0000226 handle = create_handle(table, modprobe);
András Kis-Szabó2f523792001-02-27 09:59:48 +0000227 if (noflush == 0) {
228 DEBUGP("Cleaning all chains of table '%s'\n",
229 table);
Max Kellermann5b76f682008-01-29 13:42:48 +0000230 for_each_chain(flush_entries, verbose, 1,
András Kis-Szabó2f523792001-02-27 09:59:48 +0000231 &handle);
Max Kellermann5b76f682008-01-29 13:42:48 +0000232
András Kis-Szabó2f523792001-02-27 09:59:48 +0000233 DEBUGP("Deleting all user-defined chains "
234 "of table '%s'\n", table);
Max Kellermann5b76f682008-01-29 13:42:48 +0000235 for_each_chain(delete_chain, verbose, 0,
András Kis-Szabó2f523792001-02-27 09:59:48 +0000236 &handle) ;
237 }
238
239 ret = 1;
Harald Weltea8658ca2003-03-05 07:46:15 +0000240 in_table = 1;
András Kis-Szabó2f523792001-02-27 09:59:48 +0000241
Harald Weltea8658ca2003-03-05 07:46:15 +0000242 } else if ((buffer[0] == ':') && (in_table)) {
András Kis-Szabó2f523792001-02-27 09:59:48 +0000243 /* New chain. */
244 char *policy, *chain;
245
246 chain = strtok(buffer+1, " \t\n");
247 DEBUGP("line %u, chain '%s'\n", line, chain);
248 if (!chain) {
249 exit_error(PARAMETER_PROBLEM,
250 "%s: line %u chain name invalid\n",
251 program_name, line);
252 exit(1);
253 }
András Kis-Szabó2f523792001-02-27 09:59:48 +0000254
Harald Weltedf1c71c2004-08-30 16:00:32 +0000255 if (ip6tc_builtin(chain, handle) <= 0) {
Charlie Brady595e4932005-06-12 15:54:15 +0000256 if (noflush && ip6tc_is_chain(chain, handle)) {
257 DEBUGP("Flushing existing user defined chain '%s'\n", chain);
258 if (!ip6tc_flush_entries(chain, &handle))
259 exit_error(PARAMETER_PROBLEM,
260 "error flushing chain "
261 "'%s':%s\n", chain,
262 strerror(errno));
263 } else {
264 DEBUGP("Creating new chain '%s'\n", chain);
265 if (!ip6tc_create_chain(chain, &handle))
266 exit_error(PARAMETER_PROBLEM,
267 "error creating chain "
268 "'%s':%s\n", chain,
269 strerror(errno));
270 }
Harald Welte885c6eb2001-10-04 08:30:46 +0000271 }
András Kis-Szabó2f523792001-02-27 09:59:48 +0000272
273 policy = strtok(NULL, " \t\n");
274 DEBUGP("line %u, policy '%s'\n", line, policy);
275 if (!policy) {
276 exit_error(PARAMETER_PROBLEM,
277 "%s: line %u policy invalid\n",
278 program_name, line);
279 exit(1);
280 }
281
282 if (strcmp(policy, "-") != 0) {
283 struct ip6t_counters count;
284
285 if (counters) {
286 char *ctrs;
287 ctrs = strtok(NULL, " \t\n");
288
Harald Welte6f38a302006-02-09 14:35:38 +0000289 if (!ctrs || !parse_counters(ctrs, &count))
290 exit_error(PARAMETER_PROBLEM,
291 "invalid policy counters "
292 "for chain '%s'\n", chain);
András Kis-Szabó2f523792001-02-27 09:59:48 +0000293
294 } else {
Max Kellermann5b76f682008-01-29 13:42:48 +0000295 memset(&count, 0,
András Kis-Szabó2f523792001-02-27 09:59:48 +0000296 sizeof(struct ip6t_counters));
297 }
298
299 DEBUGP("Setting policy of chain %s to %s\n",
300 chain, policy);
301
302 if (!ip6tc_set_policy(chain, policy, &count,
303 &handle))
304 exit_error(OTHER_PROBLEM,
305 "Can't set policy `%s'"
306 " on `%s' line %u: %s\n",
307 chain, policy, line,
308 ip6tc_strerror(errno));
309 }
310
311 ret = 1;
312
Harald Weltea8658ca2003-03-05 07:46:15 +0000313 } else if (in_table) {
Harald Welte885c6eb2001-10-04 08:30:46 +0000314 int a;
András Kis-Szabó2f523792001-02-27 09:59:48 +0000315 char *ptr = buffer;
316 char *pcnt = NULL;
317 char *bcnt = NULL;
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000318 char *parsestart;
Harald Welte885c6eb2001-10-04 08:30:46 +0000319
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000320 /* the parser */
Max Kellermann3bf54df2008-01-29 13:45:29 +0000321 char *curchar;
322 int quote_open, escaped;
323 size_t param_len;
Harald Welte885c6eb2001-10-04 08:30:46 +0000324
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000325 /* reset the newargv */
326 newargc = 0;
András Kis-Szabó2f523792001-02-27 09:59:48 +0000327
328 if (buffer[0] == '[') {
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000329 /* we have counters in our input */
András Kis-Szabó2f523792001-02-27 09:59:48 +0000330 ptr = strchr(buffer, ']');
331 if (!ptr)
332 exit_error(PARAMETER_PROBLEM,
333 "Bad line %u: need ]\n",
334 line);
Harald Welte885c6eb2001-10-04 08:30:46 +0000335
András Kis-Szabó2f523792001-02-27 09:59:48 +0000336 pcnt = strtok(buffer+1, ":");
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000337 if (!pcnt)
338 exit_error(PARAMETER_PROBLEM,
339 "Bad line %u: need :\n",
340 line);
Harald Welte885c6eb2001-10-04 08:30:46 +0000341
András Kis-Szabó2f523792001-02-27 09:59:48 +0000342 bcnt = strtok(NULL, "]");
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000343 if (!bcnt)
344 exit_error(PARAMETER_PROBLEM,
345 "Bad line %u: need ]\n",
346 line);
András Kis-Szabó2f523792001-02-27 09:59:48 +0000347
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000348 /* start command parsing after counter */
349 parsestart = ptr + 1;
350 } else {
351 /* start command parsing at start of line */
352 parsestart = buffer;
András Kis-Szabó2f523792001-02-27 09:59:48 +0000353 }
András Kis-Szabó2f523792001-02-27 09:59:48 +0000354
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000355 add_argv(argv[0]);
356 add_argv("-t");
357 add_argv((char *) &curtable);
Max Kellermann5b76f682008-01-29 13:42:48 +0000358
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000359 if (counters && pcnt && bcnt) {
360 add_argv("--set-counters");
361 add_argv((char *) pcnt);
362 add_argv((char *) bcnt);
363 }
András Kis-Szabó2f523792001-02-27 09:59:48 +0000364
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000365 /* After fighting with strtok enough, here's now
366 * a 'real' parser. According to Rusty I'm now no
367 * longer a real hacker, but I can live with that */
András Kis-Szabó2f523792001-02-27 09:59:48 +0000368
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000369 quote_open = 0;
Max Kellermann3bf54df2008-01-29 13:45:29 +0000370 escaped = 0;
371 param_len = 0;
Max Kellermann5b76f682008-01-29 13:42:48 +0000372
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000373 for (curchar = parsestart; *curchar; curchar++) {
Max Kellermann3bf54df2008-01-29 13:45:29 +0000374 char param_buffer[1024];
375
Max Kellermann3bf54df2008-01-29 13:45:29 +0000376 if (quote_open) {
Max Kellermannfe05c762008-01-29 13:46:01 +0000377 if (escaped) {
378 param_buffer[param_len++] = *curchar;
379 escaped = 0;
380 continue;
381 } else if (*curchar == '\\') {
Max Kellermann3bf54df2008-01-29 13:45:29 +0000382 escaped = 1;
383 continue;
384 } else if (*curchar == '"') {
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000385 quote_open = 0;
386 *curchar = ' ';
387 } else {
Max Kellermann3bf54df2008-01-29 13:45:29 +0000388 param_buffer[param_len++] = *curchar;
389 continue;
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000390 }
Max Kellermann3bf54df2008-01-29 13:45:29 +0000391 } else {
392 if (*curchar == '"') {
393 quote_open = 1;
394 continue;
395 }
396 }
397
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000398 if (*curchar == ' '
399 || *curchar == '\t'
400 || * curchar == '\n') {
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000401 if (!param_len) {
402 /* two spaces? */
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000403 continue;
404 }
Max Kellermann3bf54df2008-01-29 13:45:29 +0000405
406 param_buffer[param_len] = '\0';
Harald Weltebb41f882001-10-21 14:11:54 +0000407
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000408 /* check if table name specified */
Harald Welte48a6f902001-10-22 15:16:21 +0000409 if (!strncmp(param_buffer, "-t", 3)
410 || !strncmp(param_buffer, "--table", 8)) {
Max Kellermann5b76f682008-01-29 13:42:48 +0000411 exit_error(PARAMETER_PROBLEM,
Harald Weltebb41f882001-10-21 14:11:54 +0000412 "Line %u seems to have a "
413 "-t table option.\n", line);
414 exit(1);
415 }
416
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000417 add_argv(param_buffer);
Max Kellermann3bf54df2008-01-29 13:45:29 +0000418 param_len = 0;
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000419 } else {
Max Kellermann3bf54df2008-01-29 13:45:29 +0000420 /* regular character, copy to buffer */
421 param_buffer[param_len++] = *curchar;
422
423 if (param_len >= sizeof(param_buffer))
424 exit_error(PARAMETER_PROBLEM,
425 "Parameter too long!");
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000426 }
427 }
Harald Welte885c6eb2001-10-04 08:30:46 +0000428
429 DEBUGP("calling do_command6(%u, argv, &%s, handle):\n",
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000430 newargc, curtable);
Harald Welte885c6eb2001-10-04 08:30:46 +0000431
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000432 for (a = 0; a < newargc; a++)
András Kis-Szabó2f523792001-02-27 09:59:48 +0000433 DEBUGP("argv[%u]: %s\n", a, newargv[a]);
434
Max Kellermann5b76f682008-01-29 13:42:48 +0000435 ret = do_command6(newargc, newargv,
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000436 &newargv[2], &handle);
Harald Welte885c6eb2001-10-04 08:30:46 +0000437
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000438 free_argv();
Henrik Nordstromd2137602008-05-12 20:51:45 +0200439 fflush(stdout);
András Kis-Szabó2f523792001-02-27 09:59:48 +0000440 }
441 if (!ret) {
442 fprintf(stderr, "%s: line %u failed\n",
443 program_name, line);
444 exit(1);
445 }
446 }
Martin Josefssone0dc5812004-02-02 19:58:36 +0000447 if (in_table) {
448 fprintf(stderr, "%s: COMMIT expected at line %u\n",
449 program_name, line + 1);
450 exit(1);
451 }
András Kis-Szabó2f523792001-02-27 09:59:48 +0000452
453 return 0;
454}