blob: caf9e375a0f112bb27d5923c522865be9b252069 [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 Welte6b7d31f2005-10-26 09:34:24 +02005 * 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
14 * 06 Jun 2002 Andras Kis-Szabo <kisza@sch.bme.hu>
15 * - new extension header parser code
Harald Welte2e4e6a12006-01-12 13:30:04 -080016 * 15 Oct 2005 Harald Welte <laforge@netfilter.org>
17 * - Unification of {ip,ip6}_tables into x_tables
18 * - Removed tcp and udp code, since it's not ipv6 specific
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 */
Randy Dunlap4fc268d2006-01-11 12:17:47 -080020
21#include <linux/capability.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020022#include <linux/in.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/skbuff.h>
24#include <linux/kmod.h>
25#include <linux/vmalloc.h>
26#include <linux/netdevice.h>
27#include <linux/module.h>
Randy Dunlap4bdbf6c2006-07-03 19:47:27 -070028#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/icmpv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <net/ipv6.h>
31#include <asm/uaccess.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -080032#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/proc_fs.h>
David S. Millerc8923c62005-10-13 14:41:23 -070034#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#include <linux/netfilter_ipv6/ip6_tables.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -080037#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39MODULE_LICENSE("GPL");
40MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
41MODULE_DESCRIPTION("IPv6 packet filter");
42
43#define IPV6_HDR_LEN (sizeof(struct ipv6hdr))
44#define IPV6_OPTHDR_LEN (sizeof(struct ipv6_opt_hdr))
45
46/*#define DEBUG_IP_FIREWALL*/
47/*#define DEBUG_ALLOW_ALL*/ /* Useful for remote debugging */
48/*#define DEBUG_IP_FIREWALL_USER*/
49
50#ifdef DEBUG_IP_FIREWALL
51#define dprintf(format, args...) printk(format , ## args)
52#else
53#define dprintf(format, args...)
54#endif
55
56#ifdef DEBUG_IP_FIREWALL_USER
57#define duprintf(format, args...) printk(format , ## args)
58#else
59#define duprintf(format, args...)
60#endif
61
62#ifdef CONFIG_NETFILTER_DEBUG
63#define IP_NF_ASSERT(x) \
64do { \
65 if (!(x)) \
66 printk("IP_NF_ASSERT: %s:%s:%u\n", \
67 __FUNCTION__, __FILE__, __LINE__); \
68} while(0)
69#else
70#define IP_NF_ASSERT(x)
71#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#if 0
74/* All the better to debug you with... */
75#define static
76#define inline
77#endif
78
Harald Welte6b7d31f2005-10-26 09:34:24 +020079/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 We keep a set of rules for each CPU, so we can avoid write-locking
Harald Welte6b7d31f2005-10-26 09:34:24 +020081 them in the softirq when updating the counters and therefore
82 only need to read-lock in the softirq; doing a write_lock_bh() in user
83 context stops packets coming through and allows user context to read
84 the counters or update the rules.
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 Hence the start of any table is given by get_table() below. */
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#if 0
89#define down(x) do { printk("DOWN:%u:" #x "\n", __LINE__); down(x); } while(0)
90#define down_interruptible(x) ({ int __r; printk("DOWNi:%u:" #x "\n", __LINE__); __r = down_interruptible(x); if (__r != 0) printk("ABORT-DOWNi:%u\n", __LINE__); __r; })
91#define up(x) do { printk("UP:%u:" #x "\n", __LINE__); up(x); } while(0)
92#endif
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/* Check for an extension */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090095int
Linus Torvalds1da177e2005-04-16 15:20:36 -070096ip6t_ext_hdr(u8 nexthdr)
97{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090098 return ( (nexthdr == IPPROTO_HOPOPTS) ||
99 (nexthdr == IPPROTO_ROUTING) ||
100 (nexthdr == IPPROTO_FRAGMENT) ||
101 (nexthdr == IPPROTO_ESP) ||
102 (nexthdr == IPPROTO_AH) ||
103 (nexthdr == IPPROTO_NONE) ||
104 (nexthdr == IPPROTO_DSTOPTS) );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107/* Returns whether matches rule or not. */
108static inline int
109ip6_packet_match(const struct sk_buff *skb,
110 const char *indev,
111 const char *outdev,
112 const struct ip6t_ip6 *ip6info,
113 unsigned int *protoff,
Patrick McHardy51d8b1a2006-10-24 16:14:04 -0700114 int *fragoff, int *hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 size_t i;
117 unsigned long ret;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700118 const struct ipv6hdr *ipv6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120#define FWINV(bool,invflg) ((bool) ^ !!(ip6info->invflags & invflg))
121
Patrick McHardyf2ffd9e2006-03-20 18:03:16 -0800122 if (FWINV(ipv6_masked_addr_cmp(&ipv6->saddr, &ip6info->smsk,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900123 &ip6info->src), IP6T_INV_SRCIP)
Patrick McHardyf2ffd9e2006-03-20 18:03:16 -0800124 || FWINV(ipv6_masked_addr_cmp(&ipv6->daddr, &ip6info->dmsk,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900125 &ip6info->dst), IP6T_INV_DSTIP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 dprintf("Source or dest mismatch.\n");
127/*
128 dprintf("SRC: %u. Mask: %u. Target: %u.%s\n", ip->saddr,
129 ipinfo->smsk.s_addr, ipinfo->src.s_addr,
130 ipinfo->invflags & IP6T_INV_SRCIP ? " (INV)" : "");
131 dprintf("DST: %u. Mask: %u. Target: %u.%s\n", ip->daddr,
132 ipinfo->dmsk.s_addr, ipinfo->dst.s_addr,
133 ipinfo->invflags & IP6T_INV_DSTIP ? " (INV)" : "");*/
134 return 0;
135 }
136
137 /* Look for ifname matches; this should unroll nicely. */
138 for (i = 0, ret = 0; i < IFNAMSIZ/sizeof(unsigned long); i++) {
139 ret |= (((const unsigned long *)indev)[i]
140 ^ ((const unsigned long *)ip6info->iniface)[i])
141 & ((const unsigned long *)ip6info->iniface_mask)[i];
142 }
143
144 if (FWINV(ret != 0, IP6T_INV_VIA_IN)) {
145 dprintf("VIA in mismatch (%s vs %s).%s\n",
146 indev, ip6info->iniface,
147 ip6info->invflags&IP6T_INV_VIA_IN ?" (INV)":"");
148 return 0;
149 }
150
151 for (i = 0, ret = 0; i < IFNAMSIZ/sizeof(unsigned long); i++) {
152 ret |= (((const unsigned long *)outdev)[i]
153 ^ ((const unsigned long *)ip6info->outiface)[i])
154 & ((const unsigned long *)ip6info->outiface_mask)[i];
155 }
156
157 if (FWINV(ret != 0, IP6T_INV_VIA_OUT)) {
158 dprintf("VIA out mismatch (%s vs %s).%s\n",
159 outdev, ip6info->outiface,
160 ip6info->invflags&IP6T_INV_VIA_OUT ?" (INV)":"");
161 return 0;
162 }
163
164/* ... might want to do something with class and flowlabel here ... */
165
166 /* look for the desired protocol header */
167 if((ip6info->flags & IP6T_F_PROTO)) {
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800168 int protohdr;
169 unsigned short _frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800171 protohdr = ipv6_find_hdr(skb, protoff, -1, &_frag_off);
Patrick McHardy51d8b1a2006-10-24 16:14:04 -0700172 if (protohdr < 0) {
173 if (_frag_off == 0)
174 *hotdrop = 1;
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800175 return 0;
Patrick McHardy51d8b1a2006-10-24 16:14:04 -0700176 }
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800177 *fragoff = _frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 dprintf("Packet protocol %hi ?= %s%hi.\n",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900180 protohdr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 ip6info->invflags & IP6T_INV_PROTO ? "!":"",
182 ip6info->proto);
183
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800184 if (ip6info->proto == protohdr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if(ip6info->invflags & IP6T_INV_PROTO) {
186 return 0;
187 }
188 return 1;
189 }
190
191 /* We need match for the '-p all', too! */
192 if ((ip6info->proto != 0) &&
193 !(ip6info->invflags & IP6T_INV_PROTO))
194 return 0;
195 }
196 return 1;
197}
198
199/* should be ip6 safe */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900200static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201ip6_checkentry(const struct ip6t_ip6 *ipv6)
202{
203 if (ipv6->flags & ~IP6T_F_MASK) {
204 duprintf("Unknown flag bits set: %08X\n",
205 ipv6->flags & ~IP6T_F_MASK);
206 return 0;
207 }
208 if (ipv6->invflags & ~IP6T_INV_MASK) {
209 duprintf("Unknown invflag bits set: %08X\n",
210 ipv6->invflags & ~IP6T_INV_MASK);
211 return 0;
212 }
213 return 1;
214}
215
216static unsigned int
217ip6t_error(struct sk_buff **pskb,
218 const struct net_device *in,
219 const struct net_device *out,
220 unsigned int hooknum,
Patrick McHardyc4986732006-03-20 18:02:56 -0800221 const struct xt_target *target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700222 const void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 if (net_ratelimit())
225 printk("ip6_tables: error: `%s'\n", (char *)targinfo);
226
227 return NF_DROP;
228}
229
230static inline
231int do_match(struct ip6t_entry_match *m,
232 const struct sk_buff *skb,
233 const struct net_device *in,
234 const struct net_device *out,
235 int offset,
236 unsigned int protoff,
237 int *hotdrop)
238{
239 /* Stop iteration if it doesn't match */
Patrick McHardy1c524832006-03-20 18:02:15 -0800240 if (!m->u.kernel.match->match(skb, in, out, m->u.kernel.match, m->data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 offset, protoff, hotdrop))
242 return 1;
243 else
244 return 0;
245}
246
247static inline struct ip6t_entry *
248get_entry(void *base, unsigned int offset)
249{
250 return (struct ip6t_entry *)(base + offset);
251}
252
253/* Returns one of the generic firewall policies, like NF_ACCEPT. */
254unsigned int
255ip6t_do_table(struct sk_buff **pskb,
256 unsigned int hook,
257 const struct net_device *in,
258 const struct net_device *out,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700259 struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Harald Welte6b7d31f2005-10-26 09:34:24 +0200261 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 int offset = 0;
263 unsigned int protoff = 0;
264 int hotdrop = 0;
265 /* Initializing verdict to NF_DROP keeps gcc happy. */
266 unsigned int verdict = NF_DROP;
267 const char *indev, *outdev;
268 void *table_base;
269 struct ip6t_entry *e, *back;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800270 struct xt_table_info *private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 /* Initialization */
273 indev = in ? in->name : nulldevname;
274 outdev = out ? out->name : nulldevname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /* We handle fragments by dealing with the first fragment as
276 * if it was a normal packet. All other fragments are treated
277 * normally, except that they will NEVER match rules that ask
278 * things we don't know, ie. tcp syn flag or ports). If the
279 * rule is also a fragment-specific rule, non-fragments won't
280 * match it. */
281
282 read_lock_bh(&table->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800283 private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 IP_NF_ASSERT(table->valid_hooks & (1 << hook));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800285 table_base = (void *)private->entries[smp_processor_id()];
286 e = get_entry(table_base, private->hook_entry[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /* For return from builtin chain */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800289 back = get_entry(table_base, private->underflow[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 do {
292 IP_NF_ASSERT(e);
293 IP_NF_ASSERT(back);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (ip6_packet_match(*pskb, indev, outdev, &e->ipv6,
Patrick McHardy51d8b1a2006-10-24 16:14:04 -0700295 &protoff, &offset, &hotdrop)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 struct ip6t_entry_target *t;
297
298 if (IP6T_MATCH_ITERATE(e, do_match,
299 *pskb, in, out,
300 offset, protoff, &hotdrop) != 0)
301 goto no_match;
302
303 ADD_COUNTER(e->counters,
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700304 ntohs(ipv6_hdr(*pskb)->payload_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 + IPV6_HDR_LEN,
306 1);
307
308 t = ip6t_get_target(e);
309 IP_NF_ASSERT(t->u.kernel.target);
310 /* Standard target? */
311 if (!t->u.kernel.target->target) {
312 int v;
313
314 v = ((struct ip6t_standard_target *)t)->verdict;
315 if (v < 0) {
316 /* Pop from stack? */
317 if (v != IP6T_RETURN) {
318 verdict = (unsigned)(-v) - 1;
319 break;
320 }
321 e = back;
322 back = get_entry(table_base,
323 back->comefrom);
324 continue;
325 }
Patrick McHardy05465342005-08-21 23:31:43 -0700326 if (table_base + v != (void *)e + e->next_offset
327 && !(e->ipv6.flags & IP6T_F_GOTO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 /* Save old back ptr in next entry */
329 struct ip6t_entry *next
330 = (void *)e + e->next_offset;
331 next->comefrom
332 = (void *)back - table_base;
333 /* set back pointer to next entry */
334 back = next;
335 }
336
337 e = get_entry(table_base, v);
338 } else {
339 /* Targets which reenter must return
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900340 abs. verdicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341#ifdef CONFIG_NETFILTER_DEBUG
342 ((struct ip6t_entry *)table_base)->comefrom
343 = 0xeeeeeeec;
344#endif
345 verdict = t->u.kernel.target->target(pskb,
346 in, out,
347 hook,
Patrick McHardy1c524832006-03-20 18:02:15 -0800348 t->u.kernel.target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700349 t->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351#ifdef CONFIG_NETFILTER_DEBUG
352 if (((struct ip6t_entry *)table_base)->comefrom
353 != 0xeeeeeeec
354 && verdict == IP6T_CONTINUE) {
355 printk("Target %s reentered!\n",
356 t->u.kernel.target->name);
357 verdict = NF_DROP;
358 }
359 ((struct ip6t_entry *)table_base)->comefrom
360 = 0x57acc001;
361#endif
362 if (verdict == IP6T_CONTINUE)
363 e = (void *)e + e->next_offset;
364 else
365 /* Verdict */
366 break;
367 }
368 } else {
369
370 no_match:
371 e = (void *)e + e->next_offset;
372 }
373 } while (!hotdrop);
374
375#ifdef CONFIG_NETFILTER_DEBUG
Randy Dunlap4bdbf6c2006-07-03 19:47:27 -0700376 ((struct ip6t_entry *)table_base)->comefrom = NETFILTER_LINK_POISON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377#endif
378 read_unlock_bh(&table->lock);
379
380#ifdef DEBUG_ALLOW_ALL
381 return NF_ACCEPT;
382#else
383 if (hotdrop)
384 return NF_DROP;
385 else return verdict;
386#endif
387}
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389/* All zeroes == unconditional rule. */
390static inline int
391unconditional(const struct ip6t_ip6 *ipv6)
392{
393 unsigned int i;
394
395 for (i = 0; i < sizeof(*ipv6); i++)
396 if (((char *)ipv6)[i])
397 break;
398
399 return (i == sizeof(*ipv6));
400}
401
402/* Figures out from what hook each rule can be called: returns 0 if
403 there are loops. Puts hook bitmask in comefrom. */
404static int
Harald Welte2e4e6a12006-01-12 13:30:04 -0800405mark_source_chains(struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800406 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 unsigned int hook;
409
410 /* No recursion; use packet counter to save back ptrs (reset
411 to 0 as we leave), and comefrom to save source hook bitmask */
412 for (hook = 0; hook < NF_IP6_NUMHOOKS; hook++) {
413 unsigned int pos = newinfo->hook_entry[hook];
414 struct ip6t_entry *e
Eric Dumazet31836062005-12-13 23:13:48 -0800415 = (struct ip6t_entry *)(entry0 + pos);
Al Viroe1b4b9f2006-12-12 00:29:52 -0800416 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 if (!(valid_hooks & (1 << hook)))
419 continue;
420
421 /* Set initial back pointer. */
422 e->counters.pcnt = pos;
423
424 for (;;) {
425 struct ip6t_standard_target *t
426 = (void *)ip6t_get_target(e);
427
428 if (e->comefrom & (1 << NF_IP6_NUMHOOKS)) {
429 printk("iptables: loop hook %u pos %u %08X.\n",
430 hook, pos, e->comefrom);
431 return 0;
432 }
433 e->comefrom
434 |= ((1 << hook) | (1 << NF_IP6_NUMHOOKS));
435
436 /* Unconditional return/END. */
Al Viroe1b4b9f2006-12-12 00:29:52 -0800437 if ((e->target_offset == sizeof(struct ip6t_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 && (strcmp(t->target.u.user.name,
439 IP6T_STANDARD_TARGET) == 0)
440 && t->verdict < 0
Al Viroe1b4b9f2006-12-12 00:29:52 -0800441 && unconditional(&e->ipv6)) || visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 unsigned int oldpos, size;
443
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800444 if (t->verdict < -NF_MAX_VERDICT - 1) {
445 duprintf("mark_source_chains: bad "
446 "negative verdict (%i)\n",
447 t->verdict);
448 return 0;
449 }
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 /* Return: backtrack through the last
452 big jump. */
453 do {
454 e->comefrom ^= (1<<NF_IP6_NUMHOOKS);
455#ifdef DEBUG_IP_FIREWALL_USER
456 if (e->comefrom
457 & (1 << NF_IP6_NUMHOOKS)) {
458 duprintf("Back unset "
459 "on hook %u "
460 "rule %u\n",
461 hook, pos);
462 }
463#endif
464 oldpos = pos;
465 pos = e->counters.pcnt;
466 e->counters.pcnt = 0;
467
468 /* We're at the start. */
469 if (pos == oldpos)
470 goto next;
471
472 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800473 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 } while (oldpos == pos + e->next_offset);
475
476 /* Move along one */
477 size = e->next_offset;
478 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800479 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 e->counters.pcnt = pos;
481 pos += size;
482 } else {
483 int newpos = t->verdict;
484
485 if (strcmp(t->target.u.user.name,
486 IP6T_STANDARD_TARGET) == 0
487 && newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800488 if (newpos > newinfo->size -
489 sizeof(struct ip6t_entry)) {
490 duprintf("mark_source_chains: "
491 "bad verdict (%i)\n",
492 newpos);
493 return 0;
494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 /* This a jump; chase it. */
496 duprintf("Jump rule %u -> %u\n",
497 pos, newpos);
498 } else {
499 /* ... this is a fallthru */
500 newpos = pos + e->next_offset;
501 }
502 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800503 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 e->counters.pcnt = pos;
505 pos = newpos;
506 }
507 }
508 next:
509 duprintf("Finished chain %u\n", hook);
510 }
511 return 1;
512}
513
514static inline int
515cleanup_match(struct ip6t_entry_match *m, unsigned int *i)
516{
517 if (i && (*i)-- == 0)
518 return 1;
519
520 if (m->u.kernel.match->destroy)
Patrick McHardyefa74162006-08-22 00:36:37 -0700521 m->u.kernel.match->destroy(m->u.kernel.match, m->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 module_put(m->u.kernel.match->me);
523 return 0;
524}
525
526static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527check_match(struct ip6t_entry_match *m,
528 const char *name,
529 const struct ip6t_ip6 *ipv6,
530 unsigned int hookmask,
531 unsigned int *i)
532{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800533 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800534 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Harald Welte2e4e6a12006-01-12 13:30:04 -0800536 match = try_then_request_module(xt_find_match(AF_INET6, m->u.user.name,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900537 m->u.user.revision),
Harald Welte6b7d31f2005-10-26 09:34:24 +0200538 "ip6t_%s", m->u.user.name);
539 if (IS_ERR(match) || !match) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900540 duprintf("check_match: `%s' not found\n", m->u.user.name);
Harald Welte6b7d31f2005-10-26 09:34:24 +0200541 return match ? PTR_ERR(match) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
543 m->u.kernel.match = match;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800545 ret = xt_check_match(match, AF_INET6, m->u.match_size - sizeof(*m),
546 name, hookmask, ipv6->proto,
547 ipv6->invflags & IP6T_INV_PROTO);
548 if (ret)
549 goto err;
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (m->u.kernel.match->checkentry
Patrick McHardy1c524832006-03-20 18:02:15 -0800552 && !m->u.kernel.match->checkentry(name, ipv6, match, m->data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 hookmask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 duprintf("ip_tables: check failed for `%s'.\n",
555 m->u.kernel.match->name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800556 ret = -EINVAL;
557 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
559
560 (*i)++;
561 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800562err:
563 module_put(m->u.kernel.match->me);
564 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800567static struct xt_target ip6t_standard_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569static inline int
570check_entry(struct ip6t_entry *e, const char *name, unsigned int size,
571 unsigned int *i)
572{
573 struct ip6t_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800574 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 int ret;
576 unsigned int j;
577
578 if (!ip6_checkentry(&e->ipv6)) {
579 duprintf("ip_tables: ip check failed %p %s.\n", e, name);
580 return -EINVAL;
581 }
582
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800583 if (e->target_offset + sizeof(struct ip6t_entry_target) >
584 e->next_offset)
585 return -EINVAL;
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 j = 0;
588 ret = IP6T_MATCH_ITERATE(e, check_match, name, &e->ipv6, e->comefrom, &j);
589 if (ret != 0)
590 goto cleanup_matches;
591
592 t = ip6t_get_target(e);
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800593 ret = -EINVAL;
594 if (e->target_offset + t->u.target_size > e->next_offset)
595 goto cleanup_matches;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800596 target = try_then_request_module(xt_find_target(AF_INET6,
597 t->u.user.name,
598 t->u.user.revision),
Harald Welte6b7d31f2005-10-26 09:34:24 +0200599 "ip6t_%s", t->u.user.name);
600 if (IS_ERR(target) || !target) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 duprintf("check_entry: `%s' not found\n", t->u.user.name);
Harald Welte6b7d31f2005-10-26 09:34:24 +0200602 ret = target ? PTR_ERR(target) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 goto cleanup_matches;
604 }
605 t->u.kernel.target = target;
Harald Welte6b7d31f2005-10-26 09:34:24 +0200606
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800607 ret = xt_check_target(target, AF_INET6, t->u.target_size - sizeof(*t),
608 name, e->comefrom, e->ipv6.proto,
609 e->ipv6.invflags & IP6T_INV_PROTO);
610 if (ret)
611 goto err;
612
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800613 if (t->u.kernel.target->checkentry
Patrick McHardy1c524832006-03-20 18:02:15 -0800614 && !t->u.kernel.target->checkentry(name, e, target, t->data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 e->comefrom)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 duprintf("ip_tables: check failed for `%s'.\n",
617 t->u.kernel.target->name);
618 ret = -EINVAL;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800619 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
621
622 (*i)++;
623 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800624 err:
625 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 cleanup_matches:
627 IP6T_MATCH_ITERATE(e, cleanup_match, &j);
628 return ret;
629}
630
631static inline int
632check_entry_size_and_hooks(struct ip6t_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800633 struct xt_table_info *newinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 unsigned char *base,
635 unsigned char *limit,
636 const unsigned int *hook_entries,
637 const unsigned int *underflows,
638 unsigned int *i)
639{
640 unsigned int h;
641
642 if ((unsigned long)e % __alignof__(struct ip6t_entry) != 0
643 || (unsigned char *)e + sizeof(struct ip6t_entry) >= limit) {
644 duprintf("Bad offset %p\n", e);
645 return -EINVAL;
646 }
647
648 if (e->next_offset
649 < sizeof(struct ip6t_entry) + sizeof(struct ip6t_entry_target)) {
650 duprintf("checking: element %p size %u\n",
651 e, e->next_offset);
652 return -EINVAL;
653 }
654
655 /* Check hooks & underflows */
656 for (h = 0; h < NF_IP6_NUMHOOKS; h++) {
657 if ((unsigned char *)e - base == hook_entries[h])
658 newinfo->hook_entry[h] = hook_entries[h];
659 if ((unsigned char *)e - base == underflows[h])
660 newinfo->underflow[h] = underflows[h];
661 }
662
663 /* FIXME: underflows must be unconditional, standard verdicts
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900664 < 0 (not IP6T_RETURN). --RR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800667 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 e->comefrom = 0;
669
670 (*i)++;
671 return 0;
672}
673
674static inline int
675cleanup_entry(struct ip6t_entry *e, unsigned int *i)
676{
677 struct ip6t_entry_target *t;
678
679 if (i && (*i)-- == 0)
680 return 1;
681
682 /* Cleanup all matches */
683 IP6T_MATCH_ITERATE(e, cleanup_match, NULL);
684 t = ip6t_get_target(e);
685 if (t->u.kernel.target->destroy)
Patrick McHardyefa74162006-08-22 00:36:37 -0700686 t->u.kernel.target->destroy(t->u.kernel.target, t->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 module_put(t->u.kernel.target->me);
688 return 0;
689}
690
691/* Checks and translates the user-supplied table segment (held in
692 newinfo) */
693static int
694translate_table(const char *name,
695 unsigned int valid_hooks,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800696 struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800697 void *entry0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 unsigned int size,
699 unsigned int number,
700 const unsigned int *hook_entries,
701 const unsigned int *underflows)
702{
703 unsigned int i;
704 int ret;
705
706 newinfo->size = size;
707 newinfo->number = number;
708
709 /* Init all hooks to impossible value. */
710 for (i = 0; i < NF_IP6_NUMHOOKS; i++) {
711 newinfo->hook_entry[i] = 0xFFFFFFFF;
712 newinfo->underflow[i] = 0xFFFFFFFF;
713 }
714
715 duprintf("translate_table: size %u\n", newinfo->size);
716 i = 0;
717 /* Walk through entries, checking offsets. */
Eric Dumazet31836062005-12-13 23:13:48 -0800718 ret = IP6T_ENTRY_ITERATE(entry0, newinfo->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 check_entry_size_and_hooks,
720 newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800721 entry0,
722 entry0 + size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 hook_entries, underflows, &i);
724 if (ret != 0)
725 return ret;
726
727 if (i != number) {
728 duprintf("translate_table: %u not %u entries\n",
729 i, number);
730 return -EINVAL;
731 }
732
733 /* Check hooks all assigned */
734 for (i = 0; i < NF_IP6_NUMHOOKS; i++) {
735 /* Only hooks which are valid */
736 if (!(valid_hooks & (1 << i)))
737 continue;
738 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
739 duprintf("Invalid hook entry %u %u\n",
740 i, hook_entries[i]);
741 return -EINVAL;
742 }
743 if (newinfo->underflow[i] == 0xFFFFFFFF) {
744 duprintf("Invalid underflow %u %u\n",
745 i, underflows[i]);
746 return -EINVAL;
747 }
748 }
749
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800750 if (!mark_source_chains(newinfo, valid_hooks, entry0))
751 return -ELOOP;
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 /* Finally, each sanity check must pass */
754 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -0800755 ret = IP6T_ENTRY_ITERATE(entry0, newinfo->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 check_entry, name, size, &i);
757
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800758 if (ret != 0) {
759 IP6T_ENTRY_ITERATE(entry0, newinfo->size,
760 cleanup_entry, &i);
761 return ret;
762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764 /* And one copy for every other CPU */
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700765 for_each_possible_cpu(i) {
Eric Dumazet31836062005-12-13 23:13:48 -0800766 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
767 memcpy(newinfo->entries[i], entry0, newinfo->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
769
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800770 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773/* Gets counters. */
774static inline int
775add_entry_to_counter(const struct ip6t_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800776 struct xt_counters total[],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 unsigned int *i)
778{
779 ADD_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
780
781 (*i)++;
782 return 0;
783}
784
Eric Dumazet31836062005-12-13 23:13:48 -0800785static inline int
786set_entry_to_counter(const struct ip6t_entry *e,
787 struct ip6t_counters total[],
788 unsigned int *i)
789{
790 SET_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
791
792 (*i)++;
793 return 0;
794}
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800797get_counters(const struct xt_table_info *t,
798 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
800 unsigned int cpu;
801 unsigned int i;
Eric Dumazet31836062005-12-13 23:13:48 -0800802 unsigned int curcpu;
803
804 /* Instead of clearing (by a previous call to memset())
805 * the counters and using adds, we set the counters
806 * with data used by 'current' CPU
807 * We dont care about preemption here.
808 */
809 curcpu = raw_smp_processor_id();
810
811 i = 0;
812 IP6T_ENTRY_ITERATE(t->entries[curcpu],
813 t->size,
814 set_entry_to_counter,
815 counters,
816 &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700818 for_each_possible_cpu(cpu) {
Eric Dumazet31836062005-12-13 23:13:48 -0800819 if (cpu == curcpu)
820 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -0800822 IP6T_ENTRY_ITERATE(t->entries[cpu],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 t->size,
824 add_entry_to_counter,
825 counters,
826 &i);
827 }
828}
829
830static int
831copy_entries_to_user(unsigned int total_size,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800832 struct xt_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 void __user *userptr)
834{
835 unsigned int off, num, countersize;
836 struct ip6t_entry *e;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800837 struct xt_counters *counters;
838 struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 int ret = 0;
Eric Dumazet31836062005-12-13 23:13:48 -0800840 void *loc_cpu_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 /* We need atomic snapshot of counters: rest doesn't change
843 (other than comefrom, which userspace doesn't care
844 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800845 countersize = sizeof(struct xt_counters) * private->number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 counters = vmalloc(countersize);
847
848 if (counters == NULL)
849 return -ENOMEM;
850
851 /* First, sum counters... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 write_lock_bh(&table->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800853 get_counters(private, counters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 write_unlock_bh(&table->lock);
855
Eric Dumazet31836062005-12-13 23:13:48 -0800856 /* choose the copy that is on ourc node/cpu */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800857 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -0800858 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 ret = -EFAULT;
860 goto free_counters;
861 }
862
863 /* FIXME: use iterator macros --RR */
864 /* ... then go back and fix counters and names */
865 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
866 unsigned int i;
867 struct ip6t_entry_match *m;
868 struct ip6t_entry_target *t;
869
Eric Dumazet31836062005-12-13 23:13:48 -0800870 e = (struct ip6t_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 if (copy_to_user(userptr + off
872 + offsetof(struct ip6t_entry, counters),
873 &counters[num],
874 sizeof(counters[num])) != 0) {
875 ret = -EFAULT;
876 goto free_counters;
877 }
878
879 for (i = sizeof(struct ip6t_entry);
880 i < e->target_offset;
881 i += m->u.match_size) {
882 m = (void *)e + i;
883
884 if (copy_to_user(userptr + off + i
885 + offsetof(struct ip6t_entry_match,
886 u.user.name),
887 m->u.kernel.match->name,
888 strlen(m->u.kernel.match->name)+1)
889 != 0) {
890 ret = -EFAULT;
891 goto free_counters;
892 }
893 }
894
895 t = ip6t_get_target(e);
896 if (copy_to_user(userptr + off + e->target_offset
897 + offsetof(struct ip6t_entry_target,
898 u.user.name),
899 t->u.kernel.target->name,
900 strlen(t->u.kernel.target->name)+1) != 0) {
901 ret = -EFAULT;
902 goto free_counters;
903 }
904 }
905
906 free_counters:
907 vfree(counters);
908 return ret;
909}
910
911static int
912get_entries(const struct ip6t_get_entries *entries,
913 struct ip6t_get_entries __user *uptr)
914{
915 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800916 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Harald Welte2e4e6a12006-01-12 13:30:04 -0800918 t = xt_find_table_lock(AF_INET6, entries->name);
Harald Welte6b7d31f2005-10-26 09:34:24 +0200919 if (t && !IS_ERR(t)) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800920 struct xt_table_info *private = t->private;
921 duprintf("t->private->number = %u\n", private->number);
922 if (entries->size == private->size)
923 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 t, uptr->entrytable);
925 else {
926 duprintf("get_entries: I've got %u not %u!\n",
Harald Welte2e4e6a12006-01-12 13:30:04 -0800927 private->size, entries->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 ret = -EINVAL;
929 }
Harald Welte6b7d31f2005-10-26 09:34:24 +0200930 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800931 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 } else
Harald Welte6b7d31f2005-10-26 09:34:24 +0200933 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 return ret;
936}
937
938static int
939do_replace(void __user *user, unsigned int len)
940{
941 int ret;
942 struct ip6t_replace tmp;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800943 struct xt_table *t;
944 struct xt_table_info *newinfo, *oldinfo;
945 struct xt_counters *counters;
Eric Dumazet31836062005-12-13 23:13:48 -0800946 void *loc_cpu_entry, *loc_cpu_old_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
949 return -EFAULT;
950
Kirill Korotaevee4bb812006-02-04 02:16:56 -0800951 /* overflow check */
952 if (tmp.size >= (INT_MAX - sizeof(struct xt_table_info)) / NR_CPUS -
953 SMP_CACHE_BYTES)
954 return -ENOMEM;
955 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
956 return -ENOMEM;
957
Harald Welte2e4e6a12006-01-12 13:30:04 -0800958 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (!newinfo)
960 return -ENOMEM;
961
Eric Dumazet31836062005-12-13 23:13:48 -0800962 /* choose the copy that is on our node/cpu */
963 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
964 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 tmp.size) != 0) {
966 ret = -EFAULT;
967 goto free_newinfo;
968 }
969
Harald Welte2e4e6a12006-01-12 13:30:04 -0800970 counters = vmalloc(tmp.num_counters * sizeof(struct xt_counters));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 if (!counters) {
972 ret = -ENOMEM;
973 goto free_newinfo;
974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 ret = translate_table(tmp.name, tmp.valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -0800977 newinfo, loc_cpu_entry, tmp.size, tmp.num_entries,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 tmp.hook_entry, tmp.underflow);
979 if (ret != 0)
980 goto free_newinfo_counters;
981
982 duprintf("ip_tables: Translated table\n");
983
Harald Welte2e4e6a12006-01-12 13:30:04 -0800984 t = try_then_request_module(xt_find_table_lock(AF_INET6, tmp.name),
Harald Welte6b7d31f2005-10-26 09:34:24 +0200985 "ip6table_%s", tmp.name);
986 if (!t || IS_ERR(t)) {
987 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 goto free_newinfo_counters_untrans;
Harald Welte6b7d31f2005-10-26 09:34:24 +0200989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 /* You lied! */
992 if (tmp.valid_hooks != t->valid_hooks) {
993 duprintf("Valid hook crap: %08X vs %08X\n",
994 tmp.valid_hooks, t->valid_hooks);
995 ret = -EINVAL;
Harald Welte6b7d31f2005-10-26 09:34:24 +0200996 goto put_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
998
Harald Welte2e4e6a12006-01-12 13:30:04 -0800999 oldinfo = xt_replace_table(t, tmp.num_counters, newinfo, &ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 if (!oldinfo)
1001 goto put_module;
1002
1003 /* Update module usage count based on number of rules */
1004 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1005 oldinfo->number, oldinfo->initial_entries, newinfo->number);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001006 if ((oldinfo->number > oldinfo->initial_entries) ||
1007 (newinfo->number <= oldinfo->initial_entries))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 module_put(t->me);
1009 if ((oldinfo->number > oldinfo->initial_entries) &&
1010 (newinfo->number <= oldinfo->initial_entries))
1011 module_put(t->me);
1012
1013 /* Get the old counters. */
1014 get_counters(oldinfo, counters);
1015 /* Decrease module usage counts and free resource */
Eric Dumazet31836062005-12-13 23:13:48 -08001016 loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
1017 IP6T_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry,NULL);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001018 xt_free_table_info(oldinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 if (copy_to_user(tmp.counters, counters,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001020 sizeof(struct xt_counters) * tmp.num_counters) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 ret = -EFAULT;
1022 vfree(counters);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001023 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return ret;
1025
1026 put_module:
1027 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001028 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 free_newinfo_counters_untrans:
Eric Dumazet31836062005-12-13 23:13:48 -08001030 IP6T_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry,NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 free_newinfo_counters:
1032 vfree(counters);
1033 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001034 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return ret;
1036}
1037
1038/* We're lazy, and add to the first CPU; overflow works its fey magic
1039 * and everything is OK. */
1040static inline int
1041add_counter_to_entry(struct ip6t_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001042 const struct xt_counters addme[],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 unsigned int *i)
1044{
1045#if 0
1046 duprintf("add_counter: Entry %u %lu/%lu + %lu/%lu\n",
1047 *i,
1048 (long unsigned int)e->counters.pcnt,
1049 (long unsigned int)e->counters.bcnt,
1050 (long unsigned int)addme[*i].pcnt,
1051 (long unsigned int)addme[*i].bcnt);
1052#endif
1053
1054 ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt);
1055
1056 (*i)++;
1057 return 0;
1058}
1059
1060static int
1061do_add_counters(void __user *user, unsigned int len)
1062{
1063 unsigned int i;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001064 struct xt_counters_info tmp, *paddc;
1065 struct xt_table_info *private;
1066 struct xt_table *t;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001067 int ret = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001068 void *loc_cpu_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1071 return -EFAULT;
1072
Harald Welte2e4e6a12006-01-12 13:30:04 -08001073 if (len != sizeof(tmp) + tmp.num_counters*sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return -EINVAL;
1075
1076 paddc = vmalloc(len);
1077 if (!paddc)
1078 return -ENOMEM;
1079
1080 if (copy_from_user(paddc, user, len) != 0) {
1081 ret = -EFAULT;
1082 goto free;
1083 }
1084
Harald Welte2e4e6a12006-01-12 13:30:04 -08001085 t = xt_find_table_lock(AF_INET6, tmp.name);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001086 if (!t || IS_ERR(t)) {
1087 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 goto free;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091 write_lock_bh(&t->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001092 private = t->private;
Solar Designer2c8ac662006-05-19 02:16:52 -07001093 if (private->number != tmp.num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 ret = -EINVAL;
1095 goto unlock_up_free;
1096 }
1097
1098 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001099 /* Choose the copy that is on our node */
Harald Welte2e4e6a12006-01-12 13:30:04 -08001100 loc_cpu_entry = private->entries[smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -08001101 IP6T_ENTRY_ITERATE(loc_cpu_entry,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001102 private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 add_counter_to_entry,
1104 paddc->counters,
1105 &i);
1106 unlock_up_free:
1107 write_unlock_bh(&t->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001108 xt_table_unlock(t);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001109 module_put(t->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 free:
1111 vfree(paddc);
1112
1113 return ret;
1114}
1115
1116static int
1117do_ip6t_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
1118{
1119 int ret;
1120
1121 if (!capable(CAP_NET_ADMIN))
1122 return -EPERM;
1123
1124 switch (cmd) {
1125 case IP6T_SO_SET_REPLACE:
1126 ret = do_replace(user, len);
1127 break;
1128
1129 case IP6T_SO_SET_ADD_COUNTERS:
1130 ret = do_add_counters(user, len);
1131 break;
1132
1133 default:
1134 duprintf("do_ip6t_set_ctl: unknown request %i\n", cmd);
1135 ret = -EINVAL;
1136 }
1137
1138 return ret;
1139}
1140
1141static int
1142do_ip6t_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1143{
1144 int ret;
1145
1146 if (!capable(CAP_NET_ADMIN))
1147 return -EPERM;
1148
1149 switch (cmd) {
1150 case IP6T_SO_GET_INFO: {
1151 char name[IP6T_TABLE_MAXNAMELEN];
Harald Welte2e4e6a12006-01-12 13:30:04 -08001152 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
1154 if (*len != sizeof(struct ip6t_getinfo)) {
1155 duprintf("length %u != %u\n", *len,
1156 sizeof(struct ip6t_getinfo));
1157 ret = -EINVAL;
1158 break;
1159 }
1160
1161 if (copy_from_user(name, user, sizeof(name)) != 0) {
1162 ret = -EFAULT;
1163 break;
1164 }
1165 name[IP6T_TABLE_MAXNAMELEN-1] = '\0';
Harald Welte6b7d31f2005-10-26 09:34:24 +02001166
Harald Welte2e4e6a12006-01-12 13:30:04 -08001167 t = try_then_request_module(xt_find_table_lock(AF_INET6, name),
Harald Welte6b7d31f2005-10-26 09:34:24 +02001168 "ip6table_%s", name);
1169 if (t && !IS_ERR(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 struct ip6t_getinfo info;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001171 struct xt_table_info *private = t->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
1173 info.valid_hooks = t->valid_hooks;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001174 memcpy(info.hook_entry, private->hook_entry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 sizeof(info.hook_entry));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001176 memcpy(info.underflow, private->underflow,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 sizeof(info.underflow));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001178 info.num_entries = private->number;
1179 info.size = private->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 memcpy(info.name, name, sizeof(info.name));
1181
1182 if (copy_to_user(user, &info, *len) != 0)
1183 ret = -EFAULT;
1184 else
1185 ret = 0;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001186 xt_table_unlock(t);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001187 module_put(t->me);
1188 } else
1189 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 }
1191 break;
1192
1193 case IP6T_SO_GET_ENTRIES: {
1194 struct ip6t_get_entries get;
1195
1196 if (*len < sizeof(get)) {
1197 duprintf("get_entries: %u < %u\n", *len, sizeof(get));
1198 ret = -EINVAL;
1199 } else if (copy_from_user(&get, user, sizeof(get)) != 0) {
1200 ret = -EFAULT;
1201 } else if (*len != sizeof(struct ip6t_get_entries) + get.size) {
1202 duprintf("get_entries: %u != %u\n", *len,
1203 sizeof(struct ip6t_get_entries) + get.size);
1204 ret = -EINVAL;
1205 } else
1206 ret = get_entries(&get, user);
1207 break;
1208 }
1209
Harald Welte6b7d31f2005-10-26 09:34:24 +02001210 case IP6T_SO_GET_REVISION_MATCH:
1211 case IP6T_SO_GET_REVISION_TARGET: {
1212 struct ip6t_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001213 int target;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001214
1215 if (*len != sizeof(rev)) {
1216 ret = -EINVAL;
1217 break;
1218 }
1219 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
1220 ret = -EFAULT;
1221 break;
1222 }
1223
1224 if (cmd == IP6T_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001225 target = 1;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001226 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08001227 target = 0;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001228
Harald Welte2e4e6a12006-01-12 13:30:04 -08001229 try_then_request_module(xt_find_revision(AF_INET6, rev.name,
1230 rev.revision,
1231 target, &ret),
Harald Welte6b7d31f2005-10-26 09:34:24 +02001232 "ip6t_%s", rev.name);
1233 break;
1234 }
1235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 default:
1237 duprintf("do_ip6t_get_ctl: unknown request %i\n", cmd);
1238 ret = -EINVAL;
1239 }
1240
1241 return ret;
1242}
1243
Harald Welte2e4e6a12006-01-12 13:30:04 -08001244int ip6t_register_table(struct xt_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 const struct ip6t_replace *repl)
1246{
1247 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001248 struct xt_table_info *newinfo;
1249 static struct xt_table_info bootstrap
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 = { 0, 0, 0, { 0 }, { 0 }, { } };
Eric Dumazet31836062005-12-13 23:13:48 -08001251 void *loc_cpu_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Harald Welte2e4e6a12006-01-12 13:30:04 -08001253 newinfo = xt_alloc_table_info(repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 if (!newinfo)
1255 return -ENOMEM;
1256
Eric Dumazet31836062005-12-13 23:13:48 -08001257 /* choose the copy on our node/cpu */
1258 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1259 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
1261 ret = translate_table(table->name, table->valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08001262 newinfo, loc_cpu_entry, repl->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 repl->num_entries,
1264 repl->hook_entry,
1265 repl->underflow);
1266 if (ret != 0) {
Harald Welte2e4e6a12006-01-12 13:30:04 -08001267 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 return ret;
1269 }
1270
Patrick McHardyda298d32006-06-27 03:00:09 -07001271 ret = xt_register_table(table, &bootstrap, newinfo);
1272 if (ret != 0) {
Harald Welte2e4e6a12006-01-12 13:30:04 -08001273 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 return ret;
1275 }
1276
Harald Welte2e4e6a12006-01-12 13:30:04 -08001277 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
Harald Welte2e4e6a12006-01-12 13:30:04 -08001280void ip6t_unregister_table(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
Harald Welte2e4e6a12006-01-12 13:30:04 -08001282 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08001283 void *loc_cpu_entry;
1284
Harald Welte2e4e6a12006-01-12 13:30:04 -08001285 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 /* Decrease module usage counts and free resources */
Harald Welte2e4e6a12006-01-12 13:30:04 -08001288 loc_cpu_entry = private->entries[raw_smp_processor_id()];
1289 IP6T_ENTRY_ITERATE(loc_cpu_entry, private->size, cleanup_entry, NULL);
1290 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291}
1292
1293/* Returns 1 if the type and code is matched by the range, 0 otherwise */
1294static inline int
1295icmp6_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
1296 u_int8_t type, u_int8_t code,
1297 int invert)
1298{
1299 return (type == test_type && code >= min_code && code <= max_code)
1300 ^ invert;
1301}
1302
1303static int
1304icmp6_match(const struct sk_buff *skb,
1305 const struct net_device *in,
1306 const struct net_device *out,
Patrick McHardyc4986732006-03-20 18:02:56 -08001307 const struct xt_match *match,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 const void *matchinfo,
1309 int offset,
1310 unsigned int protoff,
1311 int *hotdrop)
1312{
1313 struct icmp6hdr _icmp, *ic;
1314 const struct ip6t_icmp *icmpinfo = matchinfo;
1315
1316 /* Must not be a fragment. */
1317 if (offset)
1318 return 0;
1319
1320 ic = skb_header_pointer(skb, protoff, sizeof(_icmp), &_icmp);
1321 if (ic == NULL) {
1322 /* We've been asked to examine this packet, and we
1323 can't. Hence, no choice but to drop. */
1324 duprintf("Dropping evil ICMP tinygram.\n");
1325 *hotdrop = 1;
1326 return 0;
1327 }
1328
1329 return icmp6_type_code_match(icmpinfo->type,
1330 icmpinfo->code[0],
1331 icmpinfo->code[1],
1332 ic->icmp6_type, ic->icmp6_code,
1333 !!(icmpinfo->invflags&IP6T_ICMP_INV));
1334}
1335
1336/* Called when user tries to insert an entry of this type. */
1337static int
1338icmp6_checkentry(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001339 const void *entry,
Patrick McHardyc4986732006-03-20 18:02:56 -08001340 const struct xt_match *match,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 void *matchinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 unsigned int hook_mask)
1343{
1344 const struct ip6t_icmp *icmpinfo = matchinfo;
1345
Patrick McHardy7f939712006-03-20 18:01:43 -08001346 /* Must specify no unknown invflags */
1347 return !(icmpinfo->invflags & ~IP6T_ICMP_INV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348}
1349
1350/* The built-in targets: standard (NULL) and error. */
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001351static struct xt_target ip6t_standard_target = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 .name = IP6T_STANDARD_TARGET,
Patrick McHardy7f939712006-03-20 18:01:43 -08001353 .targetsize = sizeof(int),
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08001354 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355};
1356
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001357static struct xt_target ip6t_error_target = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 .name = IP6T_ERROR_TARGET,
1359 .target = ip6t_error,
Patrick McHardy7f939712006-03-20 18:01:43 -08001360 .targetsize = IP6T_FUNCTION_MAXNAMELEN,
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08001361 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362};
1363
1364static struct nf_sockopt_ops ip6t_sockopts = {
1365 .pf = PF_INET6,
1366 .set_optmin = IP6T_BASE_CTL,
1367 .set_optmax = IP6T_SO_SET_MAX+1,
1368 .set = do_ip6t_set_ctl,
1369 .get_optmin = IP6T_BASE_CTL,
1370 .get_optmax = IP6T_SO_GET_MAX+1,
1371 .get = do_ip6t_get_ctl,
1372};
1373
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001374static struct xt_match icmp6_matchstruct = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 .name = "icmp6",
1376 .match = &icmp6_match,
Patrick McHardy7f939712006-03-20 18:01:43 -08001377 .matchsize = sizeof(struct ip6t_icmp),
1378 .checkentry = icmp6_checkentry,
1379 .proto = IPPROTO_ICMPV6,
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08001380 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381};
1382
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001383static int __init ip6_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
1385 int ret;
1386
Patrick McHardy0eff66e2006-08-13 18:57:28 -07001387 ret = xt_proto_init(AF_INET6);
1388 if (ret < 0)
1389 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 /* Noone else will be downing sem now, so we won't sleep */
Patrick McHardy0eff66e2006-08-13 18:57:28 -07001392 ret = xt_register_target(&ip6t_standard_target);
1393 if (ret < 0)
1394 goto err2;
1395 ret = xt_register_target(&ip6t_error_target);
1396 if (ret < 0)
1397 goto err3;
1398 ret = xt_register_match(&icmp6_matchstruct);
1399 if (ret < 0)
1400 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
1402 /* Register setsockopt */
1403 ret = nf_register_sockopt(&ip6t_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07001404 if (ret < 0)
1405 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Harald Welte2e4e6a12006-01-12 13:30:04 -08001407 printk("ip6_tables: (C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07001409
1410err5:
1411 xt_unregister_match(&icmp6_matchstruct);
1412err4:
1413 xt_unregister_target(&ip6t_error_target);
1414err3:
1415 xt_unregister_target(&ip6t_standard_target);
1416err2:
1417 xt_proto_fini(AF_INET6);
1418err1:
1419 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420}
1421
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001422static void __exit ip6_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
1424 nf_unregister_sockopt(&ip6t_sockopts);
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08001425 xt_unregister_match(&icmp6_matchstruct);
1426 xt_unregister_target(&ip6t_error_target);
1427 xt_unregister_target(&ip6t_standard_target);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001428 xt_proto_fini(AF_INET6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429}
1430
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07001431/*
Patrick McHardyb777e0c2006-01-05 12:21:16 -08001432 * find the offset to specified header or the protocol number of last header
1433 * if target < 0. "last header" is transport protocol header, ESP, or
1434 * "No next header".
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07001435 *
Patrick McHardyb777e0c2006-01-05 12:21:16 -08001436 * If target header is found, its offset is set in *offset and return protocol
1437 * number. Otherwise, return -1.
1438 *
Patrick McHardy6d381632006-10-24 16:15:10 -07001439 * If the first fragment doesn't contain the final protocol header or
1440 * NEXTHDR_NONE it is considered invalid.
1441 *
Patrick McHardyb777e0c2006-01-05 12:21:16 -08001442 * Note that non-1st fragment is special case that "the protocol number
1443 * of last header" is "next header" field in Fragment header. In this case,
1444 * *offset is meaningless and fragment offset is stored in *fragoff if fragoff
1445 * isn't NULL.
1446 *
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07001447 */
Patrick McHardyb777e0c2006-01-05 12:21:16 -08001448int ipv6_find_hdr(const struct sk_buff *skb, unsigned int *offset,
1449 int target, unsigned short *fragoff)
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07001450{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001451 unsigned int start = (u8 *)(ipv6_hdr(skb) + 1) - skb->data;
1452 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07001453 unsigned int len = skb->len - start;
1454
Patrick McHardyb777e0c2006-01-05 12:21:16 -08001455 if (fragoff)
1456 *fragoff = 0;
1457
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07001458 while (nexthdr != target) {
1459 struct ipv6_opt_hdr _hdr, *hp;
1460 unsigned int hdrlen;
1461
Patrick McHardyb777e0c2006-01-05 12:21:16 -08001462 if ((!ipv6_ext_hdr(nexthdr)) || nexthdr == NEXTHDR_NONE) {
1463 if (target < 0)
1464 break;
Patrick McHardy6d381632006-10-24 16:15:10 -07001465 return -ENOENT;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08001466 }
1467
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07001468 hp = skb_header_pointer(skb, start, sizeof(_hdr), &_hdr);
1469 if (hp == NULL)
Patrick McHardy6d381632006-10-24 16:15:10 -07001470 return -EBADMSG;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07001471 if (nexthdr == NEXTHDR_FRAGMENT) {
Al Viroe69a4adc2006-11-14 20:56:00 -08001472 unsigned short _frag_off;
1473 __be16 *fp;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07001474 fp = skb_header_pointer(skb,
1475 start+offsetof(struct frag_hdr,
1476 frag_off),
1477 sizeof(_frag_off),
1478 &_frag_off);
1479 if (fp == NULL)
Patrick McHardy6d381632006-10-24 16:15:10 -07001480 return -EBADMSG;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07001481
Patrick McHardyb777e0c2006-01-05 12:21:16 -08001482 _frag_off = ntohs(*fp) & ~0x7;
1483 if (_frag_off) {
1484 if (target < 0 &&
1485 ((!ipv6_ext_hdr(hp->nexthdr)) ||
Patrick McHardy337dde72006-11-14 19:49:13 -08001486 hp->nexthdr == NEXTHDR_NONE)) {
Patrick McHardyb777e0c2006-01-05 12:21:16 -08001487 if (fragoff)
1488 *fragoff = _frag_off;
1489 return hp->nexthdr;
1490 }
Patrick McHardy6d381632006-10-24 16:15:10 -07001491 return -ENOENT;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08001492 }
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07001493 hdrlen = 8;
1494 } else if (nexthdr == NEXTHDR_AUTH)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001495 hdrlen = (hp->hdrlen + 2) << 2;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07001496 else
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001497 hdrlen = ipv6_optlen(hp);
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07001498
1499 nexthdr = hp->nexthdr;
1500 len -= hdrlen;
1501 start += hdrlen;
1502 }
1503
1504 *offset = start;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08001505 return nexthdr;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07001506}
1507
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508EXPORT_SYMBOL(ip6t_register_table);
1509EXPORT_SYMBOL(ip6t_unregister_table);
1510EXPORT_SYMBOL(ip6t_do_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511EXPORT_SYMBOL(ip6t_ext_hdr);
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07001512EXPORT_SYMBOL(ipv6_find_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001514module_init(ip6_tables_init);
1515module_exit(ip6_tables_fini);