blob: 0daae5f0855c30a59c4c8c916f1c9506e473dba5 [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 Engelhardtfd187312008-11-10 16:59:27 +010059static struct ip6tc_handle *create_handle(const char *tablename,
Jan Engelhardt33690a12008-02-11 00:54:00 +010060 const char *modprobe)
András Kis-Szabó2f523792001-02-27 09:59:48 +000061{
Jan Engelhardtfd187312008-11-10 16:59:27 +010062 struct ip6tc_handle *handle;
András Kis-Szabó2f523792001-02-27 09:59:48 +000063
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{
Jan Engelhardtfd187312008-11-10 16:59:27 +0100122 struct ip6tc_handle *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;
Patrick McHardy0ea82bc2008-06-07 15:15:29 +0200127 const char *modprobe = NULL;
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");
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100202 ret = ip6tc_commit(handle);
203 ip6tc_free(handle);
204 handle = NULL;
Martin Josefsson4e5e29a2004-02-02 19:59:17 +0000205 } else {
206 DEBUGP("Not calling commit, testing\n");
207 ret = 1;
208 }
Harald Weltea8658ca2003-03-05 07:46:15 +0000209 in_table = 0;
210 } else if ((buffer[0] == '*') && (!in_table)) {
András Kis-Szabó2f523792001-02-27 09:59:48 +0000211 /* New table */
212 char *table;
213
214 table = strtok(buffer+1, " \t\n");
215 DEBUGP("line %u, table '%s'\n", line, table);
216 if (!table) {
Max Kellermann5b76f682008-01-29 13:42:48 +0000217 exit_error(PARAMETER_PROBLEM,
András Kis-Szabó2f523792001-02-27 09:59:48 +0000218 "%s: line %u table name invalid\n",
219 program_name, line);
220 exit(1);
221 }
222 strncpy(curtable, table, IP6T_TABLE_MAXNAMELEN);
Karsten Desler073df8f2004-01-31 15:33:55 +0000223 curtable[IP6T_TABLE_MAXNAMELEN] = '\0';
András Kis-Szabó2f523792001-02-27 09:59:48 +0000224
Martin Josefsson841e4ae2003-05-02 15:30:11 +0000225 if (handle)
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100226 ip6tc_free(handle);
Martin Josefsson841e4ae2003-05-02 15:30:11 +0000227
Harald Welte58918652001-06-16 18:25:25 +0000228 handle = create_handle(table, modprobe);
András Kis-Szabó2f523792001-02-27 09:59:48 +0000229 if (noflush == 0) {
230 DEBUGP("Cleaning all chains of table '%s'\n",
231 table);
Max Kellermann5b76f682008-01-29 13:42:48 +0000232 for_each_chain(flush_entries, verbose, 1,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100233 handle);
Max Kellermann5b76f682008-01-29 13:42:48 +0000234
András Kis-Szabó2f523792001-02-27 09:59:48 +0000235 DEBUGP("Deleting all user-defined chains "
236 "of table '%s'\n", table);
Max Kellermann5b76f682008-01-29 13:42:48 +0000237 for_each_chain(delete_chain, verbose, 0,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100238 handle);
András Kis-Szabó2f523792001-02-27 09:59:48 +0000239 }
240
241 ret = 1;
Harald Weltea8658ca2003-03-05 07:46:15 +0000242 in_table = 1;
András Kis-Szabó2f523792001-02-27 09:59:48 +0000243
Harald Weltea8658ca2003-03-05 07:46:15 +0000244 } else if ((buffer[0] == ':') && (in_table)) {
András Kis-Szabó2f523792001-02-27 09:59:48 +0000245 /* New chain. */
246 char *policy, *chain;
247
248 chain = strtok(buffer+1, " \t\n");
249 DEBUGP("line %u, chain '%s'\n", line, chain);
250 if (!chain) {
251 exit_error(PARAMETER_PROBLEM,
252 "%s: line %u chain name invalid\n",
253 program_name, line);
254 exit(1);
255 }
András Kis-Szabó2f523792001-02-27 09:59:48 +0000256
Harald Weltedf1c71c2004-08-30 16:00:32 +0000257 if (ip6tc_builtin(chain, handle) <= 0) {
Charlie Brady595e4932005-06-12 15:54:15 +0000258 if (noflush && ip6tc_is_chain(chain, handle)) {
259 DEBUGP("Flushing existing user defined chain '%s'\n", chain);
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100260 if (!ip6tc_flush_entries(chain, handle))
Charlie Brady595e4932005-06-12 15:54:15 +0000261 exit_error(PARAMETER_PROBLEM,
262 "error flushing chain "
263 "'%s':%s\n", chain,
264 strerror(errno));
265 } else {
266 DEBUGP("Creating new chain '%s'\n", chain);
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100267 if (!ip6tc_create_chain(chain, handle))
Charlie Brady595e4932005-06-12 15:54:15 +0000268 exit_error(PARAMETER_PROBLEM,
269 "error creating chain "
270 "'%s':%s\n", chain,
271 strerror(errno));
272 }
Harald Welte885c6eb2001-10-04 08:30:46 +0000273 }
András Kis-Szabó2f523792001-02-27 09:59:48 +0000274
275 policy = strtok(NULL, " \t\n");
276 DEBUGP("line %u, policy '%s'\n", line, policy);
277 if (!policy) {
278 exit_error(PARAMETER_PROBLEM,
279 "%s: line %u policy invalid\n",
280 program_name, line);
281 exit(1);
282 }
283
284 if (strcmp(policy, "-") != 0) {
285 struct ip6t_counters count;
286
287 if (counters) {
288 char *ctrs;
289 ctrs = strtok(NULL, " \t\n");
290
Harald Welte6f38a302006-02-09 14:35:38 +0000291 if (!ctrs || !parse_counters(ctrs, &count))
292 exit_error(PARAMETER_PROBLEM,
293 "invalid policy counters "
294 "for chain '%s'\n", chain);
András Kis-Szabó2f523792001-02-27 09:59:48 +0000295
296 } else {
Max Kellermann5b76f682008-01-29 13:42:48 +0000297 memset(&count, 0,
András Kis-Szabó2f523792001-02-27 09:59:48 +0000298 sizeof(struct ip6t_counters));
299 }
300
301 DEBUGP("Setting policy of chain %s to %s\n",
302 chain, policy);
303
304 if (!ip6tc_set_policy(chain, policy, &count,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100305 handle))
András Kis-Szabó2f523792001-02-27 09:59:48 +0000306 exit_error(OTHER_PROBLEM,
307 "Can't set policy `%s'"
308 " on `%s' line %u: %s\n",
309 chain, policy, line,
310 ip6tc_strerror(errno));
311 }
312
313 ret = 1;
314
Harald Weltea8658ca2003-03-05 07:46:15 +0000315 } else if (in_table) {
Harald Welte885c6eb2001-10-04 08:30:46 +0000316 int a;
András Kis-Szabó2f523792001-02-27 09:59:48 +0000317 char *ptr = buffer;
318 char *pcnt = NULL;
319 char *bcnt = NULL;
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000320 char *parsestart;
Harald Welte885c6eb2001-10-04 08:30:46 +0000321
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000322 /* the parser */
Max Kellermann3bf54df2008-01-29 13:45:29 +0000323 char *curchar;
324 int quote_open, escaped;
325 size_t param_len;
Harald Welte885c6eb2001-10-04 08:30:46 +0000326
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000327 /* reset the newargv */
328 newargc = 0;
András Kis-Szabó2f523792001-02-27 09:59:48 +0000329
330 if (buffer[0] == '[') {
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000331 /* we have counters in our input */
András Kis-Szabó2f523792001-02-27 09:59:48 +0000332 ptr = strchr(buffer, ']');
333 if (!ptr)
334 exit_error(PARAMETER_PROBLEM,
335 "Bad line %u: need ]\n",
336 line);
Harald Welte885c6eb2001-10-04 08:30:46 +0000337
András Kis-Szabó2f523792001-02-27 09:59:48 +0000338 pcnt = strtok(buffer+1, ":");
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000339 if (!pcnt)
340 exit_error(PARAMETER_PROBLEM,
341 "Bad line %u: need :\n",
342 line);
Harald Welte885c6eb2001-10-04 08:30:46 +0000343
András Kis-Szabó2f523792001-02-27 09:59:48 +0000344 bcnt = strtok(NULL, "]");
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000345 if (!bcnt)
346 exit_error(PARAMETER_PROBLEM,
347 "Bad line %u: need ]\n",
348 line);
András Kis-Szabó2f523792001-02-27 09:59:48 +0000349
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000350 /* start command parsing after counter */
351 parsestart = ptr + 1;
352 } else {
353 /* start command parsing at start of line */
354 parsestart = buffer;
András Kis-Szabó2f523792001-02-27 09:59:48 +0000355 }
András Kis-Szabó2f523792001-02-27 09:59:48 +0000356
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000357 add_argv(argv[0]);
358 add_argv("-t");
359 add_argv((char *) &curtable);
Max Kellermann5b76f682008-01-29 13:42:48 +0000360
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000361 if (counters && pcnt && bcnt) {
362 add_argv("--set-counters");
363 add_argv((char *) pcnt);
364 add_argv((char *) bcnt);
365 }
András Kis-Szabó2f523792001-02-27 09:59:48 +0000366
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000367 /* After fighting with strtok enough, here's now
368 * a 'real' parser. According to Rusty I'm now no
369 * longer a real hacker, but I can live with that */
András Kis-Szabó2f523792001-02-27 09:59:48 +0000370
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000371 quote_open = 0;
Max Kellermann3bf54df2008-01-29 13:45:29 +0000372 escaped = 0;
373 param_len = 0;
Max Kellermann5b76f682008-01-29 13:42:48 +0000374
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000375 for (curchar = parsestart; *curchar; curchar++) {
Max Kellermann3bf54df2008-01-29 13:45:29 +0000376 char param_buffer[1024];
377
Max Kellermann3bf54df2008-01-29 13:45:29 +0000378 if (quote_open) {
Max Kellermannfe05c762008-01-29 13:46:01 +0000379 if (escaped) {
380 param_buffer[param_len++] = *curchar;
381 escaped = 0;
382 continue;
383 } else if (*curchar == '\\') {
Max Kellermann3bf54df2008-01-29 13:45:29 +0000384 escaped = 1;
385 continue;
386 } else if (*curchar == '"') {
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000387 quote_open = 0;
388 *curchar = ' ';
389 } else {
Max Kellermann3bf54df2008-01-29 13:45:29 +0000390 param_buffer[param_len++] = *curchar;
391 continue;
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000392 }
Max Kellermann3bf54df2008-01-29 13:45:29 +0000393 } else {
394 if (*curchar == '"') {
395 quote_open = 1;
396 continue;
397 }
398 }
399
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000400 if (*curchar == ' '
401 || *curchar == '\t'
402 || * curchar == '\n') {
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000403 if (!param_len) {
404 /* two spaces? */
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000405 continue;
406 }
Max Kellermann3bf54df2008-01-29 13:45:29 +0000407
408 param_buffer[param_len] = '\0';
Harald Weltebb41f882001-10-21 14:11:54 +0000409
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000410 /* check if table name specified */
Jan Engelhardtd0cbf5f2008-08-04 12:51:01 +0200411 if (!strncmp(param_buffer, "-t", 2)
Harald Welte48a6f902001-10-22 15:16:21 +0000412 || !strncmp(param_buffer, "--table", 8)) {
Max Kellermann5b76f682008-01-29 13:42:48 +0000413 exit_error(PARAMETER_PROBLEM,
Harald Weltebb41f882001-10-21 14:11:54 +0000414 "Line %u seems to have a "
415 "-t table option.\n", line);
416 exit(1);
417 }
418
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000419 add_argv(param_buffer);
Max Kellermann3bf54df2008-01-29 13:45:29 +0000420 param_len = 0;
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000421 } else {
Max Kellermann3bf54df2008-01-29 13:45:29 +0000422 /* regular character, copy to buffer */
423 param_buffer[param_len++] = *curchar;
424
425 if (param_len >= sizeof(param_buffer))
426 exit_error(PARAMETER_PROBLEM,
427 "Parameter too long!");
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000428 }
429 }
Harald Welte885c6eb2001-10-04 08:30:46 +0000430
431 DEBUGP("calling do_command6(%u, argv, &%s, handle):\n",
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000432 newargc, curtable);
Harald Welte885c6eb2001-10-04 08:30:46 +0000433
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000434 for (a = 0; a < newargc; a++)
András Kis-Szabó2f523792001-02-27 09:59:48 +0000435 DEBUGP("argv[%u]: %s\n", a, newargv[a]);
436
Max Kellermann5b76f682008-01-29 13:42:48 +0000437 ret = do_command6(newargc, newargv,
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000438 &newargv[2], &handle);
Harald Welte885c6eb2001-10-04 08:30:46 +0000439
András Kis-Szabó97fd91a2002-03-03 09:44:31 +0000440 free_argv();
Henrik Nordstromd2137602008-05-12 20:51:45 +0200441 fflush(stdout);
András Kis-Szabó2f523792001-02-27 09:59:48 +0000442 }
443 if (!ret) {
444 fprintf(stderr, "%s: line %u failed\n",
445 program_name, line);
446 exit(1);
447 }
448 }
Martin Josefssone0dc5812004-02-02 19:58:36 +0000449 if (in_table) {
450 fprintf(stderr, "%s: COMMIT expected at line %u\n",
451 program_name, line + 1);
452 exit(1);
453 }
András Kis-Szabó2f523792001-02-27 09:59:48 +0000454
455 return 0;
456}