blob: 903e005531d62fa10ced8b140932c4eca14b8aa1 [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>
Rusty Russell5eed48a2000-06-02 20:12:24 +000034#include <ctype.h>
35#include <stdarg.h>
Jan Engelhardtc021c3c2009-01-27 15:10:05 +010036#include <stdbool.h>
Rusty Russell5eed48a2000-06-02 20:12:24 +000037#include <limits.h>
38#include <ip6tables.h>
Yasuyuki KOZAKAI3dfa4482007-07-24 05:45:33 +000039#include <xtables.h>
Rusty Russell5eed48a2000-06-02 20:12:24 +000040#include <arpa/inet.h>
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +000041#include <unistd.h>
42#include <fcntl.h>
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +000043#include <sys/types.h>
44#include <sys/socket.h>
Jan Engelhardt33690a12008-02-11 00:54:00 +010045#include "ip6tables-multi.h"
Rusty Russell5eed48a2000-06-02 20:12:24 +000046
47#ifndef TRUE
48#define TRUE 1
49#endif
50#ifndef FALSE
51#define FALSE 0
52#endif
53
Rusty Russell5eed48a2000-06-02 20:12:24 +000054#define FMT_NUMERIC 0x0001
55#define FMT_NOCOUNTS 0x0002
56#define FMT_KILOMEGAGIGA 0x0004
57#define FMT_OPTIONS 0x0008
58#define FMT_NOTABLE 0x0010
59#define FMT_NOTARGET 0x0020
60#define FMT_VIA 0x0040
61#define FMT_NONEWLINE 0x0080
62#define FMT_LINENUMBERS 0x0100
63
64#define FMT_PRINT_RULE (FMT_NOCOUNTS | FMT_OPTIONS | FMT_VIA \
65 | FMT_NUMERIC | FMT_NOTABLE)
66#define FMT(tab,notab) ((format) & FMT_NOTABLE ? (notab) : (tab))
67
68
69#define CMD_NONE 0x0000U
70#define CMD_INSERT 0x0001U
71#define CMD_DELETE 0x0002U
72#define CMD_DELETE_NUM 0x0004U
73#define CMD_REPLACE 0x0008U
74#define CMD_APPEND 0x0010U
75#define CMD_LIST 0x0020U
76#define CMD_FLUSH 0x0040U
77#define CMD_ZERO 0x0080U
78#define CMD_NEW_CHAIN 0x0100U
79#define CMD_DELETE_CHAIN 0x0200U
80#define CMD_SET_POLICY 0x0400U
Harald Welte0eca33f2006-04-21 11:56:30 +000081#define CMD_RENAME_CHAIN 0x0800U
Henrik Nordstrom96296cf2008-05-13 13:08:26 +020082#define CMD_LIST_RULES 0x1000U
83#define NUMBER_OF_CMD 14
Rusty Russell5eed48a2000-06-02 20:12:24 +000084static const char cmdflags[] = { 'I', 'D', 'D', 'R', 'A', 'L', 'F', 'Z',
Henrik Nordstrom96296cf2008-05-13 13:08:26 +020085 'N', 'X', 'P', 'E', 'S' };
Rusty Russell5eed48a2000-06-02 20:12:24 +000086
87#define OPTION_OFFSET 256
88
89#define OPT_NONE 0x00000U
90#define OPT_NUMERIC 0x00001U
91#define OPT_SOURCE 0x00002U
92#define OPT_DESTINATION 0x00004U
93#define OPT_PROTOCOL 0x00008U
94#define OPT_JUMP 0x00010U
95#define OPT_VERBOSE 0x00020U
96#define OPT_EXPANDED 0x00040U
97#define OPT_VIANAMEIN 0x00080U
98#define OPT_VIANAMEOUT 0x00100U
99#define OPT_LINENUMBERS 0x00200U
Harald Welte43ac1912002-03-03 09:43:07 +0000100#define OPT_COUNTERS 0x00400U
101#define NUMBER_OF_OPT 11
Rusty Russell5eed48a2000-06-02 20:12:24 +0000102static const char optflags[NUMBER_OF_OPT]
Jonas Berlin4a06cf02005-04-01 06:38:25 +0000103= { 'n', 's', 'd', 'p', 'j', 'v', 'x', 'i', 'o', '0', 'c'};
Rusty Russell5eed48a2000-06-02 20:12:24 +0000104
105static struct option original_opts[] = {
Gáspár Lajos7bc3cb72008-03-27 08:20:39 +0100106 {.name = "append", .has_arg = 1, .val = 'A'},
107 {.name = "delete", .has_arg = 1, .val = 'D'},
108 {.name = "insert", .has_arg = 1, .val = 'I'},
109 {.name = "replace", .has_arg = 1, .val = 'R'},
110 {.name = "list", .has_arg = 2, .val = 'L'},
Henrik Nordstrom96296cf2008-05-13 13:08:26 +0200111 {.name = "list-rules", .has_arg = 2, .val = 'S'},
Gáspár Lajos7bc3cb72008-03-27 08:20:39 +0100112 {.name = "flush", .has_arg = 2, .val = 'F'},
113 {.name = "zero", .has_arg = 2, .val = 'Z'},
114 {.name = "new-chain", .has_arg = 1, .val = 'N'},
115 {.name = "delete-chain", .has_arg = 2, .val = 'X'},
116 {.name = "rename-chain", .has_arg = 1, .val = 'E'},
117 {.name = "policy", .has_arg = 1, .val = 'P'},
118 {.name = "source", .has_arg = 1, .val = 's'},
119 {.name = "destination", .has_arg = 1, .val = 'd'},
120 {.name = "src", .has_arg = 1, .val = 's'}, /* synonym */
121 {.name = "dst", .has_arg = 1, .val = 'd'}, /* synonym */
122 {.name = "protocol", .has_arg = 1, .val = 'p'},
123 {.name = "in-interface", .has_arg = 1, .val = 'i'},
124 {.name = "jump", .has_arg = 1, .val = 'j'},
125 {.name = "table", .has_arg = 1, .val = 't'},
126 {.name = "match", .has_arg = 1, .val = 'm'},
127 {.name = "numeric", .has_arg = 0, .val = 'n'},
128 {.name = "out-interface", .has_arg = 1, .val = 'o'},
129 {.name = "verbose", .has_arg = 0, .val = 'v'},
130 {.name = "exact", .has_arg = 0, .val = 'x'},
131 {.name = "version", .has_arg = 0, .val = 'V'},
132 {.name = "help", .has_arg = 2, .val = 'h'},
133 {.name = "line-numbers", .has_arg = 0, .val = '0'},
134 {.name = "modprobe", .has_arg = 1, .val = 'M'},
135 {.name = "set-counters", .has_arg = 1, .val = 'c'},
Thomas Jacobeaf831e2008-06-23 11:35:29 +0200136 {.name = "goto", .has_arg = 1, .val = 'g'},
Gáspár Lajos7bc3cb72008-03-27 08:20:39 +0100137 {NULL},
Rusty Russell5eed48a2000-06-02 20:12:24 +0000138};
139
Harald Weltea8658ca2003-03-05 07:46:15 +0000140/* we need this for ip6tables-restore. ip6tables-restore.c sets line to the
141 * current line of the input file, in order to give a more precise error
142 * message. ip6tables itself doesn't need this, so it is initialized to the
143 * magic number of -1 */
144int line = -1;
145
Rusty Russell5eed48a2000-06-02 20:12:24 +0000146static struct option *opts = original_opts;
147static unsigned int global_option_offset = 0;
148
149/* Table of legal combinations of commands and options. If any of the
150 * given commands make an option legal, that option is legal (applies to
151 * CMD_LIST and CMD_ZERO only).
152 * Key:
153 * + compulsory
154 * x illegal
155 * optional
156 */
157
158static char commands_v_options[NUMBER_OF_CMD][NUMBER_OF_OPT] =
159/* Well, it's better than "Re: Linux vs FreeBSD" */
160{
Henrik Nordstrom96296cf2008-05-13 13:08:26 +0200161 /* -n -s -d -p -j -v -x -i -o --line -c */
Patrick McHardyHarald Welte2cfbd9f2006-04-22 02:08:12 +0000162/*INSERT*/ {'x',' ',' ',' ',' ',' ','x',' ',' ','x',' '},
163/*DELETE*/ {'x',' ',' ',' ',' ',' ','x',' ',' ','x','x'},
164/*DELETE_NUM*/{'x','x','x','x','x',' ','x','x','x','x','x'},
165/*REPLACE*/ {'x',' ',' ',' ',' ',' ','x',' ',' ','x',' '},
166/*APPEND*/ {'x',' ',' ',' ',' ',' ','x',' ',' ','x',' '},
167/*LIST*/ {' ','x','x','x','x',' ',' ','x','x',' ','x'},
168/*FLUSH*/ {'x','x','x','x','x',' ','x','x','x','x','x'},
169/*ZERO*/ {'x','x','x','x','x',' ','x','x','x','x','x'},
170/*NEW_CHAIN*/ {'x','x','x','x','x',' ','x','x','x','x','x'},
171/*DEL_CHAIN*/ {'x','x','x','x','x',' ','x','x','x','x','x'},
Henrik Nordstrom48c1bc62008-05-12 20:53:16 +0200172/*SET_POLICY*/{'x','x','x','x','x',' ','x','x','x','x',' '},
Henrik Nordstrom96296cf2008-05-13 13:08:26 +0200173/*RENAME*/ {'x','x','x','x','x',' ','x','x','x','x','x'},
174/*LIST_RULES*/{'x','x','x','x','x',' ','x','x','x','x','x'}
Rusty Russell5eed48a2000-06-02 20:12:24 +0000175};
176
177static int inverse_for_options[NUMBER_OF_OPT] =
178{
179/* -n */ 0,
180/* -s */ IP6T_INV_SRCIP,
181/* -d */ IP6T_INV_DSTIP,
182/* -p */ IP6T_INV_PROTO,
183/* -j */ 0,
184/* -v */ 0,
185/* -x */ 0,
186/* -i */ IP6T_INV_VIA_IN,
187/* -o */ IP6T_INV_VIA_OUT,
Patrick McHardyHarald Welte2cfbd9f2006-04-22 02:08:12 +0000188/*--line*/ 0,
189/* -c */ 0,
Rusty Russell5eed48a2000-06-02 20:12:24 +0000190};
191
192const char *program_version;
193const char *program_name;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000194
Rusty Russell5eed48a2000-06-02 20:12:24 +0000195/* A few hardcoded protocols for 'all' and in case the user has no
196 /etc/protocols */
197struct pprot {
198 char *name;
199 u_int8_t num;
200};
201
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000202struct afinfo afinfo = {
Jan Engelhardt03d99482008-11-18 12:27:54 +0100203 .family = NFPROTO_IPV6,
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000204 .libprefix = "libip6t_",
205 .ipproto = IPPROTO_IPV6,
206 .kmod = "ip6_tables",
207 .so_rev_match = IP6T_SO_GET_REVISION_MATCH,
208 .so_rev_target = IP6T_SO_GET_REVISION_TARGET,
209};
210
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +0000211/* Primitive headers... */
212/* defined in netinet/in.h */
213#if 0
214#ifndef IPPROTO_ESP
215#define IPPROTO_ESP 50
216#endif
217#ifndef IPPROTO_AH
218#define IPPROTO_AH 51
219#endif
220#endif
Masahide NAKAMURA00d46e12007-02-09 11:24:14 +0000221#ifndef IPPROTO_MH
222#define IPPROTO_MH 135
223#endif
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +0000224
Rusty Russell5eed48a2000-06-02 20:12:24 +0000225static const struct pprot chain_protos[] = {
226 { "tcp", IPPROTO_TCP },
227 { "udp", IPPROTO_UDP },
Patrick McHardy95616062007-01-11 09:08:22 +0000228 { "udplite", IPPROTO_UDPLITE },
Harald Weltede8e5fa2000-11-13 14:34:34 +0000229 { "icmpv6", IPPROTO_ICMPV6 },
Yasuyuki KOZAKAI85872c82006-04-15 03:09:37 +0000230 { "ipv6-icmp", IPPROTO_ICMPV6 },
András Kis-Szabó764316a2001-02-26 17:31:20 +0000231 { "esp", IPPROTO_ESP },
232 { "ah", IPPROTO_AH },
Masahide NAKAMURA00d46e12007-02-09 11:24:14 +0000233 { "ipv6-mh", IPPROTO_MH },
234 { "mh", IPPROTO_MH },
Phil Oesterb7408912007-04-30 00:01:39 +0000235 { "all", 0 },
Rusty Russell5eed48a2000-06-02 20:12:24 +0000236};
237
238static char *
239proto_to_name(u_int8_t proto, int nolookup)
240{
241 unsigned int i;
242
243 if (proto && !nolookup) {
244 struct protoent *pent = getprotobynumber(proto);
245 if (pent)
246 return pent->p_name;
247 }
248
249 for (i = 0; i < sizeof(chain_protos)/sizeof(struct pprot); i++)
250 if (chain_protos[i].num == proto)
251 return chain_protos[i].name;
252
253 return NULL;
254}
255
Pablo Neiradfdcd642005-05-29 19:05:23 +0000256static void free_opts(int reset_offset)
257{
258 if (opts != original_opts) {
259 free(opts);
260 opts = original_opts;
261 if (reset_offset)
262 global_option_offset = 0;
263 }
264}
265
Patrick McHardy0b639362007-09-08 16:00:01 +0000266static void
Rusty Russell5eed48a2000-06-02 20:12:24 +0000267exit_tryhelp(int status)
268{
Harald Weltea8658ca2003-03-05 07:46:15 +0000269 if (line != -1)
270 fprintf(stderr, "Error occurred at line: %d\n", line);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000271 fprintf(stderr, "Try `%s -h' or '%s --help' for more information.\n",
272 program_name, program_name );
Pablo Neiradfdcd642005-05-29 19:05:23 +0000273 free_opts(1);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000274 exit(status);
275}
276
Patrick McHardy0b639362007-09-08 16:00:01 +0000277static void
Martin Josefsson66aea6f2004-05-26 15:41:54 +0000278exit_printhelp(struct ip6tables_rule_match *matches)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000279{
Martin Josefsson66aea6f2004-05-26 15:41:54 +0000280 struct ip6tables_rule_match *matchp = NULL;
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200281 struct xtables_target *t = NULL;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000282
283 printf("%s v%s\n\n"
András Kis-Szabó0c4188f2002-08-14 11:40:41 +0000284"Usage: %s -[AD] chain rule-specification [options]\n"
Rusty Russell5eed48a2000-06-02 20:12:24 +0000285" %s -[RI] chain rulenum rule-specification [options]\n"
286" %s -D chain rulenum [options]\n"
Henrik Nordstrombb340822008-05-13 13:09:23 +0200287" %s -[LS] [chain [rulenum]] [options]\n"
288" %s -[FZ] [chain] [options]\n"
Rusty Russell5eed48a2000-06-02 20:12:24 +0000289" %s -[NX] chain\n"
290" %s -E old-chain-name new-chain-name\n"
291" %s -P chain target [options]\n"
292" %s -h (print this help information)\n\n",
293 program_name, program_version, program_name, program_name,
294 program_name, program_name, program_name, program_name,
Henrik Nordstrombb340822008-05-13 13:09:23 +0200295 program_name, program_name, program_name);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000296
297 printf(
298"Commands:\n"
299"Either long or short options are allowed.\n"
300" --append -A chain Append to chain\n"
301" --delete -D chain Delete matching rule from chain\n"
302" --delete -D chain rulenum\n"
303" Delete rule rulenum (1 = first) from chain\n"
304" --insert -I chain [rulenum]\n"
305" Insert in chain as rulenum (default 1=first)\n"
306" --replace -R chain rulenum\n"
307" Replace rule rulenum (1 = first) in chain\n"
Henrik Nordstrombb340822008-05-13 13:09:23 +0200308" --list -L [chain [rulenum]]\n"
309" List the rules in a chain or all chains\n"
310" --list-rules -S [chain [rulenum]]\n"
311" Print the rules in a chain or all chains\n"
Rusty Russell5eed48a2000-06-02 20:12:24 +0000312" --flush -F [chain] Delete all rules in chain or all chains\n"
313" --zero -Z [chain] Zero counters in chain or all chains\n"
Rusty Russell5eed48a2000-06-02 20:12:24 +0000314" --new -N chain Create a new user-defined chain\n"
315" --delete-chain\n"
316" -X [chain] Delete a user-defined chain\n"
317" --policy -P chain target\n"
318" Change policy on chain to target\n"
319" --rename-chain\n"
320" -E old-chain new-chain\n"
321" Change chain name, (moving any references)\n"
322
323"Options:\n"
Jan Engelhardt96727922008-08-13 14:42:41 +0200324"[!] --proto -p proto protocol: by number or name, eg. `tcp'\n"
325"[!] --source -s address[/mask]\n"
Rusty Russell5eed48a2000-06-02 20:12:24 +0000326" source specification\n"
Jan Engelhardt96727922008-08-13 14:42:41 +0200327"[!] --destination -d address[/mask]\n"
Rusty Russell5eed48a2000-06-02 20:12:24 +0000328" destination specification\n"
Jan Engelhardt96727922008-08-13 14:42:41 +0200329"[!] --in-interface -i input name[+]\n"
Rusty Russell5eed48a2000-06-02 20:12:24 +0000330" network interface name ([+] for wildcard)\n"
331" --jump -j target\n"
Harald Welte43ac1912002-03-03 09:43:07 +0000332" target for rule (may load target extension)\n"
Thomas Jacobeaf831e2008-06-23 11:35:29 +0200333#ifdef IP6T_F_GOTO
334" --goto -g chain\n"
335" jump to chain with no return\n"
336#endif
Harald Welte43ac1912002-03-03 09:43:07 +0000337" --match -m match\n"
338" extended match (may load extension)\n"
Rusty Russell5eed48a2000-06-02 20:12:24 +0000339" --numeric -n numeric output of addresses and ports\n"
Jan Engelhardt96727922008-08-13 14:42:41 +0200340"[!] --out-interface -o output name[+]\n"
Rusty Russell5eed48a2000-06-02 20:12:24 +0000341" network interface name ([+] for wildcard)\n"
342" --table -t table table to manipulate (default: `filter')\n"
343" --verbose -v verbose mode\n"
Harald Welte43ac1912002-03-03 09:43:07 +0000344" --line-numbers print line numbers when listing\n"
Rusty Russell5eed48a2000-06-02 20:12:24 +0000345" --exact -x expand numbers (display exact values)\n"
András Kis-Szabó058eaad2001-06-16 15:42:17 +0000346/*"[!] --fragment -f match second or further fragments only\n"*/
Harald Welte43ac1912002-03-03 09:43:07 +0000347" --modprobe=<command> try to insert modules using this command\n"
348" --set-counters PKTS BYTES set the counter during insert/append\n"
Rusty Russell5eed48a2000-06-02 20:12:24 +0000349"[!] --version -V print package version.\n");
350
Max Kellermann5b76f682008-01-29 13:42:48 +0000351 /* Print out any special helps. A user might like to be able to add a --help
352 to the commandline, and see expected results. So we call help for all
Martin Josefsson66aea6f2004-05-26 15:41:54 +0000353 specified matches & targets */
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000354 for (t = xtables_targets; t; t = t->next) {
Martin Josefsson66aea6f2004-05-26 15:41:54 +0000355 if (t->used) {
356 printf("\n");
357 t->help();
358 }
Rusty Russell5eed48a2000-06-02 20:12:24 +0000359 }
Martin Josefsson66aea6f2004-05-26 15:41:54 +0000360 for (matchp = matches; matchp; matchp = matchp->next) {
Rusty Russell5eed48a2000-06-02 20:12:24 +0000361 printf("\n");
Martin Josefsson66aea6f2004-05-26 15:41:54 +0000362 matchp->match->help();
Rusty Russell5eed48a2000-06-02 20:12:24 +0000363 }
364 exit(0);
365}
366
Patrick McHardy0b639362007-09-08 16:00:01 +0000367void
Jan Engelhardta41545c2009-01-27 21:27:19 +0100368exit_error(enum xtables_exittype status, const char *msg, ...)
Patrick McHardy0b639362007-09-08 16:00:01 +0000369{
370 va_list args;
371
372 va_start(args, msg);
373 fprintf(stderr, "%s v%s: ", program_name, program_version);
374 vfprintf(stderr, msg, args);
375 va_end(args);
376 fprintf(stderr, "\n");
377 if (status == PARAMETER_PROBLEM)
378 exit_tryhelp(status);
379 if (status == VERSION_PROBLEM)
380 fprintf(stderr,
381 "Perhaps ip6tables or your kernel needs to be upgraded.\n");
382 /* On error paths, make sure that we don't leak memory */
383 free_opts(1);
384 exit(status);
385}
386
Rusty Russell5eed48a2000-06-02 20:12:24 +0000387static void
388generic_opt_check(int command, int options)
389{
390 int i, j, legal = 0;
391
392 /* Check that commands are valid with options. Complicated by the
393 * fact that if an option is legal with *any* command given, it is
394 * legal overall (ie. -z and -l).
395 */
396 for (i = 0; i < NUMBER_OF_OPT; i++) {
397 legal = 0; /* -1 => illegal, 1 => legal, 0 => undecided. */
398
399 for (j = 0; j < NUMBER_OF_CMD; j++) {
400 if (!(command & (1<<j)))
401 continue;
402
403 if (!(options & (1<<i))) {
404 if (commands_v_options[j][i] == '+')
405 exit_error(PARAMETER_PROBLEM,
406 "You need to supply the `-%c' "
407 "option for this command\n",
408 optflags[i]);
409 } else {
410 if (commands_v_options[j][i] != 'x')
411 legal = 1;
412 else if (legal == 0)
413 legal = -1;
414 }
415 }
416 if (legal == -1)
417 exit_error(PARAMETER_PROBLEM,
418 "Illegal option `-%c' with this command\n",
419 optflags[i]);
420 }
421}
422
423static char
424opt2char(int option)
425{
426 const char *ptr;
427 for (ptr = optflags; option > 1; option >>= 1, ptr++);
428
429 return *ptr;
430}
431
432static char
433cmd2char(int option)
434{
435 const char *ptr;
436 for (ptr = cmdflags; option > 1; option >>= 1, ptr++);
437
438 return *ptr;
439}
440
441static void
Harald Welteefa8fc22005-07-19 22:03:49 +0000442add_command(unsigned int *cmd, const int newcmd, const int othercmds,
443 int invert)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000444{
445 if (invert)
446 exit_error(PARAMETER_PROBLEM, "unexpected ! flag");
447 if (*cmd & (~othercmds))
448 exit_error(PARAMETER_PROBLEM, "Can't use -%c with -%c\n",
449 cmd2char(newcmd), cmd2char(*cmd & (~othercmds)));
450 *cmd |= newcmd;
451}
452
Rusty Russell5eed48a2000-06-02 20:12:24 +0000453/*
454 * All functions starting with "parse" should succeed, otherwise
455 * the program fails.
456 * Most routines return pointers to static data that may change
457 * between calls to the same or other routines with a few exceptions:
458 * "host_to_addr", "parse_hostnetwork", and "parse_hostnetworkmask"
459 * return global static data.
460*/
461
Rusty Russell5eed48a2000-06-02 20:12:24 +0000462/* Christophe Burki wants `-p 6' to imply `-m tcp'. */
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200463static struct xtables_match *
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100464find_proto(const char *pname, enum xtables_tryload tryload,
465 int nolookup, struct ip6tables_rule_match **matches)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000466{
Harald Welteed498492001-07-23 01:24:22 +0000467 unsigned int proto;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000468
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100469 if (xtables_strtoui(pname, NULL, &proto, 0, UINT8_MAX)) {
Harald Welte43ac1912002-03-03 09:43:07 +0000470 char *protoname = proto_to_name(proto, nolookup);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000471
Harald Welte43ac1912002-03-03 09:43:07 +0000472 if (protoname)
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100473 return xtables_find_match(protoname, tryload, matches);
Harald Welte43ac1912002-03-03 09:43:07 +0000474 } else
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100475 return xtables_find_match(pname, tryload, matches);
Harald Welte43ac1912002-03-03 09:43:07 +0000476
477 return NULL;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000478}
479
Harald Welte43ac1912002-03-03 09:43:07 +0000480u_int16_t
Rusty Russell5eed48a2000-06-02 20:12:24 +0000481parse_protocol(const char *s)
482{
Harald Welteed498492001-07-23 01:24:22 +0000483 unsigned int proto;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000484
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100485 if (!xtables_strtoui(s, NULL, &proto, 0, UINT8_MAX)) {
Rusty Russell5eed48a2000-06-02 20:12:24 +0000486 struct protoent *pent;
487
Harald Weltecbe1ec72006-02-11 09:50:11 +0000488 /* first deal with the special case of 'all' to prevent
489 * people from being able to redefine 'all' in nsswitch
Max Kellermann5b76f682008-01-29 13:42:48 +0000490 * and/or provoke expensive [not working] ldap/nis/...
Harald Weltecbe1ec72006-02-11 09:50:11 +0000491 * lookups */
492 if (!strcmp(s, "all"))
493 return 0;
494
Rusty Russell5eed48a2000-06-02 20:12:24 +0000495 if ((pent = getprotobyname(s)))
496 proto = pent->p_proto;
497 else {
498 unsigned int i;
499 for (i = 0;
500 i < sizeof(chain_protos)/sizeof(struct pprot);
501 i++) {
502 if (strcmp(s, chain_protos[i].name) == 0) {
503 proto = chain_protos[i].num;
504 break;
505 }
506 }
507 if (i == sizeof(chain_protos)/sizeof(struct pprot))
508 exit_error(PARAMETER_PROBLEM,
509 "unknown protocol `%s' specified",
510 s);
511 }
512 }
513
514 return (u_int16_t)proto;
515}
516
Yasuyuki KOZAKAIf69e30c2007-06-11 20:17:34 +0000517/* These are invalid numbers as upper layer protocol */
Yasuyuki KOZAKAI78716a92006-03-29 09:24:43 +0000518static int is_exthdr(u_int16_t proto)
519{
Yasuyuki KOZAKAIf69e30c2007-06-11 20:17:34 +0000520 return (proto == IPPROTO_ROUTING ||
Yasuyuki KOZAKAI78716a92006-03-29 09:24:43 +0000521 proto == IPPROTO_FRAGMENT ||
Yasuyuki KOZAKAI78716a92006-03-29 09:24:43 +0000522 proto == IPPROTO_AH ||
523 proto == IPPROTO_DSTOPTS);
524}
525
Rusty Russell5eed48a2000-06-02 20:12:24 +0000526/* Can't be zero. */
527static int
528parse_rulenumber(const char *rule)
529{
Harald Welte43ac1912002-03-03 09:43:07 +0000530 unsigned int rulenum;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000531
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100532 if (!xtables_strtoui(rule, NULL, &rulenum, 1, INT_MAX))
Rusty Russell5eed48a2000-06-02 20:12:24 +0000533 exit_error(PARAMETER_PROBLEM,
534 "Invalid rule number `%s'", rule);
535
536 return rulenum;
537}
538
539static const char *
540parse_target(const char *targetname)
541{
542 const char *ptr;
543
544 if (strlen(targetname) < 1)
545 exit_error(PARAMETER_PROBLEM,
546 "Invalid target name (too short)");
547
548 if (strlen(targetname)+1 > sizeof(ip6t_chainlabel))
549 exit_error(PARAMETER_PROBLEM,
Martin Josefssona28d4952004-05-26 16:04:48 +0000550 "Invalid target name `%s' (%u chars max)",
551 targetname, (unsigned int)sizeof(ip6t_chainlabel)-1);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000552
553 for (ptr = targetname; *ptr; ptr++)
554 if (isspace(*ptr))
555 exit_error(PARAMETER_PROBLEM,
556 "Invalid target name `%s'", targetname);
557 return targetname;
558}
559
Rusty Russell5eed48a2000-06-02 20:12:24 +0000560static void
561set_option(unsigned int *options, unsigned int option, u_int8_t *invflg,
562 int invert)
563{
564 if (*options & option)
565 exit_error(PARAMETER_PROBLEM, "multiple -%c flags not allowed",
566 opt2char(option));
567 *options |= option;
568
569 if (invert) {
570 unsigned int i;
571 for (i = 0; 1 << i != option; i++);
572
573 if (!inverse_for_options[i])
574 exit_error(PARAMETER_PROBLEM,
575 "cannot have ! before -%c",
576 opt2char(option));
577 *invflg |= inverse_for_options[i];
578 }
579}
580
Rusty Russell5eed48a2000-06-02 20:12:24 +0000581static struct option *
Jan Echternachaf8fe9e2000-08-27 07:41:39 +0000582merge_options(struct option *oldopts, const struct option *newopts,
Rusty Russell5eed48a2000-06-02 20:12:24 +0000583 unsigned int *option_offset)
584{
585 unsigned int num_old, num_new, i;
586 struct option *merge;
587
Jan Engelhardtd0145402007-07-30 14:32:26 +0000588 if (newopts == NULL)
589 return oldopts;
590
Rusty Russell5eed48a2000-06-02 20:12:24 +0000591 for (num_old = 0; oldopts[num_old].name; num_old++);
592 for (num_new = 0; newopts[num_new].name; num_new++);
593
594 global_option_offset += OPTION_OFFSET;
595 *option_offset = global_option_offset;
596
597 merge = malloc(sizeof(struct option) * (num_new + num_old + 1));
598 memcpy(merge, oldopts, num_old * sizeof(struct option));
Marcus Sundbergd91ed752005-07-29 13:26:35 +0000599 free_opts(0); /* Release previous options merged if any */
Rusty Russell5eed48a2000-06-02 20:12:24 +0000600 for (i = 0; i < num_new; i++) {
601 merge[num_old + i] = newopts[i];
602 merge[num_old + i].val += *option_offset;
603 }
604 memset(merge + num_old + num_new, 0, sizeof(struct option));
605
606 return merge;
607}
608
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +0000609static void
610print_num(u_int64_t number, unsigned int format)
611{
Harald Welte43ac1912002-03-03 09:43:07 +0000612 if (format & FMT_KILOMEGAGIGA) {
613 if (number > 99999) {
614 number = (number + 500) / 1000;
615 if (number > 9999) {
616 number = (number + 500) / 1000;
617 if (number > 9999) {
618 number = (number + 500) / 1000;
619 if (number > 9999) {
620 number = (number + 500) / 1000;
Martin Josefssona28d4952004-05-26 16:04:48 +0000621 printf(FMT("%4lluT ","%lluT "), (unsigned long long)number);
Harald Welte43ac1912002-03-03 09:43:07 +0000622 }
Martin Josefssona28d4952004-05-26 16:04:48 +0000623 else printf(FMT("%4lluG ","%lluG "), (unsigned long long)number);
Harald Welte43ac1912002-03-03 09:43:07 +0000624 }
Martin Josefssona28d4952004-05-26 16:04:48 +0000625 else printf(FMT("%4lluM ","%lluM "), (unsigned long long)number);
Harald Welte43ac1912002-03-03 09:43:07 +0000626 } else
Martin Josefssona28d4952004-05-26 16:04:48 +0000627 printf(FMT("%4lluK ","%lluK "), (unsigned long long)number);
Harald Welte43ac1912002-03-03 09:43:07 +0000628 } else
Martin Josefssona28d4952004-05-26 16:04:48 +0000629 printf(FMT("%5llu ","%llu "), (unsigned long long)number);
Harald Welte43ac1912002-03-03 09:43:07 +0000630 } else
Martin Josefssona28d4952004-05-26 16:04:48 +0000631 printf(FMT("%8llu ","%llu "), (unsigned long long)number);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000632}
633
Harald Welte43ac1912002-03-03 09:43:07 +0000634
Rusty Russell5eed48a2000-06-02 20:12:24 +0000635static void
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100636print_header(unsigned int format, const char *chain, struct ip6tc_handle *handle)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000637{
638 struct ip6t_counters counters;
639 const char *pol = ip6tc_get_policy(chain, &counters, handle);
640 printf("Chain %s", chain);
641 if (pol) {
642 printf(" (policy %s", pol);
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +0000643 if (!(format & FMT_NOCOUNTS)) {
Harald Welte43ac1912002-03-03 09:43:07 +0000644 fputc(' ', stdout);
645 print_num(counters.pcnt, (format|FMT_NOTABLE));
646 fputs("packets, ", stdout);
647 print_num(counters.bcnt, (format|FMT_NOTABLE));
648 fputs("bytes", stdout);
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +0000649 }
Rusty Russell5eed48a2000-06-02 20:12:24 +0000650 printf(")\n");
651 } else {
652 unsigned int refs;
653 if (!ip6tc_get_references(&refs, chain, handle))
654 printf(" (ERROR obtaining refs)\n");
655 else
656 printf(" (%u references)\n", refs);
657 }
658
659 if (format & FMT_LINENUMBERS)
660 printf(FMT("%-4s ", "%s "), "num");
661 if (!(format & FMT_NOCOUNTS)) {
662 if (format & FMT_KILOMEGAGIGA) {
663 printf(FMT("%5s ","%s "), "pkts");
664 printf(FMT("%5s ","%s "), "bytes");
665 } else {
666 printf(FMT("%8s ","%s "), "pkts");
667 printf(FMT("%10s ","%s "), "bytes");
668 }
669 }
670 if (!(format & FMT_NOTARGET))
671 printf(FMT("%-9s ","%s "), "target");
672 fputs(" prot ", stdout);
673 if (format & FMT_OPTIONS)
674 fputs("opt", stdout);
675 if (format & FMT_VIA) {
676 printf(FMT(" %-6s ","%s "), "in");
677 printf(FMT("%-6s ","%s "), "out");
678 }
679 printf(FMT(" %-19s ","%s "), "source");
680 printf(FMT(" %-19s "," %s "), "destination");
681 printf("\n");
682}
683
Harald Welte43ac1912002-03-03 09:43:07 +0000684
Rusty Russell5eed48a2000-06-02 20:12:24 +0000685static int
686print_match(const struct ip6t_entry_match *m,
687 const struct ip6t_ip6 *ip,
688 int numeric)
689{
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100690 struct xtables_match *match =
691 xtables_find_match(m->u.user.name, XTF_TRY_LOAD, NULL);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000692
693 if (match) {
694 if (match->print)
695 match->print(ip, m, numeric);
Harald Welte43ac1912002-03-03 09:43:07 +0000696 else
697 printf("%s ", match->name);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000698 } else {
699 if (m->u.user.name[0])
700 printf("UNKNOWN match `%s' ", m->u.user.name);
701 }
702 /* Don't stop iterating. */
703 return 0;
704}
705
Jan Engelhardt6cf172e2008-03-10 17:48:59 +0100706/* e is called `fw' here for historical reasons */
Rusty Russell5eed48a2000-06-02 20:12:24 +0000707static void
708print_firewall(const struct ip6t_entry *fw,
709 const char *targname,
710 unsigned int num,
711 unsigned int format,
Jan Engelhardtfd187312008-11-10 16:59:27 +0100712 struct ip6tc_handle *const handle)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000713{
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200714 struct xtables_target *target = NULL;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000715 const struct ip6t_entry_target *t;
716 u_int8_t flags;
717 char buf[BUFSIZ];
718
Rusty Russell5eed48a2000-06-02 20:12:24 +0000719 if (!ip6tc_is_chain(targname, handle))
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100720 target = xtables_find_target(targname, XTF_TRY_LOAD);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000721 else
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100722 target = xtables_find_target(IP6T_STANDARD_TARGET,
723 XTF_LOAD_MUST_SUCCEED);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000724
725 t = ip6t_get_target((struct ip6t_entry *)fw);
726 flags = fw->ipv6.flags;
727
728 if (format & FMT_LINENUMBERS)
Henrik Nordstrom15641892008-06-13 17:57:35 +0200729 printf(FMT("%-4u ", "%u "), num);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000730
731 if (!(format & FMT_NOCOUNTS)) {
732 print_num(fw->counters.pcnt, format);
733 print_num(fw->counters.bcnt, format);
734 }
735
736 if (!(format & FMT_NOTARGET))
737 printf(FMT("%-9s ", "%s "), targname);
738
739 fputc(fw->ipv6.invflags & IP6T_INV_PROTO ? '!' : ' ', stdout);
740 {
Harald Welte43ac1912002-03-03 09:43:07 +0000741 char *pname = proto_to_name(fw->ipv6.proto, format&FMT_NUMERIC);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000742 if (pname)
743 printf(FMT("%-5s", "%s "), pname);
744 else
745 printf(FMT("%-5hu", "%hu "), fw->ipv6.proto);
746 }
747
748 if (format & FMT_OPTIONS) {
749 if (format & FMT_NOTABLE)
750 fputs("opt ", stdout);
Harald Welte43ac1912002-03-03 09:43:07 +0000751 fputc(' ', stdout); /* Invert flag of FRAG */
752 fputc(' ', stdout); /* -f */
Rusty Russell5eed48a2000-06-02 20:12:24 +0000753 fputc(' ', stdout);
754 }
755
756 if (format & FMT_VIA) {
757 char iface[IFNAMSIZ+2];
758
759 if (fw->ipv6.invflags & IP6T_INV_VIA_IN) {
760 iface[0] = '!';
761 iface[1] = '\0';
762 }
763 else iface[0] = '\0';
764
765 if (fw->ipv6.iniface[0] != '\0') {
766 strcat(iface, fw->ipv6.iniface);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000767 }
768 else if (format & FMT_NUMERIC) strcat(iface, "*");
769 else strcat(iface, "any");
770 printf(FMT(" %-6s ","in %s "), iface);
771
772 if (fw->ipv6.invflags & IP6T_INV_VIA_OUT) {
773 iface[0] = '!';
774 iface[1] = '\0';
775 }
776 else iface[0] = '\0';
777
778 if (fw->ipv6.outiface[0] != '\0') {
779 strcat(iface, fw->ipv6.outiface);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000780 }
781 else if (format & FMT_NUMERIC) strcat(iface, "*");
782 else strcat(iface, "any");
783 printf(FMT("%-6s ","out %s "), iface);
784 }
785
786 fputc(fw->ipv6.invflags & IP6T_INV_SRCIP ? '!' : ' ', stdout);
Max Kellermann5b76f682008-01-29 13:42:48 +0000787 if (!memcmp(&fw->ipv6.smsk, &in6addr_any, sizeof in6addr_any)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000788 && !(format & FMT_NUMERIC))
789 printf(FMT("%-19s ","%s "), "anywhere");
790 else {
791 if (format & FMT_NUMERIC)
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100792 strcpy(buf, xtables_ip6addr_to_numeric(&fw->ipv6.src));
Rusty Russell5eed48a2000-06-02 20:12:24 +0000793 else
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100794 strcpy(buf, xtables_ip6addr_to_anyname(&fw->ipv6.src));
795 strcat(buf, xtables_ip6mask_to_numeric(&fw->ipv6.smsk));
Rusty Russell5eed48a2000-06-02 20:12:24 +0000796 printf(FMT("%-19s ","%s "), buf);
797 }
798
799 fputc(fw->ipv6.invflags & IP6T_INV_DSTIP ? '!' : ' ', stdout);
800 if (!memcmp(&fw->ipv6.dmsk, &in6addr_any, sizeof in6addr_any)
801 && !(format & FMT_NUMERIC))
Jamie Strandboge69ceee52008-05-16 14:52:12 +0200802 printf(FMT("%-19s ","-> %s"), "anywhere");
Rusty Russell5eed48a2000-06-02 20:12:24 +0000803 else {
804 if (format & FMT_NUMERIC)
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100805 strcpy(buf, xtables_ip6addr_to_numeric(&fw->ipv6.dst));
Rusty Russell5eed48a2000-06-02 20:12:24 +0000806 else
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100807 strcpy(buf, xtables_ip6addr_to_anyname(&fw->ipv6.dst));
808 strcat(buf, xtables_ip6mask_to_numeric(&fw->ipv6.dmsk));
Jamie Strandboge69ceee52008-05-16 14:52:12 +0200809 printf(FMT("%-19s ","-> %s"), buf);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000810 }
811
812 if (format & FMT_NOTABLE)
813 fputs(" ", stdout);
814
Thomas Jacobeaf831e2008-06-23 11:35:29 +0200815#ifdef IP6T_F_GOTO
816 if(fw->ipv6.flags & IP6T_F_GOTO)
817 printf("[goto] ");
818#endif
819
Rusty Russell5eed48a2000-06-02 20:12:24 +0000820 IP6T_MATCH_ITERATE(fw, print_match, &fw->ipv6, format & FMT_NUMERIC);
821
822 if (target) {
823 if (target->print)
824 /* Print the target information. */
825 target->print(&fw->ipv6, t, format & FMT_NUMERIC);
826 } else if (t->u.target_size != sizeof(*t))
827 printf("[%u bytes of unknown target data] ",
Martin Josefssona28d4952004-05-26 16:04:48 +0000828 (unsigned int)(t->u.target_size - sizeof(*t)));
Rusty Russell5eed48a2000-06-02 20:12:24 +0000829
830 if (!(format & FMT_NONEWLINE))
831 fputc('\n', stdout);
832}
833
834static void
835print_firewall_line(const struct ip6t_entry *fw,
Jan Engelhardtfd187312008-11-10 16:59:27 +0100836 struct ip6tc_handle *const h)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000837{
838 struct ip6t_entry_target *t;
839
840 t = ip6t_get_target((struct ip6t_entry *)fw);
841 print_firewall(fw, t->u.user.name, 0, FMT_PRINT_RULE, h);
842}
843
844static int
845append_entry(const ip6t_chainlabel chain,
846 struct ip6t_entry *fw,
847 unsigned int nsaddrs,
848 const struct in6_addr saddrs[],
849 unsigned int ndaddrs,
850 const struct in6_addr daddrs[],
851 int verbose,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100852 struct ip6tc_handle *handle)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000853{
854 unsigned int i, j;
855 int ret = 1;
856
857 for (i = 0; i < nsaddrs; i++) {
858 fw->ipv6.src = saddrs[i];
859 for (j = 0; j < ndaddrs; j++) {
860 fw->ipv6.dst = daddrs[j];
861 if (verbose)
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100862 print_firewall_line(fw, handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000863 ret &= ip6tc_append_entry(chain, fw, handle);
864 }
865 }
866
867 return ret;
868}
869
870static int
871replace_entry(const ip6t_chainlabel chain,
872 struct ip6t_entry *fw,
873 unsigned int rulenum,
874 const struct in6_addr *saddr,
875 const struct in6_addr *daddr,
876 int verbose,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100877 struct ip6tc_handle *handle)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000878{
879 fw->ipv6.src = *saddr;
880 fw->ipv6.dst = *daddr;
881
882 if (verbose)
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100883 print_firewall_line(fw, handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000884 return ip6tc_replace_entry(chain, fw, rulenum, handle);
885}
886
887static int
888insert_entry(const ip6t_chainlabel chain,
889 struct ip6t_entry *fw,
890 unsigned int rulenum,
891 unsigned int nsaddrs,
892 const struct in6_addr saddrs[],
893 unsigned int ndaddrs,
894 const struct in6_addr daddrs[],
895 int verbose,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100896 struct ip6tc_handle *handle)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000897{
898 unsigned int i, j;
899 int ret = 1;
900
901 for (i = 0; i < nsaddrs; i++) {
902 fw->ipv6.src = saddrs[i];
903 for (j = 0; j < ndaddrs; j++) {
904 fw->ipv6.dst = daddrs[j];
905 if (verbose)
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100906 print_firewall_line(fw, handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000907 ret &= ip6tc_insert_entry(chain, fw, rulenum, handle);
908 }
909 }
910
911 return ret;
912}
913
914static unsigned char *
Martin Josefsson69ac0e02004-02-02 20:02:10 +0000915make_delete_mask(struct ip6t_entry *fw, struct ip6tables_rule_match *matches)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000916{
917 /* Establish mask for comparison */
918 unsigned int size;
Martin Josefsson69ac0e02004-02-02 20:02:10 +0000919 struct ip6tables_rule_match *matchp;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000920 unsigned char *mask, *mptr;
921
922 size = sizeof(struct ip6t_entry);
Martin Josefsson69ac0e02004-02-02 20:02:10 +0000923 for (matchp = matches; matchp; matchp = matchp->next)
924 size += IP6T_ALIGN(sizeof(struct ip6t_entry_match)) + matchp->match->size;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000925
Jan Engelhardt630ef482009-01-27 14:58:41 +0100926 mask = xtables_calloc(1, size
Harald Welte43ac1912002-03-03 09:43:07 +0000927 + IP6T_ALIGN(sizeof(struct ip6t_entry_target))
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000928 + xtables_targets->size);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000929
930 memset(mask, 0xFF, sizeof(struct ip6t_entry));
931 mptr = mask + sizeof(struct ip6t_entry);
932
Martin Josefsson69ac0e02004-02-02 20:02:10 +0000933 for (matchp = matches; matchp; matchp = matchp->next) {
Rusty Russell5eed48a2000-06-02 20:12:24 +0000934 memset(mptr, 0xFF,
Harald Welte43ac1912002-03-03 09:43:07 +0000935 IP6T_ALIGN(sizeof(struct ip6t_entry_match))
Martin Josefsson69ac0e02004-02-02 20:02:10 +0000936 + matchp->match->userspacesize);
937 mptr += IP6T_ALIGN(sizeof(struct ip6t_entry_match)) + matchp->match->size;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000938 }
939
Max Kellermann5b76f682008-01-29 13:42:48 +0000940 memset(mptr, 0xFF,
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +0000941 IP6T_ALIGN(sizeof(struct ip6t_entry_target))
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000942 + xtables_targets->userspacesize);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000943
944 return mask;
945}
946
947static int
948delete_entry(const ip6t_chainlabel chain,
949 struct ip6t_entry *fw,
950 unsigned int nsaddrs,
951 const struct in6_addr saddrs[],
952 unsigned int ndaddrs,
953 const struct in6_addr daddrs[],
954 int verbose,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100955 struct ip6tc_handle *handle,
Martin Josefsson69ac0e02004-02-02 20:02:10 +0000956 struct ip6tables_rule_match *matches)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000957{
958 unsigned int i, j;
959 int ret = 1;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000960 unsigned char *mask;
961
Martin Josefsson69ac0e02004-02-02 20:02:10 +0000962 mask = make_delete_mask(fw, matches);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000963 for (i = 0; i < nsaddrs; i++) {
Philip Blundell57e07af2000-06-04 17:25:33 +0000964 fw->ipv6.src = saddrs[i];
Rusty Russell5eed48a2000-06-02 20:12:24 +0000965 for (j = 0; j < ndaddrs; j++) {
Philip Blundell57e07af2000-06-04 17:25:33 +0000966 fw->ipv6.dst = daddrs[j];
Rusty Russell5eed48a2000-06-02 20:12:24 +0000967 if (verbose)
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100968 print_firewall_line(fw, handle);
Philip Blundell57e07af2000-06-04 17:25:33 +0000969 ret &= ip6tc_delete_entry(chain, fw, mask, handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000970 }
971 }
Martin Josefsson4dd5fed2004-05-18 18:09:43 +0000972 free(mask);
973
Rusty Russell5eed48a2000-06-02 20:12:24 +0000974 return ret;
975}
976
András Kis-Szabó764316a2001-02-26 17:31:20 +0000977int
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100978for_each_chain(int (*fn)(const ip6t_chainlabel, int, struct ip6tc_handle *),
979 int verbose, int builtinstoo, struct ip6tc_handle *handle)
Rusty Russell5eed48a2000-06-02 20:12:24 +0000980{
Max Kellermann5b76f682008-01-29 13:42:48 +0000981 int ret = 1;
Rusty Russell5eed48a2000-06-02 20:12:24 +0000982 const char *chain;
983 char *chains;
984 unsigned int i, chaincount = 0;
985
986 chain = ip6tc_first_chain(handle);
987 while (chain) {
988 chaincount++;
989 chain = ip6tc_next_chain(handle);
Max Kellermann5b76f682008-01-29 13:42:48 +0000990 }
Rusty Russell5eed48a2000-06-02 20:12:24 +0000991
Jan Engelhardt630ef482009-01-27 14:58:41 +0100992 chains = xtables_malloc(sizeof(ip6t_chainlabel) * chaincount);
Rusty Russell5eed48a2000-06-02 20:12:24 +0000993 i = 0;
994 chain = ip6tc_first_chain(handle);
995 while (chain) {
996 strcpy(chains + i*sizeof(ip6t_chainlabel), chain);
997 i++;
998 chain = ip6tc_next_chain(handle);
Max Kellermann5b76f682008-01-29 13:42:48 +0000999 }
Rusty Russell5eed48a2000-06-02 20:12:24 +00001000
1001 for (i = 0; i < chaincount; i++) {
1002 if (!builtinstoo
1003 && ip6tc_builtin(chains + i*sizeof(ip6t_chainlabel),
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01001004 handle) == 1)
Rusty Russell5eed48a2000-06-02 20:12:24 +00001005 continue;
Max Kellermann5b76f682008-01-29 13:42:48 +00001006 ret &= fn(chains + i*sizeof(ip6t_chainlabel), verbose, handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001007 }
1008
1009 free(chains);
Max Kellermann5b76f682008-01-29 13:42:48 +00001010 return ret;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001011}
1012
András Kis-Szabó764316a2001-02-26 17:31:20 +00001013int
Rusty Russell5eed48a2000-06-02 20:12:24 +00001014flush_entries(const ip6t_chainlabel chain, int verbose,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01001015 struct ip6tc_handle *handle)
Rusty Russell5eed48a2000-06-02 20:12:24 +00001016{
1017 if (!chain)
1018 return for_each_chain(flush_entries, verbose, 1, handle);
1019
1020 if (verbose)
1021 fprintf(stdout, "Flushing chain `%s'\n", chain);
1022 return ip6tc_flush_entries(chain, handle);
1023}
1024
1025static int
1026zero_entries(const ip6t_chainlabel chain, int verbose,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01001027 struct ip6tc_handle *handle)
Rusty Russell5eed48a2000-06-02 20:12:24 +00001028{
1029 if (!chain)
1030 return for_each_chain(zero_entries, verbose, 1, handle);
1031
1032 if (verbose)
1033 fprintf(stdout, "Zeroing chain `%s'\n", chain);
1034 return ip6tc_zero_entries(chain, handle);
1035}
1036
András Kis-Szabó764316a2001-02-26 17:31:20 +00001037int
Rusty Russell5eed48a2000-06-02 20:12:24 +00001038delete_chain(const ip6t_chainlabel chain, int verbose,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01001039 struct ip6tc_handle *handle)
Rusty Russell5eed48a2000-06-02 20:12:24 +00001040{
1041 if (!chain)
1042 return for_each_chain(delete_chain, verbose, 0, handle);
1043
1044 if (verbose)
Max Kellermann5b76f682008-01-29 13:42:48 +00001045 fprintf(stdout, "Deleting chain `%s'\n", chain);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001046 return ip6tc_delete_chain(chain, handle);
1047}
1048
1049static int
Henrik Nordstrombb340822008-05-13 13:09:23 +02001050list_entries(const ip6t_chainlabel chain, int rulenum, int verbose, int numeric,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01001051 int expanded, int linenumbers, struct ip6tc_handle *handle)
Rusty Russell5eed48a2000-06-02 20:12:24 +00001052{
1053 int found = 0;
1054 unsigned int format;
1055 const char *this;
1056
1057 format = FMT_OPTIONS;
1058 if (!verbose)
1059 format |= FMT_NOCOUNTS;
1060 else
1061 format |= FMT_VIA;
1062
1063 if (numeric)
1064 format |= FMT_NUMERIC;
1065
1066 if (!expanded)
1067 format |= FMT_KILOMEGAGIGA;
1068
1069 if (linenumbers)
1070 format |= FMT_LINENUMBERS;
1071
1072 for (this = ip6tc_first_chain(handle);
1073 this;
1074 this = ip6tc_next_chain(handle)) {
1075 const struct ip6t_entry *i;
1076 unsigned int num;
1077
1078 if (chain && strcmp(chain, this) != 0)
1079 continue;
1080
1081 if (found) printf("\n");
1082
Henrik Nordstrombb340822008-05-13 13:09:23 +02001083 if (!rulenum)
1084 print_header(format, this, handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001085 i = ip6tc_first_rule(this, handle);
1086
1087 num = 0;
1088 while (i) {
Henrik Nordstrombb340822008-05-13 13:09:23 +02001089 num++;
1090 if (!rulenum || num == rulenum)
1091 print_firewall(i,
1092 ip6tc_get_target(i, handle),
1093 num,
1094 format,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01001095 handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001096 i = ip6tc_next_rule(i, handle);
1097 }
1098 found = 1;
1099 }
1100
1101 errno = ENOENT;
1102 return found;
1103}
1104
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001105/* This assumes that mask is contiguous, and byte-bounded. */
1106static void
1107print_iface(char letter, const char *iface, const unsigned char *mask,
1108 int invert)
1109{
1110 unsigned int i;
1111
1112 if (mask[0] == 0)
1113 return;
1114
1115 printf("-%c %s", letter, invert ? "! " : "");
1116
1117 for (i = 0; i < IFNAMSIZ; i++) {
1118 if (mask[i] != 0) {
1119 if (iface[i] != '\0')
1120 printf("%c", iface[i]);
1121 } else {
1122 /* we can access iface[i-1] here, because
1123 * a few lines above we make sure that mask[0] != 0 */
1124 if (iface[i-1] != '\0')
1125 printf("+");
1126 break;
1127 }
1128 }
1129
1130 printf(" ");
1131}
1132
1133/* The ip6tables looks up the /etc/protocols. */
1134static void print_proto(u_int16_t proto, int invert)
1135{
1136 if (proto) {
1137 unsigned int i;
1138 const char *invertstr = invert ? "! " : "";
1139
1140 struct protoent *pent = getprotobynumber(proto);
1141 if (pent) {
1142 printf("-p %s%s ",
1143 invertstr, pent->p_name);
1144 return;
1145 }
1146
1147 for (i = 0; i < sizeof(chain_protos)/sizeof(struct pprot); i++)
1148 if (chain_protos[i].num == proto) {
1149 printf("-p %s%s ",
1150 invertstr, chain_protos[i].name);
1151 return;
1152 }
1153
1154 printf("-p %s%u ", invertstr, proto);
1155 }
1156}
1157
1158static int print_match_save(const struct ip6t_entry_match *e,
1159 const struct ip6t_ip6 *ip)
1160{
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001161 struct xtables_match *match =
1162 xtables_find_match(e->u.user.name, XTF_TRY_LOAD, NULL);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001163
1164 if (match) {
1165 printf("-m %s ", e->u.user.name);
1166
1167 /* some matches don't provide a save function */
1168 if (match->save)
1169 match->save(ip, e);
1170 } else {
1171 if (e->u.match_size) {
1172 fprintf(stderr,
1173 "Can't find library for match `%s'\n",
1174 e->u.user.name);
1175 exit(1);
1176 }
1177 }
1178 return 0;
1179}
1180
1181/* print a given ip including mask if neccessary */
1182static void print_ip(char *prefix, const struct in6_addr *ip, const struct in6_addr *mask, int invert)
1183{
1184 char buf[51];
1185 int l = ipv6_prefix_length(mask);
1186
1187 if (l == 0 && !invert)
1188 return;
1189
1190 printf("%s %s%s",
1191 prefix,
1192 invert ? "! " : "",
1193 inet_ntop(AF_INET6, ip, buf, sizeof buf));
1194
1195 if (l == -1)
1196 printf("/%s ", inet_ntop(AF_INET6, mask, buf, sizeof buf));
1197 else
1198 printf("/%d ", l);
1199}
1200
1201/* We want this to be readable, so only print out neccessary fields.
1202 * Because that's the kind of world I want to live in. */
1203void print_rule(const struct ip6t_entry *e,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01001204 struct ip6tc_handle *h, const char *chain, int counters)
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001205{
1206 struct ip6t_entry_target *t;
1207 const char *target_name;
1208
1209 /* print counters for iptables-save */
1210 if (counters > 0)
1211 printf("[%llu:%llu] ", (unsigned long long)e->counters.pcnt, (unsigned long long)e->counters.bcnt);
1212
1213 /* print chain name */
1214 printf("-A %s ", chain);
1215
1216 /* Print IP part. */
1217 print_ip("-s", &(e->ipv6.src), &(e->ipv6.smsk),
1218 e->ipv6.invflags & IP6T_INV_SRCIP);
1219
1220 print_ip("-d", &(e->ipv6.dst), &(e->ipv6.dmsk),
1221 e->ipv6.invflags & IP6T_INV_DSTIP);
1222
1223 print_iface('i', e->ipv6.iniface, e->ipv6.iniface_mask,
1224 e->ipv6.invflags & IP6T_INV_VIA_IN);
1225
1226 print_iface('o', e->ipv6.outiface, e->ipv6.outiface_mask,
1227 e->ipv6.invflags & IP6T_INV_VIA_OUT);
1228
1229 print_proto(e->ipv6.proto, e->ipv6.invflags & IP6T_INV_PROTO);
1230
1231#if 0
1232 /* not definied in ipv6
1233 * FIXME: linux/netfilter_ipv6/ip6_tables: IP6T_INV_FRAG why definied? */
1234 if (e->ipv6.flags & IPT_F_FRAG)
1235 printf("%s-f ",
1236 e->ipv6.invflags & IP6T_INV_FRAG ? "! " : "");
1237#endif
1238
1239 if (e->ipv6.flags & IP6T_F_TOS)
1240 printf("%s-? %d ",
1241 e->ipv6.invflags & IP6T_INV_TOS ? "! " : "",
1242 e->ipv6.tos);
1243
1244 /* Print matchinfo part */
1245 if (e->target_offset) {
1246 IP6T_MATCH_ITERATE(e, print_match_save, &e->ipv6);
1247 }
1248
1249 /* print counters for iptables -R */
1250 if (counters < 0)
1251 printf("-c %llu %llu ", (unsigned long long)e->counters.pcnt, (unsigned long long)e->counters.bcnt);
1252
1253 /* Print target name */
1254 target_name = ip6tc_get_target(e, h);
1255 if (target_name && (*target_name != '\0'))
Thomas Jacobeaf831e2008-06-23 11:35:29 +02001256#ifdef IP6T_F_GOTO
1257 printf("-%c %s ", e->ipv6.flags & IP6T_F_GOTO ? 'g' : 'j', target_name);
1258#else
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001259 printf("-j %s ", target_name);
Thomas Jacobeaf831e2008-06-23 11:35:29 +02001260#endif
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001261
1262 /* Print targinfo part */
1263 t = ip6t_get_target((struct ip6t_entry *)e);
1264 if (t->u.user.name[0]) {
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001265 struct xtables_target *target =
1266 xtables_find_target(t->u.user.name, XTF_TRY_LOAD);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001267
1268 if (!target) {
1269 fprintf(stderr, "Can't find library for target `%s'\n",
1270 t->u.user.name);
1271 exit(1);
1272 }
1273
1274 if (target->save)
1275 target->save(&e->ipv6, t);
1276 else {
1277 /* If the target size is greater than ip6t_entry_target
1278 * there is something to be saved, we just don't know
1279 * how to print it */
1280 if (t->u.target_size !=
1281 sizeof(struct ip6t_entry_target)) {
1282 fprintf(stderr, "Target `%s' is missing "
1283 "save function\n",
1284 t->u.user.name);
1285 exit(1);
1286 }
1287 }
1288 }
1289 printf("\n");
1290}
1291
1292static int
Henrik Nordstrombb340822008-05-13 13:09:23 +02001293list_rules(const ip6t_chainlabel chain, int rulenum, int counters,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01001294 struct ip6tc_handle *handle)
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001295{
1296 const char *this = NULL;
1297 int found = 0;
1298
1299 if (counters)
1300 counters = -1; /* iptables -c format */
1301
1302 /* Dump out chain names first,
1303 * thereby preventing dependency conflicts */
Henrik Nordstrombb340822008-05-13 13:09:23 +02001304 if (!rulenum) for (this = ip6tc_first_chain(handle);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001305 this;
1306 this = ip6tc_next_chain(handle)) {
1307 if (chain && strcmp(this, chain) != 0)
1308 continue;
1309
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01001310 if (ip6tc_builtin(this, handle)) {
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001311 struct ip6t_counters count;
1312 printf("-P %s %s", this, ip6tc_get_policy(this, &count, handle));
1313 if (counters)
1314 printf(" -c %llu %llu", (unsigned long long)count.pcnt, (unsigned long long)count.bcnt);
1315 printf("\n");
1316 } else {
1317 printf("-N %s\n", this);
1318 }
1319 }
1320
1321 for (this = ip6tc_first_chain(handle);
1322 this;
1323 this = ip6tc_next_chain(handle)) {
1324 const struct ip6t_entry *e;
Henrik Nordstrombb340822008-05-13 13:09:23 +02001325 int num = 0;
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001326
1327 if (chain && strcmp(this, chain) != 0)
1328 continue;
1329
1330 /* Dump out rules */
1331 e = ip6tc_first_rule(this, handle);
1332 while(e) {
Henrik Nordstrombb340822008-05-13 13:09:23 +02001333 num++;
1334 if (!rulenum || num == rulenum)
1335 print_rule(e, handle, this, counters);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001336 e = ip6tc_next_rule(e, handle);
1337 }
1338 found = 1;
1339 }
1340
1341 errno = ENOENT;
1342 return found;
1343}
1344
Rusty Russell5eed48a2000-06-02 20:12:24 +00001345static struct ip6t_entry *
1346generate_entry(const struct ip6t_entry *fw,
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001347 struct ip6tables_rule_match *matches,
Rusty Russell5eed48a2000-06-02 20:12:24 +00001348 struct ip6t_entry_target *target)
1349{
1350 unsigned int size;
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001351 struct ip6tables_rule_match *matchp;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001352 struct ip6t_entry *e;
1353
1354 size = sizeof(struct ip6t_entry);
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001355 for (matchp = matches; matchp; matchp = matchp->next)
1356 size += matchp->match->m->u.match_size;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001357
Jan Engelhardt630ef482009-01-27 14:58:41 +01001358 e = xtables_malloc(size + target->u.target_size);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001359 *e = *fw;
1360 e->target_offset = size;
1361 e->next_offset = size + target->u.target_size;
1362
1363 size = 0;
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001364 for (matchp = matches; matchp; matchp = matchp->next) {
1365 memcpy(e->elems + size, matchp->match->m, matchp->match->m->u.match_size);
1366 size += matchp->match->m->u.match_size;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001367 }
1368 memcpy(e->elems + size, target, target->u.target_size);
1369
1370 return e;
1371}
1372
Jan Engelhardt33690a12008-02-11 00:54:00 +01001373static void clear_rule_matches(struct ip6tables_rule_match **matches)
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001374{
1375 struct ip6tables_rule_match *matchp, *tmp;
1376
1377 for (matchp = *matches; matchp;) {
1378 tmp = matchp->next;
Harald Welted6bc6082006-02-11 09:34:16 +00001379 if (matchp->match->m) {
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00001380 free(matchp->match->m);
Harald Welted6bc6082006-02-11 09:34:16 +00001381 matchp->match->m = NULL;
1382 }
Joszef Kadlecsika258ad72006-03-03 09:36:50 +00001383 if (matchp->match == matchp->match->next) {
1384 free(matchp->match);
1385 matchp->match = NULL;
1386 }
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001387 free(matchp);
1388 matchp = tmp;
1389 }
1390
1391 *matches = NULL;
1392}
1393
Rémi Denis-Courmont06652172006-10-20 12:24:34 +00001394static void set_revision(char *name, u_int8_t revision)
1395{
1396 /* Old kernel sources don't have ".revision" field,
1397 but we stole a byte from name. */
1398 name[IP6T_FUNCTION_MAXNAMELEN - 2] = '\0';
1399 name[IP6T_FUNCTION_MAXNAMELEN - 1] = revision;
1400}
1401
Jan Engelhardtfd187312008-11-10 16:59:27 +01001402int do_command6(int argc, char *argv[], char **table, struct ip6tc_handle **handle)
Rusty Russell5eed48a2000-06-02 20:12:24 +00001403{
1404 struct ip6t_entry fw, *e = NULL;
1405 int invert = 0;
1406 unsigned int nsaddrs = 0, ndaddrs = 0;
1407 struct in6_addr *saddrs = NULL, *daddrs = NULL;
1408
1409 int c, verbose = 0;
Max Kellermann9ee386a2008-01-29 13:48:05 +00001410 unsigned i;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001411 const char *chain = NULL;
1412 const char *shostnetworkmask = NULL, *dhostnetworkmask = NULL;
1413 const char *policy = NULL, *newname = NULL;
1414 unsigned int rulenum = 0, options = 0, command = 0;
Harald Welte43ac1912002-03-03 09:43:07 +00001415 const char *pcnt = NULL, *bcnt = NULL;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001416 int ret = 1;
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +02001417 struct xtables_match *m;
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001418 struct ip6tables_rule_match *matches = NULL;
1419 struct ip6tables_rule_match *matchp;
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +02001420 struct xtables_target *target = NULL;
1421 struct xtables_target *t;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001422 const char *jumpto = "";
1423 char *protocol = NULL;
Harald Welte00f5a9c2002-08-26 14:37:35 +00001424 int proto_used = 0;
Patrick McHardy875441e2007-10-17 08:48:58 +00001425 unsigned long long cnt;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001426
1427 memset(&fw, 0, sizeof(fw));
1428
Harald Welte43ac1912002-03-03 09:43:07 +00001429 /* re-set optind to 0 in case do_command gets called
András Kis-Szabó3aa62872001-05-03 01:01:41 +00001430 * a second time */
1431 optind = 0;
1432
Harald Welte43ac1912002-03-03 09:43:07 +00001433 /* clear mflags in case do_command gets called a second time
1434 * (we clear the global list of all matches for security)*/
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +00001435 for (m = xtables_matches; m; m = m->next)
Harald Welte43ac1912002-03-03 09:43:07 +00001436 m->mflags = 0;
András Kis-Szabó3aa62872001-05-03 01:01:41 +00001437
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +00001438 for (t = xtables_targets; t; t = t->next) {
Harald Welte43ac1912002-03-03 09:43:07 +00001439 t->tflags = 0;
1440 t->used = 0;
1441 }
András Kis-Szabó3aa62872001-05-03 01:01:41 +00001442
Rusty Russell5eed48a2000-06-02 20:12:24 +00001443 /* Suppress error messages: we may add new options if we
1444 demand-load a protocol. */
1445 opterr = 0;
1446
1447 while ((c = getopt_long(argc, argv,
Thomas Jacobeaf831e2008-06-23 11:35:29 +02001448 "-A:D:R:I:L::S::M:F::Z::N:X::E:P:Vh::o:p:s:d:j:i:bvnt:m:xc:g:",
Rusty Russell5eed48a2000-06-02 20:12:24 +00001449 opts, NULL)) != -1) {
1450 switch (c) {
1451 /*
1452 * Command selection
1453 */
1454 case 'A':
1455 add_command(&command, CMD_APPEND, CMD_NONE,
1456 invert);
1457 chain = optarg;
1458 break;
1459
1460 case 'D':
1461 add_command(&command, CMD_DELETE, CMD_NONE,
1462 invert);
1463 chain = optarg;
1464 if (optind < argc && argv[optind][0] != '-'
1465 && argv[optind][0] != '!') {
1466 rulenum = parse_rulenumber(argv[optind++]);
1467 command = CMD_DELETE_NUM;
1468 }
1469 break;
1470
Rusty Russell5eed48a2000-06-02 20:12:24 +00001471 case 'R':
1472 add_command(&command, CMD_REPLACE, CMD_NONE,
1473 invert);
1474 chain = optarg;
1475 if (optind < argc && argv[optind][0] != '-'
1476 && argv[optind][0] != '!')
1477 rulenum = parse_rulenumber(argv[optind++]);
1478 else
1479 exit_error(PARAMETER_PROBLEM,
1480 "-%c requires a rule number",
1481 cmd2char(CMD_REPLACE));
1482 break;
1483
1484 case 'I':
1485 add_command(&command, CMD_INSERT, CMD_NONE,
1486 invert);
1487 chain = optarg;
1488 if (optind < argc && argv[optind][0] != '-'
1489 && argv[optind][0] != '!')
1490 rulenum = parse_rulenumber(argv[optind++]);
1491 else rulenum = 1;
1492 break;
1493
1494 case 'L':
1495 add_command(&command, CMD_LIST, CMD_ZERO,
1496 invert);
1497 if (optarg) chain = optarg;
1498 else if (optind < argc && argv[optind][0] != '-'
1499 && argv[optind][0] != '!')
1500 chain = argv[optind++];
Henrik Nordstrombb340822008-05-13 13:09:23 +02001501 if (optind < argc && argv[optind][0] != '-'
1502 && argv[optind][0] != '!')
1503 rulenum = parse_rulenumber(argv[optind++]);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001504 break;
1505
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001506 case 'S':
1507 add_command(&command, CMD_LIST_RULES, CMD_ZERO,
1508 invert);
1509 if (optarg) chain = optarg;
1510 else if (optind < argc && argv[optind][0] != '-'
1511 && argv[optind][0] != '!')
1512 chain = argv[optind++];
Henrik Nordstrombb340822008-05-13 13:09:23 +02001513 if (optind < argc && argv[optind][0] != '-'
1514 && argv[optind][0] != '!')
1515 rulenum = parse_rulenumber(argv[optind++]);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001516 break;
1517
Rusty Russell5eed48a2000-06-02 20:12:24 +00001518 case 'F':
1519 add_command(&command, CMD_FLUSH, CMD_NONE,
1520 invert);
1521 if (optarg) chain = optarg;
1522 else if (optind < argc && argv[optind][0] != '-'
1523 && argv[optind][0] != '!')
1524 chain = argv[optind++];
1525 break;
1526
1527 case 'Z':
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001528 add_command(&command, CMD_ZERO, CMD_LIST|CMD_LIST_RULES,
Rusty Russell5eed48a2000-06-02 20:12:24 +00001529 invert);
1530 if (optarg) chain = optarg;
1531 else if (optind < argc && argv[optind][0] != '-'
1532 && argv[optind][0] != '!')
1533 chain = argv[optind++];
1534 break;
1535
1536 case 'N':
Yasuyuki KOZAKAI8d8c8ea2005-06-13 01:06:10 +00001537 if (optarg && (*optarg == '-' || *optarg == '!'))
Joszef Kadlecsik08f15272002-06-24 12:37:29 +00001538 exit_error(PARAMETER_PROBLEM,
1539 "chain name not allowed to start "
Yasuyuki KOZAKAI8d8c8ea2005-06-13 01:06:10 +00001540 "with `%c'\n", *optarg);
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001541 if (xtables_find_target(optarg, XTF_TRY_LOAD))
Joszef Kadlecsik08f15272002-06-24 12:37:29 +00001542 exit_error(PARAMETER_PROBLEM,
1543 "chain name may not clash "
1544 "with target name\n");
Rusty Russell5eed48a2000-06-02 20:12:24 +00001545 add_command(&command, CMD_NEW_CHAIN, CMD_NONE,
1546 invert);
1547 chain = optarg;
1548 break;
1549
1550 case 'X':
1551 add_command(&command, CMD_DELETE_CHAIN, CMD_NONE,
1552 invert);
1553 if (optarg) chain = optarg;
1554 else if (optind < argc && argv[optind][0] != '-'
1555 && argv[optind][0] != '!')
1556 chain = argv[optind++];
1557 break;
1558
1559 case 'E':
1560 add_command(&command, CMD_RENAME_CHAIN, CMD_NONE,
1561 invert);
1562 chain = optarg;
1563 if (optind < argc && argv[optind][0] != '-'
1564 && argv[optind][0] != '!')
1565 newname = argv[optind++];
M.P.Anand Babuc9f20d32000-06-09 09:22:38 +00001566 else
1567 exit_error(PARAMETER_PROBLEM,
Yasuyuki KOZAKAI950ddc62007-06-12 01:36:26 +00001568 "-%c requires old-chain-name and "
M.P.Anand Babuc9f20d32000-06-09 09:22:38 +00001569 "new-chain-name",
Harald Welte43ac1912002-03-03 09:43:07 +00001570 cmd2char(CMD_RENAME_CHAIN));
Rusty Russell5eed48a2000-06-02 20:12:24 +00001571 break;
1572
1573 case 'P':
1574 add_command(&command, CMD_SET_POLICY, CMD_NONE,
1575 invert);
1576 chain = optarg;
1577 if (optind < argc && argv[optind][0] != '-'
1578 && argv[optind][0] != '!')
1579 policy = argv[optind++];
1580 else
1581 exit_error(PARAMETER_PROBLEM,
1582 "-%c requires a chain and a policy",
1583 cmd2char(CMD_SET_POLICY));
1584 break;
1585
1586 case 'h':
1587 if (!optarg)
1588 optarg = argv[optind];
1589
Jonas Berlin1b91e592005-04-01 06:58:38 +00001590 /* ip6tables -p icmp -h */
Martin Josefsson66aea6f2004-05-26 15:41:54 +00001591 if (!matches && protocol)
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001592 xtables_find_match(protocol, XTF_TRY_LOAD,
1593 &matches);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001594
Martin Josefsson66aea6f2004-05-26 15:41:54 +00001595 exit_printhelp(matches);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001596
1597 /*
1598 * Option selection
1599 */
1600 case 'p':
Jan Engelhardt0f16c722009-01-30 04:55:38 +01001601 xtables_check_inverse(optarg, &invert, &optind, argc);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001602 set_option(&options, OPT_PROTOCOL, &fw.ipv6.invflags,
1603 invert);
1604
1605 /* Canonicalize into lower case */
1606 for (protocol = argv[optind-1]; *protocol; protocol++)
1607 *protocol = tolower(*protocol);
1608
1609 protocol = argv[optind-1];
1610 fw.ipv6.proto = parse_protocol(protocol);
1611 fw.ipv6.flags |= IP6T_F_PROTO;
1612
1613 if (fw.ipv6.proto == 0
1614 && (fw.ipv6.invflags & IP6T_INV_PROTO))
1615 exit_error(PARAMETER_PROBLEM,
1616 "rule would never match protocol");
Max Kellermann5b76f682008-01-29 13:42:48 +00001617
Yasuyuki KOZAKAIf69e30c2007-06-11 20:17:34 +00001618 if (is_exthdr(fw.ipv6.proto)
1619 && (fw.ipv6.invflags & IP6T_INV_PROTO) == 0)
Max Kellermannaae4f822007-10-17 16:36:49 +00001620 fprintf(stderr,
1621 "Warning: never matched protocol: %s. "
1622 "use extension match instead.\n",
1623 protocol);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001624 break;
1625
1626 case 's':
Jan Engelhardt0f16c722009-01-30 04:55:38 +01001627 xtables_check_inverse(optarg, &invert, &optind, argc);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001628 set_option(&options, OPT_SOURCE, &fw.ipv6.invflags,
1629 invert);
1630 shostnetworkmask = argv[optind-1];
Rusty Russell5eed48a2000-06-02 20:12:24 +00001631 break;
1632
1633 case 'd':
Jan Engelhardt0f16c722009-01-30 04:55:38 +01001634 xtables_check_inverse(optarg, &invert, &optind, argc);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001635 set_option(&options, OPT_DESTINATION, &fw.ipv6.invflags,
1636 invert);
1637 dhostnetworkmask = argv[optind-1];
Rusty Russell5eed48a2000-06-02 20:12:24 +00001638 break;
1639
Thomas Jacobeaf831e2008-06-23 11:35:29 +02001640#ifdef IP6T_F_GOTO
1641 case 'g':
1642 set_option(&options, OPT_JUMP, &fw.ipv6.invflags,
1643 invert);
1644 fw.ipv6.flags |= IP6T_F_GOTO;
1645 jumpto = parse_target(optarg);
1646 break;
1647#endif
1648
Rusty Russell5eed48a2000-06-02 20:12:24 +00001649 case 'j':
1650 set_option(&options, OPT_JUMP, &fw.ipv6.invflags,
1651 invert);
1652 jumpto = parse_target(optarg);
Harald Welte43ac1912002-03-03 09:43:07 +00001653 /* TRY_LOAD (may be chain name) */
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001654 target = xtables_find_target(jumpto, XTF_TRY_LOAD);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001655
1656 if (target) {
1657 size_t size;
1658
Harald Welte43ac1912002-03-03 09:43:07 +00001659 size = IP6T_ALIGN(sizeof(struct ip6t_entry_target))
1660 + target->size;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001661
Jan Engelhardt630ef482009-01-27 14:58:41 +01001662 target->t = xtables_calloc(1, size);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001663 target->t->u.target_size = size;
1664 strcpy(target->t->u.user.name, jumpto);
Patrick McHardy455559b2008-04-15 15:51:19 +02001665 set_revision(target->t->u.user.name,
1666 target->revision);
Jonas Berlin1b91e592005-04-01 06:58:38 +00001667 if (target->init != NULL)
Peter Rileyea146a92007-09-02 13:09:07 +00001668 target->init(target->t);
Patrick McHardy455559b2008-04-15 15:51:19 +02001669 opts = merge_options(opts,
1670 target->extra_opts,
1671 &target->option_offset);
1672 if (opts == NULL)
1673 exit_error(OTHER_PROBLEM,
1674 "can't alloc memory!");
Rusty Russell5eed48a2000-06-02 20:12:24 +00001675 }
1676 break;
1677
1678
1679 case 'i':
Jan Engelhardt0f16c722009-01-30 04:55:38 +01001680 xtables_check_inverse(optarg, &invert, &optind, argc);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001681 set_option(&options, OPT_VIANAMEIN, &fw.ipv6.invflags,
1682 invert);
Jan Engelhardtaae6be92009-01-30 04:24:47 +01001683 xtables_parse_interface(argv[optind-1],
Rusty Russell5eed48a2000-06-02 20:12:24 +00001684 fw.ipv6.iniface,
1685 fw.ipv6.iniface_mask);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001686 break;
1687
1688 case 'o':
Jan Engelhardt0f16c722009-01-30 04:55:38 +01001689 xtables_check_inverse(optarg, &invert, &optind, argc);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001690 set_option(&options, OPT_VIANAMEOUT, &fw.ipv6.invflags,
1691 invert);
Jan Engelhardtaae6be92009-01-30 04:24:47 +01001692 xtables_parse_interface(argv[optind-1],
Rusty Russell5eed48a2000-06-02 20:12:24 +00001693 fw.ipv6.outiface,
1694 fw.ipv6.outiface_mask);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001695 break;
1696
1697 case 'v':
1698 if (!verbose)
1699 set_option(&options, OPT_VERBOSE,
1700 &fw.ipv6.invflags, invert);
1701 verbose++;
1702 break;
1703
1704 case 'm': {
1705 size_t size;
1706
1707 if (invert)
1708 exit_error(PARAMETER_PROBLEM,
1709 "unexpected ! flag before --match");
1710
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001711 m = xtables_find_match(optarg, XTF_LOAD_MUST_SUCCEED,
1712 &matches);
Harald Welte43ac1912002-03-03 09:43:07 +00001713 size = IP6T_ALIGN(sizeof(struct ip6t_entry_match))
1714 + m->size;
Jan Engelhardt630ef482009-01-27 14:58:41 +01001715 m->m = xtables_calloc(1, size);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001716 m->m->u.match_size = size;
1717 strcpy(m->m->u.user.name, m->name);
Rémi Denis-Courmont06652172006-10-20 12:24:34 +00001718 set_revision(m->m->u.user.name, m->revision);
Jonas Berlin1b91e592005-04-01 06:58:38 +00001719 if (m->init != NULL)
Peter Rileyea146a92007-09-02 13:09:07 +00001720 m->init(m->m);
Joszef Kadlecsika258ad72006-03-03 09:36:50 +00001721 if (m != m->next)
1722 /* Merge options for non-cloned matches */
1723 opts = merge_options(opts, m->extra_opts, &m->option_offset);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001724 }
1725 break;
1726
1727 case 'n':
1728 set_option(&options, OPT_NUMERIC, &fw.ipv6.invflags,
1729 invert);
1730 break;
1731
1732 case 't':
1733 if (invert)
1734 exit_error(PARAMETER_PROBLEM,
1735 "unexpected ! flag before --table");
Jan Engelhardtd0cbf5f2008-08-04 12:51:01 +02001736 *table = optarg;
Rusty Russell5eed48a2000-06-02 20:12:24 +00001737 break;
1738
1739 case 'x':
1740 set_option(&options, OPT_EXPANDED, &fw.ipv6.invflags,
1741 invert);
1742 break;
1743
1744 case 'V':
1745 if (invert)
1746 printf("Not %s ;-)\n", program_version);
1747 else
1748 printf("%s v%s\n",
1749 program_name, program_version);
1750 exit(0);
1751
1752 case '0':
1753 set_option(&options, OPT_LINENUMBERS, &fw.ipv6.invflags,
1754 invert);
1755 break;
1756
Harald Welte43ac1912002-03-03 09:43:07 +00001757 case 'M':
Jan Engelhardtc021c3c2009-01-27 15:10:05 +01001758 xtables_modprobe_program = optarg;
Harald Welte43ac1912002-03-03 09:43:07 +00001759 break;
1760
1761 case 'c':
1762
1763 set_option(&options, OPT_COUNTERS, &fw.ipv6.invflags,
1764 invert);
1765 pcnt = optarg;
Henrik Nordstrom60a60732008-05-13 13:10:38 +02001766 bcnt = strchr(pcnt + 1, ',');
1767 if (bcnt)
1768 bcnt++;
1769 if (!bcnt && optind < argc && argv[optind][0] != '-'
Harald Welte43ac1912002-03-03 09:43:07 +00001770 && argv[optind][0] != '!')
1771 bcnt = argv[optind++];
Henrik Nordstrom60a60732008-05-13 13:10:38 +02001772 if (!bcnt)
Harald Welte43ac1912002-03-03 09:43:07 +00001773 exit_error(PARAMETER_PROBLEM,
1774 "-%c requires packet and byte counter",
1775 opt2char(OPT_COUNTERS));
1776
Henrik Nordstrom60a60732008-05-13 13:10:38 +02001777 if (sscanf(pcnt, "%llu", &cnt) != 1)
Harald Welte43ac1912002-03-03 09:43:07 +00001778 exit_error(PARAMETER_PROBLEM,
1779 "-%c packet counter not numeric",
1780 opt2char(OPT_COUNTERS));
Patrick McHardy875441e2007-10-17 08:48:58 +00001781 fw.counters.pcnt = cnt;
Harald Welte43ac1912002-03-03 09:43:07 +00001782
Henrik Nordstrom60a60732008-05-13 13:10:38 +02001783 if (sscanf(bcnt, "%llu", &cnt) != 1)
Harald Welte43ac1912002-03-03 09:43:07 +00001784 exit_error(PARAMETER_PROBLEM,
1785 "-%c byte counter not numeric",
1786 opt2char(OPT_COUNTERS));
Patrick McHardy875441e2007-10-17 08:48:58 +00001787 fw.counters.bcnt = cnt;
Harald Welte43ac1912002-03-03 09:43:07 +00001788 break;
1789
Rusty Russell5eed48a2000-06-02 20:12:24 +00001790 case 1: /* non option */
1791 if (optarg[0] == '!' && optarg[1] == '\0') {
1792 if (invert)
1793 exit_error(PARAMETER_PROBLEM,
1794 "multiple consecutive ! not"
1795 " allowed");
1796 invert = TRUE;
1797 optarg[0] = '\0';
1798 continue;
1799 }
Max Kellermannaae4f822007-10-17 16:36:49 +00001800 fprintf(stderr, "Bad argument `%s'\n", optarg);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001801 exit_tryhelp(2);
1802
1803 default:
Rusty Russell5eed48a2000-06-02 20:12:24 +00001804 if (!target
1805 || !(target->parse(c - target->option_offset,
1806 argv, invert,
1807 &target->tflags,
1808 &fw, &target->t))) {
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001809 for (matchp = matches; matchp; matchp = matchp->next) {
Max Kellermann5b76f682008-01-29 13:42:48 +00001810 if (matchp->completed)
Joszef Kadlecsika258ad72006-03-03 09:36:50 +00001811 continue;
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001812 if (matchp->match->parse(c - matchp->match->option_offset,
Rusty Russell5eed48a2000-06-02 20:12:24 +00001813 argv, invert,
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001814 &matchp->match->mflags,
Rusty Russell5eed48a2000-06-02 20:12:24 +00001815 &fw,
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001816 &matchp->match->m))
Rusty Russell5eed48a2000-06-02 20:12:24 +00001817 break;
1818 }
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001819 m = matchp ? matchp->match : NULL;
Harald Welte00f5a9c2002-08-26 14:37:35 +00001820
1821 /* If you listen carefully, you can
1822 actually hear this code suck. */
1823
1824 /* some explanations (after four different bugs
Joszef Kadlecsika258ad72006-03-03 09:36:50 +00001825 * in 3 different releases): If we encounter a
Harald Welte00f5a9c2002-08-26 14:37:35 +00001826 * parameter, that has not been parsed yet,
1827 * it's not an option of an explicitly loaded
1828 * match or a target. However, we support
1829 * implicit loading of the protocol match
1830 * extension. '-p tcp' means 'l4 proto 6' and
1831 * at the same time 'load tcp protocol match on
1832 * demand if we specify --dport'.
1833 *
1834 * To make this work, we need to make sure:
1835 * - the parameter has not been parsed by
1836 * a match (m above)
1837 * - a protocol has been specified
1838 * - the protocol extension has not been
1839 * loaded yet, or is loaded and unused
Jonas Berlin1b91e592005-04-01 06:58:38 +00001840 * [think of ip6tables-restore!]
Harald Welte00f5a9c2002-08-26 14:37:35 +00001841 * - the protocol extension can be successively
1842 * loaded
1843 */
1844 if (m == NULL
1845 && protocol
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001846 && (!find_proto(protocol, XTF_DONT_LOAD,
Max Kellermann5b76f682008-01-29 13:42:48 +00001847 options&OPT_NUMERIC, NULL)
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001848 || (find_proto(protocol, XTF_DONT_LOAD,
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001849 options&OPT_NUMERIC, NULL)
Harald Welte00f5a9c2002-08-26 14:37:35 +00001850 && (proto_used == 0))
1851 )
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001852 && (m = find_proto(protocol, XTF_TRY_LOAD,
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001853 options&OPT_NUMERIC, &matches))) {
Harald Welte00f5a9c2002-08-26 14:37:35 +00001854 /* Try loading protocol */
1855 size_t size;
Max Kellermann5b76f682008-01-29 13:42:48 +00001856
Harald Welte00f5a9c2002-08-26 14:37:35 +00001857 proto_used = 1;
1858
1859 size = IP6T_ALIGN(sizeof(struct ip6t_entry_match))
1860 + m->size;
1861
Jan Engelhardt630ef482009-01-27 14:58:41 +01001862 m->m = xtables_calloc(1, size);
Harald Welte00f5a9c2002-08-26 14:37:35 +00001863 m->m->u.match_size = size;
1864 strcpy(m->m->u.user.name, m->name);
Rémi Denis-Courmont06652172006-10-20 12:24:34 +00001865 set_revision(m->m->u.user.name,
1866 m->revision);
Jonas Berlin1b91e592005-04-01 06:58:38 +00001867 if (m->init != NULL)
Peter Rileyea146a92007-09-02 13:09:07 +00001868 m->init(m->m);
Harald Welte00f5a9c2002-08-26 14:37:35 +00001869
1870 opts = merge_options(opts,
1871 m->extra_opts, &m->option_offset);
1872
1873 optind--;
1874 continue;
1875 }
1876
Pablo Neira Ayuso0e6b7d32008-11-19 19:01:26 +01001877 if (!m) {
1878 if (c == '?') {
1879 if (optopt) {
1880 exit_error(
1881 PARAMETER_PROBLEM,
1882 "option `%s' "
1883 "requires an "
1884 "argument",
1885 argv[optind-1]);
1886 } else {
1887 exit_error(
1888 PARAMETER_PROBLEM,
1889 "unknown option "
1890 "`%s'",
1891 argv[optind-1]);
1892 }
1893 }
Rusty Russell5eed48a2000-06-02 20:12:24 +00001894 exit_error(PARAMETER_PROBLEM,
Jan Engelhardtd0cbf5f2008-08-04 12:51:01 +02001895 "Unknown arg `%s'", optarg);
Pablo Neira Ayuso0e6b7d32008-11-19 19:01:26 +01001896 }
Rusty Russell5eed48a2000-06-02 20:12:24 +00001897 }
1898 }
1899 invert = FALSE;
1900 }
1901
Martin Josefsson69ac0e02004-02-02 20:02:10 +00001902 for (matchp = matches; matchp; matchp = matchp->next)
Jan Engelhardt830132a2007-10-04 16:24:50 +00001903 if (matchp->match->final_check != NULL)
1904 matchp->match->final_check(matchp->match->mflags);
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001905
Jan Engelhardt830132a2007-10-04 16:24:50 +00001906 if (target != NULL && target->final_check != NULL)
Rusty Russell5eed48a2000-06-02 20:12:24 +00001907 target->final_check(target->tflags);
1908
1909 /* Fix me: must put inverse options checking here --MN */
1910
1911 if (optind < argc)
1912 exit_error(PARAMETER_PROBLEM,
1913 "unknown arguments found on commandline");
1914 if (!command)
1915 exit_error(PARAMETER_PROBLEM, "no command specified");
1916 if (invert)
1917 exit_error(PARAMETER_PROBLEM,
1918 "nothing appropriate following !");
1919
András Kis-Szabó0c4188f2002-08-14 11:40:41 +00001920 if (command & (CMD_REPLACE | CMD_INSERT | CMD_DELETE | CMD_APPEND)) {
Rusty Russell5eed48a2000-06-02 20:12:24 +00001921 if (!(options & OPT_DESTINATION))
András Kis-Szabó764316a2001-02-26 17:31:20 +00001922 dhostnetworkmask = "::0/0";
Rusty Russell5eed48a2000-06-02 20:12:24 +00001923 if (!(options & OPT_SOURCE))
András Kis-Szabó764316a2001-02-26 17:31:20 +00001924 shostnetworkmask = "::0/0";
Rusty Russell5eed48a2000-06-02 20:12:24 +00001925 }
1926
1927 if (shostnetworkmask)
Jan Engelhardta0baae82009-01-30 04:32:50 +01001928 xtables_ip6parse_any(shostnetworkmask, &saddrs,
Jan Engelhardtbd943842008-01-20 13:38:08 +00001929 &fw.ipv6.smsk, &nsaddrs);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001930
1931 if (dhostnetworkmask)
Jan Engelhardta0baae82009-01-30 04:32:50 +01001932 xtables_ip6parse_any(dhostnetworkmask, &daddrs,
Jan Engelhardtbd943842008-01-20 13:38:08 +00001933 &fw.ipv6.dmsk, &ndaddrs);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001934
1935 if ((nsaddrs > 1 || ndaddrs > 1) &&
1936 (fw.ipv6.invflags & (IP6T_INV_SRCIP | IP6T_INV_DSTIP)))
1937 exit_error(PARAMETER_PROBLEM, "! not allowed with multiple"
1938 " source or destination IP addresses");
1939
Rusty Russell5eed48a2000-06-02 20:12:24 +00001940 if (command == CMD_REPLACE && (nsaddrs != 1 || ndaddrs != 1))
1941 exit_error(PARAMETER_PROBLEM, "Replacement rule does not "
1942 "specify a unique address");
1943
1944 generic_opt_check(command, options);
1945
1946 if (chain && strlen(chain) > IP6T_FUNCTION_MAXNAMELEN)
1947 exit_error(PARAMETER_PROBLEM,
1948 "chain name `%s' too long (must be under %i chars)",
1949 chain, IP6T_FUNCTION_MAXNAMELEN);
1950
Harald Welte43ac1912002-03-03 09:43:07 +00001951 /* only allocate handle if we weren't called with a handle */
Martin Josefsson8371e152003-05-05 19:33:40 +00001952 if (!*handle)
Harald Welte43ac1912002-03-03 09:43:07 +00001953 *handle = ip6tc_init(*table);
András Kis-Szabó3aa62872001-05-03 01:01:41 +00001954
Rusty Russell8beb0492004-12-22 00:37:10 +00001955 /* try to insmod the module if iptc_init failed */
Jan Engelhardtc021c3c2009-01-27 15:10:05 +01001956 if (!*handle && xtables_load_ko(xtables_modprobe_program, false) != -1)
Harald Welte43ac1912002-03-03 09:43:07 +00001957 *handle = ip6tc_init(*table);
Fabrice MARIE8a5eb6d2001-05-05 21:37:47 +00001958
Harald Welte43ac1912002-03-03 09:43:07 +00001959 if (!*handle)
1960 exit_error(VERSION_PROBLEM,
1961 "can't initialize ip6tables table `%s': %s",
1962 *table, ip6tc_strerror(errno));
Rusty Russell5eed48a2000-06-02 20:12:24 +00001963
András Kis-Szabó0c4188f2002-08-14 11:40:41 +00001964 if (command == CMD_APPEND
Rusty Russell5eed48a2000-06-02 20:12:24 +00001965 || command == CMD_DELETE
1966 || command == CMD_INSERT
1967 || command == CMD_REPLACE) {
Harald Welte43ac1912002-03-03 09:43:07 +00001968 if (strcmp(chain, "PREROUTING") == 0
1969 || strcmp(chain, "INPUT") == 0) {
1970 /* -o not valid with incoming packets. */
1971 if (options & OPT_VIANAMEOUT)
1972 exit_error(PARAMETER_PROBLEM,
1973 "Can't use -%c with %s\n",
1974 opt2char(OPT_VIANAMEOUT),
1975 chain);
Harald Welte43ac1912002-03-03 09:43:07 +00001976 }
Rusty Russell5eed48a2000-06-02 20:12:24 +00001977
Harald Welte43ac1912002-03-03 09:43:07 +00001978 if (strcmp(chain, "POSTROUTING") == 0
1979 || strcmp(chain, "OUTPUT") == 0) {
1980 /* -i not valid with outgoing packets */
1981 if (options & OPT_VIANAMEIN)
1982 exit_error(PARAMETER_PROBLEM,
1983 "Can't use -%c with %s\n",
1984 opt2char(OPT_VIANAMEIN),
1985 chain);
Harald Welte43ac1912002-03-03 09:43:07 +00001986 }
Rusty Russell5eed48a2000-06-02 20:12:24 +00001987
1988 if (target && ip6tc_is_chain(jumpto, *handle)) {
Max Kellermannaae4f822007-10-17 16:36:49 +00001989 fprintf(stderr,
1990 "Warning: using chain %s, not extension\n",
1991 jumpto);
Rusty Russell5eed48a2000-06-02 20:12:24 +00001992
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00001993 if (target->t)
1994 free(target->t);
1995
Rusty Russell5eed48a2000-06-02 20:12:24 +00001996 target = NULL;
1997 }
1998
1999 /* If they didn't specify a target, or it's a chain
2000 name, use standard. */
2001 if (!target
2002 && (strlen(jumpto) == 0
2003 || ip6tc_is_chain(jumpto, *handle))) {
2004 size_t size;
2005
Jan Engelhardt2338efd2009-01-27 15:23:01 +01002006 target = xtables_find_target(IP6T_STANDARD_TARGET,
2007 XTF_LOAD_MUST_SUCCEED);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002008
2009 size = sizeof(struct ip6t_entry_target)
2010 + target->size;
Jan Engelhardt630ef482009-01-27 14:58:41 +01002011 target->t = xtables_calloc(1, size);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002012 target->t->u.target_size = size;
2013 strcpy(target->t->u.user.name, jumpto);
Jonas Berlin1b91e592005-04-01 06:58:38 +00002014 if (target->init != NULL)
Peter Rileyea146a92007-09-02 13:09:07 +00002015 target->init(target->t);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002016 }
2017
2018 if (!target) {
Harald Welte43ac1912002-03-03 09:43:07 +00002019 /* it is no chain, and we can't load a plugin.
2020 * We cannot know if the plugin is corrupt, non
2021 * existant OR if the user just misspelled a
2022 * chain. */
Thomas Jacobeaf831e2008-06-23 11:35:29 +02002023#ifdef IP6T_F_GOTO
2024 if (fw.ipv6.flags & IP6T_F_GOTO)
2025 exit_error(PARAMETER_PROBLEM,
2026 "goto '%s' is not a chain\n", jumpto);
2027#endif
Jan Engelhardt2338efd2009-01-27 15:23:01 +01002028 xtables_find_target(jumpto, XTF_LOAD_MUST_SUCCEED);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002029 } else {
Martin Josefsson69ac0e02004-02-02 20:02:10 +00002030 e = generate_entry(&fw, matches, target->t);
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00002031 free(target->t);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002032 }
2033 }
2034
2035 switch (command) {
2036 case CMD_APPEND:
2037 ret = append_entry(chain, e,
2038 nsaddrs, saddrs, ndaddrs, daddrs,
2039 options&OPT_VERBOSE,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002040 *handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002041 break;
Rusty Russell5eed48a2000-06-02 20:12:24 +00002042 case CMD_DELETE:
2043 ret = delete_entry(chain, e,
2044 nsaddrs, saddrs, ndaddrs, daddrs,
2045 options&OPT_VERBOSE,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002046 *handle, matches);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002047 break;
2048 case CMD_DELETE_NUM:
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002049 ret = ip6tc_delete_num_entry(chain, rulenum - 1, *handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002050 break;
2051 case CMD_REPLACE:
2052 ret = replace_entry(chain, e, rulenum - 1,
2053 saddrs, daddrs, options&OPT_VERBOSE,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002054 *handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002055 break;
2056 case CMD_INSERT:
2057 ret = insert_entry(chain, e, rulenum - 1,
2058 nsaddrs, saddrs, ndaddrs, daddrs,
2059 options&OPT_VERBOSE,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002060 *handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002061 break;
Rusty Russell5eed48a2000-06-02 20:12:24 +00002062 case CMD_FLUSH:
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002063 ret = flush_entries(chain, options&OPT_VERBOSE, *handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002064 break;
2065 case CMD_ZERO:
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002066 ret = zero_entries(chain, options&OPT_VERBOSE, *handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002067 break;
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02002068 case CMD_LIST:
Rusty Russell5eed48a2000-06-02 20:12:24 +00002069 case CMD_LIST|CMD_ZERO:
2070 ret = list_entries(chain,
Henrik Nordstrombb340822008-05-13 13:09:23 +02002071 rulenum,
Rusty Russell5eed48a2000-06-02 20:12:24 +00002072 options&OPT_VERBOSE,
2073 options&OPT_NUMERIC,
2074 options&OPT_EXPANDED,
2075 options&OPT_LINENUMBERS,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002076 *handle);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02002077 if (ret && (command & CMD_ZERO))
2078 ret = zero_entries(chain,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002079 options&OPT_VERBOSE, *handle);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02002080 break;
2081 case CMD_LIST_RULES:
2082 case CMD_LIST_RULES|CMD_ZERO:
2083 ret = list_rules(chain,
Henrik Nordstrombb340822008-05-13 13:09:23 +02002084 rulenum,
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02002085 options&OPT_VERBOSE,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002086 *handle);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02002087 if (ret && (command & CMD_ZERO))
Rusty Russell5eed48a2000-06-02 20:12:24 +00002088 ret = zero_entries(chain,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002089 options&OPT_VERBOSE, *handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002090 break;
2091 case CMD_NEW_CHAIN:
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002092 ret = ip6tc_create_chain(chain, *handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002093 break;
2094 case CMD_DELETE_CHAIN:
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002095 ret = delete_chain(chain, options&OPT_VERBOSE, *handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002096 break;
2097 case CMD_RENAME_CHAIN:
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002098 ret = ip6tc_rename_chain(chain, newname, *handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002099 break;
2100 case CMD_SET_POLICY:
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002101 ret = ip6tc_set_policy(chain, policy, options&OPT_COUNTERS ? &fw.counters : NULL, *handle);
Rusty Russell5eed48a2000-06-02 20:12:24 +00002102 break;
2103 default:
2104 /* We should never reach this... */
2105 exit_tryhelp(2);
2106 }
2107
2108 if (verbose > 1)
2109 dump_entries6(*handle);
2110
Martin Josefsson69ac0e02004-02-02 20:02:10 +00002111 clear_rule_matches(&matches);
2112
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00002113 if (e != NULL) {
2114 free(e);
2115 e = NULL;
2116 }
2117
Max Kellermann9ee386a2008-01-29 13:48:05 +00002118 for (i = 0; i < nsaddrs; i++)
2119 free(&saddrs[i]);
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00002120
Max Kellermann9ee386a2008-01-29 13:48:05 +00002121 for (i = 0; i < ndaddrs; i++)
2122 free(&daddrs[i]);
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00002123
Pablo Neiradfdcd642005-05-29 19:05:23 +00002124 free_opts(1);
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00002125
Rusty Russell5eed48a2000-06-02 20:12:24 +00002126 return ret;
2127}