blob: 08eb1345f220617789a06e3f1c7a24597a643512 [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>
Jan Engelhardtc021c3c2009-01-27 15:10:05 +010032#include <stdbool.h>
Marc Bouchere6869a82000-03-20 06:03:29 +000033#include <stdio.h>
34#include <stdlib.h>
Marc Bouchere6869a82000-03-20 06:03:29 +000035#include <ctype.h>
36#include <stdarg.h>
37#include <limits.h>
Harald Welte82dd2ec2000-12-19 05:18:15 +000038#include <unistd.h>
Marc Bouchere6869a82000-03-20 06:03:29 +000039#include <iptables.h>
Yasuyuki KOZAKAI3dfa4482007-07-24 05:45:33 +000040#include <xtables.h>
Harald Welte82dd2ec2000-12-19 05:18:15 +000041#include <fcntl.h>
Phil Oester8cf65912005-09-19 15:00:33 +000042#include <sys/utsname.h>
Jan Engelhardtf89c1712009-06-12 20:48:52 +020043#include "xshared.h"
Marc Bouchere6869a82000-03-20 06:03:29 +000044
45#ifndef TRUE
46#define TRUE 1
47#endif
48#ifndef FALSE
49#define FALSE 0
50#endif
51
Marc Bouchere6869a82000-03-20 06:03:29 +000052#define FMT_NUMERIC 0x0001
53#define FMT_NOCOUNTS 0x0002
54#define FMT_KILOMEGAGIGA 0x0004
55#define FMT_OPTIONS 0x0008
56#define FMT_NOTABLE 0x0010
57#define FMT_NOTARGET 0x0020
58#define FMT_VIA 0x0040
59#define FMT_NONEWLINE 0x0080
60#define FMT_LINENUMBERS 0x0100
61
62#define FMT_PRINT_RULE (FMT_NOCOUNTS | FMT_OPTIONS | FMT_VIA \
63 | FMT_NUMERIC | FMT_NOTABLE)
64#define FMT(tab,notab) ((format) & FMT_NOTABLE ? (notab) : (tab))
65
66
67#define CMD_NONE 0x0000U
68#define CMD_INSERT 0x0001U
69#define CMD_DELETE 0x0002U
70#define CMD_DELETE_NUM 0x0004U
71#define CMD_REPLACE 0x0008U
72#define CMD_APPEND 0x0010U
73#define CMD_LIST 0x0020U
74#define CMD_FLUSH 0x0040U
75#define CMD_ZERO 0x0080U
76#define CMD_NEW_CHAIN 0x0100U
77#define CMD_DELETE_CHAIN 0x0200U
78#define CMD_SET_POLICY 0x0400U
Harald Welte0eca33f2006-04-21 11:56:30 +000079#define CMD_RENAME_CHAIN 0x0800U
Henrik Nordstrom96296cf2008-05-13 13:08:26 +020080#define CMD_LIST_RULES 0x1000U
Mohit Mehtab34199e2009-08-19 10:56:33 -070081#define CMD_ZERO_NUM 0x2000U
82#define NUMBER_OF_CMD 15
Marc Bouchere6869a82000-03-20 06:03:29 +000083static const char cmdflags[] = { 'I', 'D', 'D', 'R', 'A', 'L', 'F', 'Z',
Mohit Mehtab34199e2009-08-19 10:56:33 -070084 'Z', 'N', 'X', 'P', 'E', 'S' };
Marc Bouchere6869a82000-03-20 06:03:29 +000085
Marc Bouchere6869a82000-03-20 06:03:29 +000086#define OPT_NONE 0x00000U
87#define OPT_NUMERIC 0x00001U
88#define OPT_SOURCE 0x00002U
89#define OPT_DESTINATION 0x00004U
90#define OPT_PROTOCOL 0x00008U
91#define OPT_JUMP 0x00010U
92#define OPT_VERBOSE 0x00020U
93#define OPT_EXPANDED 0x00040U
94#define OPT_VIANAMEIN 0x00080U
95#define OPT_VIANAMEOUT 0x00100U
96#define OPT_FRAGMENT 0x00200U
97#define OPT_LINENUMBERS 0x00400U
Harald Welteccd49e52001-01-23 22:54:34 +000098#define OPT_COUNTERS 0x00800U
99#define NUMBER_OF_OPT 12
Marc Bouchere6869a82000-03-20 06:03:29 +0000100static const char optflags[NUMBER_OF_OPT]
Jonas Berlin4a06cf02005-04-01 06:38:25 +0000101= { 'n', 's', 'd', 'p', 'j', 'v', 'x', 'i', 'o', 'f', '0', 'c'};
Marc Bouchere6869a82000-03-20 06:03:29 +0000102
103static struct option original_opts[] = {
Gáspár Lajos7bc3cb72008-03-27 08:20:39 +0100104 {.name = "append", .has_arg = 1, .val = 'A'},
105 {.name = "delete", .has_arg = 1, .val = 'D'},
106 {.name = "insert", .has_arg = 1, .val = 'I'},
107 {.name = "replace", .has_arg = 1, .val = 'R'},
108 {.name = "list", .has_arg = 2, .val = 'L'},
Henrik Nordstrom96296cf2008-05-13 13:08:26 +0200109 {.name = "list-rules", .has_arg = 2, .val = 'S'},
Gáspár Lajos7bc3cb72008-03-27 08:20:39 +0100110 {.name = "flush", .has_arg = 2, .val = 'F'},
111 {.name = "zero", .has_arg = 2, .val = 'Z'},
112 {.name = "new-chain", .has_arg = 1, .val = 'N'},
113 {.name = "delete-chain", .has_arg = 2, .val = 'X'},
114 {.name = "rename-chain", .has_arg = 1, .val = 'E'},
115 {.name = "policy", .has_arg = 1, .val = 'P'},
116 {.name = "source", .has_arg = 1, .val = 's'},
117 {.name = "destination", .has_arg = 1, .val = 'd'},
118 {.name = "src", .has_arg = 1, .val = 's'}, /* synonym */
119 {.name = "dst", .has_arg = 1, .val = 'd'}, /* synonym */
120 {.name = "protocol", .has_arg = 1, .val = 'p'},
121 {.name = "in-interface", .has_arg = 1, .val = 'i'},
122 {.name = "jump", .has_arg = 1, .val = 'j'},
123 {.name = "table", .has_arg = 1, .val = 't'},
124 {.name = "match", .has_arg = 1, .val = 'm'},
125 {.name = "numeric", .has_arg = 0, .val = 'n'},
126 {.name = "out-interface", .has_arg = 1, .val = 'o'},
127 {.name = "verbose", .has_arg = 0, .val = 'v'},
128 {.name = "exact", .has_arg = 0, .val = 'x'},
129 {.name = "fragments", .has_arg = 0, .val = 'f'},
130 {.name = "version", .has_arg = 0, .val = 'V'},
131 {.name = "help", .has_arg = 2, .val = 'h'},
132 {.name = "line-numbers", .has_arg = 0, .val = '0'},
133 {.name = "modprobe", .has_arg = 1, .val = 'M'},
134 {.name = "set-counters", .has_arg = 1, .val = 'c'},
135 {.name = "goto", .has_arg = 1, .val = 'g'},
136 {NULL},
Marc Bouchere6869a82000-03-20 06:03:29 +0000137};
138
Illes Marci63e90632003-03-03 08:08:37 +0000139/* we need this for iptables-restore. iptables-restore.c sets line to the
140 * current line of the input file, in order to give a more precise error
141 * message. iptables itself doesn't need this, so it is initialized to the
142 * magic number of -1 */
143int line = -1;
144
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +0100145void iptables_exit_error(enum xtables_exittype status, const char *msg, ...) __attribute__((noreturn, format(printf,2,3)));
146
Jamal Hadi Salim4dcdc9b2009-02-11 13:03:34 +0100147struct xtables_globals iptables_globals = {
148 .option_offset = 0,
149 .program_version = IPTABLES_VERSION,
Jamal Hadi Salim4dcdc9b2009-02-11 13:03:34 +0100150 .opts = original_opts,
Jamal Hadi Salim139b3fe2009-02-12 11:43:01 -0500151 .orig_opts = original_opts,
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +0100152 .exit_err = iptables_exit_error,
Jamal Hadi Salim4dcdc9b2009-02-11 13:03:34 +0100153};
154
Marc Bouchere6869a82000-03-20 06:03:29 +0000155/* Table of legal combinations of commands and options. If any of the
156 * given commands make an option legal, that option is legal (applies to
157 * CMD_LIST and CMD_ZERO only).
158 * Key:
159 * + compulsory
160 * x illegal
161 * optional
162 */
163
164static char commands_v_options[NUMBER_OF_CMD][NUMBER_OF_OPT] =
165/* Well, it's better than "Re: Linux vs FreeBSD" */
166{
Henrik Nordstrom96296cf2008-05-13 13:08:26 +0200167 /* -n -s -d -p -j -v -x -i -o -f --line -c */
Patrick McHardyHarald Welte2cfbd9f2006-04-22 02:08:12 +0000168/*INSERT*/ {'x',' ',' ',' ',' ',' ','x',' ',' ',' ','x',' '},
169/*DELETE*/ {'x',' ',' ',' ',' ',' ','x',' ',' ',' ','x','x'},
170/*DELETE_NUM*/{'x','x','x','x','x',' ','x','x','x','x','x','x'},
171/*REPLACE*/ {'x',' ',' ',' ',' ',' ','x',' ',' ',' ','x',' '},
172/*APPEND*/ {'x',' ',' ',' ',' ',' ','x',' ',' ',' ','x',' '},
173/*LIST*/ {' ','x','x','x','x',' ',' ','x','x','x',' ','x'},
174/*FLUSH*/ {'x','x','x','x','x',' ','x','x','x','x','x','x'},
175/*ZERO*/ {'x','x','x','x','x',' ','x','x','x','x','x','x'},
Mohit Mehtab34199e2009-08-19 10:56:33 -0700176/*ZERO_NUM*/ {'x','x','x','x','x',' ','x','x','x','x','x','x'},
Patrick McHardyHarald Welte2cfbd9f2006-04-22 02:08:12 +0000177/*NEW_CHAIN*/ {'x','x','x','x','x',' ','x','x','x','x','x','x'},
178/*DEL_CHAIN*/ {'x','x','x','x','x',' ','x','x','x','x','x','x'},
Henrik Nordstrom48c1bc62008-05-12 20:53:16 +0200179/*SET_POLICY*/{'x','x','x','x','x',' ','x','x','x','x','x',' '},
Henrik Nordstrom96296cf2008-05-13 13:08:26 +0200180/*RENAME*/ {'x','x','x','x','x',' ','x','x','x','x','x','x'},
181/*LIST_RULES*/{'x','x','x','x','x',' ','x','x','x','x','x','x'}
Marc Bouchere6869a82000-03-20 06:03:29 +0000182};
183
184static int inverse_for_options[NUMBER_OF_OPT] =
185{
186/* -n */ 0,
187/* -s */ IPT_INV_SRCIP,
188/* -d */ IPT_INV_DSTIP,
189/* -p */ IPT_INV_PROTO,
190/* -j */ 0,
191/* -v */ 0,
192/* -x */ 0,
193/* -i */ IPT_INV_VIA_IN,
194/* -o */ IPT_INV_VIA_OUT,
195/* -f */ IPT_INV_FRAG,
Patrick McHardyHarald Welte2cfbd9f2006-04-22 02:08:12 +0000196/*--line*/ 0,
197/* -c */ 0,
Marc Bouchere6869a82000-03-20 06:03:29 +0000198};
199
Pablo Neira Ayusof503cb82009-03-03 17:46:17 +0100200#define opts iptables_globals.opts
Jamal Hadi Salim5dd19de2009-02-13 10:42:24 -0500201#define prog_name iptables_globals.program_name
202#define prog_vers iptables_globals.program_version
Marc Bouchere6869a82000-03-20 06:03:29 +0000203
Phil Oester8cf65912005-09-19 15:00:33 +0000204int kernel_version;
205
Rusty Russella3e6aaa2000-12-19 04:45:23 +0000206/* Primitive headers... */
András Kis-Szabó764316a2001-02-26 17:31:20 +0000207/* defined in netinet/in.h */
208#if 0
Rusty Russella3e6aaa2000-12-19 04:45:23 +0000209#ifndef IPPROTO_ESP
210#define IPPROTO_ESP 50
211#endif
212#ifndef IPPROTO_AH
213#define IPPROTO_AH 51
214#endif
András Kis-Szabó764316a2001-02-26 17:31:20 +0000215#endif
Rusty Russella3e6aaa2000-12-19 04:45:23 +0000216
Jan Engelhardt1de7edf2009-01-30 05:38:11 +0100217static const char *
Rusty Russell28381a42000-05-10 00:19:50 +0000218proto_to_name(u_int8_t proto, int nolookup)
Marc Bouchere6869a82000-03-20 06:03:29 +0000219{
220 unsigned int i;
221
Rusty Russell28381a42000-05-10 00:19:50 +0000222 if (proto && !nolookup) {
Marc Bouchere6869a82000-03-20 06:03:29 +0000223 struct protoent *pent = getprotobynumber(proto);
224 if (pent)
225 return pent->p_name;
226 }
227
Jan Engelhardt1de7edf2009-01-30 05:38:11 +0100228 for (i = 0; xtables_chain_protos[i].name != NULL; ++i)
229 if (xtables_chain_protos[i].num == proto)
230 return xtables_chain_protos[i].name;
Marc Bouchere6869a82000-03-20 06:03:29 +0000231
232 return NULL;
233}
234
Pablo Neira Ayuso267a5702006-11-29 13:32:32 +0000235enum {
236 IPT_DOTTED_ADDR = 0,
237 IPT_DOTTED_MASK
238};
239
Patrick McHardy0b639362007-09-08 16:00:01 +0000240static void
Marc Bouchere6869a82000-03-20 06:03:29 +0000241exit_tryhelp(int status)
242{
Maciej Soltysiakedad9bb2003-03-31 12:11:55 +0000243 if (line != -1)
Harald Weltea5bb0a62003-05-03 18:56:19 +0000244 fprintf(stderr, "Error occurred at line: %d\n", line);
Marc Bouchere6869a82000-03-20 06:03:29 +0000245 fprintf(stderr, "Try `%s -h' or '%s --help' for more information.\n",
Jamal Hadi Salim5dd19de2009-02-13 10:42:24 -0500246 prog_name, prog_name);
Jamal Hadi Salim139b3fe2009-02-12 11:43:01 -0500247 xtables_free_opts(1);
Marc Bouchere6869a82000-03-20 06:03:29 +0000248 exit(status);
249}
250
Patrick McHardy0b639362007-09-08 16:00:01 +0000251static void
Jan Engelhardt395e4412009-02-10 10:43:08 +0100252exit_printhelp(struct xtables_rule_match *matches)
Marc Bouchere6869a82000-03-20 06:03:29 +0000253{
254 printf("%s v%s\n\n"
András Kis-Szabó0c4188f2002-08-14 11:40:41 +0000255"Usage: %s -[AD] chain rule-specification [options]\n"
Jan Engelhardt1791a452009-02-20 16:39:54 +0100256" %s -I chain [rulenum] rule-specification [options]\n"
257" %s -R chain rulenum rule-specification [options]\n"
Marc Bouchere6869a82000-03-20 06:03:29 +0000258" %s -D chain rulenum [options]\n"
Henrik Nordstrombb340822008-05-13 13:09:23 +0200259" %s -[LS] [chain [rulenum]] [options]\n"
260" %s -[FZ] [chain] [options]\n"
Marc Bouchere6869a82000-03-20 06:03:29 +0000261" %s -[NX] chain\n"
262" %s -E old-chain-name new-chain-name\n"
263" %s -P chain target [options]\n"
264" %s -h (print this help information)\n\n",
Jamal Hadi Salim5dd19de2009-02-13 10:42:24 -0500265 prog_name, prog_vers, prog_name, prog_name,
266 prog_name, prog_name, prog_name, prog_name,
Jan Engelhardt1791a452009-02-20 16:39:54 +0100267 prog_name, prog_name, prog_name, prog_name);
Marc Bouchere6869a82000-03-20 06:03:29 +0000268
269 printf(
270"Commands:\n"
271"Either long or short options are allowed.\n"
272" --append -A chain Append to chain\n"
273" --delete -D chain Delete matching rule from chain\n"
274" --delete -D chain rulenum\n"
275" Delete rule rulenum (1 = first) from chain\n"
276" --insert -I chain [rulenum]\n"
277" Insert in chain as rulenum (default 1=first)\n"
278" --replace -R chain rulenum\n"
279" Replace rule rulenum (1 = first) in chain\n"
Henrik Nordstrombb340822008-05-13 13:09:23 +0200280" --list -L [chain [rulenum]]\n"
281" List the rules in a chain or all chains\n"
282" --list-rules -S [chain [rulenum]]\n"
283" Print the rules in a chain or all chains\n"
Marc Bouchere6869a82000-03-20 06:03:29 +0000284" --flush -F [chain] Delete all rules in chain or all chains\n"
Mohit Mehtab34199e2009-08-19 10:56:33 -0700285" --zero -Z [chain [rulenum]]\n"
286" Zero counters in chain or all chains\n"
Marc Bouchere6869a82000-03-20 06:03:29 +0000287" --new -N chain Create a new user-defined chain\n"
288" --delete-chain\n"
289" -X [chain] Delete a user-defined chain\n"
290" --policy -P chain target\n"
291" Change policy on chain to target\n"
292" --rename-chain\n"
293" -E old-chain new-chain\n"
294" Change chain name, (moving any references)\n"
295
296"Options:\n"
Jan Engelhardt96727922008-08-13 14:42:41 +0200297"[!] --proto -p proto protocol: by number or name, eg. `tcp'\n"
Michael Granzow332e4ac2009-04-09 18:24:36 +0100298"[!] --source -s address[/mask][...]\n"
Marc Bouchere6869a82000-03-20 06:03:29 +0000299" source specification\n"
Michael Granzow332e4ac2009-04-09 18:24:36 +0100300"[!] --destination -d address[/mask][...]\n"
Marc Bouchere6869a82000-03-20 06:03:29 +0000301" destination specification\n"
Jan Engelhardt96727922008-08-13 14:42:41 +0200302"[!] --in-interface -i input name[+]\n"
Marc Bouchere6869a82000-03-20 06:03:29 +0000303" network interface name ([+] for wildcard)\n"
Jan Engelhardt96727922008-08-13 14:42:41 +0200304" --jump -j target\n"
Rusty Russell363112d2000-08-11 13:49:26 +0000305" target for rule (may load target extension)\n"
Henrik Nordstrom17fc1632005-11-05 09:26:40 +0000306#ifdef IPT_F_GOTO
307" --goto -g chain\n"
308" jump to chain with no return\n"
309#endif
Rusty Russell363112d2000-08-11 13:49:26 +0000310" --match -m match\n"
311" extended match (may load extension)\n"
Marc Bouchere6869a82000-03-20 06:03:29 +0000312" --numeric -n numeric output of addresses and ports\n"
Jan Engelhardt96727922008-08-13 14:42:41 +0200313"[!] --out-interface -o output name[+]\n"
Marc Bouchere6869a82000-03-20 06:03:29 +0000314" network interface name ([+] for wildcard)\n"
315" --table -t table table to manipulate (default: `filter')\n"
316" --verbose -v verbose mode\n"
Harald Welte82dd2ec2000-12-19 05:18:15 +0000317" --line-numbers print line numbers when listing\n"
Marc Bouchere6869a82000-03-20 06:03:29 +0000318" --exact -x expand numbers (display exact values)\n"
319"[!] --fragment -f match second or further fragments only\n"
Rusty Russella4d3e1f2001-01-07 06:56:02 +0000320" --modprobe=<command> try to insert modules using this command\n"
Harald Welteccd49e52001-01-23 22:54:34 +0000321" --set-counters PKTS BYTES set the counter during insert/append\n"
Marc Bouchere6869a82000-03-20 06:03:29 +0000322"[!] --version -V print package version.\n");
323
Jan Engelhardtf89c1712009-06-12 20:48:52 +0200324 print_extension_helps(xtables_targets, matches);
Marc Bouchere6869a82000-03-20 06:03:29 +0000325 exit(0);
326}
327
Patrick McHardy0b639362007-09-08 16:00:01 +0000328void
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +0100329iptables_exit_error(enum xtables_exittype status, const char *msg, ...)
Patrick McHardy0b639362007-09-08 16:00:01 +0000330{
331 va_list args;
332
333 va_start(args, msg);
Jamal Hadi Salim5dd19de2009-02-13 10:42:24 -0500334 fprintf(stderr, "%s v%s: ", prog_name, prog_vers);
Patrick McHardy0b639362007-09-08 16:00:01 +0000335 vfprintf(stderr, msg, args);
336 va_end(args);
337 fprintf(stderr, "\n");
338 if (status == PARAMETER_PROBLEM)
339 exit_tryhelp(status);
340 if (status == VERSION_PROBLEM)
341 fprintf(stderr,
342 "Perhaps iptables or your kernel needs to be upgraded.\n");
343 /* On error paths, make sure that we don't leak memory */
Jamal Hadi Salim139b3fe2009-02-12 11:43:01 -0500344 xtables_free_opts(1);
Patrick McHardy0b639362007-09-08 16:00:01 +0000345 exit(status);
346}
347
Marc Bouchere6869a82000-03-20 06:03:29 +0000348static void
349generic_opt_check(int command, int options)
350{
351 int i, j, legal = 0;
352
353 /* Check that commands are valid with options. Complicated by the
354 * fact that if an option is legal with *any* command given, it is
355 * legal overall (ie. -z and -l).
356 */
357 for (i = 0; i < NUMBER_OF_OPT; i++) {
358 legal = 0; /* -1 => illegal, 1 => legal, 0 => undecided. */
359
360 for (j = 0; j < NUMBER_OF_CMD; j++) {
361 if (!(command & (1<<j)))
362 continue;
363
364 if (!(options & (1<<i))) {
365 if (commands_v_options[j][i] == '+')
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100366 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +0000367 "You need to supply the `-%c' "
368 "option for this command\n",
369 optflags[i]);
370 } else {
371 if (commands_v_options[j][i] != 'x')
372 legal = 1;
373 else if (legal == 0)
374 legal = -1;
375 }
376 }
377 if (legal == -1)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100378 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +0000379 "Illegal option `-%c' with this command\n",
380 optflags[i]);
381 }
382}
383
384static char
385opt2char(int option)
386{
387 const char *ptr;
388 for (ptr = optflags; option > 1; option >>= 1, ptr++);
389
390 return *ptr;
391}
392
393static char
394cmd2char(int option)
395{
396 const char *ptr;
397 for (ptr = cmdflags; option > 1; option >>= 1, ptr++);
398
399 return *ptr;
400}
401
402static void
Harald Welteefa8fc22005-07-19 22:03:49 +0000403add_command(unsigned int *cmd, const int newcmd, const int othercmds,
404 int invert)
Marc Bouchere6869a82000-03-20 06:03:29 +0000405{
406 if (invert)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100407 xtables_error(PARAMETER_PROBLEM, "unexpected ! flag");
Marc Bouchere6869a82000-03-20 06:03:29 +0000408 if (*cmd & (~othercmds))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100409 xtables_error(PARAMETER_PROBLEM, "Cannot use -%c with -%c\n",
Marc Bouchere6869a82000-03-20 06:03:29 +0000410 cmd2char(newcmd), cmd2char(*cmd & (~othercmds)));
411 *cmd |= newcmd;
412}
413
Marc Bouchere6869a82000-03-20 06:03:29 +0000414/*
415 * All functions starting with "parse" should succeed, otherwise
416 * the program fails.
417 * Most routines return pointers to static data that may change
418 * between calls to the same or other routines with a few exceptions:
419 * "host_to_addr", "parse_hostnetwork", and "parse_hostnetworkmask"
420 * return global static data.
421*/
422
Rusty Russell28381a42000-05-10 00:19:50 +0000423/* Christophe Burki wants `-p 6' to imply `-m tcp'. */
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200424static struct xtables_match *
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100425find_proto(const char *pname, enum xtables_tryload tryload,
Jan Engelhardt395e4412009-02-10 10:43:08 +0100426 int nolookup, struct xtables_rule_match **matches)
Rusty Russell28381a42000-05-10 00:19:50 +0000427{
Harald Welteed498492001-07-23 01:24:22 +0000428 unsigned int proto;
Rusty Russell28381a42000-05-10 00:19:50 +0000429
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100430 if (xtables_strtoui(pname, NULL, &proto, 0, UINT8_MAX)) {
Jan Engelhardt1de7edf2009-01-30 05:38:11 +0100431 const char *protoname = proto_to_name(proto, nolookup);
Rusty Russell28381a42000-05-10 00:19:50 +0000432
Harald Welte0b0013a2002-02-18 16:15:31 +0000433 if (protoname)
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100434 return xtables_find_match(protoname, tryload, matches);
Harald Welte0b0013a2002-02-18 16:15:31 +0000435 } else
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100436 return xtables_find_match(pname, tryload, matches);
Harald Welte0b0013a2002-02-18 16:15:31 +0000437
438 return NULL;
Rusty Russell28381a42000-05-10 00:19:50 +0000439}
440
Marc Bouchere6869a82000-03-20 06:03:29 +0000441/* Can't be zero. */
442static int
443parse_rulenumber(const char *rule)
444{
Harald Welteed498492001-07-23 01:24:22 +0000445 unsigned int rulenum;
Marc Bouchere6869a82000-03-20 06:03:29 +0000446
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100447 if (!xtables_strtoui(rule, NULL, &rulenum, 1, INT_MAX))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100448 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +0000449 "Invalid rule number `%s'", rule);
450
451 return rulenum;
452}
453
454static const char *
455parse_target(const char *targetname)
456{
457 const char *ptr;
458
459 if (strlen(targetname) < 1)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100460 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +0000461 "Invalid target name (too short)");
462
463 if (strlen(targetname)+1 > sizeof(ipt_chainlabel))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100464 xtables_error(PARAMETER_PROBLEM,
Martin Josefssona28d4952004-05-26 16:04:48 +0000465 "Invalid target name `%s' (%u chars max)",
466 targetname, (unsigned int)sizeof(ipt_chainlabel)-1);
Marc Bouchere6869a82000-03-20 06:03:29 +0000467
468 for (ptr = targetname; *ptr; ptr++)
469 if (isspace(*ptr))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100470 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +0000471 "Invalid target name `%s'", targetname);
472 return targetname;
473}
474
Marc Bouchere6869a82000-03-20 06:03:29 +0000475static void
476set_option(unsigned int *options, unsigned int option, u_int8_t *invflg,
477 int invert)
478{
479 if (*options & option)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100480 xtables_error(PARAMETER_PROBLEM, "multiple -%c flags not allowed",
Marc Bouchere6869a82000-03-20 06:03:29 +0000481 opt2char(option));
482 *options |= option;
483
484 if (invert) {
485 unsigned int i;
486 for (i = 0; 1 << i != option; i++);
487
488 if (!inverse_for_options[i])
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100489 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +0000490 "cannot have ! before -%c",
491 opt2char(option));
492 *invflg |= inverse_for_options[i];
493 }
494}
495
Marc Bouchere6869a82000-03-20 06:03:29 +0000496static void
Harald Weltea0b4f792001-03-25 19:55:04 +0000497print_num(u_int64_t number, unsigned int format)
498{
499 if (format & FMT_KILOMEGAGIGA) {
500 if (number > 99999) {
501 number = (number + 500) / 1000;
502 if (number > 9999) {
503 number = (number + 500) / 1000;
504 if (number > 9999) {
505 number = (number + 500) / 1000;
Rusty Russell5a66fe42001-08-15 11:21:59 +0000506 if (number > 9999) {
507 number = (number + 500) / 1000;
Martin Josefssona28d4952004-05-26 16:04:48 +0000508 printf(FMT("%4lluT ","%lluT "), (unsigned long long)number);
Rusty Russell5a66fe42001-08-15 11:21:59 +0000509 }
Martin Josefssona28d4952004-05-26 16:04:48 +0000510 else printf(FMT("%4lluG ","%lluG "), (unsigned long long)number);
Harald Weltea0b4f792001-03-25 19:55:04 +0000511 }
Martin Josefssona28d4952004-05-26 16:04:48 +0000512 else printf(FMT("%4lluM ","%lluM "), (unsigned long long)number);
Harald Weltea0b4f792001-03-25 19:55:04 +0000513 } else
Martin Josefssona28d4952004-05-26 16:04:48 +0000514 printf(FMT("%4lluK ","%lluK "), (unsigned long long)number);
Harald Weltea0b4f792001-03-25 19:55:04 +0000515 } else
Martin Josefssona28d4952004-05-26 16:04:48 +0000516 printf(FMT("%5llu ","%llu "), (unsigned long long)number);
Harald Weltea0b4f792001-03-25 19:55:04 +0000517 } else
Martin Josefssona28d4952004-05-26 16:04:48 +0000518 printf(FMT("%8llu ","%llu "), (unsigned long long)number);
Harald Weltea0b4f792001-03-25 19:55:04 +0000519}
520
521
522static void
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100523print_header(unsigned int format, const char *chain, struct iptc_handle *handle)
Marc Bouchere6869a82000-03-20 06:03:29 +0000524{
525 struct ipt_counters counters;
526 const char *pol = iptc_get_policy(chain, &counters, handle);
527 printf("Chain %s", chain);
528 if (pol) {
529 printf(" (policy %s", pol);
Harald Weltea0b4f792001-03-25 19:55:04 +0000530 if (!(format & FMT_NOCOUNTS)) {
531 fputc(' ', stdout);
532 print_num(counters.pcnt, (format|FMT_NOTABLE));
533 fputs("packets, ", stdout);
534 print_num(counters.bcnt, (format|FMT_NOTABLE));
535 fputs("bytes", stdout);
536 }
Marc Bouchere6869a82000-03-20 06:03:29 +0000537 printf(")\n");
538 } else {
539 unsigned int refs;
Rusty Russell9e1d2142000-04-23 09:11:12 +0000540 if (!iptc_get_references(&refs, chain, handle))
541 printf(" (ERROR obtaining refs)\n");
542 else
543 printf(" (%u references)\n", refs);
Marc Bouchere6869a82000-03-20 06:03:29 +0000544 }
545
546 if (format & FMT_LINENUMBERS)
547 printf(FMT("%-4s ", "%s "), "num");
548 if (!(format & FMT_NOCOUNTS)) {
549 if (format & FMT_KILOMEGAGIGA) {
550 printf(FMT("%5s ","%s "), "pkts");
551 printf(FMT("%5s ","%s "), "bytes");
552 } else {
553 printf(FMT("%8s ","%s "), "pkts");
554 printf(FMT("%10s ","%s "), "bytes");
555 }
556 }
557 if (!(format & FMT_NOTARGET))
558 printf(FMT("%-9s ","%s "), "target");
559 fputs(" prot ", stdout);
560 if (format & FMT_OPTIONS)
561 fputs("opt", stdout);
562 if (format & FMT_VIA) {
563 printf(FMT(" %-6s ","%s "), "in");
564 printf(FMT("%-6s ","%s "), "out");
565 }
566 printf(FMT(" %-19s ","%s "), "source");
567 printf(FMT(" %-19s "," %s "), "destination");
568 printf("\n");
569}
570
Marc Bouchere6869a82000-03-20 06:03:29 +0000571
572static int
573print_match(const struct ipt_entry_match *m,
574 const struct ipt_ip *ip,
575 int numeric)
576{
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100577 struct xtables_match *match =
578 xtables_find_match(m->u.user.name, XTF_TRY_LOAD, NULL);
Marc Bouchere6869a82000-03-20 06:03:29 +0000579
580 if (match) {
581 if (match->print)
582 match->print(ip, m, numeric);
Rusty Russell629149f2000-09-01 06:01:00 +0000583 else
Rusty Russellb039b022000-09-01 06:04:05 +0000584 printf("%s ", match->name);
Marc Bouchere6869a82000-03-20 06:03:29 +0000585 } else {
Rusty Russell228e98d2000-04-27 10:28:06 +0000586 if (m->u.user.name[0])
587 printf("UNKNOWN match `%s' ", m->u.user.name);
Marc Bouchere6869a82000-03-20 06:03:29 +0000588 }
589 /* Don't stop iterating. */
590 return 0;
591}
592
Jan Engelhardt6cf172e2008-03-10 17:48:59 +0100593/* e is called `fw' here for historical reasons */
Marc Bouchere6869a82000-03-20 06:03:29 +0000594static void
595print_firewall(const struct ipt_entry *fw,
596 const char *targname,
597 unsigned int num,
598 unsigned int format,
Jan Engelhardtfd187312008-11-10 16:59:27 +0100599 struct iptc_handle *const handle)
Marc Bouchere6869a82000-03-20 06:03:29 +0000600{
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200601 struct xtables_target *target = NULL;
Marc Bouchere6869a82000-03-20 06:03:29 +0000602 const struct ipt_entry_target *t;
603 u_int8_t flags;
604 char buf[BUFSIZ];
605
Marc Bouchere6869a82000-03-20 06:03:29 +0000606 if (!iptc_is_chain(targname, handle))
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100607 target = xtables_find_target(targname, XTF_TRY_LOAD);
Marc Bouchere6869a82000-03-20 06:03:29 +0000608 else
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100609 target = xtables_find_target(IPT_STANDARD_TARGET,
610 XTF_LOAD_MUST_SUCCEED);
Marc Bouchere6869a82000-03-20 06:03:29 +0000611
612 t = ipt_get_target((struct ipt_entry *)fw);
613 flags = fw->ip.flags;
614
615 if (format & FMT_LINENUMBERS)
Henrik Nordstrom15641892008-06-13 17:57:35 +0200616 printf(FMT("%-4u ", "%u "), num);
Marc Bouchere6869a82000-03-20 06:03:29 +0000617
618 if (!(format & FMT_NOCOUNTS)) {
619 print_num(fw->counters.pcnt, format);
620 print_num(fw->counters.bcnt, format);
621 }
622
623 if (!(format & FMT_NOTARGET))
624 printf(FMT("%-9s ", "%s "), targname);
625
626 fputc(fw->ip.invflags & IPT_INV_PROTO ? '!' : ' ', stdout);
627 {
Jan Engelhardt1de7edf2009-01-30 05:38:11 +0100628 const char *pname = proto_to_name(fw->ip.proto, format&FMT_NUMERIC);
Marc Bouchere6869a82000-03-20 06:03:29 +0000629 if (pname)
630 printf(FMT("%-5s", "%s "), pname);
631 else
632 printf(FMT("%-5hu", "%hu "), fw->ip.proto);
633 }
634
635 if (format & FMT_OPTIONS) {
636 if (format & FMT_NOTABLE)
637 fputs("opt ", stdout);
638 fputc(fw->ip.invflags & IPT_INV_FRAG ? '!' : '-', stdout);
639 fputc(flags & IPT_F_FRAG ? 'f' : '-', stdout);
640 fputc(' ', stdout);
641 }
642
643 if (format & FMT_VIA) {
644 char iface[IFNAMSIZ+2];
645
646 if (fw->ip.invflags & IPT_INV_VIA_IN) {
647 iface[0] = '!';
648 iface[1] = '\0';
649 }
650 else iface[0] = '\0';
651
652 if (fw->ip.iniface[0] != '\0') {
653 strcat(iface, fw->ip.iniface);
Marc Bouchere6869a82000-03-20 06:03:29 +0000654 }
655 else if (format & FMT_NUMERIC) strcat(iface, "*");
656 else strcat(iface, "any");
657 printf(FMT(" %-6s ","in %s "), iface);
658
659 if (fw->ip.invflags & IPT_INV_VIA_OUT) {
660 iface[0] = '!';
661 iface[1] = '\0';
662 }
663 else iface[0] = '\0';
664
665 if (fw->ip.outiface[0] != '\0') {
666 strcat(iface, fw->ip.outiface);
Marc Bouchere6869a82000-03-20 06:03:29 +0000667 }
668 else if (format & FMT_NUMERIC) strcat(iface, "*");
669 else strcat(iface, "any");
670 printf(FMT("%-6s ","out %s "), iface);
671 }
672
673 fputc(fw->ip.invflags & IPT_INV_SRCIP ? '!' : ' ', stdout);
674 if (fw->ip.smsk.s_addr == 0L && !(format & FMT_NUMERIC))
675 printf(FMT("%-19s ","%s "), "anywhere");
676 else {
677 if (format & FMT_NUMERIC)
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100678 strcpy(buf, xtables_ipaddr_to_numeric(&fw->ip.src));
Marc Bouchere6869a82000-03-20 06:03:29 +0000679 else
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100680 strcpy(buf, xtables_ipaddr_to_anyname(&fw->ip.src));
681 strcat(buf, xtables_ipmask_to_numeric(&fw->ip.smsk));
Marc Bouchere6869a82000-03-20 06:03:29 +0000682 printf(FMT("%-19s ","%s "), buf);
683 }
684
685 fputc(fw->ip.invflags & IPT_INV_DSTIP ? '!' : ' ', stdout);
686 if (fw->ip.dmsk.s_addr == 0L && !(format & FMT_NUMERIC))
Harald Welte25fc1d72003-05-31 21:30:33 +0000687 printf(FMT("%-19s ","-> %s"), "anywhere");
Marc Bouchere6869a82000-03-20 06:03:29 +0000688 else {
689 if (format & FMT_NUMERIC)
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100690 strcpy(buf, xtables_ipaddr_to_numeric(&fw->ip.dst));
Marc Bouchere6869a82000-03-20 06:03:29 +0000691 else
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100692 strcpy(buf, xtables_ipaddr_to_anyname(&fw->ip.dst));
693 strcat(buf, xtables_ipmask_to_numeric(&fw->ip.dmsk));
Harald Welte25fc1d72003-05-31 21:30:33 +0000694 printf(FMT("%-19s ","-> %s"), buf);
Marc Bouchere6869a82000-03-20 06:03:29 +0000695 }
696
697 if (format & FMT_NOTABLE)
698 fputs(" ", stdout);
699
Harald Welte72bd87e2005-11-24 17:04:05 +0000700#ifdef IPT_F_GOTO
Henrik Nordstrom17fc1632005-11-05 09:26:40 +0000701 if(fw->ip.flags & IPT_F_GOTO)
702 printf("[goto] ");
Harald Welte72bd87e2005-11-24 17:04:05 +0000703#endif
Henrik Nordstrom17fc1632005-11-05 09:26:40 +0000704
Marc Bouchere6869a82000-03-20 06:03:29 +0000705 IPT_MATCH_ITERATE(fw, print_match, &fw->ip, format & FMT_NUMERIC);
706
707 if (target) {
708 if (target->print)
709 /* Print the target information. */
710 target->print(&fw->ip, t, format & FMT_NUMERIC);
Rusty Russell228e98d2000-04-27 10:28:06 +0000711 } else if (t->u.target_size != sizeof(*t))
Marc Bouchere6869a82000-03-20 06:03:29 +0000712 printf("[%u bytes of unknown target data] ",
Martin Josefssona28d4952004-05-26 16:04:48 +0000713 (unsigned int)(t->u.target_size - sizeof(*t)));
Marc Bouchere6869a82000-03-20 06:03:29 +0000714
715 if (!(format & FMT_NONEWLINE))
716 fputc('\n', stdout);
717}
718
719static void
720print_firewall_line(const struct ipt_entry *fw,
Jan Engelhardtfd187312008-11-10 16:59:27 +0100721 struct iptc_handle *const h)
Marc Bouchere6869a82000-03-20 06:03:29 +0000722{
723 struct ipt_entry_target *t;
724
725 t = ipt_get_target((struct ipt_entry *)fw);
Rusty Russell228e98d2000-04-27 10:28:06 +0000726 print_firewall(fw, t->u.user.name, 0, FMT_PRINT_RULE, h);
Marc Bouchere6869a82000-03-20 06:03:29 +0000727}
728
729static int
730append_entry(const ipt_chainlabel chain,
731 struct ipt_entry *fw,
732 unsigned int nsaddrs,
733 const struct in_addr saddrs[],
Michael Granzow332e4ac2009-04-09 18:24:36 +0100734 const struct in_addr smasks[],
Marc Bouchere6869a82000-03-20 06:03:29 +0000735 unsigned int ndaddrs,
736 const struct in_addr daddrs[],
Michael Granzow332e4ac2009-04-09 18:24:36 +0100737 const struct in_addr dmasks[],
Marc Bouchere6869a82000-03-20 06:03:29 +0000738 int verbose,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100739 struct iptc_handle *handle)
Marc Bouchere6869a82000-03-20 06:03:29 +0000740{
741 unsigned int i, j;
742 int ret = 1;
743
744 for (i = 0; i < nsaddrs; i++) {
745 fw->ip.src.s_addr = saddrs[i].s_addr;
Michael Granzow332e4ac2009-04-09 18:24:36 +0100746 fw->ip.smsk.s_addr = smasks[i].s_addr;
Marc Bouchere6869a82000-03-20 06:03:29 +0000747 for (j = 0; j < ndaddrs; j++) {
748 fw->ip.dst.s_addr = daddrs[j].s_addr;
Michael Granzow332e4ac2009-04-09 18:24:36 +0100749 fw->ip.dmsk.s_addr = dmasks[j].s_addr;
Marc Bouchere6869a82000-03-20 06:03:29 +0000750 if (verbose)
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100751 print_firewall_line(fw, handle);
Marc Bouchere6869a82000-03-20 06:03:29 +0000752 ret &= iptc_append_entry(chain, fw, handle);
753 }
754 }
755
756 return ret;
757}
758
759static int
760replace_entry(const ipt_chainlabel chain,
761 struct ipt_entry *fw,
762 unsigned int rulenum,
Jan Engelhardt75cb7632009-11-15 15:51:27 +0100763 const struct in_addr *saddr, const struct in_addr *smask,
764 const struct in_addr *daddr, const struct in_addr *dmask,
Marc Bouchere6869a82000-03-20 06:03:29 +0000765 int verbose,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100766 struct iptc_handle *handle)
Marc Bouchere6869a82000-03-20 06:03:29 +0000767{
768 fw->ip.src.s_addr = saddr->s_addr;
769 fw->ip.dst.s_addr = daddr->s_addr;
Jan Engelhardt75cb7632009-11-15 15:51:27 +0100770 fw->ip.smsk.s_addr = smask->s_addr;
771 fw->ip.dmsk.s_addr = dmask->s_addr;
Marc Bouchere6869a82000-03-20 06:03:29 +0000772
773 if (verbose)
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100774 print_firewall_line(fw, handle);
Marc Bouchere6869a82000-03-20 06:03:29 +0000775 return iptc_replace_entry(chain, fw, rulenum, handle);
776}
777
778static int
779insert_entry(const ipt_chainlabel chain,
780 struct ipt_entry *fw,
781 unsigned int rulenum,
782 unsigned int nsaddrs,
783 const struct in_addr saddrs[],
Michael Granzow332e4ac2009-04-09 18:24:36 +0100784 const struct in_addr smasks[],
Marc Bouchere6869a82000-03-20 06:03:29 +0000785 unsigned int ndaddrs,
786 const struct in_addr daddrs[],
Michael Granzow332e4ac2009-04-09 18:24:36 +0100787 const struct in_addr dmasks[],
Marc Bouchere6869a82000-03-20 06:03:29 +0000788 int verbose,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100789 struct iptc_handle *handle)
Marc Bouchere6869a82000-03-20 06:03:29 +0000790{
791 unsigned int i, j;
792 int ret = 1;
793
794 for (i = 0; i < nsaddrs; i++) {
795 fw->ip.src.s_addr = saddrs[i].s_addr;
Michael Granzow332e4ac2009-04-09 18:24:36 +0100796 fw->ip.smsk.s_addr = smasks[i].s_addr;
Marc Bouchere6869a82000-03-20 06:03:29 +0000797 for (j = 0; j < ndaddrs; j++) {
798 fw->ip.dst.s_addr = daddrs[j].s_addr;
Michael Granzow332e4ac2009-04-09 18:24:36 +0100799 fw->ip.dmsk.s_addr = dmasks[j].s_addr;
Marc Bouchere6869a82000-03-20 06:03:29 +0000800 if (verbose)
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100801 print_firewall_line(fw, handle);
Marc Bouchere6869a82000-03-20 06:03:29 +0000802 ret &= iptc_insert_entry(chain, fw, rulenum, handle);
803 }
804 }
805
806 return ret;
807}
808
Rusty Russell2e0a3212000-04-19 11:23:18 +0000809static unsigned char *
Jan Engelhardt4f0d7b62009-10-27 02:59:33 +0100810make_delete_mask(struct xtables_rule_match *matches,
811 const struct xtables_target *target)
Rusty Russell2e0a3212000-04-19 11:23:18 +0000812{
813 /* Establish mask for comparison */
814 unsigned int size;
Jan Engelhardt395e4412009-02-10 10:43:08 +0100815 struct xtables_rule_match *matchp;
Rusty Russell2e0a3212000-04-19 11:23:18 +0000816 unsigned char *mask, *mptr;
817
818 size = sizeof(struct ipt_entry);
Martin Josefsson78cafda2004-02-02 20:01:18 +0000819 for (matchp = matches; matchp; matchp = matchp->next)
820 size += IPT_ALIGN(sizeof(struct ipt_entry_match)) + matchp->match->size;
Rusty Russell2e0a3212000-04-19 11:23:18 +0000821
Jan Engelhardt630ef482009-01-27 14:58:41 +0100822 mask = xtables_calloc(1, size
Rusty Russell73f72f52000-07-03 10:17:57 +0000823 + IPT_ALIGN(sizeof(struct ipt_entry_target))
Jan Engelhardt4f0d7b62009-10-27 02:59:33 +0100824 + target->size);
Rusty Russell2e0a3212000-04-19 11:23:18 +0000825
Rusty Russell9e1d2142000-04-23 09:11:12 +0000826 memset(mask, 0xFF, sizeof(struct ipt_entry));
827 mptr = mask + sizeof(struct ipt_entry);
Rusty Russell2e0a3212000-04-19 11:23:18 +0000828
Martin Josefsson78cafda2004-02-02 20:01:18 +0000829 for (matchp = matches; matchp; matchp = matchp->next) {
Rusty Russell2e0a3212000-04-19 11:23:18 +0000830 memset(mptr, 0xFF,
Rusty Russell73f72f52000-07-03 10:17:57 +0000831 IPT_ALIGN(sizeof(struct ipt_entry_match))
Martin Josefsson78cafda2004-02-02 20:01:18 +0000832 + matchp->match->userspacesize);
833 mptr += IPT_ALIGN(sizeof(struct ipt_entry_match)) + matchp->match->size;
Rusty Russell2e0a3212000-04-19 11:23:18 +0000834 }
835
Rusty Russella4d3e1f2001-01-07 06:56:02 +0000836 memset(mptr, 0xFF,
Rusty Russell73f72f52000-07-03 10:17:57 +0000837 IPT_ALIGN(sizeof(struct ipt_entry_target))
Jan Engelhardt4f0d7b62009-10-27 02:59:33 +0100838 + target->userspacesize);
Rusty Russell2e0a3212000-04-19 11:23:18 +0000839
840 return mask;
841}
842
Marc Bouchere6869a82000-03-20 06:03:29 +0000843static int
844delete_entry(const ipt_chainlabel chain,
845 struct ipt_entry *fw,
846 unsigned int nsaddrs,
847 const struct in_addr saddrs[],
Michael Granzow332e4ac2009-04-09 18:24:36 +0100848 const struct in_addr smasks[],
Marc Bouchere6869a82000-03-20 06:03:29 +0000849 unsigned int ndaddrs,
850 const struct in_addr daddrs[],
Michael Granzow332e4ac2009-04-09 18:24:36 +0100851 const struct in_addr dmasks[],
Marc Bouchere6869a82000-03-20 06:03:29 +0000852 int verbose,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100853 struct iptc_handle *handle,
Jan Engelhardt4f0d7b62009-10-27 02:59:33 +0100854 struct xtables_rule_match *matches,
855 const struct xtables_target *target)
Marc Bouchere6869a82000-03-20 06:03:29 +0000856{
857 unsigned int i, j;
858 int ret = 1;
Rusty Russell2e0a3212000-04-19 11:23:18 +0000859 unsigned char *mask;
Marc Bouchere6869a82000-03-20 06:03:29 +0000860
Jan Engelhardt4f0d7b62009-10-27 02:59:33 +0100861 mask = make_delete_mask(matches, target);
Marc Bouchere6869a82000-03-20 06:03:29 +0000862 for (i = 0; i < nsaddrs; i++) {
863 fw->ip.src.s_addr = saddrs[i].s_addr;
Michael Granzow332e4ac2009-04-09 18:24:36 +0100864 fw->ip.smsk.s_addr = smasks[i].s_addr;
Marc Bouchere6869a82000-03-20 06:03:29 +0000865 for (j = 0; j < ndaddrs; j++) {
866 fw->ip.dst.s_addr = daddrs[j].s_addr;
Michael Granzow332e4ac2009-04-09 18:24:36 +0100867 fw->ip.dmsk.s_addr = dmasks[j].s_addr;
Marc Bouchere6869a82000-03-20 06:03:29 +0000868 if (verbose)
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100869 print_firewall_line(fw, handle);
Rusty Russell2e0a3212000-04-19 11:23:18 +0000870 ret &= iptc_delete_entry(chain, fw, mask, handle);
Marc Bouchere6869a82000-03-20 06:03:29 +0000871 }
872 }
Martin Josefsson4dd5fed2004-05-18 18:09:43 +0000873 free(mask);
874
Marc Bouchere6869a82000-03-20 06:03:29 +0000875 return ret;
876}
877
Harald Welteae1ff9f2000-12-01 14:26:20 +0000878int
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100879for_each_chain(int (*fn)(const ipt_chainlabel, int, struct iptc_handle *),
880 int verbose, int builtinstoo, struct iptc_handle *handle)
Marc Bouchere6869a82000-03-20 06:03:29 +0000881{
882 int ret = 1;
Rusty Russell9e1d2142000-04-23 09:11:12 +0000883 const char *chain;
884 char *chains;
885 unsigned int i, chaincount = 0;
Marc Bouchere6869a82000-03-20 06:03:29 +0000886
Rusty Russell9e1d2142000-04-23 09:11:12 +0000887 chain = iptc_first_chain(handle);
888 while (chain) {
889 chaincount++;
890 chain = iptc_next_chain(handle);
Marc Bouchere6869a82000-03-20 06:03:29 +0000891 }
892
Jan Engelhardt630ef482009-01-27 14:58:41 +0100893 chains = xtables_malloc(sizeof(ipt_chainlabel) * chaincount);
Rusty Russell9e1d2142000-04-23 09:11:12 +0000894 i = 0;
895 chain = iptc_first_chain(handle);
896 while (chain) {
897 strcpy(chains + i*sizeof(ipt_chainlabel), chain);
898 i++;
899 chain = iptc_next_chain(handle);
900 }
901
902 for (i = 0; i < chaincount; i++) {
903 if (!builtinstoo
904 && iptc_builtin(chains + i*sizeof(ipt_chainlabel),
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100905 handle) == 1)
Rusty Russell9e1d2142000-04-23 09:11:12 +0000906 continue;
907 ret &= fn(chains + i*sizeof(ipt_chainlabel), verbose, handle);
908 }
909
910 free(chains);
Marc Bouchere6869a82000-03-20 06:03:29 +0000911 return ret;
912}
913
Harald Welteae1ff9f2000-12-01 14:26:20 +0000914int
Marc Bouchere6869a82000-03-20 06:03:29 +0000915flush_entries(const ipt_chainlabel chain, int verbose,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100916 struct iptc_handle *handle)
Marc Bouchere6869a82000-03-20 06:03:29 +0000917{
918 if (!chain)
Rusty Russell9e1d2142000-04-23 09:11:12 +0000919 return for_each_chain(flush_entries, verbose, 1, handle);
Rusty Russell7e53bf92000-03-20 07:03:28 +0000920
921 if (verbose)
922 fprintf(stdout, "Flushing chain `%s'\n", chain);
923 return iptc_flush_entries(chain, handle);
924}
Marc Bouchere6869a82000-03-20 06:03:29 +0000925
926static int
927zero_entries(const ipt_chainlabel chain, int verbose,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100928 struct iptc_handle *handle)
Marc Bouchere6869a82000-03-20 06:03:29 +0000929{
930 if (!chain)
Rusty Russell9e1d2142000-04-23 09:11:12 +0000931 return for_each_chain(zero_entries, verbose, 1, handle);
Rusty Russell7e53bf92000-03-20 07:03:28 +0000932
Marc Bouchere6869a82000-03-20 06:03:29 +0000933 if (verbose)
934 fprintf(stdout, "Zeroing chain `%s'\n", chain);
935 return iptc_zero_entries(chain, handle);
936}
937
Harald Welteae1ff9f2000-12-01 14:26:20 +0000938int
Marc Bouchere6869a82000-03-20 06:03:29 +0000939delete_chain(const ipt_chainlabel chain, int verbose,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100940 struct iptc_handle *handle)
Marc Bouchere6869a82000-03-20 06:03:29 +0000941{
Rusty Russell9e1d2142000-04-23 09:11:12 +0000942 if (!chain)
943 return for_each_chain(delete_chain, verbose, 0, handle);
Marc Bouchere6869a82000-03-20 06:03:29 +0000944
945 if (verbose)
Max Kellermann5b76f682008-01-29 13:42:48 +0000946 fprintf(stdout, "Deleting chain `%s'\n", chain);
Marc Bouchere6869a82000-03-20 06:03:29 +0000947 return iptc_delete_chain(chain, handle);
948}
949
950static int
Henrik Nordstrombb340822008-05-13 13:09:23 +0200951list_entries(const ipt_chainlabel chain, int rulenum, int verbose, int numeric,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100952 int expanded, int linenumbers, struct iptc_handle *handle)
Marc Bouchere6869a82000-03-20 06:03:29 +0000953{
954 int found = 0;
Rusty Russell9e1d2142000-04-23 09:11:12 +0000955 unsigned int format;
956 const char *this;
Marc Bouchere6869a82000-03-20 06:03:29 +0000957
958 format = FMT_OPTIONS;
959 if (!verbose)
960 format |= FMT_NOCOUNTS;
961 else
962 format |= FMT_VIA;
963
964 if (numeric)
965 format |= FMT_NUMERIC;
966
967 if (!expanded)
968 format |= FMT_KILOMEGAGIGA;
969
970 if (linenumbers)
971 format |= FMT_LINENUMBERS;
972
Rusty Russell9e1d2142000-04-23 09:11:12 +0000973 for (this = iptc_first_chain(handle);
974 this;
975 this = iptc_next_chain(handle)) {
976 const struct ipt_entry *i;
977 unsigned int num;
Marc Bouchere6869a82000-03-20 06:03:29 +0000978
Marc Bouchere6869a82000-03-20 06:03:29 +0000979 if (chain && strcmp(chain, this) != 0)
980 continue;
981
982 if (found) printf("\n");
983
Henrik Nordstrombb340822008-05-13 13:09:23 +0200984 if (!rulenum)
985 print_header(format, this, handle);
Rusty Russell9e1d2142000-04-23 09:11:12 +0000986 i = iptc_first_rule(this, handle);
987
988 num = 0;
989 while (i) {
Henrik Nordstrombb340822008-05-13 13:09:23 +0200990 num++;
991 if (!rulenum || num == rulenum)
992 print_firewall(i,
993 iptc_get_target(i, handle),
994 num,
995 format,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +0100996 handle);
Rusty Russell9e1d2142000-04-23 09:11:12 +0000997 i = iptc_next_rule(i, handle);
998 }
Marc Bouchere6869a82000-03-20 06:03:29 +0000999 found = 1;
1000 }
1001
1002 errno = ENOENT;
1003 return found;
1004}
1005
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001006static void print_proto(u_int16_t proto, int invert)
1007{
1008 if (proto) {
1009 unsigned int i;
1010 const char *invertstr = invert ? "! " : "";
1011
1012 struct protoent *pent = getprotobynumber(proto);
1013 if (pent) {
Jan Engelhardtb1d968c2009-04-04 13:28:40 +02001014 printf("%s-p %s ", invertstr, pent->p_name);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001015 return;
1016 }
1017
Jan Engelhardt1de7edf2009-01-30 05:38:11 +01001018 for (i = 0; xtables_chain_protos[i].name != NULL; ++i)
1019 if (xtables_chain_protos[i].num == proto) {
Jan Engelhardtb1d968c2009-04-04 13:28:40 +02001020 printf("%s-p %s ",
Jan Engelhardt1de7edf2009-01-30 05:38:11 +01001021 invertstr, xtables_chain_protos[i].name);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001022 return;
1023 }
1024
Jan Engelhardtb1d968c2009-04-04 13:28:40 +02001025 printf("%s-p %u ", invertstr, proto);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001026 }
1027}
1028
1029#define IP_PARTS_NATIVE(n) \
1030(unsigned int)((n)>>24)&0xFF, \
1031(unsigned int)((n)>>16)&0xFF, \
1032(unsigned int)((n)>>8)&0xFF, \
1033(unsigned int)((n)&0xFF)
1034
1035#define IP_PARTS(n) IP_PARTS_NATIVE(ntohl(n))
1036
1037/* This assumes that mask is contiguous, and byte-bounded. */
1038static void
1039print_iface(char letter, const char *iface, const unsigned char *mask,
1040 int invert)
1041{
1042 unsigned int i;
1043
1044 if (mask[0] == 0)
1045 return;
1046
Jan Engelhardtb1d968c2009-04-04 13:28:40 +02001047 printf("%s-%c ", invert ? "! " : "", letter);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001048
1049 for (i = 0; i < IFNAMSIZ; i++) {
1050 if (mask[i] != 0) {
1051 if (iface[i] != '\0')
1052 printf("%c", iface[i]);
1053 } else {
1054 /* we can access iface[i-1] here, because
1055 * a few lines above we make sure that mask[0] != 0 */
1056 if (iface[i-1] != '\0')
1057 printf("+");
1058 break;
1059 }
1060 }
1061
1062 printf(" ");
1063}
1064
1065static int print_match_save(const struct ipt_entry_match *e,
1066 const struct ipt_ip *ip)
1067{
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001068 struct xtables_match *match =
1069 xtables_find_match(e->u.user.name, XTF_TRY_LOAD, NULL);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001070
1071 if (match) {
1072 printf("-m %s ", e->u.user.name);
1073
1074 /* some matches don't provide a save function */
1075 if (match->save)
1076 match->save(ip, e);
1077 } else {
1078 if (e->u.match_size) {
1079 fprintf(stderr,
1080 "Can't find library for match `%s'\n",
1081 e->u.user.name);
1082 exit(1);
1083 }
1084 }
1085 return 0;
1086}
1087
1088/* print a given ip including mask if neccessary */
1089static void print_ip(char *prefix, u_int32_t ip, u_int32_t mask, int invert)
1090{
1091 u_int32_t bits, hmask = ntohl(mask);
1092 int i;
1093
1094 if (!mask && !ip && !invert)
1095 return;
1096
Jan Engelhardtb1d968c2009-04-04 13:28:40 +02001097 printf("%s%s %u.%u.%u.%u",
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001098 invert ? "! " : "",
Jan Engelhardtb1d968c2009-04-04 13:28:40 +02001099 prefix,
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001100 IP_PARTS(ip));
1101
1102 if (mask == 0xFFFFFFFFU) {
1103 printf("/32 ");
1104 return;
1105 }
1106
1107 i = 32;
1108 bits = 0xFFFFFFFEU;
1109 while (--i >= 0 && hmask != bits)
1110 bits <<= 1;
1111 if (i >= 0)
1112 printf("/%u ", i);
1113 else
1114 printf("/%u.%u.%u.%u ", IP_PARTS(mask));
1115}
1116
1117/* We want this to be readable, so only print out neccessary fields.
1118 * Because that's the kind of world I want to live in. */
1119void print_rule(const struct ipt_entry *e,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01001120 struct iptc_handle *h, const char *chain, int counters)
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001121{
1122 struct ipt_entry_target *t;
1123 const char *target_name;
1124
1125 /* print counters for iptables-save */
1126 if (counters > 0)
1127 printf("[%llu:%llu] ", (unsigned long long)e->counters.pcnt, (unsigned long long)e->counters.bcnt);
1128
1129 /* print chain name */
1130 printf("-A %s ", chain);
1131
1132 /* Print IP part. */
1133 print_ip("-s", e->ip.src.s_addr,e->ip.smsk.s_addr,
1134 e->ip.invflags & IPT_INV_SRCIP);
1135
1136 print_ip("-d", e->ip.dst.s_addr, e->ip.dmsk.s_addr,
1137 e->ip.invflags & IPT_INV_DSTIP);
1138
1139 print_iface('i', e->ip.iniface, e->ip.iniface_mask,
1140 e->ip.invflags & IPT_INV_VIA_IN);
1141
1142 print_iface('o', e->ip.outiface, e->ip.outiface_mask,
1143 e->ip.invflags & IPT_INV_VIA_OUT);
1144
1145 print_proto(e->ip.proto, e->ip.invflags & IPT_INV_PROTO);
1146
1147 if (e->ip.flags & IPT_F_FRAG)
1148 printf("%s-f ",
1149 e->ip.invflags & IPT_INV_FRAG ? "! " : "");
1150
1151 /* Print matchinfo part */
1152 if (e->target_offset) {
1153 IPT_MATCH_ITERATE(e, print_match_save, &e->ip);
1154 }
1155
1156 /* print counters for iptables -R */
1157 if (counters < 0)
1158 printf("-c %llu %llu ", (unsigned long long)e->counters.pcnt, (unsigned long long)e->counters.bcnt);
1159
1160 /* Print target name */
1161 target_name = iptc_get_target(e, h);
1162 if (target_name && (*target_name != '\0'))
1163#ifdef IPT_F_GOTO
1164 printf("-%c %s ", e->ip.flags & IPT_F_GOTO ? 'g' : 'j', target_name);
1165#else
1166 printf("-j %s ", target_name);
1167#endif
1168
1169 /* Print targinfo part */
1170 t = ipt_get_target((struct ipt_entry *)e);
1171 if (t->u.user.name[0]) {
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001172 struct xtables_target *target =
1173 xtables_find_target(t->u.user.name, XTF_TRY_LOAD);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001174
1175 if (!target) {
1176 fprintf(stderr, "Can't find library for target `%s'\n",
1177 t->u.user.name);
1178 exit(1);
1179 }
1180
1181 if (target->save)
1182 target->save(&e->ip, t);
1183 else {
1184 /* If the target size is greater than ipt_entry_target
1185 * there is something to be saved, we just don't know
1186 * how to print it */
1187 if (t->u.target_size !=
1188 sizeof(struct ipt_entry_target)) {
1189 fprintf(stderr, "Target `%s' is missing "
1190 "save function\n",
1191 t->u.user.name);
1192 exit(1);
1193 }
1194 }
1195 }
1196 printf("\n");
1197}
1198
1199static int
Henrik Nordstrombb340822008-05-13 13:09:23 +02001200list_rules(const ipt_chainlabel chain, int rulenum, int counters,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01001201 struct iptc_handle *handle)
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001202{
1203 const char *this = NULL;
1204 int found = 0;
1205
1206 if (counters)
1207 counters = -1; /* iptables -c format */
1208
1209 /* Dump out chain names first,
1210 * thereby preventing dependency conflicts */
Henrik Nordstrombb340822008-05-13 13:09:23 +02001211 if (!rulenum) for (this = iptc_first_chain(handle);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001212 this;
1213 this = iptc_next_chain(handle)) {
1214 if (chain && strcmp(this, chain) != 0)
1215 continue;
1216
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01001217 if (iptc_builtin(this, handle)) {
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001218 struct ipt_counters count;
1219 printf("-P %s %s", this, iptc_get_policy(this, &count, handle));
1220 if (counters)
1221 printf(" -c %llu %llu", (unsigned long long)count.pcnt, (unsigned long long)count.bcnt);
1222 printf("\n");
1223 } else {
1224 printf("-N %s\n", this);
1225 }
1226 }
1227
1228 for (this = iptc_first_chain(handle);
1229 this;
1230 this = iptc_next_chain(handle)) {
1231 const struct ipt_entry *e;
Henrik Nordstrombb340822008-05-13 13:09:23 +02001232 int num = 0;
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001233
1234 if (chain && strcmp(this, chain) != 0)
1235 continue;
1236
1237 /* Dump out rules */
1238 e = iptc_first_rule(this, handle);
1239 while(e) {
Henrik Nordstrombb340822008-05-13 13:09:23 +02001240 num++;
1241 if (!rulenum || num == rulenum)
1242 print_rule(e, handle, this, counters);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001243 e = iptc_next_rule(e, handle);
1244 }
1245 found = 1;
1246 }
1247
1248 errno = ENOENT;
1249 return found;
1250}
1251
Marc Bouchere6869a82000-03-20 06:03:29 +00001252static struct ipt_entry *
1253generate_entry(const struct ipt_entry *fw,
Jan Engelhardt395e4412009-02-10 10:43:08 +01001254 struct xtables_rule_match *matches,
Marc Bouchere6869a82000-03-20 06:03:29 +00001255 struct ipt_entry_target *target)
1256{
1257 unsigned int size;
Jan Engelhardt395e4412009-02-10 10:43:08 +01001258 struct xtables_rule_match *matchp;
Marc Bouchere6869a82000-03-20 06:03:29 +00001259 struct ipt_entry *e;
1260
1261 size = sizeof(struct ipt_entry);
Martin Josefsson78cafda2004-02-02 20:01:18 +00001262 for (matchp = matches; matchp; matchp = matchp->next)
1263 size += matchp->match->m->u.match_size;
Marc Bouchere6869a82000-03-20 06:03:29 +00001264
Jan Engelhardt630ef482009-01-27 14:58:41 +01001265 e = xtables_malloc(size + target->u.target_size);
Marc Bouchere6869a82000-03-20 06:03:29 +00001266 *e = *fw;
1267 e->target_offset = size;
Rusty Russell228e98d2000-04-27 10:28:06 +00001268 e->next_offset = size + target->u.target_size;
Marc Bouchere6869a82000-03-20 06:03:29 +00001269
1270 size = 0;
Martin Josefsson78cafda2004-02-02 20:01:18 +00001271 for (matchp = matches; matchp; matchp = matchp->next) {
1272 memcpy(e->elems + size, matchp->match->m, matchp->match->m->u.match_size);
1273 size += matchp->match->m->u.match_size;
Marc Bouchere6869a82000-03-20 06:03:29 +00001274 }
Rusty Russell228e98d2000-04-27 10:28:06 +00001275 memcpy(e->elems + size, target, target->u.target_size);
Marc Bouchere6869a82000-03-20 06:03:29 +00001276
1277 return e;
1278}
1279
Jan Engelhardt395e4412009-02-10 10:43:08 +01001280static void clear_rule_matches(struct xtables_rule_match **matches)
Martin Josefsson78cafda2004-02-02 20:01:18 +00001281{
Jan Engelhardt395e4412009-02-10 10:43:08 +01001282 struct xtables_rule_match *matchp, *tmp;
Martin Josefsson78cafda2004-02-02 20:01:18 +00001283
1284 for (matchp = *matches; matchp;) {
1285 tmp = matchp->next;
Harald Welted6bc6082006-02-11 09:34:16 +00001286 if (matchp->match->m) {
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00001287 free(matchp->match->m);
Harald Welted6bc6082006-02-11 09:34:16 +00001288 matchp->match->m = NULL;
1289 }
Joszef Kadlecsika258ad72006-03-03 09:36:50 +00001290 if (matchp->match == matchp->match->next) {
1291 free(matchp->match);
1292 matchp->match = NULL;
1293 }
Martin Josefsson78cafda2004-02-02 20:01:18 +00001294 free(matchp);
1295 matchp = tmp;
1296 }
1297
1298 *matches = NULL;
1299}
1300
Phil Oester8cf65912005-09-19 15:00:33 +00001301void
1302get_kernel_version(void) {
1303 static struct utsname uts;
1304 int x = 0, y = 0, z = 0;
1305
1306 if (uname(&uts) == -1) {
1307 fprintf(stderr, "Unable to retrieve kernel version.\n");
Jamal Hadi Salim139b3fe2009-02-12 11:43:01 -05001308 xtables_free_opts(1);
Max Kellermann5b76f682008-01-29 13:42:48 +00001309 exit(1);
Phil Oester8cf65912005-09-19 15:00:33 +00001310 }
1311
1312 sscanf(uts.release, "%d.%d.%d", &x, &y, &z);
1313 kernel_version = LINUX_VERSION(x, y, z);
1314}
1315
Jan Engelhardtfd187312008-11-10 16:59:27 +01001316int do_command(int argc, char *argv[], char **table, struct iptc_handle **handle)
Marc Bouchere6869a82000-03-20 06:03:29 +00001317{
1318 struct ipt_entry fw, *e = NULL;
1319 int invert = 0;
1320 unsigned int nsaddrs = 0, ndaddrs = 0;
Michael Granzow332e4ac2009-04-09 18:24:36 +01001321 struct in_addr *saddrs = NULL, *smasks = NULL;
1322 struct in_addr *daddrs = NULL, *dmasks = NULL;
Marc Bouchere6869a82000-03-20 06:03:29 +00001323
1324 int c, verbose = 0;
1325 const char *chain = NULL;
1326 const char *shostnetworkmask = NULL, *dhostnetworkmask = NULL;
1327 const char *policy = NULL, *newname = NULL;
1328 unsigned int rulenum = 0, options = 0, command = 0;
Harald Welteccd49e52001-01-23 22:54:34 +00001329 const char *pcnt = NULL, *bcnt = NULL;
Marc Bouchere6869a82000-03-20 06:03:29 +00001330 int ret = 1;
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +02001331 struct xtables_match *m;
Jan Engelhardt395e4412009-02-10 10:43:08 +01001332 struct xtables_rule_match *matches = NULL;
1333 struct xtables_rule_match *matchp;
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +02001334 struct xtables_target *target = NULL;
1335 struct xtables_target *t;
Marc Bouchere6869a82000-03-20 06:03:29 +00001336 const char *jumpto = "";
1337 char *protocol = NULL;
Harald Welte2d86b772002-08-26 12:21:44 +00001338 int proto_used = 0;
Patrick McHardy875441e2007-10-17 08:48:58 +00001339 unsigned long long cnt;
Marc Bouchere6869a82000-03-20 06:03:29 +00001340
1341 memset(&fw, 0, sizeof(fw));
1342
Harald Welteae1ff9f2000-12-01 14:26:20 +00001343 /* re-set optind to 0 in case do_command gets called
1344 * a second time */
1345 optind = 0;
1346
1347 /* clear mflags in case do_command gets called a second time
1348 * (we clear the global list of all matches for security)*/
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +00001349 for (m = xtables_matches; m; m = m->next)
Harald Welteae1ff9f2000-12-01 14:26:20 +00001350 m->mflags = 0;
Harald Welteae1ff9f2000-12-01 14:26:20 +00001351
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +00001352 for (t = xtables_targets; t; t = t->next) {
Harald Welteae1ff9f2000-12-01 14:26:20 +00001353 t->tflags = 0;
1354 t->used = 0;
1355 }
1356
Marc Bouchere6869a82000-03-20 06:03:29 +00001357 /* Suppress error messages: we may add new options if we
1358 demand-load a protocol. */
1359 opterr = 0;
1360
1361 while ((c = getopt_long(argc, argv,
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001362 "-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 +00001363 opts, NULL)) != -1) {
1364 switch (c) {
1365 /*
1366 * Command selection
1367 */
1368 case 'A':
1369 add_command(&command, CMD_APPEND, CMD_NONE,
1370 invert);
1371 chain = optarg;
1372 break;
1373
1374 case 'D':
1375 add_command(&command, CMD_DELETE, CMD_NONE,
1376 invert);
1377 chain = optarg;
1378 if (optind < argc && argv[optind][0] != '-'
1379 && argv[optind][0] != '!') {
1380 rulenum = parse_rulenumber(argv[optind++]);
1381 command = CMD_DELETE_NUM;
1382 }
1383 break;
1384
Marc Bouchere6869a82000-03-20 06:03:29 +00001385 case 'R':
1386 add_command(&command, CMD_REPLACE, CMD_NONE,
1387 invert);
1388 chain = optarg;
1389 if (optind < argc && argv[optind][0] != '-'
1390 && argv[optind][0] != '!')
1391 rulenum = parse_rulenumber(argv[optind++]);
1392 else
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001393 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +00001394 "-%c requires a rule number",
1395 cmd2char(CMD_REPLACE));
1396 break;
1397
1398 case 'I':
1399 add_command(&command, CMD_INSERT, CMD_NONE,
1400 invert);
1401 chain = optarg;
1402 if (optind < argc && argv[optind][0] != '-'
1403 && argv[optind][0] != '!')
1404 rulenum = parse_rulenumber(argv[optind++]);
1405 else rulenum = 1;
1406 break;
1407
1408 case 'L':
Mohit Mehtab34199e2009-08-19 10:56:33 -07001409 add_command(&command, CMD_LIST,
1410 CMD_ZERO | CMD_ZERO_NUM, invert);
Marc Bouchere6869a82000-03-20 06:03:29 +00001411 if (optarg) chain = optarg;
1412 else if (optind < argc && argv[optind][0] != '-'
1413 && argv[optind][0] != '!')
1414 chain = argv[optind++];
Henrik Nordstrombb340822008-05-13 13:09:23 +02001415 if (optind < argc && argv[optind][0] != '-'
1416 && argv[optind][0] != '!')
1417 rulenum = parse_rulenumber(argv[optind++]);
Marc Bouchere6869a82000-03-20 06:03:29 +00001418 break;
1419
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001420 case 'S':
Mohit Mehtab34199e2009-08-19 10:56:33 -07001421 add_command(&command, CMD_LIST_RULES,
1422 CMD_ZERO|CMD_ZERO_NUM, invert);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001423 if (optarg) chain = optarg;
1424 else if (optind < argc && argv[optind][0] != '-'
1425 && argv[optind][0] != '!')
1426 chain = argv[optind++];
Henrik Nordstrombb340822008-05-13 13:09:23 +02001427 if (optind < argc && argv[optind][0] != '-'
1428 && argv[optind][0] != '!')
1429 rulenum = parse_rulenumber(argv[optind++]);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001430 break;
1431
Marc Bouchere6869a82000-03-20 06:03:29 +00001432 case 'F':
1433 add_command(&command, CMD_FLUSH, CMD_NONE,
1434 invert);
1435 if (optarg) chain = optarg;
1436 else if (optind < argc && argv[optind][0] != '-'
1437 && argv[optind][0] != '!')
1438 chain = argv[optind++];
1439 break;
1440
1441 case 'Z':
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02001442 add_command(&command, CMD_ZERO, CMD_LIST|CMD_LIST_RULES,
Marc Bouchere6869a82000-03-20 06:03:29 +00001443 invert);
1444 if (optarg) chain = optarg;
1445 else if (optind < argc && argv[optind][0] != '-'
1446 && argv[optind][0] != '!')
1447 chain = argv[optind++];
Mohit Mehtab34199e2009-08-19 10:56:33 -07001448 if (optind < argc && argv[optind][0] != '-'
1449 && argv[optind][0] != '!') {
1450 rulenum = parse_rulenumber(argv[optind++]);
1451 command = CMD_ZERO_NUM;
1452 }
Marc Bouchere6869a82000-03-20 06:03:29 +00001453 break;
1454
1455 case 'N':
Yasuyuki KOZAKAI8d8c8ea2005-06-13 01:06:10 +00001456 if (optarg && (*optarg == '-' || *optarg == '!'))
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001457 xtables_error(PARAMETER_PROBLEM,
Harald Welte6336bfd2002-05-07 14:41:43 +00001458 "chain name not allowed to start "
Yasuyuki KOZAKAI8d8c8ea2005-06-13 01:06:10 +00001459 "with `%c'\n", *optarg);
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001460 if (xtables_find_target(optarg, XTF_TRY_LOAD))
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001461 xtables_error(PARAMETER_PROBLEM,
Joszef Kadlecsik08f15272002-06-24 12:37:29 +00001462 "chain name may not clash "
1463 "with target name\n");
Marc Bouchere6869a82000-03-20 06:03:29 +00001464 add_command(&command, CMD_NEW_CHAIN, CMD_NONE,
1465 invert);
1466 chain = optarg;
1467 break;
1468
1469 case 'X':
1470 add_command(&command, CMD_DELETE_CHAIN, CMD_NONE,
1471 invert);
1472 if (optarg) chain = optarg;
1473 else if (optind < argc && argv[optind][0] != '-'
1474 && argv[optind][0] != '!')
1475 chain = argv[optind++];
1476 break;
1477
1478 case 'E':
1479 add_command(&command, CMD_RENAME_CHAIN, CMD_NONE,
1480 invert);
1481 chain = optarg;
1482 if (optind < argc && argv[optind][0] != '-'
1483 && argv[optind][0] != '!')
1484 newname = argv[optind++];
M.P.Anand Babuc9f20d32000-06-09 09:22:38 +00001485 else
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001486 xtables_error(PARAMETER_PROBLEM,
Max Kellermann5b76f682008-01-29 13:42:48 +00001487 "-%c requires old-chain-name and "
M.P.Anand Babuc9f20d32000-06-09 09:22:38 +00001488 "new-chain-name",
1489 cmd2char(CMD_RENAME_CHAIN));
Marc Bouchere6869a82000-03-20 06:03:29 +00001490 break;
1491
1492 case 'P':
1493 add_command(&command, CMD_SET_POLICY, CMD_NONE,
1494 invert);
1495 chain = optarg;
1496 if (optind < argc && argv[optind][0] != '-'
1497 && argv[optind][0] != '!')
1498 policy = argv[optind++];
1499 else
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001500 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +00001501 "-%c requires a chain and a policy",
1502 cmd2char(CMD_SET_POLICY));
1503 break;
1504
1505 case 'h':
1506 if (!optarg)
1507 optarg = argv[optind];
1508
Rusty Russell2e0a3212000-04-19 11:23:18 +00001509 /* iptables -p icmp -h */
Martin Josefsson66aea6f2004-05-26 15:41:54 +00001510 if (!matches && protocol)
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001511 xtables_find_match(protocol,
1512 XTF_TRY_LOAD, &matches);
Rusty Russell2e0a3212000-04-19 11:23:18 +00001513
Martin Josefsson66aea6f2004-05-26 15:41:54 +00001514 exit_printhelp(matches);
Marc Bouchere6869a82000-03-20 06:03:29 +00001515
1516 /*
1517 * Option selection
1518 */
1519 case 'p':
Jan Engelhardtbf971282009-11-03 19:55:11 +01001520 xtables_check_inverse(optarg, &invert, &optind, argc, argv);
Marc Bouchere6869a82000-03-20 06:03:29 +00001521 set_option(&options, OPT_PROTOCOL, &fw.ip.invflags,
1522 invert);
1523
1524 /* Canonicalize into lower case */
Jan Engelhardtbbe83862009-10-24 00:45:33 +02001525 for (protocol = optarg; *protocol; protocol++)
Marc Bouchere6869a82000-03-20 06:03:29 +00001526 *protocol = tolower(*protocol);
1527
Jan Engelhardtbbe83862009-10-24 00:45:33 +02001528 protocol = optarg;
Jan Engelhardt1de7edf2009-01-30 05:38:11 +01001529 fw.ip.proto = xtables_parse_protocol(protocol);
Marc Bouchere6869a82000-03-20 06:03:29 +00001530
1531 if (fw.ip.proto == 0
1532 && (fw.ip.invflags & IPT_INV_PROTO))
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001533 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +00001534 "rule would never match protocol");
Marc Bouchere6869a82000-03-20 06:03:29 +00001535 break;
1536
1537 case 's':
Jan Engelhardtbf971282009-11-03 19:55:11 +01001538 xtables_check_inverse(optarg, &invert, &optind, argc, argv);
Marc Bouchere6869a82000-03-20 06:03:29 +00001539 set_option(&options, OPT_SOURCE, &fw.ip.invflags,
1540 invert);
Jan Engelhardtbbe83862009-10-24 00:45:33 +02001541 shostnetworkmask = optarg;
Marc Bouchere6869a82000-03-20 06:03:29 +00001542 break;
1543
1544 case 'd':
Jan Engelhardtbf971282009-11-03 19:55:11 +01001545 xtables_check_inverse(optarg, &invert, &optind, argc, argv);
Marc Bouchere6869a82000-03-20 06:03:29 +00001546 set_option(&options, OPT_DESTINATION, &fw.ip.invflags,
1547 invert);
Jan Engelhardtbbe83862009-10-24 00:45:33 +02001548 dhostnetworkmask = optarg;
Marc Bouchere6869a82000-03-20 06:03:29 +00001549 break;
1550
Henrik Nordstrom17fc1632005-11-05 09:26:40 +00001551#ifdef IPT_F_GOTO
1552 case 'g':
1553 set_option(&options, OPT_JUMP, &fw.ip.invflags,
1554 invert);
1555 fw.ip.flags |= IPT_F_GOTO;
1556 jumpto = parse_target(optarg);
1557 break;
1558#endif
1559
Marc Bouchere6869a82000-03-20 06:03:29 +00001560 case 'j':
1561 set_option(&options, OPT_JUMP, &fw.ip.invflags,
1562 invert);
1563 jumpto = parse_target(optarg);
Rusty Russell859f7262000-08-24 06:00:33 +00001564 /* TRY_LOAD (may be chain name) */
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001565 target = xtables_find_target(jumpto, XTF_TRY_LOAD);
Marc Bouchere6869a82000-03-20 06:03:29 +00001566
1567 if (target) {
Rusty Russell228e98d2000-04-27 10:28:06 +00001568 size_t size;
1569
Rusty Russell73f72f52000-07-03 10:17:57 +00001570 size = IPT_ALIGN(sizeof(struct ipt_entry_target))
1571 + target->size;
Marc Bouchere6869a82000-03-20 06:03:29 +00001572
Jan Engelhardt630ef482009-01-27 14:58:41 +01001573 target->t = xtables_calloc(1, size);
Rusty Russell228e98d2000-04-27 10:28:06 +00001574 target->t->u.target_size = size;
1575 strcpy(target->t->u.user.name, jumpto);
Jamal Hadi Salim85332212009-02-12 09:33:59 -05001576 xtables_set_revision(target->t->u.user.name,
Rusty Russell3aef54d2005-01-03 03:48:40 +00001577 target->revision);
Pablo Neira8115e542005-02-14 13:13:04 +00001578 if (target->init != NULL)
Peter Rileyea146a92007-09-02 13:09:07 +00001579 target->init(target->t);
Jamal Hadi Salim70581922009-02-13 08:36:44 -05001580 opts = xtables_merge_options(opts,
Max Kellermann5b76f682008-01-29 13:42:48 +00001581 target->extra_opts,
Pablo Neira Ayuso8e707d72008-01-17 17:30:27 +00001582 &target->option_offset);
1583 if (opts == NULL)
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001584 xtables_error(OTHER_PROBLEM,
Pablo Neira Ayuso8e707d72008-01-17 17:30:27 +00001585 "can't alloc memory!");
Marc Bouchere6869a82000-03-20 06:03:29 +00001586 }
1587 break;
1588
1589
1590 case 'i':
Jan Engelhardtbf971282009-11-03 19:55:11 +01001591 xtables_check_inverse(optarg, &invert, &optind, argc, argv);
Marc Bouchere6869a82000-03-20 06:03:29 +00001592 set_option(&options, OPT_VIANAMEIN, &fw.ip.invflags,
1593 invert);
Jan Engelhardtbbe83862009-10-24 00:45:33 +02001594 xtables_parse_interface(optarg,
Marc Bouchere6869a82000-03-20 06:03:29 +00001595 fw.ip.iniface,
1596 fw.ip.iniface_mask);
Marc Bouchere6869a82000-03-20 06:03:29 +00001597 break;
1598
1599 case 'o':
Jan Engelhardtbf971282009-11-03 19:55:11 +01001600 xtables_check_inverse(optarg, &invert, &optind, argc, argv);
Marc Bouchere6869a82000-03-20 06:03:29 +00001601 set_option(&options, OPT_VIANAMEOUT, &fw.ip.invflags,
1602 invert);
Jan Engelhardtbbe83862009-10-24 00:45:33 +02001603 xtables_parse_interface(optarg,
Marc Bouchere6869a82000-03-20 06:03:29 +00001604 fw.ip.outiface,
1605 fw.ip.outiface_mask);
Marc Bouchere6869a82000-03-20 06:03:29 +00001606 break;
1607
1608 case 'f':
1609 set_option(&options, OPT_FRAGMENT, &fw.ip.invflags,
1610 invert);
1611 fw.ip.flags |= IPT_F_FRAG;
Marc Bouchere6869a82000-03-20 06:03:29 +00001612 break;
1613
1614 case 'v':
1615 if (!verbose)
1616 set_option(&options, OPT_VERBOSE,
1617 &fw.ip.invflags, invert);
1618 verbose++;
1619 break;
1620
Rusty Russell52a51492000-05-02 16:44:29 +00001621 case 'm': {
1622 size_t size;
1623
Marc Bouchere6869a82000-03-20 06:03:29 +00001624 if (invert)
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001625 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +00001626 "unexpected ! flag before --match");
1627
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001628 m = xtables_find_match(optarg, XTF_LOAD_MUST_SUCCEED,
1629 &matches);
Rusty Russell73f72f52000-07-03 10:17:57 +00001630 size = IPT_ALIGN(sizeof(struct ipt_entry_match))
1631 + m->size;
Jan Engelhardt630ef482009-01-27 14:58:41 +01001632 m->m = xtables_calloc(1, size);
Rusty Russell52a51492000-05-02 16:44:29 +00001633 m->m->u.match_size = size;
Rusty Russell27ff3472000-05-12 14:04:50 +00001634 strcpy(m->m->u.user.name, m->name);
Jamal Hadi Salim85332212009-02-12 09:33:59 -05001635 xtables_set_revision(m->m->u.user.name, m->revision);
Pablo Neira8115e542005-02-14 13:13:04 +00001636 if (m->init != NULL)
Peter Rileyea146a92007-09-02 13:09:07 +00001637 m->init(m->m);
Pablo Neira Ayuso8e707d72008-01-17 17:30:27 +00001638 if (m != m->next) {
Joszef Kadlecsika258ad72006-03-03 09:36:50 +00001639 /* Merge options for non-cloned matches */
Jamal Hadi Salim70581922009-02-13 08:36:44 -05001640 opts = xtables_merge_options(opts,
Max Kellermann5b76f682008-01-29 13:42:48 +00001641 m->extra_opts,
Pablo Neira Ayuso8e707d72008-01-17 17:30:27 +00001642 &m->option_offset);
1643 if (opts == NULL)
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001644 xtables_error(OTHER_PROBLEM,
Pablo Neira Ayuso8e707d72008-01-17 17:30:27 +00001645 "can't alloc memory!");
1646 }
Rusty Russell52a51492000-05-02 16:44:29 +00001647 }
1648 break;
Marc Bouchere6869a82000-03-20 06:03:29 +00001649
1650 case 'n':
1651 set_option(&options, OPT_NUMERIC, &fw.ip.invflags,
1652 invert);
1653 break;
1654
1655 case 't':
1656 if (invert)
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001657 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +00001658 "unexpected ! flag before --table");
Jan Engelhardtd0cbf5f2008-08-04 12:51:01 +02001659 *table = optarg;
Marc Bouchere6869a82000-03-20 06:03:29 +00001660 break;
1661
1662 case 'x':
1663 set_option(&options, OPT_EXPANDED, &fw.ip.invflags,
1664 invert);
1665 break;
1666
1667 case 'V':
1668 if (invert)
Jamal Hadi Salim5dd19de2009-02-13 10:42:24 -05001669 printf("Not %s ;-)\n", prog_vers);
Marc Bouchere6869a82000-03-20 06:03:29 +00001670 else
1671 printf("%s v%s\n",
Jamal Hadi Salim5dd19de2009-02-13 10:42:24 -05001672 prog_name, prog_vers);
Marc Bouchere6869a82000-03-20 06:03:29 +00001673 exit(0);
1674
1675 case '0':
1676 set_option(&options, OPT_LINENUMBERS, &fw.ip.invflags,
1677 invert);
1678 break;
1679
Harald Welte82dd2ec2000-12-19 05:18:15 +00001680 case 'M':
Jan Engelhardtc021c3c2009-01-27 15:10:05 +01001681 xtables_modprobe_program = optarg;
Harald Welte82dd2ec2000-12-19 05:18:15 +00001682 break;
1683
Harald Welteccd49e52001-01-23 22:54:34 +00001684 case 'c':
1685
1686 set_option(&options, OPT_COUNTERS, &fw.ip.invflags,
1687 invert);
1688 pcnt = optarg;
Henrik Nordstrom60a60732008-05-13 13:10:38 +02001689 bcnt = strchr(pcnt + 1, ',');
1690 if (bcnt)
1691 bcnt++;
1692 if (!bcnt && optind < argc && argv[optind][0] != '-'
Harald Welteccd49e52001-01-23 22:54:34 +00001693 && argv[optind][0] != '!')
1694 bcnt = argv[optind++];
Henrik Nordstrom60a60732008-05-13 13:10:38 +02001695 if (!bcnt)
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001696 xtables_error(PARAMETER_PROBLEM,
Harald Welteccd49e52001-01-23 22:54:34 +00001697 "-%c requires packet and byte counter",
1698 opt2char(OPT_COUNTERS));
1699
Henrik Nordstrom60a60732008-05-13 13:10:38 +02001700 if (sscanf(pcnt, "%llu", &cnt) != 1)
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001701 xtables_error(PARAMETER_PROBLEM,
Harald Welteccd49e52001-01-23 22:54:34 +00001702 "-%c packet counter not numeric",
1703 opt2char(OPT_COUNTERS));
Patrick McHardy875441e2007-10-17 08:48:58 +00001704 fw.counters.pcnt = cnt;
Harald Welteccd49e52001-01-23 22:54:34 +00001705
Henrik Nordstrom60a60732008-05-13 13:10:38 +02001706 if (sscanf(bcnt, "%llu", &cnt) != 1)
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001707 xtables_error(PARAMETER_PROBLEM,
Harald Welteccd49e52001-01-23 22:54:34 +00001708 "-%c byte counter not numeric",
1709 opt2char(OPT_COUNTERS));
Patrick McHardy875441e2007-10-17 08:48:58 +00001710 fw.counters.bcnt = cnt;
Harald Welteccd49e52001-01-23 22:54:34 +00001711 break;
1712
1713
Marc Bouchere6869a82000-03-20 06:03:29 +00001714 case 1: /* non option */
1715 if (optarg[0] == '!' && optarg[1] == '\0') {
1716 if (invert)
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001717 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +00001718 "multiple consecutive ! not"
1719 " allowed");
1720 invert = TRUE;
1721 optarg[0] = '\0';
1722 continue;
1723 }
Max Kellermannaae4f822007-10-17 16:36:49 +00001724 fprintf(stderr, "Bad argument `%s'\n", optarg);
Marc Bouchere6869a82000-03-20 06:03:29 +00001725 exit_tryhelp(2);
1726
1727 default:
Jan Engelhardt92edcb02009-06-12 20:35:42 +02001728 if (target == NULL || target->parse == NULL ||
1729 !target->parse(c - target->option_offset,
Marc Bouchere6869a82000-03-20 06:03:29 +00001730 argv, invert,
1731 &target->tflags,
Jan Engelhardt92edcb02009-06-12 20:35:42 +02001732 &fw, &target->t)) {
Martin Josefsson78cafda2004-02-02 20:01:18 +00001733 for (matchp = matches; matchp; matchp = matchp->next) {
Jan Engelhardt92edcb02009-06-12 20:35:42 +02001734 if (matchp->completed ||
1735 matchp->match->parse == NULL)
Joszef Kadlecsika258ad72006-03-03 09:36:50 +00001736 continue;
Martin Josefsson78cafda2004-02-02 20:01:18 +00001737 if (matchp->match->parse(c - matchp->match->option_offset,
Marc Bouchere6869a82000-03-20 06:03:29 +00001738 argv, invert,
Martin Josefsson78cafda2004-02-02 20:01:18 +00001739 &matchp->match->mflags,
Marc Bouchere6869a82000-03-20 06:03:29 +00001740 &fw,
Martin Josefsson78cafda2004-02-02 20:01:18 +00001741 &matchp->match->m))
Marc Bouchere6869a82000-03-20 06:03:29 +00001742 break;
1743 }
Martin Josefsson78cafda2004-02-02 20:01:18 +00001744 m = matchp ? matchp->match : NULL;
Harald Welte2d86b772002-08-26 12:21:44 +00001745
1746 /* If you listen carefully, you can
1747 actually hear this code suck. */
1748
1749 /* some explanations (after four different bugs
Joszef Kadlecsika258ad72006-03-03 09:36:50 +00001750 * in 3 different releases): If we encounter a
Harald Welte2d86b772002-08-26 12:21:44 +00001751 * parameter, that has not been parsed yet,
1752 * it's not an option of an explicitly loaded
1753 * match or a target. However, we support
1754 * implicit loading of the protocol match
1755 * extension. '-p tcp' means 'l4 proto 6' and
1756 * at the same time 'load tcp protocol match on
1757 * demand if we specify --dport'.
1758 *
1759 * To make this work, we need to make sure:
1760 * - the parameter has not been parsed by
1761 * a match (m above)
1762 * - a protocol has been specified
1763 * - the protocol extension has not been
1764 * loaded yet, or is loaded and unused
1765 * [think of iptables-restore!]
1766 * - the protocol extension can be successively
1767 * loaded
1768 */
1769 if (m == NULL
1770 && protocol
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001771 && (!find_proto(protocol, XTF_DONT_LOAD,
Max Kellermann5b76f682008-01-29 13:42:48 +00001772 options&OPT_NUMERIC, NULL)
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001773 || (find_proto(protocol, XTF_DONT_LOAD,
Martin Josefsson78cafda2004-02-02 20:01:18 +00001774 options&OPT_NUMERIC, NULL)
Harald Welte2d86b772002-08-26 12:21:44 +00001775 && (proto_used == 0))
1776 )
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001777 && (m = find_proto(protocol, XTF_TRY_LOAD,
Martin Josefsson78cafda2004-02-02 20:01:18 +00001778 options&OPT_NUMERIC, &matches))) {
Harald Welte2d86b772002-08-26 12:21:44 +00001779 /* Try loading protocol */
1780 size_t size;
Max Kellermann5b76f682008-01-29 13:42:48 +00001781
Harald Welte2d86b772002-08-26 12:21:44 +00001782 proto_used = 1;
1783
1784 size = IPT_ALIGN(sizeof(struct ipt_entry_match))
1785 + m->size;
1786
Jan Engelhardt630ef482009-01-27 14:58:41 +01001787 m->m = xtables_calloc(1, size);
Harald Welte2d86b772002-08-26 12:21:44 +00001788 m->m->u.match_size = size;
1789 strcpy(m->m->u.user.name, m->name);
Jamal Hadi Salim85332212009-02-12 09:33:59 -05001790 xtables_set_revision(m->m->u.user.name,
Rusty Russell3aef54d2005-01-03 03:48:40 +00001791 m->revision);
Pablo Neira8115e542005-02-14 13:13:04 +00001792 if (m->init != NULL)
Peter Rileyea146a92007-09-02 13:09:07 +00001793 m->init(m->m);
Harald Welte2d86b772002-08-26 12:21:44 +00001794
Jamal Hadi Salim70581922009-02-13 08:36:44 -05001795 opts = xtables_merge_options(opts,
Max Kellermann5b76f682008-01-29 13:42:48 +00001796 m->extra_opts,
Pablo Neira Ayuso8e707d72008-01-17 17:30:27 +00001797 &m->option_offset);
1798 if (opts == NULL)
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001799 xtables_error(OTHER_PROBLEM,
Pablo Neira Ayuso8e707d72008-01-17 17:30:27 +00001800 "can't alloc memory!");
Harald Welte2d86b772002-08-26 12:21:44 +00001801
1802 optind--;
1803 continue;
1804 }
Pablo Neira Ayuso0e6b7d32008-11-19 19:01:26 +01001805 if (!m) {
1806 if (c == '?') {
1807 if (optopt) {
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001808 xtables_error(
Pablo Neira Ayuso0e6b7d32008-11-19 19:01:26 +01001809 PARAMETER_PROBLEM,
1810 "option `%s' "
1811 "requires an "
1812 "argument",
1813 argv[optind-1]);
1814 } else {
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001815 xtables_error(
Pablo Neira Ayuso0e6b7d32008-11-19 19:01:26 +01001816 PARAMETER_PROBLEM,
1817 "unknown option "
1818 "`%s'",
1819 argv[optind-1]);
1820 }
1821 }
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001822 xtables_error(PARAMETER_PROBLEM,
Jan Engelhardtd0cbf5f2008-08-04 12:51:01 +02001823 "Unknown arg `%s'", optarg);
Pablo Neira Ayuso0e6b7d32008-11-19 19:01:26 +01001824 }
Marc Bouchere6869a82000-03-20 06:03:29 +00001825 }
1826 }
1827 invert = FALSE;
1828 }
1829
Jan Engelhardt1eada722008-08-13 14:41:32 +02001830 if (strcmp(*table, "nat") == 0 &&
1831 ((policy != NULL && strcmp(policy, "DROP") == 0) ||
1832 (jumpto != NULL && strcmp(jumpto, "DROP") == 0)))
Jan Engelhardte0390be2009-03-15 21:22:49 +01001833 xtables_error(PARAMETER_PROBLEM,
1834 "\nThe \"nat\" table is not intended for filtering, "
1835 "the use of DROP is therefore inhibited.\n\n");
Jan Engelhardt1eada722008-08-13 14:41:32 +02001836
Martin Josefsson78cafda2004-02-02 20:01:18 +00001837 for (matchp = matches; matchp; matchp = matchp->next)
Jan Engelhardt830132a2007-10-04 16:24:50 +00001838 if (matchp->match->final_check != NULL)
1839 matchp->match->final_check(matchp->match->mflags);
Sven Kochfb1279a2001-02-27 12:25:12 +00001840
Jan Engelhardt830132a2007-10-04 16:24:50 +00001841 if (target != NULL && target->final_check != NULL)
Marc Bouchere6869a82000-03-20 06:03:29 +00001842 target->final_check(target->tflags);
1843
1844 /* Fix me: must put inverse options checking here --MN */
1845
1846 if (optind < argc)
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001847 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +00001848 "unknown arguments found on commandline");
1849 if (!command)
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001850 xtables_error(PARAMETER_PROBLEM, "no command specified");
Marc Bouchere6869a82000-03-20 06:03:29 +00001851 if (invert)
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001852 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +00001853 "nothing appropriate following !");
1854
Harald Welte6336bfd2002-05-07 14:41:43 +00001855 if (command & (CMD_REPLACE | CMD_INSERT | CMD_DELETE | CMD_APPEND)) {
Marc Bouchere6869a82000-03-20 06:03:29 +00001856 if (!(options & OPT_DESTINATION))
1857 dhostnetworkmask = "0.0.0.0/0";
1858 if (!(options & OPT_SOURCE))
1859 shostnetworkmask = "0.0.0.0/0";
1860 }
1861
1862 if (shostnetworkmask)
Michael Granzow332e4ac2009-04-09 18:24:36 +01001863 xtables_ipparse_multiple(shostnetworkmask, &saddrs,
1864 &smasks, &nsaddrs);
Marc Bouchere6869a82000-03-20 06:03:29 +00001865
1866 if (dhostnetworkmask)
Michael Granzow332e4ac2009-04-09 18:24:36 +01001867 xtables_ipparse_multiple(dhostnetworkmask, &daddrs,
1868 &dmasks, &ndaddrs);
Marc Bouchere6869a82000-03-20 06:03:29 +00001869
1870 if ((nsaddrs > 1 || ndaddrs > 1) &&
1871 (fw.ip.invflags & (IPT_INV_SRCIP | IPT_INV_DSTIP)))
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001872 xtables_error(PARAMETER_PROBLEM, "! not allowed with multiple"
Marc Bouchere6869a82000-03-20 06:03:29 +00001873 " source or destination IP addresses");
1874
Marc Bouchere6869a82000-03-20 06:03:29 +00001875 if (command == CMD_REPLACE && (nsaddrs != 1 || ndaddrs != 1))
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001876 xtables_error(PARAMETER_PROBLEM, "Replacement rule does not "
Marc Bouchere6869a82000-03-20 06:03:29 +00001877 "specify a unique address");
1878
1879 generic_opt_check(command, options);
1880
1881 if (chain && strlen(chain) > IPT_FUNCTION_MAXNAMELEN)
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001882 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +00001883 "chain name `%s' too long (must be under %i chars)",
1884 chain, IPT_FUNCTION_MAXNAMELEN);
1885
Harald Welteae1ff9f2000-12-01 14:26:20 +00001886 /* only allocate handle if we weren't called with a handle */
Martin Josefsson8371e152003-05-05 19:33:40 +00001887 if (!*handle)
Harald Welteae1ff9f2000-12-01 14:26:20 +00001888 *handle = iptc_init(*table);
1889
Rusty Russell8beb0492004-12-22 00:37:10 +00001890 /* try to insmod the module if iptc_init failed */
Jan Engelhardtc021c3c2009-01-27 15:10:05 +01001891 if (!*handle && xtables_load_ko(xtables_modprobe_program, false) != -1)
Harald Welte82dd2ec2000-12-19 05:18:15 +00001892 *handle = iptc_init(*table);
Harald Welte82dd2ec2000-12-19 05:18:15 +00001893
Marc Bouchere6869a82000-03-20 06:03:29 +00001894 if (!*handle)
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001895 xtables_error(VERSION_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +00001896 "can't initialize iptables table `%s': %s",
1897 *table, iptc_strerror(errno));
1898
Harald Welte6336bfd2002-05-07 14:41:43 +00001899 if (command == CMD_APPEND
Marc Bouchere6869a82000-03-20 06:03:29 +00001900 || command == CMD_DELETE
1901 || command == CMD_INSERT
1902 || command == CMD_REPLACE) {
Rusty Russella4860fd2000-06-17 16:13:02 +00001903 if (strcmp(chain, "PREROUTING") == 0
1904 || strcmp(chain, "INPUT") == 0) {
1905 /* -o not valid with incoming packets. */
1906 if (options & OPT_VIANAMEOUT)
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001907 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +00001908 "Can't use -%c with %s\n",
1909 opt2char(OPT_VIANAMEOUT),
1910 chain);
1911 }
1912
Rusty Russella4860fd2000-06-17 16:13:02 +00001913 if (strcmp(chain, "POSTROUTING") == 0
1914 || strcmp(chain, "OUTPUT") == 0) {
1915 /* -i not valid with outgoing packets */
1916 if (options & OPT_VIANAMEIN)
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001917 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +00001918 "Can't use -%c with %s\n",
1919 opt2char(OPT_VIANAMEIN),
1920 chain);
1921 }
1922
1923 if (target && iptc_is_chain(jumpto, *handle)) {
Max Kellermannaae4f822007-10-17 16:36:49 +00001924 fprintf(stderr,
1925 "Warning: using chain %s, not extension\n",
1926 jumpto);
Marc Bouchere6869a82000-03-20 06:03:29 +00001927
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00001928 if (target->t)
1929 free(target->t);
1930
Marc Bouchere6869a82000-03-20 06:03:29 +00001931 target = NULL;
1932 }
1933
1934 /* If they didn't specify a target, or it's a chain
1935 name, use standard. */
1936 if (!target
1937 && (strlen(jumpto) == 0
1938 || iptc_is_chain(jumpto, *handle))) {
1939 size_t size;
Marc Bouchere6869a82000-03-20 06:03:29 +00001940
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001941 target = xtables_find_target(IPT_STANDARD_TARGET,
1942 XTF_LOAD_MUST_SUCCEED);
Marc Bouchere6869a82000-03-20 06:03:29 +00001943
1944 size = sizeof(struct ipt_entry_target)
Rusty Russell228e98d2000-04-27 10:28:06 +00001945 + target->size;
Jan Engelhardt630ef482009-01-27 14:58:41 +01001946 target->t = xtables_calloc(1, size);
Rusty Russell228e98d2000-04-27 10:28:06 +00001947 target->t->u.target_size = size;
1948 strcpy(target->t->u.user.name, jumpto);
Pablo Neira0b905642005-11-17 13:04:49 +00001949 if (!iptc_is_chain(jumpto, *handle))
Jamal Hadi Salim85332212009-02-12 09:33:59 -05001950 xtables_set_revision(target->t->u.user.name,
Pablo Neira0b905642005-11-17 13:04:49 +00001951 target->revision);
Pablo Neira8115e542005-02-14 13:13:04 +00001952 if (target->init != NULL)
Peter Rileyea146a92007-09-02 13:09:07 +00001953 target->init(target->t);
Marc Bouchere6869a82000-03-20 06:03:29 +00001954 }
1955
Rusty Russell7e53bf92000-03-20 07:03:28 +00001956 if (!target) {
Harald Weltef2a24bd2000-08-30 02:11:18 +00001957 /* it is no chain, and we can't load a plugin.
1958 * We cannot know if the plugin is corrupt, non
Rusty Russella4d3e1f2001-01-07 06:56:02 +00001959 * existant OR if the user just misspelled a
Harald Weltef2a24bd2000-08-30 02:11:18 +00001960 * chain. */
Henrik Nordstrom17fc1632005-11-05 09:26:40 +00001961#ifdef IPT_F_GOTO
1962 if (fw.ip.flags & IPT_F_GOTO)
Jan Engelhardt1829ed42009-02-21 03:29:44 +01001963 xtables_error(PARAMETER_PROBLEM,
Henrik Nordstrom17fc1632005-11-05 09:26:40 +00001964 "goto '%s' is not a chain\n", jumpto);
1965#endif
Jan Engelhardt2338efd2009-01-27 15:23:01 +01001966 xtables_find_target(jumpto, XTF_LOAD_MUST_SUCCEED);
Marc Bouchere6869a82000-03-20 06:03:29 +00001967 } else {
Martin Josefsson78cafda2004-02-02 20:01:18 +00001968 e = generate_entry(&fw, matches, target->t);
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00001969 free(target->t);
Marc Bouchere6869a82000-03-20 06:03:29 +00001970 }
1971 }
1972
1973 switch (command) {
1974 case CMD_APPEND:
1975 ret = append_entry(chain, e,
Michael Granzow332e4ac2009-04-09 18:24:36 +01001976 nsaddrs, saddrs, smasks,
1977 ndaddrs, daddrs, dmasks,
Marc Bouchere6869a82000-03-20 06:03:29 +00001978 options&OPT_VERBOSE,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01001979 *handle);
Marc Bouchere6869a82000-03-20 06:03:29 +00001980 break;
Marc Bouchere6869a82000-03-20 06:03:29 +00001981 case CMD_DELETE:
1982 ret = delete_entry(chain, e,
Michael Granzow332e4ac2009-04-09 18:24:36 +01001983 nsaddrs, saddrs, smasks,
1984 ndaddrs, daddrs, dmasks,
Marc Bouchere6869a82000-03-20 06:03:29 +00001985 options&OPT_VERBOSE,
Jan Engelhardt4f0d7b62009-10-27 02:59:33 +01001986 *handle, matches, target);
Marc Bouchere6869a82000-03-20 06:03:29 +00001987 break;
1988 case CMD_DELETE_NUM:
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01001989 ret = iptc_delete_num_entry(chain, rulenum - 1, *handle);
Marc Bouchere6869a82000-03-20 06:03:29 +00001990 break;
1991 case CMD_REPLACE:
1992 ret = replace_entry(chain, e, rulenum - 1,
Jan Engelhardt75cb7632009-11-15 15:51:27 +01001993 saddrs, smasks, daddrs, dmasks,
1994 options&OPT_VERBOSE, *handle);
Marc Bouchere6869a82000-03-20 06:03:29 +00001995 break;
1996 case CMD_INSERT:
1997 ret = insert_entry(chain, e, rulenum - 1,
Michael Granzow332e4ac2009-04-09 18:24:36 +01001998 nsaddrs, saddrs, smasks,
1999 ndaddrs, daddrs, dmasks,
Marc Bouchere6869a82000-03-20 06:03:29 +00002000 options&OPT_VERBOSE,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002001 *handle);
Marc Bouchere6869a82000-03-20 06:03:29 +00002002 break;
Marc Bouchere6869a82000-03-20 06:03:29 +00002003 case CMD_FLUSH:
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002004 ret = flush_entries(chain, options&OPT_VERBOSE, *handle);
Marc Bouchere6869a82000-03-20 06:03:29 +00002005 break;
2006 case CMD_ZERO:
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002007 ret = zero_entries(chain, options&OPT_VERBOSE, *handle);
Marc Bouchere6869a82000-03-20 06:03:29 +00002008 break;
Mohit Mehtab34199e2009-08-19 10:56:33 -07002009 case CMD_ZERO_NUM:
2010 ret = iptc_zero_counter(chain, rulenum, *handle);
2011 break;
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02002012 case CMD_LIST:
Marc Bouchere6869a82000-03-20 06:03:29 +00002013 case CMD_LIST|CMD_ZERO:
Mohit Mehtab34199e2009-08-19 10:56:33 -07002014 case CMD_LIST|CMD_ZERO_NUM:
Marc Bouchere6869a82000-03-20 06:03:29 +00002015 ret = list_entries(chain,
Henrik Nordstrombb340822008-05-13 13:09:23 +02002016 rulenum,
Marc Bouchere6869a82000-03-20 06:03:29 +00002017 options&OPT_VERBOSE,
2018 options&OPT_NUMERIC,
2019 options&OPT_EXPANDED,
2020 options&OPT_LINENUMBERS,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002021 *handle);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02002022 if (ret && (command & CMD_ZERO))
2023 ret = zero_entries(chain,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002024 options&OPT_VERBOSE, *handle);
Mohit Mehtab34199e2009-08-19 10:56:33 -07002025 if (ret && (command & CMD_ZERO_NUM))
2026 ret = iptc_zero_counter(chain, rulenum, *handle);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02002027 break;
2028 case CMD_LIST_RULES:
2029 case CMD_LIST_RULES|CMD_ZERO:
Mohit Mehtab34199e2009-08-19 10:56:33 -07002030 case CMD_LIST_RULES|CMD_ZERO_NUM:
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02002031 ret = list_rules(chain,
Henrik Nordstrombb340822008-05-13 13:09:23 +02002032 rulenum,
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02002033 options&OPT_VERBOSE,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002034 *handle);
Henrik Nordstrom96296cf2008-05-13 13:08:26 +02002035 if (ret && (command & CMD_ZERO))
Marc Bouchere6869a82000-03-20 06:03:29 +00002036 ret = zero_entries(chain,
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002037 options&OPT_VERBOSE, *handle);
Mohit Mehtab34199e2009-08-19 10:56:33 -07002038 if (ret && (command & CMD_ZERO_NUM))
2039 ret = iptc_zero_counter(chain, rulenum, *handle);
Marc Bouchere6869a82000-03-20 06:03:29 +00002040 break;
2041 case CMD_NEW_CHAIN:
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002042 ret = iptc_create_chain(chain, *handle);
Marc Bouchere6869a82000-03-20 06:03:29 +00002043 break;
2044 case CMD_DELETE_CHAIN:
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002045 ret = delete_chain(chain, options&OPT_VERBOSE, *handle);
Marc Bouchere6869a82000-03-20 06:03:29 +00002046 break;
2047 case CMD_RENAME_CHAIN:
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002048 ret = iptc_rename_chain(chain, newname, *handle);
Marc Bouchere6869a82000-03-20 06:03:29 +00002049 break;
2050 case CMD_SET_POLICY:
Jan Engelhardt1c9015b2008-11-10 17:00:41 +01002051 ret = iptc_set_policy(chain, policy, options&OPT_COUNTERS ? &fw.counters : NULL, *handle);
Marc Bouchere6869a82000-03-20 06:03:29 +00002052 break;
2053 default:
2054 /* We should never reach this... */
2055 exit_tryhelp(2);
2056 }
2057
2058 if (verbose > 1)
2059 dump_entries(*handle);
2060
Martin Josefsson78cafda2004-02-02 20:01:18 +00002061 clear_rule_matches(&matches);
2062
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00002063 if (e != NULL) {
2064 free(e);
2065 e = NULL;
2066 }
2067
keso6997cdf2004-07-04 15:20:53 +00002068 free(saddrs);
Michael Granzow332e4ac2009-04-09 18:24:36 +01002069 free(smasks);
keso6997cdf2004-07-04 15:20:53 +00002070 free(daddrs);
Michael Granzow332e4ac2009-04-09 18:24:36 +01002071 free(dmasks);
Jamal Hadi Salim139b3fe2009-02-12 11:43:01 -05002072 xtables_free_opts(1);
Martin Josefsson4dd5fed2004-05-18 18:09:43 +00002073
Marc Bouchere6869a82000-03-20 06:03:29 +00002074 return ret;
2075}