blob: a33485dc81cb107e1cc343a764126325c9db2c05 [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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
Randy Dunlap4fc268d2006-01-11 12:17:47 -080011
12#include <linux/capability.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020013#include <linux/in.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/skbuff.h>
15#include <linux/kmod.h>
16#include <linux/vmalloc.h>
17#include <linux/netdevice.h>
18#include <linux/module.h>
Randy Dunlap4bdbf6c2006-07-03 19:47:27 -070019#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/icmpv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <net/ipv6.h>
Patrick McHardy3bc3fe52007-12-17 21:50:37 -080022#include <net/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/uaccess.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -080024#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/proc_fs.h>
Patrick McHardy3bc3fe52007-12-17 21:50:37 -080026#include <linux/err.h>
David S. Millerc8923c62005-10-13 14:41:23 -070027#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include <linux/netfilter_ipv6/ip6_tables.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -080030#include <linux/netfilter/x_tables.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080031#include <net/netfilter/nf_log.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33MODULE_LICENSE("GPL");
34MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
35MODULE_DESCRIPTION("IPv6 packet filter");
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037/*#define DEBUG_IP_FIREWALL*/
38/*#define DEBUG_ALLOW_ALL*/ /* Useful for remote debugging */
39/*#define DEBUG_IP_FIREWALL_USER*/
40
41#ifdef DEBUG_IP_FIREWALL
42#define dprintf(format, args...) printk(format , ## args)
43#else
44#define dprintf(format, args...)
45#endif
46
47#ifdef DEBUG_IP_FIREWALL_USER
48#define duprintf(format, args...) printk(format , ## args)
49#else
50#define duprintf(format, args...)
51#endif
52
53#ifdef CONFIG_NETFILTER_DEBUG
54#define IP_NF_ASSERT(x) \
55do { \
56 if (!(x)) \
57 printk("IP_NF_ASSERT: %s:%s:%u\n", \
Harvey Harrison0dc47872008-03-05 20:47:47 -080058 __func__, __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070059} while(0)
60#else
61#define IP_NF_ASSERT(x)
62#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#if 0
65/* All the better to debug you with... */
66#define static
67#define inline
68#endif
69
Harald Welte6b7d31f2005-10-26 09:34:24 +020070/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 We keep a set of rules for each CPU, so we can avoid write-locking
Harald Welte6b7d31f2005-10-26 09:34:24 +020072 them in the softirq when updating the counters and therefore
73 only need to read-lock in the softirq; doing a write_lock_bh() in user
74 context stops packets coming through and allows user context to read
75 the counters or update the rules.
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 Hence the start of any table is given by get_table() below. */
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/* Check for an extension */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090080int
Linus Torvalds1da177e2005-04-16 15:20:36 -070081ip6t_ext_hdr(u8 nexthdr)
82{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090083 return ( (nexthdr == IPPROTO_HOPOPTS) ||
84 (nexthdr == IPPROTO_ROUTING) ||
85 (nexthdr == IPPROTO_FRAGMENT) ||
86 (nexthdr == IPPROTO_ESP) ||
87 (nexthdr == IPPROTO_AH) ||
88 (nexthdr == IPPROTO_NONE) ||
89 (nexthdr == IPPROTO_DSTOPTS) );
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
92/* Returns whether matches rule or not. */
Denys Vlasenko022748a2008-01-14 23:44:05 -080093/* Performance critical - called for every packet */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070094static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -070095ip6_packet_match(const struct sk_buff *skb,
96 const char *indev,
97 const char *outdev,
98 const struct ip6t_ip6 *ip6info,
99 unsigned int *protoff,
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700100 int *fragoff, bool *hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 size_t i;
103 unsigned long ret;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700104 const struct ipv6hdr *ipv6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Jan Engelhardte79ec502007-12-17 22:44:06 -0800106#define FWINV(bool, invflg) ((bool) ^ !!(ip6info->invflags & (invflg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Patrick McHardyf2ffd9e2006-03-20 18:03:16 -0800108 if (FWINV(ipv6_masked_addr_cmp(&ipv6->saddr, &ip6info->smsk,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900109 &ip6info->src), IP6T_INV_SRCIP)
Patrick McHardyf2ffd9e2006-03-20 18:03:16 -0800110 || FWINV(ipv6_masked_addr_cmp(&ipv6->daddr, &ip6info->dmsk,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900111 &ip6info->dst), IP6T_INV_DSTIP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 dprintf("Source or dest mismatch.\n");
113/*
114 dprintf("SRC: %u. Mask: %u. Target: %u.%s\n", ip->saddr,
115 ipinfo->smsk.s_addr, ipinfo->src.s_addr,
116 ipinfo->invflags & IP6T_INV_SRCIP ? " (INV)" : "");
117 dprintf("DST: %u. Mask: %u. Target: %u.%s\n", ip->daddr,
118 ipinfo->dmsk.s_addr, ipinfo->dst.s_addr,
119 ipinfo->invflags & IP6T_INV_DSTIP ? " (INV)" : "");*/
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700120 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 }
122
123 /* Look for ifname matches; this should unroll nicely. */
124 for (i = 0, ret = 0; i < IFNAMSIZ/sizeof(unsigned long); i++) {
125 ret |= (((const unsigned long *)indev)[i]
126 ^ ((const unsigned long *)ip6info->iniface)[i])
127 & ((const unsigned long *)ip6info->iniface_mask)[i];
128 }
129
130 if (FWINV(ret != 0, IP6T_INV_VIA_IN)) {
131 dprintf("VIA in mismatch (%s vs %s).%s\n",
132 indev, ip6info->iniface,
133 ip6info->invflags&IP6T_INV_VIA_IN ?" (INV)":"");
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700134 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
137 for (i = 0, ret = 0; i < IFNAMSIZ/sizeof(unsigned long); i++) {
138 ret |= (((const unsigned long *)outdev)[i]
139 ^ ((const unsigned long *)ip6info->outiface)[i])
140 & ((const unsigned long *)ip6info->outiface_mask)[i];
141 }
142
143 if (FWINV(ret != 0, IP6T_INV_VIA_OUT)) {
144 dprintf("VIA out mismatch (%s vs %s).%s\n",
145 outdev, ip6info->outiface,
146 ip6info->invflags&IP6T_INV_VIA_OUT ?" (INV)":"");
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700147 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
149
150/* ... might want to do something with class and flowlabel here ... */
151
152 /* look for the desired protocol header */
153 if((ip6info->flags & IP6T_F_PROTO)) {
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800154 int protohdr;
155 unsigned short _frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800157 protohdr = ipv6_find_hdr(skb, protoff, -1, &_frag_off);
Patrick McHardy51d8b1a2006-10-24 16:14:04 -0700158 if (protohdr < 0) {
159 if (_frag_off == 0)
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700160 *hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700161 return false;
Patrick McHardy51d8b1a2006-10-24 16:14:04 -0700162 }
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800163 *fragoff = _frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 dprintf("Packet protocol %hi ?= %s%hi.\n",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900166 protohdr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 ip6info->invflags & IP6T_INV_PROTO ? "!":"",
168 ip6info->proto);
169
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800170 if (ip6info->proto == protohdr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 if(ip6info->invflags & IP6T_INV_PROTO) {
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700172 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700174 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
176
177 /* We need match for the '-p all', too! */
178 if ((ip6info->proto != 0) &&
179 !(ip6info->invflags & IP6T_INV_PROTO))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700180 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700182 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
185/* should be ip6 safe */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800186static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187ip6_checkentry(const struct ip6t_ip6 *ipv6)
188{
189 if (ipv6->flags & ~IP6T_F_MASK) {
190 duprintf("Unknown flag bits set: %08X\n",
191 ipv6->flags & ~IP6T_F_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700192 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
194 if (ipv6->invflags & ~IP6T_INV_MASK) {
195 duprintf("Unknown invflag bits set: %08X\n",
196 ipv6->invflags & ~IP6T_INV_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700197 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700199 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
202static unsigned int
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200203ip6t_error(struct sk_buff *skb, const struct xt_target_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
205 if (net_ratelimit())
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200206 printk("ip6_tables: error: `%s'\n",
207 (const char *)par->targinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 return NF_DROP;
210}
211
Denys Vlasenko022748a2008-01-14 23:44:05 -0800212/* Performance critical - called for every packet */
213static inline bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200214do_match(struct ip6t_entry_match *m, const struct sk_buff *skb,
215 struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200217 par->match = m->u.kernel.match;
218 par->matchinfo = m->data;
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 /* Stop iteration if it doesn't match */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200221 if (!m->u.kernel.match->match(skb, par))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700222 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 else
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700224 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
227static inline struct ip6t_entry *
228get_entry(void *base, unsigned int offset)
229{
230 return (struct ip6t_entry *)(base + offset);
231}
232
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700233/* All zeroes == unconditional rule. */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800234/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700235static inline int
236unconditional(const struct ip6t_ip6 *ipv6)
237{
238 unsigned int i;
239
240 for (i = 0; i < sizeof(*ipv6); i++)
241 if (((char *)ipv6)[i])
242 break;
243
244 return (i == sizeof(*ipv6));
245}
246
247#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
248 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
249/* This cries for unification! */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800250static const char *const hooknames[] = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800251 [NF_INET_PRE_ROUTING] = "PREROUTING",
252 [NF_INET_LOCAL_IN] = "INPUT",
253 [NF_INET_FORWARD] = "FORWARD",
254 [NF_INET_LOCAL_OUT] = "OUTPUT",
255 [NF_INET_POST_ROUTING] = "POSTROUTING",
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700256};
257
258enum nf_ip_trace_comments {
259 NF_IP6_TRACE_COMMENT_RULE,
260 NF_IP6_TRACE_COMMENT_RETURN,
261 NF_IP6_TRACE_COMMENT_POLICY,
262};
263
Denys Vlasenko022748a2008-01-14 23:44:05 -0800264static const char *const comments[] = {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700265 [NF_IP6_TRACE_COMMENT_RULE] = "rule",
266 [NF_IP6_TRACE_COMMENT_RETURN] = "return",
267 [NF_IP6_TRACE_COMMENT_POLICY] = "policy",
268};
269
270static struct nf_loginfo trace_loginfo = {
271 .type = NF_LOG_TYPE_LOG,
272 .u = {
273 .log = {
274 .level = 4,
275 .logflags = NF_LOG_MASK,
276 },
277 },
278};
279
Denys Vlasenko022748a2008-01-14 23:44:05 -0800280/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700281static inline int
282get_chainname_rulenum(struct ip6t_entry *s, struct ip6t_entry *e,
283 char *hookname, char **chainname,
284 char **comment, unsigned int *rulenum)
285{
286 struct ip6t_standard_target *t = (void *)ip6t_get_target(s);
287
288 if (strcmp(t->target.u.kernel.target->name, IP6T_ERROR_TARGET) == 0) {
289 /* Head of user chain: ERROR target with chainname */
290 *chainname = t->target.data;
291 (*rulenum) = 0;
292 } else if (s == e) {
293 (*rulenum)++;
294
295 if (s->target_offset == sizeof(struct ip6t_entry)
296 && strcmp(t->target.u.kernel.target->name,
297 IP6T_STANDARD_TARGET) == 0
298 && t->verdict < 0
299 && unconditional(&s->ipv6)) {
300 /* Tail of chains: STANDARD target (return/policy) */
301 *comment = *chainname == hookname
302 ? (char *)comments[NF_IP6_TRACE_COMMENT_POLICY]
303 : (char *)comments[NF_IP6_TRACE_COMMENT_RETURN];
304 }
305 return 1;
306 } else
307 (*rulenum)++;
308
309 return 0;
310}
311
312static void trace_packet(struct sk_buff *skb,
313 unsigned int hook,
314 const struct net_device *in,
315 const struct net_device *out,
Jan Engelhardtecb6f852008-01-31 03:54:47 -0800316 const char *tablename,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700317 struct xt_table_info *private,
318 struct ip6t_entry *e)
319{
320 void *table_base;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200321 const struct ip6t_entry *root;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700322 char *hookname, *chainname, *comment;
323 unsigned int rulenum = 0;
324
325 table_base = (void *)private->entries[smp_processor_id()];
326 root = get_entry(table_base, private->hook_entry[hook]);
327
328 hookname = chainname = (char *)hooknames[hook];
329 comment = (char *)comments[NF_IP6_TRACE_COMMENT_RULE];
330
331 IP6T_ENTRY_ITERATE(root,
332 private->size - private->hook_entry[hook],
333 get_chainname_rulenum,
334 e, hookname, &chainname, &comment, &rulenum);
335
336 nf_log_packet(AF_INET6, hook, skb, in, out, &trace_loginfo,
337 "TRACE: %s:%s:%s:%u ",
338 tablename, chainname, comment, rulenum);
339}
340#endif
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342/* Returns one of the generic firewall policies, like NF_ACCEPT. */
343unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700344ip6t_do_table(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 unsigned int hook,
346 const struct net_device *in,
347 const struct net_device *out,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700348 struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Harald Welte6b7d31f2005-10-26 09:34:24 +0200350 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700351 bool hotdrop = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 /* Initializing verdict to NF_DROP keeps gcc happy. */
353 unsigned int verdict = NF_DROP;
354 const char *indev, *outdev;
355 void *table_base;
356 struct ip6t_entry *e, *back;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800357 struct xt_table_info *private;
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200358 struct xt_match_param mtpar;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200359 struct xt_target_param tgpar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 /* Initialization */
362 indev = in ? in->name : nulldevname;
363 outdev = out ? out->name : nulldevname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 /* We handle fragments by dealing with the first fragment as
365 * if it was a normal packet. All other fragments are treated
366 * normally, except that they will NEVER match rules that ask
367 * things we don't know, ie. tcp syn flag or ports). If the
368 * rule is also a fragment-specific rule, non-fragments won't
369 * match it. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200370 mtpar.hotdrop = &hotdrop;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200371 mtpar.in = tgpar.in = in;
372 mtpar.out = tgpar.out = out;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200373 mtpar.family = tgpar.family = NFPROTO_IPV6;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200374 tgpar.hooknum = hook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 read_lock_bh(&table->lock);
377 IP_NF_ASSERT(table->valid_hooks & (1 << hook));
Patrick McHardy9c547952007-12-17 21:52:00 -0800378 private = table->private;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800379 table_base = (void *)private->entries[smp_processor_id()];
380 e = get_entry(table_base, private->hook_entry[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 /* For return from builtin chain */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800383 back = get_entry(table_base, private->underflow[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 do {
386 IP_NF_ASSERT(e);
387 IP_NF_ASSERT(back);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700388 if (ip6_packet_match(skb, indev, outdev, &e->ipv6,
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200389 &mtpar.thoff, &mtpar.fragoff, &hotdrop)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 struct ip6t_entry_target *t;
391
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200392 if (IP6T_MATCH_ITERATE(e, do_match, skb, &mtpar) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 goto no_match;
394
395 ADD_COUNTER(e->counters,
Patrick McHardy72f36ec2007-12-17 21:48:02 -0800396 ntohs(ipv6_hdr(skb)->payload_len) +
397 sizeof(struct ipv6hdr), 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 t = ip6t_get_target(e);
400 IP_NF_ASSERT(t->u.kernel.target);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700401
402#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
403 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
404 /* The packet is traced: log it */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700405 if (unlikely(skb->nf_trace))
406 trace_packet(skb, hook, in, out,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700407 table->name, private, e);
408#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 /* Standard target? */
410 if (!t->u.kernel.target->target) {
411 int v;
412
413 v = ((struct ip6t_standard_target *)t)->verdict;
414 if (v < 0) {
415 /* Pop from stack? */
416 if (v != IP6T_RETURN) {
417 verdict = (unsigned)(-v) - 1;
418 break;
419 }
420 e = back;
421 back = get_entry(table_base,
422 back->comefrom);
423 continue;
424 }
Patrick McHardy05465342005-08-21 23:31:43 -0700425 if (table_base + v != (void *)e + e->next_offset
426 && !(e->ipv6.flags & IP6T_F_GOTO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 /* Save old back ptr in next entry */
428 struct ip6t_entry *next
429 = (void *)e + e->next_offset;
430 next->comefrom
431 = (void *)back - table_base;
432 /* set back pointer to next entry */
433 back = next;
434 }
435
436 e = get_entry(table_base, v);
437 } else {
438 /* Targets which reenter must return
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900439 abs. verdicts */
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200440 tgpar.target = t->u.kernel.target;
441 tgpar.targinfo = t->data;
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443#ifdef CONFIG_NETFILTER_DEBUG
444 ((struct ip6t_entry *)table_base)->comefrom
445 = 0xeeeeeeec;
446#endif
Herbert Xu3db05fe2007-10-15 00:53:15 -0700447 verdict = t->u.kernel.target->target(skb,
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200448 &tgpar);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450#ifdef CONFIG_NETFILTER_DEBUG
451 if (((struct ip6t_entry *)table_base)->comefrom
452 != 0xeeeeeeec
453 && verdict == IP6T_CONTINUE) {
454 printk("Target %s reentered!\n",
455 t->u.kernel.target->name);
456 verdict = NF_DROP;
457 }
458 ((struct ip6t_entry *)table_base)->comefrom
459 = 0x57acc001;
460#endif
461 if (verdict == IP6T_CONTINUE)
462 e = (void *)e + e->next_offset;
463 else
464 /* Verdict */
465 break;
466 }
467 } else {
468
469 no_match:
470 e = (void *)e + e->next_offset;
471 }
472 } while (!hotdrop);
473
474#ifdef CONFIG_NETFILTER_DEBUG
Randy Dunlap4bdbf6c2006-07-03 19:47:27 -0700475 ((struct ip6t_entry *)table_base)->comefrom = NETFILTER_LINK_POISON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476#endif
477 read_unlock_bh(&table->lock);
478
479#ifdef DEBUG_ALLOW_ALL
480 return NF_ACCEPT;
481#else
482 if (hotdrop)
483 return NF_DROP;
484 else return verdict;
485#endif
486}
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488/* Figures out from what hook each rule can be called: returns 0 if
489 there are loops. Puts hook bitmask in comefrom. */
490static int
Harald Welte2e4e6a12006-01-12 13:30:04 -0800491mark_source_chains(struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800492 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
494 unsigned int hook;
495
496 /* No recursion; use packet counter to save back ptrs (reset
497 to 0 as we leave), and comefrom to save source hook bitmask */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800498 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 unsigned int pos = newinfo->hook_entry[hook];
Patrick McHardy9c547952007-12-17 21:52:00 -0800500 struct ip6t_entry *e = (struct ip6t_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 if (!(valid_hooks & (1 << hook)))
503 continue;
504
505 /* Set initial back pointer. */
506 e->counters.pcnt = pos;
507
508 for (;;) {
509 struct ip6t_standard_target *t
510 = (void *)ip6t_get_target(e);
Patrick McHardy9c547952007-12-17 21:52:00 -0800511 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800513 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 printk("iptables: loop hook %u pos %u %08X.\n",
515 hook, pos, e->comefrom);
516 return 0;
517 }
Patrick McHardy9c547952007-12-17 21:52:00 -0800518 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 /* Unconditional return/END. */
Al Viroe1b4b9f2006-12-12 00:29:52 -0800521 if ((e->target_offset == sizeof(struct ip6t_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 && (strcmp(t->target.u.user.name,
523 IP6T_STANDARD_TARGET) == 0)
524 && t->verdict < 0
Al Viroe1b4b9f2006-12-12 00:29:52 -0800525 && unconditional(&e->ipv6)) || visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 unsigned int oldpos, size;
527
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800528 if (t->verdict < -NF_MAX_VERDICT - 1) {
529 duprintf("mark_source_chains: bad "
530 "negative verdict (%i)\n",
531 t->verdict);
532 return 0;
533 }
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 /* Return: backtrack through the last
536 big jump. */
537 do {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800538 e->comefrom ^= (1<<NF_INET_NUMHOOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539#ifdef DEBUG_IP_FIREWALL_USER
540 if (e->comefrom
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800541 & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 duprintf("Back unset "
543 "on hook %u "
544 "rule %u\n",
545 hook, pos);
546 }
547#endif
548 oldpos = pos;
549 pos = e->counters.pcnt;
550 e->counters.pcnt = 0;
551
552 /* We're at the start. */
553 if (pos == oldpos)
554 goto next;
555
556 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800557 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 } while (oldpos == pos + e->next_offset);
559
560 /* Move along one */
561 size = e->next_offset;
562 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800563 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 e->counters.pcnt = pos;
565 pos += size;
566 } else {
567 int newpos = t->verdict;
568
569 if (strcmp(t->target.u.user.name,
570 IP6T_STANDARD_TARGET) == 0
571 && newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800572 if (newpos > newinfo->size -
573 sizeof(struct ip6t_entry)) {
574 duprintf("mark_source_chains: "
575 "bad verdict (%i)\n",
576 newpos);
577 return 0;
578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 /* This a jump; chase it. */
580 duprintf("Jump rule %u -> %u\n",
581 pos, newpos);
582 } else {
583 /* ... this is a fallthru */
584 newpos = pos + e->next_offset;
585 }
586 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800587 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 e->counters.pcnt = pos;
589 pos = newpos;
590 }
591 }
592 next:
593 duprintf("Finished chain %u\n", hook);
594 }
595 return 1;
596}
597
Denys Vlasenko022748a2008-01-14 23:44:05 -0800598static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599cleanup_match(struct ip6t_entry_match *m, unsigned int *i)
600{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200601 struct xt_mtdtor_param par;
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 if (i && (*i)-- == 0)
604 return 1;
605
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200606 par.match = m->u.kernel.match;
607 par.matchinfo = m->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200608 par.family = NFPROTO_IPV6;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200609 if (par.match->destroy != NULL)
610 par.match->destroy(&par);
611 module_put(par.match->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return 0;
613}
614
Denys Vlasenko022748a2008-01-14 23:44:05 -0800615static int
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800616check_entry(struct ip6t_entry *e, const char *name)
617{
618 struct ip6t_entry_target *t;
619
620 if (!ip6_checkentry(&e->ipv6)) {
621 duprintf("ip_tables: ip check failed %p %s.\n", e, name);
622 return -EINVAL;
623 }
624
625 if (e->target_offset + sizeof(struct ip6t_entry_target) >
626 e->next_offset)
627 return -EINVAL;
628
629 t = ip6t_get_target(e);
630 if (e->target_offset + t->u.target_size > e->next_offset)
631 return -EINVAL;
632
633 return 0;
634}
635
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200636static int check_match(struct ip6t_entry_match *m, struct xt_mtchk_param *par,
637 unsigned int *i)
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800638{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200639 const struct ip6t_ip6 *ipv6 = par->entryinfo;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800640 int ret;
641
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200642 par->match = m->u.kernel.match;
643 par->matchinfo = m->data;
644
Jan Engelhardt916a9172008-10-08 11:35:20 +0200645 ret = xt_check_match(par, m->u.match_size - sizeof(*m),
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200646 ipv6->proto, ipv6->invflags & IP6T_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200647 if (ret < 0) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800648 duprintf("ip_tables: check failed for `%s'.\n",
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200649 par.match->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200650 return ret;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800651 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200652 ++*i;
653 return 0;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800654}
655
Denys Vlasenko022748a2008-01-14 23:44:05 -0800656static int
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200657find_check_match(struct ip6t_entry_match *m, struct xt_mtchk_param *par,
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800658 unsigned int *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800660 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800661 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Harald Welte2e4e6a12006-01-12 13:30:04 -0800663 match = try_then_request_module(xt_find_match(AF_INET6, m->u.user.name,
Patrick McHardy9c547952007-12-17 21:52:00 -0800664 m->u.user.revision),
Harald Welte6b7d31f2005-10-26 09:34:24 +0200665 "ip6t_%s", m->u.user.name);
666 if (IS_ERR(match) || !match) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800667 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Harald Welte6b7d31f2005-10-26 09:34:24 +0200668 return match ? PTR_ERR(match) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
670 m->u.kernel.match = match;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200672 ret = check_match(m, par, i);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800673 if (ret)
674 goto err;
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800677err:
678 module_put(m->u.kernel.match->me);
679 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
681
Denys Vlasenko022748a2008-01-14 23:44:05 -0800682static int check_target(struct ip6t_entry *e, const char *name)
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800683{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200684 struct ip6t_entry_target *t = ip6t_get_target(e);
685 struct xt_tgchk_param par = {
686 .table = name,
687 .entryinfo = e,
688 .target = t->u.kernel.target,
689 .targinfo = t->data,
690 .hook_mask = e->comefrom,
Jan Engelhardt916a9172008-10-08 11:35:20 +0200691 .family = NFPROTO_IPV6,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200692 };
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800693 int ret;
694
695 t = ip6t_get_target(e);
Jan Engelhardt916a9172008-10-08 11:35:20 +0200696 ret = xt_check_target(&par, t->u.target_size - sizeof(*t),
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200697 e->ipv6.proto, e->ipv6.invflags & IP6T_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200698 if (ret < 0) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800699 duprintf("ip_tables: check failed for `%s'.\n",
700 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200701 return ret;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800702 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200703 return 0;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800704}
705
Denys Vlasenko022748a2008-01-14 23:44:05 -0800706static int
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800707find_check_entry(struct ip6t_entry *e, const char *name, unsigned int size,
708 unsigned int *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
710 struct ip6t_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800711 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 int ret;
713 unsigned int j;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200714 struct xt_mtchk_param mtpar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800716 ret = check_entry(e, name);
717 if (ret)
718 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 j = 0;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200721 mtpar.table = name;
722 mtpar.entryinfo = &e->ipv6;
723 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200724 mtpar.family = NFPROTO_IPV6;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200725 ret = IP6T_MATCH_ITERATE(e, find_check_match, &mtpar, &j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (ret != 0)
727 goto cleanup_matches;
728
729 t = ip6t_get_target(e);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800730 target = try_then_request_module(xt_find_target(AF_INET6,
731 t->u.user.name,
732 t->u.user.revision),
Harald Welte6b7d31f2005-10-26 09:34:24 +0200733 "ip6t_%s", t->u.user.name);
734 if (IS_ERR(target) || !target) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800735 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Harald Welte6b7d31f2005-10-26 09:34:24 +0200736 ret = target ? PTR_ERR(target) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 goto cleanup_matches;
738 }
739 t->u.kernel.target = target;
Harald Welte6b7d31f2005-10-26 09:34:24 +0200740
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800741 ret = check_target(e, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800742 if (ret)
743 goto err;
744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 (*i)++;
746 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800747 err:
748 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 cleanup_matches:
750 IP6T_MATCH_ITERATE(e, cleanup_match, &j);
751 return ret;
752}
753
Denys Vlasenko022748a2008-01-14 23:44:05 -0800754static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755check_entry_size_and_hooks(struct ip6t_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800756 struct xt_table_info *newinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 unsigned char *base,
758 unsigned char *limit,
759 const unsigned int *hook_entries,
760 const unsigned int *underflows,
761 unsigned int *i)
762{
763 unsigned int h;
764
765 if ((unsigned long)e % __alignof__(struct ip6t_entry) != 0
766 || (unsigned char *)e + sizeof(struct ip6t_entry) >= limit) {
767 duprintf("Bad offset %p\n", e);
768 return -EINVAL;
769 }
770
771 if (e->next_offset
772 < sizeof(struct ip6t_entry) + sizeof(struct ip6t_entry_target)) {
773 duprintf("checking: element %p size %u\n",
774 e, e->next_offset);
775 return -EINVAL;
776 }
777
778 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800779 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 if ((unsigned char *)e - base == hook_entries[h])
781 newinfo->hook_entry[h] = hook_entries[h];
782 if ((unsigned char *)e - base == underflows[h])
783 newinfo->underflow[h] = underflows[h];
784 }
785
786 /* FIXME: underflows must be unconditional, standard verdicts
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900787 < 0 (not IP6T_RETURN). --RR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800790 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 e->comefrom = 0;
792
793 (*i)++;
794 return 0;
795}
796
Denys Vlasenko022748a2008-01-14 23:44:05 -0800797static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798cleanup_entry(struct ip6t_entry *e, unsigned int *i)
799{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200800 struct xt_tgdtor_param par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 struct ip6t_entry_target *t;
802
803 if (i && (*i)-- == 0)
804 return 1;
805
806 /* Cleanup all matches */
807 IP6T_MATCH_ITERATE(e, cleanup_match, NULL);
808 t = ip6t_get_target(e);
Jan Engelhardta2df1642008-10-08 11:35:19 +0200809
810 par.target = t->u.kernel.target;
811 par.targinfo = t->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200812 par.family = NFPROTO_IPV6;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200813 if (par.target->destroy != NULL)
814 par.target->destroy(&par);
815 module_put(par.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 return 0;
817}
818
819/* Checks and translates the user-supplied table segment (held in
820 newinfo) */
821static int
822translate_table(const char *name,
823 unsigned int valid_hooks,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800824 struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800825 void *entry0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 unsigned int size,
827 unsigned int number,
828 const unsigned int *hook_entries,
829 const unsigned int *underflows)
830{
831 unsigned int i;
832 int ret;
833
834 newinfo->size = size;
835 newinfo->number = number;
836
837 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800838 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 newinfo->hook_entry[i] = 0xFFFFFFFF;
840 newinfo->underflow[i] = 0xFFFFFFFF;
841 }
842
843 duprintf("translate_table: size %u\n", newinfo->size);
844 i = 0;
845 /* Walk through entries, checking offsets. */
Eric Dumazet31836062005-12-13 23:13:48 -0800846 ret = IP6T_ENTRY_ITERATE(entry0, newinfo->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 check_entry_size_and_hooks,
848 newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800849 entry0,
850 entry0 + size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 hook_entries, underflows, &i);
852 if (ret != 0)
853 return ret;
854
855 if (i != number) {
856 duprintf("translate_table: %u not %u entries\n",
857 i, number);
858 return -EINVAL;
859 }
860
861 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800862 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 /* Only hooks which are valid */
864 if (!(valid_hooks & (1 << i)))
865 continue;
866 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
867 duprintf("Invalid hook entry %u %u\n",
868 i, hook_entries[i]);
869 return -EINVAL;
870 }
871 if (newinfo->underflow[i] == 0xFFFFFFFF) {
872 duprintf("Invalid underflow %u %u\n",
873 i, underflows[i]);
874 return -EINVAL;
875 }
876 }
877
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800878 if (!mark_source_chains(newinfo, valid_hooks, entry0))
879 return -ELOOP;
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 /* Finally, each sanity check must pass */
882 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -0800883 ret = IP6T_ENTRY_ITERATE(entry0, newinfo->size,
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800884 find_check_entry, name, size, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800886 if (ret != 0) {
887 IP6T_ENTRY_ITERATE(entry0, newinfo->size,
888 cleanup_entry, &i);
889 return ret;
890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 /* And one copy for every other CPU */
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700893 for_each_possible_cpu(i) {
Eric Dumazet31836062005-12-13 23:13:48 -0800894 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
895 memcpy(newinfo->entries[i], entry0, newinfo->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
897
Patrick McHardy9c547952007-12-17 21:52:00 -0800898 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899}
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901/* Gets counters. */
902static inline int
903add_entry_to_counter(const struct ip6t_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800904 struct xt_counters total[],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 unsigned int *i)
906{
907 ADD_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
908
909 (*i)++;
910 return 0;
911}
912
Eric Dumazet31836062005-12-13 23:13:48 -0800913static inline int
914set_entry_to_counter(const struct ip6t_entry *e,
915 struct ip6t_counters total[],
916 unsigned int *i)
917{
918 SET_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
919
920 (*i)++;
921 return 0;
922}
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800925get_counters(const struct xt_table_info *t,
926 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
928 unsigned int cpu;
929 unsigned int i;
Eric Dumazet31836062005-12-13 23:13:48 -0800930 unsigned int curcpu;
931
932 /* Instead of clearing (by a previous call to memset())
933 * the counters and using adds, we set the counters
934 * with data used by 'current' CPU
935 * We dont care about preemption here.
936 */
937 curcpu = raw_smp_processor_id();
938
939 i = 0;
940 IP6T_ENTRY_ITERATE(t->entries[curcpu],
941 t->size,
942 set_entry_to_counter,
943 counters,
944 &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700946 for_each_possible_cpu(cpu) {
Eric Dumazet31836062005-12-13 23:13:48 -0800947 if (cpu == curcpu)
948 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -0800950 IP6T_ENTRY_ITERATE(t->entries[cpu],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 t->size,
952 add_entry_to_counter,
953 counters,
954 &i);
955 }
956}
957
Denys Vlasenko022748a2008-01-14 23:44:05 -0800958static struct xt_counters *alloc_counters(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800960 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800961 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200962 const struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964 /* We need atomic snapshot of counters: rest doesn't change
965 (other than comefrom, which userspace doesn't care
966 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800967 countersize = sizeof(struct xt_counters) * private->number;
Patrick McHardy3b84e922007-12-17 21:48:33 -0800968 counters = vmalloc_node(countersize, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 if (counters == NULL)
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800971 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 /* First, sum counters... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 write_lock_bh(&table->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800975 get_counters(private, counters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 write_unlock_bh(&table->lock);
977
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800978 return counters;
979}
980
981static int
982copy_entries_to_user(unsigned int total_size,
983 struct xt_table *table,
984 void __user *userptr)
985{
986 unsigned int off, num;
987 struct ip6t_entry *e;
988 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200989 const struct xt_table_info *private = table->private;
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800990 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200991 const void *loc_cpu_entry;
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800992
993 counters = alloc_counters(table);
994 if (IS_ERR(counters))
995 return PTR_ERR(counters);
996
Patrick McHardy9c547952007-12-17 21:52:00 -0800997 /* choose the copy that is on our node/cpu, ...
998 * This choice is lazy (because current thread is
999 * allowed to migrate to another cpu)
1000 */
Harald Welte2e4e6a12006-01-12 13:30:04 -08001001 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -08001002 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 ret = -EFAULT;
1004 goto free_counters;
1005 }
1006
1007 /* FIXME: use iterator macros --RR */
1008 /* ... then go back and fix counters and names */
1009 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
1010 unsigned int i;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001011 const struct ip6t_entry_match *m;
1012 const struct ip6t_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Eric Dumazet31836062005-12-13 23:13:48 -08001014 e = (struct ip6t_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 if (copy_to_user(userptr + off
1016 + offsetof(struct ip6t_entry, counters),
1017 &counters[num],
1018 sizeof(counters[num])) != 0) {
1019 ret = -EFAULT;
1020 goto free_counters;
1021 }
1022
1023 for (i = sizeof(struct ip6t_entry);
1024 i < e->target_offset;
1025 i += m->u.match_size) {
1026 m = (void *)e + i;
1027
1028 if (copy_to_user(userptr + off + i
1029 + offsetof(struct ip6t_entry_match,
1030 u.user.name),
1031 m->u.kernel.match->name,
1032 strlen(m->u.kernel.match->name)+1)
1033 != 0) {
1034 ret = -EFAULT;
1035 goto free_counters;
1036 }
1037 }
1038
1039 t = ip6t_get_target(e);
1040 if (copy_to_user(userptr + off + e->target_offset
1041 + offsetof(struct ip6t_entry_target,
1042 u.user.name),
1043 t->u.kernel.target->name,
1044 strlen(t->u.kernel.target->name)+1) != 0) {
1045 ret = -EFAULT;
1046 goto free_counters;
1047 }
1048 }
1049
1050 free_counters:
1051 vfree(counters);
1052 return ret;
1053}
1054
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001055#ifdef CONFIG_COMPAT
1056static void compat_standard_from_user(void *dst, void *src)
1057{
1058 int v = *(compat_int_t *)src;
1059
1060 if (v > 0)
1061 v += xt_compat_calc_jump(AF_INET6, v);
1062 memcpy(dst, &v, sizeof(v));
1063}
1064
1065static int compat_standard_to_user(void __user *dst, void *src)
1066{
1067 compat_int_t cv = *(int *)src;
1068
1069 if (cv > 0)
1070 cv -= xt_compat_calc_jump(AF_INET6, cv);
1071 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
1072}
1073
1074static inline int
1075compat_calc_match(struct ip6t_entry_match *m, int *size)
1076{
1077 *size += xt_compat_match_offset(m->u.kernel.match);
1078 return 0;
1079}
1080
1081static int compat_calc_entry(struct ip6t_entry *e,
1082 const struct xt_table_info *info,
1083 void *base, struct xt_table_info *newinfo)
1084{
1085 struct ip6t_entry_target *t;
1086 unsigned int entry_offset;
1087 int off, i, ret;
1088
1089 off = sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1090 entry_offset = (void *)e - base;
1091 IP6T_MATCH_ITERATE(e, compat_calc_match, &off);
1092 t = ip6t_get_target(e);
1093 off += xt_compat_target_offset(t->u.kernel.target);
1094 newinfo->size -= off;
1095 ret = xt_compat_add_offset(AF_INET6, entry_offset, off);
1096 if (ret)
1097 return ret;
1098
1099 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1100 if (info->hook_entry[i] &&
1101 (e < (struct ip6t_entry *)(base + info->hook_entry[i])))
1102 newinfo->hook_entry[i] -= off;
1103 if (info->underflow[i] &&
1104 (e < (struct ip6t_entry *)(base + info->underflow[i])))
1105 newinfo->underflow[i] -= off;
1106 }
1107 return 0;
1108}
1109
1110static int compat_table_info(const struct xt_table_info *info,
1111 struct xt_table_info *newinfo)
1112{
1113 void *loc_cpu_entry;
1114
1115 if (!newinfo || !info)
1116 return -EINVAL;
1117
1118 /* we dont care about newinfo->entries[] */
1119 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1120 newinfo->initial_entries = 0;
1121 loc_cpu_entry = info->entries[raw_smp_processor_id()];
1122 return IP6T_ENTRY_ITERATE(loc_cpu_entry, info->size,
1123 compat_calc_entry, info, loc_cpu_entry,
1124 newinfo);
1125}
1126#endif
1127
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001128static int get_info(struct net *net, void __user *user, int *len, int compat)
Patrick McHardy433665c2007-12-17 21:50:05 -08001129{
1130 char name[IP6T_TABLE_MAXNAMELEN];
1131 struct xt_table *t;
1132 int ret;
1133
1134 if (*len != sizeof(struct ip6t_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001135 duprintf("length %u != %zu\n", *len,
Patrick McHardy433665c2007-12-17 21:50:05 -08001136 sizeof(struct ip6t_getinfo));
1137 return -EINVAL;
1138 }
1139
1140 if (copy_from_user(name, user, sizeof(name)) != 0)
1141 return -EFAULT;
1142
1143 name[IP6T_TABLE_MAXNAMELEN-1] = '\0';
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001144#ifdef CONFIG_COMPAT
1145 if (compat)
1146 xt_compat_lock(AF_INET6);
1147#endif
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001148 t = try_then_request_module(xt_find_table_lock(net, AF_INET6, name),
Patrick McHardy433665c2007-12-17 21:50:05 -08001149 "ip6table_%s", name);
1150 if (t && !IS_ERR(t)) {
1151 struct ip6t_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001152 const struct xt_table_info *private = t->private;
Patrick McHardy433665c2007-12-17 21:50:05 -08001153
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001154#ifdef CONFIG_COMPAT
1155 if (compat) {
1156 struct xt_table_info tmp;
1157 ret = compat_table_info(private, &tmp);
1158 xt_compat_flush_offsets(AF_INET6);
1159 private = &tmp;
1160 }
1161#endif
Patrick McHardy433665c2007-12-17 21:50:05 -08001162 info.valid_hooks = t->valid_hooks;
1163 memcpy(info.hook_entry, private->hook_entry,
1164 sizeof(info.hook_entry));
1165 memcpy(info.underflow, private->underflow,
1166 sizeof(info.underflow));
1167 info.num_entries = private->number;
1168 info.size = private->size;
Patrick McHardyb5dd6742007-12-17 21:52:35 -08001169 strcpy(info.name, name);
Patrick McHardy433665c2007-12-17 21:50:05 -08001170
1171 if (copy_to_user(user, &info, *len) != 0)
1172 ret = -EFAULT;
1173 else
1174 ret = 0;
1175
1176 xt_table_unlock(t);
1177 module_put(t->me);
1178 } else
1179 ret = t ? PTR_ERR(t) : -ENOENT;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001180#ifdef CONFIG_COMPAT
1181 if (compat)
1182 xt_compat_unlock(AF_INET6);
1183#endif
Patrick McHardy433665c2007-12-17 21:50:05 -08001184 return ret;
1185}
1186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001188get_entries(struct net *net, struct ip6t_get_entries __user *uptr, int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
1190 int ret;
Patrick McHardyd9243572007-12-17 21:50:22 -08001191 struct ip6t_get_entries get;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001192 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Patrick McHardyd9243572007-12-17 21:50:22 -08001194 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001195 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Patrick McHardyd9243572007-12-17 21:50:22 -08001196 return -EINVAL;
1197 }
1198 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1199 return -EFAULT;
1200 if (*len != sizeof(struct ip6t_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001201 duprintf("get_entries: %u != %zu\n",
1202 *len, sizeof(get) + get.size);
Patrick McHardyd9243572007-12-17 21:50:22 -08001203 return -EINVAL;
1204 }
1205
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001206 t = xt_find_table_lock(net, AF_INET6, get.name);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001207 if (t && !IS_ERR(t)) {
Harald Welte2e4e6a12006-01-12 13:30:04 -08001208 struct xt_table_info *private = t->private;
1209 duprintf("t->private->number = %u\n", private->number);
Patrick McHardyd9243572007-12-17 21:50:22 -08001210 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001211 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 t, uptr->entrytable);
1213 else {
1214 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001215 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001216 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 }
Harald Welte6b7d31f2005-10-26 09:34:24 +02001218 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001219 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 } else
Harald Welte6b7d31f2005-10-26 09:34:24 +02001221 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 return ret;
1224}
1225
1226static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001227__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001228 struct xt_table_info *newinfo, unsigned int num_counters,
1229 void __user *counters_ptr)
1230{
1231 int ret;
1232 struct xt_table *t;
1233 struct xt_table_info *oldinfo;
1234 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001235 const void *loc_cpu_old_entry;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001236
1237 ret = 0;
1238 counters = vmalloc_node(num_counters * sizeof(struct xt_counters),
1239 numa_node_id());
1240 if (!counters) {
1241 ret = -ENOMEM;
1242 goto out;
1243 }
1244
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001245 t = try_then_request_module(xt_find_table_lock(net, AF_INET6, name),
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001246 "ip6table_%s", name);
1247 if (!t || IS_ERR(t)) {
1248 ret = t ? PTR_ERR(t) : -ENOENT;
1249 goto free_newinfo_counters_untrans;
1250 }
1251
1252 /* You lied! */
1253 if (valid_hooks != t->valid_hooks) {
1254 duprintf("Valid hook crap: %08X vs %08X\n",
1255 valid_hooks, t->valid_hooks);
1256 ret = -EINVAL;
1257 goto put_module;
1258 }
1259
1260 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1261 if (!oldinfo)
1262 goto put_module;
1263
1264 /* Update module usage count based on number of rules */
1265 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1266 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1267 if ((oldinfo->number > oldinfo->initial_entries) ||
1268 (newinfo->number <= oldinfo->initial_entries))
1269 module_put(t->me);
1270 if ((oldinfo->number > oldinfo->initial_entries) &&
1271 (newinfo->number <= oldinfo->initial_entries))
1272 module_put(t->me);
1273
1274 /* Get the old counters. */
1275 get_counters(oldinfo, counters);
1276 /* Decrease module usage counts and free resource */
1277 loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
1278 IP6T_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry,
1279 NULL);
1280 xt_free_table_info(oldinfo);
1281 if (copy_to_user(counters_ptr, counters,
1282 sizeof(struct xt_counters) * num_counters) != 0)
1283 ret = -EFAULT;
1284 vfree(counters);
1285 xt_table_unlock(t);
1286 return ret;
1287
1288 put_module:
1289 module_put(t->me);
1290 xt_table_unlock(t);
1291 free_newinfo_counters_untrans:
1292 vfree(counters);
1293 out:
1294 return ret;
1295}
1296
1297static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001298do_replace(struct net *net, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
1300 int ret;
1301 struct ip6t_replace tmp;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001302 struct xt_table_info *newinfo;
1303 void *loc_cpu_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1306 return -EFAULT;
1307
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001308 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001309 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1310 return -ENOMEM;
1311
Harald Welte2e4e6a12006-01-12 13:30:04 -08001312 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 if (!newinfo)
1314 return -ENOMEM;
1315
Eric Dumazet31836062005-12-13 23:13:48 -08001316 /* choose the copy that is on our node/cpu */
1317 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1318 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 tmp.size) != 0) {
1320 ret = -EFAULT;
1321 goto free_newinfo;
1322 }
1323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 ret = translate_table(tmp.name, tmp.valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08001325 newinfo, loc_cpu_entry, tmp.size, tmp.num_entries,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 tmp.hook_entry, tmp.underflow);
1327 if (ret != 0)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001328 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330 duprintf("ip_tables: Translated table\n");
1331
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001332 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001333 tmp.num_counters, tmp.counters);
1334 if (ret)
1335 goto free_newinfo_untrans;
1336 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001338 free_newinfo_untrans:
1339 IP6T_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001341 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 return ret;
1343}
1344
1345/* We're lazy, and add to the first CPU; overflow works its fey magic
1346 * and everything is OK. */
1347static inline int
1348add_counter_to_entry(struct ip6t_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001349 const struct xt_counters addme[],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 unsigned int *i)
1351{
1352#if 0
1353 duprintf("add_counter: Entry %u %lu/%lu + %lu/%lu\n",
1354 *i,
1355 (long unsigned int)e->counters.pcnt,
1356 (long unsigned int)e->counters.bcnt,
1357 (long unsigned int)addme[*i].pcnt,
1358 (long unsigned int)addme[*i].bcnt);
1359#endif
1360
1361 ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt);
1362
1363 (*i)++;
1364 return 0;
1365}
1366
1367static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001368do_add_counters(struct net *net, void __user *user, unsigned int len,
1369 int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
1371 unsigned int i;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001372 struct xt_counters_info tmp;
1373 struct xt_counters *paddc;
1374 unsigned int num_counters;
1375 char *name;
1376 int size;
1377 void *ptmp;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001378 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001379 const struct xt_table_info *private;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001380 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001381 const void *loc_cpu_entry;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001382#ifdef CONFIG_COMPAT
1383 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001385 if (compat) {
1386 ptmp = &compat_tmp;
1387 size = sizeof(struct compat_xt_counters_info);
1388 } else
1389#endif
1390 {
1391 ptmp = &tmp;
1392 size = sizeof(struct xt_counters_info);
1393 }
1394
1395 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 return -EFAULT;
1397
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001398#ifdef CONFIG_COMPAT
1399 if (compat) {
1400 num_counters = compat_tmp.num_counters;
1401 name = compat_tmp.name;
1402 } else
1403#endif
1404 {
1405 num_counters = tmp.num_counters;
1406 name = tmp.name;
1407 }
1408
1409 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 return -EINVAL;
1411
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001412 paddc = vmalloc_node(len - size, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 if (!paddc)
1414 return -ENOMEM;
1415
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001416 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 ret = -EFAULT;
1418 goto free;
1419 }
1420
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001421 t = xt_find_table_lock(net, AF_INET6, name);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001422 if (!t || IS_ERR(t)) {
1423 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 goto free;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
1427 write_lock_bh(&t->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001428 private = t->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001429 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 ret = -EINVAL;
1431 goto unlock_up_free;
1432 }
1433
1434 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001435 /* Choose the copy that is on our node */
Patrick McHardyda4d0f62007-12-17 21:52:52 -08001436 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -08001437 IP6T_ENTRY_ITERATE(loc_cpu_entry,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001438 private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 add_counter_to_entry,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001440 paddc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 &i);
1442 unlock_up_free:
1443 write_unlock_bh(&t->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001444 xt_table_unlock(t);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001445 module_put(t->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 free:
1447 vfree(paddc);
1448
1449 return ret;
1450}
1451
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001452#ifdef CONFIG_COMPAT
1453struct compat_ip6t_replace {
1454 char name[IP6T_TABLE_MAXNAMELEN];
1455 u32 valid_hooks;
1456 u32 num_entries;
1457 u32 size;
1458 u32 hook_entry[NF_INET_NUMHOOKS];
1459 u32 underflow[NF_INET_NUMHOOKS];
1460 u32 num_counters;
1461 compat_uptr_t counters; /* struct ip6t_counters * */
1462 struct compat_ip6t_entry entries[0];
1463};
1464
1465static int
1466compat_copy_entry_to_user(struct ip6t_entry *e, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001467 unsigned int *size, struct xt_counters *counters,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001468 unsigned int *i)
1469{
1470 struct ip6t_entry_target *t;
1471 struct compat_ip6t_entry __user *ce;
1472 u_int16_t target_offset, next_offset;
1473 compat_uint_t origsize;
1474 int ret;
1475
1476 ret = -EFAULT;
1477 origsize = *size;
1478 ce = (struct compat_ip6t_entry __user *)*dstptr;
1479 if (copy_to_user(ce, e, sizeof(struct ip6t_entry)))
1480 goto out;
1481
1482 if (copy_to_user(&ce->counters, &counters[*i], sizeof(counters[*i])))
1483 goto out;
1484
1485 *dstptr += sizeof(struct compat_ip6t_entry);
1486 *size -= sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1487
1488 ret = IP6T_MATCH_ITERATE(e, xt_compat_match_to_user, dstptr, size);
1489 target_offset = e->target_offset - (origsize - *size);
1490 if (ret)
1491 goto out;
1492 t = ip6t_get_target(e);
1493 ret = xt_compat_target_to_user(t, dstptr, size);
1494 if (ret)
1495 goto out;
1496 ret = -EFAULT;
1497 next_offset = e->next_offset - (origsize - *size);
1498 if (put_user(target_offset, &ce->target_offset))
1499 goto out;
1500 if (put_user(next_offset, &ce->next_offset))
1501 goto out;
1502
1503 (*i)++;
1504 return 0;
1505out:
1506 return ret;
1507}
1508
Denys Vlasenko022748a2008-01-14 23:44:05 -08001509static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001510compat_find_calc_match(struct ip6t_entry_match *m,
1511 const char *name,
1512 const struct ip6t_ip6 *ipv6,
1513 unsigned int hookmask,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001514 int *size, unsigned int *i)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001515{
1516 struct xt_match *match;
1517
1518 match = try_then_request_module(xt_find_match(AF_INET6, m->u.user.name,
1519 m->u.user.revision),
1520 "ip6t_%s", m->u.user.name);
1521 if (IS_ERR(match) || !match) {
1522 duprintf("compat_check_calc_match: `%s' not found\n",
1523 m->u.user.name);
1524 return match ? PTR_ERR(match) : -ENOENT;
1525 }
1526 m->u.kernel.match = match;
1527 *size += xt_compat_match_offset(match);
1528
1529 (*i)++;
1530 return 0;
1531}
1532
Denys Vlasenko022748a2008-01-14 23:44:05 -08001533static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001534compat_release_match(struct ip6t_entry_match *m, unsigned int *i)
1535{
1536 if (i && (*i)-- == 0)
1537 return 1;
1538
1539 module_put(m->u.kernel.match->me);
1540 return 0;
1541}
1542
Denys Vlasenko022748a2008-01-14 23:44:05 -08001543static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001544compat_release_entry(struct compat_ip6t_entry *e, unsigned int *i)
1545{
1546 struct ip6t_entry_target *t;
1547
1548 if (i && (*i)-- == 0)
1549 return 1;
1550
1551 /* Cleanup all matches */
1552 COMPAT_IP6T_MATCH_ITERATE(e, compat_release_match, NULL);
1553 t = compat_ip6t_get_target(e);
1554 module_put(t->u.kernel.target->me);
1555 return 0;
1556}
1557
Denys Vlasenko022748a2008-01-14 23:44:05 -08001558static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001559check_compat_entry_size_and_hooks(struct compat_ip6t_entry *e,
1560 struct xt_table_info *newinfo,
1561 unsigned int *size,
1562 unsigned char *base,
1563 unsigned char *limit,
1564 unsigned int *hook_entries,
1565 unsigned int *underflows,
1566 unsigned int *i,
1567 const char *name)
1568{
1569 struct ip6t_entry_target *t;
1570 struct xt_target *target;
1571 unsigned int entry_offset;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001572 unsigned int j;
1573 int ret, off, h;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001574
1575 duprintf("check_compat_entry_size_and_hooks %p\n", e);
1576 if ((unsigned long)e % __alignof__(struct compat_ip6t_entry) != 0
1577 || (unsigned char *)e + sizeof(struct compat_ip6t_entry) >= limit) {
1578 duprintf("Bad offset %p, limit = %p\n", e, limit);
1579 return -EINVAL;
1580 }
1581
1582 if (e->next_offset < sizeof(struct compat_ip6t_entry) +
1583 sizeof(struct compat_xt_entry_target)) {
1584 duprintf("checking: element %p size %u\n",
1585 e, e->next_offset);
1586 return -EINVAL;
1587 }
1588
1589 /* For purposes of check_entry casting the compat entry is fine */
1590 ret = check_entry((struct ip6t_entry *)e, name);
1591 if (ret)
1592 return ret;
1593
1594 off = sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1595 entry_offset = (void *)e - (void *)base;
1596 j = 0;
1597 ret = COMPAT_IP6T_MATCH_ITERATE(e, compat_find_calc_match, name,
1598 &e->ipv6, e->comefrom, &off, &j);
1599 if (ret != 0)
1600 goto release_matches;
1601
1602 t = compat_ip6t_get_target(e);
1603 target = try_then_request_module(xt_find_target(AF_INET6,
1604 t->u.user.name,
1605 t->u.user.revision),
1606 "ip6t_%s", t->u.user.name);
1607 if (IS_ERR(target) || !target) {
1608 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
1609 t->u.user.name);
1610 ret = target ? PTR_ERR(target) : -ENOENT;
1611 goto release_matches;
1612 }
1613 t->u.kernel.target = target;
1614
1615 off += xt_compat_target_offset(target);
1616 *size += off;
1617 ret = xt_compat_add_offset(AF_INET6, entry_offset, off);
1618 if (ret)
1619 goto out;
1620
1621 /* Check hooks & underflows */
1622 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
1623 if ((unsigned char *)e - base == hook_entries[h])
1624 newinfo->hook_entry[h] = hook_entries[h];
1625 if ((unsigned char *)e - base == underflows[h])
1626 newinfo->underflow[h] = underflows[h];
1627 }
1628
1629 /* Clear counters and comefrom */
1630 memset(&e->counters, 0, sizeof(e->counters));
1631 e->comefrom = 0;
1632
1633 (*i)++;
1634 return 0;
1635
1636out:
1637 module_put(t->u.kernel.target->me);
1638release_matches:
1639 IP6T_MATCH_ITERATE(e, compat_release_match, &j);
1640 return ret;
1641}
1642
1643static int
1644compat_copy_entry_from_user(struct compat_ip6t_entry *e, void **dstptr,
1645 unsigned int *size, const char *name,
1646 struct xt_table_info *newinfo, unsigned char *base)
1647{
1648 struct ip6t_entry_target *t;
1649 struct xt_target *target;
1650 struct ip6t_entry *de;
1651 unsigned int origsize;
1652 int ret, h;
1653
1654 ret = 0;
1655 origsize = *size;
1656 de = (struct ip6t_entry *)*dstptr;
1657 memcpy(de, e, sizeof(struct ip6t_entry));
1658 memcpy(&de->counters, &e->counters, sizeof(e->counters));
1659
1660 *dstptr += sizeof(struct ip6t_entry);
1661 *size += sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1662
1663 ret = COMPAT_IP6T_MATCH_ITERATE(e, xt_compat_match_from_user,
1664 dstptr, size);
1665 if (ret)
1666 return ret;
1667 de->target_offset = e->target_offset - (origsize - *size);
1668 t = compat_ip6t_get_target(e);
1669 target = t->u.kernel.target;
1670 xt_compat_target_from_user(t, dstptr, size);
1671
1672 de->next_offset = e->next_offset - (origsize - *size);
1673 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
1674 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1675 newinfo->hook_entry[h] -= origsize - *size;
1676 if ((unsigned char *)de - base < newinfo->underflow[h])
1677 newinfo->underflow[h] -= origsize - *size;
1678 }
1679 return ret;
1680}
1681
Denys Vlasenko022748a2008-01-14 23:44:05 -08001682static int compat_check_entry(struct ip6t_entry *e, const char *name,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001683 unsigned int *i)
1684{
Patrick McHardyb0a63632008-01-31 04:10:18 -08001685 unsigned int j;
1686 int ret;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001687 struct xt_mtchk_param mtpar;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001688
1689 j = 0;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001690 mtpar.table = name;
1691 mtpar.entryinfo = &e->ipv6;
1692 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +02001693 mtpar.family = NFPROTO_IPV6;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001694 ret = IP6T_MATCH_ITERATE(e, check_match, &mtpar, &j);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001695 if (ret)
1696 goto cleanup_matches;
1697
1698 ret = check_target(e, name);
1699 if (ret)
1700 goto cleanup_matches;
1701
1702 (*i)++;
1703 return 0;
1704
1705 cleanup_matches:
1706 IP6T_MATCH_ITERATE(e, cleanup_match, &j);
1707 return ret;
1708}
1709
1710static int
1711translate_compat_table(const char *name,
1712 unsigned int valid_hooks,
1713 struct xt_table_info **pinfo,
1714 void **pentry0,
1715 unsigned int total_size,
1716 unsigned int number,
1717 unsigned int *hook_entries,
1718 unsigned int *underflows)
1719{
1720 unsigned int i, j;
1721 struct xt_table_info *newinfo, *info;
1722 void *pos, *entry0, *entry1;
1723 unsigned int size;
1724 int ret;
1725
1726 info = *pinfo;
1727 entry0 = *pentry0;
1728 size = total_size;
1729 info->number = number;
1730
1731 /* Init all hooks to impossible value. */
1732 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1733 info->hook_entry[i] = 0xFFFFFFFF;
1734 info->underflow[i] = 0xFFFFFFFF;
1735 }
1736
1737 duprintf("translate_compat_table: size %u\n", info->size);
1738 j = 0;
1739 xt_compat_lock(AF_INET6);
1740 /* Walk through entries, checking offsets. */
1741 ret = COMPAT_IP6T_ENTRY_ITERATE(entry0, total_size,
1742 check_compat_entry_size_and_hooks,
1743 info, &size, entry0,
1744 entry0 + total_size,
1745 hook_entries, underflows, &j, name);
1746 if (ret != 0)
1747 goto out_unlock;
1748
1749 ret = -EINVAL;
1750 if (j != number) {
1751 duprintf("translate_compat_table: %u not %u entries\n",
1752 j, number);
1753 goto out_unlock;
1754 }
1755
1756 /* Check hooks all assigned */
1757 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1758 /* Only hooks which are valid */
1759 if (!(valid_hooks & (1 << i)))
1760 continue;
1761 if (info->hook_entry[i] == 0xFFFFFFFF) {
1762 duprintf("Invalid hook entry %u %u\n",
1763 i, hook_entries[i]);
1764 goto out_unlock;
1765 }
1766 if (info->underflow[i] == 0xFFFFFFFF) {
1767 duprintf("Invalid underflow %u %u\n",
1768 i, underflows[i]);
1769 goto out_unlock;
1770 }
1771 }
1772
1773 ret = -ENOMEM;
1774 newinfo = xt_alloc_table_info(size);
1775 if (!newinfo)
1776 goto out_unlock;
1777
1778 newinfo->number = number;
1779 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1780 newinfo->hook_entry[i] = info->hook_entry[i];
1781 newinfo->underflow[i] = info->underflow[i];
1782 }
1783 entry1 = newinfo->entries[raw_smp_processor_id()];
1784 pos = entry1;
1785 size = total_size;
1786 ret = COMPAT_IP6T_ENTRY_ITERATE(entry0, total_size,
1787 compat_copy_entry_from_user,
1788 &pos, &size, name, newinfo, entry1);
1789 xt_compat_flush_offsets(AF_INET6);
1790 xt_compat_unlock(AF_INET6);
1791 if (ret)
1792 goto free_newinfo;
1793
1794 ret = -ELOOP;
1795 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1796 goto free_newinfo;
1797
1798 i = 0;
1799 ret = IP6T_ENTRY_ITERATE(entry1, newinfo->size, compat_check_entry,
1800 name, &i);
1801 if (ret) {
1802 j -= i;
1803 COMPAT_IP6T_ENTRY_ITERATE_CONTINUE(entry0, newinfo->size, i,
1804 compat_release_entry, &j);
1805 IP6T_ENTRY_ITERATE(entry1, newinfo->size, cleanup_entry, &i);
1806 xt_free_table_info(newinfo);
1807 return ret;
1808 }
1809
1810 /* And one copy for every other CPU */
1811 for_each_possible_cpu(i)
1812 if (newinfo->entries[i] && newinfo->entries[i] != entry1)
1813 memcpy(newinfo->entries[i], entry1, newinfo->size);
1814
1815 *pinfo = newinfo;
1816 *pentry0 = entry1;
1817 xt_free_table_info(info);
1818 return 0;
1819
1820free_newinfo:
1821 xt_free_table_info(newinfo);
1822out:
1823 COMPAT_IP6T_ENTRY_ITERATE(entry0, total_size, compat_release_entry, &j);
1824 return ret;
1825out_unlock:
1826 xt_compat_flush_offsets(AF_INET6);
1827 xt_compat_unlock(AF_INET6);
1828 goto out;
1829}
1830
1831static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001832compat_do_replace(struct net *net, void __user *user, unsigned int len)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001833{
1834 int ret;
1835 struct compat_ip6t_replace tmp;
1836 struct xt_table_info *newinfo;
1837 void *loc_cpu_entry;
1838
1839 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1840 return -EFAULT;
1841
1842 /* overflow check */
1843 if (tmp.size >= INT_MAX / num_possible_cpus())
1844 return -ENOMEM;
1845 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1846 return -ENOMEM;
1847
1848 newinfo = xt_alloc_table_info(tmp.size);
1849 if (!newinfo)
1850 return -ENOMEM;
1851
Patrick McHardy9c547952007-12-17 21:52:00 -08001852 /* choose the copy that is on our node/cpu */
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001853 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1854 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1855 tmp.size) != 0) {
1856 ret = -EFAULT;
1857 goto free_newinfo;
1858 }
1859
1860 ret = translate_compat_table(tmp.name, tmp.valid_hooks,
1861 &newinfo, &loc_cpu_entry, tmp.size,
1862 tmp.num_entries, tmp.hook_entry,
1863 tmp.underflow);
1864 if (ret != 0)
1865 goto free_newinfo;
1866
1867 duprintf("compat_do_replace: Translated table\n");
1868
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001869 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001870 tmp.num_counters, compat_ptr(tmp.counters));
1871 if (ret)
1872 goto free_newinfo_untrans;
1873 return 0;
1874
1875 free_newinfo_untrans:
1876 IP6T_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
1877 free_newinfo:
1878 xt_free_table_info(newinfo);
1879 return ret;
1880}
1881
1882static int
1883compat_do_ip6t_set_ctl(struct sock *sk, int cmd, void __user *user,
1884 unsigned int len)
1885{
1886 int ret;
1887
1888 if (!capable(CAP_NET_ADMIN))
1889 return -EPERM;
1890
1891 switch (cmd) {
1892 case IP6T_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001893 ret = compat_do_replace(sock_net(sk), user, len);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001894 break;
1895
1896 case IP6T_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001897 ret = do_add_counters(sock_net(sk), user, len, 1);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001898 break;
1899
1900 default:
1901 duprintf("do_ip6t_set_ctl: unknown request %i\n", cmd);
1902 ret = -EINVAL;
1903 }
1904
1905 return ret;
1906}
1907
1908struct compat_ip6t_get_entries {
1909 char name[IP6T_TABLE_MAXNAMELEN];
1910 compat_uint_t size;
1911 struct compat_ip6t_entry entrytable[0];
1912};
1913
1914static int
1915compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1916 void __user *userptr)
1917{
1918 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001919 const struct xt_table_info *private = table->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001920 void __user *pos;
1921 unsigned int size;
1922 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001923 const void *loc_cpu_entry;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001924 unsigned int i = 0;
1925
1926 counters = alloc_counters(table);
1927 if (IS_ERR(counters))
1928 return PTR_ERR(counters);
1929
1930 /* choose the copy that is on our node/cpu, ...
1931 * This choice is lazy (because current thread is
1932 * allowed to migrate to another cpu)
1933 */
1934 loc_cpu_entry = private->entries[raw_smp_processor_id()];
1935 pos = userptr;
1936 size = total_size;
1937 ret = IP6T_ENTRY_ITERATE(loc_cpu_entry, total_size,
1938 compat_copy_entry_to_user,
1939 &pos, &size, counters, &i);
1940
1941 vfree(counters);
1942 return ret;
1943}
1944
1945static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001946compat_get_entries(struct net *net, struct compat_ip6t_get_entries __user *uptr,
1947 int *len)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001948{
1949 int ret;
1950 struct compat_ip6t_get_entries get;
1951 struct xt_table *t;
1952
1953 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001954 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001955 return -EINVAL;
1956 }
1957
1958 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1959 return -EFAULT;
1960
1961 if (*len != sizeof(struct compat_ip6t_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001962 duprintf("compat_get_entries: %u != %zu\n",
1963 *len, sizeof(get) + get.size);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001964 return -EINVAL;
1965 }
1966
1967 xt_compat_lock(AF_INET6);
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001968 t = xt_find_table_lock(net, AF_INET6, get.name);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001969 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001970 const struct xt_table_info *private = t->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001971 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08001972 duprintf("t->private->number = %u\n", private->number);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001973 ret = compat_table_info(private, &info);
1974 if (!ret && get.size == info.size) {
1975 ret = compat_copy_entries_to_user(private->size,
1976 t, uptr->entrytable);
1977 } else if (!ret) {
1978 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001979 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001980 ret = -EAGAIN;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001981 }
1982 xt_compat_flush_offsets(AF_INET6);
1983 module_put(t->me);
1984 xt_table_unlock(t);
1985 } else
1986 ret = t ? PTR_ERR(t) : -ENOENT;
1987
1988 xt_compat_unlock(AF_INET6);
1989 return ret;
1990}
1991
1992static int do_ip6t_get_ctl(struct sock *, int, void __user *, int *);
1993
1994static int
1995compat_do_ip6t_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1996{
1997 int ret;
1998
1999 if (!capable(CAP_NET_ADMIN))
2000 return -EPERM;
2001
2002 switch (cmd) {
2003 case IP6T_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002004 ret = get_info(sock_net(sk), user, len, 1);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002005 break;
2006 case IP6T_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002007 ret = compat_get_entries(sock_net(sk), user, len);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002008 break;
2009 default:
2010 ret = do_ip6t_get_ctl(sk, cmd, user, len);
2011 }
2012 return ret;
2013}
2014#endif
2015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016static int
2017do_ip6t_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
2018{
2019 int ret;
2020
2021 if (!capable(CAP_NET_ADMIN))
2022 return -EPERM;
2023
2024 switch (cmd) {
2025 case IP6T_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002026 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 break;
2028
2029 case IP6T_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002030 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 break;
2032
2033 default:
2034 duprintf("do_ip6t_set_ctl: unknown request %i\n", cmd);
2035 ret = -EINVAL;
2036 }
2037
2038 return ret;
2039}
2040
2041static int
2042do_ip6t_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2043{
2044 int ret;
2045
2046 if (!capable(CAP_NET_ADMIN))
2047 return -EPERM;
2048
2049 switch (cmd) {
Patrick McHardy433665c2007-12-17 21:50:05 -08002050 case IP6T_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002051 ret = get_info(sock_net(sk), user, len, 0);
Patrick McHardy433665c2007-12-17 21:50:05 -08002052 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Patrick McHardyd9243572007-12-17 21:50:22 -08002054 case IP6T_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002055 ret = get_entries(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
Harald Welte6b7d31f2005-10-26 09:34:24 +02002058 case IP6T_SO_GET_REVISION_MATCH:
2059 case IP6T_SO_GET_REVISION_TARGET: {
2060 struct ip6t_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002061 int target;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002062
2063 if (*len != sizeof(rev)) {
2064 ret = -EINVAL;
2065 break;
2066 }
2067 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2068 ret = -EFAULT;
2069 break;
2070 }
2071
2072 if (cmd == IP6T_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08002073 target = 1;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002074 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08002075 target = 0;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002076
Harald Welte2e4e6a12006-01-12 13:30:04 -08002077 try_then_request_module(xt_find_revision(AF_INET6, rev.name,
2078 rev.revision,
2079 target, &ret),
Harald Welte6b7d31f2005-10-26 09:34:24 +02002080 "ip6t_%s", rev.name);
2081 break;
2082 }
2083
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 default:
2085 duprintf("do_ip6t_get_ctl: unknown request %i\n", cmd);
2086 ret = -EINVAL;
2087 }
2088
2089 return ret;
2090}
2091
Alexey Dobriyan336b5172008-01-31 04:03:45 -08002092struct xt_table *ip6t_register_table(struct net *net, struct xt_table *table,
2093 const struct ip6t_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094{
2095 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002096 struct xt_table_info *newinfo;
Eric Dumazet259d4e42007-12-04 23:24:56 -08002097 struct xt_table_info bootstrap
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 = { 0, 0, 0, { 0 }, { 0 }, { } };
Eric Dumazet31836062005-12-13 23:13:48 -08002099 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08002100 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Harald Welte2e4e6a12006-01-12 13:30:04 -08002102 newinfo = xt_alloc_table_info(repl->size);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002103 if (!newinfo) {
2104 ret = -ENOMEM;
2105 goto out;
2106 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Patrick McHardy9c547952007-12-17 21:52:00 -08002108 /* choose the copy on our node/cpu, but dont care about preemption */
Eric Dumazet31836062005-12-13 23:13:48 -08002109 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
2110 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
2112 ret = translate_table(table->name, table->valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08002113 newinfo, loc_cpu_entry, repl->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 repl->num_entries,
2115 repl->hook_entry,
2116 repl->underflow);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002117 if (ret != 0)
2118 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
Alexey Dobriyan336b5172008-01-31 04:03:45 -08002120 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08002121 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002122 ret = PTR_ERR(new_table);
2123 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 }
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002125 return new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002127out_free:
2128 xt_free_table_info(newinfo);
2129out:
2130 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131}
2132
Harald Welte2e4e6a12006-01-12 13:30:04 -08002133void ip6t_unregister_table(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134{
Harald Welte2e4e6a12006-01-12 13:30:04 -08002135 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08002136 void *loc_cpu_entry;
Alexey Dobriyandf200962008-01-31 04:05:34 -08002137 struct module *table_owner = table->me;
Eric Dumazet31836062005-12-13 23:13:48 -08002138
Harald Welte2e4e6a12006-01-12 13:30:04 -08002139 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
2141 /* Decrease module usage counts and free resources */
Harald Welte2e4e6a12006-01-12 13:30:04 -08002142 loc_cpu_entry = private->entries[raw_smp_processor_id()];
2143 IP6T_ENTRY_ITERATE(loc_cpu_entry, private->size, cleanup_entry, NULL);
Alexey Dobriyandf200962008-01-31 04:05:34 -08002144 if (private->number > private->initial_entries)
2145 module_put(table_owner);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002146 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147}
2148
2149/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardtccb79bd2007-07-07 22:16:00 -07002150static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151icmp6_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2152 u_int8_t type, u_int8_t code,
Jan Engelhardtccb79bd2007-07-07 22:16:00 -07002153 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154{
2155 return (type == test_type && code >= min_code && code <= max_code)
2156 ^ invert;
2157}
2158
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002159static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002160icmp6_match(const struct sk_buff *skb, const struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161{
Jan Engelhardt5452e422008-04-14 11:15:35 +02002162 const struct icmp6hdr *ic;
2163 struct icmp6hdr _icmph;
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002164 const struct ip6t_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
2166 /* Must not be a fragment. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002167 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002168 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002170 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 if (ic == NULL) {
2172 /* We've been asked to examine this packet, and we
Patrick McHardy9c547952007-12-17 21:52:00 -08002173 * can't. Hence, no choice but to drop.
2174 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002176 *par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002177 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 }
2179
2180 return icmp6_type_code_match(icmpinfo->type,
2181 icmpinfo->code[0],
2182 icmpinfo->code[1],
2183 ic->icmp6_type, ic->icmp6_code,
2184 !!(icmpinfo->invflags&IP6T_ICMP_INV));
2185}
2186
2187/* Called when user tries to insert an entry of this type. */
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002188static bool icmp6_checkentry(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002190 const struct ip6t_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
Patrick McHardy7f939712006-03-20 18:01:43 -08002192 /* Must specify no unknown invflags */
2193 return !(icmpinfo->invflags & ~IP6T_ICMP_INV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194}
2195
2196/* The built-in targets: standard (NULL) and error. */
Patrick McHardy9f15c532007-07-07 22:22:02 -07002197static struct xt_target ip6t_standard_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 .name = IP6T_STANDARD_TARGET,
Patrick McHardy7f939712006-03-20 18:01:43 -08002199 .targetsize = sizeof(int),
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002200 .family = AF_INET6,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002201#ifdef CONFIG_COMPAT
2202 .compatsize = sizeof(compat_int_t),
2203 .compat_from_user = compat_standard_from_user,
2204 .compat_to_user = compat_standard_to_user,
2205#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206};
2207
Patrick McHardy9f15c532007-07-07 22:22:02 -07002208static struct xt_target ip6t_error_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 .name = IP6T_ERROR_TARGET,
2210 .target = ip6t_error,
Patrick McHardy7f939712006-03-20 18:01:43 -08002211 .targetsize = IP6T_FUNCTION_MAXNAMELEN,
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002212 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213};
2214
2215static struct nf_sockopt_ops ip6t_sockopts = {
2216 .pf = PF_INET6,
2217 .set_optmin = IP6T_BASE_CTL,
2218 .set_optmax = IP6T_SO_SET_MAX+1,
2219 .set = do_ip6t_set_ctl,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002220#ifdef CONFIG_COMPAT
2221 .compat_set = compat_do_ip6t_set_ctl,
2222#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 .get_optmin = IP6T_BASE_CTL,
2224 .get_optmax = IP6T_SO_GET_MAX+1,
2225 .get = do_ip6t_get_ctl,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002226#ifdef CONFIG_COMPAT
2227 .compat_get = compat_do_ip6t_get_ctl,
2228#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002229 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230};
2231
Patrick McHardy9f15c532007-07-07 22:22:02 -07002232static struct xt_match icmp6_matchstruct __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 .name = "icmp6",
Patrick McHardy9c547952007-12-17 21:52:00 -08002234 .match = icmp6_match,
Patrick McHardy7f939712006-03-20 18:01:43 -08002235 .matchsize = sizeof(struct ip6t_icmp),
2236 .checkentry = icmp6_checkentry,
2237 .proto = IPPROTO_ICMPV6,
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002238 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239};
2240
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002241static int __net_init ip6_tables_net_init(struct net *net)
2242{
2243 return xt_proto_init(net, AF_INET6);
2244}
2245
2246static void __net_exit ip6_tables_net_exit(struct net *net)
2247{
2248 xt_proto_fini(net, AF_INET6);
2249}
2250
2251static struct pernet_operations ip6_tables_net_ops = {
2252 .init = ip6_tables_net_init,
2253 .exit = ip6_tables_net_exit,
2254};
2255
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002256static int __init ip6_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257{
2258 int ret;
2259
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002260 ret = register_pernet_subsys(&ip6_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002261 if (ret < 0)
2262 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002263
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 /* Noone else will be downing sem now, so we won't sleep */
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002265 ret = xt_register_target(&ip6t_standard_target);
2266 if (ret < 0)
2267 goto err2;
2268 ret = xt_register_target(&ip6t_error_target);
2269 if (ret < 0)
2270 goto err3;
2271 ret = xt_register_match(&icmp6_matchstruct);
2272 if (ret < 0)
2273 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
2275 /* Register setsockopt */
2276 ret = nf_register_sockopt(&ip6t_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002277 if (ret < 0)
2278 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
Patrick McHardya887c1c2007-07-14 20:46:15 -07002280 printk(KERN_INFO "ip6_tables: (C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002282
2283err5:
2284 xt_unregister_match(&icmp6_matchstruct);
2285err4:
2286 xt_unregister_target(&ip6t_error_target);
2287err3:
2288 xt_unregister_target(&ip6t_standard_target);
2289err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002290 unregister_pernet_subsys(&ip6_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002291err1:
2292 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293}
2294
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002295static void __exit ip6_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296{
2297 nf_unregister_sockopt(&ip6t_sockopts);
Patrick McHardy9c547952007-12-17 21:52:00 -08002298
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002299 xt_unregister_match(&icmp6_matchstruct);
2300 xt_unregister_target(&ip6t_error_target);
2301 xt_unregister_target(&ip6t_standard_target);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002302
2303 unregister_pernet_subsys(&ip6_tables_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304}
2305
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002306/*
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002307 * find the offset to specified header or the protocol number of last header
2308 * if target < 0. "last header" is transport protocol header, ESP, or
2309 * "No next header".
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002310 *
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002311 * If target header is found, its offset is set in *offset and return protocol
2312 * number. Otherwise, return -1.
2313 *
Patrick McHardy6d381632006-10-24 16:15:10 -07002314 * If the first fragment doesn't contain the final protocol header or
2315 * NEXTHDR_NONE it is considered invalid.
2316 *
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002317 * Note that non-1st fragment is special case that "the protocol number
2318 * of last header" is "next header" field in Fragment header. In this case,
2319 * *offset is meaningless and fragment offset is stored in *fragoff if fragoff
2320 * isn't NULL.
2321 *
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002322 */
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002323int ipv6_find_hdr(const struct sk_buff *skb, unsigned int *offset,
2324 int target, unsigned short *fragoff)
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002325{
Arnaldo Carvalho de Melo6b88dd92007-03-19 22:29:03 -03002326 unsigned int start = skb_network_offset(skb) + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002327 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002328 unsigned int len = skb->len - start;
2329
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002330 if (fragoff)
2331 *fragoff = 0;
2332
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002333 while (nexthdr != target) {
2334 struct ipv6_opt_hdr _hdr, *hp;
2335 unsigned int hdrlen;
2336
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002337 if ((!ipv6_ext_hdr(nexthdr)) || nexthdr == NEXTHDR_NONE) {
2338 if (target < 0)
2339 break;
Patrick McHardy6d381632006-10-24 16:15:10 -07002340 return -ENOENT;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002341 }
2342
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002343 hp = skb_header_pointer(skb, start, sizeof(_hdr), &_hdr);
2344 if (hp == NULL)
Patrick McHardy6d381632006-10-24 16:15:10 -07002345 return -EBADMSG;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002346 if (nexthdr == NEXTHDR_FRAGMENT) {
Al Viroe69a4adc2006-11-14 20:56:00 -08002347 unsigned short _frag_off;
2348 __be16 *fp;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002349 fp = skb_header_pointer(skb,
2350 start+offsetof(struct frag_hdr,
2351 frag_off),
2352 sizeof(_frag_off),
2353 &_frag_off);
2354 if (fp == NULL)
Patrick McHardy6d381632006-10-24 16:15:10 -07002355 return -EBADMSG;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002356
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002357 _frag_off = ntohs(*fp) & ~0x7;
2358 if (_frag_off) {
2359 if (target < 0 &&
2360 ((!ipv6_ext_hdr(hp->nexthdr)) ||
Patrick McHardy337dde72006-11-14 19:49:13 -08002361 hp->nexthdr == NEXTHDR_NONE)) {
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002362 if (fragoff)
2363 *fragoff = _frag_off;
2364 return hp->nexthdr;
2365 }
Patrick McHardy6d381632006-10-24 16:15:10 -07002366 return -ENOENT;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002367 }
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002368 hdrlen = 8;
2369 } else if (nexthdr == NEXTHDR_AUTH)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002370 hdrlen = (hp->hdrlen + 2) << 2;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002371 else
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002372 hdrlen = ipv6_optlen(hp);
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002373
2374 nexthdr = hp->nexthdr;
2375 len -= hdrlen;
2376 start += hdrlen;
2377 }
2378
2379 *offset = start;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002380 return nexthdr;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002381}
2382
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383EXPORT_SYMBOL(ip6t_register_table);
2384EXPORT_SYMBOL(ip6t_unregister_table);
2385EXPORT_SYMBOL(ip6t_do_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386EXPORT_SYMBOL(ip6t_ext_hdr);
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002387EXPORT_SYMBOL(ipv6_find_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002389module_init(ip6_tables_init);
2390module_exit(ip6_tables_fini);