blob: e2c514e2eee7507b8c1edaf27168daeb9360bba2 [file] [log] [blame]
Jonas Berlin1b91e592005-04-01 06:58:38 +00001/* Code to take an ip6tables-style command line and do it. */
Rusty Russell5eed48a2000-06-02 20:12:24 +00002
3/*
4 * Author: Paul.Russell@rustcorp.com.au and mneuling@radlogic.com.au
5 *
Harald Welte10a907f2002-08-07 09:07:41 +00006 * (C) 2000-2002 by the netfilter coreteam <coreteam@netfilter.org>:
7 * Paul 'Rusty' Russell <rusty@rustcorp.com.au>
8 * Marc Boucher <marc+nf@mbsi.ca>
9 * James Morris <jmorris@intercode.com.au>
10 * Harald Welte <laforge@gnumonks.org>
11 * Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
12 *
Rusty Russell5eed48a2000-06-02 20:12:24 +000013 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 */
27
28#include <getopt.h>
29#include <string.h>
30#include <netdb.h>
31#include <errno.h>
32#include <stdio.h>
33#include <stdlib.h>
34#include <dlfcn.h>
35#include <ctype.h>
36#include <stdarg.h>
37#include <limits.h>
38#include <ip6tables.h>
39#include <arpa/inet.h>
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +000040#include <unistd.h>
41#include <fcntl.h>
42#include <sys/wait.h>
43#include <sys/types.h>
44#include <sys/socket.h>
Rusty Russell5eed48a2000-06-02 20:12:24 +000045
46#ifndef TRUE
47#define TRUE 1
48#endif
49#ifndef FALSE
50#define FALSE 0
51#endif
52
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +000053#ifndef PROC_SYS_MODPROBE
54#define PROC_SYS_MODPROBE "/proc/sys/kernel/modprobe"
55#endif
56
Rusty Russell5eed48a2000-06-02 20:12:24 +000057#define FMT_NUMERIC 0x0001
58#define FMT_NOCOUNTS 0x0002
59#define FMT_KILOMEGAGIGA 0x0004
60#define FMT_OPTIONS 0x0008
61#define FMT_NOTABLE 0x0010
62#define FMT_NOTARGET 0x0020
63#define FMT_VIA 0x0040
64#define FMT_NONEWLINE 0x0080
65#define FMT_LINENUMBERS 0x0100
66
67#define FMT_PRINT_RULE (FMT_NOCOUNTS | FMT_OPTIONS | FMT_VIA \
68 | FMT_NUMERIC | FMT_NOTABLE)
69#define FMT(tab,notab) ((format) & FMT_NOTABLE ? (notab) : (tab))
70
71
72#define CMD_NONE 0x0000U
73#define CMD_INSERT 0x0001U
74#define CMD_DELETE 0x0002U
75#define CMD_DELETE_NUM 0x0004U
76#define CMD_REPLACE 0x0008U
77#define CMD_APPEND 0x0010U
78#define CMD_LIST 0x0020U
79#define CMD_FLUSH 0x0040U
80#define CMD_ZERO 0x0080U
81#define CMD_NEW_CHAIN 0x0100U
82#define CMD_DELETE_CHAIN 0x0200U
83#define CMD_SET_POLICY 0x0400U
84#define CMD_CHECK 0x0800U
85#define CMD_RENAME_CHAIN 0x1000U
86#define NUMBER_OF_CMD 13
87static const char cmdflags[] = { 'I', 'D', 'D', 'R', 'A', 'L', 'F', 'Z',
András Kis-Szabó0c4188f2002-08-14 11:40:41 +000088 'N', 'X', 'P', 'E' };
Rusty Russell5eed48a2000-06-02 20:12:24 +000089
90#define OPTION_OFFSET 256
91
92#define OPT_NONE 0x00000U
93#define OPT_NUMERIC 0x00001U
94#define OPT_SOURCE 0x00002U
95#define OPT_DESTINATION 0x00004U
96#define OPT_PROTOCOL 0x00008U
97#define OPT_JUMP 0x00010U
98#define OPT_VERBOSE 0x00020U
99#define OPT_EXPANDED 0x00040U
100#define OPT_VIANAMEIN 0x00080U
101#define OPT_VIANAMEOUT 0x00100U
102#define OPT_LINENUMBERS 0x00200U
Harald Welte43ac1912002-03-03 09:43:07 +0000103#define OPT_COUNTERS 0x00400U
104#define NUMBER_OF_OPT 11
Rusty Russell5eed48a2000-06-02 20:12:24 +0000105static const char optflags[NUMBER_OF_OPT]
Jonas Berlin4a06cf02005-04-01 06:38:25 +0000106= { 'n', 's', 'd', 'p', 'j', 'v', 'x', 'i', 'o', '0', 'c'};
Rusty Russell5eed48a2000-06-02 20:12:24 +0000107
108static struct option original_opts[] = {
109 { "append", 1, 0, 'A' },
110 { "delete", 1, 0, 'D' },
111 { "insert", 1, 0, 'I' },
112 { "replace", 1, 0, 'R' },
113 { "list", 2, 0, 'L' },
114 { "flush", 2, 0, 'F' },
115 { "zero", 2, 0, 'Z' },
Rusty Russell5eed48a2000-06-02 20:12:24 +0000116 { "new-chain", 1, 0, 'N' },
117 { "delete-chain", 2, 0, 'X' },
Harald Welte68ec9c72002-11-02 14:48:17 +0000118 { "rename-chain", 1, 0, 'E' },
Rusty Russell5eed48a2000-06-02 20:12:24 +0000119 { "policy", 1, 0, 'P' },
120 { "source", 1, 0, 's' },
121 { "destination", 1, 0, 'd' },
122 { "src", 1, 0, 's' }, /* synonym */
123 { "dst", 1, 0, 'd' }, /* synonym */
124 { "protocol", 1, 0, 'p' },
125 { "in-interface", 1, 0, 'i' },
126 { "jump", 1, 0, 'j' },
127 { "table", 1, 0, 't' },
128 { "match", 1, 0, 'm' },
129 { "numeric", 0, 0, 'n' },
130 { "out-interface", 1, 0, 'o' },
131 { "verbose", 0, 0, 'v' },
132 { "exact", 0, 0, 'x' },
133 { "version", 0, 0, 'V' },
134 { "help", 2, 0, 'h' },
135 { "line-numbers", 0, 0, '0' },
Harald Welte43ac1912002-03-03 09:43:07 +0000136 { "modprobe", 1, 0, 'M' },
137 { "set-counters", 1, 0, 'c' },
Rusty Russell5eed48a2000-06-02 20:12:24 +0000138 { 0 }
139};
140
Harald Weltea8658ca2003-03-05 07:46:15 +0000141/* we need this for ip6tables-restore. ip6tables-restore.c sets line to the
142 * current line of the input file, in order to give a more precise error
143 * message. ip6tables itself doesn't need this, so it is initialized to the
144 * magic number of -1 */
145int line = -1;
146
Rusty Russell5eed48a2000-06-02 20:12:24 +0000147static struct option *opts = original_opts;
148static unsigned int global_option_offset = 0;
149
150/* Table of legal combinations of commands and options. If any of the
151 * given commands make an option legal, that option is legal (applies to
152 * CMD_LIST and CMD_ZERO only).
153 * Key:
154 * + compulsory
155 * x illegal
156 * optional
157 */
158
159static char commands_v_options[NUMBER_OF_CMD][NUMBER_OF_OPT] =
160/* Well, it's better than "Re: Linux vs FreeBSD" */
161{
162 /* -n -s -d -p -j -v -x -i -o --line */
163/*INSERT*/ {'x',' ',' ',' ',' ',' ','x',' ',' ','x'},
164/*DELETE*/ {'x',' ',' ',' ',' ',' ','x',' ',' ','x'},
165/*DELETE_NUM*/{'x','x','x','x','x',' ','x','x','x','x'},
166/*REPLACE*/ {'x',' ',' ',' ',' ',' ','x',' ',' ','x'},
167/*APPEND*/ {'x',' ',' ',' ',' ',' ','x',' ',' ','x'},
168/*LIST*/ {' ','x','x','x','x',' ',' ','x','x',' '},
169/*FLUSH*/ {'x','x','x','x','x',' ','x','x','x','x'},
170/*ZERO*/ {'x','x','x','x','x',' ','x','x','x','x'},
171/*NEW_CHAIN*/ {'x','x','x','x','x',' ','x','x','x','x'},
172/*DEL_CHAIN*/ {'x','x','x','x','x',' ','x','x','x','x'},
173/*SET_POLICY*/{'x','x','x','x','x',' ','x','x','x','x'},
Harald Welte43ac1912002-03-03 09:43:07 +0000174/*CHECK*/ {'x','+','+','+','x',' ','x',' ',' ','x'},
Rusty Russell5eed48a2000-06-02 20:12:24 +0000175/*RENAME*/ {'x','x','x','x','x',' ','x','x','x','x'}
176};
177
178static int inverse_for_options[NUMBER_OF_OPT] =
179{
180/* -n */ 0,
181/* -s */ IP6T_INV_SRCIP,
182/* -d */ IP6T_INV_DSTIP,
183/* -p */ IP6T_INV_PROTO,
184/* -j */ 0,
185/* -v */ 0,
186/* -x */ 0,
187/* -i */ IP6T_INV_VIA_IN,
188/* -o */ IP6T_INV_VIA_OUT,
189/*--line*/ 0
190};
191
192const char *program_version;
193const char *program_name;
Martin Josefsson357d59d2004-12-27 19:49:28 +0000194char *lib_dir;
Rusty Russell208d42e2004-12-20 05:29:52 +0000195
Rusty Russell5eed48a2000-06-02 20:12:24 +0000196/* Keeping track of external matches and targets: linked lists. */
197struct ip6tables_match *ip6tables_matches = NULL;
198struct ip6tables_target *ip6tables_targets = NULL;
199
200/* Extra debugging from libiptc */
201extern void dump_entries6(const ip6tc_handle_t handle);
202
203/* A few hardcoded protocols for 'all' and in case the user has no
204 /etc/protocols */
205struct pprot {
206 char *name;
207 u_int8_t num;
208};
209
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +0000210/* Primitive headers... */
211/* defined in netinet/in.h */
212#if 0
213#ifndef IPPROTO_ESP
214#define IPPROTO_ESP 50
215#endif
216#ifndef IPPROTO_AH
217#define IPPROTO_AH 51
218#endif
219#endif
220
Rusty Russell5eed48a2000-06-02 20:12:24 +0000221static const struct pprot chain_protos[] = {
222 { "tcp", IPPROTO_TCP },
223 { "udp", IPPROTO_UDP },
Harald Weltede8e5fa2000-11-13 14:34:34 +0000224 { "icmpv6", IPPROTO_ICMPV6 },
András Kis-Szabó764316a2001-02-26 17:31:20 +0000225 { "esp", IPPROTO_ESP },
226 { "ah", IPPROTO_AH },
Rusty Russell5eed48a2000-06-02 20:12:24 +0000227 { "all", 0 },
228};
229
230static char *
231proto_to_name(u_int8_t proto, int nolookup)
232{
233 unsigned int i;
234
235 if (proto && !nolookup) {
236 struct protoent *pent = getprotobynumber(proto);
237 if (pent)
238 return pent->p_name;
239 }
240
241 for (i = 0; i < sizeof(chain_protos)/sizeof(struct pprot); i++)
242 if (chain_protos[i].num == proto)
243 return chain_protos[i].name;
244
245 return NULL;
246}
247
248static void
249in6addrcpy(struct in6_addr *dst, struct in6_addr *src)
250{
251 memcpy(dst, src, sizeof(struct in6_addr));
Harald Welte43ac1912002-03-03 09:43:07 +0000252 /* dst->s6_addr = src->s6_addr; */
Rusty Russell5eed48a2000-06-02 20:12:24 +0000253}
254
Pablo Neiradfdcd642005-05-29 19:05:23 +0000255static void free_opts(int reset_offset)
256{
257 if (opts != original_opts) {
258 free(opts);
259 opts = original_opts;
260 if (reset_offset)
261 global_option_offset = 0;
262 }
263}
264
Rusty Russell5eed48a2000-06-02 20:12:24 +0000265void
266exit_error(enum exittype status, char *msg, ...)
267{
268 va_list args;
269
270 va_start(args, msg);
271 fprintf(stderr, "%s v%s: ", program_name, program_version);
272 vfprintf(stderr, msg, args);
273 va_end(args);
274 fprintf(stderr, "\n");
275 if (status == PARAMETER_PROBLEM)
276 exit_tryhelp(status);
277 if (status == VERSION_PROBLEM)
278 fprintf(stderr,
Jonas Berlin1b91e592005-04-01 06:58:38 +0000279 "Perhaps ip6tables or your kernel needs to be upgraded.\n");
Pablo Neiradfdcd642005-05-29 19:05:23 +0000280 /* On error paths, make sure that we don't leak memory */
281 free_opts(1);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000282 exit(status);
283}
284
285void
286exit_tryhelp(int status)
287{
Harald Weltea8658ca2003-03-05 07:46:15 +0000288 if (line != -1)
289 fprintf(stderr, "Error occurred at line: %d\n", line);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000290 fprintf(stderr, "Try `%s -h' or '%s --help' for more information.\n",
291 program_name, program_name );
Pablo Neiradfdcd642005-05-29 19:05:23 +0000292 free_opts(1);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000293 exit(status);
294}
295
296void
Martin Josefsson66aea6f2004-05-26 15:41:54 +0000297exit_printhelp(struct ip6tables_rule_match *matches)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000298{
Martin Josefsson66aea6f2004-05-26 15:41:54 +0000299 struct ip6tables_rule_match *matchp = NULL;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000300 struct ip6tables_target *t = NULL;
301
302 printf("%s v%s\n\n"
András Kis-Szabó0c4188f2002-08-14 11:40:41 +0000303"Usage: %s -[AD] chain rule-specification [options]\n"
Rusty Russell5eed48a2000-06-02 20:12:24 +0000304" %s -[RI] chain rulenum rule-specification [options]\n"
305" %s -D chain rulenum [options]\n"
306" %s -[LFZ] [chain] [options]\n"
307" %s -[NX] chain\n"
308" %s -E old-chain-name new-chain-name\n"
309" %s -P chain target [options]\n"
310" %s -h (print this help information)\n\n",
311 program_name, program_version, program_name, program_name,
312 program_name, program_name, program_name, program_name,
313 program_name, program_name);
314
315 printf(
316"Commands:\n"
317"Either long or short options are allowed.\n"
318" --append -A chain Append to chain\n"
319" --delete -D chain Delete matching rule from chain\n"
320" --delete -D chain rulenum\n"
321" Delete rule rulenum (1 = first) from chain\n"
322" --insert -I chain [rulenum]\n"
323" Insert in chain as rulenum (default 1=first)\n"
324" --replace -R chain rulenum\n"
325" Replace rule rulenum (1 = first) in chain\n"
326" --list -L [chain] List the rules in a chain or all chains\n"
327" --flush -F [chain] Delete all rules in chain or all chains\n"
328" --zero -Z [chain] Zero counters in chain or all chains\n"
Rusty Russell5eed48a2000-06-02 20:12:24 +0000329" --new -N chain Create a new user-defined chain\n"
330" --delete-chain\n"
331" -X [chain] Delete a user-defined chain\n"
332" --policy -P chain target\n"
333" Change policy on chain to target\n"
334" --rename-chain\n"
335" -E old-chain new-chain\n"
336" Change chain name, (moving any references)\n"
337
338"Options:\n"
339" --proto -p [!] proto protocol: by number or name, eg. `tcp'\n"
340" --source -s [!] address[/mask]\n"
341" source specification\n"
342" --destination -d [!] address[/mask]\n"
343" destination specification\n"
344" --in-interface -i [!] input name[+]\n"
345" network interface name ([+] for wildcard)\n"
346" --jump -j target\n"
Harald Welte43ac1912002-03-03 09:43:07 +0000347" target for rule (may load target extension)\n"
348" --match -m match\n"
349" extended match (may load extension)\n"
Rusty Russell5eed48a2000-06-02 20:12:24 +0000350" --numeric -n numeric output of addresses and ports\n"
351" --out-interface -o [!] output name[+]\n"
352" network interface name ([+] for wildcard)\n"
353" --table -t table table to manipulate (default: `filter')\n"
354" --verbose -v verbose mode\n"
Harald Welte43ac1912002-03-03 09:43:07 +0000355" --line-numbers print line numbers when listing\n"
Rusty Russell5eed48a2000-06-02 20:12:24 +0000356" --exact -x expand numbers (display exact values)\n"
András Kis-Szabó058eaad2001-06-16 15:42:17 +0000357/*"[!] --fragment -f match second or further fragments only\n"*/
Harald Welte43ac1912002-03-03 09:43:07 +0000358" --modprobe=<command> try to insert modules using this command\n"
359" --set-counters PKTS BYTES set the counter during insert/append\n"
Rusty Russell5eed48a2000-06-02 20:12:24 +0000360"[!] --version -V print package version.\n");
361
362 /* Print out any special helps. A user might like to be able to add a --help
363 to the commandline, and see expected results. So we call help for all
Martin Josefsson66aea6f2004-05-26 15:41:54 +0000364 specified matches & targets */
365 for (t = ip6tables_targets; t; t = t->next) {
366 if (t->used) {
367 printf("\n");
368 t->help();
369 }
Rusty Russell5eed48a2000-06-02 20:12:24 +0000370 }
Martin Josefsson66aea6f2004-05-26 15:41:54 +0000371 for (matchp = matches; matchp; matchp = matchp->next) {
Rusty Russell5eed48a2000-06-02 20:12:24 +0000372 printf("\n");
Martin Josefsson66aea6f2004-05-26 15:41:54 +0000373 matchp->match->help();
Rusty Russell5eed48a2000-06-02 20:12:24 +0000374 }
375 exit(0);
376}
377
378static void
379generic_opt_check(int command, int options)
380{
381 int i, j, legal = 0;
382
383 /* Check that commands are valid with options. Complicated by the
384 * fact that if an option is legal with *any* command given, it is
385 * legal overall (ie. -z and -l).
386 */
387 for (i = 0; i < NUMBER_OF_OPT; i++) {
388 legal = 0; /* -1 => illegal, 1 => legal, 0 => undecided. */
389
390 for (j = 0; j < NUMBER_OF_CMD; j++) {
391 if (!(command & (1<<j)))
392 continue;
393
394 if (!(options & (1<<i))) {
395 if (commands_v_options[j][i] == '+')
396 exit_error(PARAMETER_PROBLEM,
397 "You need to supply the `-%c' "
398 "option for this command\n",
399 optflags[i]);
400 } else {
401 if (commands_v_options[j][i] != 'x')
402 legal = 1;
403 else if (legal == 0)
404 legal = -1;
405 }
406 }
407 if (legal == -1)
408 exit_error(PARAMETER_PROBLEM,
409 "Illegal option `-%c' with this command\n",
410 optflags[i]);
411 }
412}
413
414static char
415opt2char(int option)
416{
417 const char *ptr;
418 for (ptr = optflags; option > 1; option >>= 1, ptr++);
419
420 return *ptr;
421}
422
423static char
424cmd2char(int option)
425{
426 const char *ptr;
427 for (ptr = cmdflags; option > 1; option >>= 1, ptr++);
428
429 return *ptr;
430}
431
432static void
Harald Welteefa8fc22005-07-19 22:03:49 +0000433add_command(unsigned int *cmd, const int newcmd, const int othercmds,
434 int invert)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000435{
436 if (invert)
437 exit_error(PARAMETER_PROBLEM, "unexpected ! flag");
438 if (*cmd & (~othercmds))
439 exit_error(PARAMETER_PROBLEM, "Can't use -%c with -%c\n",
440 cmd2char(newcmd), cmd2char(*cmd & (~othercmds)));
441 *cmd |= newcmd;
442}
443
444int
Harald Welteb77f1da2002-03-14 11:35:58 +0000445check_inverse(const char option[], int *invert, int *optind, int argc)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000446{
447 if (option && strcmp(option, "!") == 0) {
448 if (*invert)
449 exit_error(PARAMETER_PROBLEM,
450 "Multiple `!' flags not allowed");
Rusty Russell5eed48a2000-06-02 20:12:24 +0000451 *invert = TRUE;
Harald Welteb77f1da2002-03-14 11:35:58 +0000452 if (optind) {
453 *optind = *optind+1;
454 if (argc && *optind > argc)
455 exit_error(PARAMETER_PROBLEM,
456 "no argument following `!'");
457 }
458
Rusty Russell5eed48a2000-06-02 20:12:24 +0000459 return TRUE;
460 }
461 return FALSE;
462}
463
464static void *
465fw_calloc(size_t count, size_t size)
466{
467 void *p;
468
469 if ((p = calloc(count, size)) == NULL) {
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +0000470 perror("ip6tables: calloc failed");
Rusty Russell5eed48a2000-06-02 20:12:24 +0000471 exit(1);
472 }
473 return p;
474}
475
476static void *
477fw_malloc(size_t size)
478{
479 void *p;
480
481 if ((p = malloc(size)) == NULL) {
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +0000482 perror("ip6tables: malloc failed");
Rusty Russell5eed48a2000-06-02 20:12:24 +0000483 exit(1);
484 }
485 return p;
486}
487
Rusty Russell5eed48a2000-06-02 20:12:24 +0000488static char *
489addr_to_numeric(const struct in6_addr *addrp)
490{
András Kis-Szabó058eaad2001-06-16 15:42:17 +0000491 /* 0000:0000:0000:0000:0000:000.000.000.000
492 * 0000:0000:0000:0000:0000:0000:0000:0000 */
András Kis-Szabó764316a2001-02-26 17:31:20 +0000493 static char buf[50+1];
András Kis-Szabó058eaad2001-06-16 15:42:17 +0000494 return (char *)inet_ntop(AF_INET6, addrp, buf, sizeof(buf));
Rusty Russell5eed48a2000-06-02 20:12:24 +0000495}
496
497static struct in6_addr *
498numeric_to_addr(const char *num)
499{
500 static struct in6_addr ap;
András Kis-Szabó058eaad2001-06-16 15:42:17 +0000501 int err;
502 if ((err=inet_pton(AF_INET6, num, &ap)) == 1)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000503 return &ap;
András Kis-Szabó058eaad2001-06-16 15:42:17 +0000504#ifdef DEBUG
505 fprintf(stderr, "\nnumeric2addr: %d\n", err);
506#endif
Rusty Russell5eed48a2000-06-02 20:12:24 +0000507 return (struct in6_addr *)NULL;
508}
509
András Kis-Szabó058eaad2001-06-16 15:42:17 +0000510
511static struct in6_addr *
512host_to_addr(const char *name, unsigned int *naddr)
513{
514 struct addrinfo hints;
515 struct addrinfo *res;
516 static struct in6_addr *addr;
517 int err;
518
519 memset(&hints, 0, sizeof(hints));
520 hints.ai_flags=AI_CANONNAME;
521 hints.ai_family=AF_INET6;
522 hints.ai_socktype=SOCK_RAW;
523 hints.ai_protocol=41;
524 hints.ai_next=NULL;
525
526 *naddr = 0;
527 if ( (err=getaddrinfo(name, NULL, &hints, &res)) != 0 ){
528#ifdef DEBUG
529 fprintf(stderr,"Name2IP: %s\n",gai_strerror(err));
530#endif
531 return (struct in6_addr *) NULL;
532 } else {
533 if (res->ai_family != AF_INET6 ||
534 res->ai_addrlen != sizeof(struct sockaddr_in6))
535 return (struct in6_addr *) NULL;
536
537#ifdef DEBUG
538 fprintf(stderr, "resolved: len=%d %s ", res->ai_addrlen,
539 addr_to_numeric(&(((struct sockaddr_in6 *)res->ai_addr)->sin6_addr)));
540#endif
541 /* Get the first element of the address-chain */
542 addr = fw_calloc(1, sizeof(struct in6_addr));
543 in6addrcpy(addr, (struct in6_addr *)
544 &((struct sockaddr_in6 *)res->ai_addr)->sin6_addr);
545 freeaddrinfo(res);
546 *naddr = 1;
547 return addr;
548 }
549
550 return (struct in6_addr *) NULL;
551}
552
András Kis-Szabó058eaad2001-06-16 15:42:17 +0000553static char *
554addr_to_host(const struct in6_addr *addr)
555{
556 struct sockaddr_in6 saddr;
557 int err;
558 static char hostname[NI_MAXHOST];
559
560 memset(&saddr, 0, sizeof(struct sockaddr_in6));
561 in6addrcpy(&(saddr.sin6_addr),(struct in6_addr *)addr);
András Kis-Szabóed44b832001-06-27 02:21:45 +0000562 saddr.sin6_family = AF_INET6;
András Kis-Szabó058eaad2001-06-16 15:42:17 +0000563
564 if ( (err=getnameinfo((struct sockaddr *)&saddr,
565 sizeof(struct sockaddr_in6),
566 hostname, sizeof(hostname)-1,
567 NULL, 0, 0)) != 0 ){
568#ifdef DEBUG
569 fprintf(stderr,"IP2Name: %s\n",gai_strerror(err));
570#endif
571 return (char *) NULL;
572 } else {
573#ifdef DEBUG
574 fprintf (stderr, "\naddr2host: %s\n", hostname);
575#endif
576
577 return hostname;
578 }
579
580 return (char *) NULL;
581}
582
Rusty Russell5eed48a2000-06-02 20:12:24 +0000583static char *
584mask_to_numeric(const struct in6_addr *addrp)
585{
Harald Welte8a50ab82003-06-24 18:15:59 +0000586 static char buf[50+2];
Rusty Russell5eed48a2000-06-02 20:12:24 +0000587 int l = ipv6_prefix_length(addrp);
Harald Welte8a50ab82003-06-24 18:15:59 +0000588 if (l == -1) {
589 strcpy(buf, "/");
590 strcat(buf, addr_to_numeric(addrp));
591 return buf;
592 }
Harald Welte43ac1912002-03-03 09:43:07 +0000593 sprintf(buf, "/%d", l);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000594 return buf;
595}
596
597static struct in6_addr *
598network_to_addr(const char *name)
599{
András Kis-Szabó058eaad2001-06-16 15:42:17 +0000600 /* abort();*/
601 /* TODO: not implemented yet, but the exception breaks the
602 * name resolvation */
603 return (struct in6_addr *)NULL;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000604}
605
606static char *
607addr_to_anyname(const struct in6_addr *addr)
608{
609 char *name;
610
611 if ((name = addr_to_host(addr)) != NULL)
612 return name;
613
614 return addr_to_numeric(addr);
615}
616
617/*
618 * All functions starting with "parse" should succeed, otherwise
619 * the program fails.
620 * Most routines return pointers to static data that may change
621 * between calls to the same or other routines with a few exceptions:
622 * "host_to_addr", "parse_hostnetwork", and "parse_hostnetworkmask"
623 * return global static data.
624*/
625
626static struct in6_addr *
627parse_hostnetwork(const char *name, unsigned int *naddrs)
628{
629 struct in6_addr *addrp, *addrptmp;
630
631 if ((addrptmp = numeric_to_addr(name)) != NULL ||
632 (addrptmp = network_to_addr(name)) != NULL) {
633 addrp = fw_malloc(sizeof(struct in6_addr));
634 in6addrcpy(addrp, addrptmp);
635 *naddrs = 1;
636 return addrp;
637 }
638 if ((addrp = host_to_addr(name, naddrs)) != NULL)
639 return addrp;
640
641 exit_error(PARAMETER_PROBLEM, "host/network `%s' not found", name);
642}
643
644static struct in6_addr *
645parse_mask(char *mask)
646{
647 static struct in6_addr maskaddr;
648 struct in6_addr *addrp;
Harald Welteed498492001-07-23 01:24:22 +0000649 unsigned int bits;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000650
651 if (mask == NULL) {
652 /* no mask at all defaults to 128 bits */
653 memset(&maskaddr, 0xff, sizeof maskaddr);
654 return &maskaddr;
655 }
656 if ((addrp = numeric_to_addr(mask)) != NULL)
657 return addrp;
Harald Welteed498492001-07-23 01:24:22 +0000658 if (string_to_number(mask, 0, 128, &bits) == -1)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000659 exit_error(PARAMETER_PROBLEM,
660 "invalid mask `%s' specified", mask);
661 if (bits != 0) {
662 char *p = (char *)&maskaddr;
663 memset(p, 0xff, bits / 8);
664 memset(p + (bits / 8) + 1, 0, (128 - bits) / 8);
665 p[bits / 8] = 0xff << (8 - (bits & 7));
666 return &maskaddr;
667 }
668
669 memset(&maskaddr, 0, sizeof maskaddr);
670 return &maskaddr;
671}
672
Harald Welte43ac1912002-03-03 09:43:07 +0000673void
Rusty Russell5eed48a2000-06-02 20:12:24 +0000674parse_hostnetworkmask(const char *name, struct in6_addr **addrpp,
675 struct in6_addr *maskp, unsigned int *naddrs)
676{
677 struct in6_addr *addrp;
678 char buf[256];
679 char *p;
680 int i, j, n;
681
682 strncpy(buf, name, sizeof(buf) - 1);
Karsten Desler073df8f2004-01-31 15:33:55 +0000683 buf[sizeof(buf) - 1] = '\0';
Rusty Russell5eed48a2000-06-02 20:12:24 +0000684 if ((p = strrchr(buf, '/')) != NULL) {
685 *p = '\0';
686 addrp = parse_mask(p + 1);
687 } else
688 addrp = parse_mask(NULL);
689 in6addrcpy(maskp, addrp);
690
691 /* if a null mask is given, the name is ignored, like in "any/0" */
692 if (!memcmp(maskp, &in6addr_any, sizeof(in6addr_any)))
693 strcpy(buf, "::");
694
695 addrp = *addrpp = parse_hostnetwork(buf, naddrs);
696 n = *naddrs;
697 for (i = 0, j = 0; i < n; i++) {
698 int k;
699 for (k = 0; k < 4; k++)
700 addrp[j].in6_u.u6_addr32[k] &= maskp->in6_u.u6_addr32[k];
701 j++;
702 for (k = 0; k < j - 1; k++) {
András Kis-Szabó058eaad2001-06-16 15:42:17 +0000703 if (IN6_ARE_ADDR_EQUAL(&addrp[k], &addrp[j - 1])) {
Rusty Russell5eed48a2000-06-02 20:12:24 +0000704 (*naddrs)--;
705 j--;
706 break;
707 }
708 }
709 }
710}
711
712struct ip6tables_match *
Martin Josefsson69ac0e02004-02-02 20:02:10 +0000713find_match(const char *name, enum ip6t_tryload tryload, struct ip6tables_rule_match **matches)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000714{
715 struct ip6tables_match *ptr;
Harald Weltecfaed1f2001-10-04 08:11:44 +0000716 int icmphack = 0;
717
718 /* This is ugly as hell. Nonetheless, there is no way of changing
719 * this without hurting backwards compatibility */
720 if ( (strcmp(name,"icmpv6") == 0) ||
721 (strcmp(name,"ipv6-icmp") == 0) ||
722 (strcmp(name,"icmp6") == 0) ) icmphack = 1;
723
724 if (!icmphack) {
725 for (ptr = ip6tables_matches; ptr; ptr = ptr->next) {
726 if (strcmp(name, ptr->name) == 0)
727 break;
728 }
729 } else {
730 for (ptr = ip6tables_matches; ptr; ptr = ptr->next) {
731 if (strcmp("icmp6", ptr->name) == 0)
732 break;
733 }
734 }
Rusty Russell5eed48a2000-06-02 20:12:24 +0000735
Harald Welte3efb6ea2001-08-06 18:50:21 +0000736#ifndef NO_SHARED_LIBS
Jones Desougif5b86e62005-12-22 03:33:50 +0000737 if (!ptr && tryload != DONT_LOAD && tryload != DURING_LOAD) {
Rusty Russell208d42e2004-12-20 05:29:52 +0000738 char path[strlen(lib_dir) + sizeof("/libip6t_.so")
Rusty Russell5eed48a2000-06-02 20:12:24 +0000739 + strlen(name)];
Harald Weltecfaed1f2001-10-04 08:11:44 +0000740 if (!icmphack)
Rusty Russell208d42e2004-12-20 05:29:52 +0000741 sprintf(path, "%s/libip6t_%s.so", lib_dir, name);
Harald Weltecfaed1f2001-10-04 08:11:44 +0000742 else
Rusty Russell208d42e2004-12-20 05:29:52 +0000743 sprintf(path, "%s/libip6t_%s.so", lib_dir, "icmpv6");
Rusty Russell5eed48a2000-06-02 20:12:24 +0000744 if (dlopen(path, RTLD_NOW)) {
745 /* Found library. If it didn't register itself,
746 maybe they specified target as match. */
Martin Josefsson69ac0e02004-02-02 20:02:10 +0000747 ptr = find_match(name, DONT_LOAD, NULL);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000748
749 if (!ptr)
750 exit_error(PARAMETER_PROBLEM,
751 "Couldn't load match `%s'\n",
752 name);
753 } else if (tryload == LOAD_MUST_SUCCEED)
754 exit_error(PARAMETER_PROBLEM,
Harald Welte43ac1912002-03-03 09:43:07 +0000755 "Couldn't load match `%s':%s\n",
756 name, dlerror());
Rusty Russell5eed48a2000-06-02 20:12:24 +0000757 }
Harald Welte3efb6ea2001-08-06 18:50:21 +0000758#else
759 if (ptr && !ptr->loaded) {
760 if (tryload != DONT_LOAD)
761 ptr->loaded = 1;
762 else
763 ptr = NULL;
764 }
Marc Boucher067477b2002-03-24 15:09:31 +0000765 if(!ptr && (tryload == LOAD_MUST_SUCCEED)) {
766 exit_error(PARAMETER_PROBLEM,
767 "Couldn't find match `%s'\n", name);
768 }
Harald Welte3efb6ea2001-08-06 18:50:21 +0000769#endif
Rusty Russell5eed48a2000-06-02 20:12:24 +0000770
Martin Josefsson69ac0e02004-02-02 20:02:10 +0000771 if (ptr && matches) {
772 struct ip6tables_rule_match **i;
773 struct ip6tables_rule_match *newentry;
774
775 newentry = fw_malloc(sizeof(struct ip6tables_rule_match));
776
777 for (i = matches; *i; i = &(*i)->next);
778 newentry->match = ptr;
779 newentry->next = NULL;
780 *i = newentry;
781 }
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +0000782
Rusty Russell5eed48a2000-06-02 20:12:24 +0000783 return ptr;
784}
785
786/* Christophe Burki wants `-p 6' to imply `-m tcp'. */
787static struct ip6tables_match *
Martin Josefsson69ac0e02004-02-02 20:02:10 +0000788find_proto(const char *pname, enum ip6t_tryload tryload, int nolookup, struct ip6tables_rule_match **matches)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000789{
Harald Welteed498492001-07-23 01:24:22 +0000790 unsigned int proto;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000791
Harald Welte43ac1912002-03-03 09:43:07 +0000792 if (string_to_number(pname, 0, 255, &proto) != -1) {
793 char *protoname = proto_to_name(proto, nolookup);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000794
Harald Welte43ac1912002-03-03 09:43:07 +0000795 if (protoname)
Martin Josefsson69ac0e02004-02-02 20:02:10 +0000796 return find_match(protoname, tryload, matches);
Harald Welte43ac1912002-03-03 09:43:07 +0000797 } else
Martin Josefsson69ac0e02004-02-02 20:02:10 +0000798 return find_match(pname, tryload, matches);
Harald Welte43ac1912002-03-03 09:43:07 +0000799
800 return NULL;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000801}
802
Harald Welte43ac1912002-03-03 09:43:07 +0000803u_int16_t
Rusty Russell5eed48a2000-06-02 20:12:24 +0000804parse_protocol(const char *s)
805{
Harald Welteed498492001-07-23 01:24:22 +0000806 unsigned int proto;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000807
Harald Welteed498492001-07-23 01:24:22 +0000808 if (string_to_number(s, 0, 255, &proto) == -1) {
Rusty Russell5eed48a2000-06-02 20:12:24 +0000809 struct protoent *pent;
810
811 if ((pent = getprotobyname(s)))
812 proto = pent->p_proto;
813 else {
814 unsigned int i;
815 for (i = 0;
816 i < sizeof(chain_protos)/sizeof(struct pprot);
817 i++) {
818 if (strcmp(s, chain_protos[i].name) == 0) {
819 proto = chain_protos[i].num;
820 break;
821 }
822 }
823 if (i == sizeof(chain_protos)/sizeof(struct pprot))
824 exit_error(PARAMETER_PROBLEM,
825 "unknown protocol `%s' specified",
826 s);
827 }
828 }
829
830 return (u_int16_t)proto;
831}
832
Yasuyuki KOZAKAI9867e812005-06-22 12:24:21 +0000833void parse_interface(const char *arg, char *vianame, unsigned char *mask)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000834{
835 int vialen = strlen(arg);
836 unsigned int i;
837
838 memset(mask, 0, IFNAMSIZ);
839 memset(vianame, 0, IFNAMSIZ);
840
841 if (vialen + 1 > IFNAMSIZ)
842 exit_error(PARAMETER_PROBLEM,
843 "interface name `%s' must be shorter than IFNAMSIZ"
844 " (%i)", arg, IFNAMSIZ-1);
845
846 strcpy(vianame, arg);
Ozgur AKAN3610deb2004-04-07 09:36:29 +0000847 if ((vialen == 0) || (vialen == 1 && vianame[0] == '+'))
Rusty Russell5eed48a2000-06-02 20:12:24 +0000848 memset(mask, 0, IFNAMSIZ);
849 else if (vianame[vialen - 1] == '+') {
850 memset(mask, 0xFF, vialen - 1);
851 memset(mask + vialen - 1, 0, IFNAMSIZ - vialen + 1);
Harald Welte43ac1912002-03-03 09:43:07 +0000852 /* Don't remove `+' here! -HW */
Rusty Russell5eed48a2000-06-02 20:12:24 +0000853 } else {
854 /* Include nul-terminator in match */
855 memset(mask, 0xFF, vialen + 1);
856 memset(mask + vialen + 1, 0, IFNAMSIZ - vialen - 1);
Harald Welte43ac1912002-03-03 09:43:07 +0000857 for (i = 0; vianame[i]; i++) {
858 if (!isalnum(vianame[i])
859 && vianame[i] != '_'
860 && vianame[i] != '.') {
861 printf("Warning: wierd character in interface"
862 " `%s' (No aliases, :, ! or *).\n",
863 vianame);
864 break;
865 }
Rusty Russell5eed48a2000-06-02 20:12:24 +0000866 }
867 }
868}
869
870/* Can't be zero. */
871static int
872parse_rulenumber(const char *rule)
873{
Harald Welte43ac1912002-03-03 09:43:07 +0000874 unsigned int rulenum;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000875
Harald Welte43ac1912002-03-03 09:43:07 +0000876 if (string_to_number(rule, 1, INT_MAX, &rulenum) == -1)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000877 exit_error(PARAMETER_PROBLEM,
878 "Invalid rule number `%s'", rule);
879
880 return rulenum;
881}
882
883static const char *
884parse_target(const char *targetname)
885{
886 const char *ptr;
887
888 if (strlen(targetname) < 1)
889 exit_error(PARAMETER_PROBLEM,
890 "Invalid target name (too short)");
891
892 if (strlen(targetname)+1 > sizeof(ip6t_chainlabel))
893 exit_error(PARAMETER_PROBLEM,
Martin Josefssona28d4952004-05-26 16:04:48 +0000894 "Invalid target name `%s' (%u chars max)",
895 targetname, (unsigned int)sizeof(ip6t_chainlabel)-1);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000896
897 for (ptr = targetname; *ptr; ptr++)
898 if (isspace(*ptr))
899 exit_error(PARAMETER_PROBLEM,
900 "Invalid target name `%s'", targetname);
901 return targetname;
902}
903
904int
Martin Josefssonb105bc92004-05-26 15:54:49 +0000905string_to_number_ll(const char *s, unsigned long long min, unsigned long long max,
906 unsigned long long *ret)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000907{
Martin Josefssonb105bc92004-05-26 15:54:49 +0000908 unsigned long long number;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000909 char *end;
910
911 /* Handle hex, octal, etc. */
Harald Welteed498492001-07-23 01:24:22 +0000912 errno = 0;
Martin Josefssonb105bc92004-05-26 15:54:49 +0000913 number = strtoull(s, &end, 0);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000914 if (*end == '\0' && end != s) {
915 /* we parsed a number, let's see if we want this */
Martin Josefssonb105bc92004-05-26 15:54:49 +0000916 if (errno != ERANGE && min <= number && (!max || number <= max)) {
Harald Welteed498492001-07-23 01:24:22 +0000917 *ret = number;
918 return 0;
Harald Welte43ac1912002-03-03 09:43:07 +0000919 }
Rusty Russell5eed48a2000-06-02 20:12:24 +0000920 }
921 return -1;
922}
923
Martin Josefssonb105bc92004-05-26 15:54:49 +0000924int
925string_to_number_l(const char *s, unsigned long min, unsigned long max,
926 unsigned long *ret)
927{
928 int result;
929 unsigned long long number;
930
931 result = string_to_number_ll(s, min, max, &number);
932 *ret = (unsigned long)number;
933
934 return result;
935}
936
937int string_to_number(const char *s, unsigned int min, unsigned int max,
938 unsigned int *ret)
939{
940 int result;
941 unsigned long number;
942
943 result = string_to_number_l(s, min, max, &number);
944 *ret = (unsigned int)number;
945
946 return result;
947}
948
Rusty Russell5eed48a2000-06-02 20:12:24 +0000949static void
950set_option(unsigned int *options, unsigned int option, u_int8_t *invflg,
951 int invert)
952{
953 if (*options & option)
954 exit_error(PARAMETER_PROBLEM, "multiple -%c flags not allowed",
955 opt2char(option));
956 *options |= option;
957
958 if (invert) {
959 unsigned int i;
960 for (i = 0; 1 << i != option; i++);
961
962 if (!inverse_for_options[i])
963 exit_error(PARAMETER_PROBLEM,
964 "cannot have ! before -%c",
965 opt2char(option));
966 *invflg |= inverse_for_options[i];
967 }
968}
969
970struct ip6tables_target *
971find_target(const char *name, enum ip6t_tryload tryload)
972{
973 struct ip6tables_target *ptr;
974
975 /* Standard target? */
976 if (strcmp(name, "") == 0
977 || strcmp(name, IP6TC_LABEL_ACCEPT) == 0
978 || strcmp(name, IP6TC_LABEL_DROP) == 0
979 || strcmp(name, IP6TC_LABEL_QUEUE) == 0
980 || strcmp(name, IP6TC_LABEL_RETURN) == 0)
981 name = "standard";
982
983 for (ptr = ip6tables_targets; ptr; ptr = ptr->next) {
984 if (strcmp(name, ptr->name) == 0)
985 break;
986 }
987
Harald Welte3efb6ea2001-08-06 18:50:21 +0000988#ifndef NO_SHARED_LIBS
Jones Desougif5b86e62005-12-22 03:33:50 +0000989 if (!ptr && tryload != DONT_LOAD && tryload != DURING_LOAD) {
Rusty Russell208d42e2004-12-20 05:29:52 +0000990 char path[strlen(lib_dir) + sizeof("/libip6t_.so")
Rusty Russell5eed48a2000-06-02 20:12:24 +0000991 + strlen(name)];
Rusty Russell208d42e2004-12-20 05:29:52 +0000992 sprintf(path, "%s/libip6t_%s.so", lib_dir, name);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000993 if (dlopen(path, RTLD_NOW)) {
994 /* Found library. If it didn't register itself,
995 maybe they specified match as a target. */
996 ptr = find_target(name, DONT_LOAD);
997 if (!ptr)
998 exit_error(PARAMETER_PROBLEM,
999 "Couldn't load target `%s'\n",
1000 name);
1001 } else if (tryload == LOAD_MUST_SUCCEED)
1002 exit_error(PARAMETER_PROBLEM,
Harald Welte43ac1912002-03-03 09:43:07 +00001003 "Couldn't load target `%s':%s\n",
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001004 name, dlerror());
Rusty Russell5eed48a2000-06-02 20:12:24 +00001005 }
Harald Welte3efb6ea2001-08-06 18:50:21 +00001006#else
1007 if (ptr && !ptr->loaded) {
1008 if (tryload != DONT_LOAD)
1009 ptr->loaded = 1;
1010 else
1011 ptr = NULL;
1012 }
Marc Boucher067477b2002-03-24 15:09:31 +00001013 if(!ptr && (tryload == LOAD_MUST_SUCCEED)) {
1014 exit_error(PARAMETER_PROBLEM,
1015 "Couldn't find target `%s'\n", name);
1016 }
Harald Welte3efb6ea2001-08-06 18:50:21 +00001017#endif
Rusty Russell5eed48a2000-06-02 20:12:24 +00001018
Harald Welte43ac1912002-03-03 09:43:07 +00001019 if (ptr)
1020 ptr->used = 1;
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001021
Rusty Russell5eed48a2000-06-02 20:12:24 +00001022 return ptr;
1023}
1024
1025static struct option *
Jan Echternachaf8fe9e2000-08-27 07:41:39 +00001026merge_options(struct option *oldopts, const struct option *newopts,
Rusty Russell5eed48a2000-06-02 20:12:24 +00001027 unsigned int *option_offset)
1028{
1029 unsigned int num_old, num_new, i;
1030 struct option *merge;
1031
1032 for (num_old = 0; oldopts[num_old].name; num_old++);
1033 for (num_new = 0; newopts[num_new].name; num_new++);
1034
1035 global_option_offset += OPTION_OFFSET;
1036 *option_offset = global_option_offset;
1037
1038 merge = malloc(sizeof(struct option) * (num_new + num_old + 1));
1039 memcpy(merge, oldopts, num_old * sizeof(struct option));
Marcus Sundbergd91ed752005-07-29 13:26:35 +00001040 free_opts(0); /* Release previous options merged if any */
Rusty Russell5eed48a2000-06-02 20:12:24 +00001041 for (i = 0; i < num_new; i++) {
1042 merge[num_old + i] = newopts[i];
1043 merge[num_old + i].val += *option_offset;
1044 }
1045 memset(merge + num_old + num_new, 0, sizeof(struct option));
1046
1047 return merge;
1048}
1049
1050void
1051register_match6(struct ip6tables_match *me)
1052{
Harald Welte43ac1912002-03-03 09:43:07 +00001053 struct ip6tables_match **i;
1054
Rusty Russell5eed48a2000-06-02 20:12:24 +00001055 if (strcmp(me->version, program_version) != 0) {
1056 fprintf(stderr, "%s: match `%s' v%s (I'm v%s).\n",
1057 program_name, me->name, me->version, program_version);
1058 exit(1);
1059 }
1060
Jones Desougif5b86e62005-12-22 03:33:50 +00001061 if (find_match(me->name, DURING_LOAD, NULL)) {
Rusty Russell5eed48a2000-06-02 20:12:24 +00001062 fprintf(stderr, "%s: match `%s' already registered.\n",
1063 program_name, me->name);
1064 exit(1);
1065 }
1066
Harald Welte43ac1912002-03-03 09:43:07 +00001067 if (me->size != IP6T_ALIGN(me->size)) {
1068 fprintf(stderr, "%s: match `%s' has invalid size %u.\n",
Martin Josefssona28d4952004-05-26 16:04:48 +00001069 program_name, me->name, (unsigned int)me->size);
Harald Welte43ac1912002-03-03 09:43:07 +00001070 exit(1);
1071 }
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001072
Harald Welte43ac1912002-03-03 09:43:07 +00001073 /* Append to list. */
1074 for (i = &ip6tables_matches; *i; i = &(*i)->next);
1075 me->next = NULL;
1076 *i = me;
1077
Rusty Russell5eed48a2000-06-02 20:12:24 +00001078 me->m = NULL;
1079 me->mflags = 0;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001080}
1081
1082void
1083register_target6(struct ip6tables_target *me)
1084{
1085 if (strcmp(me->version, program_version) != 0) {
1086 fprintf(stderr, "%s: target `%s' v%s (I'm v%s).\n",
1087 program_name, me->name, me->version, program_version);
1088 exit(1);
1089 }
1090
Jones Desougif5b86e62005-12-22 03:33:50 +00001091 if (find_target(me->name, DURING_LOAD)) {
Rusty Russell5eed48a2000-06-02 20:12:24 +00001092 fprintf(stderr, "%s: target `%s' already registered.\n",
1093 program_name, me->name);
1094 exit(1);
1095 }
1096
Harald Welte43ac1912002-03-03 09:43:07 +00001097 if (me->size != IP6T_ALIGN(me->size)) {
1098 fprintf(stderr, "%s: target `%s' has invalid size %u.\n",
Martin Josefssona28d4952004-05-26 16:04:48 +00001099 program_name, me->name, (unsigned int)me->size);
Harald Welte43ac1912002-03-03 09:43:07 +00001100 exit(1);
1101 }
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001102
Rusty Russell5eed48a2000-06-02 20:12:24 +00001103 /* Prepend to list. */
1104 me->next = ip6tables_targets;
1105 ip6tables_targets = me;
1106 me->t = NULL;
1107 me->tflags = 0;
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001108}
1109
1110static void
1111print_num(u_int64_t number, unsigned int format)
1112{
Harald Welte43ac1912002-03-03 09:43:07 +00001113 if (format & FMT_KILOMEGAGIGA) {
1114 if (number > 99999) {
1115 number = (number + 500) / 1000;
1116 if (number > 9999) {
1117 number = (number + 500) / 1000;
1118 if (number > 9999) {
1119 number = (number + 500) / 1000;
1120 if (number > 9999) {
1121 number = (number + 500) / 1000;
Martin Josefssona28d4952004-05-26 16:04:48 +00001122 printf(FMT("%4lluT ","%lluT "), (unsigned long long)number);
Harald Welte43ac1912002-03-03 09:43:07 +00001123 }
Martin Josefssona28d4952004-05-26 16:04:48 +00001124 else printf(FMT("%4lluG ","%lluG "), (unsigned long long)number);
Harald Welte43ac1912002-03-03 09:43:07 +00001125 }
Martin Josefssona28d4952004-05-26 16:04:48 +00001126 else printf(FMT("%4lluM ","%lluM "), (unsigned long long)number);
Harald Welte43ac1912002-03-03 09:43:07 +00001127 } else
Martin Josefssona28d4952004-05-26 16:04:48 +00001128 printf(FMT("%4lluK ","%lluK "), (unsigned long long)number);
Harald Welte43ac1912002-03-03 09:43:07 +00001129 } else
Martin Josefssona28d4952004-05-26 16:04:48 +00001130 printf(FMT("%5llu ","%llu "), (unsigned long long)number);
Harald Welte43ac1912002-03-03 09:43:07 +00001131 } else
Martin Josefssona28d4952004-05-26 16:04:48 +00001132 printf(FMT("%8llu ","%llu "), (unsigned long long)number);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001133}
1134
Harald Welte43ac1912002-03-03 09:43:07 +00001135
Rusty Russell5eed48a2000-06-02 20:12:24 +00001136static void
1137print_header(unsigned int format, const char *chain, ip6tc_handle_t *handle)
1138{
1139 struct ip6t_counters counters;
1140 const char *pol = ip6tc_get_policy(chain, &counters, handle);
1141 printf("Chain %s", chain);
1142 if (pol) {
1143 printf(" (policy %s", pol);
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001144 if (!(format & FMT_NOCOUNTS)) {
Harald Welte43ac1912002-03-03 09:43:07 +00001145 fputc(' ', stdout);
1146 print_num(counters.pcnt, (format|FMT_NOTABLE));
1147 fputs("packets, ", stdout);
1148 print_num(counters.bcnt, (format|FMT_NOTABLE));
1149 fputs("bytes", stdout);
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001150 }
Rusty Russell5eed48a2000-06-02 20:12:24 +00001151 printf(")\n");
1152 } else {
1153 unsigned int refs;
1154 if (!ip6tc_get_references(&refs, chain, handle))
1155 printf(" (ERROR obtaining refs)\n");
1156 else
1157 printf(" (%u references)\n", refs);
1158 }
1159
1160 if (format & FMT_LINENUMBERS)
1161 printf(FMT("%-4s ", "%s "), "num");
1162 if (!(format & FMT_NOCOUNTS)) {
1163 if (format & FMT_KILOMEGAGIGA) {
1164 printf(FMT("%5s ","%s "), "pkts");
1165 printf(FMT("%5s ","%s "), "bytes");
1166 } else {
1167 printf(FMT("%8s ","%s "), "pkts");
1168 printf(FMT("%10s ","%s "), "bytes");
1169 }
1170 }
1171 if (!(format & FMT_NOTARGET))
1172 printf(FMT("%-9s ","%s "), "target");
1173 fputs(" prot ", stdout);
1174 if (format & FMT_OPTIONS)
1175 fputs("opt", stdout);
1176 if (format & FMT_VIA) {
1177 printf(FMT(" %-6s ","%s "), "in");
1178 printf(FMT("%-6s ","%s "), "out");
1179 }
1180 printf(FMT(" %-19s ","%s "), "source");
1181 printf(FMT(" %-19s "," %s "), "destination");
1182 printf("\n");
1183}
1184
Harald Welte43ac1912002-03-03 09:43:07 +00001185
Rusty Russell5eed48a2000-06-02 20:12:24 +00001186static int
1187print_match(const struct ip6t_entry_match *m,
1188 const struct ip6t_ip6 *ip,
1189 int numeric)
1190{
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001191 struct ip6tables_match *match = find_match(m->u.user.name, TRY_LOAD, NULL);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001192
1193 if (match) {
1194 if (match->print)
1195 match->print(ip, m, numeric);
Harald Welte43ac1912002-03-03 09:43:07 +00001196 else
1197 printf("%s ", match->name);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001198 } else {
1199 if (m->u.user.name[0])
1200 printf("UNKNOWN match `%s' ", m->u.user.name);
1201 }
1202 /* Don't stop iterating. */
1203 return 0;
1204}
1205
1206/* e is called `fw' here for hysterical raisins */
1207static void
1208print_firewall(const struct ip6t_entry *fw,
1209 const char *targname,
1210 unsigned int num,
1211 unsigned int format,
1212 const ip6tc_handle_t handle)
1213{
1214 struct ip6tables_target *target = NULL;
1215 const struct ip6t_entry_target *t;
1216 u_int8_t flags;
1217 char buf[BUFSIZ];
1218
Rusty Russell5eed48a2000-06-02 20:12:24 +00001219 if (!ip6tc_is_chain(targname, handle))
1220 target = find_target(targname, TRY_LOAD);
1221 else
1222 target = find_target(IP6T_STANDARD_TARGET, LOAD_MUST_SUCCEED);
1223
1224 t = ip6t_get_target((struct ip6t_entry *)fw);
1225 flags = fw->ipv6.flags;
1226
1227 if (format & FMT_LINENUMBERS)
1228 printf(FMT("%-4u ", "%u "), num+1);
1229
1230 if (!(format & FMT_NOCOUNTS)) {
1231 print_num(fw->counters.pcnt, format);
1232 print_num(fw->counters.bcnt, format);
1233 }
1234
1235 if (!(format & FMT_NOTARGET))
1236 printf(FMT("%-9s ", "%s "), targname);
1237
1238 fputc(fw->ipv6.invflags & IP6T_INV_PROTO ? '!' : ' ', stdout);
1239 {
Harald Welte43ac1912002-03-03 09:43:07 +00001240 char *pname = proto_to_name(fw->ipv6.proto, format&FMT_NUMERIC);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001241 if (pname)
1242 printf(FMT("%-5s", "%s "), pname);
1243 else
1244 printf(FMT("%-5hu", "%hu "), fw->ipv6.proto);
1245 }
1246
1247 if (format & FMT_OPTIONS) {
1248 if (format & FMT_NOTABLE)
1249 fputs("opt ", stdout);
Harald Welte43ac1912002-03-03 09:43:07 +00001250 fputc(' ', stdout); /* Invert flag of FRAG */
1251 fputc(' ', stdout); /* -f */
Rusty Russell5eed48a2000-06-02 20:12:24 +00001252 fputc(' ', stdout);
1253 }
1254
1255 if (format & FMT_VIA) {
1256 char iface[IFNAMSIZ+2];
1257
1258 if (fw->ipv6.invflags & IP6T_INV_VIA_IN) {
1259 iface[0] = '!';
1260 iface[1] = '\0';
1261 }
1262 else iface[0] = '\0';
1263
1264 if (fw->ipv6.iniface[0] != '\0') {
1265 strcat(iface, fw->ipv6.iniface);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001266 }
1267 else if (format & FMT_NUMERIC) strcat(iface, "*");
1268 else strcat(iface, "any");
1269 printf(FMT(" %-6s ","in %s "), iface);
1270
1271 if (fw->ipv6.invflags & IP6T_INV_VIA_OUT) {
1272 iface[0] = '!';
1273 iface[1] = '\0';
1274 }
1275 else iface[0] = '\0';
1276
1277 if (fw->ipv6.outiface[0] != '\0') {
1278 strcat(iface, fw->ipv6.outiface);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001279 }
1280 else if (format & FMT_NUMERIC) strcat(iface, "*");
1281 else strcat(iface, "any");
1282 printf(FMT("%-6s ","out %s "), iface);
1283 }
1284
1285 fputc(fw->ipv6.invflags & IP6T_INV_SRCIP ? '!' : ' ', stdout);
1286 if (!memcmp(&fw->ipv6.smsk, &in6addr_any, sizeof in6addr_any)
1287 && !(format & FMT_NUMERIC))
1288 printf(FMT("%-19s ","%s "), "anywhere");
1289 else {
1290 if (format & FMT_NUMERIC)
Harald Welte43ac1912002-03-03 09:43:07 +00001291 sprintf(buf, "%s", addr_to_numeric(&(fw->ipv6.src)));
Rusty Russell5eed48a2000-06-02 20:12:24 +00001292 else
Harald Welte43ac1912002-03-03 09:43:07 +00001293 sprintf(buf, "%s", addr_to_anyname(&(fw->ipv6.src)));
Rusty Russell5eed48a2000-06-02 20:12:24 +00001294 strcat(buf, mask_to_numeric(&(fw->ipv6.smsk)));
1295 printf(FMT("%-19s ","%s "), buf);
1296 }
1297
1298 fputc(fw->ipv6.invflags & IP6T_INV_DSTIP ? '!' : ' ', stdout);
1299 if (!memcmp(&fw->ipv6.dmsk, &in6addr_any, sizeof in6addr_any)
1300 && !(format & FMT_NUMERIC))
1301 printf(FMT("%-19s","-> %s"), "anywhere");
1302 else {
1303 if (format & FMT_NUMERIC)
Harald Welte43ac1912002-03-03 09:43:07 +00001304 sprintf(buf, "%s", addr_to_numeric(&(fw->ipv6.dst)));
Rusty Russell5eed48a2000-06-02 20:12:24 +00001305 else
Harald Welte43ac1912002-03-03 09:43:07 +00001306 sprintf(buf, "%s", addr_to_anyname(&(fw->ipv6.dst)));
Rusty Russell5eed48a2000-06-02 20:12:24 +00001307 strcat(buf, mask_to_numeric(&(fw->ipv6.dmsk)));
1308 printf(FMT("%-19s","-> %s"), buf);
1309 }
1310
1311 if (format & FMT_NOTABLE)
1312 fputs(" ", stdout);
1313
1314 IP6T_MATCH_ITERATE(fw, print_match, &fw->ipv6, format & FMT_NUMERIC);
1315
1316 if (target) {
1317 if (target->print)
1318 /* Print the target information. */
1319 target->print(&fw->ipv6, t, format & FMT_NUMERIC);
1320 } else if (t->u.target_size != sizeof(*t))
1321 printf("[%u bytes of unknown target data] ",
Martin Josefssona28d4952004-05-26 16:04:48 +00001322 (unsigned int)(t->u.target_size - sizeof(*t)));
Rusty Russell5eed48a2000-06-02 20:12:24 +00001323
1324 if (!(format & FMT_NONEWLINE))
1325 fputc('\n', stdout);
1326}
1327
1328static void
1329print_firewall_line(const struct ip6t_entry *fw,
1330 const ip6tc_handle_t h)
1331{
1332 struct ip6t_entry_target *t;
1333
1334 t = ip6t_get_target((struct ip6t_entry *)fw);
1335 print_firewall(fw, t->u.user.name, 0, FMT_PRINT_RULE, h);
1336}
1337
1338static int
1339append_entry(const ip6t_chainlabel chain,
1340 struct ip6t_entry *fw,
1341 unsigned int nsaddrs,
1342 const struct in6_addr saddrs[],
1343 unsigned int ndaddrs,
1344 const struct in6_addr daddrs[],
1345 int verbose,
1346 ip6tc_handle_t *handle)
1347{
1348 unsigned int i, j;
1349 int ret = 1;
1350
1351 for (i = 0; i < nsaddrs; i++) {
1352 fw->ipv6.src = saddrs[i];
1353 for (j = 0; j < ndaddrs; j++) {
1354 fw->ipv6.dst = daddrs[j];
1355 if (verbose)
1356 print_firewall_line(fw, *handle);
1357 ret &= ip6tc_append_entry(chain, fw, handle);
1358 }
1359 }
1360
1361 return ret;
1362}
1363
1364static int
1365replace_entry(const ip6t_chainlabel chain,
1366 struct ip6t_entry *fw,
1367 unsigned int rulenum,
1368 const struct in6_addr *saddr,
1369 const struct in6_addr *daddr,
1370 int verbose,
1371 ip6tc_handle_t *handle)
1372{
1373 fw->ipv6.src = *saddr;
1374 fw->ipv6.dst = *daddr;
1375
1376 if (verbose)
1377 print_firewall_line(fw, *handle);
1378 return ip6tc_replace_entry(chain, fw, rulenum, handle);
1379}
1380
1381static int
1382insert_entry(const ip6t_chainlabel chain,
1383 struct ip6t_entry *fw,
1384 unsigned int rulenum,
1385 unsigned int nsaddrs,
1386 const struct in6_addr saddrs[],
1387 unsigned int ndaddrs,
1388 const struct in6_addr daddrs[],
1389 int verbose,
1390 ip6tc_handle_t *handle)
1391{
1392 unsigned int i, j;
1393 int ret = 1;
1394
1395 for (i = 0; i < nsaddrs; i++) {
1396 fw->ipv6.src = saddrs[i];
1397 for (j = 0; j < ndaddrs; j++) {
1398 fw->ipv6.dst = daddrs[j];
1399 if (verbose)
1400 print_firewall_line(fw, *handle);
1401 ret &= ip6tc_insert_entry(chain, fw, rulenum, handle);
1402 }
1403 }
1404
1405 return ret;
1406}
1407
1408static unsigned char *
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001409make_delete_mask(struct ip6t_entry *fw, struct ip6tables_rule_match *matches)
Rusty Russell5eed48a2000-06-02 20:12:24 +00001410{
1411 /* Establish mask for comparison */
1412 unsigned int size;
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001413 struct ip6tables_rule_match *matchp;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001414 unsigned char *mask, *mptr;
1415
1416 size = sizeof(struct ip6t_entry);
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001417 for (matchp = matches; matchp; matchp = matchp->next)
1418 size += IP6T_ALIGN(sizeof(struct ip6t_entry_match)) + matchp->match->size;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001419
1420 mask = fw_calloc(1, size
Harald Welte43ac1912002-03-03 09:43:07 +00001421 + IP6T_ALIGN(sizeof(struct ip6t_entry_target))
Rusty Russell5eed48a2000-06-02 20:12:24 +00001422 + ip6tables_targets->size);
1423
1424 memset(mask, 0xFF, sizeof(struct ip6t_entry));
1425 mptr = mask + sizeof(struct ip6t_entry);
1426
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001427 for (matchp = matches; matchp; matchp = matchp->next) {
Rusty Russell5eed48a2000-06-02 20:12:24 +00001428 memset(mptr, 0xFF,
Harald Welte43ac1912002-03-03 09:43:07 +00001429 IP6T_ALIGN(sizeof(struct ip6t_entry_match))
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001430 + matchp->match->userspacesize);
1431 mptr += IP6T_ALIGN(sizeof(struct ip6t_entry_match)) + matchp->match->size;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001432 }
1433
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001434 memset(mptr, 0xFF,
1435 IP6T_ALIGN(sizeof(struct ip6t_entry_target))
1436 + ip6tables_targets->userspacesize);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001437
1438 return mask;
1439}
1440
1441static int
1442delete_entry(const ip6t_chainlabel chain,
1443 struct ip6t_entry *fw,
1444 unsigned int nsaddrs,
1445 const struct in6_addr saddrs[],
1446 unsigned int ndaddrs,
1447 const struct in6_addr daddrs[],
1448 int verbose,
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001449 ip6tc_handle_t *handle,
1450 struct ip6tables_rule_match *matches)
Rusty Russell5eed48a2000-06-02 20:12:24 +00001451{
1452 unsigned int i, j;
1453 int ret = 1;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001454 unsigned char *mask;
1455
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001456 mask = make_delete_mask(fw, matches);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001457 for (i = 0; i < nsaddrs; i++) {
Philip Blundell57e07af2000-06-04 17:25:33 +00001458 fw->ipv6.src = saddrs[i];
Rusty Russell5eed48a2000-06-02 20:12:24 +00001459 for (j = 0; j < ndaddrs; j++) {
Philip Blundell57e07af2000-06-04 17:25:33 +00001460 fw->ipv6.dst = daddrs[j];
Rusty Russell5eed48a2000-06-02 20:12:24 +00001461 if (verbose)
1462 print_firewall_line(fw, *handle);
Philip Blundell57e07af2000-06-04 17:25:33 +00001463 ret &= ip6tc_delete_entry(chain, fw, mask, handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001464 }
1465 }
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00001466 free(mask);
1467
Rusty Russell5eed48a2000-06-02 20:12:24 +00001468 return ret;
1469}
1470
András Kis-Szabó764316a2001-02-26 17:31:20 +00001471int
Rusty Russell5eed48a2000-06-02 20:12:24 +00001472for_each_chain(int (*fn)(const ip6t_chainlabel, int, ip6tc_handle_t *),
1473 int verbose, int builtinstoo, ip6tc_handle_t *handle)
1474{
1475 int ret = 1;
1476 const char *chain;
1477 char *chains;
1478 unsigned int i, chaincount = 0;
1479
1480 chain = ip6tc_first_chain(handle);
1481 while (chain) {
1482 chaincount++;
1483 chain = ip6tc_next_chain(handle);
1484 }
1485
1486 chains = fw_malloc(sizeof(ip6t_chainlabel) * chaincount);
1487 i = 0;
1488 chain = ip6tc_first_chain(handle);
1489 while (chain) {
1490 strcpy(chains + i*sizeof(ip6t_chainlabel), chain);
1491 i++;
1492 chain = ip6tc_next_chain(handle);
1493 }
1494
1495 for (i = 0; i < chaincount; i++) {
1496 if (!builtinstoo
1497 && ip6tc_builtin(chains + i*sizeof(ip6t_chainlabel),
Harald Weltedf1c71c2004-08-30 16:00:32 +00001498 *handle) == 1)
Rusty Russell5eed48a2000-06-02 20:12:24 +00001499 continue;
1500 ret &= fn(chains + i*sizeof(ip6t_chainlabel), verbose, handle);
1501 }
1502
1503 free(chains);
1504 return ret;
1505}
1506
András Kis-Szabó764316a2001-02-26 17:31:20 +00001507int
Rusty Russell5eed48a2000-06-02 20:12:24 +00001508flush_entries(const ip6t_chainlabel chain, int verbose,
1509 ip6tc_handle_t *handle)
1510{
1511 if (!chain)
1512 return for_each_chain(flush_entries, verbose, 1, handle);
1513
1514 if (verbose)
1515 fprintf(stdout, "Flushing chain `%s'\n", chain);
1516 return ip6tc_flush_entries(chain, handle);
1517}
1518
1519static int
1520zero_entries(const ip6t_chainlabel chain, int verbose,
1521 ip6tc_handle_t *handle)
1522{
1523 if (!chain)
1524 return for_each_chain(zero_entries, verbose, 1, handle);
1525
1526 if (verbose)
1527 fprintf(stdout, "Zeroing chain `%s'\n", chain);
1528 return ip6tc_zero_entries(chain, handle);
1529}
1530
András Kis-Szabó764316a2001-02-26 17:31:20 +00001531int
Rusty Russell5eed48a2000-06-02 20:12:24 +00001532delete_chain(const ip6t_chainlabel chain, int verbose,
1533 ip6tc_handle_t *handle)
1534{
1535 if (!chain)
1536 return for_each_chain(delete_chain, verbose, 0, handle);
1537
1538 if (verbose)
1539 fprintf(stdout, "Deleting chain `%s'\n", chain);
1540 return ip6tc_delete_chain(chain, handle);
1541}
1542
1543static int
1544list_entries(const ip6t_chainlabel chain, int verbose, int numeric,
1545 int expanded, int linenumbers, ip6tc_handle_t *handle)
1546{
1547 int found = 0;
1548 unsigned int format;
1549 const char *this;
1550
1551 format = FMT_OPTIONS;
1552 if (!verbose)
1553 format |= FMT_NOCOUNTS;
1554 else
1555 format |= FMT_VIA;
1556
1557 if (numeric)
1558 format |= FMT_NUMERIC;
1559
1560 if (!expanded)
1561 format |= FMT_KILOMEGAGIGA;
1562
1563 if (linenumbers)
1564 format |= FMT_LINENUMBERS;
1565
1566 for (this = ip6tc_first_chain(handle);
1567 this;
1568 this = ip6tc_next_chain(handle)) {
1569 const struct ip6t_entry *i;
1570 unsigned int num;
1571
1572 if (chain && strcmp(chain, this) != 0)
1573 continue;
1574
1575 if (found) printf("\n");
1576
1577 print_header(format, this, handle);
1578 i = ip6tc_first_rule(this, handle);
1579
1580 num = 0;
1581 while (i) {
1582 print_firewall(i,
1583 ip6tc_get_target(i, handle),
1584 num++,
1585 format,
1586 *handle);
1587 i = ip6tc_next_rule(i, handle);
1588 }
1589 found = 1;
1590 }
1591
1592 errno = ENOENT;
1593 return found;
1594}
1595
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001596static char *get_modprobe(void)
1597{
Harald Welte43ac1912002-03-03 09:43:07 +00001598 int procfile;
1599 char *ret;
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001600
Harald Welte10f7f142004-10-22 08:14:07 +00001601#define PROCFILE_BUFSIZ 1024
Harald Welte43ac1912002-03-03 09:43:07 +00001602 procfile = open(PROC_SYS_MODPROBE, O_RDONLY);
1603 if (procfile < 0)
1604 return NULL;
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001605
Harald Welte10f7f142004-10-22 08:14:07 +00001606 ret = malloc(PROCFILE_BUFSIZ);
Harald Welte43ac1912002-03-03 09:43:07 +00001607 if (ret) {
Harald Welte10f7f142004-10-22 08:14:07 +00001608 memset(ret, 0, PROCFILE_BUFSIZ);
1609 switch (read(procfile, ret, PROCFILE_BUFSIZ)) {
Harald Welte43ac1912002-03-03 09:43:07 +00001610 case -1: goto fail;
Harald Welte10f7f142004-10-22 08:14:07 +00001611 case PROCFILE_BUFSIZ: goto fail; /* Partial read. Wierd */
Harald Welte43ac1912002-03-03 09:43:07 +00001612 }
1613 if (ret[strlen(ret)-1]=='\n')
1614 ret[strlen(ret)-1]=0;
1615 close(procfile);
1616 return ret;
1617 }
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001618 fail:
Harald Welte43ac1912002-03-03 09:43:07 +00001619 free(ret);
1620 close(procfile);
1621 return NULL;
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001622}
1623
Harald Welte58918652001-06-16 18:25:25 +00001624int ip6tables_insmod(const char *modname, const char *modprobe)
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001625{
Harald Welte43ac1912002-03-03 09:43:07 +00001626 char *buf = NULL;
1627 char *argv[3];
Rusty Russell8beb0492004-12-22 00:37:10 +00001628 int status;
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001629
Harald Welte43ac1912002-03-03 09:43:07 +00001630 /* If they don't explicitly set it, read out of kernel */
1631 if (!modprobe) {
1632 buf = get_modprobe();
1633 if (!buf)
1634 return -1;
1635 modprobe = buf;
1636 }
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001637
Harald Welte43ac1912002-03-03 09:43:07 +00001638 switch (fork()) {
1639 case 0:
1640 argv[0] = (char *)modprobe;
1641 argv[1] = (char *)modname;
1642 argv[2] = NULL;
1643 execv(argv[0], argv);
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001644
Harald Welte43ac1912002-03-03 09:43:07 +00001645 /* not usually reached */
Rusty Russell8beb0492004-12-22 00:37:10 +00001646 exit(1);
Harald Welte43ac1912002-03-03 09:43:07 +00001647 case -1:
1648 return -1;
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001649
Harald Welte43ac1912002-03-03 09:43:07 +00001650 default: /* parent */
Rusty Russell8beb0492004-12-22 00:37:10 +00001651 wait(&status);
Harald Welte43ac1912002-03-03 09:43:07 +00001652 }
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001653
Harald Welte43ac1912002-03-03 09:43:07 +00001654 free(buf);
Rusty Russell8beb0492004-12-22 00:37:10 +00001655 if (WIFEXITED(status) && WEXITSTATUS(status) == 0)
1656 return 0;
1657 return -1;
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001658}
1659
Rusty Russell5eed48a2000-06-02 20:12:24 +00001660static struct ip6t_entry *
1661generate_entry(const struct ip6t_entry *fw,
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001662 struct ip6tables_rule_match *matches,
Rusty Russell5eed48a2000-06-02 20:12:24 +00001663 struct ip6t_entry_target *target)
1664{
1665 unsigned int size;
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001666 struct ip6tables_rule_match *matchp;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001667 struct ip6t_entry *e;
1668
1669 size = sizeof(struct ip6t_entry);
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001670 for (matchp = matches; matchp; matchp = matchp->next)
1671 size += matchp->match->m->u.match_size;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001672
1673 e = fw_malloc(size + target->u.target_size);
1674 *e = *fw;
1675 e->target_offset = size;
1676 e->next_offset = size + target->u.target_size;
1677
1678 size = 0;
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001679 for (matchp = matches; matchp; matchp = matchp->next) {
1680 memcpy(e->elems + size, matchp->match->m, matchp->match->m->u.match_size);
1681 size += matchp->match->m->u.match_size;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001682 }
1683 memcpy(e->elems + size, target, target->u.target_size);
1684
1685 return e;
1686}
1687
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001688void clear_rule_matches(struct ip6tables_rule_match **matches)
1689{
1690 struct ip6tables_rule_match *matchp, *tmp;
1691
1692 for (matchp = *matches; matchp;) {
1693 tmp = matchp->next;
Harald Welted6bc6082006-02-11 09:34:16 +00001694 if (matchp->match->m) {
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00001695 free(matchp->match->m);
Harald Welted6bc6082006-02-11 09:34:16 +00001696 matchp->match->m = NULL;
1697 }
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001698 free(matchp);
1699 matchp = tmp;
1700 }
1701
1702 *matches = NULL;
1703}
1704
Rusty Russell5eed48a2000-06-02 20:12:24 +00001705int do_command6(int argc, char *argv[], char **table, ip6tc_handle_t *handle)
1706{
1707 struct ip6t_entry fw, *e = NULL;
1708 int invert = 0;
1709 unsigned int nsaddrs = 0, ndaddrs = 0;
1710 struct in6_addr *saddrs = NULL, *daddrs = NULL;
1711
1712 int c, verbose = 0;
1713 const char *chain = NULL;
1714 const char *shostnetworkmask = NULL, *dhostnetworkmask = NULL;
1715 const char *policy = NULL, *newname = NULL;
1716 unsigned int rulenum = 0, options = 0, command = 0;
Harald Welte43ac1912002-03-03 09:43:07 +00001717 const char *pcnt = NULL, *bcnt = NULL;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001718 int ret = 1;
1719 struct ip6tables_match *m;
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001720 struct ip6tables_rule_match *matches = NULL;
1721 struct ip6tables_rule_match *matchp;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001722 struct ip6tables_target *target = NULL;
András Kis-Szabó3aa62872001-05-03 01:01:41 +00001723 struct ip6tables_target *t;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001724 const char *jumpto = "";
1725 char *protocol = NULL;
Harald Welte43ac1912002-03-03 09:43:07 +00001726 const char *modprobe = NULL;
Harald Welte00f5a9c2002-08-26 14:37:35 +00001727 int proto_used = 0;
Harald Weltecfaed1f2001-10-04 08:11:44 +00001728 char icmp6p[] = "icmpv6";
Rusty Russell5eed48a2000-06-02 20:12:24 +00001729
1730 memset(&fw, 0, sizeof(fw));
1731
Harald Welte43ac1912002-03-03 09:43:07 +00001732 /* re-set optind to 0 in case do_command gets called
András Kis-Szabó3aa62872001-05-03 01:01:41 +00001733 * a second time */
1734 optind = 0;
1735
Harald Welte43ac1912002-03-03 09:43:07 +00001736 /* clear mflags in case do_command gets called a second time
1737 * (we clear the global list of all matches for security)*/
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001738 for (m = ip6tables_matches; m; m = m->next)
Harald Welte43ac1912002-03-03 09:43:07 +00001739 m->mflags = 0;
András Kis-Szabó3aa62872001-05-03 01:01:41 +00001740
Harald Welte43ac1912002-03-03 09:43:07 +00001741 for (t = ip6tables_targets; t; t = t->next) {
1742 t->tflags = 0;
1743 t->used = 0;
1744 }
András Kis-Szabó3aa62872001-05-03 01:01:41 +00001745
Rusty Russell5eed48a2000-06-02 20:12:24 +00001746 /* Suppress error messages: we may add new options if we
1747 demand-load a protocol. */
1748 opterr = 0;
1749
1750 while ((c = getopt_long(argc, argv,
András Kis-Szabó0c4188f2002-08-14 11:40:41 +00001751 "-A:D:R:I:L::M:F::Z::N:X::E:P:Vh::o:p:s:d:j:i:bvnt:m:xc:",
Rusty Russell5eed48a2000-06-02 20:12:24 +00001752 opts, NULL)) != -1) {
1753 switch (c) {
1754 /*
1755 * Command selection
1756 */
1757 case 'A':
1758 add_command(&command, CMD_APPEND, CMD_NONE,
1759 invert);
1760 chain = optarg;
1761 break;
1762
1763 case 'D':
1764 add_command(&command, CMD_DELETE, CMD_NONE,
1765 invert);
1766 chain = optarg;
1767 if (optind < argc && argv[optind][0] != '-'
1768 && argv[optind][0] != '!') {
1769 rulenum = parse_rulenumber(argv[optind++]);
1770 command = CMD_DELETE_NUM;
1771 }
1772 break;
1773
Rusty Russell5eed48a2000-06-02 20:12:24 +00001774 case 'R':
1775 add_command(&command, CMD_REPLACE, CMD_NONE,
1776 invert);
1777 chain = optarg;
1778 if (optind < argc && argv[optind][0] != '-'
1779 && argv[optind][0] != '!')
1780 rulenum = parse_rulenumber(argv[optind++]);
1781 else
1782 exit_error(PARAMETER_PROBLEM,
1783 "-%c requires a rule number",
1784 cmd2char(CMD_REPLACE));
1785 break;
1786
1787 case 'I':
1788 add_command(&command, CMD_INSERT, CMD_NONE,
1789 invert);
1790 chain = optarg;
1791 if (optind < argc && argv[optind][0] != '-'
1792 && argv[optind][0] != '!')
1793 rulenum = parse_rulenumber(argv[optind++]);
1794 else rulenum = 1;
1795 break;
1796
1797 case 'L':
1798 add_command(&command, CMD_LIST, CMD_ZERO,
1799 invert);
1800 if (optarg) chain = optarg;
1801 else if (optind < argc && argv[optind][0] != '-'
1802 && argv[optind][0] != '!')
1803 chain = argv[optind++];
1804 break;
1805
1806 case 'F':
1807 add_command(&command, CMD_FLUSH, CMD_NONE,
1808 invert);
1809 if (optarg) chain = optarg;
1810 else if (optind < argc && argv[optind][0] != '-'
1811 && argv[optind][0] != '!')
1812 chain = argv[optind++];
1813 break;
1814
1815 case 'Z':
1816 add_command(&command, CMD_ZERO, CMD_LIST,
1817 invert);
1818 if (optarg) chain = optarg;
1819 else if (optind < argc && argv[optind][0] != '-'
1820 && argv[optind][0] != '!')
1821 chain = argv[optind++];
1822 break;
1823
1824 case 'N':
Yasuyuki KOZAKAI8d8c8ea2005-06-13 01:06:10 +00001825 if (optarg && (*optarg == '-' || *optarg == '!'))
Joszef Kadlecsik08f15272002-06-24 12:37:29 +00001826 exit_error(PARAMETER_PROBLEM,
1827 "chain name not allowed to start "
Yasuyuki KOZAKAI8d8c8ea2005-06-13 01:06:10 +00001828 "with `%c'\n", *optarg);
Joszef Kadlecsik08f15272002-06-24 12:37:29 +00001829 if (find_target(optarg, TRY_LOAD))
1830 exit_error(PARAMETER_PROBLEM,
1831 "chain name may not clash "
1832 "with target name\n");
Rusty Russell5eed48a2000-06-02 20:12:24 +00001833 add_command(&command, CMD_NEW_CHAIN, CMD_NONE,
1834 invert);
1835 chain = optarg;
1836 break;
1837
1838 case 'X':
1839 add_command(&command, CMD_DELETE_CHAIN, CMD_NONE,
1840 invert);
1841 if (optarg) chain = optarg;
1842 else if (optind < argc && argv[optind][0] != '-'
1843 && argv[optind][0] != '!')
1844 chain = argv[optind++];
1845 break;
1846
1847 case 'E':
1848 add_command(&command, CMD_RENAME_CHAIN, CMD_NONE,
1849 invert);
1850 chain = optarg;
1851 if (optind < argc && argv[optind][0] != '-'
1852 && argv[optind][0] != '!')
1853 newname = argv[optind++];
M.P.Anand Babuc9f20d32000-06-09 09:22:38 +00001854 else
1855 exit_error(PARAMETER_PROBLEM,
1856 "-%c requires old-chain-name and "
1857 "new-chain-name",
Harald Welte43ac1912002-03-03 09:43:07 +00001858 cmd2char(CMD_RENAME_CHAIN));
Rusty Russell5eed48a2000-06-02 20:12:24 +00001859 break;
1860
1861 case 'P':
1862 add_command(&command, CMD_SET_POLICY, CMD_NONE,
1863 invert);
1864 chain = optarg;
1865 if (optind < argc && argv[optind][0] != '-'
1866 && argv[optind][0] != '!')
1867 policy = argv[optind++];
1868 else
1869 exit_error(PARAMETER_PROBLEM,
1870 "-%c requires a chain and a policy",
1871 cmd2char(CMD_SET_POLICY));
1872 break;
1873
1874 case 'h':
1875 if (!optarg)
1876 optarg = argv[optind];
1877
Jonas Berlin1b91e592005-04-01 06:58:38 +00001878 /* ip6tables -p icmp -h */
Martin Josefsson66aea6f2004-05-26 15:41:54 +00001879 if (!matches && protocol)
1880 find_match(protocol, TRY_LOAD, &matches);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001881
Martin Josefsson66aea6f2004-05-26 15:41:54 +00001882 exit_printhelp(matches);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001883
1884 /*
1885 * Option selection
1886 */
1887 case 'p':
Harald Welteb77f1da2002-03-14 11:35:58 +00001888 check_inverse(optarg, &invert, &optind, argc);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001889 set_option(&options, OPT_PROTOCOL, &fw.ipv6.invflags,
1890 invert);
1891
1892 /* Canonicalize into lower case */
1893 for (protocol = argv[optind-1]; *protocol; protocol++)
1894 *protocol = tolower(*protocol);
1895
1896 protocol = argv[optind-1];
Harald Weltecfaed1f2001-10-04 08:11:44 +00001897 if ( strcmp(protocol,"ipv6-icmp") == 0)
1898 protocol = icmp6p;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001899 fw.ipv6.proto = parse_protocol(protocol);
1900 fw.ipv6.flags |= IP6T_F_PROTO;
1901
1902 if (fw.ipv6.proto == 0
1903 && (fw.ipv6.invflags & IP6T_INV_PROTO))
1904 exit_error(PARAMETER_PROBLEM,
1905 "rule would never match protocol");
Rusty Russell5eed48a2000-06-02 20:12:24 +00001906 break;
1907
1908 case 's':
Harald Welteb77f1da2002-03-14 11:35:58 +00001909 check_inverse(optarg, &invert, &optind, argc);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001910 set_option(&options, OPT_SOURCE, &fw.ipv6.invflags,
1911 invert);
1912 shostnetworkmask = argv[optind-1];
Rusty Russell5eed48a2000-06-02 20:12:24 +00001913 break;
1914
1915 case 'd':
Harald Welteb77f1da2002-03-14 11:35:58 +00001916 check_inverse(optarg, &invert, &optind, argc);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001917 set_option(&options, OPT_DESTINATION, &fw.ipv6.invflags,
1918 invert);
1919 dhostnetworkmask = argv[optind-1];
Rusty Russell5eed48a2000-06-02 20:12:24 +00001920 break;
1921
1922 case 'j':
1923 set_option(&options, OPT_JUMP, &fw.ipv6.invflags,
1924 invert);
1925 jumpto = parse_target(optarg);
Harald Welte43ac1912002-03-03 09:43:07 +00001926 /* TRY_LOAD (may be chain name) */
Rusty Russell5eed48a2000-06-02 20:12:24 +00001927 target = find_target(jumpto, TRY_LOAD);
1928
1929 if (target) {
1930 size_t size;
1931
Harald Welte43ac1912002-03-03 09:43:07 +00001932 size = IP6T_ALIGN(sizeof(struct ip6t_entry_target))
1933 + target->size;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001934
1935 target->t = fw_calloc(1, size);
1936 target->t->u.target_size = size;
1937 strcpy(target->t->u.user.name, jumpto);
Jonas Berlin1b91e592005-04-01 06:58:38 +00001938 if (target->init != NULL)
1939 target->init(target->t, &fw.nfcache);
András Kis-Szabó3aa62872001-05-03 01:01:41 +00001940 opts = merge_options(opts, target->extra_opts, &target->option_offset);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001941 }
1942 break;
1943
1944
1945 case 'i':
Harald Welteb77f1da2002-03-14 11:35:58 +00001946 check_inverse(optarg, &invert, &optind, argc);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001947 set_option(&options, OPT_VIANAMEIN, &fw.ipv6.invflags,
1948 invert);
1949 parse_interface(argv[optind-1],
1950 fw.ipv6.iniface,
1951 fw.ipv6.iniface_mask);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001952 break;
1953
1954 case 'o':
Harald Welteb77f1da2002-03-14 11:35:58 +00001955 check_inverse(optarg, &invert, &optind, argc);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001956 set_option(&options, OPT_VIANAMEOUT, &fw.ipv6.invflags,
1957 invert);
1958 parse_interface(argv[optind-1],
1959 fw.ipv6.outiface,
1960 fw.ipv6.outiface_mask);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001961 break;
1962
1963 case 'v':
1964 if (!verbose)
1965 set_option(&options, OPT_VERBOSE,
1966 &fw.ipv6.invflags, invert);
1967 verbose++;
1968 break;
1969
1970 case 'm': {
1971 size_t size;
1972
1973 if (invert)
1974 exit_error(PARAMETER_PROBLEM,
1975 "unexpected ! flag before --match");
1976
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001977 m = find_match(optarg, LOAD_MUST_SUCCEED, &matches);
Harald Welte43ac1912002-03-03 09:43:07 +00001978 size = IP6T_ALIGN(sizeof(struct ip6t_entry_match))
1979 + m->size;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001980 m->m = fw_calloc(1, size);
1981 m->m->u.match_size = size;
1982 strcpy(m->m->u.user.name, m->name);
Jonas Berlin1b91e592005-04-01 06:58:38 +00001983 if (m->init != NULL)
1984 m->init(m->m, &fw.nfcache);
András Kis-Szabó3aa62872001-05-03 01:01:41 +00001985 opts = merge_options(opts, m->extra_opts, &m->option_offset);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001986 }
1987 break;
1988
1989 case 'n':
1990 set_option(&options, OPT_NUMERIC, &fw.ipv6.invflags,
1991 invert);
1992 break;
1993
1994 case 't':
1995 if (invert)
1996 exit_error(PARAMETER_PROBLEM,
1997 "unexpected ! flag before --table");
1998 *table = argv[optind-1];
1999 break;
2000
2001 case 'x':
2002 set_option(&options, OPT_EXPANDED, &fw.ipv6.invflags,
2003 invert);
2004 break;
2005
2006 case 'V':
2007 if (invert)
2008 printf("Not %s ;-)\n", program_version);
2009 else
2010 printf("%s v%s\n",
2011 program_name, program_version);
2012 exit(0);
2013
2014 case '0':
2015 set_option(&options, OPT_LINENUMBERS, &fw.ipv6.invflags,
2016 invert);
2017 break;
2018
Harald Welte43ac1912002-03-03 09:43:07 +00002019 case 'M':
2020 modprobe = optarg;
2021 break;
2022
2023 case 'c':
2024
2025 set_option(&options, OPT_COUNTERS, &fw.ipv6.invflags,
2026 invert);
2027 pcnt = optarg;
2028 if (optind < argc && argv[optind][0] != '-'
2029 && argv[optind][0] != '!')
2030 bcnt = argv[optind++];
2031 else
2032 exit_error(PARAMETER_PROBLEM,
2033 "-%c requires packet and byte counter",
2034 opt2char(OPT_COUNTERS));
2035
Martin Josefssona28d4952004-05-26 16:04:48 +00002036 if (sscanf(pcnt, "%llu", (unsigned long long *)&fw.counters.pcnt) != 1)
Harald Welte43ac1912002-03-03 09:43:07 +00002037 exit_error(PARAMETER_PROBLEM,
2038 "-%c packet counter not numeric",
2039 opt2char(OPT_COUNTERS));
2040
Martin Josefssona28d4952004-05-26 16:04:48 +00002041 if (sscanf(bcnt, "%llu", (unsigned long long *)&fw.counters.bcnt) != 1)
Harald Welte43ac1912002-03-03 09:43:07 +00002042 exit_error(PARAMETER_PROBLEM,
2043 "-%c byte counter not numeric",
2044 opt2char(OPT_COUNTERS));
2045
2046 break;
2047
2048
Rusty Russell5eed48a2000-06-02 20:12:24 +00002049 case 1: /* non option */
2050 if (optarg[0] == '!' && optarg[1] == '\0') {
2051 if (invert)
2052 exit_error(PARAMETER_PROBLEM,
2053 "multiple consecutive ! not"
2054 " allowed");
2055 invert = TRUE;
2056 optarg[0] = '\0';
2057 continue;
2058 }
2059 printf("Bad argument `%s'\n", optarg);
2060 exit_tryhelp(2);
2061
2062 default:
2063 /* FIXME: This scheme doesn't allow two of the same
2064 matches --RR */
2065 if (!target
2066 || !(target->parse(c - target->option_offset,
2067 argv, invert,
2068 &target->tflags,
2069 &fw, &target->t))) {
Martin Josefsson69ac0e02004-02-02 20:02:10 +00002070 for (matchp = matches; matchp; matchp = matchp->next) {
2071 if (matchp->match->parse(c - matchp->match->option_offset,
Rusty Russell5eed48a2000-06-02 20:12:24 +00002072 argv, invert,
Martin Josefsson69ac0e02004-02-02 20:02:10 +00002073 &matchp->match->mflags,
Rusty Russell5eed48a2000-06-02 20:12:24 +00002074 &fw,
2075 &fw.nfcache,
Martin Josefsson69ac0e02004-02-02 20:02:10 +00002076 &matchp->match->m))
Rusty Russell5eed48a2000-06-02 20:12:24 +00002077 break;
2078 }
Martin Josefsson69ac0e02004-02-02 20:02:10 +00002079 m = matchp ? matchp->match : NULL;
Harald Welte00f5a9c2002-08-26 14:37:35 +00002080
2081 /* If you listen carefully, you can
2082 actually hear this code suck. */
2083
2084 /* some explanations (after four different bugs
2085 * in 3 different releases): If we encountere a
2086 * parameter, that has not been parsed yet,
2087 * it's not an option of an explicitly loaded
2088 * match or a target. However, we support
2089 * implicit loading of the protocol match
2090 * extension. '-p tcp' means 'l4 proto 6' and
2091 * at the same time 'load tcp protocol match on
2092 * demand if we specify --dport'.
2093 *
2094 * To make this work, we need to make sure:
2095 * - the parameter has not been parsed by
2096 * a match (m above)
2097 * - a protocol has been specified
2098 * - the protocol extension has not been
2099 * loaded yet, or is loaded and unused
Jonas Berlin1b91e592005-04-01 06:58:38 +00002100 * [think of ip6tables-restore!]
Harald Welte00f5a9c2002-08-26 14:37:35 +00002101 * - the protocol extension can be successively
2102 * loaded
2103 */
2104 if (m == NULL
2105 && protocol
2106 && (!find_proto(protocol, DONT_LOAD,
Martin Josefsson69ac0e02004-02-02 20:02:10 +00002107 options&OPT_NUMERIC, NULL)
Harald Welte00f5a9c2002-08-26 14:37:35 +00002108 || (find_proto(protocol, DONT_LOAD,
Martin Josefsson69ac0e02004-02-02 20:02:10 +00002109 options&OPT_NUMERIC, NULL)
Harald Welte00f5a9c2002-08-26 14:37:35 +00002110 && (proto_used == 0))
2111 )
2112 && (m = find_proto(protocol, TRY_LOAD,
Martin Josefsson69ac0e02004-02-02 20:02:10 +00002113 options&OPT_NUMERIC, &matches))) {
Harald Welte00f5a9c2002-08-26 14:37:35 +00002114 /* Try loading protocol */
2115 size_t size;
2116
2117 proto_used = 1;
2118
2119 size = IP6T_ALIGN(sizeof(struct ip6t_entry_match))
2120 + m->size;
2121
2122 m->m = fw_calloc(1, size);
2123 m->m->u.match_size = size;
2124 strcpy(m->m->u.user.name, m->name);
Jonas Berlin1b91e592005-04-01 06:58:38 +00002125 if (m->init != NULL)
2126 m->init(m->m, &fw.nfcache);
Harald Welte00f5a9c2002-08-26 14:37:35 +00002127
2128 opts = merge_options(opts,
2129 m->extra_opts, &m->option_offset);
2130
2131 optind--;
2132 continue;
2133 }
2134
Rusty Russell5eed48a2000-06-02 20:12:24 +00002135 if (!m)
2136 exit_error(PARAMETER_PROBLEM,
2137 "Unknown arg `%s'",
2138 argv[optind-1]);
2139 }
2140 }
2141 invert = FALSE;
2142 }
2143
Martin Josefsson69ac0e02004-02-02 20:02:10 +00002144 for (matchp = matches; matchp; matchp = matchp->next)
2145 matchp->match->final_check(matchp->match->mflags);
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00002146
Harald Welte43ac1912002-03-03 09:43:07 +00002147 if (target)
Rusty Russell5eed48a2000-06-02 20:12:24 +00002148 target->final_check(target->tflags);
2149
2150 /* Fix me: must put inverse options checking here --MN */
2151
2152 if (optind < argc)
2153 exit_error(PARAMETER_PROBLEM,
2154 "unknown arguments found on commandline");
2155 if (!command)
2156 exit_error(PARAMETER_PROBLEM, "no command specified");
2157 if (invert)
2158 exit_error(PARAMETER_PROBLEM,
2159 "nothing appropriate following !");
2160
András Kis-Szabó0c4188f2002-08-14 11:40:41 +00002161 if (command & (CMD_REPLACE | CMD_INSERT | CMD_DELETE | CMD_APPEND)) {
Rusty Russell5eed48a2000-06-02 20:12:24 +00002162 if (!(options & OPT_DESTINATION))
András Kis-Szabó764316a2001-02-26 17:31:20 +00002163 dhostnetworkmask = "::0/0";
Rusty Russell5eed48a2000-06-02 20:12:24 +00002164 if (!(options & OPT_SOURCE))
András Kis-Szabó764316a2001-02-26 17:31:20 +00002165 shostnetworkmask = "::0/0";
Rusty Russell5eed48a2000-06-02 20:12:24 +00002166 }
2167
2168 if (shostnetworkmask)
2169 parse_hostnetworkmask(shostnetworkmask, &saddrs,
2170 &(fw.ipv6.smsk), &nsaddrs);
2171
2172 if (dhostnetworkmask)
2173 parse_hostnetworkmask(dhostnetworkmask, &daddrs,
2174 &(fw.ipv6.dmsk), &ndaddrs);
2175
2176 if ((nsaddrs > 1 || ndaddrs > 1) &&
2177 (fw.ipv6.invflags & (IP6T_INV_SRCIP | IP6T_INV_DSTIP)))
2178 exit_error(PARAMETER_PROBLEM, "! not allowed with multiple"
2179 " source or destination IP addresses");
2180
Rusty Russell5eed48a2000-06-02 20:12:24 +00002181 if (command == CMD_REPLACE && (nsaddrs != 1 || ndaddrs != 1))
2182 exit_error(PARAMETER_PROBLEM, "Replacement rule does not "
2183 "specify a unique address");
2184
2185 generic_opt_check(command, options);
2186
2187 if (chain && strlen(chain) > IP6T_FUNCTION_MAXNAMELEN)
2188 exit_error(PARAMETER_PROBLEM,
2189 "chain name `%s' too long (must be under %i chars)",
2190 chain, IP6T_FUNCTION_MAXNAMELEN);
2191
Harald Welte43ac1912002-03-03 09:43:07 +00002192 /* only allocate handle if we weren't called with a handle */
Martin Josefsson8371e152003-05-05 19:33:40 +00002193 if (!*handle)
Harald Welte43ac1912002-03-03 09:43:07 +00002194 *handle = ip6tc_init(*table);
András Kis-Szabó3aa62872001-05-03 01:01:41 +00002195
Rusty Russell8beb0492004-12-22 00:37:10 +00002196 /* try to insmod the module if iptc_init failed */
2197 if (!*handle && ip6tables_insmod("ip6_tables", modprobe) != -1)
Harald Welte43ac1912002-03-03 09:43:07 +00002198 *handle = ip6tc_init(*table);
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00002199
Harald Welte43ac1912002-03-03 09:43:07 +00002200 if (!*handle)
2201 exit_error(VERSION_PROBLEM,
2202 "can't initialize ip6tables table `%s': %s",
2203 *table, ip6tc_strerror(errno));
Rusty Russell5eed48a2000-06-02 20:12:24 +00002204
András Kis-Szabó0c4188f2002-08-14 11:40:41 +00002205 if (command == CMD_APPEND
Rusty Russell5eed48a2000-06-02 20:12:24 +00002206 || command == CMD_DELETE
2207 || command == CMD_INSERT
2208 || command == CMD_REPLACE) {
Harald Welte43ac1912002-03-03 09:43:07 +00002209 if (strcmp(chain, "PREROUTING") == 0
2210 || strcmp(chain, "INPUT") == 0) {
2211 /* -o not valid with incoming packets. */
2212 if (options & OPT_VIANAMEOUT)
2213 exit_error(PARAMETER_PROBLEM,
2214 "Can't use -%c with %s\n",
2215 opt2char(OPT_VIANAMEOUT),
2216 chain);
Harald Welte43ac1912002-03-03 09:43:07 +00002217 }
Rusty Russell5eed48a2000-06-02 20:12:24 +00002218
Harald Welte43ac1912002-03-03 09:43:07 +00002219 if (strcmp(chain, "POSTROUTING") == 0
2220 || strcmp(chain, "OUTPUT") == 0) {
2221 /* -i not valid with outgoing packets */
2222 if (options & OPT_VIANAMEIN)
2223 exit_error(PARAMETER_PROBLEM,
2224 "Can't use -%c with %s\n",
2225 opt2char(OPT_VIANAMEIN),
2226 chain);
Harald Welte43ac1912002-03-03 09:43:07 +00002227 }
Rusty Russell5eed48a2000-06-02 20:12:24 +00002228
2229 if (target && ip6tc_is_chain(jumpto, *handle)) {
2230 printf("Warning: using chain %s, not extension\n",
2231 jumpto);
2232
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00002233 if (target->t)
2234 free(target->t);
2235
Rusty Russell5eed48a2000-06-02 20:12:24 +00002236 target = NULL;
2237 }
2238
2239 /* If they didn't specify a target, or it's a chain
2240 name, use standard. */
2241 if (!target
2242 && (strlen(jumpto) == 0
2243 || ip6tc_is_chain(jumpto, *handle))) {
2244 size_t size;
2245
2246 target = find_target(IP6T_STANDARD_TARGET,
2247 LOAD_MUST_SUCCEED);
2248
2249 size = sizeof(struct ip6t_entry_target)
2250 + target->size;
2251 target->t = fw_calloc(1, size);
2252 target->t->u.target_size = size;
2253 strcpy(target->t->u.user.name, jumpto);
Jonas Berlin1b91e592005-04-01 06:58:38 +00002254 if (target->init != NULL)
2255 target->init(target->t, &fw.nfcache);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002256 }
2257
2258 if (!target) {
Harald Welte43ac1912002-03-03 09:43:07 +00002259 /* it is no chain, and we can't load a plugin.
2260 * We cannot know if the plugin is corrupt, non
2261 * existant OR if the user just misspelled a
2262 * chain. */
2263 find_target(jumpto, LOAD_MUST_SUCCEED);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002264 } else {
Martin Josefsson69ac0e02004-02-02 20:02:10 +00002265 e = generate_entry(&fw, matches, target->t);
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00002266 free(target->t);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002267 }
2268 }
2269
2270 switch (command) {
2271 case CMD_APPEND:
2272 ret = append_entry(chain, e,
2273 nsaddrs, saddrs, ndaddrs, daddrs,
2274 options&OPT_VERBOSE,
2275 handle);
2276 break;
Rusty Russell5eed48a2000-06-02 20:12:24 +00002277 case CMD_DELETE:
2278 ret = delete_entry(chain, e,
2279 nsaddrs, saddrs, ndaddrs, daddrs,
2280 options&OPT_VERBOSE,
Martin Josefsson69ac0e02004-02-02 20:02:10 +00002281 handle, matches);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002282 break;
2283 case CMD_DELETE_NUM:
2284 ret = ip6tc_delete_num_entry(chain, rulenum - 1, handle);
2285 break;
2286 case CMD_REPLACE:
2287 ret = replace_entry(chain, e, rulenum - 1,
2288 saddrs, daddrs, options&OPT_VERBOSE,
2289 handle);
2290 break;
2291 case CMD_INSERT:
2292 ret = insert_entry(chain, e, rulenum - 1,
2293 nsaddrs, saddrs, ndaddrs, daddrs,
2294 options&OPT_VERBOSE,
2295 handle);
2296 break;
2297 case CMD_LIST:
2298 ret = list_entries(chain,
2299 options&OPT_VERBOSE,
2300 options&OPT_NUMERIC,
2301 options&OPT_EXPANDED,
2302 options&OPT_LINENUMBERS,
2303 handle);
2304 break;
2305 case CMD_FLUSH:
2306 ret = flush_entries(chain, options&OPT_VERBOSE, handle);
2307 break;
2308 case CMD_ZERO:
2309 ret = zero_entries(chain, options&OPT_VERBOSE, handle);
2310 break;
2311 case CMD_LIST|CMD_ZERO:
2312 ret = list_entries(chain,
2313 options&OPT_VERBOSE,
2314 options&OPT_NUMERIC,
2315 options&OPT_EXPANDED,
2316 options&OPT_LINENUMBERS,
2317 handle);
2318 if (ret)
2319 ret = zero_entries(chain,
2320 options&OPT_VERBOSE, handle);
2321 break;
2322 case CMD_NEW_CHAIN:
2323 ret = ip6tc_create_chain(chain, handle);
2324 break;
2325 case CMD_DELETE_CHAIN:
2326 ret = delete_chain(chain, options&OPT_VERBOSE, handle);
2327 break;
2328 case CMD_RENAME_CHAIN:
2329 ret = ip6tc_rename_chain(chain, newname, handle);
2330 break;
2331 case CMD_SET_POLICY:
Harald Welted8e65632001-01-05 15:20:07 +00002332 ret = ip6tc_set_policy(chain, policy, NULL, handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002333 break;
2334 default:
2335 /* We should never reach this... */
2336 exit_tryhelp(2);
2337 }
2338
2339 if (verbose > 1)
2340 dump_entries6(*handle);
2341
Martin Josefsson69ac0e02004-02-02 20:02:10 +00002342 clear_rule_matches(&matches);
2343
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00002344 if (e != NULL) {
2345 free(e);
2346 e = NULL;
2347 }
2348
2349 for (c = 0; c < nsaddrs; c++)
2350 free(&saddrs[c]);
2351
2352 for (c = 0; c < ndaddrs; c++)
2353 free(&daddrs[c]);
2354
Pablo Neiradfdcd642005-05-29 19:05:23 +00002355 free_opts(1);
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00002356
Rusty Russell5eed48a2000-06-02 20:12:24 +00002357 return ret;
2358}