blob: e89cfa3a8f254650948f60ada09982b9862c745d [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{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 unsigned long ret;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700103 const struct ipv6hdr *ipv6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Jan Engelhardte79ec502007-12-17 22:44:06 -0800105#define FWINV(bool, invflg) ((bool) ^ !!(ip6info->invflags & (invflg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Patrick McHardyf2ffd9e2006-03-20 18:03:16 -0800107 if (FWINV(ipv6_masked_addr_cmp(&ipv6->saddr, &ip6info->smsk,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900108 &ip6info->src), IP6T_INV_SRCIP)
Patrick McHardyf2ffd9e2006-03-20 18:03:16 -0800109 || FWINV(ipv6_masked_addr_cmp(&ipv6->daddr, &ip6info->dmsk,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900110 &ip6info->dst), IP6T_INV_DSTIP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 dprintf("Source or dest mismatch.\n");
112/*
113 dprintf("SRC: %u. Mask: %u. Target: %u.%s\n", ip->saddr,
114 ipinfo->smsk.s_addr, ipinfo->src.s_addr,
115 ipinfo->invflags & IP6T_INV_SRCIP ? " (INV)" : "");
116 dprintf("DST: %u. Mask: %u. Target: %u.%s\n", ip->daddr,
117 ipinfo->dmsk.s_addr, ipinfo->dst.s_addr,
118 ipinfo->invflags & IP6T_INV_DSTIP ? " (INV)" : "");*/
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700119 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 }
121
Eric Dumazetb8dfe492009-03-25 17:31:52 +0100122 ret = ifname_compare_aligned(indev, ip6info->iniface, ip6info->iniface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 if (FWINV(ret != 0, IP6T_INV_VIA_IN)) {
125 dprintf("VIA in mismatch (%s vs %s).%s\n",
126 indev, ip6info->iniface,
127 ip6info->invflags&IP6T_INV_VIA_IN ?" (INV)":"");
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700128 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
130
Eric Dumazetb8dfe492009-03-25 17:31:52 +0100131 ret = ifname_compare_aligned(outdev, ip6info->outiface, ip6info->outiface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 if (FWINV(ret != 0, IP6T_INV_VIA_OUT)) {
134 dprintf("VIA out mismatch (%s vs %s).%s\n",
135 outdev, ip6info->outiface,
136 ip6info->invflags&IP6T_INV_VIA_OUT ?" (INV)":"");
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700137 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139
140/* ... might want to do something with class and flowlabel here ... */
141
142 /* look for the desired protocol header */
143 if((ip6info->flags & IP6T_F_PROTO)) {
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800144 int protohdr;
145 unsigned short _frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800147 protohdr = ipv6_find_hdr(skb, protoff, -1, &_frag_off);
Patrick McHardy51d8b1a2006-10-24 16:14:04 -0700148 if (protohdr < 0) {
149 if (_frag_off == 0)
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700150 *hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700151 return false;
Patrick McHardy51d8b1a2006-10-24 16:14:04 -0700152 }
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800153 *fragoff = _frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 dprintf("Packet protocol %hi ?= %s%hi.\n",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900156 protohdr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 ip6info->invflags & IP6T_INV_PROTO ? "!":"",
158 ip6info->proto);
159
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800160 if (ip6info->proto == protohdr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 if(ip6info->invflags & IP6T_INV_PROTO) {
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700162 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 }
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700164 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
166
167 /* We need match for the '-p all', too! */
168 if ((ip6info->proto != 0) &&
169 !(ip6info->invflags & IP6T_INV_PROTO))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700170 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700172 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
175/* should be ip6 safe */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800176static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177ip6_checkentry(const struct ip6t_ip6 *ipv6)
178{
179 if (ipv6->flags & ~IP6T_F_MASK) {
180 duprintf("Unknown flag bits set: %08X\n",
181 ipv6->flags & ~IP6T_F_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700182 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184 if (ipv6->invflags & ~IP6T_INV_MASK) {
185 duprintf("Unknown invflag bits set: %08X\n",
186 ipv6->invflags & ~IP6T_INV_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700187 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700189 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
192static unsigned int
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200193ip6t_error(struct sk_buff *skb, const struct xt_target_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
195 if (net_ratelimit())
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200196 printk("ip6_tables: error: `%s'\n",
197 (const char *)par->targinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 return NF_DROP;
200}
201
Denys Vlasenko022748a2008-01-14 23:44:05 -0800202/* Performance critical - called for every packet */
203static inline bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200204do_match(struct ip6t_entry_match *m, const struct sk_buff *skb,
205 struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200207 par->match = m->u.kernel.match;
208 par->matchinfo = m->data;
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 /* Stop iteration if it doesn't match */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200211 if (!m->u.kernel.match->match(skb, par))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700212 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 else
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700214 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
217static inline struct ip6t_entry *
218get_entry(void *base, unsigned int offset)
219{
220 return (struct ip6t_entry *)(base + offset);
221}
222
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700223/* All zeroes == unconditional rule. */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800224/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700225static inline int
226unconditional(const struct ip6t_ip6 *ipv6)
227{
228 unsigned int i;
229
230 for (i = 0; i < sizeof(*ipv6); i++)
231 if (((char *)ipv6)[i])
232 break;
233
234 return (i == sizeof(*ipv6));
235}
236
237#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
238 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
239/* This cries for unification! */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800240static const char *const hooknames[] = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800241 [NF_INET_PRE_ROUTING] = "PREROUTING",
242 [NF_INET_LOCAL_IN] = "INPUT",
243 [NF_INET_FORWARD] = "FORWARD",
244 [NF_INET_LOCAL_OUT] = "OUTPUT",
245 [NF_INET_POST_ROUTING] = "POSTROUTING",
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700246};
247
248enum nf_ip_trace_comments {
249 NF_IP6_TRACE_COMMENT_RULE,
250 NF_IP6_TRACE_COMMENT_RETURN,
251 NF_IP6_TRACE_COMMENT_POLICY,
252};
253
Denys Vlasenko022748a2008-01-14 23:44:05 -0800254static const char *const comments[] = {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700255 [NF_IP6_TRACE_COMMENT_RULE] = "rule",
256 [NF_IP6_TRACE_COMMENT_RETURN] = "return",
257 [NF_IP6_TRACE_COMMENT_POLICY] = "policy",
258};
259
260static struct nf_loginfo trace_loginfo = {
261 .type = NF_LOG_TYPE_LOG,
262 .u = {
263 .log = {
264 .level = 4,
265 .logflags = NF_LOG_MASK,
266 },
267 },
268};
269
Denys Vlasenko022748a2008-01-14 23:44:05 -0800270/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700271static inline int
272get_chainname_rulenum(struct ip6t_entry *s, struct ip6t_entry *e,
273 char *hookname, char **chainname,
274 char **comment, unsigned int *rulenum)
275{
276 struct ip6t_standard_target *t = (void *)ip6t_get_target(s);
277
278 if (strcmp(t->target.u.kernel.target->name, IP6T_ERROR_TARGET) == 0) {
279 /* Head of user chain: ERROR target with chainname */
280 *chainname = t->target.data;
281 (*rulenum) = 0;
282 } else if (s == e) {
283 (*rulenum)++;
284
285 if (s->target_offset == sizeof(struct ip6t_entry)
286 && strcmp(t->target.u.kernel.target->name,
287 IP6T_STANDARD_TARGET) == 0
288 && t->verdict < 0
289 && unconditional(&s->ipv6)) {
290 /* Tail of chains: STANDARD target (return/policy) */
291 *comment = *chainname == hookname
292 ? (char *)comments[NF_IP6_TRACE_COMMENT_POLICY]
293 : (char *)comments[NF_IP6_TRACE_COMMENT_RETURN];
294 }
295 return 1;
296 } else
297 (*rulenum)++;
298
299 return 0;
300}
301
302static void trace_packet(struct sk_buff *skb,
303 unsigned int hook,
304 const struct net_device *in,
305 const struct net_device *out,
Jan Engelhardtecb6f852008-01-31 03:54:47 -0800306 const char *tablename,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700307 struct xt_table_info *private,
308 struct ip6t_entry *e)
309{
310 void *table_base;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200311 const struct ip6t_entry *root;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700312 char *hookname, *chainname, *comment;
313 unsigned int rulenum = 0;
314
315 table_base = (void *)private->entries[smp_processor_id()];
316 root = get_entry(table_base, private->hook_entry[hook]);
317
318 hookname = chainname = (char *)hooknames[hook];
319 comment = (char *)comments[NF_IP6_TRACE_COMMENT_RULE];
320
321 IP6T_ENTRY_ITERATE(root,
322 private->size - private->hook_entry[hook],
323 get_chainname_rulenum,
324 e, hookname, &chainname, &comment, &rulenum);
325
326 nf_log_packet(AF_INET6, hook, skb, in, out, &trace_loginfo,
327 "TRACE: %s:%s:%s:%u ",
328 tablename, chainname, comment, rulenum);
329}
330#endif
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332/* Returns one of the generic firewall policies, like NF_ACCEPT. */
333unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700334ip6t_do_table(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 unsigned int hook,
336 const struct net_device *in,
337 const struct net_device *out,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700338 struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Harald Welte6b7d31f2005-10-26 09:34:24 +0200340 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700341 bool hotdrop = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 /* Initializing verdict to NF_DROP keeps gcc happy. */
343 unsigned int verdict = NF_DROP;
344 const char *indev, *outdev;
345 void *table_base;
346 struct ip6t_entry *e, *back;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800347 struct xt_table_info *private;
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200348 struct xt_match_param mtpar;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200349 struct xt_target_param tgpar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 /* Initialization */
352 indev = in ? in->name : nulldevname;
353 outdev = out ? out->name : nulldevname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 /* We handle fragments by dealing with the first fragment as
355 * if it was a normal packet. All other fragments are treated
356 * normally, except that they will NEVER match rules that ask
357 * things we don't know, ie. tcp syn flag or ports). If the
358 * rule is also a fragment-specific rule, non-fragments won't
359 * match it. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200360 mtpar.hotdrop = &hotdrop;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200361 mtpar.in = tgpar.in = in;
362 mtpar.out = tgpar.out = out;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200363 mtpar.family = tgpar.family = NFPROTO_IPV6;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200364 tgpar.hooknum = hook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 IP_NF_ASSERT(table->valid_hooks & (1 << hook));
Stephen Hemminger78454472009-02-20 10:35:32 +0100367
368 rcu_read_lock();
369 private = rcu_dereference(table->private);
370 table_base = rcu_dereference(private->entries[smp_processor_id()]);
371
Harald Welte2e4e6a12006-01-12 13:30:04 -0800372 e = get_entry(table_base, private->hook_entry[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 /* For return from builtin chain */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800375 back = get_entry(table_base, private->underflow[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 do {
378 IP_NF_ASSERT(e);
379 IP_NF_ASSERT(back);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700380 if (ip6_packet_match(skb, indev, outdev, &e->ipv6,
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200381 &mtpar.thoff, &mtpar.fragoff, &hotdrop)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 struct ip6t_entry_target *t;
383
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200384 if (IP6T_MATCH_ITERATE(e, do_match, skb, &mtpar) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 goto no_match;
386
387 ADD_COUNTER(e->counters,
Patrick McHardy72f36ec2007-12-17 21:48:02 -0800388 ntohs(ipv6_hdr(skb)->payload_len) +
389 sizeof(struct ipv6hdr), 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 t = ip6t_get_target(e);
392 IP_NF_ASSERT(t->u.kernel.target);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700393
394#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
395 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
396 /* The packet is traced: log it */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700397 if (unlikely(skb->nf_trace))
398 trace_packet(skb, hook, in, out,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700399 table->name, private, e);
400#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 /* Standard target? */
402 if (!t->u.kernel.target->target) {
403 int v;
404
405 v = ((struct ip6t_standard_target *)t)->verdict;
406 if (v < 0) {
407 /* Pop from stack? */
408 if (v != IP6T_RETURN) {
409 verdict = (unsigned)(-v) - 1;
410 break;
411 }
412 e = back;
413 back = get_entry(table_base,
414 back->comefrom);
415 continue;
416 }
Patrick McHardy05465342005-08-21 23:31:43 -0700417 if (table_base + v != (void *)e + e->next_offset
418 && !(e->ipv6.flags & IP6T_F_GOTO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 /* Save old back ptr in next entry */
420 struct ip6t_entry *next
421 = (void *)e + e->next_offset;
422 next->comefrom
423 = (void *)back - table_base;
424 /* set back pointer to next entry */
425 back = next;
426 }
427
428 e = get_entry(table_base, v);
429 } else {
430 /* Targets which reenter must return
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900431 abs. verdicts */
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200432 tgpar.target = t->u.kernel.target;
433 tgpar.targinfo = t->data;
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435#ifdef CONFIG_NETFILTER_DEBUG
436 ((struct ip6t_entry *)table_base)->comefrom
437 = 0xeeeeeeec;
438#endif
Herbert Xu3db05fe2007-10-15 00:53:15 -0700439 verdict = t->u.kernel.target->target(skb,
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200440 &tgpar);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442#ifdef CONFIG_NETFILTER_DEBUG
443 if (((struct ip6t_entry *)table_base)->comefrom
444 != 0xeeeeeeec
445 && verdict == IP6T_CONTINUE) {
446 printk("Target %s reentered!\n",
447 t->u.kernel.target->name);
448 verdict = NF_DROP;
449 }
450 ((struct ip6t_entry *)table_base)->comefrom
451 = 0x57acc001;
452#endif
453 if (verdict == IP6T_CONTINUE)
454 e = (void *)e + e->next_offset;
455 else
456 /* Verdict */
457 break;
458 }
459 } else {
460
461 no_match:
462 e = (void *)e + e->next_offset;
463 }
464 } while (!hotdrop);
465
466#ifdef CONFIG_NETFILTER_DEBUG
Randy Dunlap4bdbf6c2006-07-03 19:47:27 -0700467 ((struct ip6t_entry *)table_base)->comefrom = NETFILTER_LINK_POISON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468#endif
Stephen Hemminger78454472009-02-20 10:35:32 +0100469 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471#ifdef DEBUG_ALLOW_ALL
472 return NF_ACCEPT;
473#else
474 if (hotdrop)
475 return NF_DROP;
476 else return verdict;
477#endif
478}
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480/* Figures out from what hook each rule can be called: returns 0 if
481 there are loops. Puts hook bitmask in comefrom. */
482static int
Harald Welte2e4e6a12006-01-12 13:30:04 -0800483mark_source_chains(struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800484 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
486 unsigned int hook;
487
488 /* No recursion; use packet counter to save back ptrs (reset
489 to 0 as we leave), and comefrom to save source hook bitmask */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800490 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 unsigned int pos = newinfo->hook_entry[hook];
Patrick McHardy9c547952007-12-17 21:52:00 -0800492 struct ip6t_entry *e = (struct ip6t_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 if (!(valid_hooks & (1 << hook)))
495 continue;
496
497 /* Set initial back pointer. */
498 e->counters.pcnt = pos;
499
500 for (;;) {
501 struct ip6t_standard_target *t
502 = (void *)ip6t_get_target(e);
Patrick McHardy9c547952007-12-17 21:52:00 -0800503 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800505 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 printk("iptables: loop hook %u pos %u %08X.\n",
507 hook, pos, e->comefrom);
508 return 0;
509 }
Patrick McHardy9c547952007-12-17 21:52:00 -0800510 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 /* Unconditional return/END. */
Al Viroe1b4b9f2006-12-12 00:29:52 -0800513 if ((e->target_offset == sizeof(struct ip6t_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 && (strcmp(t->target.u.user.name,
515 IP6T_STANDARD_TARGET) == 0)
516 && t->verdict < 0
Al Viroe1b4b9f2006-12-12 00:29:52 -0800517 && unconditional(&e->ipv6)) || visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 unsigned int oldpos, size;
519
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100520 if ((strcmp(t->target.u.user.name,
521 IP6T_STANDARD_TARGET) == 0) &&
522 t->verdict < -NF_MAX_VERDICT - 1) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800523 duprintf("mark_source_chains: bad "
524 "negative verdict (%i)\n",
525 t->verdict);
526 return 0;
527 }
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 /* Return: backtrack through the last
530 big jump. */
531 do {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800532 e->comefrom ^= (1<<NF_INET_NUMHOOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533#ifdef DEBUG_IP_FIREWALL_USER
534 if (e->comefrom
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800535 & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 duprintf("Back unset "
537 "on hook %u "
538 "rule %u\n",
539 hook, pos);
540 }
541#endif
542 oldpos = pos;
543 pos = e->counters.pcnt;
544 e->counters.pcnt = 0;
545
546 /* We're at the start. */
547 if (pos == oldpos)
548 goto next;
549
550 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800551 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 } while (oldpos == pos + e->next_offset);
553
554 /* Move along one */
555 size = e->next_offset;
556 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800557 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 e->counters.pcnt = pos;
559 pos += size;
560 } else {
561 int newpos = t->verdict;
562
563 if (strcmp(t->target.u.user.name,
564 IP6T_STANDARD_TARGET) == 0
565 && newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800566 if (newpos > newinfo->size -
567 sizeof(struct ip6t_entry)) {
568 duprintf("mark_source_chains: "
569 "bad verdict (%i)\n",
570 newpos);
571 return 0;
572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 /* This a jump; chase it. */
574 duprintf("Jump rule %u -> %u\n",
575 pos, newpos);
576 } else {
577 /* ... this is a fallthru */
578 newpos = pos + e->next_offset;
579 }
580 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800581 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 e->counters.pcnt = pos;
583 pos = newpos;
584 }
585 }
586 next:
587 duprintf("Finished chain %u\n", hook);
588 }
589 return 1;
590}
591
Denys Vlasenko022748a2008-01-14 23:44:05 -0800592static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593cleanup_match(struct ip6t_entry_match *m, unsigned int *i)
594{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200595 struct xt_mtdtor_param par;
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 if (i && (*i)-- == 0)
598 return 1;
599
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200600 par.match = m->u.kernel.match;
601 par.matchinfo = m->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200602 par.family = NFPROTO_IPV6;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200603 if (par.match->destroy != NULL)
604 par.match->destroy(&par);
605 module_put(par.match->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return 0;
607}
608
Denys Vlasenko022748a2008-01-14 23:44:05 -0800609static int
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800610check_entry(struct ip6t_entry *e, const char *name)
611{
612 struct ip6t_entry_target *t;
613
614 if (!ip6_checkentry(&e->ipv6)) {
615 duprintf("ip_tables: ip check failed %p %s.\n", e, name);
616 return -EINVAL;
617 }
618
619 if (e->target_offset + sizeof(struct ip6t_entry_target) >
620 e->next_offset)
621 return -EINVAL;
622
623 t = ip6t_get_target(e);
624 if (e->target_offset + t->u.target_size > e->next_offset)
625 return -EINVAL;
626
627 return 0;
628}
629
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200630static int check_match(struct ip6t_entry_match *m, struct xt_mtchk_param *par,
631 unsigned int *i)
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800632{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200633 const struct ip6t_ip6 *ipv6 = par->entryinfo;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800634 int ret;
635
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200636 par->match = m->u.kernel.match;
637 par->matchinfo = m->data;
638
Jan Engelhardt916a9172008-10-08 11:35:20 +0200639 ret = xt_check_match(par, m->u.match_size - sizeof(*m),
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200640 ipv6->proto, ipv6->invflags & IP6T_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200641 if (ret < 0) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800642 duprintf("ip_tables: check failed for `%s'.\n",
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200643 par.match->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200644 return ret;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800645 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200646 ++*i;
647 return 0;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800648}
649
Denys Vlasenko022748a2008-01-14 23:44:05 -0800650static int
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200651find_check_match(struct ip6t_entry_match *m, struct xt_mtchk_param *par,
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800652 unsigned int *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800654 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800655 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Harald Welte2e4e6a12006-01-12 13:30:04 -0800657 match = try_then_request_module(xt_find_match(AF_INET6, m->u.user.name,
Patrick McHardy9c547952007-12-17 21:52:00 -0800658 m->u.user.revision),
Harald Welte6b7d31f2005-10-26 09:34:24 +0200659 "ip6t_%s", m->u.user.name);
660 if (IS_ERR(match) || !match) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800661 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Harald Welte6b7d31f2005-10-26 09:34:24 +0200662 return match ? PTR_ERR(match) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664 m->u.kernel.match = match;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200666 ret = check_match(m, par, i);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800667 if (ret)
668 goto err;
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800671err:
672 module_put(m->u.kernel.match->me);
673 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
Denys Vlasenko022748a2008-01-14 23:44:05 -0800676static int check_target(struct ip6t_entry *e, const char *name)
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800677{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200678 struct ip6t_entry_target *t = ip6t_get_target(e);
679 struct xt_tgchk_param par = {
680 .table = name,
681 .entryinfo = e,
682 .target = t->u.kernel.target,
683 .targinfo = t->data,
684 .hook_mask = e->comefrom,
Jan Engelhardt916a9172008-10-08 11:35:20 +0200685 .family = NFPROTO_IPV6,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200686 };
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800687 int ret;
688
689 t = ip6t_get_target(e);
Jan Engelhardt916a9172008-10-08 11:35:20 +0200690 ret = xt_check_target(&par, t->u.target_size - sizeof(*t),
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200691 e->ipv6.proto, e->ipv6.invflags & IP6T_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200692 if (ret < 0) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800693 duprintf("ip_tables: check failed for `%s'.\n",
694 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200695 return ret;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800696 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200697 return 0;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800698}
699
Denys Vlasenko022748a2008-01-14 23:44:05 -0800700static int
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800701find_check_entry(struct ip6t_entry *e, const char *name, unsigned int size,
702 unsigned int *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
704 struct ip6t_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800705 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 int ret;
707 unsigned int j;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200708 struct xt_mtchk_param mtpar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800710 ret = check_entry(e, name);
711 if (ret)
712 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 j = 0;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200715 mtpar.table = name;
716 mtpar.entryinfo = &e->ipv6;
717 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200718 mtpar.family = NFPROTO_IPV6;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200719 ret = IP6T_MATCH_ITERATE(e, find_check_match, &mtpar, &j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (ret != 0)
721 goto cleanup_matches;
722
723 t = ip6t_get_target(e);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800724 target = try_then_request_module(xt_find_target(AF_INET6,
725 t->u.user.name,
726 t->u.user.revision),
Harald Welte6b7d31f2005-10-26 09:34:24 +0200727 "ip6t_%s", t->u.user.name);
728 if (IS_ERR(target) || !target) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800729 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Harald Welte6b7d31f2005-10-26 09:34:24 +0200730 ret = target ? PTR_ERR(target) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 goto cleanup_matches;
732 }
733 t->u.kernel.target = target;
Harald Welte6b7d31f2005-10-26 09:34:24 +0200734
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800735 ret = check_target(e, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800736 if (ret)
737 goto err;
738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 (*i)++;
740 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800741 err:
742 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 cleanup_matches:
744 IP6T_MATCH_ITERATE(e, cleanup_match, &j);
745 return ret;
746}
747
Denys Vlasenko022748a2008-01-14 23:44:05 -0800748static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749check_entry_size_and_hooks(struct ip6t_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800750 struct xt_table_info *newinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 unsigned char *base,
752 unsigned char *limit,
753 const unsigned int *hook_entries,
754 const unsigned int *underflows,
755 unsigned int *i)
756{
757 unsigned int h;
758
759 if ((unsigned long)e % __alignof__(struct ip6t_entry) != 0
760 || (unsigned char *)e + sizeof(struct ip6t_entry) >= limit) {
761 duprintf("Bad offset %p\n", e);
762 return -EINVAL;
763 }
764
765 if (e->next_offset
766 < sizeof(struct ip6t_entry) + sizeof(struct ip6t_entry_target)) {
767 duprintf("checking: element %p size %u\n",
768 e, e->next_offset);
769 return -EINVAL;
770 }
771
772 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800773 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 if ((unsigned char *)e - base == hook_entries[h])
775 newinfo->hook_entry[h] = hook_entries[h];
776 if ((unsigned char *)e - base == underflows[h])
777 newinfo->underflow[h] = underflows[h];
778 }
779
780 /* FIXME: underflows must be unconditional, standard verdicts
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900781 < 0 (not IP6T_RETURN). --RR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800784 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 e->comefrom = 0;
786
787 (*i)++;
788 return 0;
789}
790
Denys Vlasenko022748a2008-01-14 23:44:05 -0800791static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792cleanup_entry(struct ip6t_entry *e, unsigned int *i)
793{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200794 struct xt_tgdtor_param par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 struct ip6t_entry_target *t;
796
797 if (i && (*i)-- == 0)
798 return 1;
799
800 /* Cleanup all matches */
801 IP6T_MATCH_ITERATE(e, cleanup_match, NULL);
802 t = ip6t_get_target(e);
Jan Engelhardta2df1642008-10-08 11:35:19 +0200803
804 par.target = t->u.kernel.target;
805 par.targinfo = t->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200806 par.family = NFPROTO_IPV6;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200807 if (par.target->destroy != NULL)
808 par.target->destroy(&par);
809 module_put(par.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 return 0;
811}
812
813/* Checks and translates the user-supplied table segment (held in
814 newinfo) */
815static int
816translate_table(const char *name,
817 unsigned int valid_hooks,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800818 struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800819 void *entry0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 unsigned int size,
821 unsigned int number,
822 const unsigned int *hook_entries,
823 const unsigned int *underflows)
824{
825 unsigned int i;
826 int ret;
827
828 newinfo->size = size;
829 newinfo->number = number;
830
831 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800832 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 newinfo->hook_entry[i] = 0xFFFFFFFF;
834 newinfo->underflow[i] = 0xFFFFFFFF;
835 }
836
837 duprintf("translate_table: size %u\n", newinfo->size);
838 i = 0;
839 /* Walk through entries, checking offsets. */
Eric Dumazet31836062005-12-13 23:13:48 -0800840 ret = IP6T_ENTRY_ITERATE(entry0, newinfo->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 check_entry_size_and_hooks,
842 newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800843 entry0,
844 entry0 + size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 hook_entries, underflows, &i);
846 if (ret != 0)
847 return ret;
848
849 if (i != number) {
850 duprintf("translate_table: %u not %u entries\n",
851 i, number);
852 return -EINVAL;
853 }
854
855 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800856 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 /* Only hooks which are valid */
858 if (!(valid_hooks & (1 << i)))
859 continue;
860 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
861 duprintf("Invalid hook entry %u %u\n",
862 i, hook_entries[i]);
863 return -EINVAL;
864 }
865 if (newinfo->underflow[i] == 0xFFFFFFFF) {
866 duprintf("Invalid underflow %u %u\n",
867 i, underflows[i]);
868 return -EINVAL;
869 }
870 }
871
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800872 if (!mark_source_chains(newinfo, valid_hooks, entry0))
873 return -ELOOP;
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 /* Finally, each sanity check must pass */
876 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -0800877 ret = IP6T_ENTRY_ITERATE(entry0, newinfo->size,
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800878 find_check_entry, name, size, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800880 if (ret != 0) {
881 IP6T_ENTRY_ITERATE(entry0, newinfo->size,
882 cleanup_entry, &i);
883 return ret;
884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 /* And one copy for every other CPU */
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700887 for_each_possible_cpu(i) {
Eric Dumazet31836062005-12-13 23:13:48 -0800888 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
889 memcpy(newinfo->entries[i], entry0, newinfo->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 }
891
Patrick McHardy9c547952007-12-17 21:52:00 -0800892 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893}
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895/* Gets counters. */
896static inline int
897add_entry_to_counter(const struct ip6t_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800898 struct xt_counters total[],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 unsigned int *i)
900{
901 ADD_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
902
903 (*i)++;
904 return 0;
905}
906
Eric Dumazet31836062005-12-13 23:13:48 -0800907static inline int
908set_entry_to_counter(const struct ip6t_entry *e,
909 struct ip6t_counters total[],
910 unsigned int *i)
911{
912 SET_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
913
914 (*i)++;
915 return 0;
916}
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800919get_counters(const struct xt_table_info *t,
920 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
922 unsigned int cpu;
923 unsigned int i;
Eric Dumazet31836062005-12-13 23:13:48 -0800924 unsigned int curcpu;
925
926 /* Instead of clearing (by a previous call to memset())
927 * the counters and using adds, we set the counters
928 * with data used by 'current' CPU
929 * We dont care about preemption here.
930 */
931 curcpu = raw_smp_processor_id();
932
933 i = 0;
934 IP6T_ENTRY_ITERATE(t->entries[curcpu],
935 t->size,
936 set_entry_to_counter,
937 counters,
938 &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700940 for_each_possible_cpu(cpu) {
Eric Dumazet31836062005-12-13 23:13:48 -0800941 if (cpu == curcpu)
942 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -0800944 IP6T_ENTRY_ITERATE(t->entries[cpu],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 t->size,
946 add_entry_to_counter,
947 counters,
948 &i);
949 }
950}
951
Stephen Hemminger78454472009-02-20 10:35:32 +0100952/* We're lazy, and add to the first CPU; overflow works its fey magic
953 * and everything is OK. */
954static int
955add_counter_to_entry(struct ip6t_entry *e,
956 const struct xt_counters addme[],
957 unsigned int *i)
958{
959 ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt);
960
961 (*i)++;
962 return 0;
963}
964
965/* Take values from counters and add them back onto the current cpu */
966static void put_counters(struct xt_table_info *t,
967 const struct xt_counters counters[])
968{
969 unsigned int i, cpu;
970
971 local_bh_disable();
972 cpu = smp_processor_id();
973 i = 0;
974 IP6T_ENTRY_ITERATE(t->entries[cpu],
975 t->size,
976 add_counter_to_entry,
977 counters,
978 &i);
979 local_bh_enable();
980}
981
982static inline int
983zero_entry_counter(struct ip6t_entry *e, void *arg)
984{
985 e->counters.bcnt = 0;
986 e->counters.pcnt = 0;
987 return 0;
988}
989
990static void
991clone_counters(struct xt_table_info *newinfo, const struct xt_table_info *info)
992{
993 unsigned int cpu;
994 const void *loc_cpu_entry = info->entries[raw_smp_processor_id()];
995
996 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
997 for_each_possible_cpu(cpu) {
998 memcpy(newinfo->entries[cpu], loc_cpu_entry, info->size);
999 IP6T_ENTRY_ITERATE(newinfo->entries[cpu], newinfo->size,
1000 zero_entry_counter, NULL);
1001 }
1002}
1003
Denys Vlasenko022748a2008-01-14 23:44:05 -08001004static struct xt_counters *alloc_counters(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
Patrick McHardyed1a6f52007-12-17 21:49:51 -08001006 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001007 struct xt_counters *counters;
Stephen Hemminger78454472009-02-20 10:35:32 +01001008 struct xt_table_info *private = table->private;
1009 struct xt_table_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 /* We need atomic snapshot of counters: rest doesn't change
1012 (other than comefrom, which userspace doesn't care
1013 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -08001014 countersize = sizeof(struct xt_counters) * private->number;
Patrick McHardy3b84e922007-12-17 21:48:33 -08001015 counters = vmalloc_node(countersize, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
1017 if (counters == NULL)
Stephen Hemminger78454472009-02-20 10:35:32 +01001018 goto nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Stephen Hemminger78454472009-02-20 10:35:32 +01001020 info = xt_alloc_table_info(private->size);
1021 if (!info)
1022 goto free_counters;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Stephen Hemminger78454472009-02-20 10:35:32 +01001024 clone_counters(info, private);
1025
1026 mutex_lock(&table->lock);
1027 xt_table_entry_swap_rcu(private, info);
1028 synchronize_net(); /* Wait until smoke has cleared */
1029
1030 get_counters(info, counters);
1031 put_counters(private, counters);
1032 mutex_unlock(&table->lock);
1033
1034 xt_free_table_info(info);
1035
1036 free_counters:
1037 vfree(counters);
1038 nomem:
1039 return ERR_PTR(-ENOMEM);
Patrick McHardyed1a6f52007-12-17 21:49:51 -08001040}
1041
1042static int
1043copy_entries_to_user(unsigned int total_size,
1044 struct xt_table *table,
1045 void __user *userptr)
1046{
1047 unsigned int off, num;
1048 struct ip6t_entry *e;
1049 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001050 const struct xt_table_info *private = table->private;
Patrick McHardyed1a6f52007-12-17 21:49:51 -08001051 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001052 const void *loc_cpu_entry;
Patrick McHardyed1a6f52007-12-17 21:49:51 -08001053
1054 counters = alloc_counters(table);
1055 if (IS_ERR(counters))
1056 return PTR_ERR(counters);
1057
Patrick McHardy9c547952007-12-17 21:52:00 -08001058 /* choose the copy that is on our node/cpu, ...
1059 * This choice is lazy (because current thread is
1060 * allowed to migrate to another cpu)
1061 */
Harald Welte2e4e6a12006-01-12 13:30:04 -08001062 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -08001063 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 ret = -EFAULT;
1065 goto free_counters;
1066 }
1067
1068 /* FIXME: use iterator macros --RR */
1069 /* ... then go back and fix counters and names */
1070 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
1071 unsigned int i;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001072 const struct ip6t_entry_match *m;
1073 const struct ip6t_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Eric Dumazet31836062005-12-13 23:13:48 -08001075 e = (struct ip6t_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 if (copy_to_user(userptr + off
1077 + offsetof(struct ip6t_entry, counters),
1078 &counters[num],
1079 sizeof(counters[num])) != 0) {
1080 ret = -EFAULT;
1081 goto free_counters;
1082 }
1083
1084 for (i = sizeof(struct ip6t_entry);
1085 i < e->target_offset;
1086 i += m->u.match_size) {
1087 m = (void *)e + i;
1088
1089 if (copy_to_user(userptr + off + i
1090 + offsetof(struct ip6t_entry_match,
1091 u.user.name),
1092 m->u.kernel.match->name,
1093 strlen(m->u.kernel.match->name)+1)
1094 != 0) {
1095 ret = -EFAULT;
1096 goto free_counters;
1097 }
1098 }
1099
1100 t = ip6t_get_target(e);
1101 if (copy_to_user(userptr + off + e->target_offset
1102 + offsetof(struct ip6t_entry_target,
1103 u.user.name),
1104 t->u.kernel.target->name,
1105 strlen(t->u.kernel.target->name)+1) != 0) {
1106 ret = -EFAULT;
1107 goto free_counters;
1108 }
1109 }
1110
1111 free_counters:
1112 vfree(counters);
1113 return ret;
1114}
1115
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001116#ifdef CONFIG_COMPAT
1117static void compat_standard_from_user(void *dst, void *src)
1118{
1119 int v = *(compat_int_t *)src;
1120
1121 if (v > 0)
1122 v += xt_compat_calc_jump(AF_INET6, v);
1123 memcpy(dst, &v, sizeof(v));
1124}
1125
1126static int compat_standard_to_user(void __user *dst, void *src)
1127{
1128 compat_int_t cv = *(int *)src;
1129
1130 if (cv > 0)
1131 cv -= xt_compat_calc_jump(AF_INET6, cv);
1132 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
1133}
1134
1135static inline int
1136compat_calc_match(struct ip6t_entry_match *m, int *size)
1137{
1138 *size += xt_compat_match_offset(m->u.kernel.match);
1139 return 0;
1140}
1141
1142static int compat_calc_entry(struct ip6t_entry *e,
1143 const struct xt_table_info *info,
1144 void *base, struct xt_table_info *newinfo)
1145{
1146 struct ip6t_entry_target *t;
1147 unsigned int entry_offset;
1148 int off, i, ret;
1149
1150 off = sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1151 entry_offset = (void *)e - base;
1152 IP6T_MATCH_ITERATE(e, compat_calc_match, &off);
1153 t = ip6t_get_target(e);
1154 off += xt_compat_target_offset(t->u.kernel.target);
1155 newinfo->size -= off;
1156 ret = xt_compat_add_offset(AF_INET6, entry_offset, off);
1157 if (ret)
1158 return ret;
1159
1160 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1161 if (info->hook_entry[i] &&
1162 (e < (struct ip6t_entry *)(base + info->hook_entry[i])))
1163 newinfo->hook_entry[i] -= off;
1164 if (info->underflow[i] &&
1165 (e < (struct ip6t_entry *)(base + info->underflow[i])))
1166 newinfo->underflow[i] -= off;
1167 }
1168 return 0;
1169}
1170
1171static int compat_table_info(const struct xt_table_info *info,
1172 struct xt_table_info *newinfo)
1173{
1174 void *loc_cpu_entry;
1175
1176 if (!newinfo || !info)
1177 return -EINVAL;
1178
1179 /* we dont care about newinfo->entries[] */
1180 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1181 newinfo->initial_entries = 0;
1182 loc_cpu_entry = info->entries[raw_smp_processor_id()];
1183 return IP6T_ENTRY_ITERATE(loc_cpu_entry, info->size,
1184 compat_calc_entry, info, loc_cpu_entry,
1185 newinfo);
1186}
1187#endif
1188
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001189static int get_info(struct net *net, void __user *user, int *len, int compat)
Patrick McHardy433665c2007-12-17 21:50:05 -08001190{
1191 char name[IP6T_TABLE_MAXNAMELEN];
1192 struct xt_table *t;
1193 int ret;
1194
1195 if (*len != sizeof(struct ip6t_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001196 duprintf("length %u != %zu\n", *len,
Patrick McHardy433665c2007-12-17 21:50:05 -08001197 sizeof(struct ip6t_getinfo));
1198 return -EINVAL;
1199 }
1200
1201 if (copy_from_user(name, user, sizeof(name)) != 0)
1202 return -EFAULT;
1203
1204 name[IP6T_TABLE_MAXNAMELEN-1] = '\0';
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001205#ifdef CONFIG_COMPAT
1206 if (compat)
1207 xt_compat_lock(AF_INET6);
1208#endif
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001209 t = try_then_request_module(xt_find_table_lock(net, AF_INET6, name),
Patrick McHardy433665c2007-12-17 21:50:05 -08001210 "ip6table_%s", name);
1211 if (t && !IS_ERR(t)) {
1212 struct ip6t_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001213 const struct xt_table_info *private = t->private;
Patrick McHardy433665c2007-12-17 21:50:05 -08001214
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001215#ifdef CONFIG_COMPAT
1216 if (compat) {
1217 struct xt_table_info tmp;
1218 ret = compat_table_info(private, &tmp);
1219 xt_compat_flush_offsets(AF_INET6);
1220 private = &tmp;
1221 }
1222#endif
Patrick McHardy433665c2007-12-17 21:50:05 -08001223 info.valid_hooks = t->valid_hooks;
1224 memcpy(info.hook_entry, private->hook_entry,
1225 sizeof(info.hook_entry));
1226 memcpy(info.underflow, private->underflow,
1227 sizeof(info.underflow));
1228 info.num_entries = private->number;
1229 info.size = private->size;
Patrick McHardyb5dd6742007-12-17 21:52:35 -08001230 strcpy(info.name, name);
Patrick McHardy433665c2007-12-17 21:50:05 -08001231
1232 if (copy_to_user(user, &info, *len) != 0)
1233 ret = -EFAULT;
1234 else
1235 ret = 0;
1236
1237 xt_table_unlock(t);
1238 module_put(t->me);
1239 } else
1240 ret = t ? PTR_ERR(t) : -ENOENT;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001241#ifdef CONFIG_COMPAT
1242 if (compat)
1243 xt_compat_unlock(AF_INET6);
1244#endif
Patrick McHardy433665c2007-12-17 21:50:05 -08001245 return ret;
1246}
1247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001249get_entries(struct net *net, struct ip6t_get_entries __user *uptr, int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
1251 int ret;
Patrick McHardyd9243572007-12-17 21:50:22 -08001252 struct ip6t_get_entries get;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001253 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Patrick McHardyd9243572007-12-17 21:50:22 -08001255 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001256 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Patrick McHardyd9243572007-12-17 21:50:22 -08001257 return -EINVAL;
1258 }
1259 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1260 return -EFAULT;
1261 if (*len != sizeof(struct ip6t_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001262 duprintf("get_entries: %u != %zu\n",
1263 *len, sizeof(get) + get.size);
Patrick McHardyd9243572007-12-17 21:50:22 -08001264 return -EINVAL;
1265 }
1266
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001267 t = xt_find_table_lock(net, AF_INET6, get.name);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001268 if (t && !IS_ERR(t)) {
Harald Welte2e4e6a12006-01-12 13:30:04 -08001269 struct xt_table_info *private = t->private;
1270 duprintf("t->private->number = %u\n", private->number);
Patrick McHardyd9243572007-12-17 21:50:22 -08001271 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001272 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 t, uptr->entrytable);
1274 else {
1275 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001276 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001277 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 }
Harald Welte6b7d31f2005-10-26 09:34:24 +02001279 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001280 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 } else
Harald Welte6b7d31f2005-10-26 09:34:24 +02001282 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 return ret;
1285}
1286
1287static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001288__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001289 struct xt_table_info *newinfo, unsigned int num_counters,
1290 void __user *counters_ptr)
1291{
1292 int ret;
1293 struct xt_table *t;
1294 struct xt_table_info *oldinfo;
1295 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001296 const void *loc_cpu_old_entry;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001297
1298 ret = 0;
1299 counters = vmalloc_node(num_counters * sizeof(struct xt_counters),
1300 numa_node_id());
1301 if (!counters) {
1302 ret = -ENOMEM;
1303 goto out;
1304 }
1305
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001306 t = try_then_request_module(xt_find_table_lock(net, AF_INET6, name),
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001307 "ip6table_%s", name);
1308 if (!t || IS_ERR(t)) {
1309 ret = t ? PTR_ERR(t) : -ENOENT;
1310 goto free_newinfo_counters_untrans;
1311 }
1312
1313 /* You lied! */
1314 if (valid_hooks != t->valid_hooks) {
1315 duprintf("Valid hook crap: %08X vs %08X\n",
1316 valid_hooks, t->valid_hooks);
1317 ret = -EINVAL;
1318 goto put_module;
1319 }
1320
1321 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1322 if (!oldinfo)
1323 goto put_module;
1324
1325 /* Update module usage count based on number of rules */
1326 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1327 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1328 if ((oldinfo->number > oldinfo->initial_entries) ||
1329 (newinfo->number <= oldinfo->initial_entries))
1330 module_put(t->me);
1331 if ((oldinfo->number > oldinfo->initial_entries) &&
1332 (newinfo->number <= oldinfo->initial_entries))
1333 module_put(t->me);
1334
1335 /* Get the old counters. */
1336 get_counters(oldinfo, counters);
1337 /* Decrease module usage counts and free resource */
1338 loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
1339 IP6T_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry,
1340 NULL);
1341 xt_free_table_info(oldinfo);
1342 if (copy_to_user(counters_ptr, counters,
1343 sizeof(struct xt_counters) * num_counters) != 0)
1344 ret = -EFAULT;
1345 vfree(counters);
1346 xt_table_unlock(t);
1347 return ret;
1348
1349 put_module:
1350 module_put(t->me);
1351 xt_table_unlock(t);
1352 free_newinfo_counters_untrans:
1353 vfree(counters);
1354 out:
1355 return ret;
1356}
1357
1358static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001359do_replace(struct net *net, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
1361 int ret;
1362 struct ip6t_replace tmp;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001363 struct xt_table_info *newinfo;
1364 void *loc_cpu_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
1366 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1367 return -EFAULT;
1368
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001369 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001370 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1371 return -ENOMEM;
1372
Harald Welte2e4e6a12006-01-12 13:30:04 -08001373 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 if (!newinfo)
1375 return -ENOMEM;
1376
Eric Dumazet31836062005-12-13 23:13:48 -08001377 /* choose the copy that is on our node/cpu */
1378 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1379 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 tmp.size) != 0) {
1381 ret = -EFAULT;
1382 goto free_newinfo;
1383 }
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 ret = translate_table(tmp.name, tmp.valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08001386 newinfo, loc_cpu_entry, tmp.size, tmp.num_entries,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 tmp.hook_entry, tmp.underflow);
1388 if (ret != 0)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001389 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391 duprintf("ip_tables: Translated table\n");
1392
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001393 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001394 tmp.num_counters, tmp.counters);
1395 if (ret)
1396 goto free_newinfo_untrans;
1397 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001399 free_newinfo_untrans:
1400 IP6T_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001402 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 return ret;
1404}
1405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001407do_add_counters(struct net *net, void __user *user, unsigned int len,
1408 int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
1410 unsigned int i;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001411 struct xt_counters_info tmp;
1412 struct xt_counters *paddc;
1413 unsigned int num_counters;
1414 char *name;
1415 int size;
1416 void *ptmp;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001417 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001418 const struct xt_table_info *private;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001419 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001420 const void *loc_cpu_entry;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001421#ifdef CONFIG_COMPAT
1422 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001424 if (compat) {
1425 ptmp = &compat_tmp;
1426 size = sizeof(struct compat_xt_counters_info);
1427 } else
1428#endif
1429 {
1430 ptmp = &tmp;
1431 size = sizeof(struct xt_counters_info);
1432 }
1433
1434 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 return -EFAULT;
1436
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001437#ifdef CONFIG_COMPAT
1438 if (compat) {
1439 num_counters = compat_tmp.num_counters;
1440 name = compat_tmp.name;
1441 } else
1442#endif
1443 {
1444 num_counters = tmp.num_counters;
1445 name = tmp.name;
1446 }
1447
1448 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 return -EINVAL;
1450
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001451 paddc = vmalloc_node(len - size, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 if (!paddc)
1453 return -ENOMEM;
1454
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001455 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 ret = -EFAULT;
1457 goto free;
1458 }
1459
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001460 t = xt_find_table_lock(net, AF_INET6, name);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001461 if (!t || IS_ERR(t)) {
1462 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 goto free;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Stephen Hemminger78454472009-02-20 10:35:32 +01001466 mutex_lock(&t->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001467 private = t->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001468 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 ret = -EINVAL;
1470 goto unlock_up_free;
1471 }
1472
Stephen Hemminger78454472009-02-20 10:35:32 +01001473 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001475 /* Choose the copy that is on our node */
Patrick McHardyda4d0f62007-12-17 21:52:52 -08001476 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -08001477 IP6T_ENTRY_ITERATE(loc_cpu_entry,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001478 private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 add_counter_to_entry,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001480 paddc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 &i);
Stephen Hemminger78454472009-02-20 10:35:32 +01001482 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 unlock_up_free:
Stephen Hemminger78454472009-02-20 10:35:32 +01001484 mutex_unlock(&t->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001485 xt_table_unlock(t);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001486 module_put(t->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 free:
1488 vfree(paddc);
1489
1490 return ret;
1491}
1492
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001493#ifdef CONFIG_COMPAT
1494struct compat_ip6t_replace {
1495 char name[IP6T_TABLE_MAXNAMELEN];
1496 u32 valid_hooks;
1497 u32 num_entries;
1498 u32 size;
1499 u32 hook_entry[NF_INET_NUMHOOKS];
1500 u32 underflow[NF_INET_NUMHOOKS];
1501 u32 num_counters;
1502 compat_uptr_t counters; /* struct ip6t_counters * */
1503 struct compat_ip6t_entry entries[0];
1504};
1505
1506static int
1507compat_copy_entry_to_user(struct ip6t_entry *e, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001508 unsigned int *size, struct xt_counters *counters,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001509 unsigned int *i)
1510{
1511 struct ip6t_entry_target *t;
1512 struct compat_ip6t_entry __user *ce;
1513 u_int16_t target_offset, next_offset;
1514 compat_uint_t origsize;
1515 int ret;
1516
1517 ret = -EFAULT;
1518 origsize = *size;
1519 ce = (struct compat_ip6t_entry __user *)*dstptr;
1520 if (copy_to_user(ce, e, sizeof(struct ip6t_entry)))
1521 goto out;
1522
1523 if (copy_to_user(&ce->counters, &counters[*i], sizeof(counters[*i])))
1524 goto out;
1525
1526 *dstptr += sizeof(struct compat_ip6t_entry);
1527 *size -= sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1528
1529 ret = IP6T_MATCH_ITERATE(e, xt_compat_match_to_user, dstptr, size);
1530 target_offset = e->target_offset - (origsize - *size);
1531 if (ret)
1532 goto out;
1533 t = ip6t_get_target(e);
1534 ret = xt_compat_target_to_user(t, dstptr, size);
1535 if (ret)
1536 goto out;
1537 ret = -EFAULT;
1538 next_offset = e->next_offset - (origsize - *size);
1539 if (put_user(target_offset, &ce->target_offset))
1540 goto out;
1541 if (put_user(next_offset, &ce->next_offset))
1542 goto out;
1543
1544 (*i)++;
1545 return 0;
1546out:
1547 return ret;
1548}
1549
Denys Vlasenko022748a2008-01-14 23:44:05 -08001550static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001551compat_find_calc_match(struct ip6t_entry_match *m,
1552 const char *name,
1553 const struct ip6t_ip6 *ipv6,
1554 unsigned int hookmask,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001555 int *size, unsigned int *i)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001556{
1557 struct xt_match *match;
1558
1559 match = try_then_request_module(xt_find_match(AF_INET6, m->u.user.name,
1560 m->u.user.revision),
1561 "ip6t_%s", m->u.user.name);
1562 if (IS_ERR(match) || !match) {
1563 duprintf("compat_check_calc_match: `%s' not found\n",
1564 m->u.user.name);
1565 return match ? PTR_ERR(match) : -ENOENT;
1566 }
1567 m->u.kernel.match = match;
1568 *size += xt_compat_match_offset(match);
1569
1570 (*i)++;
1571 return 0;
1572}
1573
Denys Vlasenko022748a2008-01-14 23:44:05 -08001574static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001575compat_release_match(struct ip6t_entry_match *m, unsigned int *i)
1576{
1577 if (i && (*i)-- == 0)
1578 return 1;
1579
1580 module_put(m->u.kernel.match->me);
1581 return 0;
1582}
1583
Denys Vlasenko022748a2008-01-14 23:44:05 -08001584static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001585compat_release_entry(struct compat_ip6t_entry *e, unsigned int *i)
1586{
1587 struct ip6t_entry_target *t;
1588
1589 if (i && (*i)-- == 0)
1590 return 1;
1591
1592 /* Cleanup all matches */
1593 COMPAT_IP6T_MATCH_ITERATE(e, compat_release_match, NULL);
1594 t = compat_ip6t_get_target(e);
1595 module_put(t->u.kernel.target->me);
1596 return 0;
1597}
1598
Denys Vlasenko022748a2008-01-14 23:44:05 -08001599static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001600check_compat_entry_size_and_hooks(struct compat_ip6t_entry *e,
1601 struct xt_table_info *newinfo,
1602 unsigned int *size,
1603 unsigned char *base,
1604 unsigned char *limit,
1605 unsigned int *hook_entries,
1606 unsigned int *underflows,
1607 unsigned int *i,
1608 const char *name)
1609{
1610 struct ip6t_entry_target *t;
1611 struct xt_target *target;
1612 unsigned int entry_offset;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001613 unsigned int j;
1614 int ret, off, h;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001615
1616 duprintf("check_compat_entry_size_and_hooks %p\n", e);
1617 if ((unsigned long)e % __alignof__(struct compat_ip6t_entry) != 0
1618 || (unsigned char *)e + sizeof(struct compat_ip6t_entry) >= limit) {
1619 duprintf("Bad offset %p, limit = %p\n", e, limit);
1620 return -EINVAL;
1621 }
1622
1623 if (e->next_offset < sizeof(struct compat_ip6t_entry) +
1624 sizeof(struct compat_xt_entry_target)) {
1625 duprintf("checking: element %p size %u\n",
1626 e, e->next_offset);
1627 return -EINVAL;
1628 }
1629
1630 /* For purposes of check_entry casting the compat entry is fine */
1631 ret = check_entry((struct ip6t_entry *)e, name);
1632 if (ret)
1633 return ret;
1634
1635 off = sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1636 entry_offset = (void *)e - (void *)base;
1637 j = 0;
1638 ret = COMPAT_IP6T_MATCH_ITERATE(e, compat_find_calc_match, name,
1639 &e->ipv6, e->comefrom, &off, &j);
1640 if (ret != 0)
1641 goto release_matches;
1642
1643 t = compat_ip6t_get_target(e);
1644 target = try_then_request_module(xt_find_target(AF_INET6,
1645 t->u.user.name,
1646 t->u.user.revision),
1647 "ip6t_%s", t->u.user.name);
1648 if (IS_ERR(target) || !target) {
1649 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
1650 t->u.user.name);
1651 ret = target ? PTR_ERR(target) : -ENOENT;
1652 goto release_matches;
1653 }
1654 t->u.kernel.target = target;
1655
1656 off += xt_compat_target_offset(target);
1657 *size += off;
1658 ret = xt_compat_add_offset(AF_INET6, entry_offset, off);
1659 if (ret)
1660 goto out;
1661
1662 /* Check hooks & underflows */
1663 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
1664 if ((unsigned char *)e - base == hook_entries[h])
1665 newinfo->hook_entry[h] = hook_entries[h];
1666 if ((unsigned char *)e - base == underflows[h])
1667 newinfo->underflow[h] = underflows[h];
1668 }
1669
1670 /* Clear counters and comefrom */
1671 memset(&e->counters, 0, sizeof(e->counters));
1672 e->comefrom = 0;
1673
1674 (*i)++;
1675 return 0;
1676
1677out:
1678 module_put(t->u.kernel.target->me);
1679release_matches:
1680 IP6T_MATCH_ITERATE(e, compat_release_match, &j);
1681 return ret;
1682}
1683
1684static int
1685compat_copy_entry_from_user(struct compat_ip6t_entry *e, void **dstptr,
1686 unsigned int *size, const char *name,
1687 struct xt_table_info *newinfo, unsigned char *base)
1688{
1689 struct ip6t_entry_target *t;
1690 struct xt_target *target;
1691 struct ip6t_entry *de;
1692 unsigned int origsize;
1693 int ret, h;
1694
1695 ret = 0;
1696 origsize = *size;
1697 de = (struct ip6t_entry *)*dstptr;
1698 memcpy(de, e, sizeof(struct ip6t_entry));
1699 memcpy(&de->counters, &e->counters, sizeof(e->counters));
1700
1701 *dstptr += sizeof(struct ip6t_entry);
1702 *size += sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1703
1704 ret = COMPAT_IP6T_MATCH_ITERATE(e, xt_compat_match_from_user,
1705 dstptr, size);
1706 if (ret)
1707 return ret;
1708 de->target_offset = e->target_offset - (origsize - *size);
1709 t = compat_ip6t_get_target(e);
1710 target = t->u.kernel.target;
1711 xt_compat_target_from_user(t, dstptr, size);
1712
1713 de->next_offset = e->next_offset - (origsize - *size);
1714 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
1715 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1716 newinfo->hook_entry[h] -= origsize - *size;
1717 if ((unsigned char *)de - base < newinfo->underflow[h])
1718 newinfo->underflow[h] -= origsize - *size;
1719 }
1720 return ret;
1721}
1722
Denys Vlasenko022748a2008-01-14 23:44:05 -08001723static int compat_check_entry(struct ip6t_entry *e, const char *name,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001724 unsigned int *i)
1725{
Patrick McHardyb0a63632008-01-31 04:10:18 -08001726 unsigned int j;
1727 int ret;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001728 struct xt_mtchk_param mtpar;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001729
1730 j = 0;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001731 mtpar.table = name;
1732 mtpar.entryinfo = &e->ipv6;
1733 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +02001734 mtpar.family = NFPROTO_IPV6;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001735 ret = IP6T_MATCH_ITERATE(e, check_match, &mtpar, &j);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001736 if (ret)
1737 goto cleanup_matches;
1738
1739 ret = check_target(e, name);
1740 if (ret)
1741 goto cleanup_matches;
1742
1743 (*i)++;
1744 return 0;
1745
1746 cleanup_matches:
1747 IP6T_MATCH_ITERATE(e, cleanup_match, &j);
1748 return ret;
1749}
1750
1751static int
1752translate_compat_table(const char *name,
1753 unsigned int valid_hooks,
1754 struct xt_table_info **pinfo,
1755 void **pentry0,
1756 unsigned int total_size,
1757 unsigned int number,
1758 unsigned int *hook_entries,
1759 unsigned int *underflows)
1760{
1761 unsigned int i, j;
1762 struct xt_table_info *newinfo, *info;
1763 void *pos, *entry0, *entry1;
1764 unsigned int size;
1765 int ret;
1766
1767 info = *pinfo;
1768 entry0 = *pentry0;
1769 size = total_size;
1770 info->number = number;
1771
1772 /* Init all hooks to impossible value. */
1773 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1774 info->hook_entry[i] = 0xFFFFFFFF;
1775 info->underflow[i] = 0xFFFFFFFF;
1776 }
1777
1778 duprintf("translate_compat_table: size %u\n", info->size);
1779 j = 0;
1780 xt_compat_lock(AF_INET6);
1781 /* Walk through entries, checking offsets. */
1782 ret = COMPAT_IP6T_ENTRY_ITERATE(entry0, total_size,
1783 check_compat_entry_size_and_hooks,
1784 info, &size, entry0,
1785 entry0 + total_size,
1786 hook_entries, underflows, &j, name);
1787 if (ret != 0)
1788 goto out_unlock;
1789
1790 ret = -EINVAL;
1791 if (j != number) {
1792 duprintf("translate_compat_table: %u not %u entries\n",
1793 j, number);
1794 goto out_unlock;
1795 }
1796
1797 /* Check hooks all assigned */
1798 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1799 /* Only hooks which are valid */
1800 if (!(valid_hooks & (1 << i)))
1801 continue;
1802 if (info->hook_entry[i] == 0xFFFFFFFF) {
1803 duprintf("Invalid hook entry %u %u\n",
1804 i, hook_entries[i]);
1805 goto out_unlock;
1806 }
1807 if (info->underflow[i] == 0xFFFFFFFF) {
1808 duprintf("Invalid underflow %u %u\n",
1809 i, underflows[i]);
1810 goto out_unlock;
1811 }
1812 }
1813
1814 ret = -ENOMEM;
1815 newinfo = xt_alloc_table_info(size);
1816 if (!newinfo)
1817 goto out_unlock;
1818
1819 newinfo->number = number;
1820 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1821 newinfo->hook_entry[i] = info->hook_entry[i];
1822 newinfo->underflow[i] = info->underflow[i];
1823 }
1824 entry1 = newinfo->entries[raw_smp_processor_id()];
1825 pos = entry1;
1826 size = total_size;
1827 ret = COMPAT_IP6T_ENTRY_ITERATE(entry0, total_size,
1828 compat_copy_entry_from_user,
1829 &pos, &size, name, newinfo, entry1);
1830 xt_compat_flush_offsets(AF_INET6);
1831 xt_compat_unlock(AF_INET6);
1832 if (ret)
1833 goto free_newinfo;
1834
1835 ret = -ELOOP;
1836 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1837 goto free_newinfo;
1838
1839 i = 0;
1840 ret = IP6T_ENTRY_ITERATE(entry1, newinfo->size, compat_check_entry,
1841 name, &i);
1842 if (ret) {
1843 j -= i;
1844 COMPAT_IP6T_ENTRY_ITERATE_CONTINUE(entry0, newinfo->size, i,
1845 compat_release_entry, &j);
1846 IP6T_ENTRY_ITERATE(entry1, newinfo->size, cleanup_entry, &i);
1847 xt_free_table_info(newinfo);
1848 return ret;
1849 }
1850
1851 /* And one copy for every other CPU */
1852 for_each_possible_cpu(i)
1853 if (newinfo->entries[i] && newinfo->entries[i] != entry1)
1854 memcpy(newinfo->entries[i], entry1, newinfo->size);
1855
1856 *pinfo = newinfo;
1857 *pentry0 = entry1;
1858 xt_free_table_info(info);
1859 return 0;
1860
1861free_newinfo:
1862 xt_free_table_info(newinfo);
1863out:
1864 COMPAT_IP6T_ENTRY_ITERATE(entry0, total_size, compat_release_entry, &j);
1865 return ret;
1866out_unlock:
1867 xt_compat_flush_offsets(AF_INET6);
1868 xt_compat_unlock(AF_INET6);
1869 goto out;
1870}
1871
1872static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001873compat_do_replace(struct net *net, void __user *user, unsigned int len)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001874{
1875 int ret;
1876 struct compat_ip6t_replace tmp;
1877 struct xt_table_info *newinfo;
1878 void *loc_cpu_entry;
1879
1880 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1881 return -EFAULT;
1882
1883 /* overflow check */
1884 if (tmp.size >= INT_MAX / num_possible_cpus())
1885 return -ENOMEM;
1886 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1887 return -ENOMEM;
1888
1889 newinfo = xt_alloc_table_info(tmp.size);
1890 if (!newinfo)
1891 return -ENOMEM;
1892
Patrick McHardy9c547952007-12-17 21:52:00 -08001893 /* choose the copy that is on our node/cpu */
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001894 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1895 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1896 tmp.size) != 0) {
1897 ret = -EFAULT;
1898 goto free_newinfo;
1899 }
1900
1901 ret = translate_compat_table(tmp.name, tmp.valid_hooks,
1902 &newinfo, &loc_cpu_entry, tmp.size,
1903 tmp.num_entries, tmp.hook_entry,
1904 tmp.underflow);
1905 if (ret != 0)
1906 goto free_newinfo;
1907
1908 duprintf("compat_do_replace: Translated table\n");
1909
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001910 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001911 tmp.num_counters, compat_ptr(tmp.counters));
1912 if (ret)
1913 goto free_newinfo_untrans;
1914 return 0;
1915
1916 free_newinfo_untrans:
1917 IP6T_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
1918 free_newinfo:
1919 xt_free_table_info(newinfo);
1920 return ret;
1921}
1922
1923static int
1924compat_do_ip6t_set_ctl(struct sock *sk, int cmd, void __user *user,
1925 unsigned int len)
1926{
1927 int ret;
1928
1929 if (!capable(CAP_NET_ADMIN))
1930 return -EPERM;
1931
1932 switch (cmd) {
1933 case IP6T_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001934 ret = compat_do_replace(sock_net(sk), user, len);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001935 break;
1936
1937 case IP6T_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001938 ret = do_add_counters(sock_net(sk), user, len, 1);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001939 break;
1940
1941 default:
1942 duprintf("do_ip6t_set_ctl: unknown request %i\n", cmd);
1943 ret = -EINVAL;
1944 }
1945
1946 return ret;
1947}
1948
1949struct compat_ip6t_get_entries {
1950 char name[IP6T_TABLE_MAXNAMELEN];
1951 compat_uint_t size;
1952 struct compat_ip6t_entry entrytable[0];
1953};
1954
1955static int
1956compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1957 void __user *userptr)
1958{
1959 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001960 const struct xt_table_info *private = table->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001961 void __user *pos;
1962 unsigned int size;
1963 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001964 const void *loc_cpu_entry;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001965 unsigned int i = 0;
1966
1967 counters = alloc_counters(table);
1968 if (IS_ERR(counters))
1969 return PTR_ERR(counters);
1970
1971 /* choose the copy that is on our node/cpu, ...
1972 * This choice is lazy (because current thread is
1973 * allowed to migrate to another cpu)
1974 */
1975 loc_cpu_entry = private->entries[raw_smp_processor_id()];
1976 pos = userptr;
1977 size = total_size;
1978 ret = IP6T_ENTRY_ITERATE(loc_cpu_entry, total_size,
1979 compat_copy_entry_to_user,
1980 &pos, &size, counters, &i);
1981
1982 vfree(counters);
1983 return ret;
1984}
1985
1986static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001987compat_get_entries(struct net *net, struct compat_ip6t_get_entries __user *uptr,
1988 int *len)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001989{
1990 int ret;
1991 struct compat_ip6t_get_entries get;
1992 struct xt_table *t;
1993
1994 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001995 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001996 return -EINVAL;
1997 }
1998
1999 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
2000 return -EFAULT;
2001
2002 if (*len != sizeof(struct compat_ip6t_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08002003 duprintf("compat_get_entries: %u != %zu\n",
2004 *len, sizeof(get) + get.size);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002005 return -EINVAL;
2006 }
2007
2008 xt_compat_lock(AF_INET6);
Alexey Dobriyan336b5172008-01-31 04:03:45 -08002009 t = xt_find_table_lock(net, AF_INET6, get.name);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002010 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02002011 const struct xt_table_info *private = t->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002012 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08002013 duprintf("t->private->number = %u\n", private->number);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002014 ret = compat_table_info(private, &info);
2015 if (!ret && get.size == info.size) {
2016 ret = compat_copy_entries_to_user(private->size,
2017 t, uptr->entrytable);
2018 } else if (!ret) {
2019 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08002020 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02002021 ret = -EAGAIN;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002022 }
2023 xt_compat_flush_offsets(AF_INET6);
2024 module_put(t->me);
2025 xt_table_unlock(t);
2026 } else
2027 ret = t ? PTR_ERR(t) : -ENOENT;
2028
2029 xt_compat_unlock(AF_INET6);
2030 return ret;
2031}
2032
2033static int do_ip6t_get_ctl(struct sock *, int, void __user *, int *);
2034
2035static int
2036compat_do_ip6t_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2037{
2038 int ret;
2039
2040 if (!capable(CAP_NET_ADMIN))
2041 return -EPERM;
2042
2043 switch (cmd) {
2044 case IP6T_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002045 ret = get_info(sock_net(sk), user, len, 1);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002046 break;
2047 case IP6T_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002048 ret = compat_get_entries(sock_net(sk), user, len);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002049 break;
2050 default:
2051 ret = do_ip6t_get_ctl(sk, cmd, user, len);
2052 }
2053 return ret;
2054}
2055#endif
2056
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057static int
2058do_ip6t_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
2059{
2060 int ret;
2061
2062 if (!capable(CAP_NET_ADMIN))
2063 return -EPERM;
2064
2065 switch (cmd) {
2066 case IP6T_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002067 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 break;
2069
2070 case IP6T_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002071 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 break;
2073
2074 default:
2075 duprintf("do_ip6t_set_ctl: unknown request %i\n", cmd);
2076 ret = -EINVAL;
2077 }
2078
2079 return ret;
2080}
2081
2082static int
2083do_ip6t_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2084{
2085 int ret;
2086
2087 if (!capable(CAP_NET_ADMIN))
2088 return -EPERM;
2089
2090 switch (cmd) {
Patrick McHardy433665c2007-12-17 21:50:05 -08002091 case IP6T_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002092 ret = get_info(sock_net(sk), user, len, 0);
Patrick McHardy433665c2007-12-17 21:50:05 -08002093 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Patrick McHardyd9243572007-12-17 21:50:22 -08002095 case IP6T_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002096 ret = get_entries(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Harald Welte6b7d31f2005-10-26 09:34:24 +02002099 case IP6T_SO_GET_REVISION_MATCH:
2100 case IP6T_SO_GET_REVISION_TARGET: {
2101 struct ip6t_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002102 int target;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002103
2104 if (*len != sizeof(rev)) {
2105 ret = -EINVAL;
2106 break;
2107 }
2108 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2109 ret = -EFAULT;
2110 break;
2111 }
2112
2113 if (cmd == IP6T_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08002114 target = 1;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002115 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08002116 target = 0;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002117
Harald Welte2e4e6a12006-01-12 13:30:04 -08002118 try_then_request_module(xt_find_revision(AF_INET6, rev.name,
2119 rev.revision,
2120 target, &ret),
Harald Welte6b7d31f2005-10-26 09:34:24 +02002121 "ip6t_%s", rev.name);
2122 break;
2123 }
2124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 default:
2126 duprintf("do_ip6t_get_ctl: unknown request %i\n", cmd);
2127 ret = -EINVAL;
2128 }
2129
2130 return ret;
2131}
2132
Alexey Dobriyan336b5172008-01-31 04:03:45 -08002133struct xt_table *ip6t_register_table(struct net *net, struct xt_table *table,
2134 const struct ip6t_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135{
2136 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002137 struct xt_table_info *newinfo;
Eric Dumazet259d4e42007-12-04 23:24:56 -08002138 struct xt_table_info bootstrap
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 = { 0, 0, 0, { 0 }, { 0 }, { } };
Eric Dumazet31836062005-12-13 23:13:48 -08002140 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08002141 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Harald Welte2e4e6a12006-01-12 13:30:04 -08002143 newinfo = xt_alloc_table_info(repl->size);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002144 if (!newinfo) {
2145 ret = -ENOMEM;
2146 goto out;
2147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Patrick McHardy9c547952007-12-17 21:52:00 -08002149 /* choose the copy on our node/cpu, but dont care about preemption */
Eric Dumazet31836062005-12-13 23:13:48 -08002150 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
2151 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
2153 ret = translate_table(table->name, table->valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08002154 newinfo, loc_cpu_entry, repl->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 repl->num_entries,
2156 repl->hook_entry,
2157 repl->underflow);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002158 if (ret != 0)
2159 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Alexey Dobriyan336b5172008-01-31 04:03:45 -08002161 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08002162 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002163 ret = PTR_ERR(new_table);
2164 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 }
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002166 return new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002168out_free:
2169 xt_free_table_info(newinfo);
2170out:
2171 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172}
2173
Harald Welte2e4e6a12006-01-12 13:30:04 -08002174void ip6t_unregister_table(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175{
Harald Welte2e4e6a12006-01-12 13:30:04 -08002176 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08002177 void *loc_cpu_entry;
Alexey Dobriyandf200962008-01-31 04:05:34 -08002178 struct module *table_owner = table->me;
Eric Dumazet31836062005-12-13 23:13:48 -08002179
Harald Welte2e4e6a12006-01-12 13:30:04 -08002180 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
2182 /* Decrease module usage counts and free resources */
Harald Welte2e4e6a12006-01-12 13:30:04 -08002183 loc_cpu_entry = private->entries[raw_smp_processor_id()];
2184 IP6T_ENTRY_ITERATE(loc_cpu_entry, private->size, cleanup_entry, NULL);
Alexey Dobriyandf200962008-01-31 04:05:34 -08002185 if (private->number > private->initial_entries)
2186 module_put(table_owner);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002187 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188}
2189
2190/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardtccb79bd2007-07-07 22:16:00 -07002191static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192icmp6_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2193 u_int8_t type, u_int8_t code,
Jan Engelhardtccb79bd2007-07-07 22:16:00 -07002194 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195{
2196 return (type == test_type && code >= min_code && code <= max_code)
2197 ^ invert;
2198}
2199
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002200static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002201icmp6_match(const struct sk_buff *skb, const struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202{
Jan Engelhardt5452e422008-04-14 11:15:35 +02002203 const struct icmp6hdr *ic;
2204 struct icmp6hdr _icmph;
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002205 const struct ip6t_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
2207 /* Must not be a fragment. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002208 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002209 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002211 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 if (ic == NULL) {
2213 /* We've been asked to examine this packet, and we
Patrick McHardy9c547952007-12-17 21:52:00 -08002214 * can't. Hence, no choice but to drop.
2215 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002217 *par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002218 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 }
2220
2221 return icmp6_type_code_match(icmpinfo->type,
2222 icmpinfo->code[0],
2223 icmpinfo->code[1],
2224 ic->icmp6_type, ic->icmp6_code,
2225 !!(icmpinfo->invflags&IP6T_ICMP_INV));
2226}
2227
2228/* Called when user tries to insert an entry of this type. */
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002229static bool icmp6_checkentry(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002231 const struct ip6t_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
Patrick McHardy7f939712006-03-20 18:01:43 -08002233 /* Must specify no unknown invflags */
2234 return !(icmpinfo->invflags & ~IP6T_ICMP_INV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235}
2236
2237/* The built-in targets: standard (NULL) and error. */
Patrick McHardy9f15c532007-07-07 22:22:02 -07002238static struct xt_target ip6t_standard_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 .name = IP6T_STANDARD_TARGET,
Patrick McHardy7f939712006-03-20 18:01:43 -08002240 .targetsize = sizeof(int),
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002241 .family = AF_INET6,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002242#ifdef CONFIG_COMPAT
2243 .compatsize = sizeof(compat_int_t),
2244 .compat_from_user = compat_standard_from_user,
2245 .compat_to_user = compat_standard_to_user,
2246#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247};
2248
Patrick McHardy9f15c532007-07-07 22:22:02 -07002249static struct xt_target ip6t_error_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 .name = IP6T_ERROR_TARGET,
2251 .target = ip6t_error,
Patrick McHardy7f939712006-03-20 18:01:43 -08002252 .targetsize = IP6T_FUNCTION_MAXNAMELEN,
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002253 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254};
2255
2256static struct nf_sockopt_ops ip6t_sockopts = {
2257 .pf = PF_INET6,
2258 .set_optmin = IP6T_BASE_CTL,
2259 .set_optmax = IP6T_SO_SET_MAX+1,
2260 .set = do_ip6t_set_ctl,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002261#ifdef CONFIG_COMPAT
2262 .compat_set = compat_do_ip6t_set_ctl,
2263#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 .get_optmin = IP6T_BASE_CTL,
2265 .get_optmax = IP6T_SO_GET_MAX+1,
2266 .get = do_ip6t_get_ctl,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002267#ifdef CONFIG_COMPAT
2268 .compat_get = compat_do_ip6t_get_ctl,
2269#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002270 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271};
2272
Patrick McHardy9f15c532007-07-07 22:22:02 -07002273static struct xt_match icmp6_matchstruct __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 .name = "icmp6",
Patrick McHardy9c547952007-12-17 21:52:00 -08002275 .match = icmp6_match,
Patrick McHardy7f939712006-03-20 18:01:43 -08002276 .matchsize = sizeof(struct ip6t_icmp),
2277 .checkentry = icmp6_checkentry,
2278 .proto = IPPROTO_ICMPV6,
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002279 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280};
2281
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002282static int __net_init ip6_tables_net_init(struct net *net)
2283{
2284 return xt_proto_init(net, AF_INET6);
2285}
2286
2287static void __net_exit ip6_tables_net_exit(struct net *net)
2288{
2289 xt_proto_fini(net, AF_INET6);
2290}
2291
2292static struct pernet_operations ip6_tables_net_ops = {
2293 .init = ip6_tables_net_init,
2294 .exit = ip6_tables_net_exit,
2295};
2296
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002297static int __init ip6_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298{
2299 int ret;
2300
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002301 ret = register_pernet_subsys(&ip6_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002302 if (ret < 0)
2303 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002304
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 /* Noone else will be downing sem now, so we won't sleep */
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002306 ret = xt_register_target(&ip6t_standard_target);
2307 if (ret < 0)
2308 goto err2;
2309 ret = xt_register_target(&ip6t_error_target);
2310 if (ret < 0)
2311 goto err3;
2312 ret = xt_register_match(&icmp6_matchstruct);
2313 if (ret < 0)
2314 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
2316 /* Register setsockopt */
2317 ret = nf_register_sockopt(&ip6t_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002318 if (ret < 0)
2319 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
Patrick McHardya887c1c2007-07-14 20:46:15 -07002321 printk(KERN_INFO "ip6_tables: (C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002323
2324err5:
2325 xt_unregister_match(&icmp6_matchstruct);
2326err4:
2327 xt_unregister_target(&ip6t_error_target);
2328err3:
2329 xt_unregister_target(&ip6t_standard_target);
2330err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002331 unregister_pernet_subsys(&ip6_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002332err1:
2333 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334}
2335
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002336static void __exit ip6_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337{
2338 nf_unregister_sockopt(&ip6t_sockopts);
Patrick McHardy9c547952007-12-17 21:52:00 -08002339
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002340 xt_unregister_match(&icmp6_matchstruct);
2341 xt_unregister_target(&ip6t_error_target);
2342 xt_unregister_target(&ip6t_standard_target);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002343
2344 unregister_pernet_subsys(&ip6_tables_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345}
2346
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002347/*
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002348 * find the offset to specified header or the protocol number of last header
2349 * if target < 0. "last header" is transport protocol header, ESP, or
2350 * "No next header".
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002351 *
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002352 * If target header is found, its offset is set in *offset and return protocol
2353 * number. Otherwise, return -1.
2354 *
Patrick McHardy6d381632006-10-24 16:15:10 -07002355 * If the first fragment doesn't contain the final protocol header or
2356 * NEXTHDR_NONE it is considered invalid.
2357 *
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002358 * Note that non-1st fragment is special case that "the protocol number
2359 * of last header" is "next header" field in Fragment header. In this case,
2360 * *offset is meaningless and fragment offset is stored in *fragoff if fragoff
2361 * isn't NULL.
2362 *
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002363 */
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002364int ipv6_find_hdr(const struct sk_buff *skb, unsigned int *offset,
2365 int target, unsigned short *fragoff)
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002366{
Arnaldo Carvalho de Melo6b88dd92007-03-19 22:29:03 -03002367 unsigned int start = skb_network_offset(skb) + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002368 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002369 unsigned int len = skb->len - start;
2370
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002371 if (fragoff)
2372 *fragoff = 0;
2373
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002374 while (nexthdr != target) {
2375 struct ipv6_opt_hdr _hdr, *hp;
2376 unsigned int hdrlen;
2377
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002378 if ((!ipv6_ext_hdr(nexthdr)) || nexthdr == NEXTHDR_NONE) {
2379 if (target < 0)
2380 break;
Patrick McHardy6d381632006-10-24 16:15:10 -07002381 return -ENOENT;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002382 }
2383
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002384 hp = skb_header_pointer(skb, start, sizeof(_hdr), &_hdr);
2385 if (hp == NULL)
Patrick McHardy6d381632006-10-24 16:15:10 -07002386 return -EBADMSG;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002387 if (nexthdr == NEXTHDR_FRAGMENT) {
Al Viroe69a4adc2006-11-14 20:56:00 -08002388 unsigned short _frag_off;
2389 __be16 *fp;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002390 fp = skb_header_pointer(skb,
2391 start+offsetof(struct frag_hdr,
2392 frag_off),
2393 sizeof(_frag_off),
2394 &_frag_off);
2395 if (fp == NULL)
Patrick McHardy6d381632006-10-24 16:15:10 -07002396 return -EBADMSG;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002397
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002398 _frag_off = ntohs(*fp) & ~0x7;
2399 if (_frag_off) {
2400 if (target < 0 &&
2401 ((!ipv6_ext_hdr(hp->nexthdr)) ||
Patrick McHardy337dde72006-11-14 19:49:13 -08002402 hp->nexthdr == NEXTHDR_NONE)) {
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002403 if (fragoff)
2404 *fragoff = _frag_off;
2405 return hp->nexthdr;
2406 }
Patrick McHardy6d381632006-10-24 16:15:10 -07002407 return -ENOENT;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002408 }
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002409 hdrlen = 8;
2410 } else if (nexthdr == NEXTHDR_AUTH)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002411 hdrlen = (hp->hdrlen + 2) << 2;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002412 else
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002413 hdrlen = ipv6_optlen(hp);
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002414
2415 nexthdr = hp->nexthdr;
2416 len -= hdrlen;
2417 start += hdrlen;
2418 }
2419
2420 *offset = start;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002421 return nexthdr;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002422}
2423
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424EXPORT_SYMBOL(ip6t_register_table);
2425EXPORT_SYMBOL(ip6t_unregister_table);
2426EXPORT_SYMBOL(ip6t_do_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427EXPORT_SYMBOL(ip6t_ext_hdr);
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002428EXPORT_SYMBOL(ipv6_find_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002430module_init(ip6_tables_init);
2431module_exit(ip6_tables_fini);