blob: 680a5b0ceb89c6aab8b7f3909a5b8c6f6247df06 [file] [log] [blame]
Jan Engelhardt1b8db4f2011-03-01 18:36:15 +01001#include <stdint.h>
Marc Bouchere6869a82000-03-20 06:03:29 +00002#include <stdio.h>
Marc Bouchere6869a82000-03-20 06:03:29 +00003#include <string.h>
Jan Engelhardt5d9678a2008-11-20 10:15:35 +01004#include <xtables.h>
Jan Engelhardt1b8db4f2011-03-01 18:36:15 +01005#include <limits.h> /* INT_MAX in ip6_tables.h */
Marc Bouchere6869a82000-03-20 06:03:29 +00006#include <linux/netfilter_ipv4/ip_tables.h>
7
Harald Weltefc9237d2003-02-25 10:50:59 +00008/* special hack for icmp-type 'any':
9 * Up to kernel <=2.4.20 the problem was:
10 * '-p icmp ' matches all icmp packets
11 * '-p icmp -m icmp' matches _only_ ICMP type 0 :(
12 * This is now fixed by initializing the field * to icmp type 0xFF
13 * See: https://bugzilla.netfilter.org/cgi-bin/bugzilla/show_bug.cgi?id=37
14 */
15
Jan Engelhardt1b8db4f2011-03-01 18:36:15 +010016enum {
17 O_ICMP_TYPE = 0,
18};
19
Marc Bouchere6869a82000-03-20 06:03:29 +000020struct icmp_names {
21 const char *name;
Jan Engelhardt7ac40522011-01-07 12:34:04 +010022 uint8_t type;
23 uint8_t code_min, code_max;
Marc Bouchere6869a82000-03-20 06:03:29 +000024};
25
26static const struct icmp_names icmp_codes[] = {
Harald Weltefc9237d2003-02-25 10:50:59 +000027 { "any", 0xFF, 0, 0xFF },
Marc Bouchere6869a82000-03-20 06:03:29 +000028 { "echo-reply", 0, 0, 0xFF },
29 /* Alias */ { "pong", 0, 0, 0xFF },
30
31 { "destination-unreachable", 3, 0, 0xFF },
32 { "network-unreachable", 3, 0, 0 },
33 { "host-unreachable", 3, 1, 1 },
34 { "protocol-unreachable", 3, 2, 2 },
35 { "port-unreachable", 3, 3, 3 },
36 { "fragmentation-needed", 3, 4, 4 },
37 { "source-route-failed", 3, 5, 5 },
38 { "network-unknown", 3, 6, 6 },
39 { "host-unknown", 3, 7, 7 },
40 { "network-prohibited", 3, 9, 9 },
41 { "host-prohibited", 3, 10, 10 },
42 { "TOS-network-unreachable", 3, 11, 11 },
43 { "TOS-host-unreachable", 3, 12, 12 },
44 { "communication-prohibited", 3, 13, 13 },
45 { "host-precedence-violation", 3, 14, 14 },
46 { "precedence-cutoff", 3, 15, 15 },
47
48 { "source-quench", 4, 0, 0xFF },
49
50 { "redirect", 5, 0, 0xFF },
51 { "network-redirect", 5, 0, 0 },
52 { "host-redirect", 5, 1, 1 },
53 { "TOS-network-redirect", 5, 2, 2 },
54 { "TOS-host-redirect", 5, 3, 3 },
55
56 { "echo-request", 8, 0, 0xFF },
57 /* Alias */ { "ping", 8, 0, 0xFF },
58
59 { "router-advertisement", 9, 0, 0xFF },
60
61 { "router-solicitation", 10, 0, 0xFF },
62
63 { "time-exceeded", 11, 0, 0xFF },
64 /* Alias */ { "ttl-exceeded", 11, 0, 0xFF },
65 { "ttl-zero-during-transit", 11, 0, 0 },
66 { "ttl-zero-during-reassembly", 11, 1, 1 },
67
68 { "parameter-problem", 12, 0, 0xFF },
69 { "ip-header-bad", 12, 0, 0 },
70 { "required-option-missing", 12, 1, 1 },
71
72 { "timestamp-request", 13, 0, 0xFF },
73
74 { "timestamp-reply", 14, 0, 0xFF },
75
76 { "address-mask-request", 17, 0, 0xFF },
77
78 { "address-mask-reply", 18, 0, 0xFF }
79};
80
81static void
Patrick McHardy500f4832007-09-08 15:59:04 +000082print_icmptypes(void)
Marc Bouchere6869a82000-03-20 06:03:29 +000083{
84 unsigned int i;
85 printf("Valid ICMP Types:");
86
Jan Engelhardt2c69b552009-04-30 19:32:02 +020087 for (i = 0; i < ARRAY_SIZE(icmp_codes); ++i) {
Marc Bouchere6869a82000-03-20 06:03:29 +000088 if (i && icmp_codes[i].type == icmp_codes[i-1].type) {
89 if (icmp_codes[i].code_min == icmp_codes[i-1].code_min
90 && (icmp_codes[i].code_max
91 == icmp_codes[i-1].code_max))
92 printf(" (%s)", icmp_codes[i].name);
93 else
94 printf("\n %s", icmp_codes[i].name);
95 }
96 else
97 printf("\n%s", icmp_codes[i].name);
98 }
99 printf("\n");
100}
101
Jan Engelhardt59d16402007-10-04 16:28:39 +0000102static void icmp_help(void)
Marc Bouchere6869a82000-03-20 06:03:29 +0000103{
104 printf(
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200105"icmp match options:\n"
Jan Engelhardt96727922008-08-13 14:42:41 +0200106"[!] --icmp-type typename match icmp type\n"
Jan Engelhardt3d12c3b2009-01-13 15:30:10 +0100107"[!] --icmp-type type[/code] (or numeric type or type/code)\n");
Marc Bouchere6869a82000-03-20 06:03:29 +0000108 print_icmptypes();
109}
110
Jan Engelhardt1b8db4f2011-03-01 18:36:15 +0100111static const struct xt_option_entry icmp_opts[] = {
112 {.name = "icmp-type", .id = O_ICMP_TYPE, .type = XTTYPE_STRING,
113 .flags = XTOPT_MAND | XTOPT_INVERT},
114 XTOPT_TABLEEND,
Marc Bouchere6869a82000-03-20 06:03:29 +0000115};
116
Pablo Neira8115e542005-02-14 13:13:04 +0000117static void
Jan Engelhardt7ac40522011-01-07 12:34:04 +0100118parse_icmp(const char *icmptype, uint8_t *type, uint8_t code[])
Marc Bouchere6869a82000-03-20 06:03:29 +0000119{
Jan Engelhardt2c69b552009-04-30 19:32:02 +0200120 static const unsigned int limit = ARRAY_SIZE(icmp_codes);
Marc Bouchere6869a82000-03-20 06:03:29 +0000121 unsigned int match = limit;
122 unsigned int i;
123
124 for (i = 0; i < limit; i++) {
125 if (strncasecmp(icmp_codes[i].name, icmptype, strlen(icmptype))
126 == 0) {
127 if (match != limit)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100128 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +0000129 "Ambiguous ICMP type `%s':"
130 " `%s' or `%s'?",
131 icmptype,
132 icmp_codes[match].name,
133 icmp_codes[i].name);
134 match = i;
135 }
136 }
137
138 if (match != limit) {
139 *type = icmp_codes[match].type;
140 code[0] = icmp_codes[match].code_min;
141 code[1] = icmp_codes[match].code_max;
142 } else {
143 char *slash;
144 char buffer[strlen(icmptype) + 1];
Harald Welteb4719762001-07-23 02:14:22 +0000145 unsigned int number;
Marc Bouchere6869a82000-03-20 06:03:29 +0000146
147 strcpy(buffer, icmptype);
148 slash = strchr(buffer, '/');
149
150 if (slash)
151 *slash = '\0';
152
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100153 if (!xtables_strtoui(buffer, NULL, &number, 0, UINT8_MAX))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100154 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +0000155 "Invalid ICMP type `%s'\n", buffer);
156 *type = number;
157 if (slash) {
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100158 if (!xtables_strtoui(slash+1, NULL, &number, 0, UINT8_MAX))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100159 xtables_error(PARAMETER_PROBLEM,
Marc Bouchere6869a82000-03-20 06:03:29 +0000160 "Invalid ICMP code `%s'\n",
161 slash+1);
162 code[0] = code[1] = number;
163 } else {
164 code[0] = 0;
165 code[1] = 0xFF;
166 }
167 }
Marc Bouchere6869a82000-03-20 06:03:29 +0000168}
169
Jan Engelhardt59d16402007-10-04 16:28:39 +0000170static void icmp_init(struct xt_entry_match *m)
Marc Bouchere6869a82000-03-20 06:03:29 +0000171{
172 struct ipt_icmp *icmpinfo = (struct ipt_icmp *)m->data;
173
Harald Weltefc9237d2003-02-25 10:50:59 +0000174 icmpinfo->type = 0xFF;
Marc Bouchere6869a82000-03-20 06:03:29 +0000175 icmpinfo->code[1] = 0xFF;
176}
177
Jan Engelhardt1b8db4f2011-03-01 18:36:15 +0100178static void icmp_parse(struct xt_option_call *cb)
Marc Bouchere6869a82000-03-20 06:03:29 +0000179{
Jan Engelhardt1b8db4f2011-03-01 18:36:15 +0100180 struct ipt_icmp *icmpinfo = cb->data;
Marc Bouchere6869a82000-03-20 06:03:29 +0000181
Jan Engelhardt1b8db4f2011-03-01 18:36:15 +0100182 xtables_option_parse(cb);
183 parse_icmp(cb->arg, &icmpinfo->type, icmpinfo->code);
184 if (cb->invert)
185 icmpinfo->invflags |= IPT_ICMP_INV;
Marc Bouchere6869a82000-03-20 06:03:29 +0000186}
187
Jan Engelhardt7ac40522011-01-07 12:34:04 +0100188static void print_icmptype(uint8_t type,
189 uint8_t code_min, uint8_t code_max,
Marc Bouchere6869a82000-03-20 06:03:29 +0000190 int invert,
191 int numeric)
192{
193 if (!numeric) {
194 unsigned int i;
195
Jan Engelhardt2c69b552009-04-30 19:32:02 +0200196 for (i = 0; i < ARRAY_SIZE(icmp_codes); ++i)
Marc Bouchere6869a82000-03-20 06:03:29 +0000197 if (icmp_codes[i].type == type
198 && icmp_codes[i].code_min == code_min
199 && icmp_codes[i].code_max == code_max)
200 break;
Marc Bouchere6869a82000-03-20 06:03:29 +0000201
Jan Engelhardt2c69b552009-04-30 19:32:02 +0200202 if (i != ARRAY_SIZE(icmp_codes)) {
Jan Engelhardt73866352010-12-18 02:04:59 +0100203 printf(" %s%s",
Marc Bouchere6869a82000-03-20 06:03:29 +0000204 invert ? "!" : "",
205 icmp_codes[i].name);
206 return;
207 }
208 }
209
210 if (invert)
Jan Engelhardt73866352010-12-18 02:04:59 +0100211 printf(" !");
Marc Bouchere6869a82000-03-20 06:03:29 +0000212
213 printf("type %u", type);
Jan Engelhardt73866352010-12-18 02:04:59 +0100214 if (code_min == code_max)
215 printf(" code %u", code_min);
216 else if (code_min != 0 || code_max != 0xFF)
217 printf(" codes %u-%u", code_min, code_max);
Marc Bouchere6869a82000-03-20 06:03:29 +0000218}
219
Jan Engelhardt59d16402007-10-04 16:28:39 +0000220static void icmp_print(const void *ip, const struct xt_entry_match *match,
221 int numeric)
Marc Bouchere6869a82000-03-20 06:03:29 +0000222{
223 const struct ipt_icmp *icmp = (struct ipt_icmp *)match->data;
224
Jan Engelhardt73866352010-12-18 02:04:59 +0100225 printf(" icmp");
Marc Bouchere6869a82000-03-20 06:03:29 +0000226 print_icmptype(icmp->type, icmp->code[0], icmp->code[1],
227 icmp->invflags & IPT_ICMP_INV,
228 numeric);
229
230 if (icmp->invflags & ~IPT_ICMP_INV)
Jan Engelhardt73866352010-12-18 02:04:59 +0100231 printf(" Unknown invflags: 0x%X",
Marc Bouchere6869a82000-03-20 06:03:29 +0000232 icmp->invflags & ~IPT_ICMP_INV);
233}
234
Jan Engelhardt59d16402007-10-04 16:28:39 +0000235static void icmp_save(const void *ip, const struct xt_entry_match *match)
Marc Bouchere6869a82000-03-20 06:03:29 +0000236{
237 const struct ipt_icmp *icmp = (struct ipt_icmp *)match->data;
238
239 if (icmp->invflags & IPT_ICMP_INV)
Jan Engelhardt73866352010-12-18 02:04:59 +0100240 printf(" !");
Marc Bouchere6869a82000-03-20 06:03:29 +0000241
Harald Weltefc9237d2003-02-25 10:50:59 +0000242 /* special hack for 'any' case */
243 if (icmp->type == 0xFF) {
Jan Engelhardt73866352010-12-18 02:04:59 +0100244 printf(" --icmp-type any");
Harald Weltefc9237d2003-02-25 10:50:59 +0000245 } else {
Jan Engelhardt73866352010-12-18 02:04:59 +0100246 printf(" --icmp-type %u", icmp->type);
Harald Weltefc9237d2003-02-25 10:50:59 +0000247 if (icmp->code[0] != 0 || icmp->code[1] != 0xFF)
248 printf("/%u", icmp->code[0]);
Harald Weltefc9237d2003-02-25 10:50:59 +0000249 }
Marc Bouchere6869a82000-03-20 06:03:29 +0000250}
251
Laura Garcia Liebanaaa158ca2016-03-16 23:00:22 +0100252static unsigned int type_xlate_print(struct xt_xlate *xl, unsigned int icmptype,
253 unsigned int code_min,
254 unsigned int code_max)
255{
256 unsigned int i;
257
258 if (code_min != code_max) {
259 for (i = 0; i < ARRAY_SIZE(icmp_codes); ++i)
260 if (icmp_codes[i].type == icmptype &&
261 icmp_codes[i].code_min == code_min &&
262 icmp_codes[i].code_max == code_max) {
263 xt_xlate_add(xl, icmp_codes[i].name);
264 return 1;
265 }
266 }
267
268 return 0;
269}
270
Pablo Neira Ayuso7a0992d2016-07-24 12:45:53 +0200271static int icmp_xlate(struct xt_xlate *xl,
272 const struct xt_xlate_mt_params *params)
Laura Garcia Liebanaaa158ca2016-03-16 23:00:22 +0100273{
Pablo Neira Ayuso7a0992d2016-07-24 12:45:53 +0200274 const struct ipt_icmp *info = (struct ipt_icmp *)params->match->data;
Laura Garcia Liebanaaa158ca2016-03-16 23:00:22 +0100275
276 if (info->type != 0xFF) {
277 xt_xlate_add(xl, "icmp type%s ",
278 (info->invflags & IPT_ICMP_INV) ? " !=" : "");
279
280 if (!type_xlate_print(xl, info->type, info->code[0],
281 info->code[1]))
282 return 0;
Laura Garcia Liebanaaa158ca2016-03-16 23:00:22 +0100283 }
284 return 1;
285}
286
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200287static struct xtables_match icmp_mt_reg = {
Pablo Neira8caee8b2004-12-28 13:11:59 +0000288 .name = "icmp",
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200289 .version = XTABLES_VERSION,
Jan Engelhardt03d99482008-11-18 12:27:54 +0100290 .family = NFPROTO_IPV4,
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200291 .size = XT_ALIGN(sizeof(struct ipt_icmp)),
292 .userspacesize = XT_ALIGN(sizeof(struct ipt_icmp)),
Jan Engelhardt59d16402007-10-04 16:28:39 +0000293 .help = icmp_help,
294 .init = icmp_init,
Jan Engelhardt59d16402007-10-04 16:28:39 +0000295 .print = icmp_print,
296 .save = icmp_save,
Jan Engelhardt1b8db4f2011-03-01 18:36:15 +0100297 .x6_parse = icmp_parse,
298 .x6_options = icmp_opts,
Laura Garcia Liebanaaa158ca2016-03-16 23:00:22 +0100299 .xlate = icmp_xlate,
Marc Bouchere6869a82000-03-20 06:03:29 +0000300};
301
302void _init(void)
303{
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200304 xtables_register_match(&icmp_mt_reg);
Marc Bouchere6869a82000-03-20 06:03:29 +0000305}