blob: e2c7f6e024c5204f3957f930922793f12ba00a72 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Packet matching code.
3 *
4 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
Harald Welte2e4e6a12006-01-12 13:30:04 -08005 * Copyright (C) 2000-2005 Netfilter Core Team <coreteam@netfilter.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * 19 Jan 2002 Harald Welte <laforge@gnumonks.org>
12 * - increase module usage count as soon as we have rules inside
13 * a table
Harald Welte2e4e6a12006-01-12 13:30:04 -080014 * 08 Oct 2005 Harald Welte <lafore@netfilter.org>
15 * - Generalize into "x_tables" layer and "{ip,ip6,arp}_tables"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/cache.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080018#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/skbuff.h>
20#include <linux/kmod.h>
21#include <linux/vmalloc.h>
22#include <linux/netdevice.h>
23#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/icmp.h>
25#include <net/ip.h>
Dmitry Mishin27229712006-04-01 02:25:19 -080026#include <net/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/uaccess.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -080028#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/proc_fs.h>
30#include <linux/err.h>
David S. Millerc8923c62005-10-13 14:41:23 -070031#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Harald Welte2e4e6a12006-01-12 13:30:04 -080033#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/netfilter_ipv4/ip_tables.h>
35
36MODULE_LICENSE("GPL");
37MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
38MODULE_DESCRIPTION("IPv4 packet filter");
39
40/*#define DEBUG_IP_FIREWALL*/
41/*#define DEBUG_ALLOW_ALL*/ /* Useful for remote debugging */
42/*#define DEBUG_IP_FIREWALL_USER*/
43
44#ifdef DEBUG_IP_FIREWALL
45#define dprintf(format, args...) printk(format , ## args)
46#else
47#define dprintf(format, args...)
48#endif
49
50#ifdef DEBUG_IP_FIREWALL_USER
51#define duprintf(format, args...) printk(format , ## args)
52#else
53#define duprintf(format, args...)
54#endif
55
56#ifdef CONFIG_NETFILTER_DEBUG
57#define IP_NF_ASSERT(x) \
58do { \
59 if (!(x)) \
60 printk("IP_NF_ASSERT: %s:%s:%u\n", \
61 __FUNCTION__, __FILE__, __LINE__); \
62} while(0)
63#else
64#define IP_NF_ASSERT(x)
65#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67#if 0
68/* All the better to debug you with... */
69#define static
70#define inline
71#endif
72
73/*
74 We keep a set of rules for each CPU, so we can avoid write-locking
75 them in the softirq when updating the counters and therefore
76 only need to read-lock in the softirq; doing a write_lock_bh() in user
77 context stops packets coming through and allows user context to read
78 the counters or update the rules.
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 Hence the start of any table is given by get_table() below. */
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/* Returns whether matches rule or not. */
83static inline int
84ip_packet_match(const struct iphdr *ip,
85 const char *indev,
86 const char *outdev,
87 const struct ipt_ip *ipinfo,
88 int isfrag)
89{
90 size_t i;
91 unsigned long ret;
92
93#define FWINV(bool,invflg) ((bool) ^ !!(ipinfo->invflags & invflg))
94
95 if (FWINV((ip->saddr&ipinfo->smsk.s_addr) != ipinfo->src.s_addr,
96 IPT_INV_SRCIP)
97 || FWINV((ip->daddr&ipinfo->dmsk.s_addr) != ipinfo->dst.s_addr,
98 IPT_INV_DSTIP)) {
99 dprintf("Source or dest mismatch.\n");
100
101 dprintf("SRC: %u.%u.%u.%u. Mask: %u.%u.%u.%u. Target: %u.%u.%u.%u.%s\n",
102 NIPQUAD(ip->saddr),
103 NIPQUAD(ipinfo->smsk.s_addr),
104 NIPQUAD(ipinfo->src.s_addr),
105 ipinfo->invflags & IPT_INV_SRCIP ? " (INV)" : "");
106 dprintf("DST: %u.%u.%u.%u Mask: %u.%u.%u.%u Target: %u.%u.%u.%u.%s\n",
107 NIPQUAD(ip->daddr),
108 NIPQUAD(ipinfo->dmsk.s_addr),
109 NIPQUAD(ipinfo->dst.s_addr),
110 ipinfo->invflags & IPT_INV_DSTIP ? " (INV)" : "");
111 return 0;
112 }
113
114 /* Look for ifname matches; this should unroll nicely. */
115 for (i = 0, ret = 0; i < IFNAMSIZ/sizeof(unsigned long); i++) {
116 ret |= (((const unsigned long *)indev)[i]
117 ^ ((const unsigned long *)ipinfo->iniface)[i])
118 & ((const unsigned long *)ipinfo->iniface_mask)[i];
119 }
120
121 if (FWINV(ret != 0, IPT_INV_VIA_IN)) {
122 dprintf("VIA in mismatch (%s vs %s).%s\n",
123 indev, ipinfo->iniface,
124 ipinfo->invflags&IPT_INV_VIA_IN ?" (INV)":"");
125 return 0;
126 }
127
128 for (i = 0, ret = 0; i < IFNAMSIZ/sizeof(unsigned long); i++) {
129 ret |= (((const unsigned long *)outdev)[i]
130 ^ ((const unsigned long *)ipinfo->outiface)[i])
131 & ((const unsigned long *)ipinfo->outiface_mask)[i];
132 }
133
134 if (FWINV(ret != 0, IPT_INV_VIA_OUT)) {
135 dprintf("VIA out mismatch (%s vs %s).%s\n",
136 outdev, ipinfo->outiface,
137 ipinfo->invflags&IPT_INV_VIA_OUT ?" (INV)":"");
138 return 0;
139 }
140
141 /* Check specific protocol */
142 if (ipinfo->proto
143 && FWINV(ip->protocol != ipinfo->proto, IPT_INV_PROTO)) {
144 dprintf("Packet protocol %hi does not match %hi.%s\n",
145 ip->protocol, ipinfo->proto,
146 ipinfo->invflags&IPT_INV_PROTO ? " (INV)":"");
147 return 0;
148 }
149
150 /* If we have a fragment rule but the packet is not a fragment
151 * then we return zero */
152 if (FWINV((ipinfo->flags&IPT_F_FRAG) && !isfrag, IPT_INV_FRAG)) {
153 dprintf("Fragment rule but not fragment.%s\n",
154 ipinfo->invflags & IPT_INV_FRAG ? " (INV)" : "");
155 return 0;
156 }
157
158 return 1;
159}
160
161static inline int
162ip_checkentry(const struct ipt_ip *ip)
163{
164 if (ip->flags & ~IPT_F_MASK) {
165 duprintf("Unknown flag bits set: %08X\n",
166 ip->flags & ~IPT_F_MASK);
167 return 0;
168 }
169 if (ip->invflags & ~IPT_INV_MASK) {
170 duprintf("Unknown invflag bits set: %08X\n",
171 ip->invflags & ~IPT_INV_MASK);
172 return 0;
173 }
174 return 1;
175}
176
177static unsigned int
178ipt_error(struct sk_buff **pskb,
179 const struct net_device *in,
180 const struct net_device *out,
181 unsigned int hooknum,
Patrick McHardyc4986732006-03-20 18:02:56 -0800182 const struct xt_target *target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700183 const void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
185 if (net_ratelimit())
186 printk("ip_tables: error: `%s'\n", (char *)targinfo);
187
188 return NF_DROP;
189}
190
191static inline
192int do_match(struct ipt_entry_match *m,
193 const struct sk_buff *skb,
194 const struct net_device *in,
195 const struct net_device *out,
196 int offset,
197 int *hotdrop)
198{
199 /* Stop iteration if it doesn't match */
Patrick McHardy1c524832006-03-20 18:02:15 -0800200 if (!m->u.kernel.match->match(skb, in, out, m->u.kernel.match, m->data,
201 offset, skb->nh.iph->ihl*4, hotdrop))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return 1;
203 else
204 return 0;
205}
206
207static inline struct ipt_entry *
208get_entry(void *base, unsigned int offset)
209{
210 return (struct ipt_entry *)(base + offset);
211}
212
213/* Returns one of the generic firewall policies, like NF_ACCEPT. */
214unsigned int
215ipt_do_table(struct sk_buff **pskb,
216 unsigned int hook,
217 const struct net_device *in,
218 const struct net_device *out,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700219 struct ipt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
222 u_int16_t offset;
223 struct iphdr *ip;
224 u_int16_t datalen;
225 int hotdrop = 0;
226 /* Initializing verdict to NF_DROP keeps gcc happy. */
227 unsigned int verdict = NF_DROP;
228 const char *indev, *outdev;
229 void *table_base;
230 struct ipt_entry *e, *back;
Patrick McHardy83117312006-08-17 18:13:53 -0700231 struct xt_table_info *private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 /* Initialization */
234 ip = (*pskb)->nh.iph;
235 datalen = (*pskb)->len - ip->ihl * 4;
236 indev = in ? in->name : nulldevname;
237 outdev = out ? out->name : nulldevname;
238 /* We handle fragments by dealing with the first fragment as
239 * if it was a normal packet. All other fragments are treated
240 * normally, except that they will NEVER match rules that ask
241 * things we don't know, ie. tcp syn flag or ports). If the
242 * rule is also a fragment-specific rule, non-fragments won't
243 * match it. */
244 offset = ntohs(ip->frag_off) & IP_OFFSET;
245
246 read_lock_bh(&table->lock);
247 IP_NF_ASSERT(table->valid_hooks & (1 << hook));
Patrick McHardy83117312006-08-17 18:13:53 -0700248 private = table->private;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800249 table_base = (void *)private->entries[smp_processor_id()];
250 e = get_entry(table_base, private->hook_entry[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 /* For return from builtin chain */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800253 back = get_entry(table_base, private->underflow[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 do {
256 IP_NF_ASSERT(e);
257 IP_NF_ASSERT(back);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 if (ip_packet_match(ip, indev, outdev, &e->ip, offset)) {
259 struct ipt_entry_target *t;
260
261 if (IPT_MATCH_ITERATE(e, do_match,
262 *pskb, in, out,
263 offset, &hotdrop) != 0)
264 goto no_match;
265
266 ADD_COUNTER(e->counters, ntohs(ip->tot_len), 1);
267
268 t = ipt_get_target(e);
269 IP_NF_ASSERT(t->u.kernel.target);
270 /* Standard target? */
271 if (!t->u.kernel.target->target) {
272 int v;
273
274 v = ((struct ipt_standard_target *)t)->verdict;
275 if (v < 0) {
276 /* Pop from stack? */
277 if (v != IPT_RETURN) {
278 verdict = (unsigned)(-v) - 1;
279 break;
280 }
281 e = back;
282 back = get_entry(table_base,
283 back->comefrom);
284 continue;
285 }
Patrick McHardy05465342005-08-21 23:31:43 -0700286 if (table_base + v != (void *)e + e->next_offset
287 && !(e->ip.flags & IPT_F_GOTO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /* Save old back ptr in next entry */
289 struct ipt_entry *next
290 = (void *)e + e->next_offset;
291 next->comefrom
292 = (void *)back - table_base;
293 /* set back pointer to next entry */
294 back = next;
295 }
296
297 e = get_entry(table_base, v);
298 } else {
299 /* Targets which reenter must return
300 abs. verdicts */
301#ifdef CONFIG_NETFILTER_DEBUG
302 ((struct ipt_entry *)table_base)->comefrom
303 = 0xeeeeeeec;
304#endif
305 verdict = t->u.kernel.target->target(pskb,
306 in, out,
307 hook,
Patrick McHardy1c524832006-03-20 18:02:15 -0800308 t->u.kernel.target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700309 t->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311#ifdef CONFIG_NETFILTER_DEBUG
312 if (((struct ipt_entry *)table_base)->comefrom
313 != 0xeeeeeeec
314 && verdict == IPT_CONTINUE) {
315 printk("Target %s reentered!\n",
316 t->u.kernel.target->name);
317 verdict = NF_DROP;
318 }
319 ((struct ipt_entry *)table_base)->comefrom
320 = 0x57acc001;
321#endif
322 /* Target might have changed stuff. */
323 ip = (*pskb)->nh.iph;
324 datalen = (*pskb)->len - ip->ihl * 4;
325
326 if (verdict == IPT_CONTINUE)
327 e = (void *)e + e->next_offset;
328 else
329 /* Verdict */
330 break;
331 }
332 } else {
333
334 no_match:
335 e = (void *)e + e->next_offset;
336 }
337 } while (!hotdrop);
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 read_unlock_bh(&table->lock);
340
341#ifdef DEBUG_ALLOW_ALL
342 return NF_ACCEPT;
343#else
344 if (hotdrop)
345 return NF_DROP;
346 else return verdict;
347#endif
348}
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350/* All zeroes == unconditional rule. */
351static inline int
352unconditional(const struct ipt_ip *ip)
353{
354 unsigned int i;
355
356 for (i = 0; i < sizeof(*ip)/sizeof(__u32); i++)
357 if (((__u32 *)ip)[i])
358 return 0;
359
360 return 1;
361}
362
363/* Figures out from what hook each rule can be called: returns 0 if
364 there are loops. Puts hook bitmask in comefrom. */
365static int
Harald Welte2e4e6a12006-01-12 13:30:04 -0800366mark_source_chains(struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800367 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
369 unsigned int hook;
370
371 /* No recursion; use packet counter to save back ptrs (reset
372 to 0 as we leave), and comefrom to save source hook bitmask */
373 for (hook = 0; hook < NF_IP_NUMHOOKS; hook++) {
374 unsigned int pos = newinfo->hook_entry[hook];
375 struct ipt_entry *e
Eric Dumazet31836062005-12-13 23:13:48 -0800376 = (struct ipt_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 if (!(valid_hooks & (1 << hook)))
379 continue;
380
381 /* Set initial back pointer. */
382 e->counters.pcnt = pos;
383
384 for (;;) {
385 struct ipt_standard_target *t
386 = (void *)ipt_get_target(e);
387
388 if (e->comefrom & (1 << NF_IP_NUMHOOKS)) {
389 printk("iptables: loop hook %u pos %u %08X.\n",
390 hook, pos, e->comefrom);
391 return 0;
392 }
393 e->comefrom
394 |= ((1 << hook) | (1 << NF_IP_NUMHOOKS));
395
396 /* Unconditional return/END. */
397 if (e->target_offset == sizeof(struct ipt_entry)
398 && (strcmp(t->target.u.user.name,
399 IPT_STANDARD_TARGET) == 0)
400 && t->verdict < 0
401 && unconditional(&e->ip)) {
402 unsigned int oldpos, size;
403
404 /* Return: backtrack through the last
405 big jump. */
406 do {
407 e->comefrom ^= (1<<NF_IP_NUMHOOKS);
408#ifdef DEBUG_IP_FIREWALL_USER
409 if (e->comefrom
410 & (1 << NF_IP_NUMHOOKS)) {
411 duprintf("Back unset "
412 "on hook %u "
413 "rule %u\n",
414 hook, pos);
415 }
416#endif
417 oldpos = pos;
418 pos = e->counters.pcnt;
419 e->counters.pcnt = 0;
420
421 /* We're at the start. */
422 if (pos == oldpos)
423 goto next;
424
425 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800426 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 } while (oldpos == pos + e->next_offset);
428
429 /* Move along one */
430 size = e->next_offset;
431 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800432 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 e->counters.pcnt = pos;
434 pos += size;
435 } else {
436 int newpos = t->verdict;
437
438 if (strcmp(t->target.u.user.name,
439 IPT_STANDARD_TARGET) == 0
440 && newpos >= 0) {
441 /* This a jump; chase it. */
442 duprintf("Jump rule %u -> %u\n",
443 pos, newpos);
444 } else {
445 /* ... this is a fallthru */
446 newpos = pos + e->next_offset;
447 }
448 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800449 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 e->counters.pcnt = pos;
451 pos = newpos;
452 }
453 }
454 next:
455 duprintf("Finished chain %u\n", hook);
456 }
457 return 1;
458}
459
460static inline int
461cleanup_match(struct ipt_entry_match *m, unsigned int *i)
462{
463 if (i && (*i)-- == 0)
464 return 1;
465
466 if (m->u.kernel.match->destroy)
Patrick McHardyefa74162006-08-22 00:36:37 -0700467 m->u.kernel.match->destroy(m->u.kernel.match, m->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 module_put(m->u.kernel.match->me);
469 return 0;
470}
471
472static inline int
473standard_check(const struct ipt_entry_target *t,
474 unsigned int max_offset)
475{
476 struct ipt_standard_target *targ = (void *)t;
477
478 /* Check standard info. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 if (targ->verdict >= 0
480 && targ->verdict > max_offset - sizeof(struct ipt_entry)) {
481 duprintf("ipt_standard_check: bad verdict (%i)\n",
482 targ->verdict);
483 return 0;
484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 if (targ->verdict < -NF_MAX_VERDICT - 1) {
486 duprintf("ipt_standard_check: bad negative verdict (%i)\n",
487 targ->verdict);
488 return 0;
489 }
490 return 1;
491}
492
493static inline int
494check_match(struct ipt_entry_match *m,
495 const char *name,
496 const struct ipt_ip *ip,
497 unsigned int hookmask,
498 unsigned int *i)
499{
500 struct ipt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800501 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Harald Welte2e4e6a12006-01-12 13:30:04 -0800503 match = try_then_request_module(xt_find_match(AF_INET, m->u.user.name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 m->u.user.revision),
505 "ipt_%s", m->u.user.name);
506 if (IS_ERR(match) || !match) {
507 duprintf("check_match: `%s' not found\n", m->u.user.name);
508 return match ? PTR_ERR(match) : -ENOENT;
509 }
510 m->u.kernel.match = match;
511
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800512 ret = xt_check_match(match, AF_INET, m->u.match_size - sizeof(*m),
513 name, hookmask, ip->proto,
514 ip->invflags & IPT_INV_PROTO);
515 if (ret)
516 goto err;
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (m->u.kernel.match->checkentry
Patrick McHardy1c524832006-03-20 18:02:15 -0800519 && !m->u.kernel.match->checkentry(name, ip, match, m->data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 hookmask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 duprintf("ip_tables: check failed for `%s'.\n",
522 m->u.kernel.match->name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800523 ret = -EINVAL;
524 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
526
527 (*i)++;
528 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800529err:
530 module_put(m->u.kernel.match->me);
531 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
534static struct ipt_target ipt_standard_target;
535
536static inline int
537check_entry(struct ipt_entry *e, const char *name, unsigned int size,
538 unsigned int *i)
539{
540 struct ipt_entry_target *t;
541 struct ipt_target *target;
542 int ret;
543 unsigned int j;
544
545 if (!ip_checkentry(&e->ip)) {
546 duprintf("ip_tables: ip check failed %p %s.\n", e, name);
547 return -EINVAL;
548 }
549
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800550 if (e->target_offset + sizeof(struct ipt_entry_target) > e->next_offset)
551 return -EINVAL;
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 j = 0;
554 ret = IPT_MATCH_ITERATE(e, check_match, name, &e->ip, e->comefrom, &j);
555 if (ret != 0)
556 goto cleanup_matches;
557
558 t = ipt_get_target(e);
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800559 ret = -EINVAL;
560 if (e->target_offset + t->u.target_size > e->next_offset)
561 goto cleanup_matches;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800562 target = try_then_request_module(xt_find_target(AF_INET,
563 t->u.user.name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 t->u.user.revision),
565 "ipt_%s", t->u.user.name);
566 if (IS_ERR(target) || !target) {
567 duprintf("check_entry: `%s' not found\n", t->u.user.name);
568 ret = target ? PTR_ERR(target) : -ENOENT;
569 goto cleanup_matches;
570 }
571 t->u.kernel.target = target;
572
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800573 ret = xt_check_target(target, AF_INET, t->u.target_size - sizeof(*t),
574 name, e->comefrom, e->ip.proto,
575 e->ip.invflags & IPT_INV_PROTO);
576 if (ret)
577 goto err;
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (t->u.kernel.target == &ipt_standard_target) {
580 if (!standard_check(t, size)) {
581 ret = -EINVAL;
Dmitry Mishin90d47db2006-09-20 12:00:21 -0700582 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
584 } else if (t->u.kernel.target->checkentry
Patrick McHardy1c524832006-03-20 18:02:15 -0800585 && !t->u.kernel.target->checkentry(name, e, target, t->data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 e->comefrom)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 duprintf("ip_tables: check failed for `%s'.\n",
588 t->u.kernel.target->name);
589 ret = -EINVAL;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800590 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
592
593 (*i)++;
594 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800595 err:
596 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 cleanup_matches:
598 IPT_MATCH_ITERATE(e, cleanup_match, &j);
599 return ret;
600}
601
602static inline int
603check_entry_size_and_hooks(struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800604 struct xt_table_info *newinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 unsigned char *base,
606 unsigned char *limit,
607 const unsigned int *hook_entries,
608 const unsigned int *underflows,
609 unsigned int *i)
610{
611 unsigned int h;
612
613 if ((unsigned long)e % __alignof__(struct ipt_entry) != 0
614 || (unsigned char *)e + sizeof(struct ipt_entry) >= limit) {
615 duprintf("Bad offset %p\n", e);
616 return -EINVAL;
617 }
618
619 if (e->next_offset
620 < sizeof(struct ipt_entry) + sizeof(struct ipt_entry_target)) {
621 duprintf("checking: element %p size %u\n",
622 e, e->next_offset);
623 return -EINVAL;
624 }
625
626 /* Check hooks & underflows */
627 for (h = 0; h < NF_IP_NUMHOOKS; h++) {
628 if ((unsigned char *)e - base == hook_entries[h])
629 newinfo->hook_entry[h] = hook_entries[h];
630 if ((unsigned char *)e - base == underflows[h])
631 newinfo->underflow[h] = underflows[h];
632 }
633
634 /* FIXME: underflows must be unconditional, standard verdicts
635 < 0 (not IPT_RETURN). --RR */
636
637 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800638 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 e->comefrom = 0;
640
641 (*i)++;
642 return 0;
643}
644
645static inline int
646cleanup_entry(struct ipt_entry *e, unsigned int *i)
647{
648 struct ipt_entry_target *t;
649
650 if (i && (*i)-- == 0)
651 return 1;
652
653 /* Cleanup all matches */
654 IPT_MATCH_ITERATE(e, cleanup_match, NULL);
655 t = ipt_get_target(e);
656 if (t->u.kernel.target->destroy)
Patrick McHardyefa74162006-08-22 00:36:37 -0700657 t->u.kernel.target->destroy(t->u.kernel.target, t->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 module_put(t->u.kernel.target->me);
659 return 0;
660}
661
662/* Checks and translates the user-supplied table segment (held in
663 newinfo) */
664static int
665translate_table(const char *name,
666 unsigned int valid_hooks,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800667 struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800668 void *entry0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 unsigned int size,
670 unsigned int number,
671 const unsigned int *hook_entries,
672 const unsigned int *underflows)
673{
674 unsigned int i;
675 int ret;
676
677 newinfo->size = size;
678 newinfo->number = number;
679
680 /* Init all hooks to impossible value. */
681 for (i = 0; i < NF_IP_NUMHOOKS; i++) {
682 newinfo->hook_entry[i] = 0xFFFFFFFF;
683 newinfo->underflow[i] = 0xFFFFFFFF;
684 }
685
686 duprintf("translate_table: size %u\n", newinfo->size);
687 i = 0;
688 /* Walk through entries, checking offsets. */
Eric Dumazet31836062005-12-13 23:13:48 -0800689 ret = IPT_ENTRY_ITERATE(entry0, newinfo->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 check_entry_size_and_hooks,
691 newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800692 entry0,
693 entry0 + size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 hook_entries, underflows, &i);
695 if (ret != 0)
696 return ret;
697
698 if (i != number) {
699 duprintf("translate_table: %u not %u entries\n",
700 i, number);
701 return -EINVAL;
702 }
703
704 /* Check hooks all assigned */
705 for (i = 0; i < NF_IP_NUMHOOKS; i++) {
706 /* Only hooks which are valid */
707 if (!(valid_hooks & (1 << i)))
708 continue;
709 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
710 duprintf("Invalid hook entry %u %u\n",
711 i, hook_entries[i]);
712 return -EINVAL;
713 }
714 if (newinfo->underflow[i] == 0xFFFFFFFF) {
715 duprintf("Invalid underflow %u %u\n",
716 i, underflows[i]);
717 return -EINVAL;
718 }
719 }
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 /* Finally, each sanity check must pass */
722 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -0800723 ret = IPT_ENTRY_ITERATE(entry0, newinfo->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 check_entry, name, size, &i);
725
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800726 if (ret != 0)
727 goto cleanup;
728
729 ret = -ELOOP;
730 if (!mark_source_chains(newinfo, valid_hooks, entry0))
731 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 /* And one copy for every other CPU */
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700734 for_each_possible_cpu(i) {
Eric Dumazet31836062005-12-13 23:13:48 -0800735 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
736 memcpy(newinfo->entries[i], entry0, newinfo->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
738
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800739 return 0;
740cleanup:
741 IPT_ENTRY_ITERATE(entry0, newinfo->size, cleanup_entry, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 return ret;
743}
744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745/* Gets counters. */
746static inline int
747add_entry_to_counter(const struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800748 struct xt_counters total[],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 unsigned int *i)
750{
751 ADD_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
752
753 (*i)++;
754 return 0;
755}
756
Eric Dumazet31836062005-12-13 23:13:48 -0800757static inline int
758set_entry_to_counter(const struct ipt_entry *e,
759 struct ipt_counters total[],
760 unsigned int *i)
761{
762 SET_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
763
764 (*i)++;
765 return 0;
766}
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800769get_counters(const struct xt_table_info *t,
770 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
772 unsigned int cpu;
773 unsigned int i;
Eric Dumazet31836062005-12-13 23:13:48 -0800774 unsigned int curcpu;
775
776 /* Instead of clearing (by a previous call to memset())
777 * the counters and using adds, we set the counters
778 * with data used by 'current' CPU
779 * We dont care about preemption here.
780 */
781 curcpu = raw_smp_processor_id();
782
783 i = 0;
784 IPT_ENTRY_ITERATE(t->entries[curcpu],
785 t->size,
786 set_entry_to_counter,
787 counters,
788 &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700790 for_each_possible_cpu(cpu) {
Eric Dumazet31836062005-12-13 23:13:48 -0800791 if (cpu == curcpu)
792 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -0800794 IPT_ENTRY_ITERATE(t->entries[cpu],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 t->size,
796 add_entry_to_counter,
797 counters,
798 &i);
799 }
800}
801
Dmitry Mishin27229712006-04-01 02:25:19 -0800802static inline struct xt_counters * alloc_counters(struct ipt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
Dmitry Mishin27229712006-04-01 02:25:19 -0800804 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800805 struct xt_counters *counters;
806 struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 /* We need atomic snapshot of counters: rest doesn't change
809 (other than comefrom, which userspace doesn't care
810 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800811 countersize = sizeof(struct xt_counters) * private->number;
Eric Dumazet31836062005-12-13 23:13:48 -0800812 counters = vmalloc_node(countersize, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 if (counters == NULL)
Dmitry Mishin27229712006-04-01 02:25:19 -0800815 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 /* First, sum counters... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 write_lock_bh(&table->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800819 get_counters(private, counters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 write_unlock_bh(&table->lock);
821
Dmitry Mishin27229712006-04-01 02:25:19 -0800822 return counters;
823}
824
825static int
826copy_entries_to_user(unsigned int total_size,
827 struct ipt_table *table,
828 void __user *userptr)
829{
830 unsigned int off, num;
831 struct ipt_entry *e;
832 struct xt_counters *counters;
833 struct xt_table_info *private = table->private;
834 int ret = 0;
835 void *loc_cpu_entry;
836
837 counters = alloc_counters(table);
838 if (IS_ERR(counters))
839 return PTR_ERR(counters);
840
Eric Dumazet31836062005-12-13 23:13:48 -0800841 /* choose the copy that is on our node/cpu, ...
842 * This choice is lazy (because current thread is
843 * allowed to migrate to another cpu)
844 */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800845 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -0800846 /* ... then copy entire thing ... */
847 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 ret = -EFAULT;
849 goto free_counters;
850 }
851
852 /* FIXME: use iterator macros --RR */
853 /* ... then go back and fix counters and names */
854 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
855 unsigned int i;
856 struct ipt_entry_match *m;
857 struct ipt_entry_target *t;
858
Eric Dumazet31836062005-12-13 23:13:48 -0800859 e = (struct ipt_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (copy_to_user(userptr + off
861 + offsetof(struct ipt_entry, counters),
862 &counters[num],
863 sizeof(counters[num])) != 0) {
864 ret = -EFAULT;
865 goto free_counters;
866 }
867
868 for (i = sizeof(struct ipt_entry);
869 i < e->target_offset;
870 i += m->u.match_size) {
871 m = (void *)e + i;
872
873 if (copy_to_user(userptr + off + i
874 + offsetof(struct ipt_entry_match,
875 u.user.name),
876 m->u.kernel.match->name,
877 strlen(m->u.kernel.match->name)+1)
878 != 0) {
879 ret = -EFAULT;
880 goto free_counters;
881 }
882 }
883
884 t = ipt_get_target(e);
885 if (copy_to_user(userptr + off + e->target_offset
886 + offsetof(struct ipt_entry_target,
887 u.user.name),
888 t->u.kernel.target->name,
889 strlen(t->u.kernel.target->name)+1) != 0) {
890 ret = -EFAULT;
891 goto free_counters;
892 }
893 }
894
895 free_counters:
896 vfree(counters);
897 return ret;
898}
899
Dmitry Mishin27229712006-04-01 02:25:19 -0800900#ifdef CONFIG_COMPAT
901struct compat_delta {
902 struct compat_delta *next;
903 u_int16_t offset;
904 short delta;
905};
906
907static struct compat_delta *compat_offsets = NULL;
908
909static int compat_add_offset(u_int16_t offset, short delta)
910{
911 struct compat_delta *tmp;
912
913 tmp = kmalloc(sizeof(struct compat_delta), GFP_KERNEL);
914 if (!tmp)
915 return -ENOMEM;
916 tmp->offset = offset;
917 tmp->delta = delta;
918 if (compat_offsets) {
919 tmp->next = compat_offsets->next;
920 compat_offsets->next = tmp;
921 } else {
922 compat_offsets = tmp;
923 tmp->next = NULL;
924 }
925 return 0;
926}
927
928static void compat_flush_offsets(void)
929{
930 struct compat_delta *tmp, *next;
931
932 if (compat_offsets) {
933 for(tmp = compat_offsets; tmp; tmp = next) {
934 next = tmp->next;
935 kfree(tmp);
936 }
937 compat_offsets = NULL;
938 }
939}
940
941static short compat_calc_jump(u_int16_t offset)
942{
943 struct compat_delta *tmp;
944 short delta;
945
946 for(tmp = compat_offsets, delta = 0; tmp; tmp = tmp->next)
947 if (tmp->offset < offset)
948 delta += tmp->delta;
949 return delta;
950}
951
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700952static void compat_standard_from_user(void *dst, void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -0800953{
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700954 int v = *(compat_int_t *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -0800955
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700956 if (v > 0)
957 v += compat_calc_jump(v);
958 memcpy(dst, &v, sizeof(v));
959}
960
961static int compat_standard_to_user(void __user *dst, void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -0800962{
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700963 compat_int_t cv = *(int *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -0800964
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700965 if (cv > 0)
966 cv -= compat_calc_jump(cv);
967 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
Dmitry Mishin27229712006-04-01 02:25:19 -0800968}
969
970static inline int
971compat_calc_match(struct ipt_entry_match *m, int * size)
972{
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700973 *size += xt_compat_match_offset(m->u.kernel.match);
Dmitry Mishin27229712006-04-01 02:25:19 -0800974 return 0;
975}
976
977static int compat_calc_entry(struct ipt_entry *e, struct xt_table_info *info,
978 void *base, struct xt_table_info *newinfo)
979{
980 struct ipt_entry_target *t;
981 u_int16_t entry_offset;
982 int off, i, ret;
983
984 off = 0;
985 entry_offset = (void *)e - base;
986 IPT_MATCH_ITERATE(e, compat_calc_match, &off);
987 t = ipt_get_target(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700988 off += xt_compat_target_offset(t->u.kernel.target);
Dmitry Mishin27229712006-04-01 02:25:19 -0800989 newinfo->size -= off;
990 ret = compat_add_offset(entry_offset, off);
991 if (ret)
992 return ret;
993
994 for (i = 0; i< NF_IP_NUMHOOKS; i++) {
995 if (info->hook_entry[i] && (e < (struct ipt_entry *)
996 (base + info->hook_entry[i])))
997 newinfo->hook_entry[i] -= off;
998 if (info->underflow[i] && (e < (struct ipt_entry *)
999 (base + info->underflow[i])))
1000 newinfo->underflow[i] -= off;
1001 }
1002 return 0;
1003}
1004
1005static int compat_table_info(struct xt_table_info *info,
1006 struct xt_table_info *newinfo)
1007{
1008 void *loc_cpu_entry;
1009 int i;
1010
1011 if (!newinfo || !info)
1012 return -EINVAL;
1013
1014 memset(newinfo, 0, sizeof(struct xt_table_info));
1015 newinfo->size = info->size;
1016 newinfo->number = info->number;
1017 for (i = 0; i < NF_IP_NUMHOOKS; i++) {
1018 newinfo->hook_entry[i] = info->hook_entry[i];
1019 newinfo->underflow[i] = info->underflow[i];
1020 }
1021 loc_cpu_entry = info->entries[raw_smp_processor_id()];
1022 return IPT_ENTRY_ITERATE(loc_cpu_entry, info->size,
1023 compat_calc_entry, info, loc_cpu_entry, newinfo);
1024}
1025#endif
1026
1027static int get_info(void __user *user, int *len, int compat)
1028{
1029 char name[IPT_TABLE_MAXNAMELEN];
1030 struct ipt_table *t;
1031 int ret;
1032
1033 if (*len != sizeof(struct ipt_getinfo)) {
1034 duprintf("length %u != %u\n", *len,
1035 (unsigned int)sizeof(struct ipt_getinfo));
1036 return -EINVAL;
1037 }
1038
1039 if (copy_from_user(name, user, sizeof(name)) != 0)
1040 return -EFAULT;
1041
1042 name[IPT_TABLE_MAXNAMELEN-1] = '\0';
1043#ifdef CONFIG_COMPAT
1044 if (compat)
1045 xt_compat_lock(AF_INET);
1046#endif
1047 t = try_then_request_module(xt_find_table_lock(AF_INET, name),
1048 "iptable_%s", name);
1049 if (t && !IS_ERR(t)) {
1050 struct ipt_getinfo info;
1051 struct xt_table_info *private = t->private;
1052
1053#ifdef CONFIG_COMPAT
1054 if (compat) {
1055 struct xt_table_info tmp;
1056 ret = compat_table_info(private, &tmp);
1057 compat_flush_offsets();
1058 private = &tmp;
1059 }
1060#endif
1061 info.valid_hooks = t->valid_hooks;
1062 memcpy(info.hook_entry, private->hook_entry,
1063 sizeof(info.hook_entry));
1064 memcpy(info.underflow, private->underflow,
1065 sizeof(info.underflow));
1066 info.num_entries = private->number;
1067 info.size = private->size;
1068 strcpy(info.name, name);
1069
1070 if (copy_to_user(user, &info, *len) != 0)
1071 ret = -EFAULT;
1072 else
1073 ret = 0;
1074
1075 xt_table_unlock(t);
1076 module_put(t->me);
1077 } else
1078 ret = t ? PTR_ERR(t) : -ENOENT;
1079#ifdef CONFIG_COMPAT
1080 if (compat)
1081 xt_compat_unlock(AF_INET);
1082#endif
1083 return ret;
1084}
1085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086static int
Dmitry Mishin27229712006-04-01 02:25:19 -08001087get_entries(struct ipt_get_entries __user *uptr, int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
1089 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001090 struct ipt_get_entries get;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 struct ipt_table *t;
1092
Dmitry Mishin27229712006-04-01 02:25:19 -08001093 if (*len < sizeof(get)) {
1094 duprintf("get_entries: %u < %d\n", *len,
1095 (unsigned int)sizeof(get));
1096 return -EINVAL;
1097 }
1098 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1099 return -EFAULT;
1100 if (*len != sizeof(struct ipt_get_entries) + get.size) {
1101 duprintf("get_entries: %u != %u\n", *len,
1102 (unsigned int)(sizeof(struct ipt_get_entries) +
1103 get.size));
1104 return -EINVAL;
1105 }
1106
1107 t = xt_find_table_lock(AF_INET, get.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 if (t && !IS_ERR(t)) {
Harald Welte2e4e6a12006-01-12 13:30:04 -08001109 struct xt_table_info *private = t->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 duprintf("t->private->number = %u\n",
Harald Welte2e4e6a12006-01-12 13:30:04 -08001111 private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001112 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001113 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 t, uptr->entrytable);
1115 else {
1116 duprintf("get_entries: I've got %u not %u!\n",
Harald Welte2e4e6a12006-01-12 13:30:04 -08001117 private->size,
Dmitry Mishin27229712006-04-01 02:25:19 -08001118 get.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 ret = -EINVAL;
1120 }
1121 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001122 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 } else
1124 ret = t ? PTR_ERR(t) : -ENOENT;
1125
1126 return ret;
1127}
1128
1129static int
Dmitry Mishin27229712006-04-01 02:25:19 -08001130__do_replace(const char *name, unsigned int valid_hooks,
1131 struct xt_table_info *newinfo, unsigned int num_counters,
1132 void __user *counters_ptr)
1133{
1134 int ret;
1135 struct ipt_table *t;
1136 struct xt_table_info *oldinfo;
1137 struct xt_counters *counters;
1138 void *loc_cpu_old_entry;
1139
1140 ret = 0;
1141 counters = vmalloc(num_counters * sizeof(struct xt_counters));
1142 if (!counters) {
1143 ret = -ENOMEM;
1144 goto out;
1145 }
1146
1147 t = try_then_request_module(xt_find_table_lock(AF_INET, name),
1148 "iptable_%s", name);
1149 if (!t || IS_ERR(t)) {
1150 ret = t ? PTR_ERR(t) : -ENOENT;
1151 goto free_newinfo_counters_untrans;
1152 }
1153
1154 /* You lied! */
1155 if (valid_hooks != t->valid_hooks) {
1156 duprintf("Valid hook crap: %08X vs %08X\n",
1157 valid_hooks, t->valid_hooks);
1158 ret = -EINVAL;
1159 goto put_module;
1160 }
1161
1162 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1163 if (!oldinfo)
1164 goto put_module;
1165
1166 /* Update module usage count based on number of rules */
1167 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1168 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1169 if ((oldinfo->number > oldinfo->initial_entries) ||
1170 (newinfo->number <= oldinfo->initial_entries))
1171 module_put(t->me);
1172 if ((oldinfo->number > oldinfo->initial_entries) &&
1173 (newinfo->number <= oldinfo->initial_entries))
1174 module_put(t->me);
1175
1176 /* Get the old counters. */
1177 get_counters(oldinfo, counters);
1178 /* Decrease module usage counts and free resource */
1179 loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
1180 IPT_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry,NULL);
1181 xt_free_table_info(oldinfo);
1182 if (copy_to_user(counters_ptr, counters,
1183 sizeof(struct xt_counters) * num_counters) != 0)
1184 ret = -EFAULT;
1185 vfree(counters);
1186 xt_table_unlock(t);
1187 return ret;
1188
1189 put_module:
1190 module_put(t->me);
1191 xt_table_unlock(t);
1192 free_newinfo_counters_untrans:
1193 vfree(counters);
1194 out:
1195 return ret;
1196}
1197
1198static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199do_replace(void __user *user, unsigned int len)
1200{
1201 int ret;
1202 struct ipt_replace tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001203 struct xt_table_info *newinfo;
1204 void *loc_cpu_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
1206 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1207 return -EFAULT;
1208
1209 /* Hack: Causes ipchains to give correct error msg --RR */
1210 if (len != sizeof(tmp) + tmp.size)
1211 return -ENOPROTOOPT;
1212
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001213 /* overflow check */
1214 if (tmp.size >= (INT_MAX - sizeof(struct xt_table_info)) / NR_CPUS -
1215 SMP_CACHE_BYTES)
1216 return -ENOMEM;
1217 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1218 return -ENOMEM;
1219
Harald Welte2e4e6a12006-01-12 13:30:04 -08001220 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 if (!newinfo)
1222 return -ENOMEM;
1223
Eric Dumazet31836062005-12-13 23:13:48 -08001224 /* choose the copy that is our node/cpu */
1225 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1226 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 tmp.size) != 0) {
1228 ret = -EFAULT;
1229 goto free_newinfo;
1230 }
1231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 ret = translate_table(tmp.name, tmp.valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08001233 newinfo, loc_cpu_entry, tmp.size, tmp.num_entries,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 tmp.hook_entry, tmp.underflow);
1235 if (ret != 0)
Dmitry Mishin27229712006-04-01 02:25:19 -08001236 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
1238 duprintf("ip_tables: Translated table\n");
1239
Dmitry Mishin27229712006-04-01 02:25:19 -08001240 ret = __do_replace(tmp.name, tmp.valid_hooks,
1241 newinfo, tmp.num_counters,
1242 tmp.counters);
1243 if (ret)
1244 goto free_newinfo_untrans;
1245 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Dmitry Mishin27229712006-04-01 02:25:19 -08001247 free_newinfo_untrans:
Eric Dumazet31836062005-12-13 23:13:48 -08001248 IPT_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry,NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001250 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 return ret;
1252}
1253
1254/* We're lazy, and add to the first CPU; overflow works its fey magic
1255 * and everything is OK. */
1256static inline int
1257add_counter_to_entry(struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001258 const struct xt_counters addme[],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 unsigned int *i)
1260{
1261#if 0
1262 duprintf("add_counter: Entry %u %lu/%lu + %lu/%lu\n",
1263 *i,
1264 (long unsigned int)e->counters.pcnt,
1265 (long unsigned int)e->counters.bcnt,
1266 (long unsigned int)addme[*i].pcnt,
1267 (long unsigned int)addme[*i].bcnt);
1268#endif
1269
1270 ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt);
1271
1272 (*i)++;
1273 return 0;
1274}
1275
1276static int
Dmitry Mishin27229712006-04-01 02:25:19 -08001277do_add_counters(void __user *user, unsigned int len, int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278{
1279 unsigned int i;
Dmitry Mishin27229712006-04-01 02:25:19 -08001280 struct xt_counters_info tmp;
1281 struct xt_counters *paddc;
1282 unsigned int num_counters;
1283 char *name;
1284 int size;
1285 void *ptmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 struct ipt_table *t;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001287 struct xt_table_info *private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 int ret = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001289 void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -08001290#ifdef CONFIG_COMPAT
1291 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Dmitry Mishin27229712006-04-01 02:25:19 -08001293 if (compat) {
1294 ptmp = &compat_tmp;
1295 size = sizeof(struct compat_xt_counters_info);
1296 } else
1297#endif
1298 {
1299 ptmp = &tmp;
1300 size = sizeof(struct xt_counters_info);
1301 }
1302
1303 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 return -EFAULT;
1305
Dmitry Mishin27229712006-04-01 02:25:19 -08001306#ifdef CONFIG_COMPAT
1307 if (compat) {
1308 num_counters = compat_tmp.num_counters;
1309 name = compat_tmp.name;
1310 } else
1311#endif
1312 {
1313 num_counters = tmp.num_counters;
1314 name = tmp.name;
1315 }
1316
1317 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 return -EINVAL;
1319
Dmitry Mishin27229712006-04-01 02:25:19 -08001320 paddc = vmalloc_node(len - size, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 if (!paddc)
1322 return -ENOMEM;
1323
Dmitry Mishin27229712006-04-01 02:25:19 -08001324 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 ret = -EFAULT;
1326 goto free;
1327 }
1328
Dmitry Mishin27229712006-04-01 02:25:19 -08001329 t = xt_find_table_lock(AF_INET, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 if (!t || IS_ERR(t)) {
1331 ret = t ? PTR_ERR(t) : -ENOENT;
1332 goto free;
1333 }
1334
1335 write_lock_bh(&t->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001336 private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001337 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 ret = -EINVAL;
1339 goto unlock_up_free;
1340 }
1341
1342 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001343 /* Choose the copy that is on our node */
Harald Welte2e4e6a12006-01-12 13:30:04 -08001344 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -08001345 IPT_ENTRY_ITERATE(loc_cpu_entry,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001346 private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 add_counter_to_entry,
Dmitry Mishin27229712006-04-01 02:25:19 -08001348 paddc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 &i);
1350 unlock_up_free:
1351 write_unlock_bh(&t->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001352 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 module_put(t->me);
1354 free:
1355 vfree(paddc);
1356
1357 return ret;
1358}
1359
Dmitry Mishin27229712006-04-01 02:25:19 -08001360#ifdef CONFIG_COMPAT
1361struct compat_ipt_replace {
1362 char name[IPT_TABLE_MAXNAMELEN];
1363 u32 valid_hooks;
1364 u32 num_entries;
1365 u32 size;
1366 u32 hook_entry[NF_IP_NUMHOOKS];
1367 u32 underflow[NF_IP_NUMHOOKS];
1368 u32 num_counters;
1369 compat_uptr_t counters; /* struct ipt_counters * */
1370 struct compat_ipt_entry entries[0];
1371};
1372
1373static inline int compat_copy_match_to_user(struct ipt_entry_match *m,
Al Viro3e597c62006-09-24 23:42:20 +01001374 void __user **dstptr, compat_uint_t *size)
Dmitry Mishin27229712006-04-01 02:25:19 -08001375{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001376 return xt_compat_match_to_user(m, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001377}
1378
1379static int compat_copy_entry_to_user(struct ipt_entry *e,
Al Viro3e597c62006-09-24 23:42:20 +01001380 void __user **dstptr, compat_uint_t *size)
Dmitry Mishin27229712006-04-01 02:25:19 -08001381{
Al Viro3e597c62006-09-24 23:42:20 +01001382 struct ipt_entry_target *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001383 struct compat_ipt_entry __user *ce;
1384 u_int16_t target_offset, next_offset;
1385 compat_uint_t origsize;
1386 int ret;
1387
1388 ret = -EFAULT;
1389 origsize = *size;
1390 ce = (struct compat_ipt_entry __user *)*dstptr;
Patrick McHardy78000072006-05-03 23:20:27 -07001391 if (copy_to_user(ce, e, sizeof(struct ipt_entry)))
Dmitry Mishin27229712006-04-01 02:25:19 -08001392 goto out;
1393
1394 *dstptr += sizeof(struct compat_ipt_entry);
1395 ret = IPT_MATCH_ITERATE(e, compat_copy_match_to_user, dstptr, size);
1396 target_offset = e->target_offset - (origsize - *size);
1397 if (ret)
1398 goto out;
1399 t = ipt_get_target(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001400 ret = xt_compat_target_to_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001401 if (ret)
1402 goto out;
1403 ret = -EFAULT;
1404 next_offset = e->next_offset - (origsize - *size);
Patrick McHardy78000072006-05-03 23:20:27 -07001405 if (put_user(target_offset, &ce->target_offset))
Dmitry Mishin27229712006-04-01 02:25:19 -08001406 goto out;
Patrick McHardy78000072006-05-03 23:20:27 -07001407 if (put_user(next_offset, &ce->next_offset))
Dmitry Mishin27229712006-04-01 02:25:19 -08001408 goto out;
1409 return 0;
1410out:
1411 return ret;
1412}
1413
1414static inline int
1415compat_check_calc_match(struct ipt_entry_match *m,
1416 const char *name,
1417 const struct ipt_ip *ip,
1418 unsigned int hookmask,
1419 int *size, int *i)
1420{
1421 struct ipt_match *match;
1422
1423 match = try_then_request_module(xt_find_match(AF_INET, m->u.user.name,
1424 m->u.user.revision),
1425 "ipt_%s", m->u.user.name);
1426 if (IS_ERR(match) || !match) {
1427 duprintf("compat_check_calc_match: `%s' not found\n",
1428 m->u.user.name);
1429 return match ? PTR_ERR(match) : -ENOENT;
1430 }
1431 m->u.kernel.match = match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001432 *size += xt_compat_match_offset(match);
Dmitry Mishin27229712006-04-01 02:25:19 -08001433
1434 (*i)++;
1435 return 0;
1436}
1437
1438static inline int
1439check_compat_entry_size_and_hooks(struct ipt_entry *e,
1440 struct xt_table_info *newinfo,
1441 unsigned int *size,
1442 unsigned char *base,
1443 unsigned char *limit,
1444 unsigned int *hook_entries,
1445 unsigned int *underflows,
1446 unsigned int *i,
1447 const char *name)
1448{
1449 struct ipt_entry_target *t;
1450 struct ipt_target *target;
1451 u_int16_t entry_offset;
1452 int ret, off, h, j;
1453
1454 duprintf("check_compat_entry_size_and_hooks %p\n", e);
1455 if ((unsigned long)e % __alignof__(struct compat_ipt_entry) != 0
1456 || (unsigned char *)e + sizeof(struct compat_ipt_entry) >= limit) {
1457 duprintf("Bad offset %p, limit = %p\n", e, limit);
1458 return -EINVAL;
1459 }
1460
1461 if (e->next_offset < sizeof(struct compat_ipt_entry) +
1462 sizeof(struct compat_xt_entry_target)) {
1463 duprintf("checking: element %p size %u\n",
1464 e, e->next_offset);
1465 return -EINVAL;
1466 }
1467
1468 if (!ip_checkentry(&e->ip)) {
1469 duprintf("ip_tables: ip check failed %p %s.\n", e, name);
1470 return -EINVAL;
1471 }
1472
Dmitry Mishin590bdf72006-10-30 15:12:55 -08001473 if (e->target_offset + sizeof(struct compat_xt_entry_target) >
1474 e->next_offset)
1475 return -EINVAL;
1476
Dmitry Mishin27229712006-04-01 02:25:19 -08001477 off = 0;
1478 entry_offset = (void *)e - (void *)base;
1479 j = 0;
1480 ret = IPT_MATCH_ITERATE(e, compat_check_calc_match, name, &e->ip,
1481 e->comefrom, &off, &j);
1482 if (ret != 0)
Patrick McHardybec71b12006-09-20 12:04:08 -07001483 goto cleanup_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001484
1485 t = ipt_get_target(e);
Dmitry Mishin590bdf72006-10-30 15:12:55 -08001486 ret = -EINVAL;
1487 if (e->target_offset + t->u.target_size > e->next_offset)
1488 goto cleanup_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001489 target = try_then_request_module(xt_find_target(AF_INET,
1490 t->u.user.name,
1491 t->u.user.revision),
1492 "ipt_%s", t->u.user.name);
1493 if (IS_ERR(target) || !target) {
1494 duprintf("check_entry: `%s' not found\n", t->u.user.name);
1495 ret = target ? PTR_ERR(target) : -ENOENT;
Patrick McHardybec71b12006-09-20 12:04:08 -07001496 goto cleanup_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001497 }
1498 t->u.kernel.target = target;
1499
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001500 off += xt_compat_target_offset(target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001501 *size += off;
1502 ret = compat_add_offset(entry_offset, off);
1503 if (ret)
1504 goto out;
1505
1506 /* Check hooks & underflows */
1507 for (h = 0; h < NF_IP_NUMHOOKS; h++) {
1508 if ((unsigned char *)e - base == hook_entries[h])
1509 newinfo->hook_entry[h] = hook_entries[h];
1510 if ((unsigned char *)e - base == underflows[h])
1511 newinfo->underflow[h] = underflows[h];
1512 }
1513
1514 /* Clear counters and comefrom */
1515 e->counters = ((struct ipt_counters) { 0, 0 });
1516 e->comefrom = 0;
1517
1518 (*i)++;
1519 return 0;
Patrick McHardybec71b12006-09-20 12:04:08 -07001520
Dmitry Mishin27229712006-04-01 02:25:19 -08001521out:
Patrick McHardybec71b12006-09-20 12:04:08 -07001522 module_put(t->u.kernel.target->me);
1523cleanup_matches:
Dmitry Mishin27229712006-04-01 02:25:19 -08001524 IPT_MATCH_ITERATE(e, cleanup_match, &j);
1525 return ret;
1526}
1527
1528static inline int compat_copy_match_from_user(struct ipt_entry_match *m,
1529 void **dstptr, compat_uint_t *size, const char *name,
Patrick McHardybec71b12006-09-20 12:04:08 -07001530 const struct ipt_ip *ip, unsigned int hookmask, int *i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001531{
1532 struct ipt_entry_match *dm;
1533 struct ipt_match *match;
1534 int ret;
1535
1536 dm = (struct ipt_entry_match *)*dstptr;
1537 match = m->u.kernel.match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001538 xt_compat_match_from_user(m, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001539
1540 ret = xt_check_match(match, AF_INET, dm->u.match_size - sizeof(*dm),
1541 name, hookmask, ip->proto,
1542 ip->invflags & IPT_INV_PROTO);
1543 if (ret)
Patrick McHardybec71b12006-09-20 12:04:08 -07001544 goto err;
Dmitry Mishin27229712006-04-01 02:25:19 -08001545
1546 if (m->u.kernel.match->checkentry
1547 && !m->u.kernel.match->checkentry(name, ip, match, dm->data,
Dmitry Mishin27229712006-04-01 02:25:19 -08001548 hookmask)) {
1549 duprintf("ip_tables: check failed for `%s'.\n",
1550 m->u.kernel.match->name);
Patrick McHardybec71b12006-09-20 12:04:08 -07001551 ret = -EINVAL;
1552 goto err;
Dmitry Mishin27229712006-04-01 02:25:19 -08001553 }
Patrick McHardybec71b12006-09-20 12:04:08 -07001554 (*i)++;
Dmitry Mishin27229712006-04-01 02:25:19 -08001555 return 0;
Patrick McHardybec71b12006-09-20 12:04:08 -07001556
1557err:
1558 module_put(m->u.kernel.match->me);
1559 return ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001560}
1561
1562static int compat_copy_entry_from_user(struct ipt_entry *e, void **dstptr,
1563 unsigned int *size, const char *name,
1564 struct xt_table_info *newinfo, unsigned char *base)
1565{
1566 struct ipt_entry_target *t;
1567 struct ipt_target *target;
1568 struct ipt_entry *de;
1569 unsigned int origsize;
Patrick McHardybec71b12006-09-20 12:04:08 -07001570 int ret, h, j;
Dmitry Mishin27229712006-04-01 02:25:19 -08001571
1572 ret = 0;
1573 origsize = *size;
1574 de = (struct ipt_entry *)*dstptr;
1575 memcpy(de, e, sizeof(struct ipt_entry));
1576
Patrick McHardybec71b12006-09-20 12:04:08 -07001577 j = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001578 *dstptr += sizeof(struct compat_ipt_entry);
1579 ret = IPT_MATCH_ITERATE(e, compat_copy_match_from_user, dstptr, size,
Patrick McHardybec71b12006-09-20 12:04:08 -07001580 name, &de->ip, de->comefrom, &j);
Dmitry Mishin27229712006-04-01 02:25:19 -08001581 if (ret)
Patrick McHardybec71b12006-09-20 12:04:08 -07001582 goto cleanup_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001583 de->target_offset = e->target_offset - (origsize - *size);
1584 t = ipt_get_target(e);
1585 target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001586 xt_compat_target_from_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001587
1588 de->next_offset = e->next_offset - (origsize - *size);
1589 for (h = 0; h < NF_IP_NUMHOOKS; h++) {
1590 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1591 newinfo->hook_entry[h] -= origsize - *size;
1592 if ((unsigned char *)de - base < newinfo->underflow[h])
1593 newinfo->underflow[h] -= origsize - *size;
1594 }
1595
1596 t = ipt_get_target(de);
1597 target = t->u.kernel.target;
1598 ret = xt_check_target(target, AF_INET, t->u.target_size - sizeof(*t),
1599 name, e->comefrom, e->ip.proto,
1600 e->ip.invflags & IPT_INV_PROTO);
1601 if (ret)
Patrick McHardybec71b12006-09-20 12:04:08 -07001602 goto err;
Dmitry Mishin27229712006-04-01 02:25:19 -08001603
1604 ret = -EINVAL;
1605 if (t->u.kernel.target == &ipt_standard_target) {
1606 if (!standard_check(t, *size))
Patrick McHardybec71b12006-09-20 12:04:08 -07001607 goto err;
Dmitry Mishin27229712006-04-01 02:25:19 -08001608 } else if (t->u.kernel.target->checkentry
1609 && !t->u.kernel.target->checkentry(name, de, target,
Patrick McHardyefa74162006-08-22 00:36:37 -07001610 t->data, de->comefrom)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001611 duprintf("ip_tables: compat: check failed for `%s'.\n",
1612 t->u.kernel.target->name);
Patrick McHardybec71b12006-09-20 12:04:08 -07001613 goto err;
Dmitry Mishin27229712006-04-01 02:25:19 -08001614 }
1615 ret = 0;
Patrick McHardybec71b12006-09-20 12:04:08 -07001616 return ret;
1617
1618err:
1619 module_put(t->u.kernel.target->me);
1620cleanup_matches:
1621 IPT_MATCH_ITERATE(e, cleanup_match, &j);
Dmitry Mishin27229712006-04-01 02:25:19 -08001622 return ret;
1623}
1624
1625static int
1626translate_compat_table(const char *name,
1627 unsigned int valid_hooks,
1628 struct xt_table_info **pinfo,
1629 void **pentry0,
1630 unsigned int total_size,
1631 unsigned int number,
1632 unsigned int *hook_entries,
1633 unsigned int *underflows)
1634{
1635 unsigned int i;
1636 struct xt_table_info *newinfo, *info;
1637 void *pos, *entry0, *entry1;
1638 unsigned int size;
1639 int ret;
1640
1641 info = *pinfo;
1642 entry0 = *pentry0;
1643 size = total_size;
1644 info->number = number;
1645
1646 /* Init all hooks to impossible value. */
1647 for (i = 0; i < NF_IP_NUMHOOKS; i++) {
1648 info->hook_entry[i] = 0xFFFFFFFF;
1649 info->underflow[i] = 0xFFFFFFFF;
1650 }
1651
1652 duprintf("translate_compat_table: size %u\n", info->size);
1653 i = 0;
1654 xt_compat_lock(AF_INET);
1655 /* Walk through entries, checking offsets. */
1656 ret = IPT_ENTRY_ITERATE(entry0, total_size,
1657 check_compat_entry_size_and_hooks,
1658 info, &size, entry0,
1659 entry0 + total_size,
1660 hook_entries, underflows, &i, name);
1661 if (ret != 0)
1662 goto out_unlock;
1663
1664 ret = -EINVAL;
1665 if (i != number) {
1666 duprintf("translate_compat_table: %u not %u entries\n",
1667 i, number);
1668 goto out_unlock;
1669 }
1670
1671 /* Check hooks all assigned */
1672 for (i = 0; i < NF_IP_NUMHOOKS; i++) {
1673 /* Only hooks which are valid */
1674 if (!(valid_hooks & (1 << i)))
1675 continue;
1676 if (info->hook_entry[i] == 0xFFFFFFFF) {
1677 duprintf("Invalid hook entry %u %u\n",
1678 i, hook_entries[i]);
1679 goto out_unlock;
1680 }
1681 if (info->underflow[i] == 0xFFFFFFFF) {
1682 duprintf("Invalid underflow %u %u\n",
1683 i, underflows[i]);
1684 goto out_unlock;
1685 }
1686 }
1687
1688 ret = -ENOMEM;
1689 newinfo = xt_alloc_table_info(size);
1690 if (!newinfo)
1691 goto out_unlock;
1692
1693 newinfo->number = number;
1694 for (i = 0; i < NF_IP_NUMHOOKS; i++) {
1695 newinfo->hook_entry[i] = info->hook_entry[i];
1696 newinfo->underflow[i] = info->underflow[i];
1697 }
1698 entry1 = newinfo->entries[raw_smp_processor_id()];
1699 pos = entry1;
1700 size = total_size;
1701 ret = IPT_ENTRY_ITERATE(entry0, total_size,
1702 compat_copy_entry_from_user, &pos, &size,
1703 name, newinfo, entry1);
1704 compat_flush_offsets();
1705 xt_compat_unlock(AF_INET);
1706 if (ret)
1707 goto free_newinfo;
1708
1709 ret = -ELOOP;
1710 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1711 goto free_newinfo;
1712
1713 /* And one copy for every other CPU */
Andrew Mortonfb1bb342006-06-25 05:46:43 -07001714 for_each_possible_cpu(i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001715 if (newinfo->entries[i] && newinfo->entries[i] != entry1)
1716 memcpy(newinfo->entries[i], entry1, newinfo->size);
1717
1718 *pinfo = newinfo;
1719 *pentry0 = entry1;
1720 xt_free_table_info(info);
1721 return 0;
1722
1723free_newinfo:
1724 xt_free_table_info(newinfo);
1725out:
1726 return ret;
1727out_unlock:
1728 xt_compat_unlock(AF_INET);
1729 goto out;
1730}
1731
1732static int
1733compat_do_replace(void __user *user, unsigned int len)
1734{
1735 int ret;
1736 struct compat_ipt_replace tmp;
1737 struct xt_table_info *newinfo;
1738 void *loc_cpu_entry;
1739
1740 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1741 return -EFAULT;
1742
1743 /* Hack: Causes ipchains to give correct error msg --RR */
1744 if (len != sizeof(tmp) + tmp.size)
1745 return -ENOPROTOOPT;
1746
1747 /* overflow check */
1748 if (tmp.size >= (INT_MAX - sizeof(struct xt_table_info)) / NR_CPUS -
1749 SMP_CACHE_BYTES)
1750 return -ENOMEM;
1751 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1752 return -ENOMEM;
1753
1754 newinfo = xt_alloc_table_info(tmp.size);
1755 if (!newinfo)
1756 return -ENOMEM;
1757
1758 /* choose the copy that is our node/cpu */
1759 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1760 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1761 tmp.size) != 0) {
1762 ret = -EFAULT;
1763 goto free_newinfo;
1764 }
1765
1766 ret = translate_compat_table(tmp.name, tmp.valid_hooks,
1767 &newinfo, &loc_cpu_entry, tmp.size,
1768 tmp.num_entries, tmp.hook_entry, tmp.underflow);
1769 if (ret != 0)
1770 goto free_newinfo;
1771
1772 duprintf("compat_do_replace: Translated table\n");
1773
1774 ret = __do_replace(tmp.name, tmp.valid_hooks,
1775 newinfo, tmp.num_counters,
1776 compat_ptr(tmp.counters));
1777 if (ret)
1778 goto free_newinfo_untrans;
1779 return 0;
1780
1781 free_newinfo_untrans:
1782 IPT_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry,NULL);
1783 free_newinfo:
1784 xt_free_table_info(newinfo);
1785 return ret;
1786}
1787
1788static int
1789compat_do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user,
1790 unsigned int len)
1791{
1792 int ret;
1793
1794 if (!capable(CAP_NET_ADMIN))
1795 return -EPERM;
1796
1797 switch (cmd) {
1798 case IPT_SO_SET_REPLACE:
1799 ret = compat_do_replace(user, len);
1800 break;
1801
1802 case IPT_SO_SET_ADD_COUNTERS:
1803 ret = do_add_counters(user, len, 1);
1804 break;
1805
1806 default:
1807 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1808 ret = -EINVAL;
1809 }
1810
1811 return ret;
1812}
1813
1814struct compat_ipt_get_entries
1815{
1816 char name[IPT_TABLE_MAXNAMELEN];
1817 compat_uint_t size;
1818 struct compat_ipt_entry entrytable[0];
1819};
1820
1821static int compat_copy_entries_to_user(unsigned int total_size,
1822 struct ipt_table *table, void __user *userptr)
1823{
1824 unsigned int off, num;
1825 struct compat_ipt_entry e;
1826 struct xt_counters *counters;
1827 struct xt_table_info *private = table->private;
1828 void __user *pos;
1829 unsigned int size;
1830 int ret = 0;
1831 void *loc_cpu_entry;
1832
1833 counters = alloc_counters(table);
1834 if (IS_ERR(counters))
1835 return PTR_ERR(counters);
1836
1837 /* choose the copy that is on our node/cpu, ...
1838 * This choice is lazy (because current thread is
1839 * allowed to migrate to another cpu)
1840 */
1841 loc_cpu_entry = private->entries[raw_smp_processor_id()];
1842 pos = userptr;
1843 size = total_size;
1844 ret = IPT_ENTRY_ITERATE(loc_cpu_entry, total_size,
1845 compat_copy_entry_to_user, &pos, &size);
1846 if (ret)
1847 goto free_counters;
1848
1849 /* ... then go back and fix counters and names */
1850 for (off = 0, num = 0; off < size; off += e.next_offset, num++) {
1851 unsigned int i;
1852 struct ipt_entry_match m;
1853 struct ipt_entry_target t;
1854
1855 ret = -EFAULT;
1856 if (copy_from_user(&e, userptr + off,
1857 sizeof(struct compat_ipt_entry)))
1858 goto free_counters;
1859 if (copy_to_user(userptr + off +
1860 offsetof(struct compat_ipt_entry, counters),
1861 &counters[num], sizeof(counters[num])))
1862 goto free_counters;
1863
1864 for (i = sizeof(struct compat_ipt_entry);
1865 i < e.target_offset; i += m.u.match_size) {
1866 if (copy_from_user(&m, userptr + off + i,
1867 sizeof(struct ipt_entry_match)))
1868 goto free_counters;
1869 if (copy_to_user(userptr + off + i +
1870 offsetof(struct ipt_entry_match, u.user.name),
1871 m.u.kernel.match->name,
1872 strlen(m.u.kernel.match->name) + 1))
1873 goto free_counters;
1874 }
1875
1876 if (copy_from_user(&t, userptr + off + e.target_offset,
1877 sizeof(struct ipt_entry_target)))
1878 goto free_counters;
1879 if (copy_to_user(userptr + off + e.target_offset +
1880 offsetof(struct ipt_entry_target, u.user.name),
1881 t.u.kernel.target->name,
1882 strlen(t.u.kernel.target->name) + 1))
1883 goto free_counters;
1884 }
1885 ret = 0;
1886free_counters:
1887 vfree(counters);
1888 return ret;
1889}
1890
1891static int
1892compat_get_entries(struct compat_ipt_get_entries __user *uptr, int *len)
1893{
1894 int ret;
1895 struct compat_ipt_get_entries get;
1896 struct ipt_table *t;
1897
1898
1899 if (*len < sizeof(get)) {
1900 duprintf("compat_get_entries: %u < %u\n",
1901 *len, (unsigned int)sizeof(get));
1902 return -EINVAL;
1903 }
1904
1905 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1906 return -EFAULT;
1907
1908 if (*len != sizeof(struct compat_ipt_get_entries) + get.size) {
1909 duprintf("compat_get_entries: %u != %u\n", *len,
1910 (unsigned int)(sizeof(struct compat_ipt_get_entries) +
1911 get.size));
1912 return -EINVAL;
1913 }
1914
1915 xt_compat_lock(AF_INET);
1916 t = xt_find_table_lock(AF_INET, get.name);
1917 if (t && !IS_ERR(t)) {
1918 struct xt_table_info *private = t->private;
1919 struct xt_table_info info;
1920 duprintf("t->private->number = %u\n",
1921 private->number);
1922 ret = compat_table_info(private, &info);
1923 if (!ret && get.size == info.size) {
1924 ret = compat_copy_entries_to_user(private->size,
1925 t, uptr->entrytable);
1926 } else if (!ret) {
1927 duprintf("compat_get_entries: I've got %u not %u!\n",
1928 private->size,
1929 get.size);
1930 ret = -EINVAL;
1931 }
1932 compat_flush_offsets();
1933 module_put(t->me);
1934 xt_table_unlock(t);
1935 } else
1936 ret = t ? PTR_ERR(t) : -ENOENT;
1937
1938 xt_compat_unlock(AF_INET);
1939 return ret;
1940}
1941
Patrick McHardy79030ed2006-09-20 12:05:08 -07001942static int do_ipt_get_ctl(struct sock *, int, void __user *, int *);
1943
Dmitry Mishin27229712006-04-01 02:25:19 -08001944static int
1945compat_do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1946{
1947 int ret;
1948
Björn Steinbrink82fac052006-10-20 00:21:10 -07001949 if (!capable(CAP_NET_ADMIN))
1950 return -EPERM;
1951
Dmitry Mishin27229712006-04-01 02:25:19 -08001952 switch (cmd) {
1953 case IPT_SO_GET_INFO:
1954 ret = get_info(user, len, 1);
1955 break;
1956 case IPT_SO_GET_ENTRIES:
1957 ret = compat_get_entries(user, len);
1958 break;
1959 default:
Patrick McHardy79030ed2006-09-20 12:05:08 -07001960 ret = do_ipt_get_ctl(sk, cmd, user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001961 }
1962 return ret;
1963}
1964#endif
1965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966static int
1967do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
1968{
1969 int ret;
1970
1971 if (!capable(CAP_NET_ADMIN))
1972 return -EPERM;
1973
1974 switch (cmd) {
1975 case IPT_SO_SET_REPLACE:
1976 ret = do_replace(user, len);
1977 break;
1978
1979 case IPT_SO_SET_ADD_COUNTERS:
Dmitry Mishin27229712006-04-01 02:25:19 -08001980 ret = do_add_counters(user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 break;
1982
1983 default:
1984 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1985 ret = -EINVAL;
1986 }
1987
1988 return ret;
1989}
1990
1991static int
1992do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1993{
1994 int ret;
1995
1996 if (!capable(CAP_NET_ADMIN))
1997 return -EPERM;
1998
1999 switch (cmd) {
Dmitry Mishin27229712006-04-01 02:25:19 -08002000 case IPT_SO_GET_INFO:
2001 ret = get_info(user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 break;
Dmitry Mishin27229712006-04-01 02:25:19 -08002003
2004 case IPT_SO_GET_ENTRIES:
2005 ret = get_entries(user, len);
2006 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
2008 case IPT_SO_GET_REVISION_MATCH:
2009 case IPT_SO_GET_REVISION_TARGET: {
2010 struct ipt_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002011 int target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
2013 if (*len != sizeof(rev)) {
2014 ret = -EINVAL;
2015 break;
2016 }
2017 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2018 ret = -EFAULT;
2019 break;
2020 }
2021
2022 if (cmd == IPT_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08002023 target = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08002025 target = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
Harald Welte2e4e6a12006-01-12 13:30:04 -08002027 try_then_request_module(xt_find_revision(AF_INET, rev.name,
2028 rev.revision,
2029 target, &ret),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 "ipt_%s", rev.name);
2031 break;
2032 }
2033
2034 default:
2035 duprintf("do_ipt_get_ctl: unknown request %i\n", cmd);
2036 ret = -EINVAL;
2037 }
2038
2039 return ret;
2040}
2041
Harald Welte2e4e6a12006-01-12 13:30:04 -08002042int ipt_register_table(struct xt_table *table, const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043{
2044 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002045 struct xt_table_info *newinfo;
2046 static struct xt_table_info bootstrap
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 = { 0, 0, 0, { 0 }, { 0 }, { } };
Eric Dumazet31836062005-12-13 23:13:48 -08002048 void *loc_cpu_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Harald Welte2e4e6a12006-01-12 13:30:04 -08002050 newinfo = xt_alloc_table_info(repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 if (!newinfo)
2052 return -ENOMEM;
2053
Eric Dumazet31836062005-12-13 23:13:48 -08002054 /* choose the copy on our node/cpu
2055 * but dont care of preemption
2056 */
2057 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
2058 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
2060 ret = translate_table(table->name, table->valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08002061 newinfo, loc_cpu_entry, repl->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 repl->num_entries,
2063 repl->hook_entry,
2064 repl->underflow);
2065 if (ret != 0) {
Harald Welte2e4e6a12006-01-12 13:30:04 -08002066 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 return ret;
2068 }
2069
Patrick McHardyda298d32006-06-27 03:00:09 -07002070 ret = xt_register_table(table, &bootstrap, newinfo);
2071 if (ret != 0) {
Harald Welte2e4e6a12006-01-12 13:30:04 -08002072 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return ret;
2074 }
2075
Harald Welte2e4e6a12006-01-12 13:30:04 -08002076 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077}
2078
2079void ipt_unregister_table(struct ipt_table *table)
2080{
Harald Welte2e4e6a12006-01-12 13:30:04 -08002081 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08002082 void *loc_cpu_entry;
2083
Harald Welte2e4e6a12006-01-12 13:30:04 -08002084 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
2086 /* Decrease module usage counts and free resources */
Harald Welte2e4e6a12006-01-12 13:30:04 -08002087 loc_cpu_entry = private->entries[raw_smp_processor_id()];
2088 IPT_ENTRY_ITERATE(loc_cpu_entry, private->size, cleanup_entry, NULL);
2089 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090}
2091
2092/* Returns 1 if the type and code is matched by the range, 0 otherwise */
2093static inline int
2094icmp_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2095 u_int8_t type, u_int8_t code,
2096 int invert)
2097{
2098 return ((test_type == 0xFF) || (type == test_type && code >= min_code && code <= max_code))
2099 ^ invert;
2100}
2101
2102static int
2103icmp_match(const struct sk_buff *skb,
2104 const struct net_device *in,
2105 const struct net_device *out,
Patrick McHardyc4986732006-03-20 18:02:56 -08002106 const struct xt_match *match,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 const void *matchinfo,
2108 int offset,
Harald Welte2e4e6a12006-01-12 13:30:04 -08002109 unsigned int protoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 int *hotdrop)
2111{
2112 struct icmphdr _icmph, *ic;
2113 const struct ipt_icmp *icmpinfo = matchinfo;
2114
2115 /* Must not be a fragment. */
2116 if (offset)
2117 return 0;
2118
Harald Welte2e4e6a12006-01-12 13:30:04 -08002119 ic = skb_header_pointer(skb, protoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 if (ic == NULL) {
2121 /* We've been asked to examine this packet, and we
2122 * can't. Hence, no choice but to drop.
2123 */
2124 duprintf("Dropping evil ICMP tinygram.\n");
2125 *hotdrop = 1;
2126 return 0;
2127 }
2128
2129 return icmp_type_code_match(icmpinfo->type,
2130 icmpinfo->code[0],
2131 icmpinfo->code[1],
2132 ic->type, ic->code,
2133 !!(icmpinfo->invflags&IPT_ICMP_INV));
2134}
2135
2136/* Called when user tries to insert an entry of this type. */
2137static int
2138icmp_checkentry(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -08002139 const void *info,
Patrick McHardyc4986732006-03-20 18:02:56 -08002140 const struct xt_match *match,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 void *matchinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 unsigned int hook_mask)
2143{
2144 const struct ipt_icmp *icmpinfo = matchinfo;
2145
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002146 /* Must specify no unknown invflags */
2147 return !(icmpinfo->invflags & ~IPT_ICMP_INV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148}
2149
2150/* The built-in targets: standard (NULL) and error. */
2151static struct ipt_target ipt_standard_target = {
2152 .name = IPT_STANDARD_TARGET,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002153 .targetsize = sizeof(int),
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002154 .family = AF_INET,
Dmitry Mishin27229712006-04-01 02:25:19 -08002155#ifdef CONFIG_COMPAT
Patrick McHardy9fa492c2006-09-20 12:05:37 -07002156 .compatsize = sizeof(compat_int_t),
2157 .compat_from_user = compat_standard_from_user,
2158 .compat_to_user = compat_standard_to_user,
Dmitry Mishin27229712006-04-01 02:25:19 -08002159#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160};
2161
2162static struct ipt_target ipt_error_target = {
2163 .name = IPT_ERROR_TARGET,
2164 .target = ipt_error,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002165 .targetsize = IPT_FUNCTION_MAXNAMELEN,
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002166 .family = AF_INET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167};
2168
2169static struct nf_sockopt_ops ipt_sockopts = {
2170 .pf = PF_INET,
2171 .set_optmin = IPT_BASE_CTL,
2172 .set_optmax = IPT_SO_SET_MAX+1,
2173 .set = do_ipt_set_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002174#ifdef CONFIG_COMPAT
2175 .compat_set = compat_do_ipt_set_ctl,
2176#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 .get_optmin = IPT_BASE_CTL,
2178 .get_optmax = IPT_SO_GET_MAX+1,
2179 .get = do_ipt_get_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002180#ifdef CONFIG_COMPAT
2181 .compat_get = compat_do_ipt_get_ctl,
2182#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183};
2184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185static struct ipt_match icmp_matchstruct = {
2186 .name = "icmp",
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002187 .match = icmp_match,
2188 .matchsize = sizeof(struct ipt_icmp),
2189 .proto = IPPROTO_ICMP,
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002190 .family = AF_INET,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002191 .checkentry = icmp_checkentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192};
2193
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002194static int __init ip_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195{
2196 int ret;
2197
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002198 ret = xt_proto_init(AF_INET);
2199 if (ret < 0)
2200 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002201
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 /* Noone else will be downing sem now, so we won't sleep */
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002203 ret = xt_register_target(&ipt_standard_target);
2204 if (ret < 0)
2205 goto err2;
2206 ret = xt_register_target(&ipt_error_target);
2207 if (ret < 0)
2208 goto err3;
2209 ret = xt_register_match(&icmp_matchstruct);
2210 if (ret < 0)
2211 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
2213 /* Register setsockopt */
2214 ret = nf_register_sockopt(&ipt_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002215 if (ret < 0)
2216 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Harald Welte2e4e6a12006-01-12 13:30:04 -08002218 printk("ip_tables: (C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002220
2221err5:
2222 xt_unregister_match(&icmp_matchstruct);
2223err4:
2224 xt_unregister_target(&ipt_error_target);
2225err3:
2226 xt_unregister_target(&ipt_standard_target);
2227err2:
2228 xt_proto_fini(AF_INET);
2229err1:
2230 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231}
2232
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002233static void __exit ip_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234{
2235 nf_unregister_sockopt(&ipt_sockopts);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002236
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002237 xt_unregister_match(&icmp_matchstruct);
2238 xt_unregister_target(&ipt_error_target);
2239 xt_unregister_target(&ipt_standard_target);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002240
2241 xt_proto_fini(AF_INET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242}
2243
2244EXPORT_SYMBOL(ipt_register_table);
2245EXPORT_SYMBOL(ipt_unregister_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246EXPORT_SYMBOL(ipt_do_table);
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002247module_init(ip_tables_init);
2248module_exit(ip_tables_fini);