blob: 98db70fc9b973d64cf25491e283283f4363c753e [file] [log] [blame]
Marc Bouchere6869a82000-03-20 06:03:29 +00001/* Code to take an iptables-style command line and do it. */
2
3/*
4 * Author: Paul.Russell@rustcorp.com.au and mneuling@radlogic.com.au
5 *
Harald Welted4ab5ad2002-08-07 09:07:24 +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 *
Marc Bouchere6869a82000-03-20 06:03:29 +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>
Marc Bouchere6869a82000-03-20 06:03:29 +000034#include <ctype.h>
35#include <stdarg.h>
36#include <limits.h>
Harald Welte82dd2ec2000-12-19 05:18:15 +000037#include <unistd.h>
Marc Bouchere6869a82000-03-20 06:03:29 +000038#include <iptables.h>
Yasuyuki KOZAKAI3dfa4482007-07-24 05:45:33 +000039#include <xtables.h>
Harald Welte82dd2ec2000-12-19 05:18:15 +000040#include <fcntl.h>
Phil Oester8cf65912005-09-19 15:00:33 +000041#include <sys/utsname.h>
Marc Bouchere6869a82000-03-20 06:03:29 +000042
43#ifndef TRUE
44#define TRUE 1
45#endif
46#ifndef FALSE
47#define FALSE 0
48#endif
49
Marc Bouchere6869a82000-03-20 06:03:29 +000050#define FMT_NUMERIC 0x0001
51#define FMT_NOCOUNTS 0x0002
52#define FMT_KILOMEGAGIGA 0x0004
53#define FMT_OPTIONS 0x0008
54#define FMT_NOTABLE 0x0010
55#define FMT_NOTARGET 0x0020
56#define FMT_VIA 0x0040
57#define FMT_NONEWLINE 0x0080
58#define FMT_LINENUMBERS 0x0100
59
60#define FMT_PRINT_RULE (FMT_NOCOUNTS | FMT_OPTIONS | FMT_VIA \
61 | FMT_NUMERIC | FMT_NOTABLE)
62#define FMT(tab,notab) ((format) & FMT_NOTABLE ? (notab) : (tab))
63
64
65#define CMD_NONE 0x0000U
66#define CMD_INSERT 0x0001U
67#define CMD_DELETE 0x0002U
68#define CMD_DELETE_NUM 0x0004U
69#define CMD_REPLACE 0x0008U
70#define CMD_APPEND 0x0010U
71#define CMD_LIST 0x0020U
72#define CMD_FLUSH 0x0040U
73#define CMD_ZERO 0x0080U
74#define CMD_NEW_CHAIN 0x0100U
75#define CMD_DELETE_CHAIN 0x0200U
76#define CMD_SET_POLICY 0x0400U
Harald Welte0eca33f2006-04-21 11:56:30 +000077#define CMD_RENAME_CHAIN 0x0800U
Henrik Nordstrom96296cf2008-05-13 13:08:26 +020078#define CMD_LIST_RULES 0x1000U
79#define NUMBER_OF_CMD 14
Marc Bouchere6869a82000-03-20 06:03:29 +000080static const char cmdflags[] = { 'I', 'D', 'D', 'R', 'A', 'L', 'F', 'Z',
Henrik Nordstrom96296cf2008-05-13 13:08:26 +020081 'N', 'X', 'P', 'E', 'S' };
Marc Bouchere6869a82000-03-20 06:03:29 +000082
83#define OPTION_OFFSET 256
84
85#define OPT_NONE 0x00000U
86#define OPT_NUMERIC 0x00001U
87#define OPT_SOURCE 0x00002U
88#define OPT_DESTINATION 0x00004U
89#define OPT_PROTOCOL 0x00008U
90#define OPT_JUMP 0x00010U
91#define OPT_VERBOSE 0x00020U
92#define OPT_EXPANDED 0x00040U
93#define OPT_VIANAMEIN 0x00080U
94#define OPT_VIANAMEOUT 0x00100U
95#define OPT_FRAGMENT 0x00200U
96#define OPT_LINENUMBERS 0x00400U
Harald Welteccd49e52001-01-23 22:54:34 +000097#define OPT_COUNTERS 0x00800U
98#define NUMBER_OF_OPT 12
Marc Bouchere6869a82000-03-20 06:03:29 +000099static const char optflags[NUMBER_OF_OPT]
Jonas Berlin4a06cf02005-04-01 06:38:25 +0000100= { 'n', 's', 'd', 'p', 'j', 'v', 'x', 'i', 'o', 'f', '0', 'c'};
Marc Bouchere6869a82000-03-20 06:03:29 +0000101
102static struct option original_opts[] = {
Gáspár Lajos7bc3cb72008-03-27 08:20:39 +0100103 {.name = "append", .has_arg = 1, .val = 'A'},
104 {.name = "delete", .has_arg = 1, .val = 'D'},
105 {.name = "insert", .has_arg = 1, .val = 'I'},
106 {.name = "replace", .has_arg = 1, .val = 'R'},
107 {.name = "list", .has_arg = 2, .val = 'L'},
Henrik Nordstrom96296cf2008-05-13 13:08:26 +0200108 {.name = "list-rules", .has_arg = 2, .val = 'S'},
Gáspár Lajos7bc3cb72008-03-27 08:20:39 +0100109 {.name = "flush", .has_arg = 2, .val = 'F'},
110 {.name = "zero", .has_arg = 2, .val = 'Z'},
111 {.name = "new-chain", .has_arg = 1, .val = 'N'},
112 {.name = "delete-chain", .has_arg = 2, .val = 'X'},
113 {.name = "rename-chain", .has_arg = 1, .val = 'E'},
114 {.name = "policy", .has_arg = 1, .val = 'P'},
115 {.name = "source", .has_arg = 1, .val = 's'},
116 {.name = "destination", .has_arg = 1, .val = 'd'},
117 {.name = "src", .has_arg = 1, .val = 's'}, /* synonym */
118 {.name = "dst", .has_arg = 1, .val = 'd'}, /* synonym */
119 {.name = "protocol", .has_arg = 1, .val = 'p'},
120 {.name = "in-interface", .has_arg = 1, .val = 'i'},
121 {.name = "jump", .has_arg = 1, .val = 'j'},
122 {.name = "table", .has_arg = 1, .val = 't'},
123 {.name = "match", .has_arg = 1, .val = 'm'},
124 {.name = "numeric", .has_arg = 0, .val = 'n'},
125 {.name = "out-interface", .has_arg = 1, .val = 'o'},
126 {.name = "verbose", .has_arg = 0, .val = 'v'},
127 {.name = "exact", .has_arg = 0, .val = 'x'},
128 {.name = "fragments", .has_arg = 0, .val = 'f'},
129 {.name = "version", .has_arg = 0, .val = 'V'},
130 {.name = "help", .has_arg = 2, .val = 'h'},
131 {.name = "line-numbers", .has_arg = 0, .val = '0'},
132 {.name = "modprobe", .has_arg = 1, .val = 'M'},
133 {.name = "set-counters", .has_arg = 1, .val = 'c'},
134 {.name = "goto", .has_arg = 1, .val = 'g'},
135 {NULL},
Marc Bouchere6869a82000-03-20 06:03:29 +0000136};
137
Illes Marci63e90632003-03-03 08:08:37 +0000138/* we need this for iptables-restore. iptables-restore.c sets line to the
139 * current line of the input file, in order to give a more precise error
140 * message. iptables itself doesn't need this, so it is initialized to the
141 * magic number of -1 */
142int line = -1;
143
Marc Bouchere6869a82000-03-20 06:03:29 +0000144static struct option *opts = original_opts;
145static unsigned int global_option_offset = 0;
146
147/* Table of legal combinations of commands and options. If any of the
148 * given commands make an option legal, that option is legal (applies to
149 * CMD_LIST and CMD_ZERO only).
150 * Key:
151 * + compulsory
152 * x illegal
153 * optional
154 */
155
156static char commands_v_options[NUMBER_OF_CMD][NUMBER_OF_OPT] =
157/* Well, it's better than "Re: Linux vs FreeBSD" */
158{
Henrik Nordstrom96296cf2008-05-13 13:08:26 +0200159 /* -n -s -d -p -j -v -x -i -o -f --line -c */
Patrick McHardyHarald Welte2cfbd9f2006-04-22 02:08:12 +0000160/*INSERT*/ {'x',' ',' ',' ',' ',' ','x',' ',' ',' ','x',' '},
161/*DELETE*/ {'x',' ',' ',' ',' ',' ','x',' ',' ',' ','x','x'},
162/*DELETE_NUM*/{'x','x','x','x','x',' ','x','x','x','x','x','x'},
163/*REPLACE*/ {'x',' ',' ',' ',' ',' ','x',' ',' ',' ','x',' '},
164/*APPEND*/ {'x',' ',' ',' ',' ',' ','x',' ',' ',' ','x',' '},
165/*LIST*/ {' ','x','x','x','x',' ',' ','x','x','x',' ','x'},
166/*FLUSH*/ {'x','x','x','x','x',' ','x','x','x','x','x','x'},
167/*ZERO*/ {'x','x','x','x','x',' ','x','x','x','x','x','x'},
168/*NEW_CHAIN*/ {'x','x','x','x','x',' ','x','x','x','x','x','x'},
169/*DEL_CHAIN*/ {'x','x','x','x','x',' ','x','x','x','x','x','x'},
Henrik Nordstrom48c1bc62008-05-12 20:53:16 +0200170/*SET_POLICY*/{'x','x','x','x','x',' ','x','x','x','x','x',' '},
Henrik Nordstrom96296cf2008-05-13 13:08:26 +0200171/*RENAME*/ {'x','x','x','x','x',' ','x','x','x','x','x','x'},
172/*LIST_RULES*/{'x','x','x','x','x',' ','x','x','x','x','x','x'}
Marc Bouchere6869a82000-03-20 06:03:29 +0000173};
174
175static int inverse_for_options[NUMBER_OF_OPT] =
176{
177/* -n */ 0,
178/* -s */ IPT_INV_SRCIP,
179/* -d */ IPT_INV_DSTIP,
180/* -p */ IPT_INV_PROTO,
181/* -j */ 0,
182/* -v */ 0,
183/* -x */ 0,
184/* -i */ IPT_INV_VIA_IN,
185/* -o */ IPT_INV_VIA_OUT,
186/* -f */ IPT_INV_FRAG,
Patrick McHardyHarald Welte2cfbd9f2006-04-22 02:08:12 +0000187/*--line*/ 0,
188/* -c */ 0,
Marc Bouchere6869a82000-03-20 06:03:29 +0000189};
190
191const char *program_version;
192const char *program_name;
193
Phil Oester8cf65912005-09-19 15:00:33 +0000194int kernel_version;
195
Marc Bouchere6869a82000-03-20 06:03:29 +0000196/* A few hardcoded protocols for 'all' and in case the user has no
197 /etc/protocols */
198struct pprot {
199 char *name;
200 u_int8_t num;
201};
202
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000203struct afinfo afinfo = {
204 .family = AF_INET,
205 .libprefix = "libipt_",
206 .ipproto = IPPROTO_IP,
207 .kmod = "ip_tables",
208 .so_rev_match = IPT_SO_GET_REVISION_MATCH,
209 .so_rev_target = IPT_SO_GET_REVISION_TARGET,
210};
211
Rusty Russella3e6aaa2000-12-19 04:45:23 +0000212/* Primitive headers... */
András Kis-Szabó764316a2001-02-26 17:31:20 +0000213/* defined in netinet/in.h */
214#if 0
Rusty Russella3e6aaa2000-12-19 04:45:23 +0000215#ifndef IPPROTO_ESP
216#define IPPROTO_ESP 50
217#endif
218#ifndef IPPROTO_AH
219#define IPPROTO_AH 51
220#endif
András Kis-Szabó764316a2001-02-26 17:31:20 +0000221#endif
Rusty Russella3e6aaa2000-12-19 04:45:23 +0000222
Marc Bouchere6869a82000-03-20 06:03:29 +0000223static const struct pprot chain_protos[] = {
224 { "tcp", IPPROTO_TCP },
225 { "udp", IPPROTO_UDP },
Patrick McHardy95616062007-01-11 09:08:22 +0000226 { "udplite", IPPROTO_UDPLITE },
Marc Bouchere6869a82000-03-20 06:03:29 +0000227 { "icmp", IPPROTO_ICMP },
Jan Echternachaf8fe9e2000-08-27 07:41:39 +0000228 { "esp", IPPROTO_ESP },
229 { "ah", IPPROTO_AH },
Harald Welte12915232004-02-21 09:20:34 +0000230 { "sctp", IPPROTO_SCTP },
Phil Oesterb7408912007-04-30 00:01:39 +0000231 { "all", 0 },
Marc Bouchere6869a82000-03-20 06:03:29 +0000232};
233
Patrick McHardyJesper Brouerc1eae412006-07-25 01:50:48 +0000234static char *
Rusty Russell28381a42000-05-10 00:19:50 +0000235proto_to_name(u_int8_t proto, int nolookup)
Marc Bouchere6869a82000-03-20 06:03:29 +0000236{
237 unsigned int i;
238
Rusty Russell28381a42000-05-10 00:19:50 +0000239 if (proto && !nolookup) {
Marc Bouchere6869a82000-03-20 06:03:29 +0000240 struct protoent *pent = getprotobynumber(proto);
241 if (pent)
242 return pent->p_name;
243 }
244
245 for (i = 0; i < sizeof(chain_protos)/sizeof(struct pprot); i++)
246 if (chain_protos[i].num == proto)
247 return chain_protos[i].name;
248
249 return NULL;
250}
251
Pablo Neira Ayuso267a5702006-11-29 13:32:32 +0000252enum {
253 IPT_DOTTED_ADDR = 0,
254 IPT_DOTTED_MASK
255};
256
Pablo Neiradfdcd642005-05-29 19:05:23 +0000257static void free_opts(int reset_offset)
258{
259 if (opts != original_opts) {
260 free(opts);
261 opts = original_opts;
262 if (reset_offset)
263 global_option_offset = 0;
264 }
265}
266
Patrick McHardy0b639362007-09-08 16:00:01 +0000267static void
Marc Bouchere6869a82000-03-20 06:03:29 +0000268exit_tryhelp(int status)
269{
Maciej Soltysiakedad9bb2003-03-31 12:11:55 +0000270 if (line != -1)
Harald Weltea5bb0a62003-05-03 18:56:19 +0000271 fprintf(stderr, "Error occurred at line: %d\n", line);
Marc Bouchere6869a82000-03-20 06:03:29 +0000272 fprintf(stderr, "Try `%s -h' or '%s --help' for more information.\n",
273 program_name, program_name );
Pablo Neiradfdcd642005-05-29 19:05:23 +0000274 free_opts(1);
Marc Bouchere6869a82000-03-20 06:03:29 +0000275 exit(status);
276}
277
Patrick McHardy0b639362007-09-08 16:00:01 +0000278static void
Martin Josefsson66aea6f2004-05-26 15:41:54 +0000279exit_printhelp(struct iptables_rule_match *matches)
Marc Bouchere6869a82000-03-20 06:03:29 +0000280{
Martin Josefsson66aea6f2004-05-26 15:41:54 +0000281 struct iptables_rule_match *matchp = NULL;
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200282 struct xtables_target *t = NULL;
Rusty Russell2e0a3212000-04-19 11:23:18 +0000283
Marc Bouchere6869a82000-03-20 06:03:29 +0000284 printf("%s v%s\n\n"
András Kis-Szabó0c4188f2002-08-14 11:40:41 +0000285"Usage: %s -[AD] chain rule-specification [options]\n"
Marc Bouchere6869a82000-03-20 06:03:29 +0000286" %s -[RI] chain rulenum rule-specification [options]\n"
287" %s -D chain rulenum [options]\n"
288" %s -[LFZ] [chain] [options]\n"
289" %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,
295 program_name, program_name);
296
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"
308" --list -L [chain] List the rules in a chain or all chains\n"
Henrik Nordstrom96296cf2008-05-13 13:08:26 +0200309" --list-rules\n"
310" -S [chain] Print the rules in a chain or all chains\n"
Marc Bouchere6869a82000-03-20 06:03:29 +0000311" --flush -F [chain] Delete all rules in chain or all chains\n"
312" --zero -Z [chain] Zero counters in chain or all chains\n"
Marc Bouchere6869a82000-03-20 06:03:29 +0000313" --new -N chain Create a new user-defined chain\n"
314" --delete-chain\n"
315" -X [chain] Delete a user-defined chain\n"
316" --policy -P chain target\n"
317" Change policy on chain to target\n"
318" --rename-chain\n"
319" -E old-chain new-chain\n"
320" Change chain name, (moving any references)\n"
321
322"Options:\n"
323" --proto -p [!] proto protocol: by number or name, eg. `tcp'\n"
324" --source -s [!] address[/mask]\n"
325" source specification\n"
326" --destination -d [!] address[/mask]\n"
327" destination specification\n"
328" --in-interface -i [!] input name[+]\n"
329" network interface name ([+] for wildcard)\n"
330" --jump -j target\n"
Rusty Russell363112d2000-08-11 13:49:26 +0000331" target for rule (may load target extension)\n"
Henrik Nordstrom17fc1632005-11-05 09:26:40 +0000332#ifdef IPT_F_GOTO
333" --goto -g chain\n"
334" jump to chain with no return\n"
335#endif
Rusty Russell363112d2000-08-11 13:49:26 +0000336" --match -m match\n"
337" extended match (may load extension)\n"
Marc Bouchere6869a82000-03-20 06:03:29 +0000338" --numeric -n numeric output of addresses and ports\n"
339" --out-interface -o [!] output name[+]\n"
340" network interface name ([+] for wildcard)\n"
341" --table -t table table to manipulate (default: `filter')\n"
342" --verbose -v verbose mode\n"
Harald Welte82dd2ec2000-12-19 05:18:15 +0000343" --line-numbers print line numbers when listing\n"
Marc Bouchere6869a82000-03-20 06:03:29 +0000344" --exact -x expand numbers (display exact values)\n"
345"[!] --fragment -f match second or further fragments only\n"
Rusty Russella4d3e1f2001-01-07 06:56:02 +0000346" --modprobe=<command> try to insert modules using this command\n"
Harald Welteccd49e52001-01-23 22:54:34 +0000347" --set-counters PKTS BYTES set the counter during insert/append\n"
Marc Bouchere6869a82000-03-20 06:03:29 +0000348"[!] --version -V print package version.\n");
349
Rusty Russell363112d2000-08-11 13:49:26 +0000350 /* Print out any special helps. A user might like to be able
351 to add a --help to the commandline, and see expected
Martin Josefsson66aea6f2004-05-26 15:41:54 +0000352 results. So we call help for all specified matches & targets */
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000353 for (t = xtables_targets; t ;t = t->next) {
Martin Josefsson66aea6f2004-05-26 15:41:54 +0000354 if (t->used) {
355 printf("\n");
356 t->help();
357 }
Marc Bouchere6869a82000-03-20 06:03:29 +0000358 }
Martin Josefsson66aea6f2004-05-26 15:41:54 +0000359 for (matchp = matches; matchp; matchp = matchp->next) {
Marc Bouchere6869a82000-03-20 06:03:29 +0000360 printf("\n");
Martin Josefsson66aea6f2004-05-26 15:41:54 +0000361 matchp->match->help();
Marc Bouchere6869a82000-03-20 06:03:29 +0000362 }
Marc Bouchere6869a82000-03-20 06:03:29 +0000363 exit(0);
364}
365
Patrick McHardy0b639362007-09-08 16:00:01 +0000366void
367exit_error(enum exittype status, const char *msg, ...)
368{
369 va_list args;
370
371 va_start(args, msg);
372 fprintf(stderr, "%s v%s: ", program_name, program_version);
373 vfprintf(stderr, msg, args);
374 va_end(args);
375 fprintf(stderr, "\n");
376 if (status == PARAMETER_PROBLEM)
377 exit_tryhelp(status);
378 if (status == VERSION_PROBLEM)
379 fprintf(stderr,
380 "Perhaps iptables or your kernel needs to be upgraded.\n");
381 /* On error paths, make sure that we don't leak memory */
382 free_opts(1);
383 exit(status);
384}
385
Marc Bouchere6869a82000-03-20 06:03:29 +0000386static void
387generic_opt_check(int command, int options)
388{
389 int i, j, legal = 0;
390
391 /* Check that commands are valid with options. Complicated by the
392 * fact that if an option is legal with *any* command given, it is
393 * legal overall (ie. -z and -l).
394 */
395 for (i = 0; i < NUMBER_OF_OPT; i++) {
396 legal = 0; /* -1 => illegal, 1 => legal, 0 => undecided. */
397
398 for (j = 0; j < NUMBER_OF_CMD; j++) {
399 if (!(command & (1<<j)))
400 continue;
401
402 if (!(options & (1<<i))) {
403 if (commands_v_options[j][i] == '+')
404 exit_error(PARAMETER_PROBLEM,
405 "You need to supply the `-%c' "
406 "option for this command\n",
407 optflags[i]);
408 } else {
409 if (commands_v_options[j][i] != 'x')
410 legal = 1;
411 else if (legal == 0)
412 legal = -1;
413 }
414 }
415 if (legal == -1)
416 exit_error(PARAMETER_PROBLEM,
417 "Illegal option `-%c' with this command\n",
418 optflags[i]);
419 }
420}
421
422static char
423opt2char(int option)
424{
425 const char *ptr;
426 for (ptr = optflags; option > 1; option >>= 1, ptr++);
427
428 return *ptr;
429}
430
431static char
432cmd2char(int option)
433{
434 const char *ptr;
435 for (ptr = cmdflags; option > 1; option >>= 1, ptr++);
436
437 return *ptr;
438}
439
440static void
Harald Welteefa8fc22005-07-19 22:03:49 +0000441add_command(unsigned int *cmd, const int newcmd, const int othercmds,
442 int invert)
Marc Bouchere6869a82000-03-20 06:03:29 +0000443{
444 if (invert)
445 exit_error(PARAMETER_PROBLEM, "unexpected ! flag");
446 if (*cmd & (~othercmds))
447 exit_error(PARAMETER_PROBLEM, "Can't use -%c with -%c\n",
448 cmd2char(newcmd), cmd2char(*cmd & (~othercmds)));
449 *cmd |= newcmd;
450}
451
452int
Jan Engelhardtdbb77542008-02-11 00:33:30 +0100453check_inverse(const char option[], int *invert, int *my_optind, int argc)
Marc Bouchere6869a82000-03-20 06:03:29 +0000454{
455 if (option && strcmp(option, "!") == 0) {
456 if (*invert)
457 exit_error(PARAMETER_PROBLEM,
458 "Multiple `!' flags not allowed");
Marc Bouchere6869a82000-03-20 06:03:29 +0000459 *invert = TRUE;
Jan Engelhardtdbb77542008-02-11 00:33:30 +0100460 if (my_optind != NULL) {
461 ++*my_optind;
462 if (argc && *my_optind > argc)
Harald Welteb77f1da2002-03-14 11:35:58 +0000463 exit_error(PARAMETER_PROBLEM,
464 "no argument following `!'");
465 }
466
Marc Bouchere6869a82000-03-20 06:03:29 +0000467 return TRUE;
468 }
469 return FALSE;
470}
471
Marc Bouchere6869a82000-03-20 06:03:29 +0000472/*
473 * All functions starting with "parse" should succeed, otherwise
474 * the program fails.
475 * Most routines return pointers to static data that may change
476 * between calls to the same or other routines with a few exceptions:
477 * "host_to_addr", "parse_hostnetwork", and "parse_hostnetworkmask"
478 * return global static data.
479*/
480
Rusty Russell28381a42000-05-10 00:19:50 +0000481/* Christophe Burki wants `-p 6' to imply `-m tcp'. */
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200482static struct xtables_match *
Martin Josefsson78cafda2004-02-02 20:01:18 +0000483find_proto(const char *pname, enum ipt_tryload tryload, int nolookup, struct iptables_rule_match **matches)
Rusty Russell28381a42000-05-10 00:19:50 +0000484{
Harald Welteed498492001-07-23 01:24:22 +0000485 unsigned int proto;
Rusty Russell28381a42000-05-10 00:19:50 +0000486
Harald Welte0b0013a2002-02-18 16:15:31 +0000487 if (string_to_number(pname, 0, 255, &proto) != -1) {
488 char *protoname = proto_to_name(proto, nolookup);
Rusty Russell28381a42000-05-10 00:19:50 +0000489
Harald Welte0b0013a2002-02-18 16:15:31 +0000490 if (protoname)
Martin Josefsson78cafda2004-02-02 20:01:18 +0000491 return find_match(protoname, tryload, matches);
Harald Welte0b0013a2002-02-18 16:15:31 +0000492 } else
Martin Josefsson78cafda2004-02-02 20:01:18 +0000493 return find_match(pname, tryload, matches);
Harald Welte0b0013a2002-02-18 16:15:31 +0000494
495 return NULL;
Rusty Russell28381a42000-05-10 00:19:50 +0000496}
497
Marc Boucherb93c7982001-12-06 14:50:19 +0000498u_int16_t
Marc Bouchere6869a82000-03-20 06:03:29 +0000499parse_protocol(const char *s)
500{
Harald Welteed498492001-07-23 01:24:22 +0000501 unsigned int proto;
Marc Bouchere6869a82000-03-20 06:03:29 +0000502
Harald Welteed498492001-07-23 01:24:22 +0000503 if (string_to_number(s, 0, 255, &proto) == -1) {
Marc Bouchere6869a82000-03-20 06:03:29 +0000504 struct protoent *pent;
505
Harald Weltecbe1ec72006-02-11 09:50:11 +0000506 /* first deal with the special case of 'all' to prevent
507 * people from being able to redefine 'all' in nsswitch
508 * and/or provoke expensive [not working] ldap/nis/...
509 * lookups */
510 if (!strcmp(s, "all"))
511 return 0;
512
Marc Bouchere6869a82000-03-20 06:03:29 +0000513 if ((pent = getprotobyname(s)))
514 proto = pent->p_proto;
515 else {
516 unsigned int i;
517 for (i = 0;
518 i < sizeof(chain_protos)/sizeof(struct pprot);
519 i++) {
520 if (strcmp(s, chain_protos[i].name) == 0) {
521 proto = chain_protos[i].num;
522 break;
523 }
524 }
525 if (i == sizeof(chain_protos)/sizeof(struct pprot))
526 exit_error(PARAMETER_PROBLEM,
527 "unknown protocol `%s' specified",
528 s);
529 }
530 }
531
532 return (u_int16_t)proto;
533}
534
Marc Bouchere6869a82000-03-20 06:03:29 +0000535/* Can't be zero. */
536static int
537parse_rulenumber(const char *rule)
538{
Harald Welteed498492001-07-23 01:24:22 +0000539 unsigned int rulenum;
Marc Bouchere6869a82000-03-20 06:03:29 +0000540
Harald Welteed498492001-07-23 01:24:22 +0000541 if (string_to_number(rule, 1, INT_MAX, &rulenum) == -1)
Marc Bouchere6869a82000-03-20 06:03:29 +0000542 exit_error(PARAMETER_PROBLEM,
543 "Invalid rule number `%s'", rule);
544
545 return rulenum;
546}
547
548static const char *
549parse_target(const char *targetname)
550{
551 const char *ptr;
552
553 if (strlen(targetname) < 1)
554 exit_error(PARAMETER_PROBLEM,
555 "Invalid target name (too short)");
556
557 if (strlen(targetname)+1 > sizeof(ipt_chainlabel))
558 exit_error(PARAMETER_PROBLEM,
Martin Josefssona28d4952004-05-26 16:04:48 +0000559 "Invalid target name `%s' (%u chars max)",
560 targetname, (unsigned int)sizeof(ipt_chainlabel)-1);
Marc Bouchere6869a82000-03-20 06:03:29 +0000561
562 for (ptr = targetname; *ptr; ptr++)
563 if (isspace(*ptr))
564 exit_error(PARAMETER_PROBLEM,
565 "Invalid target name `%s'", targetname);
566 return targetname;
567}
568
Marc Bouchere6869a82000-03-20 06:03:29 +0000569static void
570set_option(unsigned int *options, unsigned int option, u_int8_t *invflg,
571 int invert)
572{
573 if (*options & option)
574 exit_error(PARAMETER_PROBLEM, "multiple -%c flags not allowed",
575 opt2char(option));
576 *options |= option;
577
578 if (invert) {
579 unsigned int i;
580 for (i = 0; 1 << i != option; i++);
581
582 if (!inverse_for_options[i])
583 exit_error(PARAMETER_PROBLEM,
584 "cannot have ! before -%c",
585 opt2char(option));
586 *invflg |= inverse_for_options[i];
587 }
588}
589
Marc Bouchere6869a82000-03-20 06:03:29 +0000590static struct option *
Jan Echternach5a1041d2000-08-26 04:44:39 +0000591merge_options(struct option *oldopts, const struct option *newopts,
Marc Bouchere6869a82000-03-20 06:03:29 +0000592 unsigned int *option_offset)
593{
594 unsigned int num_old, num_new, i;
595 struct option *merge;
596
Jan Engelhardtd0145402007-07-30 14:32:26 +0000597 if (newopts == NULL)
598 return oldopts;
599
Marc Bouchere6869a82000-03-20 06:03:29 +0000600 for (num_old = 0; oldopts[num_old].name; num_old++);
601 for (num_new = 0; newopts[num_new].name; num_new++);
602
603 global_option_offset += OPTION_OFFSET;
604 *option_offset = global_option_offset;
605
606 merge = malloc(sizeof(struct option) * (num_new + num_old + 1));
Pablo Neira Ayuso8e707d72008-01-17 17:30:27 +0000607 if (merge == NULL)
608 return NULL;
Marc Bouchere6869a82000-03-20 06:03:29 +0000609 memcpy(merge, oldopts, num_old * sizeof(struct option));
Marcus Sundbergd91ed752005-07-29 13:26:35 +0000610 free_opts(0); /* Release previous options merged if any */
Marc Bouchere6869a82000-03-20 06:03:29 +0000611 for (i = 0; i < num_new; i++) {
612 merge[num_old + i] = newopts[i];
613 merge[num_old + i].val += *option_offset;
614 }
615 memset(merge + num_old + num_new, 0, sizeof(struct option));
616
617 return merge;
618}
619
Marc Bouchere6869a82000-03-20 06:03:29 +0000620static void
Harald Weltea0b4f792001-03-25 19:55:04 +0000621print_num(u_int64_t number, unsigned int format)
622{
623 if (format & FMT_KILOMEGAGIGA) {
624 if (number > 99999) {
625 number = (number + 500) / 1000;
626 if (number > 9999) {
627 number = (number + 500) / 1000;
628 if (number > 9999) {
629 number = (number + 500) / 1000;
Rusty Russell5a66fe42001-08-15 11:21:59 +0000630 if (number > 9999) {
631 number = (number + 500) / 1000;
Martin Josefssona28d4952004-05-26 16:04:48 +0000632 printf(FMT("%4lluT ","%lluT "), (unsigned long long)number);
Rusty Russell5a66fe42001-08-15 11:21:59 +0000633 }
Martin Josefssona28d4952004-05-26 16:04:48 +0000634 else printf(FMT("%4lluG ","%lluG "), (unsigned long long)number);
Harald Weltea0b4f792001-03-25 19:55:04 +0000635 }
Martin Josefssona28d4952004-05-26 16:04:48 +0000636 else printf(FMT("%4lluM ","%lluM "), (unsigned long long)number);
Harald Weltea0b4f792001-03-25 19:55:04 +0000637 } else
Martin Josefssona28d4952004-05-26 16:04:48 +0000638 printf(FMT("%4lluK ","%lluK "), (unsigned long long)number);
Harald Weltea0b4f792001-03-25 19:55:04 +0000639 } else
Martin Josefssona28d4952004-05-26 16:04:48 +0000640 printf(FMT("%5llu ","%llu "), (unsigned long long)number);
Harald Weltea0b4f792001-03-25 19:55:04 +0000641 } else
Martin Josefssona28d4952004-05-26 16:04:48 +0000642 printf(FMT("%8llu ","%llu "), (unsigned long long)number);
Harald Weltea0b4f792001-03-25 19:55:04 +0000643}
644
645
646static void
Marc Bouchere6869a82000-03-20 06:03:29 +0000647print_header(unsigned int format, const char *chain, iptc_handle_t *handle)
648{
649 struct ipt_counters counters;
650 const char *pol = iptc_get_policy(chain, &counters, handle);
651 printf("Chain %s", chain);
652 if (pol) {
653 printf(" (policy %s", pol);
Harald Weltea0b4f792001-03-25 19:55:04 +0000654 if (!(format & FMT_NOCOUNTS)) {
655 fputc(' ', stdout);
656 print_num(counters.pcnt, (format|FMT_NOTABLE));
657 fputs("packets, ", stdout);
658 print_num(counters.bcnt, (format|FMT_NOTABLE));
659 fputs("bytes", stdout);
660 }
Marc Bouchere6869a82000-03-20 06:03:29 +0000661 printf(")\n");
662 } else {
663 unsigned int refs;
Rusty Russell9e1d2142000-04-23 09:11:12 +0000664 if (!iptc_get_references(&refs, chain, handle))
665 printf(" (ERROR obtaining refs)\n");
666 else
667 printf(" (%u references)\n", refs);
Marc Bouchere6869a82000-03-20 06:03:29 +0000668 }
669
670 if (format & FMT_LINENUMBERS)
671 printf(FMT("%-4s ", "%s "), "num");
672 if (!(format & FMT_NOCOUNTS)) {
673 if (format & FMT_KILOMEGAGIGA) {
674 printf(FMT("%5s ","%s "), "pkts");
675 printf(FMT("%5s ","%s "), "bytes");
676 } else {
677 printf(FMT("%8s ","%s "), "pkts");
678 printf(FMT("%10s ","%s "), "bytes");
679 }
680 }
681 if (!(format & FMT_NOTARGET))
682 printf(FMT("%-9s ","%s "), "target");
683 fputs(" prot ", stdout);
684 if (format & FMT_OPTIONS)
685 fputs("opt", stdout);
686 if (format & FMT_VIA) {
687 printf(FMT(" %-6s ","%s "), "in");
688 printf(FMT("%-6s ","%s "), "out");
689 }
690 printf(FMT(" %-19s ","%s "), "source");
691 printf(FMT(" %-19s "," %s "), "destination");
692 printf("\n");
693}
694
Marc Bouchere6869a82000-03-20 06:03:29 +0000695
696static int
697print_match(const struct ipt_entry_match *m,
698 const struct ipt_ip *ip,
699 int numeric)
700{
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200701 struct xtables_match *match = find_match(m->u.user.name, TRY_LOAD, NULL);
Marc Bouchere6869a82000-03-20 06:03:29 +0000702
703 if (match) {
704 if (match->print)
705 match->print(ip, m, numeric);
Rusty Russell629149f2000-09-01 06:01:00 +0000706 else
Rusty Russellb039b022000-09-01 06:04:05 +0000707 printf("%s ", match->name);
Marc Bouchere6869a82000-03-20 06:03:29 +0000708 } else {
Rusty Russell228e98d2000-04-27 10:28:06 +0000709 if (m->u.user.name[0])
710 printf("UNKNOWN match `%s' ", m->u.user.name);
Marc Bouchere6869a82000-03-20 06:03:29 +0000711 }
712 /* Don't stop iterating. */
713 return 0;
714}
715
Jan Engelhardt6cf172e2008-03-10 17:48:59 +0100716/* e is called `fw' here for historical reasons */
Marc Bouchere6869a82000-03-20 06:03:29 +0000717static void
718print_firewall(const struct ipt_entry *fw,
719 const char *targname,
720 unsigned int num,
721 unsigned int format,
722 const iptc_handle_t handle)
723{
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200724 struct xtables_target *target = NULL;
Marc Bouchere6869a82000-03-20 06:03:29 +0000725 const struct ipt_entry_target *t;
726 u_int8_t flags;
727 char buf[BUFSIZ];
728
Marc Bouchere6869a82000-03-20 06:03:29 +0000729 if (!iptc_is_chain(targname, handle))
Rusty Russell52a51492000-05-02 16:44:29 +0000730 target = find_target(targname, TRY_LOAD);
Marc Bouchere6869a82000-03-20 06:03:29 +0000731 else
Rusty Russell52a51492000-05-02 16:44:29 +0000732 target = find_target(IPT_STANDARD_TARGET, LOAD_MUST_SUCCEED);
Marc Bouchere6869a82000-03-20 06:03:29 +0000733
734 t = ipt_get_target((struct ipt_entry *)fw);
735 flags = fw->ip.flags;
736
737 if (format & FMT_LINENUMBERS)
738 printf(FMT("%-4u ", "%u "), num+1);
739
740 if (!(format & FMT_NOCOUNTS)) {
741 print_num(fw->counters.pcnt, format);
742 print_num(fw->counters.bcnt, format);
743 }
744
745 if (!(format & FMT_NOTARGET))
746 printf(FMT("%-9s ", "%s "), targname);
747
748 fputc(fw->ip.invflags & IPT_INV_PROTO ? '!' : ' ', stdout);
749 {
Rusty Russell28381a42000-05-10 00:19:50 +0000750 char *pname = proto_to_name(fw->ip.proto, format&FMT_NUMERIC);
Marc Bouchere6869a82000-03-20 06:03:29 +0000751 if (pname)
752 printf(FMT("%-5s", "%s "), pname);
753 else
754 printf(FMT("%-5hu", "%hu "), fw->ip.proto);
755 }
756
757 if (format & FMT_OPTIONS) {
758 if (format & FMT_NOTABLE)
759 fputs("opt ", stdout);
760 fputc(fw->ip.invflags & IPT_INV_FRAG ? '!' : '-', stdout);
761 fputc(flags & IPT_F_FRAG ? 'f' : '-', stdout);
762 fputc(' ', stdout);
763 }
764
765 if (format & FMT_VIA) {
766 char iface[IFNAMSIZ+2];
767
768 if (fw->ip.invflags & IPT_INV_VIA_IN) {
769 iface[0] = '!';
770 iface[1] = '\0';
771 }
772 else iface[0] = '\0';
773
774 if (fw->ip.iniface[0] != '\0') {
775 strcat(iface, fw->ip.iniface);
Marc Bouchere6869a82000-03-20 06:03:29 +0000776 }
777 else if (format & FMT_NUMERIC) strcat(iface, "*");
778 else strcat(iface, "any");
779 printf(FMT(" %-6s ","in %s "), iface);
780
781 if (fw->ip.invflags & IPT_INV_VIA_OUT) {
782 iface[0] = '!';
783 iface[1] = '\0';
784 }
785 else iface[0] = '\0';
786
787 if (fw->ip.outiface[0] != '\0') {
788 strcat(iface, fw->ip.outiface);
Marc Bouchere6869a82000-03-20 06:03:29 +0000789 }
790 else if (format & FMT_NUMERIC) strcat(iface, "*");
791 else strcat(iface, "any");
792 printf(FMT("%-6s ","out %s "), iface);
793 }
794
795 fputc(fw->ip.invflags & IPT_INV_SRCIP ? '!' : ' ', stdout);
796 if (fw->ip.smsk.s_addr == 0L && !(format & FMT_NUMERIC))
797 printf(FMT("%-19s ","%s "), "anywhere");
798 else {
799 if (format & FMT_NUMERIC)
Jan Engelhardt08b16162008-01-20 13:36:08 +0000800 sprintf(buf, "%s", ipaddr_to_numeric(&fw->ip.src));
Marc Bouchere6869a82000-03-20 06:03:29 +0000801 else
Jan Engelhardt08b16162008-01-20 13:36:08 +0000802 sprintf(buf, "%s", ipaddr_to_anyname(&fw->ip.src));
803 strcat(buf, ipmask_to_numeric(&fw->ip.smsk));
Marc Bouchere6869a82000-03-20 06:03:29 +0000804 printf(FMT("%-19s ","%s "), buf);
805 }
806
807 fputc(fw->ip.invflags & IPT_INV_DSTIP ? '!' : ' ', stdout);
808 if (fw->ip.dmsk.s_addr == 0L && !(format & FMT_NUMERIC))
Harald Welte25fc1d72003-05-31 21:30:33 +0000809 printf(FMT("%-19s ","-> %s"), "anywhere");
Marc Bouchere6869a82000-03-20 06:03:29 +0000810 else {
811 if (format & FMT_NUMERIC)
Jan Engelhardt08b16162008-01-20 13:36:08 +0000812 sprintf(buf, "%s", ipaddr_to_numeric(&fw->ip.dst));
Marc Bouchere6869a82000-03-20 06:03:29 +0000813 else
Jan Engelhardt08b16162008-01-20 13:36:08 +0000814 sprintf(buf, "%s", ipaddr_to_anyname(&fw->ip.dst));
815 strcat(buf, ipmask_to_numeric(&fw->ip.dmsk));
Harald Welte25fc1d72003-05-31 21:30:33 +0000816 printf(FMT("%-19s ","-> %s"), buf);
Marc Bouchere6869a82000-03-20 06:03:29 +0000817 }
818
819 if (format & FMT_NOTABLE)
820 fputs(" ", stdout);
821
Harald Welte72bd87e2005-11-24 17:04:05 +0000822#ifdef IPT_F_GOTO
Henrik Nordstrom17fc1632005-11-05 09:26:40 +0000823 if(fw->ip.flags & IPT_F_GOTO)
824 printf("[goto] ");
Harald Welte72bd87e2005-11-24 17:04:05 +0000825#endif
Henrik Nordstrom17fc1632005-11-05 09:26:40 +0000826
Marc Bouchere6869a82000-03-20 06:03:29 +0000827 IPT_MATCH_ITERATE(fw, print_match, &fw->ip, format & FMT_NUMERIC);
828
829 if (target) {
830 if (target->print)
831 /* Print the target information. */
832 target->print(&fw->ip, t, format & FMT_NUMERIC);
Rusty Russell228e98d2000-04-27 10:28:06 +0000833 } else if (t->u.target_size != sizeof(*t))
Marc Bouchere6869a82000-03-20 06:03:29 +0000834 printf("[%u bytes of unknown target data] ",
Martin Josefssona28d4952004-05-26 16:04:48 +0000835 (unsigned int)(t->u.target_size - sizeof(*t)));
Marc Bouchere6869a82000-03-20 06:03:29 +0000836
837 if (!(format & FMT_NONEWLINE))
838 fputc('\n', stdout);
839}
840
841static void
842print_firewall_line(const struct ipt_entry *fw,
843 const iptc_handle_t h)
844{
845 struct ipt_entry_target *t;
846
847 t = ipt_get_target((struct ipt_entry *)fw);
Rusty Russell228e98d2000-04-27 10:28:06 +0000848 print_firewall(fw, t->u.user.name, 0, FMT_PRINT_RULE, h);
Marc Bouchere6869a82000-03-20 06:03:29 +0000849}
850
851static int
852append_entry(const ipt_chainlabel chain,
853 struct ipt_entry *fw,
854 unsigned int nsaddrs,
855 const struct in_addr saddrs[],
856 unsigned int ndaddrs,
857 const struct in_addr daddrs[],
858 int verbose,
859 iptc_handle_t *handle)
860{
861 unsigned int i, j;
862 int ret = 1;
863
864 for (i = 0; i < nsaddrs; i++) {
865 fw->ip.src.s_addr = saddrs[i].s_addr;
866 for (j = 0; j < ndaddrs; j++) {
867 fw->ip.dst.s_addr = daddrs[j].s_addr;
868 if (verbose)
869 print_firewall_line(fw, *handle);
870 ret &= iptc_append_entry(chain, fw, handle);
871 }
872 }
873
874 return ret;
875}
876
877static int
878replace_entry(const ipt_chainlabel chain,
879 struct ipt_entry *fw,
880 unsigned int rulenum,
881 const struct in_addr *saddr,
882 const struct in_addr *daddr,
883 int verbose,
884 iptc_handle_t *handle)
885{
886 fw->ip.src.s_addr = saddr->s_addr;
887 fw->ip.dst.s_addr = daddr->s_addr;
888
889 if (verbose)
890 print_firewall_line(fw, *handle);
891 return iptc_replace_entry(chain, fw, rulenum, handle);
892}
893
894static int
895insert_entry(const ipt_chainlabel chain,
896 struct ipt_entry *fw,
897 unsigned int rulenum,
898 unsigned int nsaddrs,
899 const struct in_addr saddrs[],
900 unsigned int ndaddrs,
901 const struct in_addr daddrs[],
902 int verbose,
903 iptc_handle_t *handle)
904{
905 unsigned int i, j;
906 int ret = 1;
907
908 for (i = 0; i < nsaddrs; i++) {
909 fw->ip.src.s_addr = saddrs[i].s_addr;
910 for (j = 0; j < ndaddrs; j++) {
911 fw->ip.dst.s_addr = daddrs[j].s_addr;
912 if (verbose)
913 print_firewall_line(fw, *handle);
914 ret &= iptc_insert_entry(chain, fw, rulenum, handle);
915 }
916 }
917
918 return ret;
919}
920
Rusty Russell2e0a3212000-04-19 11:23:18 +0000921static unsigned char *
Martin Josefsson78cafda2004-02-02 20:01:18 +0000922make_delete_mask(struct ipt_entry *fw, struct iptables_rule_match *matches)
Rusty Russell2e0a3212000-04-19 11:23:18 +0000923{
924 /* Establish mask for comparison */
925 unsigned int size;
Martin Josefsson78cafda2004-02-02 20:01:18 +0000926 struct iptables_rule_match *matchp;
Rusty Russell2e0a3212000-04-19 11:23:18 +0000927 unsigned char *mask, *mptr;
928
929 size = sizeof(struct ipt_entry);
Martin Josefsson78cafda2004-02-02 20:01:18 +0000930 for (matchp = matches; matchp; matchp = matchp->next)
931 size += IPT_ALIGN(sizeof(struct ipt_entry_match)) + matchp->match->size;
Rusty Russell2e0a3212000-04-19 11:23:18 +0000932
Rusty Russell9e1d2142000-04-23 09:11:12 +0000933 mask = fw_calloc(1, size
Rusty Russell73f72f52000-07-03 10:17:57 +0000934 + IPT_ALIGN(sizeof(struct ipt_entry_target))
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000935 + xtables_targets->size);
Rusty Russell2e0a3212000-04-19 11:23:18 +0000936
Rusty Russell9e1d2142000-04-23 09:11:12 +0000937 memset(mask, 0xFF, sizeof(struct ipt_entry));
938 mptr = mask + sizeof(struct ipt_entry);
Rusty Russell2e0a3212000-04-19 11:23:18 +0000939
Martin Josefsson78cafda2004-02-02 20:01:18 +0000940 for (matchp = matches; matchp; matchp = matchp->next) {
Rusty Russell2e0a3212000-04-19 11:23:18 +0000941 memset(mptr, 0xFF,
Rusty Russell73f72f52000-07-03 10:17:57 +0000942 IPT_ALIGN(sizeof(struct ipt_entry_match))
Martin Josefsson78cafda2004-02-02 20:01:18 +0000943 + matchp->match->userspacesize);
944 mptr += IPT_ALIGN(sizeof(struct ipt_entry_match)) + matchp->match->size;
Rusty Russell2e0a3212000-04-19 11:23:18 +0000945 }
946
Rusty Russella4d3e1f2001-01-07 06:56:02 +0000947 memset(mptr, 0xFF,
Rusty Russell73f72f52000-07-03 10:17:57 +0000948 IPT_ALIGN(sizeof(struct ipt_entry_target))
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000949 + xtables_targets->userspacesize);
Rusty Russell2e0a3212000-04-19 11:23:18 +0000950
951 return mask;
952}
953
Marc Bouchere6869a82000-03-20 06:03:29 +0000954static int
955delete_entry(const ipt_chainlabel chain,
956 struct ipt_entry *fw,
957 unsigned int nsaddrs,
958 const struct in_addr saddrs[],
959 unsigned int ndaddrs,
960 const struct in_addr daddrs[],
961 int verbose,
Martin Josefsson78cafda2004-02-02 20:01:18 +0000962 iptc_handle_t *handle,
963 struct iptables_rule_match *matches)
Marc Bouchere6869a82000-03-20 06:03:29 +0000964{
965 unsigned int i, j;
966 int ret = 1;
Rusty Russell2e0a3212000-04-19 11:23:18 +0000967 unsigned char *mask;
Marc Bouchere6869a82000-03-20 06:03:29 +0000968
Martin Josefsson78cafda2004-02-02 20:01:18 +0000969 mask = make_delete_mask(fw, matches);
Marc Bouchere6869a82000-03-20 06:03:29 +0000970 for (i = 0; i < nsaddrs; i++) {
971 fw->ip.src.s_addr = saddrs[i].s_addr;
972 for (j = 0; j < ndaddrs; j++) {
973 fw->ip.dst.s_addr = daddrs[j].s_addr;
974 if (verbose)
975 print_firewall_line(fw, *handle);
Rusty Russell2e0a3212000-04-19 11:23:18 +0000976 ret &= iptc_delete_entry(chain, fw, mask, handle);
Marc Bouchere6869a82000-03-20 06:03:29 +0000977 }
978 }
Martin Josefsson4dd5fed2004-05-18 18:09:43 +0000979 free(mask);
980
Marc Bouchere6869a82000-03-20 06:03:29 +0000981 return ret;
982}
983
Harald Welteae1ff9f2000-12-01 14:26:20 +0000984int
Marc Bouchere6869a82000-03-20 06:03:29 +0000985for_each_chain(int (*fn)(const ipt_chainlabel, int, iptc_handle_t *),
Rusty Russell9e1d2142000-04-23 09:11:12 +0000986 int verbose, int builtinstoo, iptc_handle_t *handle)
Marc Bouchere6869a82000-03-20 06:03:29 +0000987{
988 int ret = 1;
Rusty Russell9e1d2142000-04-23 09:11:12 +0000989 const char *chain;
990 char *chains;
991 unsigned int i, chaincount = 0;
Marc Bouchere6869a82000-03-20 06:03:29 +0000992
Rusty Russell9e1d2142000-04-23 09:11:12 +0000993 chain = iptc_first_chain(handle);
994 while (chain) {
995 chaincount++;
996 chain = iptc_next_chain(handle);
Marc Bouchere6869a82000-03-20 06:03:29 +0000997 }
998
Rusty Russell9e1d2142000-04-23 09:11:12 +0000999 chains = fw_malloc(sizeof(ipt_chainlabel) * chaincount);
1000 i = 0;
1001 chain = iptc_first_chain(handle);
1002 while (chain) {
1003 strcpy(chains + i*sizeof(ipt_chainlabel), chain);
1004 i++;
1005 chain = iptc_next_chain(handle);
1006 }
1007
1008 for (i = 0; i < chaincount; i++) {
1009 if (!builtinstoo
1010 && iptc_builtin(chains + i*sizeof(ipt_chainlabel),
Harald Welte3a506ac2004-08-30 16:00:09 +00001011 *handle) == 1)
Rusty Russell9e1d2142000-04-23 09:11:12 +00001012 continue;
1013 ret &= fn(chains + i*sizeof(ipt_chainlabel), verbose, handle);
1014 }
1015
1016 free(chains);
Marc Bouchere6869a82000-03-20 06:03:29 +00001017 return ret;
1018}
1019
Harald Welteae1ff9f2000-12-01 14:26:20 +00001020int
Marc Bouchere6869a82000-03-20 06:03:29 +00001021flush_entries(const ipt_chainlabel chain, int verbose,
1022 iptc_handle_t *handle)
1023{
1024 if (!chain)
Rusty Russell9e1d2142000-04-23 09:11:12 +00001025 return for_each_chain(flush_entries, verbose, 1, handle);
Rusty Russell7e53bf92000-03-20 07:03:28 +00001026
1027 if (verbose)
1028 fprintf(stdout, "Flushing chain `%s'\n", chain);
1029 return iptc_flush_entries(chain, handle);
1030}
Marc Bouchere6869a82000-03-20 06:03:29 +00001031
1032static int
1033zero_entries(const ipt_chainlabel chain, int verbose,
1034 iptc_handle_t *handle)
1035{
1036 if (!chain)
Rusty Russell9e1d2142000-04-23 09:11:12 +00001037 return for_each_chain(zero_entries, verbose, 1, handle);
Rusty Russell7e53bf92000-03-20 07:03:28 +00001038
Marc Bouchere6869a82000-03-20 06:03:29 +00001039 if (verbose)
1040 fprintf(stdout, "Zeroing chain `%s'\n", chain);
1041 return iptc_zero_entries(chain, handle);
1042}
1043
Harald Welteae1ff9f2000-12-01 14:26:20 +00001044int
Marc Bouchere6869a82000-03-20 06:03:29 +00001045delete_chain(const ipt_chainlabel chain, int verbose,
1046 iptc_handle_t *handle)
1047{
Rusty Russell9e1d2142000-04-23 09:11:12 +00001048 if (!chain)
1049 return for_each_chain(delete_chain, verbose, 0, handle);
Marc Bouchere6869a82000-03-20 06:03:29 +00001050
1051 if (verbose)
Max Kellermann5b76f682008-01-29 13:42:48 +00001052 fprintf(stdout, "Deleting chain `%s'\n", chain);
Marc Bouchere6869a82000-03-20 06:03:29 +00001053 return iptc_delete_chain(chain, handle);
1054}
1055
1056static int
1057list_entries(const ipt_chainlabel chain, int verbose, int numeric,
1058 int expanded, int linenumbers, iptc_handle_t *handle)
1059{
1060 int found = 0;
Rusty Russell9e1d2142000-04-23 09:11:12 +00001061 unsigned int format;
1062 const char *this;
Marc Bouchere6869a82000-03-20 06:03:29 +00001063
1064 format = FMT_OPTIONS;
1065 if (!verbose)
1066 format |= FMT_NOCOUNTS;
1067 else
1068 format |= FMT_VIA;
1069
1070 if (numeric)
1071 format |= FMT_NUMERIC;
1072
1073 if (!expanded)
1074 format |= FMT_KILOMEGAGIGA;
1075
1076 if (linenumbers)
1077 format |= FMT_LINENUMBERS;
1078
Rusty Russell9e1d2142000-04-23 09:11:12 +00001079 for (this = iptc_first_chain(handle);
1080 this;
1081 this = iptc_next_chain(handle)) {
1082 const struct ipt_entry *i;
1083 unsigned int num;
Marc Bouchere6869a82000-03-20 06:03:29 +00001084
Marc Bouchere6869a82000-03-20 06:03:29 +00001085 if (chain && strcmp(chain, this) != 0)
1086 continue;
1087
1088 if (found) printf("\n");
1089
1090 print_header(format, this, handle);
Rusty Russell9e1d2142000-04-23 09:11:12 +00001091 i = iptc_first_rule(this, handle);
1092
1093 num = 0;
1094 while (i) {
1095 print_firewall(i,
1096 iptc_get_target(i, handle),
1097 num++,
Marc Bouchere6869a82000-03-20 06:03:29 +00001098 format,
1099 *handle);
Rusty Russell9e1d2142000-04-23 09:11:12 +00001100 i = iptc_next_rule(i, handle);
1101 }
Marc Bouchere6869a82000-03-20 06:03:29 +00001102 found = 1;
1103 }
1104
1105 errno = ENOENT;
1106 return found;
1107}
1108
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001109static void print_proto(u_int16_t proto, int invert)
1110{
1111 if (proto) {
1112 unsigned int i;
1113 const char *invertstr = invert ? "! " : "";
1114
1115 struct protoent *pent = getprotobynumber(proto);
1116 if (pent) {
1117 printf("-p %s%s ", invertstr, pent->p_name);
1118 return;
1119 }
1120
1121 for (i = 0; i < sizeof(chain_protos)/sizeof(struct pprot); i++)
1122 if (chain_protos[i].num == proto) {
1123 printf("-p %s%s ",
1124 invertstr, chain_protos[i].name);
1125 return;
1126 }
1127
1128 printf("-p %s%u ", invertstr, proto);
1129 }
1130}
1131
1132#define IP_PARTS_NATIVE(n) \
1133(unsigned int)((n)>>24)&0xFF, \
1134(unsigned int)((n)>>16)&0xFF, \
1135(unsigned int)((n)>>8)&0xFF, \
1136(unsigned int)((n)&0xFF)
1137
1138#define IP_PARTS(n) IP_PARTS_NATIVE(ntohl(n))
1139
1140/* This assumes that mask is contiguous, and byte-bounded. */
1141static void
1142print_iface(char letter, const char *iface, const unsigned char *mask,
1143 int invert)
1144{
1145 unsigned int i;
1146
1147 if (mask[0] == 0)
1148 return;
1149
1150 printf("-%c %s", letter, invert ? "! " : "");
1151
1152 for (i = 0; i < IFNAMSIZ; i++) {
1153 if (mask[i] != 0) {
1154 if (iface[i] != '\0')
1155 printf("%c", iface[i]);
1156 } else {
1157 /* we can access iface[i-1] here, because
1158 * a few lines above we make sure that mask[0] != 0 */
1159 if (iface[i-1] != '\0')
1160 printf("+");
1161 break;
1162 }
1163 }
1164
1165 printf(" ");
1166}
1167
1168static int print_match_save(const struct ipt_entry_match *e,
1169 const struct ipt_ip *ip)
1170{
1171 struct xtables_match *match
1172 = find_match(e->u.user.name, TRY_LOAD, NULL);
1173
1174 if (match) {
1175 printf("-m %s ", e->u.user.name);
1176
1177 /* some matches don't provide a save function */
1178 if (match->save)
1179 match->save(ip, e);
1180 } else {
1181 if (e->u.match_size) {
1182 fprintf(stderr,
1183 "Can't find library for match `%s'\n",
1184 e->u.user.name);
1185 exit(1);
1186 }
1187 }
1188 return 0;
1189}
1190
1191/* print a given ip including mask if neccessary */
1192static void print_ip(char *prefix, u_int32_t ip, u_int32_t mask, int invert)
1193{
1194 u_int32_t bits, hmask = ntohl(mask);
1195 int i;
1196
1197 if (!mask && !ip && !invert)
1198 return;
1199
1200 printf("%s %s%u.%u.%u.%u",
1201 prefix,
1202 invert ? "! " : "",
1203 IP_PARTS(ip));
1204
1205 if (mask == 0xFFFFFFFFU) {
1206 printf("/32 ");
1207 return;
1208 }
1209
1210 i = 32;
1211 bits = 0xFFFFFFFEU;
1212 while (--i >= 0 && hmask != bits)
1213 bits <<= 1;
1214 if (i >= 0)
1215 printf("/%u ", i);
1216 else
1217 printf("/%u.%u.%u.%u ", IP_PARTS(mask));
1218}
1219
1220/* We want this to be readable, so only print out neccessary fields.
1221 * Because that's the kind of world I want to live in. */
1222void print_rule(const struct ipt_entry *e,
1223 iptc_handle_t *h, const char *chain, int counters)
1224{
1225 struct ipt_entry_target *t;
1226 const char *target_name;
1227
1228 /* print counters for iptables-save */
1229 if (counters > 0)
1230 printf("[%llu:%llu] ", (unsigned long long)e->counters.pcnt, (unsigned long long)e->counters.bcnt);
1231
1232 /* print chain name */
1233 printf("-A %s ", chain);
1234
1235 /* Print IP part. */
1236 print_ip("-s", e->ip.src.s_addr,e->ip.smsk.s_addr,
1237 e->ip.invflags & IPT_INV_SRCIP);
1238
1239 print_ip("-d", e->ip.dst.s_addr, e->ip.dmsk.s_addr,
1240 e->ip.invflags & IPT_INV_DSTIP);
1241
1242 print_iface('i', e->ip.iniface, e->ip.iniface_mask,
1243 e->ip.invflags & IPT_INV_VIA_IN);
1244
1245 print_iface('o', e->ip.outiface, e->ip.outiface_mask,
1246 e->ip.invflags & IPT_INV_VIA_OUT);
1247
1248 print_proto(e->ip.proto, e->ip.invflags & IPT_INV_PROTO);
1249
1250 if (e->ip.flags & IPT_F_FRAG)
1251 printf("%s-f ",
1252 e->ip.invflags & IPT_INV_FRAG ? "! " : "");
1253
1254 /* Print matchinfo part */
1255 if (e->target_offset) {
1256 IPT_MATCH_ITERATE(e, print_match_save, &e->ip);
1257 }
1258
1259 /* print counters for iptables -R */
1260 if (counters < 0)
1261 printf("-c %llu %llu ", (unsigned long long)e->counters.pcnt, (unsigned long long)e->counters.bcnt);
1262
1263 /* Print target name */
1264 target_name = iptc_get_target(e, h);
1265 if (target_name && (*target_name != '\0'))
1266#ifdef IPT_F_GOTO
1267 printf("-%c %s ", e->ip.flags & IPT_F_GOTO ? 'g' : 'j', target_name);
1268#else
1269 printf("-j %s ", target_name);
1270#endif
1271
1272 /* Print targinfo part */
1273 t = ipt_get_target((struct ipt_entry *)e);
1274 if (t->u.user.name[0]) {
1275 struct xtables_target *target
1276 = find_target(t->u.user.name, TRY_LOAD);
1277
1278 if (!target) {
1279 fprintf(stderr, "Can't find library for target `%s'\n",
1280 t->u.user.name);
1281 exit(1);
1282 }
1283
1284 if (target->save)
1285 target->save(&e->ip, t);
1286 else {
1287 /* If the target size is greater than ipt_entry_target
1288 * there is something to be saved, we just don't know
1289 * how to print it */
1290 if (t->u.target_size !=
1291 sizeof(struct ipt_entry_target)) {
1292 fprintf(stderr, "Target `%s' is missing "
1293 "save function\n",
1294 t->u.user.name);
1295 exit(1);
1296 }
1297 }
1298 }
1299 printf("\n");
1300}
1301
1302static int
1303list_rules(const ipt_chainlabel chain, int counters,
1304 iptc_handle_t *handle)
1305{
1306 const char *this = NULL;
1307 int found = 0;
1308
1309 if (counters)
1310 counters = -1; /* iptables -c format */
1311
1312 /* Dump out chain names first,
1313 * thereby preventing dependency conflicts */
1314 for (this = iptc_first_chain(handle);
1315 this;
1316 this = iptc_next_chain(handle)) {
1317 if (chain && strcmp(this, chain) != 0)
1318 continue;
1319
1320 if (iptc_builtin(this, *handle)) {
1321 struct ipt_counters count;
1322 printf("-P %s %s", this, iptc_get_policy(this, &count, handle));
1323 if (counters)
1324 printf(" -c %llu %llu", (unsigned long long)count.pcnt, (unsigned long long)count.bcnt);
1325 printf("\n");
1326 } else {
1327 printf("-N %s\n", this);
1328 }
1329 }
1330
1331 for (this = iptc_first_chain(handle);
1332 this;
1333 this = iptc_next_chain(handle)) {
1334 const struct ipt_entry *e;
1335
1336 if (chain && strcmp(this, chain) != 0)
1337 continue;
1338
1339 /* Dump out rules */
1340 e = iptc_first_rule(this, handle);
1341 while(e) {
1342 print_rule(e, handle, this, counters);
1343 e = iptc_next_rule(e, handle);
1344 }
1345 found = 1;
1346 }
1347
1348 errno = ENOENT;
1349 return found;
1350}
1351
Marc Bouchere6869a82000-03-20 06:03:29 +00001352static struct ipt_entry *
1353generate_entry(const struct ipt_entry *fw,
Martin Josefsson78cafda2004-02-02 20:01:18 +00001354 struct iptables_rule_match *matches,
Marc Bouchere6869a82000-03-20 06:03:29 +00001355 struct ipt_entry_target *target)
1356{
1357 unsigned int size;
Martin Josefsson78cafda2004-02-02 20:01:18 +00001358 struct iptables_rule_match *matchp;
Marc Bouchere6869a82000-03-20 06:03:29 +00001359 struct ipt_entry *e;
1360
1361 size = sizeof(struct ipt_entry);
Martin Josefsson78cafda2004-02-02 20:01:18 +00001362 for (matchp = matches; matchp; matchp = matchp->next)
1363 size += matchp->match->m->u.match_size;
Marc Bouchere6869a82000-03-20 06:03:29 +00001364
Rusty Russell228e98d2000-04-27 10:28:06 +00001365 e = fw_malloc(size + target->u.target_size);
Marc Bouchere6869a82000-03-20 06:03:29 +00001366 *e = *fw;
1367 e->target_offset = size;
Rusty Russell228e98d2000-04-27 10:28:06 +00001368 e->next_offset = size + target->u.target_size;
Marc Bouchere6869a82000-03-20 06:03:29 +00001369
1370 size = 0;
Martin Josefsson78cafda2004-02-02 20:01:18 +00001371 for (matchp = matches; matchp; matchp = matchp->next) {
1372 memcpy(e->elems + size, matchp->match->m, matchp->match->m->u.match_size);
1373 size += matchp->match->m->u.match_size;
Marc Bouchere6869a82000-03-20 06:03:29 +00001374 }
Rusty Russell228e98d2000-04-27 10:28:06 +00001375 memcpy(e->elems + size, target, target->u.target_size);
Marc Bouchere6869a82000-03-20 06:03:29 +00001376
1377 return e;
1378}
1379
Jan Engelhardt33690a12008-02-11 00:54:00 +01001380static void clear_rule_matches(struct iptables_rule_match **matches)
Martin Josefsson78cafda2004-02-02 20:01:18 +00001381{
1382 struct iptables_rule_match *matchp, *tmp;
1383
1384 for (matchp = *matches; matchp;) {
1385 tmp = matchp->next;
Harald Welted6bc6082006-02-11 09:34:16 +00001386 if (matchp->match->m) {
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00001387 free(matchp->match->m);
Harald Welted6bc6082006-02-11 09:34:16 +00001388 matchp->match->m = NULL;
1389 }
Joszef Kadlecsika258ad72006-03-03 09:36:50 +00001390 if (matchp->match == matchp->match->next) {
1391 free(matchp->match);
1392 matchp->match = NULL;
1393 }
Martin Josefsson78cafda2004-02-02 20:01:18 +00001394 free(matchp);
1395 matchp = tmp;
1396 }
1397
1398 *matches = NULL;
1399}
1400
Rusty Russell3aef54d2005-01-03 03:48:40 +00001401static void set_revision(char *name, u_int8_t revision)
1402{
1403 /* Old kernel sources don't have ".revision" field,
1404 but we stole a byte from name. */
1405 name[IPT_FUNCTION_MAXNAMELEN - 2] = '\0';
1406 name[IPT_FUNCTION_MAXNAMELEN - 1] = revision;
1407}
1408
Phil Oester8cf65912005-09-19 15:00:33 +00001409void
1410get_kernel_version(void) {
1411 static struct utsname uts;
1412 int x = 0, y = 0, z = 0;
1413
1414 if (uname(&uts) == -1) {
1415 fprintf(stderr, "Unable to retrieve kernel version.\n");
1416 free_opts(1);
Max Kellermann5b76f682008-01-29 13:42:48 +00001417 exit(1);
Phil Oester8cf65912005-09-19 15:00:33 +00001418 }
1419
1420 sscanf(uts.release, "%d.%d.%d", &x, &y, &z);
1421 kernel_version = LINUX_VERSION(x, y, z);
1422}
1423
Marc Bouchere6869a82000-03-20 06:03:29 +00001424int do_command(int argc, char *argv[], char **table, iptc_handle_t *handle)
1425{
1426 struct ipt_entry fw, *e = NULL;
1427 int invert = 0;
1428 unsigned int nsaddrs = 0, ndaddrs = 0;
1429 struct in_addr *saddrs = NULL, *daddrs = NULL;
1430
1431 int c, verbose = 0;
1432 const char *chain = NULL;
1433 const char *shostnetworkmask = NULL, *dhostnetworkmask = NULL;
1434 const char *policy = NULL, *newname = NULL;
1435 unsigned int rulenum = 0, options = 0, command = 0;
Harald Welteccd49e52001-01-23 22:54:34 +00001436 const char *pcnt = NULL, *bcnt = NULL;
Marc Bouchere6869a82000-03-20 06:03:29 +00001437 int ret = 1;
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +02001438 struct xtables_match *m;
Martin Josefsson78cafda2004-02-02 20:01:18 +00001439 struct iptables_rule_match *matches = NULL;
1440 struct iptables_rule_match *matchp;
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +02001441 struct xtables_target *target = NULL;
1442 struct xtables_target *t;
Marc Bouchere6869a82000-03-20 06:03:29 +00001443 const char *jumpto = "";
1444 char *protocol = NULL;
Harald Welte2d86b772002-08-26 12:21:44 +00001445 int proto_used = 0;
Patrick McHardy875441e2007-10-17 08:48:58 +00001446 unsigned long long cnt;
Marc Bouchere6869a82000-03-20 06:03:29 +00001447
1448 memset(&fw, 0, sizeof(fw));
1449
Harald Welteae1ff9f2000-12-01 14:26:20 +00001450 /* re-set optind to 0 in case do_command gets called
1451 * a second time */
1452 optind = 0;
1453
1454 /* clear mflags in case do_command gets called a second time
1455 * (we clear the global list of all matches for security)*/
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +00001456 for (m = xtables_matches; m; m = m->next)
Harald Welteae1ff9f2000-12-01 14:26:20 +00001457 m->mflags = 0;
Harald Welteae1ff9f2000-12-01 14:26:20 +00001458
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +00001459 for (t = xtables_targets; t; t = t->next) {
Harald Welteae1ff9f2000-12-01 14:26:20 +00001460 t->tflags = 0;
1461 t->used = 0;
1462 }
1463
Marc Bouchere6869a82000-03-20 06:03:29 +00001464 /* Suppress error messages: we may add new options if we
1465 demand-load a protocol. */
1466 opterr = 0;
1467
1468 while ((c = getopt_long(argc, argv,
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001469 "-A:D:R:I:L::S::M:F::Z::N:X::E:P:Vh::o:p:s:d:j:i:fbvnt:m:xc:g:",
Marc Bouchere6869a82000-03-20 06:03:29 +00001470 opts, NULL)) != -1) {
1471 switch (c) {
1472 /*
1473 * Command selection
1474 */
1475 case 'A':
1476 add_command(&command, CMD_APPEND, CMD_NONE,
1477 invert);
1478 chain = optarg;
1479 break;
1480
1481 case 'D':
1482 add_command(&command, CMD_DELETE, CMD_NONE,
1483 invert);
1484 chain = optarg;
1485 if (optind < argc && argv[optind][0] != '-'
1486 && argv[optind][0] != '!') {
1487 rulenum = parse_rulenumber(argv[optind++]);
1488 command = CMD_DELETE_NUM;
1489 }
1490 break;
1491
Marc Bouchere6869a82000-03-20 06:03:29 +00001492 case 'R':
1493 add_command(&command, CMD_REPLACE, CMD_NONE,
1494 invert);
1495 chain = optarg;
1496 if (optind < argc && argv[optind][0] != '-'
1497 && argv[optind][0] != '!')
1498 rulenum = parse_rulenumber(argv[optind++]);
1499 else
1500 exit_error(PARAMETER_PROBLEM,
1501 "-%c requires a rule number",
1502 cmd2char(CMD_REPLACE));
1503 break;
1504
1505 case 'I':
1506 add_command(&command, CMD_INSERT, CMD_NONE,
1507 invert);
1508 chain = optarg;
1509 if (optind < argc && argv[optind][0] != '-'
1510 && argv[optind][0] != '!')
1511 rulenum = parse_rulenumber(argv[optind++]);
1512 else rulenum = 1;
1513 break;
1514
1515 case 'L':
1516 add_command(&command, CMD_LIST, CMD_ZERO,
1517 invert);
1518 if (optarg) chain = optarg;
1519 else if (optind < argc && argv[optind][0] != '-'
1520 && argv[optind][0] != '!')
1521 chain = argv[optind++];
1522 break;
1523
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001524 case 'S':
1525 add_command(&command, CMD_LIST_RULES, CMD_ZERO,
1526 invert);
1527 if (optarg) chain = optarg;
1528 else if (optind < argc && argv[optind][0] != '-'
1529 && argv[optind][0] != '!')
1530 chain = argv[optind++];
1531 break;
1532
Marc Bouchere6869a82000-03-20 06:03:29 +00001533 case 'F':
1534 add_command(&command, CMD_FLUSH, CMD_NONE,
1535 invert);
1536 if (optarg) chain = optarg;
1537 else if (optind < argc && argv[optind][0] != '-'
1538 && argv[optind][0] != '!')
1539 chain = argv[optind++];
1540 break;
1541
1542 case 'Z':
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001543 add_command(&command, CMD_ZERO, CMD_LIST|CMD_LIST_RULES,
Marc Bouchere6869a82000-03-20 06:03:29 +00001544 invert);
1545 if (optarg) chain = optarg;
1546 else if (optind < argc && argv[optind][0] != '-'
1547 && argv[optind][0] != '!')
1548 chain = argv[optind++];
1549 break;
1550
1551 case 'N':
Yasuyuki KOZAKAI8d8c8ea2005-06-13 01:06:10 +00001552 if (optarg && (*optarg == '-' || *optarg == '!'))
Harald Welte6336bfd2002-05-07 14:41:43 +00001553 exit_error(PARAMETER_PROBLEM,
1554 "chain name not allowed to start "
Yasuyuki KOZAKAI8d8c8ea2005-06-13 01:06:10 +00001555 "with `%c'\n", *optarg);
Joszef Kadlecsik08f15272002-06-24 12:37:29 +00001556 if (find_target(optarg, TRY_LOAD))
1557 exit_error(PARAMETER_PROBLEM,
1558 "chain name may not clash "
1559 "with target name\n");
Marc Bouchere6869a82000-03-20 06:03:29 +00001560 add_command(&command, CMD_NEW_CHAIN, CMD_NONE,
1561 invert);
1562 chain = optarg;
1563 break;
1564
1565 case 'X':
1566 add_command(&command, CMD_DELETE_CHAIN, CMD_NONE,
1567 invert);
1568 if (optarg) chain = optarg;
1569 else if (optind < argc && argv[optind][0] != '-'
1570 && argv[optind][0] != '!')
1571 chain = argv[optind++];
1572 break;
1573
1574 case 'E':
1575 add_command(&command, CMD_RENAME_CHAIN, CMD_NONE,
1576 invert);
1577 chain = optarg;
1578 if (optind < argc && argv[optind][0] != '-'
1579 && argv[optind][0] != '!')
1580 newname = argv[optind++];
M.P.Anand Babuc9f20d32000-06-09 09:22:38 +00001581 else
1582 exit_error(PARAMETER_PROBLEM,
Max Kellermann5b76f682008-01-29 13:42:48 +00001583 "-%c requires old-chain-name and "
M.P.Anand Babuc9f20d32000-06-09 09:22:38 +00001584 "new-chain-name",
1585 cmd2char(CMD_RENAME_CHAIN));
Marc Bouchere6869a82000-03-20 06:03:29 +00001586 break;
1587
1588 case 'P':
1589 add_command(&command, CMD_SET_POLICY, CMD_NONE,
1590 invert);
1591 chain = optarg;
1592 if (optind < argc && argv[optind][0] != '-'
1593 && argv[optind][0] != '!')
1594 policy = argv[optind++];
1595 else
1596 exit_error(PARAMETER_PROBLEM,
1597 "-%c requires a chain and a policy",
1598 cmd2char(CMD_SET_POLICY));
1599 break;
1600
1601 case 'h':
1602 if (!optarg)
1603 optarg = argv[optind];
1604
Rusty Russell2e0a3212000-04-19 11:23:18 +00001605 /* iptables -p icmp -h */
Martin Josefsson66aea6f2004-05-26 15:41:54 +00001606 if (!matches && protocol)
1607 find_match(protocol, TRY_LOAD, &matches);
Rusty Russell2e0a3212000-04-19 11:23:18 +00001608
Martin Josefsson66aea6f2004-05-26 15:41:54 +00001609 exit_printhelp(matches);
Marc Bouchere6869a82000-03-20 06:03:29 +00001610
1611 /*
1612 * Option selection
1613 */
1614 case 'p':
Harald Welteb77f1da2002-03-14 11:35:58 +00001615 check_inverse(optarg, &invert, &optind, argc);
Marc Bouchere6869a82000-03-20 06:03:29 +00001616 set_option(&options, OPT_PROTOCOL, &fw.ip.invflags,
1617 invert);
1618
1619 /* Canonicalize into lower case */
1620 for (protocol = argv[optind-1]; *protocol; protocol++)
1621 *protocol = tolower(*protocol);
1622
1623 protocol = argv[optind-1];
1624 fw.ip.proto = parse_protocol(protocol);
1625
1626 if (fw.ip.proto == 0
1627 && (fw.ip.invflags & IPT_INV_PROTO))
1628 exit_error(PARAMETER_PROBLEM,
1629 "rule would never match protocol");
Marc Bouchere6869a82000-03-20 06:03:29 +00001630 break;
1631
1632 case 's':
Harald Welteb77f1da2002-03-14 11:35:58 +00001633 check_inverse(optarg, &invert, &optind, argc);
Marc Bouchere6869a82000-03-20 06:03:29 +00001634 set_option(&options, OPT_SOURCE, &fw.ip.invflags,
1635 invert);
1636 shostnetworkmask = argv[optind-1];
Marc Bouchere6869a82000-03-20 06:03:29 +00001637 break;
1638
1639 case 'd':
Harald Welteb77f1da2002-03-14 11:35:58 +00001640 check_inverse(optarg, &invert, &optind, argc);
Marc Bouchere6869a82000-03-20 06:03:29 +00001641 set_option(&options, OPT_DESTINATION, &fw.ip.invflags,
1642 invert);
1643 dhostnetworkmask = argv[optind-1];
Marc Bouchere6869a82000-03-20 06:03:29 +00001644 break;
1645
Henrik Nordstrom17fc1632005-11-05 09:26:40 +00001646#ifdef IPT_F_GOTO
1647 case 'g':
1648 set_option(&options, OPT_JUMP, &fw.ip.invflags,
1649 invert);
1650 fw.ip.flags |= IPT_F_GOTO;
1651 jumpto = parse_target(optarg);
1652 break;
1653#endif
1654
Marc Bouchere6869a82000-03-20 06:03:29 +00001655 case 'j':
1656 set_option(&options, OPT_JUMP, &fw.ip.invflags,
1657 invert);
1658 jumpto = parse_target(optarg);
Rusty Russell859f7262000-08-24 06:00:33 +00001659 /* TRY_LOAD (may be chain name) */
1660 target = find_target(jumpto, TRY_LOAD);
Marc Bouchere6869a82000-03-20 06:03:29 +00001661
1662 if (target) {
Rusty Russell228e98d2000-04-27 10:28:06 +00001663 size_t size;
1664
Rusty Russell73f72f52000-07-03 10:17:57 +00001665 size = IPT_ALIGN(sizeof(struct ipt_entry_target))
1666 + target->size;
Marc Bouchere6869a82000-03-20 06:03:29 +00001667
Rusty Russell2e0a3212000-04-19 11:23:18 +00001668 target->t = fw_calloc(1, size);
Rusty Russell228e98d2000-04-27 10:28:06 +00001669 target->t->u.target_size = size;
1670 strcpy(target->t->u.user.name, jumpto);
Rusty Russell3aef54d2005-01-03 03:48:40 +00001671 set_revision(target->t->u.user.name,
1672 target->revision);
Pablo Neira8115e542005-02-14 13:13:04 +00001673 if (target->init != NULL)
Peter Rileyea146a92007-09-02 13:09:07 +00001674 target->init(target->t);
Max Kellermann5b76f682008-01-29 13:42:48 +00001675 opts = merge_options(opts,
1676 target->extra_opts,
Pablo Neira Ayuso8e707d72008-01-17 17:30:27 +00001677 &target->option_offset);
1678 if (opts == NULL)
1679 exit_error(OTHER_PROBLEM,
1680 "can't alloc memory!");
Marc Bouchere6869a82000-03-20 06:03:29 +00001681 }
1682 break;
1683
1684
1685 case 'i':
Harald Welteb77f1da2002-03-14 11:35:58 +00001686 check_inverse(optarg, &invert, &optind, argc);
Marc Bouchere6869a82000-03-20 06:03:29 +00001687 set_option(&options, OPT_VIANAMEIN, &fw.ip.invflags,
1688 invert);
1689 parse_interface(argv[optind-1],
1690 fw.ip.iniface,
1691 fw.ip.iniface_mask);
Marc Bouchere6869a82000-03-20 06:03:29 +00001692 break;
1693
1694 case 'o':
Harald Welteb77f1da2002-03-14 11:35:58 +00001695 check_inverse(optarg, &invert, &optind, argc);
Marc Bouchere6869a82000-03-20 06:03:29 +00001696 set_option(&options, OPT_VIANAMEOUT, &fw.ip.invflags,
1697 invert);
1698 parse_interface(argv[optind-1],
1699 fw.ip.outiface,
1700 fw.ip.outiface_mask);
Marc Bouchere6869a82000-03-20 06:03:29 +00001701 break;
1702
1703 case 'f':
1704 set_option(&options, OPT_FRAGMENT, &fw.ip.invflags,
1705 invert);
1706 fw.ip.flags |= IPT_F_FRAG;
Marc Bouchere6869a82000-03-20 06:03:29 +00001707 break;
1708
1709 case 'v':
1710 if (!verbose)
1711 set_option(&options, OPT_VERBOSE,
1712 &fw.ip.invflags, invert);
1713 verbose++;
1714 break;
1715
Rusty Russell52a51492000-05-02 16:44:29 +00001716 case 'm': {
1717 size_t size;
1718
Marc Bouchere6869a82000-03-20 06:03:29 +00001719 if (invert)
1720 exit_error(PARAMETER_PROBLEM,
1721 "unexpected ! flag before --match");
1722
Martin Josefsson78cafda2004-02-02 20:01:18 +00001723 m = find_match(optarg, LOAD_MUST_SUCCEED, &matches);
Rusty Russell73f72f52000-07-03 10:17:57 +00001724 size = IPT_ALIGN(sizeof(struct ipt_entry_match))
1725 + m->size;
Rusty Russell52a51492000-05-02 16:44:29 +00001726 m->m = fw_calloc(1, size);
1727 m->m->u.match_size = size;
Rusty Russell27ff3472000-05-12 14:04:50 +00001728 strcpy(m->m->u.user.name, m->name);
Rusty Russell3aef54d2005-01-03 03:48:40 +00001729 set_revision(m->m->u.user.name, m->revision);
Pablo Neira8115e542005-02-14 13:13:04 +00001730 if (m->init != NULL)
Peter Rileyea146a92007-09-02 13:09:07 +00001731 m->init(m->m);
Pablo Neira Ayuso8e707d72008-01-17 17:30:27 +00001732 if (m != m->next) {
Joszef Kadlecsika258ad72006-03-03 09:36:50 +00001733 /* Merge options for non-cloned matches */
Max Kellermann5b76f682008-01-29 13:42:48 +00001734 opts = merge_options(opts,
1735 m->extra_opts,
Pablo Neira Ayuso8e707d72008-01-17 17:30:27 +00001736 &m->option_offset);
1737 if (opts == NULL)
1738 exit_error(OTHER_PROBLEM,
1739 "can't alloc memory!");
1740 }
Rusty Russell52a51492000-05-02 16:44:29 +00001741 }
1742 break;
Marc Bouchere6869a82000-03-20 06:03:29 +00001743
1744 case 'n':
1745 set_option(&options, OPT_NUMERIC, &fw.ip.invflags,
1746 invert);
1747 break;
1748
1749 case 't':
1750 if (invert)
1751 exit_error(PARAMETER_PROBLEM,
1752 "unexpected ! flag before --table");
1753 *table = argv[optind-1];
1754 break;
1755
1756 case 'x':
1757 set_option(&options, OPT_EXPANDED, &fw.ip.invflags,
1758 invert);
1759 break;
1760
1761 case 'V':
1762 if (invert)
1763 printf("Not %s ;-)\n", program_version);
1764 else
1765 printf("%s v%s\n",
1766 program_name, program_version);
1767 exit(0);
1768
1769 case '0':
1770 set_option(&options, OPT_LINENUMBERS, &fw.ip.invflags,
1771 invert);
1772 break;
1773
Harald Welte82dd2ec2000-12-19 05:18:15 +00001774 case 'M':
Jan Engelhardtdbb77542008-02-11 00:33:30 +01001775 modprobe_program = optarg;
Harald Welte82dd2ec2000-12-19 05:18:15 +00001776 break;
1777
Harald Welteccd49e52001-01-23 22:54:34 +00001778 case 'c':
1779
1780 set_option(&options, OPT_COUNTERS, &fw.ip.invflags,
1781 invert);
1782 pcnt = optarg;
1783 if (optind < argc && argv[optind][0] != '-'
1784 && argv[optind][0] != '!')
1785 bcnt = argv[optind++];
1786 else
1787 exit_error(PARAMETER_PROBLEM,
1788 "-%c requires packet and byte counter",
1789 opt2char(OPT_COUNTERS));
1790
Patrick McHardy875441e2007-10-17 08:48:58 +00001791 if (sscanf(pcnt, "%llu", (unsigned long long *)&cnt) != 1)
Harald Welteccd49e52001-01-23 22:54:34 +00001792 exit_error(PARAMETER_PROBLEM,
1793 "-%c packet counter not numeric",
1794 opt2char(OPT_COUNTERS));
Patrick McHardy875441e2007-10-17 08:48:58 +00001795 fw.counters.pcnt = cnt;
Harald Welteccd49e52001-01-23 22:54:34 +00001796
Patrick McHardy875441e2007-10-17 08:48:58 +00001797 if (sscanf(bcnt, "%llu", (unsigned long long *)&cnt) != 1)
Harald Welteccd49e52001-01-23 22:54:34 +00001798 exit_error(PARAMETER_PROBLEM,
1799 "-%c byte counter not numeric",
1800 opt2char(OPT_COUNTERS));
Patrick McHardy875441e2007-10-17 08:48:58 +00001801 fw.counters.bcnt = cnt;
Harald Welteccd49e52001-01-23 22:54:34 +00001802 break;
1803
1804
Marc Bouchere6869a82000-03-20 06:03:29 +00001805 case 1: /* non option */
1806 if (optarg[0] == '!' && optarg[1] == '\0') {
1807 if (invert)
1808 exit_error(PARAMETER_PROBLEM,
1809 "multiple consecutive ! not"
1810 " allowed");
1811 invert = TRUE;
1812 optarg[0] = '\0';
1813 continue;
1814 }
Max Kellermannaae4f822007-10-17 16:36:49 +00001815 fprintf(stderr, "Bad argument `%s'\n", optarg);
Marc Bouchere6869a82000-03-20 06:03:29 +00001816 exit_tryhelp(2);
1817
1818 default:
Marc Bouchere6869a82000-03-20 06:03:29 +00001819 if (!target
1820 || !(target->parse(c - target->option_offset,
1821 argv, invert,
1822 &target->tflags,
1823 &fw, &target->t))) {
Martin Josefsson78cafda2004-02-02 20:01:18 +00001824 for (matchp = matches; matchp; matchp = matchp->next) {
Max Kellermann5b76f682008-01-29 13:42:48 +00001825 if (matchp->completed)
Joszef Kadlecsika258ad72006-03-03 09:36:50 +00001826 continue;
Martin Josefsson78cafda2004-02-02 20:01:18 +00001827 if (matchp->match->parse(c - matchp->match->option_offset,
Marc Bouchere6869a82000-03-20 06:03:29 +00001828 argv, invert,
Martin Josefsson78cafda2004-02-02 20:01:18 +00001829 &matchp->match->mflags,
Marc Bouchere6869a82000-03-20 06:03:29 +00001830 &fw,
Martin Josefsson78cafda2004-02-02 20:01:18 +00001831 &matchp->match->m))
Marc Bouchere6869a82000-03-20 06:03:29 +00001832 break;
1833 }
Martin Josefsson78cafda2004-02-02 20:01:18 +00001834 m = matchp ? matchp->match : NULL;
Harald Welte2d86b772002-08-26 12:21:44 +00001835
1836 /* If you listen carefully, you can
1837 actually hear this code suck. */
1838
1839 /* some explanations (after four different bugs
Joszef Kadlecsika258ad72006-03-03 09:36:50 +00001840 * in 3 different releases): If we encounter a
Harald Welte2d86b772002-08-26 12:21:44 +00001841 * parameter, that has not been parsed yet,
1842 * it's not an option of an explicitly loaded
1843 * match or a target. However, we support
1844 * implicit loading of the protocol match
1845 * extension. '-p tcp' means 'l4 proto 6' and
1846 * at the same time 'load tcp protocol match on
1847 * demand if we specify --dport'.
1848 *
1849 * To make this work, we need to make sure:
1850 * - the parameter has not been parsed by
1851 * a match (m above)
1852 * - a protocol has been specified
1853 * - the protocol extension has not been
1854 * loaded yet, or is loaded and unused
1855 * [think of iptables-restore!]
1856 * - the protocol extension can be successively
1857 * loaded
1858 */
1859 if (m == NULL
1860 && protocol
1861 && (!find_proto(protocol, DONT_LOAD,
Max Kellermann5b76f682008-01-29 13:42:48 +00001862 options&OPT_NUMERIC, NULL)
Harald Welte2d86b772002-08-26 12:21:44 +00001863 || (find_proto(protocol, DONT_LOAD,
Martin Josefsson78cafda2004-02-02 20:01:18 +00001864 options&OPT_NUMERIC, NULL)
Harald Welte2d86b772002-08-26 12:21:44 +00001865 && (proto_used == 0))
1866 )
1867 && (m = find_proto(protocol, TRY_LOAD,
Martin Josefsson78cafda2004-02-02 20:01:18 +00001868 options&OPT_NUMERIC, &matches))) {
Harald Welte2d86b772002-08-26 12:21:44 +00001869 /* Try loading protocol */
1870 size_t size;
Max Kellermann5b76f682008-01-29 13:42:48 +00001871
Harald Welte2d86b772002-08-26 12:21:44 +00001872 proto_used = 1;
1873
1874 size = IPT_ALIGN(sizeof(struct ipt_entry_match))
1875 + m->size;
1876
1877 m->m = fw_calloc(1, size);
1878 m->m->u.match_size = size;
1879 strcpy(m->m->u.user.name, m->name);
Rusty Russell3aef54d2005-01-03 03:48:40 +00001880 set_revision(m->m->u.user.name,
1881 m->revision);
Pablo Neira8115e542005-02-14 13:13:04 +00001882 if (m->init != NULL)
Peter Rileyea146a92007-09-02 13:09:07 +00001883 m->init(m->m);
Harald Welte2d86b772002-08-26 12:21:44 +00001884
1885 opts = merge_options(opts,
Max Kellermann5b76f682008-01-29 13:42:48 +00001886 m->extra_opts,
Pablo Neira Ayuso8e707d72008-01-17 17:30:27 +00001887 &m->option_offset);
1888 if (opts == NULL)
1889 exit_error(OTHER_PROBLEM,
1890 "can't alloc memory!");
Harald Welte2d86b772002-08-26 12:21:44 +00001891
1892 optind--;
1893 continue;
1894 }
Marc Bouchere6869a82000-03-20 06:03:29 +00001895 if (!m)
1896 exit_error(PARAMETER_PROBLEM,
1897 "Unknown arg `%s'",
1898 argv[optind-1]);
1899 }
1900 }
1901 invert = FALSE;
1902 }
1903
Martin Josefsson78cafda2004-02-02 20:01:18 +00001904 for (matchp = matches; matchp; matchp = matchp->next)
Jan Engelhardt830132a2007-10-04 16:24:50 +00001905 if (matchp->match->final_check != NULL)
1906 matchp->match->final_check(matchp->match->mflags);
Sven Kochfb1279a2001-02-27 12:25:12 +00001907
Jan Engelhardt830132a2007-10-04 16:24:50 +00001908 if (target != NULL && target->final_check != NULL)
Marc Bouchere6869a82000-03-20 06:03:29 +00001909 target->final_check(target->tflags);
1910
1911 /* Fix me: must put inverse options checking here --MN */
1912
1913 if (optind < argc)
1914 exit_error(PARAMETER_PROBLEM,
1915 "unknown arguments found on commandline");
1916 if (!command)
1917 exit_error(PARAMETER_PROBLEM, "no command specified");
1918 if (invert)
1919 exit_error(PARAMETER_PROBLEM,
1920 "nothing appropriate following !");
1921
Harald Welte6336bfd2002-05-07 14:41:43 +00001922 if (command & (CMD_REPLACE | CMD_INSERT | CMD_DELETE | CMD_APPEND)) {
Marc Bouchere6869a82000-03-20 06:03:29 +00001923 if (!(options & OPT_DESTINATION))
1924 dhostnetworkmask = "0.0.0.0/0";
1925 if (!(options & OPT_SOURCE))
1926 shostnetworkmask = "0.0.0.0/0";
1927 }
1928
1929 if (shostnetworkmask)
Jan Engelhardtbd943842008-01-20 13:38:08 +00001930 ipparse_hostnetworkmask(shostnetworkmask, &saddrs,
Max Kellermann5b76f682008-01-29 13:42:48 +00001931 &fw.ip.smsk, &nsaddrs);
Marc Bouchere6869a82000-03-20 06:03:29 +00001932
1933 if (dhostnetworkmask)
Jan Engelhardtbd943842008-01-20 13:38:08 +00001934 ipparse_hostnetworkmask(dhostnetworkmask, &daddrs,
Max Kellermann5b76f682008-01-29 13:42:48 +00001935 &fw.ip.dmsk, &ndaddrs);
Marc Bouchere6869a82000-03-20 06:03:29 +00001936
1937 if ((nsaddrs > 1 || ndaddrs > 1) &&
1938 (fw.ip.invflags & (IPT_INV_SRCIP | IPT_INV_DSTIP)))
1939 exit_error(PARAMETER_PROBLEM, "! not allowed with multiple"
1940 " source or destination IP addresses");
1941
Marc Bouchere6869a82000-03-20 06:03:29 +00001942 if (command == CMD_REPLACE && (nsaddrs != 1 || ndaddrs != 1))
1943 exit_error(PARAMETER_PROBLEM, "Replacement rule does not "
1944 "specify a unique address");
1945
1946 generic_opt_check(command, options);
1947
1948 if (chain && strlen(chain) > IPT_FUNCTION_MAXNAMELEN)
1949 exit_error(PARAMETER_PROBLEM,
1950 "chain name `%s' too long (must be under %i chars)",
1951 chain, IPT_FUNCTION_MAXNAMELEN);
1952
Harald Welteae1ff9f2000-12-01 14:26:20 +00001953 /* only allocate handle if we weren't called with a handle */
Martin Josefsson8371e152003-05-05 19:33:40 +00001954 if (!*handle)
Harald Welteae1ff9f2000-12-01 14:26:20 +00001955 *handle = iptc_init(*table);
1956
Rusty Russell8beb0492004-12-22 00:37:10 +00001957 /* try to insmod the module if iptc_init failed */
Jan Engelhardtdbb77542008-02-11 00:33:30 +01001958 if (!*handle && load_xtables_ko(modprobe_program, 0) != -1)
Harald Welte82dd2ec2000-12-19 05:18:15 +00001959 *handle = iptc_init(*table);
Harald Welte82dd2ec2000-12-19 05:18:15 +00001960
Marc Bouchere6869a82000-03-20 06:03:29 +00001961 if (!*handle)
1962 exit_error(VERSION_PROBLEM,
1963 "can't initialize iptables table `%s': %s",
1964 *table, iptc_strerror(errno));
1965
Harald Welte6336bfd2002-05-07 14:41:43 +00001966 if (command == CMD_APPEND
Marc Bouchere6869a82000-03-20 06:03:29 +00001967 || command == CMD_DELETE
1968 || command == CMD_INSERT
1969 || command == CMD_REPLACE) {
Rusty Russella4860fd2000-06-17 16:13:02 +00001970 if (strcmp(chain, "PREROUTING") == 0
1971 || strcmp(chain, "INPUT") == 0) {
1972 /* -o not valid with incoming packets. */
1973 if (options & OPT_VIANAMEOUT)
Marc Bouchere6869a82000-03-20 06:03:29 +00001974 exit_error(PARAMETER_PROBLEM,
1975 "Can't use -%c with %s\n",
1976 opt2char(OPT_VIANAMEOUT),
1977 chain);
1978 }
1979
Rusty Russella4860fd2000-06-17 16:13:02 +00001980 if (strcmp(chain, "POSTROUTING") == 0
1981 || strcmp(chain, "OUTPUT") == 0) {
1982 /* -i not valid with outgoing packets */
1983 if (options & OPT_VIANAMEIN)
Marc Bouchere6869a82000-03-20 06:03:29 +00001984 exit_error(PARAMETER_PROBLEM,
1985 "Can't use -%c with %s\n",
1986 opt2char(OPT_VIANAMEIN),
1987 chain);
1988 }
1989
1990 if (target && iptc_is_chain(jumpto, *handle)) {
Max Kellermannaae4f822007-10-17 16:36:49 +00001991 fprintf(stderr,
1992 "Warning: using chain %s, not extension\n",
1993 jumpto);
Marc Bouchere6869a82000-03-20 06:03:29 +00001994
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00001995 if (target->t)
1996 free(target->t);
1997
Marc Bouchere6869a82000-03-20 06:03:29 +00001998 target = NULL;
1999 }
2000
2001 /* If they didn't specify a target, or it's a chain
2002 name, use standard. */
2003 if (!target
2004 && (strlen(jumpto) == 0
2005 || iptc_is_chain(jumpto, *handle))) {
2006 size_t size;
Marc Bouchere6869a82000-03-20 06:03:29 +00002007
Rusty Russell52a51492000-05-02 16:44:29 +00002008 target = find_target(IPT_STANDARD_TARGET,
2009 LOAD_MUST_SUCCEED);
Marc Bouchere6869a82000-03-20 06:03:29 +00002010
2011 size = sizeof(struct ipt_entry_target)
Rusty Russell228e98d2000-04-27 10:28:06 +00002012 + target->size;
Rusty Russell2e0a3212000-04-19 11:23:18 +00002013 target->t = fw_calloc(1, size);
Rusty Russell228e98d2000-04-27 10:28:06 +00002014 target->t->u.target_size = size;
2015 strcpy(target->t->u.user.name, jumpto);
Pablo Neira0b905642005-11-17 13:04:49 +00002016 if (!iptc_is_chain(jumpto, *handle))
2017 set_revision(target->t->u.user.name,
2018 target->revision);
Pablo Neira8115e542005-02-14 13:13:04 +00002019 if (target->init != NULL)
Peter Rileyea146a92007-09-02 13:09:07 +00002020 target->init(target->t);
Marc Bouchere6869a82000-03-20 06:03:29 +00002021 }
2022
Rusty Russell7e53bf92000-03-20 07:03:28 +00002023 if (!target) {
Harald Weltef2a24bd2000-08-30 02:11:18 +00002024 /* it is no chain, and we can't load a plugin.
2025 * We cannot know if the plugin is corrupt, non
Rusty Russella4d3e1f2001-01-07 06:56:02 +00002026 * existant OR if the user just misspelled a
Harald Weltef2a24bd2000-08-30 02:11:18 +00002027 * chain. */
Henrik Nordstrom17fc1632005-11-05 09:26:40 +00002028#ifdef IPT_F_GOTO
2029 if (fw.ip.flags & IPT_F_GOTO)
2030 exit_error(PARAMETER_PROBLEM,
2031 "goto '%s' is not a chain\n", jumpto);
2032#endif
Harald Weltef2a24bd2000-08-30 02:11:18 +00002033 find_target(jumpto, LOAD_MUST_SUCCEED);
Marc Bouchere6869a82000-03-20 06:03:29 +00002034 } else {
Martin Josefsson78cafda2004-02-02 20:01:18 +00002035 e = generate_entry(&fw, matches, target->t);
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00002036 free(target->t);
Marc Bouchere6869a82000-03-20 06:03:29 +00002037 }
2038 }
2039
2040 switch (command) {
2041 case CMD_APPEND:
2042 ret = append_entry(chain, e,
2043 nsaddrs, saddrs, ndaddrs, daddrs,
2044 options&OPT_VERBOSE,
2045 handle);
2046 break;
Marc Bouchere6869a82000-03-20 06:03:29 +00002047 case CMD_DELETE:
2048 ret = delete_entry(chain, e,
2049 nsaddrs, saddrs, ndaddrs, daddrs,
2050 options&OPT_VERBOSE,
Martin Josefsson78cafda2004-02-02 20:01:18 +00002051 handle, matches);
Marc Bouchere6869a82000-03-20 06:03:29 +00002052 break;
2053 case CMD_DELETE_NUM:
2054 ret = iptc_delete_num_entry(chain, rulenum - 1, handle);
2055 break;
2056 case CMD_REPLACE:
2057 ret = replace_entry(chain, e, rulenum - 1,
2058 saddrs, daddrs, options&OPT_VERBOSE,
2059 handle);
2060 break;
2061 case CMD_INSERT:
2062 ret = insert_entry(chain, e, rulenum - 1,
2063 nsaddrs, saddrs, ndaddrs, daddrs,
2064 options&OPT_VERBOSE,
2065 handle);
2066 break;
Marc Bouchere6869a82000-03-20 06:03:29 +00002067 case CMD_FLUSH:
2068 ret = flush_entries(chain, options&OPT_VERBOSE, handle);
2069 break;
2070 case CMD_ZERO:
2071 ret = zero_entries(chain, options&OPT_VERBOSE, handle);
2072 break;
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02002073 case CMD_LIST:
Marc Bouchere6869a82000-03-20 06:03:29 +00002074 case CMD_LIST|CMD_ZERO:
2075 ret = list_entries(chain,
2076 options&OPT_VERBOSE,
2077 options&OPT_NUMERIC,
2078 options&OPT_EXPANDED,
2079 options&OPT_LINENUMBERS,
2080 handle);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02002081 if (ret && (command & CMD_ZERO))
2082 ret = zero_entries(chain,
2083 options&OPT_VERBOSE, handle);
2084 break;
2085 case CMD_LIST_RULES:
2086 case CMD_LIST_RULES|CMD_ZERO:
2087 ret = list_rules(chain,
2088 options&OPT_VERBOSE,
2089 handle);
2090 if (ret && (command & CMD_ZERO))
Marc Bouchere6869a82000-03-20 06:03:29 +00002091 ret = zero_entries(chain,
2092 options&OPT_VERBOSE, handle);
2093 break;
2094 case CMD_NEW_CHAIN:
2095 ret = iptc_create_chain(chain, handle);
2096 break;
2097 case CMD_DELETE_CHAIN:
2098 ret = delete_chain(chain, options&OPT_VERBOSE, handle);
2099 break;
2100 case CMD_RENAME_CHAIN:
2101 ret = iptc_rename_chain(chain, newname, handle);
2102 break;
2103 case CMD_SET_POLICY:
Henrik Nordstrom48c1bc62008-05-12 20:53:16 +02002104 ret = iptc_set_policy(chain, policy, options&OPT_COUNTERS ? &fw.counters : NULL, handle);
Marc Bouchere6869a82000-03-20 06:03:29 +00002105 break;
2106 default:
2107 /* We should never reach this... */
2108 exit_tryhelp(2);
2109 }
2110
2111 if (verbose > 1)
2112 dump_entries(*handle);
2113
Martin Josefsson78cafda2004-02-02 20:01:18 +00002114 clear_rule_matches(&matches);
2115
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00002116 if (e != NULL) {
2117 free(e);
2118 e = NULL;
2119 }
2120
keso6997cdf2004-07-04 15:20:53 +00002121 free(saddrs);
2122 free(daddrs);
Pablo Neiradfdcd642005-05-29 19:05:23 +00002123 free_opts(1);
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00002124
Marc Bouchere6869a82000-03-20 06:03:29 +00002125 return ret;
2126}