blob: 96ea3ec5722444aa388145e3f181d9b5fa6fe0ad [file] [log] [blame]
Jan Engelhardta8ad34c2008-01-29 13:37:21 +00001/*
2 * libxt_conntrack
3 * Shared library add-on to iptables for conntrack matching support.
4 *
5 * GPL (C) 2001 Marc Boucher (marc@mbsi.ca).
6 * Copyright © CC Computer Consultants GmbH, 2007 - 2008
7 * Jan Engelhardt <jengelh@computergmbh.de>
Marc Boucher5054e852002-01-19 10:59:12 +00008 */
Jan Engelhardta8ad34c2008-01-29 13:37:21 +00009#include <sys/socket.h>
10#include <sys/types.h>
Marc Boucher5054e852002-01-19 10:59:12 +000011#include <ctype.h>
Jan Engelhardta80b6042008-01-20 13:34:07 +000012#include <getopt.h>
13#include <netdb.h>
Jan Engelhardta8ad34c2008-01-29 13:37:21 +000014#include <stdbool.h>
Jan Engelhardta80b6042008-01-20 13:34:07 +000015#include <stdio.h>
16#include <stdlib.h>
17#include <string.h>
Jan Engelhardt08b16162008-01-20 13:36:08 +000018#include <xtables.h>
Jan Engelhardta80b6042008-01-20 13:34:07 +000019#include <linux/netfilter.h>
20#include <linux/netfilter/xt_conntrack.h>
Patrick McHardy40d54752007-04-18 07:00:36 +000021#include <linux/netfilter/nf_conntrack_common.h>
Jan Engelhardta8ad34c2008-01-29 13:37:21 +000022#include <arpa/inet.h>
Harald Welte4dc734c2003-10-07 18:55:13 +000023
Jan Engelhardta80b6042008-01-20 13:34:07 +000024static void conntrack_mt_help(void)
Marc Boucher5054e852002-01-19 10:59:12 +000025{
26 printf(
Jan Engelhardta80b6042008-01-20 13:34:07 +000027"conntrack match options:\n"
28"[!] --ctstate {INVALID|ESTABLISHED|NEW|RELATED|UNTRACKED|SNAT|DNAT}[,...]\n"
29" State(s) to match\n"
30"[!] --ctproto proto Protocol to match; by number or name, e.g. \"tcp\"\n"
31"[!] --ctorigsrc address[/mask]\n"
32"[!] --ctorigdst address[/mask]\n"
33"[!] --ctreplsrc address[/mask]\n"
34"[!] --ctrepldst address[/mask]\n"
35" Original/Reply source/destination address\n"
Jan Engelhardta8ad34c2008-01-29 13:37:21 +000036"[!] --ctorigsrcport port\n"
37"[!] --ctorigdstport port\n"
38"[!] --ctreplsrcport port\n"
39"[!] --ctrepldstport port\n"
40" TCP/UDP/SCTP orig./reply source/destination port\n"
Jan Engelhardta80b6042008-01-20 13:34:07 +000041"[!] --ctstatus {NONE|EXPECTED|SEEN_REPLY|ASSURED|CONFIRMED}[,...]\n"
42" Status(es) to match\n"
43"[!] --ctexpire time[:time] Match remaining lifetime in seconds against\n"
44" value or range of values (inclusive)\n"
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +020045" --ctdir {ORIGINAL|REPLY} Flow direction of packet\n");
Marc Boucher5054e852002-01-19 10:59:12 +000046}
47
Jan Engelhardta8ad34c2008-01-29 13:37:21 +000048static const struct option conntrack_mt_opts_v0[] = {
Jan Engelhardta80b6042008-01-20 13:34:07 +000049 {.name = "ctstate", .has_arg = true, .val = '1'},
50 {.name = "ctproto", .has_arg = true, .val = '2'},
51 {.name = "ctorigsrc", .has_arg = true, .val = '3'},
52 {.name = "ctorigdst", .has_arg = true, .val = '4'},
53 {.name = "ctreplsrc", .has_arg = true, .val = '5'},
54 {.name = "ctrepldst", .has_arg = true, .val = '6'},
55 {.name = "ctstatus", .has_arg = true, .val = '7'},
56 {.name = "ctexpire", .has_arg = true, .val = '8'},
Max Kellermann9ee386a2008-01-29 13:48:05 +000057 { .name = NULL }
Marc Boucher5054e852002-01-19 10:59:12 +000058};
59
Jan Engelhardta8ad34c2008-01-29 13:37:21 +000060static const struct option conntrack_mt_opts[] = {
61 {.name = "ctstate", .has_arg = true, .val = '1'},
62 {.name = "ctproto", .has_arg = true, .val = '2'},
63 {.name = "ctorigsrc", .has_arg = true, .val = '3'},
64 {.name = "ctorigdst", .has_arg = true, .val = '4'},
65 {.name = "ctreplsrc", .has_arg = true, .val = '5'},
66 {.name = "ctrepldst", .has_arg = true, .val = '6'},
67 {.name = "ctstatus", .has_arg = true, .val = '7'},
68 {.name = "ctexpire", .has_arg = true, .val = '8'},
69 {.name = "ctorigsrcport", .has_arg = true, .val = 'a'},
70 {.name = "ctorigdstport", .has_arg = true, .val = 'b'},
71 {.name = "ctreplsrcport", .has_arg = true, .val = 'c'},
72 {.name = "ctrepldstport", .has_arg = true, .val = 'd'},
73 {.name = "ctdir", .has_arg = true, .val = 'e'},
Max Kellermann9ee386a2008-01-29 13:48:05 +000074 {.name = NULL},
Jan Engelhardta8ad34c2008-01-29 13:37:21 +000075};
76
Marc Boucher5054e852002-01-19 10:59:12 +000077static int
Jan Engelhardtdbb77542008-02-11 00:33:30 +010078parse_state(const char *state, size_t len, struct xt_conntrack_info *sinfo)
Marc Boucher5054e852002-01-19 10:59:12 +000079{
Jan Engelhardtdbb77542008-02-11 00:33:30 +010080 if (strncasecmp(state, "INVALID", len) == 0)
Jan Engelhardta80b6042008-01-20 13:34:07 +000081 sinfo->statemask |= XT_CONNTRACK_STATE_INVALID;
Jan Engelhardtdbb77542008-02-11 00:33:30 +010082 else if (strncasecmp(state, "NEW", len) == 0)
Jan Engelhardta80b6042008-01-20 13:34:07 +000083 sinfo->statemask |= XT_CONNTRACK_STATE_BIT(IP_CT_NEW);
Jan Engelhardtdbb77542008-02-11 00:33:30 +010084 else if (strncasecmp(state, "ESTABLISHED", len) == 0)
Jan Engelhardta80b6042008-01-20 13:34:07 +000085 sinfo->statemask |= XT_CONNTRACK_STATE_BIT(IP_CT_ESTABLISHED);
Jan Engelhardtdbb77542008-02-11 00:33:30 +010086 else if (strncasecmp(state, "RELATED", len) == 0)
Jan Engelhardta80b6042008-01-20 13:34:07 +000087 sinfo->statemask |= XT_CONNTRACK_STATE_BIT(IP_CT_RELATED);
Jan Engelhardtdbb77542008-02-11 00:33:30 +010088 else if (strncasecmp(state, "UNTRACKED", len) == 0)
Jan Engelhardta80b6042008-01-20 13:34:07 +000089 sinfo->statemask |= XT_CONNTRACK_STATE_UNTRACKED;
Jan Engelhardtdbb77542008-02-11 00:33:30 +010090 else if (strncasecmp(state, "SNAT", len) == 0)
Jan Engelhardta80b6042008-01-20 13:34:07 +000091 sinfo->statemask |= XT_CONNTRACK_STATE_SNAT;
Jan Engelhardtdbb77542008-02-11 00:33:30 +010092 else if (strncasecmp(state, "DNAT", len) == 0)
Jan Engelhardta80b6042008-01-20 13:34:07 +000093 sinfo->statemask |= XT_CONNTRACK_STATE_DNAT;
Marc Boucher5054e852002-01-19 10:59:12 +000094 else
95 return 0;
96 return 1;
97}
98
99static void
Jan Engelhardta80b6042008-01-20 13:34:07 +0000100parse_states(const char *arg, struct xt_conntrack_info *sinfo)
Marc Boucher5054e852002-01-19 10:59:12 +0000101{
102 const char *comma;
103
104 while ((comma = strchr(arg, ',')) != NULL) {
105 if (comma == arg || !parse_state(arg, comma-arg, sinfo))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100106 xtables_error(PARAMETER_PROBLEM, "Bad ctstate \"%s\"", arg);
Marc Boucher5054e852002-01-19 10:59:12 +0000107 arg = comma+1;
108 }
Pablo Neira Ayuso0ec8c0f2008-11-19 19:01:26 +0100109 if (!*arg)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100110 xtables_error(PARAMETER_PROBLEM, "\"--ctstate\" requires a list of "
Pablo Neira Ayuso0ec8c0f2008-11-19 19:01:26 +0100111 "states with no spaces, e.g. "
112 "ESTABLISHED,RELATED");
Marc Boucher5054e852002-01-19 10:59:12 +0000113 if (strlen(arg) == 0 || !parse_state(arg, strlen(arg), sinfo))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100114 xtables_error(PARAMETER_PROBLEM, "Bad ctstate \"%s\"", arg);
Marc Boucher5054e852002-01-19 10:59:12 +0000115}
116
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000117static bool
118conntrack_ps_state(struct xt_conntrack_mtinfo1 *info, const char *state,
119 size_t z)
120{
121 if (strncasecmp(state, "INVALID", z) == 0)
122 info->state_mask |= XT_CONNTRACK_STATE_INVALID;
123 else if (strncasecmp(state, "NEW", z) == 0)
124 info->state_mask |= XT_CONNTRACK_STATE_BIT(IP_CT_NEW);
125 else if (strncasecmp(state, "ESTABLISHED", z) == 0)
126 info->state_mask |= XT_CONNTRACK_STATE_BIT(IP_CT_ESTABLISHED);
127 else if (strncasecmp(state, "RELATED", z) == 0)
128 info->state_mask |= XT_CONNTRACK_STATE_BIT(IP_CT_RELATED);
129 else if (strncasecmp(state, "UNTRACKED", z) == 0)
130 info->state_mask |= XT_CONNTRACK_STATE_UNTRACKED;
131 else if (strncasecmp(state, "SNAT", z) == 0)
132 info->state_mask |= XT_CONNTRACK_STATE_SNAT;
133 else if (strncasecmp(state, "DNAT", z) == 0)
134 info->state_mask |= XT_CONNTRACK_STATE_DNAT;
135 else
136 return false;
137 return true;
138}
139
140static void
141conntrack_ps_states(struct xt_conntrack_mtinfo1 *info, const char *arg)
142{
143 const char *comma;
144
145 while ((comma = strchr(arg, ',')) != NULL) {
146 if (comma == arg || !conntrack_ps_state(info, arg, comma - arg))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100147 xtables_error(PARAMETER_PROBLEM,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000148 "Bad ctstate \"%s\"", arg);
149 arg = comma + 1;
150 }
151
152 if (strlen(arg) == 0 || !conntrack_ps_state(info, arg, strlen(arg)))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100153 xtables_error(PARAMETER_PROBLEM, "Bad ctstate \"%s\"", arg);
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000154}
155
Marc Boucher5054e852002-01-19 10:59:12 +0000156static int
Jan Engelhardtdbb77542008-02-11 00:33:30 +0100157parse_status(const char *status, size_t len, struct xt_conntrack_info *sinfo)
Marc Boucher5054e852002-01-19 10:59:12 +0000158{
Jan Engelhardtdbb77542008-02-11 00:33:30 +0100159 if (strncasecmp(status, "NONE", len) == 0)
Marc Boucher5054e852002-01-19 10:59:12 +0000160 sinfo->statusmask |= 0;
Jan Engelhardtdbb77542008-02-11 00:33:30 +0100161 else if (strncasecmp(status, "EXPECTED", len) == 0)
Marc Boucher5054e852002-01-19 10:59:12 +0000162 sinfo->statusmask |= IPS_EXPECTED;
Jan Engelhardtdbb77542008-02-11 00:33:30 +0100163 else if (strncasecmp(status, "SEEN_REPLY", len) == 0)
Marc Boucher5054e852002-01-19 10:59:12 +0000164 sinfo->statusmask |= IPS_SEEN_REPLY;
Jan Engelhardtdbb77542008-02-11 00:33:30 +0100165 else if (strncasecmp(status, "ASSURED", len) == 0)
Marc Boucher5054e852002-01-19 10:59:12 +0000166 sinfo->statusmask |= IPS_ASSURED;
Harald Weltea643c3e2003-08-25 11:08:52 +0000167#ifdef IPS_CONFIRMED
Jan Engelhardtdbb77542008-02-11 00:33:30 +0100168 else if (strncasecmp(status, "CONFIRMED", len) == 0)
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000169 sinfo->statusmask |= IPS_CONFIRMED;
Harald Weltea643c3e2003-08-25 11:08:52 +0000170#endif
Marc Boucher5054e852002-01-19 10:59:12 +0000171 else
172 return 0;
173 return 1;
174}
175
176static void
Jan Engelhardta80b6042008-01-20 13:34:07 +0000177parse_statuses(const char *arg, struct xt_conntrack_info *sinfo)
Marc Boucher5054e852002-01-19 10:59:12 +0000178{
179 const char *comma;
180
181 while ((comma = strchr(arg, ',')) != NULL) {
182 if (comma == arg || !parse_status(arg, comma-arg, sinfo))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100183 xtables_error(PARAMETER_PROBLEM, "Bad ctstatus \"%s\"", arg);
Marc Boucher5054e852002-01-19 10:59:12 +0000184 arg = comma+1;
185 }
186
187 if (strlen(arg) == 0 || !parse_status(arg, strlen(arg), sinfo))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100188 xtables_error(PARAMETER_PROBLEM, "Bad ctstatus \"%s\"", arg);
Marc Boucher5054e852002-01-19 10:59:12 +0000189}
190
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000191static bool
192conntrack_ps_status(struct xt_conntrack_mtinfo1 *info, const char *status,
193 size_t z)
194{
195 if (strncasecmp(status, "NONE", z) == 0)
196 info->status_mask |= 0;
197 else if (strncasecmp(status, "EXPECTED", z) == 0)
198 info->status_mask |= IPS_EXPECTED;
199 else if (strncasecmp(status, "SEEN_REPLY", z) == 0)
200 info->status_mask |= IPS_SEEN_REPLY;
201 else if (strncasecmp(status, "ASSURED", z) == 0)
202 info->status_mask |= IPS_ASSURED;
203 else if (strncasecmp(status, "CONFIRMED", z) == 0)
204 info->status_mask |= IPS_CONFIRMED;
205 else
206 return false;
207 return true;
208}
209
210static void
211conntrack_ps_statuses(struct xt_conntrack_mtinfo1 *info, const char *arg)
212{
213 const char *comma;
214
215 while ((comma = strchr(arg, ',')) != NULL) {
216 if (comma == arg || !conntrack_ps_status(info, arg, comma - arg))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100217 xtables_error(PARAMETER_PROBLEM,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000218 "Bad ctstatus \"%s\"", arg);
219 arg = comma + 1;
220 }
221
222 if (strlen(arg) == 0 || !conntrack_ps_status(info, arg, strlen(arg)))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100223 xtables_error(PARAMETER_PROBLEM, "Bad ctstatus \"%s\"", arg);
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000224}
225
Marc Boucher5054e852002-01-19 10:59:12 +0000226static unsigned long
227parse_expire(const char *s)
228{
229 unsigned int len;
Jan Engelhardta80b6042008-01-20 13:34:07 +0000230
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100231 if (!xtables_strtoui(s, NULL, &len, 0, UINT32_MAX))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100232 xtables_error(PARAMETER_PROBLEM, "expire value invalid: \"%s\"\n", s);
Marc Boucher5054e852002-01-19 10:59:12 +0000233 else
234 return len;
235}
236
237/* If a single value is provided, min and max are both set to the value */
238static void
Jan Engelhardta80b6042008-01-20 13:34:07 +0000239parse_expires(const char *s, struct xt_conntrack_info *sinfo)
Marc Boucher5054e852002-01-19 10:59:12 +0000240{
241 char *buffer;
242 char *cp;
243
244 buffer = strdup(s);
245 if ((cp = strchr(buffer, ':')) == NULL)
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000246 sinfo->expires_min = sinfo->expires_max =
247 parse_expire(buffer);
Marc Boucher5054e852002-01-19 10:59:12 +0000248 else {
249 *cp = '\0';
250 cp++;
251
252 sinfo->expires_min = buffer[0] ? parse_expire(buffer) : 0;
Max Kellermann9ee386a2008-01-29 13:48:05 +0000253 sinfo->expires_max = cp[0]
254 ? parse_expire(cp)
255 : (unsigned long)-1;
Marc Boucher5054e852002-01-19 10:59:12 +0000256 }
257 free(buffer);
Jan Engelhardta80b6042008-01-20 13:34:07 +0000258
Marc Boucher5054e852002-01-19 10:59:12 +0000259 if (sinfo->expires_min > sinfo->expires_max)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100260 xtables_error(PARAMETER_PROBLEM,
Marc Boucher5054e852002-01-19 10:59:12 +0000261 "expire min. range value `%lu' greater than max. "
262 "range value `%lu'", sinfo->expires_min, sinfo->expires_max);
Marc Boucher5054e852002-01-19 10:59:12 +0000263}
264
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000265static void
266conntrack_ps_expires(struct xt_conntrack_mtinfo1 *info, const char *s)
267{
268 unsigned int min, max;
269 char *end;
270
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100271 if (!xtables_strtoui(s, &end, &min, 0, UINT32_MAX))
Jan Engelhardta41545c2009-01-27 21:27:19 +0100272 xtables_param_act(XTF_BAD_VALUE, "conntrack", "--expires", s);
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000273 max = min;
274 if (*end == ':')
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100275 if (!xtables_strtoui(s, &end, &max, 0, UINT32_MAX))
Jan Engelhardta41545c2009-01-27 21:27:19 +0100276 xtables_param_act(XTF_BAD_VALUE, "conntrack", "--expires", s);
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000277 if (*end != '\0')
Jan Engelhardta41545c2009-01-27 21:27:19 +0100278 xtables_param_act(XTF_BAD_VALUE, "conntrack", "--expires", s);
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000279
280 if (min > max)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100281 xtables_error(PARAMETER_PROBLEM,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000282 "expire min. range value \"%u\" greater than max. "
283 "range value \"%u\"", min, max);
284
285 info->expires_min = min;
286 info->expires_max = max;
287}
288
Jan Engelhardt59d16402007-10-04 16:28:39 +0000289static int conntrack_parse(int c, char **argv, int invert, unsigned int *flags,
290 const void *entry, struct xt_entry_match **match)
Marc Boucher5054e852002-01-19 10:59:12 +0000291{
Jan Engelhardta80b6042008-01-20 13:34:07 +0000292 struct xt_conntrack_info *sinfo = (void *)(*match)->data;
Marc Boucher5054e852002-01-19 10:59:12 +0000293 char *protocol = NULL;
294 unsigned int naddrs = 0;
295 struct in_addr *addrs = NULL;
296
297
298 switch (c) {
299 case '1':
Jan Engelhardt0f16c722009-01-30 04:55:38 +0100300 xtables_check_inverse(optarg, &invert, &optind, 0);
Marc Boucher5054e852002-01-19 10:59:12 +0000301
302 parse_states(argv[optind-1], sinfo);
303 if (invert) {
Jan Engelhardta80b6042008-01-20 13:34:07 +0000304 sinfo->invflags |= XT_CONNTRACK_STATE;
Marc Boucher5054e852002-01-19 10:59:12 +0000305 }
Jan Engelhardta80b6042008-01-20 13:34:07 +0000306 sinfo->flags |= XT_CONNTRACK_STATE;
Marc Boucher5054e852002-01-19 10:59:12 +0000307 break;
308
309 case '2':
Jan Engelhardt0f16c722009-01-30 04:55:38 +0100310 xtables_check_inverse(optarg, &invert, &optind, 0);
Marc Boucher5054e852002-01-19 10:59:12 +0000311
312 if(invert)
Jan Engelhardta80b6042008-01-20 13:34:07 +0000313 sinfo->invflags |= XT_CONNTRACK_PROTO;
Marc Boucher5054e852002-01-19 10:59:12 +0000314
315 /* Canonicalize into lower case */
316 for (protocol = argv[optind-1]; *protocol; protocol++)
317 *protocol = tolower(*protocol);
318
319 protocol = argv[optind-1];
Jan Engelhardt1de7edf2009-01-30 05:38:11 +0100320 sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.protonum =
321 xtables_parse_protocol(protocol);
Marc Boucher5054e852002-01-19 10:59:12 +0000322
323 if (sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.protonum == 0
Jan Engelhardta80b6042008-01-20 13:34:07 +0000324 && (sinfo->invflags & XT_INV_PROTO))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100325 xtables_error(PARAMETER_PROBLEM,
Marc Boucher5054e852002-01-19 10:59:12 +0000326 "rule would never match protocol");
327
Jan Engelhardta80b6042008-01-20 13:34:07 +0000328 sinfo->flags |= XT_CONNTRACK_PROTO;
Marc Boucher5054e852002-01-19 10:59:12 +0000329 break;
330
331 case '3':
Jan Engelhardt0f16c722009-01-30 04:55:38 +0100332 xtables_check_inverse(optarg, &invert, &optind, 0);
Marc Boucher5054e852002-01-19 10:59:12 +0000333
334 if (invert)
Jan Engelhardta80b6042008-01-20 13:34:07 +0000335 sinfo->invflags |= XT_CONNTRACK_ORIGSRC;
Marc Boucher5054e852002-01-19 10:59:12 +0000336
Jan Engelhardta0baae82009-01-30 04:32:50 +0100337 xtables_ipparse_any(argv[optind-1], &addrs,
Marc Boucher5054e852002-01-19 10:59:12 +0000338 &sinfo->sipmsk[IP_CT_DIR_ORIGINAL],
339 &naddrs);
340 if(naddrs > 1)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100341 xtables_error(PARAMETER_PROBLEM,
Marc Boucher5054e852002-01-19 10:59:12 +0000342 "multiple IP addresses not allowed");
343
344 if(naddrs == 1) {
345 sinfo->tuple[IP_CT_DIR_ORIGINAL].src.ip = addrs[0].s_addr;
346 }
347
Jan Engelhardta80b6042008-01-20 13:34:07 +0000348 sinfo->flags |= XT_CONNTRACK_ORIGSRC;
Marc Boucher5054e852002-01-19 10:59:12 +0000349 break;
350
351 case '4':
Jan Engelhardt0f16c722009-01-30 04:55:38 +0100352 xtables_check_inverse(optarg, &invert, &optind, 0);
Marc Boucher5054e852002-01-19 10:59:12 +0000353
354 if (invert)
Jan Engelhardta80b6042008-01-20 13:34:07 +0000355 sinfo->invflags |= XT_CONNTRACK_ORIGDST;
Marc Boucher5054e852002-01-19 10:59:12 +0000356
Jan Engelhardta0baae82009-01-30 04:32:50 +0100357 xtables_ipparse_any(argv[optind-1], &addrs,
Marc Boucher5054e852002-01-19 10:59:12 +0000358 &sinfo->dipmsk[IP_CT_DIR_ORIGINAL],
359 &naddrs);
360 if(naddrs > 1)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100361 xtables_error(PARAMETER_PROBLEM,
Marc Boucher5054e852002-01-19 10:59:12 +0000362 "multiple IP addresses not allowed");
363
364 if(naddrs == 1) {
365 sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.ip = addrs[0].s_addr;
366 }
367
Jan Engelhardta80b6042008-01-20 13:34:07 +0000368 sinfo->flags |= XT_CONNTRACK_ORIGDST;
Marc Boucher5054e852002-01-19 10:59:12 +0000369 break;
370
371 case '5':
Jan Engelhardt0f16c722009-01-30 04:55:38 +0100372 xtables_check_inverse(optarg, &invert, &optind, 0);
Marc Boucher5054e852002-01-19 10:59:12 +0000373
374 if (invert)
Jan Engelhardta80b6042008-01-20 13:34:07 +0000375 sinfo->invflags |= XT_CONNTRACK_REPLSRC;
Marc Boucher5054e852002-01-19 10:59:12 +0000376
Jan Engelhardta0baae82009-01-30 04:32:50 +0100377 xtables_ipparse_any(argv[optind-1], &addrs,
Marc Boucher5054e852002-01-19 10:59:12 +0000378 &sinfo->sipmsk[IP_CT_DIR_REPLY],
379 &naddrs);
380 if(naddrs > 1)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100381 xtables_error(PARAMETER_PROBLEM,
Marc Boucher5054e852002-01-19 10:59:12 +0000382 "multiple IP addresses not allowed");
383
384 if(naddrs == 1) {
385 sinfo->tuple[IP_CT_DIR_REPLY].src.ip = addrs[0].s_addr;
386 }
387
Jan Engelhardta80b6042008-01-20 13:34:07 +0000388 sinfo->flags |= XT_CONNTRACK_REPLSRC;
Marc Boucher5054e852002-01-19 10:59:12 +0000389 break;
390
391 case '6':
Jan Engelhardt0f16c722009-01-30 04:55:38 +0100392 xtables_check_inverse(optarg, &invert, &optind, 0);
Marc Boucher5054e852002-01-19 10:59:12 +0000393
394 if (invert)
Jan Engelhardta80b6042008-01-20 13:34:07 +0000395 sinfo->invflags |= XT_CONNTRACK_REPLDST;
Marc Boucher5054e852002-01-19 10:59:12 +0000396
Jan Engelhardta0baae82009-01-30 04:32:50 +0100397 xtables_ipparse_any(argv[optind-1], &addrs,
Marc Boucher5054e852002-01-19 10:59:12 +0000398 &sinfo->dipmsk[IP_CT_DIR_REPLY],
399 &naddrs);
400 if(naddrs > 1)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100401 xtables_error(PARAMETER_PROBLEM,
Marc Boucher5054e852002-01-19 10:59:12 +0000402 "multiple IP addresses not allowed");
403
404 if(naddrs == 1) {
405 sinfo->tuple[IP_CT_DIR_REPLY].dst.ip = addrs[0].s_addr;
406 }
407
Jan Engelhardta80b6042008-01-20 13:34:07 +0000408 sinfo->flags |= XT_CONNTRACK_REPLDST;
Marc Boucher5054e852002-01-19 10:59:12 +0000409 break;
410
411 case '7':
Jan Engelhardt0f16c722009-01-30 04:55:38 +0100412 xtables_check_inverse(optarg, &invert, &optind, 0);
Marc Boucher5054e852002-01-19 10:59:12 +0000413
414 parse_statuses(argv[optind-1], sinfo);
415 if (invert) {
Jan Engelhardta80b6042008-01-20 13:34:07 +0000416 sinfo->invflags |= XT_CONNTRACK_STATUS;
Marc Boucher5054e852002-01-19 10:59:12 +0000417 }
Jan Engelhardta80b6042008-01-20 13:34:07 +0000418 sinfo->flags |= XT_CONNTRACK_STATUS;
Marc Boucher5054e852002-01-19 10:59:12 +0000419 break;
420
421 case '8':
Jan Engelhardt0f16c722009-01-30 04:55:38 +0100422 xtables_check_inverse(optarg, &invert, &optind, 0);
Marc Boucher5054e852002-01-19 10:59:12 +0000423
424 parse_expires(argv[optind-1], sinfo);
425 if (invert) {
Jan Engelhardta80b6042008-01-20 13:34:07 +0000426 sinfo->invflags |= XT_CONNTRACK_EXPIRES;
Marc Boucher5054e852002-01-19 10:59:12 +0000427 }
Jan Engelhardta80b6042008-01-20 13:34:07 +0000428 sinfo->flags |= XT_CONNTRACK_EXPIRES;
Marc Boucher5054e852002-01-19 10:59:12 +0000429 break;
430
431 default:
432 return 0;
433 }
434
435 *flags = sinfo->flags;
436 return 1;
437}
438
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000439static int
440conntrack_mt_parse(int c, char **argv, int invert, unsigned int *flags,
441 struct xt_entry_match **match)
442{
443 struct xt_conntrack_mtinfo1 *info = (void *)(*match)->data;
444 unsigned int port;
445 char *p;
446
447 switch (c) {
448 case '1': /* --ctstate */
449 conntrack_ps_states(info, optarg);
450 info->match_flags |= XT_CONNTRACK_STATE;
451 if (invert)
452 info->invert_flags |= XT_CONNTRACK_STATE;
453 break;
454
455 case '2': /* --ctproto */
456 /* Canonicalize into lower case */
457 for (p = optarg; *p != '\0'; ++p)
458 *p = tolower(*p);
Jan Engelhardt1de7edf2009-01-30 05:38:11 +0100459 info->l4proto = xtables_parse_protocol(optarg);
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000460
461 if (info->l4proto == 0 && (info->invert_flags & XT_INV_PROTO))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100462 xtables_error(PARAMETER_PROBLEM, "conntrack: rule would "
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000463 "never match protocol");
464
465 info->match_flags |= XT_CONNTRACK_PROTO;
466 if (invert)
467 info->invert_flags |= XT_CONNTRACK_PROTO;
468 break;
469
470 case '7': /* --ctstatus */
471 conntrack_ps_statuses(info, optarg);
472 info->match_flags |= XT_CONNTRACK_STATUS;
473 if (invert)
474 info->invert_flags |= XT_CONNTRACK_STATUS;
475 break;
476
477 case '8': /* --ctexpire */
478 conntrack_ps_expires(info, optarg);
479 info->match_flags |= XT_CONNTRACK_EXPIRES;
480 if (invert)
481 info->invert_flags |= XT_CONNTRACK_EXPIRES;
482 break;
483
484 case 'a': /* --ctorigsrcport */
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100485 if (!xtables_strtoui(optarg, NULL, &port, 0, UINT16_MAX))
Jan Engelhardta41545c2009-01-27 21:27:19 +0100486 xtables_param_act(XTF_BAD_VALUE, "conntrack",
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000487 "--ctorigsrcport", optarg);
488 info->match_flags |= XT_CONNTRACK_ORIGSRC_PORT;
489 info->origsrc_port = htons(port);
490 if (invert)
491 info->invert_flags |= XT_CONNTRACK_ORIGSRC_PORT;
492 break;
493
494 case 'b': /* --ctorigdstport */
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100495 if (!xtables_strtoui(optarg, NULL, &port, 0, UINT16_MAX))
Jan Engelhardta41545c2009-01-27 21:27:19 +0100496 xtables_param_act(XTF_BAD_VALUE, "conntrack",
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000497 "--ctorigdstport", optarg);
498 info->match_flags |= XT_CONNTRACK_ORIGDST_PORT;
499 info->origdst_port = htons(port);
500 if (invert)
501 info->invert_flags |= XT_CONNTRACK_ORIGDST_PORT;
502 break;
503
504 case 'c': /* --ctreplsrcport */
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100505 if (!xtables_strtoui(optarg, NULL, &port, 0, UINT16_MAX))
Jan Engelhardta41545c2009-01-27 21:27:19 +0100506 xtables_param_act(XTF_BAD_VALUE, "conntrack",
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000507 "--ctreplsrcport", optarg);
508 info->match_flags |= XT_CONNTRACK_REPLSRC_PORT;
509 info->replsrc_port = htons(port);
510 if (invert)
511 info->invert_flags |= XT_CONNTRACK_REPLSRC_PORT;
512 break;
513
514 case 'd': /* --ctrepldstport */
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100515 if (!xtables_strtoui(optarg, NULL, &port, 0, UINT16_MAX))
Jan Engelhardta41545c2009-01-27 21:27:19 +0100516 xtables_param_act(XTF_BAD_VALUE, "conntrack",
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000517 "--ctrepldstport", optarg);
518 info->match_flags |= XT_CONNTRACK_REPLDST_PORT;
519 info->repldst_port = htons(port);
520 if (invert)
521 info->invert_flags |= XT_CONNTRACK_REPLDST_PORT;
522 break;
523
524 case 'e': /* --ctdir */
Jan Engelhardta41545c2009-01-27 21:27:19 +0100525 xtables_param_act(XTF_NO_INVERT, "conntrack", "--ctdir", invert);
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000526 if (strcasecmp(optarg, "ORIGINAL") == 0) {
527 info->match_flags |= XT_CONNTRACK_DIRECTION;
528 info->invert_flags &= ~XT_CONNTRACK_DIRECTION;
529 } else if (strcasecmp(optarg, "REPLY") == 0) {
530 info->match_flags |= XT_CONNTRACK_DIRECTION;
531 info->invert_flags |= XT_CONNTRACK_DIRECTION;
532 } else {
Jan Engelhardta41545c2009-01-27 21:27:19 +0100533 xtables_param_act(XTF_BAD_VALUE, "conntrack", "--ctdir", optarg);
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000534 }
535 break;
536
537 default:
538 return false;
539 }
540
541 *flags = info->match_flags;
542 return true;
543}
544
545static int
546conntrack_mt4_parse(int c, char **argv, int invert, unsigned int *flags,
547 const void *entry, struct xt_entry_match **match)
548{
549 struct xt_conntrack_mtinfo1 *info = (void *)(*match)->data;
550 struct in_addr *addr = NULL;
551 unsigned int naddrs = 0;
552
553 switch (c) {
554 case '3': /* --ctorigsrc */
Jan Engelhardta0baae82009-01-30 04:32:50 +0100555 xtables_ipparse_any(optarg, &addr, &info->origsrc_mask.in,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000556 &naddrs);
557 if (naddrs > 1)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100558 xtables_error(PARAMETER_PROBLEM,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000559 "multiple IP addresses not allowed");
560 if (naddrs == 1)
561 memcpy(&info->origsrc_addr.in, addr, sizeof(*addr));
562 info->match_flags |= XT_CONNTRACK_ORIGSRC;
563 if (invert)
564 info->invert_flags |= XT_CONNTRACK_ORIGSRC;
565 break;
566
567 case '4': /* --ctorigdst */
Jan Engelhardta0baae82009-01-30 04:32:50 +0100568 xtables_ipparse_any(optarg, &addr, &info->origdst_mask.in,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000569 &naddrs);
570 if (naddrs > 1)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100571 xtables_error(PARAMETER_PROBLEM,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000572 "multiple IP addresses not allowed");
573 if (naddrs == 1)
574 memcpy(&info->origdst_addr.in, addr, sizeof(*addr));
575 info->match_flags |= XT_CONNTRACK_ORIGDST;
576 if (invert)
577 info->invert_flags |= XT_CONNTRACK_ORIGDST;
578 break;
579
580 case '5': /* --ctreplsrc */
Jan Engelhardta0baae82009-01-30 04:32:50 +0100581 xtables_ipparse_any(optarg, &addr, &info->replsrc_mask.in,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000582 &naddrs);
583 if (naddrs > 1)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100584 xtables_error(PARAMETER_PROBLEM,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000585 "multiple IP addresses not allowed");
586 if (naddrs == 1)
587 memcpy(&info->replsrc_addr.in, addr, sizeof(*addr));
588 info->match_flags |= XT_CONNTRACK_REPLSRC;
589 if (invert)
590 info->invert_flags |= XT_CONNTRACK_REPLSRC;
591 break;
592
593 case '6': /* --ctrepldst */
Jan Engelhardta0baae82009-01-30 04:32:50 +0100594 xtables_ipparse_any(optarg, &addr, &info->repldst_mask.in,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000595 &naddrs);
596 if (naddrs > 1)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100597 xtables_error(PARAMETER_PROBLEM,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000598 "multiple IP addresses not allowed");
599 if (naddrs == 1)
600 memcpy(&info->repldst_addr.in, addr, sizeof(*addr));
601 info->match_flags |= XT_CONNTRACK_REPLDST;
602 if (invert)
603 info->invert_flags |= XT_CONNTRACK_REPLDST;
604 break;
605
606
607 default:
608 return conntrack_mt_parse(c, argv, invert, flags, match);
609 }
610
611 *flags = info->match_flags;
612 return true;
613}
614
615static int
616conntrack_mt6_parse(int c, char **argv, int invert, unsigned int *flags,
617 const void *entry, struct xt_entry_match **match)
618{
619 struct xt_conntrack_mtinfo1 *info = (void *)(*match)->data;
620 struct in6_addr *addr = NULL;
621 unsigned int naddrs = 0;
622
623 switch (c) {
624 case '3': /* --ctorigsrc */
Jan Engelhardta0baae82009-01-30 04:32:50 +0100625 xtables_ip6parse_any(optarg, &addr,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000626 &info->origsrc_mask.in6, &naddrs);
627 if (naddrs > 1)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100628 xtables_error(PARAMETER_PROBLEM,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000629 "multiple IP addresses not allowed");
630 if (naddrs == 1)
631 memcpy(&info->origsrc_addr.in6, addr, sizeof(*addr));
632 info->match_flags |= XT_CONNTRACK_ORIGSRC;
633 if (invert)
634 info->invert_flags |= XT_CONNTRACK_ORIGSRC;
635 break;
636
637 case '4': /* --ctorigdst */
Jan Engelhardta0baae82009-01-30 04:32:50 +0100638 xtables_ip6parse_any(optarg, &addr,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000639 &info->origdst_mask.in6, &naddrs);
640 if (naddrs > 1)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100641 xtables_error(PARAMETER_PROBLEM,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000642 "multiple IP addresses not allowed");
643 if (naddrs == 1)
644 memcpy(&info->origdst_addr.in, addr, sizeof(*addr));
645 info->match_flags |= XT_CONNTRACK_ORIGDST;
646 if (invert)
647 info->invert_flags |= XT_CONNTRACK_ORIGDST;
648 break;
649
650 case '5': /* --ctreplsrc */
Jan Engelhardta0baae82009-01-30 04:32:50 +0100651 xtables_ip6parse_any(optarg, &addr,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000652 &info->replsrc_mask.in6, &naddrs);
653 if (naddrs > 1)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100654 xtables_error(PARAMETER_PROBLEM,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000655 "multiple IP addresses not allowed");
656 if (naddrs == 1)
657 memcpy(&info->replsrc_addr.in, addr, sizeof(*addr));
658 info->match_flags |= XT_CONNTRACK_REPLSRC;
659 if (invert)
660 info->invert_flags |= XT_CONNTRACK_REPLSRC;
661 break;
662
663 case '6': /* --ctrepldst */
Jan Engelhardta0baae82009-01-30 04:32:50 +0100664 xtables_ip6parse_any(optarg, &addr,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000665 &info->repldst_mask.in6, &naddrs);
666 if (naddrs > 1)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100667 xtables_error(PARAMETER_PROBLEM,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000668 "multiple IP addresses not allowed");
669 if (naddrs == 1)
670 memcpy(&info->repldst_addr.in, addr, sizeof(*addr));
671 info->match_flags |= XT_CONNTRACK_REPLDST;
672 if (invert)
673 info->invert_flags |= XT_CONNTRACK_REPLDST;
674 break;
675
676
677 default:
678 return conntrack_mt_parse(c, argv, invert, flags, match);
679 }
680
681 *flags = info->match_flags;
682 return true;
683}
684
Jan Engelhardta80b6042008-01-20 13:34:07 +0000685static void conntrack_mt_check(unsigned int flags)
Marc Boucher5054e852002-01-19 10:59:12 +0000686{
Jan Engelhardta80b6042008-01-20 13:34:07 +0000687 if (flags == 0)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100688 xtables_error(PARAMETER_PROBLEM, "conntrack: At least one option "
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000689 "is required");
Marc Boucher5054e852002-01-19 10:59:12 +0000690}
691
692static void
693print_state(unsigned int statemask)
694{
695 const char *sep = "";
696
Jan Engelhardta80b6042008-01-20 13:34:07 +0000697 if (statemask & XT_CONNTRACK_STATE_INVALID) {
Marc Boucher5054e852002-01-19 10:59:12 +0000698 printf("%sINVALID", sep);
699 sep = ",";
700 }
Jan Engelhardta80b6042008-01-20 13:34:07 +0000701 if (statemask & XT_CONNTRACK_STATE_BIT(IP_CT_NEW)) {
Marc Boucher5054e852002-01-19 10:59:12 +0000702 printf("%sNEW", sep);
703 sep = ",";
704 }
Jan Engelhardta80b6042008-01-20 13:34:07 +0000705 if (statemask & XT_CONNTRACK_STATE_BIT(IP_CT_RELATED)) {
Marc Boucher5054e852002-01-19 10:59:12 +0000706 printf("%sRELATED", sep);
707 sep = ",";
708 }
Jan Engelhardta80b6042008-01-20 13:34:07 +0000709 if (statemask & XT_CONNTRACK_STATE_BIT(IP_CT_ESTABLISHED)) {
Marc Boucher5054e852002-01-19 10:59:12 +0000710 printf("%sESTABLISHED", sep);
711 sep = ",";
712 }
Jan Engelhardta80b6042008-01-20 13:34:07 +0000713 if (statemask & XT_CONNTRACK_STATE_UNTRACKED) {
Harald Welte4dc734c2003-10-07 18:55:13 +0000714 printf("%sUNTRACKED", sep);
715 sep = ",";
716 }
Jan Engelhardta80b6042008-01-20 13:34:07 +0000717 if (statemask & XT_CONNTRACK_STATE_SNAT) {
Marc Boucher5054e852002-01-19 10:59:12 +0000718 printf("%sSNAT", sep);
719 sep = ",";
720 }
Jan Engelhardta80b6042008-01-20 13:34:07 +0000721 if (statemask & XT_CONNTRACK_STATE_DNAT) {
Marc Boucher5054e852002-01-19 10:59:12 +0000722 printf("%sDNAT", sep);
723 sep = ",";
724 }
725 printf(" ");
726}
727
728static void
729print_status(unsigned int statusmask)
730{
731 const char *sep = "";
732
733 if (statusmask & IPS_EXPECTED) {
734 printf("%sEXPECTED", sep);
735 sep = ",";
736 }
737 if (statusmask & IPS_SEEN_REPLY) {
738 printf("%sSEEN_REPLY", sep);
739 sep = ",";
740 }
741 if (statusmask & IPS_ASSURED) {
742 printf("%sASSURED", sep);
743 sep = ",";
744 }
Harald Weltea643c3e2003-08-25 11:08:52 +0000745 if (statusmask & IPS_CONFIRMED) {
746 printf("%sCONFIRMED", sep);
Marc Boucher5054e852002-01-19 10:59:12 +0000747 sep = ",";
748 }
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000749 if (statusmask == 0)
750 printf("%sNONE", sep);
Marc Boucher5054e852002-01-19 10:59:12 +0000751 printf(" ");
752}
753
754static void
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000755conntrack_dump_addr(const union nf_inet_addr *addr,
756 const union nf_inet_addr *mask,
757 unsigned int family, bool numeric)
758{
Jan Engelhardt03d99482008-11-18 12:27:54 +0100759 if (family == NFPROTO_IPV4) {
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000760 if (!numeric && addr->ip == 0) {
761 printf("anywhere ");
762 return;
763 }
Jan Engelhardt6b6c0962008-11-10 17:08:07 +0100764 if (numeric)
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100765 printf("%s ", xtables_ipaddr_to_numeric(&addr->in));
Jan Engelhardt6b6c0962008-11-10 17:08:07 +0100766 else
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100767 printf("%s ", xtables_ipaddr_to_anyname(&addr->in));
Jan Engelhardt03d99482008-11-18 12:27:54 +0100768 } else if (family == NFPROTO_IPV6) {
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000769 if (!numeric && addr->ip6[0] == 0 && addr->ip6[1] == 0 &&
770 addr->ip6[2] == 0 && addr->ip6[3] == 0) {
771 printf("anywhere ");
772 return;
773 }
Jan Engelhardt6b6c0962008-11-10 17:08:07 +0100774 if (numeric)
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100775 printf("%s ", xtables_ip6addr_to_numeric(&addr->in6));
Jan Engelhardt6b6c0962008-11-10 17:08:07 +0100776 else
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100777 printf("%s ", xtables_ip6addr_to_anyname(&addr->in6));
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000778 }
779}
780
781static void
Jan Engelhardt69f564e2009-05-26 13:14:06 +0200782print_addr(const struct in_addr *addr, const struct in_addr *mask,
783 int inv, int numeric)
Marc Boucher5054e852002-01-19 10:59:12 +0000784{
785 char buf[BUFSIZ];
786
Jan Engelhardta80b6042008-01-20 13:34:07 +0000787 if (inv)
788 printf("! ");
Marc Boucher5054e852002-01-19 10:59:12 +0000789
790 if (mask->s_addr == 0L && !numeric)
791 printf("%s ", "anywhere");
792 else {
793 if (numeric)
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100794 strcpy(buf, xtables_ipaddr_to_numeric(addr));
Marc Boucher5054e852002-01-19 10:59:12 +0000795 else
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100796 strcpy(buf, xtables_ipaddr_to_anyname(addr));
797 strcat(buf, xtables_ipmask_to_numeric(mask));
Marc Boucher5054e852002-01-19 10:59:12 +0000798 printf("%s ", buf);
799 }
800}
801
Marc Boucher5054e852002-01-19 10:59:12 +0000802static void
Yasuyuki KOZAKAIc0a9ab92007-07-24 06:02:05 +0000803matchinfo_print(const void *ip, const struct xt_entry_match *match, int numeric, const char *optpfx)
Marc Boucher5054e852002-01-19 10:59:12 +0000804{
Jan Engelhardt69f564e2009-05-26 13:14:06 +0200805 const struct xt_conntrack_info *sinfo = (const void *)match->data;
Marc Boucher5054e852002-01-19 10:59:12 +0000806
Jan Engelhardta80b6042008-01-20 13:34:07 +0000807 if(sinfo->flags & XT_CONNTRACK_STATE) {
808 if (sinfo->invflags & XT_CONNTRACK_STATE)
Michael Schwendtdfba3ac2002-12-05 20:20:29 +0000809 printf("! ");
Jan Engelhardta80b6042008-01-20 13:34:07 +0000810 printf("%sctstate ", optpfx);
Marc Boucher5054e852002-01-19 10:59:12 +0000811 print_state(sinfo->statemask);
812 }
813
Jan Engelhardta80b6042008-01-20 13:34:07 +0000814 if(sinfo->flags & XT_CONNTRACK_PROTO) {
815 if (sinfo->invflags & XT_CONNTRACK_PROTO)
Phil Oester5a4892b2005-11-17 13:34:51 +0000816 printf("! ");
Jan Engelhardta80b6042008-01-20 13:34:07 +0000817 printf("%sctproto ", optpfx);
Phil Oester5a4892b2005-11-17 13:34:51 +0000818 printf("%u ", sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.protonum);
819 }
820
Jan Engelhardta80b6042008-01-20 13:34:07 +0000821 if(sinfo->flags & XT_CONNTRACK_ORIGSRC) {
822 if (sinfo->invflags & XT_CONNTRACK_ORIGSRC)
823 printf("! ");
Marc Boucher5054e852002-01-19 10:59:12 +0000824 printf("%sctorigsrc ", optpfx);
825
826 print_addr(
827 (struct in_addr *)&sinfo->tuple[IP_CT_DIR_ORIGINAL].src.ip,
828 &sinfo->sipmsk[IP_CT_DIR_ORIGINAL],
Jan Engelhardta80b6042008-01-20 13:34:07 +0000829 false,
Marc Boucher5054e852002-01-19 10:59:12 +0000830 numeric);
831 }
832
Jan Engelhardta80b6042008-01-20 13:34:07 +0000833 if(sinfo->flags & XT_CONNTRACK_ORIGDST) {
834 if (sinfo->invflags & XT_CONNTRACK_ORIGDST)
835 printf("! ");
Marc Boucher5054e852002-01-19 10:59:12 +0000836 printf("%sctorigdst ", optpfx);
837
838 print_addr(
839 (struct in_addr *)&sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.ip,
840 &sinfo->dipmsk[IP_CT_DIR_ORIGINAL],
Jan Engelhardta80b6042008-01-20 13:34:07 +0000841 false,
Marc Boucher5054e852002-01-19 10:59:12 +0000842 numeric);
843 }
844
Jan Engelhardta80b6042008-01-20 13:34:07 +0000845 if(sinfo->flags & XT_CONNTRACK_REPLSRC) {
846 if (sinfo->invflags & XT_CONNTRACK_REPLSRC)
847 printf("! ");
Lutz Preßlerd0ae04e2003-03-04 14:50:50 +0000848 printf("%sctreplsrc ", optpfx);
Marc Boucher5054e852002-01-19 10:59:12 +0000849
850 print_addr(
851 (struct in_addr *)&sinfo->tuple[IP_CT_DIR_REPLY].src.ip,
852 &sinfo->sipmsk[IP_CT_DIR_REPLY],
Jan Engelhardta80b6042008-01-20 13:34:07 +0000853 false,
Marc Boucher5054e852002-01-19 10:59:12 +0000854 numeric);
855 }
856
Jan Engelhardta80b6042008-01-20 13:34:07 +0000857 if(sinfo->flags & XT_CONNTRACK_REPLDST) {
858 if (sinfo->invflags & XT_CONNTRACK_REPLDST)
859 printf("! ");
Lutz Preßlerd0ae04e2003-03-04 14:50:50 +0000860 printf("%sctrepldst ", optpfx);
Marc Boucher5054e852002-01-19 10:59:12 +0000861
862 print_addr(
863 (struct in_addr *)&sinfo->tuple[IP_CT_DIR_REPLY].dst.ip,
864 &sinfo->dipmsk[IP_CT_DIR_REPLY],
Jan Engelhardta80b6042008-01-20 13:34:07 +0000865 false,
Marc Boucher5054e852002-01-19 10:59:12 +0000866 numeric);
867 }
868
Jan Engelhardta80b6042008-01-20 13:34:07 +0000869 if(sinfo->flags & XT_CONNTRACK_STATUS) {
870 if (sinfo->invflags & XT_CONNTRACK_STATUS)
Michael Schwendtdfba3ac2002-12-05 20:20:29 +0000871 printf("! ");
Jan Engelhardta80b6042008-01-20 13:34:07 +0000872 printf("%sctstatus ", optpfx);
Marc Boucher5054e852002-01-19 10:59:12 +0000873 print_status(sinfo->statusmask);
874 }
875
Jan Engelhardta80b6042008-01-20 13:34:07 +0000876 if(sinfo->flags & XT_CONNTRACK_EXPIRES) {
877 if (sinfo->invflags & XT_CONNTRACK_EXPIRES)
Michael Schwendtdfba3ac2002-12-05 20:20:29 +0000878 printf("! ");
Jan Engelhardta80b6042008-01-20 13:34:07 +0000879 printf("%sctexpire ", optpfx);
Marc Boucher5054e852002-01-19 10:59:12 +0000880
881 if (sinfo->expires_max == sinfo->expires_min)
882 printf("%lu ", sinfo->expires_min);
883 else
884 printf("%lu:%lu ", sinfo->expires_min, sinfo->expires_max);
885 }
Jan Engelhardtc7fc1da2008-11-12 12:03:25 +0100886
887 if (sinfo->flags & XT_CONNTRACK_DIRECTION) {
888 if (sinfo->invflags & XT_CONNTRACK_DIRECTION)
889 printf("%sctdir REPLY", optpfx);
890 else
891 printf("%sctdir ORIGINAL", optpfx);
892 }
893
Marc Boucher5054e852002-01-19 10:59:12 +0000894}
895
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000896static void
897conntrack_dump(const struct xt_conntrack_mtinfo1 *info, const char *prefix,
898 unsigned int family, bool numeric)
899{
900 if (info->match_flags & XT_CONNTRACK_STATE) {
901 if (info->invert_flags & XT_CONNTRACK_STATE)
902 printf("! ");
903 printf("%sctstate ", prefix);
904 print_state(info->state_mask);
905 }
906
907 if (info->match_flags & XT_CONNTRACK_PROTO) {
908 if (info->invert_flags & XT_CONNTRACK_PROTO)
909 printf("! ");
910 printf("%sctproto %u ", prefix, info->l4proto);
911 }
912
913 if (info->match_flags & XT_CONNTRACK_ORIGSRC) {
Jan Engelhardt093d5fc2009-04-05 00:05:30 +0200914 if (info->invert_flags & XT_CONNTRACK_ORIGSRC)
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000915 printf("! ");
916 printf("%sctorigsrc ", prefix);
917 conntrack_dump_addr(&info->origsrc_addr, &info->origsrc_mask,
918 family, numeric);
919 }
920
921 if (info->match_flags & XT_CONNTRACK_ORIGDST) {
Jan Engelhardt093d5fc2009-04-05 00:05:30 +0200922 if (info->invert_flags & XT_CONNTRACK_ORIGDST)
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000923 printf("! ");
924 printf("%sctorigdst ", prefix);
925 conntrack_dump_addr(&info->origdst_addr, &info->origdst_mask,
926 family, numeric);
927 }
928
929 if (info->match_flags & XT_CONNTRACK_REPLSRC) {
Jan Engelhardt093d5fc2009-04-05 00:05:30 +0200930 if (info->invert_flags & XT_CONNTRACK_REPLSRC)
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000931 printf("! ");
932 printf("%sctreplsrc ", prefix);
933 conntrack_dump_addr(&info->replsrc_addr, &info->replsrc_mask,
934 family, numeric);
935 }
936
937 if (info->match_flags & XT_CONNTRACK_REPLDST) {
Jan Engelhardt093d5fc2009-04-05 00:05:30 +0200938 if (info->invert_flags & XT_CONNTRACK_REPLDST)
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000939 printf("! ");
940 printf("%sctrepldst ", prefix);
941 conntrack_dump_addr(&info->repldst_addr, &info->repldst_mask,
942 family, numeric);
943 }
944
945 if (info->match_flags & XT_CONNTRACK_ORIGSRC_PORT) {
946 if (info->invert_flags & XT_CONNTRACK_ORIGSRC_PORT)
947 printf("! ");
948 printf("%sctorigsrcport %u ", prefix,
949 ntohs(info->origsrc_port));
950 }
951
952 if (info->match_flags & XT_CONNTRACK_ORIGDST_PORT) {
953 if (info->invert_flags & XT_CONNTRACK_ORIGDST_PORT)
954 printf("! ");
955 printf("%sctorigdstport %u ", prefix,
956 ntohs(info->origdst_port));
957 }
958
959 if (info->match_flags & XT_CONNTRACK_REPLSRC_PORT) {
960 if (info->invert_flags & XT_CONNTRACK_REPLSRC_PORT)
961 printf("! ");
962 printf("%sctreplsrcport %u ", prefix,
963 ntohs(info->replsrc_port));
964 }
965
966 if (info->match_flags & XT_CONNTRACK_REPLDST_PORT) {
967 if (info->invert_flags & XT_CONNTRACK_REPLDST_PORT)
968 printf("! ");
969 printf("%sctrepldstport %u ", prefix,
970 ntohs(info->repldst_port));
971 }
972
973 if (info->match_flags & XT_CONNTRACK_STATUS) {
974 if (info->invert_flags & XT_CONNTRACK_STATUS)
975 printf("! ");
976 printf("%sctstatus ", prefix);
977 print_status(info->status_mask);
978 }
979
980 if (info->match_flags & XT_CONNTRACK_EXPIRES) {
981 if (info->invert_flags & XT_CONNTRACK_EXPIRES)
982 printf("! ");
983 printf("%sctexpire ", prefix);
984
985 if (info->expires_max == info->expires_min)
986 printf("%u ", (unsigned int)info->expires_min);
987 else
988 printf("%u:%u ", (unsigned int)info->expires_min,
989 (unsigned int)info->expires_max);
990 }
Jan Engelhardtc7fc1da2008-11-12 12:03:25 +0100991
992 if (info->match_flags & XT_CONNTRACK_DIRECTION) {
993 if (info->invert_flags & XT_CONNTRACK_DIRECTION)
994 printf("%sctdir REPLY", prefix);
995 else
996 printf("%sctdir ORIGINAL", prefix);
997 }
Jan Engelhardta8ad34c2008-01-29 13:37:21 +0000998}
999
Jan Engelhardt59d16402007-10-04 16:28:39 +00001000static void conntrack_print(const void *ip, const struct xt_entry_match *match,
1001 int numeric)
Marc Boucher5054e852002-01-19 10:59:12 +00001002{
1003 matchinfo_print(ip, match, numeric, "");
1004}
1005
Jan Engelhardta8ad34c2008-01-29 13:37:21 +00001006static void
1007conntrack_mt_print(const void *ip, const struct xt_entry_match *match,
1008 int numeric)
1009{
Jan Engelhardt03d99482008-11-18 12:27:54 +01001010 conntrack_dump((const void *)match->data, "", NFPROTO_IPV4, numeric);
Jan Engelhardta8ad34c2008-01-29 13:37:21 +00001011}
1012
1013static void
1014conntrack_mt6_print(const void *ip, const struct xt_entry_match *match,
1015 int numeric)
1016{
Jan Engelhardt03d99482008-11-18 12:27:54 +01001017 conntrack_dump((const void *)match->data, "", NFPROTO_IPV6, numeric);
Jan Engelhardta8ad34c2008-01-29 13:37:21 +00001018}
1019
Jan Engelhardt59d16402007-10-04 16:28:39 +00001020static void conntrack_save(const void *ip, const struct xt_entry_match *match)
Marc Boucher5054e852002-01-19 10:59:12 +00001021{
Joszef Kadlecsikdb503f92004-05-05 10:10:33 +00001022 matchinfo_print(ip, match, 1, "--");
Marc Boucher5054e852002-01-19 10:59:12 +00001023}
1024
Jan Engelhardta8ad34c2008-01-29 13:37:21 +00001025static void conntrack_mt_save(const void *ip,
1026 const struct xt_entry_match *match)
1027{
Jan Engelhardt03d99482008-11-18 12:27:54 +01001028 conntrack_dump((const void *)match->data, "--", NFPROTO_IPV4, true);
Jan Engelhardta8ad34c2008-01-29 13:37:21 +00001029}
1030
1031static void conntrack_mt6_save(const void *ip,
1032 const struct xt_entry_match *match)
1033{
Jan Engelhardt03d99482008-11-18 12:27:54 +01001034 conntrack_dump((const void *)match->data, "--", NFPROTO_IPV6, true);
Jan Engelhardta8ad34c2008-01-29 13:37:21 +00001035}
1036
Jan Engelhardta80b6042008-01-20 13:34:07 +00001037static struct xtables_match conntrack_match = {
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +02001038 .version = XTABLES_VERSION,
Jan Engelhardta80b6042008-01-20 13:34:07 +00001039 .name = "conntrack",
1040 .revision = 0,
Jan Engelhardt03d99482008-11-18 12:27:54 +01001041 .family = NFPROTO_IPV4,
Jan Engelhardta80b6042008-01-20 13:34:07 +00001042 .size = XT_ALIGN(sizeof(struct xt_conntrack_info)),
1043 .userspacesize = XT_ALIGN(sizeof(struct xt_conntrack_info)),
1044 .help = conntrack_mt_help,
1045 .parse = conntrack_parse,
1046 .final_check = conntrack_mt_check,
1047 .print = conntrack_print,
1048 .save = conntrack_save,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +00001049 .extra_opts = conntrack_mt_opts_v0,
1050};
1051
1052static struct xtables_match conntrack_mt_reg = {
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +02001053 .version = XTABLES_VERSION,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +00001054 .name = "conntrack",
1055 .revision = 1,
Jan Engelhardt03d99482008-11-18 12:27:54 +01001056 .family = NFPROTO_IPV4,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +00001057 .size = XT_ALIGN(sizeof(struct xt_conntrack_mtinfo1)),
1058 .userspacesize = XT_ALIGN(sizeof(struct xt_conntrack_mtinfo1)),
1059 .help = conntrack_mt_help,
1060 .parse = conntrack_mt4_parse,
1061 .final_check = conntrack_mt_check,
1062 .print = conntrack_mt_print,
1063 .save = conntrack_mt_save,
1064 .extra_opts = conntrack_mt_opts,
1065};
1066
1067static struct xtables_match conntrack_mt6_reg = {
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +02001068 .version = XTABLES_VERSION,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +00001069 .name = "conntrack",
1070 .revision = 1,
Jan Engelhardt03d99482008-11-18 12:27:54 +01001071 .family = NFPROTO_IPV6,
Jan Engelhardta8ad34c2008-01-29 13:37:21 +00001072 .size = XT_ALIGN(sizeof(struct xt_conntrack_mtinfo1)),
1073 .userspacesize = XT_ALIGN(sizeof(struct xt_conntrack_mtinfo1)),
1074 .help = conntrack_mt_help,
1075 .parse = conntrack_mt6_parse,
1076 .final_check = conntrack_mt_check,
1077 .print = conntrack_mt6_print,
1078 .save = conntrack_mt6_save,
Jan Engelhardta80b6042008-01-20 13:34:07 +00001079 .extra_opts = conntrack_mt_opts,
Marc Boucher5054e852002-01-19 10:59:12 +00001080};
1081
1082void _init(void)
1083{
Jan Engelhardta80b6042008-01-20 13:34:07 +00001084 xtables_register_match(&conntrack_match);
Jan Engelhardta8ad34c2008-01-29 13:37:21 +00001085 xtables_register_match(&conntrack_mt_reg);
1086 xtables_register_match(&conntrack_mt6_reg);
Marc Boucher5054e852002-01-19 10:59:12 +00001087}