blob: a825940a92ef54436742d0f1cc98cd6a95a224de [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 */
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +020011#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Randy Dunlap4fc268d2006-01-11 12:17:47 -080012#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,
Joe Perches3666ed12009-11-23 23:17:06 +0100108 &ip6info->src), IP6T_INV_SRCIP) ||
109 FWINV(ipv6_masked_addr_cmp(&ipv6->daddr, &ip6info->dmsk,
110 &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) */
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200225static inline bool unconditional(const struct ip6t_ip6 *ipv6)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700226{
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200227 static const struct ip6t_ip6 uncond;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700228
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200229 return memcmp(ipv6, &uncond, sizeof(uncond)) == 0;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700230}
231
232#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
233 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
234/* This cries for unification! */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800235static const char *const hooknames[] = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800236 [NF_INET_PRE_ROUTING] = "PREROUTING",
237 [NF_INET_LOCAL_IN] = "INPUT",
238 [NF_INET_FORWARD] = "FORWARD",
239 [NF_INET_LOCAL_OUT] = "OUTPUT",
240 [NF_INET_POST_ROUTING] = "POSTROUTING",
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700241};
242
243enum nf_ip_trace_comments {
244 NF_IP6_TRACE_COMMENT_RULE,
245 NF_IP6_TRACE_COMMENT_RETURN,
246 NF_IP6_TRACE_COMMENT_POLICY,
247};
248
Denys Vlasenko022748a2008-01-14 23:44:05 -0800249static const char *const comments[] = {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700250 [NF_IP6_TRACE_COMMENT_RULE] = "rule",
251 [NF_IP6_TRACE_COMMENT_RETURN] = "return",
252 [NF_IP6_TRACE_COMMENT_POLICY] = "policy",
253};
254
255static struct nf_loginfo trace_loginfo = {
256 .type = NF_LOG_TYPE_LOG,
257 .u = {
258 .log = {
259 .level = 4,
260 .logflags = NF_LOG_MASK,
261 },
262 },
263};
264
Denys Vlasenko022748a2008-01-14 23:44:05 -0800265/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700266static inline int
267get_chainname_rulenum(struct ip6t_entry *s, struct ip6t_entry *e,
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200268 const char *hookname, const char **chainname,
269 const char **comment, unsigned int *rulenum)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700270{
271 struct ip6t_standard_target *t = (void *)ip6t_get_target(s);
272
273 if (strcmp(t->target.u.kernel.target->name, IP6T_ERROR_TARGET) == 0) {
274 /* Head of user chain: ERROR target with chainname */
275 *chainname = t->target.data;
276 (*rulenum) = 0;
277 } else if (s == e) {
278 (*rulenum)++;
279
Joe Perches3666ed12009-11-23 23:17:06 +0100280 if (s->target_offset == sizeof(struct ip6t_entry) &&
281 strcmp(t->target.u.kernel.target->name,
282 IP6T_STANDARD_TARGET) == 0 &&
283 t->verdict < 0 &&
284 unconditional(&s->ipv6)) {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700285 /* Tail of chains: STANDARD target (return/policy) */
286 *comment = *chainname == hookname
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200287 ? comments[NF_IP6_TRACE_COMMENT_POLICY]
288 : comments[NF_IP6_TRACE_COMMENT_RETURN];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700289 }
290 return 1;
291 } else
292 (*rulenum)++;
293
294 return 0;
295}
296
297static void trace_packet(struct sk_buff *skb,
298 unsigned int hook,
299 const struct net_device *in,
300 const struct net_device *out,
Jan Engelhardtecb6f852008-01-31 03:54:47 -0800301 const char *tablename,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700302 struct xt_table_info *private,
303 struct ip6t_entry *e)
304{
305 void *table_base;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200306 const struct ip6t_entry *root;
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200307 const char *hookname, *chainname, *comment;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700308 unsigned int rulenum = 0;
309
Jan Engelhardtccf5bd82009-04-15 20:27:03 +0200310 table_base = private->entries[smp_processor_id()];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700311 root = get_entry(table_base, private->hook_entry[hook]);
312
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200313 hookname = chainname = hooknames[hook];
314 comment = comments[NF_IP6_TRACE_COMMENT_RULE];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700315
316 IP6T_ENTRY_ITERATE(root,
317 private->size - private->hook_entry[hook],
318 get_chainname_rulenum,
319 e, hookname, &chainname, &comment, &rulenum);
320
321 nf_log_packet(AF_INET6, hook, skb, in, out, &trace_loginfo,
322 "TRACE: %s:%s:%s:%u ",
323 tablename, chainname, comment, rulenum);
324}
325#endif
326
Jan Engelhardt98e86402009-04-15 21:06:05 +0200327static inline __pure struct ip6t_entry *
328ip6t_next_entry(const struct ip6t_entry *entry)
329{
330 return (void *)entry + entry->next_offset;
331}
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333/* Returns one of the generic firewall policies, like NF_ACCEPT. */
334unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700335ip6t_do_table(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 unsigned int hook,
337 const struct net_device *in,
338 const struct net_device *out,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700339 struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
Jan Engelhardtbb70dfa2009-04-15 21:40:13 +0200341#define tb_comefrom ((struct ip6t_entry *)table_base)->comefrom
342
Harald Welte6b7d31f2005-10-26 09:34:24 +0200343 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700344 bool hotdrop = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 /* Initializing verdict to NF_DROP keeps gcc happy. */
346 unsigned int verdict = NF_DROP;
347 const char *indev, *outdev;
348 void *table_base;
349 struct ip6t_entry *e, *back;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800350 struct xt_table_info *private;
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200351 struct xt_match_param mtpar;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200352 struct xt_target_param tgpar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 /* Initialization */
355 indev = in ? in->name : nulldevname;
356 outdev = out ? out->name : nulldevname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 /* We handle fragments by dealing with the first fragment as
358 * if it was a normal packet. All other fragments are treated
359 * normally, except that they will NEVER match rules that ask
360 * things we don't know, ie. tcp syn flag or ports). If the
361 * rule is also a fragment-specific rule, non-fragments won't
362 * match it. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200363 mtpar.hotdrop = &hotdrop;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200364 mtpar.in = tgpar.in = in;
365 mtpar.out = tgpar.out = out;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200366 mtpar.family = tgpar.family = NFPROTO_IPV6;
Evgeniy Polyakova5e78822009-06-04 16:54:42 +0200367 mtpar.hooknum = tgpar.hooknum = hook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 IP_NF_ASSERT(table->valid_hooks & (1 << hook));
Stephen Hemminger78454472009-02-20 10:35:32 +0100370
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700371 xt_info_rdlock_bh();
372 private = table->private;
373 table_base = private->entries[smp_processor_id()];
Stephen Hemminger78454472009-02-20 10:35:32 +0100374
Harald Welte2e4e6a12006-01-12 13:30:04 -0800375 e = get_entry(table_base, private->hook_entry[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 /* For return from builtin chain */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800378 back = get_entry(table_base, private->underflow[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 do {
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200381 struct ip6t_entry_target *t;
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 IP_NF_ASSERT(e);
384 IP_NF_ASSERT(back);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200385 if (!ip6_packet_match(skb, indev, outdev, &e->ipv6,
Jan Engelhardt94522582009-04-15 21:31:32 +0200386 &mtpar.thoff, &mtpar.fragoff, &hotdrop) ||
387 IP6T_MATCH_ITERATE(e, do_match, skb, &mtpar) != 0) {
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200388 e = ip6t_next_entry(e);
389 continue;
390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200392 ADD_COUNTER(e->counters,
393 ntohs(ipv6_hdr(skb)->payload_len) +
394 sizeof(struct ipv6hdr), 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200396 t = ip6t_get_target(e);
397 IP_NF_ASSERT(t->u.kernel.target);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700398
399#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
400 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200401 /* The packet is traced: log it */
402 if (unlikely(skb->nf_trace))
403 trace_packet(skb, hook, in, out,
404 table->name, private, e);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700405#endif
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200406 /* Standard target? */
407 if (!t->u.kernel.target->target) {
408 int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200410 v = ((struct ip6t_standard_target *)t)->verdict;
411 if (v < 0) {
412 /* Pop from stack? */
413 if (v != IP6T_RETURN) {
414 verdict = (unsigned)(-v) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 break;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200416 }
417 e = back;
418 back = get_entry(table_base, back->comefrom);
419 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
Joe Perches3666ed12009-11-23 23:17:06 +0100421 if (table_base + v != ip6t_next_entry(e) &&
422 !(e->ipv6.flags & IP6T_F_GOTO)) {
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200423 /* Save old back ptr in next entry */
424 struct ip6t_entry *next = ip6t_next_entry(e);
425 next->comefrom = (void *)back - table_base;
426 /* set back pointer to next entry */
427 back = next;
428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200430 e = get_entry(table_base, v);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200431 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200433
434 /* Targets which reenter must return
435 abs. verdicts */
436 tgpar.target = t->u.kernel.target;
437 tgpar.targinfo = t->data;
438
439#ifdef CONFIG_NETFILTER_DEBUG
Jan Engelhardtbb70dfa2009-04-15 21:40:13 +0200440 tb_comefrom = 0xeeeeeeec;
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200441#endif
442 verdict = t->u.kernel.target->target(skb, &tgpar);
443
444#ifdef CONFIG_NETFILTER_DEBUG
Jan Engelhardtbb70dfa2009-04-15 21:40:13 +0200445 if (tb_comefrom != 0xeeeeeeec && verdict == IP6T_CONTINUE) {
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200446 printk("Target %s reentered!\n",
447 t->u.kernel.target->name);
448 verdict = NF_DROP;
449 }
Jan Engelhardtbb70dfa2009-04-15 21:40:13 +0200450 tb_comefrom = 0x57acc001;
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200451#endif
452 if (verdict == IP6T_CONTINUE)
453 e = ip6t_next_entry(e);
454 else
455 /* Verdict */
456 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 } while (!hotdrop);
458
459#ifdef CONFIG_NETFILTER_DEBUG
Jan Engelhardtbb70dfa2009-04-15 21:40:13 +0200460 tb_comefrom = NETFILTER_LINK_POISON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461#endif
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700462 xt_info_rdunlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464#ifdef DEBUG_ALLOW_ALL
465 return NF_ACCEPT;
466#else
467 if (hotdrop)
468 return NF_DROP;
469 else return verdict;
470#endif
Jan Engelhardtbb70dfa2009-04-15 21:40:13 +0200471
472#undef tb_comefrom
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475/* Figures out from what hook each rule can be called: returns 0 if
476 there are loops. Puts hook bitmask in comefrom. */
477static int
Harald Welte2e4e6a12006-01-12 13:30:04 -0800478mark_source_chains(struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800479 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 unsigned int hook;
482
483 /* No recursion; use packet counter to save back ptrs (reset
484 to 0 as we leave), and comefrom to save source hook bitmask */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800485 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 unsigned int pos = newinfo->hook_entry[hook];
Patrick McHardy9c547952007-12-17 21:52:00 -0800487 struct ip6t_entry *e = (struct ip6t_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 if (!(valid_hooks & (1 << hook)))
490 continue;
491
492 /* Set initial back pointer. */
493 e->counters.pcnt = pos;
494
495 for (;;) {
496 struct ip6t_standard_target *t
497 = (void *)ip6t_get_target(e);
Patrick McHardy9c547952007-12-17 21:52:00 -0800498 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800500 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 printk("iptables: loop hook %u pos %u %08X.\n",
502 hook, pos, e->comefrom);
503 return 0;
504 }
Patrick McHardy9c547952007-12-17 21:52:00 -0800505 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 /* Unconditional return/END. */
Joe Perches3666ed12009-11-23 23:17:06 +0100508 if ((e->target_offset == sizeof(struct ip6t_entry) &&
509 (strcmp(t->target.u.user.name,
510 IP6T_STANDARD_TARGET) == 0) &&
511 t->verdict < 0 &&
512 unconditional(&e->ipv6)) || visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 unsigned int oldpos, size;
514
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100515 if ((strcmp(t->target.u.user.name,
516 IP6T_STANDARD_TARGET) == 0) &&
517 t->verdict < -NF_MAX_VERDICT - 1) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800518 duprintf("mark_source_chains: bad "
519 "negative verdict (%i)\n",
520 t->verdict);
521 return 0;
522 }
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 /* Return: backtrack through the last
525 big jump. */
526 do {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800527 e->comefrom ^= (1<<NF_INET_NUMHOOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528#ifdef DEBUG_IP_FIREWALL_USER
529 if (e->comefrom
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800530 & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 duprintf("Back unset "
532 "on hook %u "
533 "rule %u\n",
534 hook, pos);
535 }
536#endif
537 oldpos = pos;
538 pos = e->counters.pcnt;
539 e->counters.pcnt = 0;
540
541 /* We're at the start. */
542 if (pos == oldpos)
543 goto next;
544
545 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800546 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 } while (oldpos == pos + e->next_offset);
548
549 /* Move along one */
550 size = e->next_offset;
551 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800552 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 e->counters.pcnt = pos;
554 pos += size;
555 } else {
556 int newpos = t->verdict;
557
558 if (strcmp(t->target.u.user.name,
Joe Perches3666ed12009-11-23 23:17:06 +0100559 IP6T_STANDARD_TARGET) == 0 &&
560 newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800561 if (newpos > newinfo->size -
562 sizeof(struct ip6t_entry)) {
563 duprintf("mark_source_chains: "
564 "bad verdict (%i)\n",
565 newpos);
566 return 0;
567 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 /* This a jump; chase it. */
569 duprintf("Jump rule %u -> %u\n",
570 pos, newpos);
571 } else {
572 /* ... this is a fallthru */
573 newpos = pos + e->next_offset;
574 }
575 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800576 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 e->counters.pcnt = pos;
578 pos = newpos;
579 }
580 }
581 next:
582 duprintf("Finished chain %u\n", hook);
583 }
584 return 1;
585}
586
Denys Vlasenko022748a2008-01-14 23:44:05 -0800587static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588cleanup_match(struct ip6t_entry_match *m, unsigned int *i)
589{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200590 struct xt_mtdtor_param par;
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (i && (*i)-- == 0)
593 return 1;
594
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200595 par.match = m->u.kernel.match;
596 par.matchinfo = m->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200597 par.family = NFPROTO_IPV6;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200598 if (par.match->destroy != NULL)
599 par.match->destroy(&par);
600 module_put(par.match->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 return 0;
602}
603
Denys Vlasenko022748a2008-01-14 23:44:05 -0800604static int
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800605check_entry(struct ip6t_entry *e, const char *name)
606{
607 struct ip6t_entry_target *t;
608
609 if (!ip6_checkentry(&e->ipv6)) {
610 duprintf("ip_tables: ip check failed %p %s.\n", e, name);
611 return -EINVAL;
612 }
613
614 if (e->target_offset + sizeof(struct ip6t_entry_target) >
615 e->next_offset)
616 return -EINVAL;
617
618 t = ip6t_get_target(e);
619 if (e->target_offset + t->u.target_size > e->next_offset)
620 return -EINVAL;
621
622 return 0;
623}
624
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200625static int check_match(struct ip6t_entry_match *m, struct xt_mtchk_param *par,
626 unsigned int *i)
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800627{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200628 const struct ip6t_ip6 *ipv6 = par->entryinfo;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800629 int ret;
630
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200631 par->match = m->u.kernel.match;
632 par->matchinfo = m->data;
633
Jan Engelhardt916a9172008-10-08 11:35:20 +0200634 ret = xt_check_match(par, m->u.match_size - sizeof(*m),
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200635 ipv6->proto, ipv6->invflags & IP6T_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200636 if (ret < 0) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800637 duprintf("ip_tables: check failed for `%s'.\n",
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200638 par.match->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200639 return ret;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800640 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200641 ++*i;
642 return 0;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800643}
644
Denys Vlasenko022748a2008-01-14 23:44:05 -0800645static int
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200646find_check_match(struct ip6t_entry_match *m, struct xt_mtchk_param *par,
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800647 unsigned int *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800649 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800650 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Harald Welte2e4e6a12006-01-12 13:30:04 -0800652 match = try_then_request_module(xt_find_match(AF_INET6, m->u.user.name,
Patrick McHardy9c547952007-12-17 21:52:00 -0800653 m->u.user.revision),
Harald Welte6b7d31f2005-10-26 09:34:24 +0200654 "ip6t_%s", m->u.user.name);
655 if (IS_ERR(match) || !match) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800656 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Harald Welte6b7d31f2005-10-26 09:34:24 +0200657 return match ? PTR_ERR(match) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 }
659 m->u.kernel.match = match;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200661 ret = check_match(m, par, i);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800662 if (ret)
663 goto err;
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800666err:
667 module_put(m->u.kernel.match->me);
668 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
Denys Vlasenko022748a2008-01-14 23:44:05 -0800671static int check_target(struct ip6t_entry *e, const char *name)
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800672{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200673 struct ip6t_entry_target *t = ip6t_get_target(e);
674 struct xt_tgchk_param par = {
675 .table = name,
676 .entryinfo = e,
677 .target = t->u.kernel.target,
678 .targinfo = t->data,
679 .hook_mask = e->comefrom,
Jan Engelhardt916a9172008-10-08 11:35:20 +0200680 .family = NFPROTO_IPV6,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200681 };
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800682 int ret;
683
684 t = ip6t_get_target(e);
Jan Engelhardt916a9172008-10-08 11:35:20 +0200685 ret = xt_check_target(&par, t->u.target_size - sizeof(*t),
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200686 e->ipv6.proto, e->ipv6.invflags & IP6T_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200687 if (ret < 0) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800688 duprintf("ip_tables: check failed for `%s'.\n",
689 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200690 return ret;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800691 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200692 return 0;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800693}
694
Denys Vlasenko022748a2008-01-14 23:44:05 -0800695static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100696find_check_entry(struct ip6t_entry *e, struct net *net, const char *name,
697 unsigned int size, unsigned int *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
699 struct ip6t_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800700 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 int ret;
702 unsigned int j;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200703 struct xt_mtchk_param mtpar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800705 ret = check_entry(e, name);
706 if (ret)
707 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 j = 0;
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100710 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200711 mtpar.table = name;
712 mtpar.entryinfo = &e->ipv6;
713 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200714 mtpar.family = NFPROTO_IPV6;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200715 ret = IP6T_MATCH_ITERATE(e, find_check_match, &mtpar, &j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (ret != 0)
717 goto cleanup_matches;
718
719 t = ip6t_get_target(e);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800720 target = try_then_request_module(xt_find_target(AF_INET6,
721 t->u.user.name,
722 t->u.user.revision),
Harald Welte6b7d31f2005-10-26 09:34:24 +0200723 "ip6t_%s", t->u.user.name);
724 if (IS_ERR(target) || !target) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800725 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Harald Welte6b7d31f2005-10-26 09:34:24 +0200726 ret = target ? PTR_ERR(target) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 goto cleanup_matches;
728 }
729 t->u.kernel.target = target;
Harald Welte6b7d31f2005-10-26 09:34:24 +0200730
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800731 ret = check_target(e, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800732 if (ret)
733 goto err;
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 (*i)++;
736 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800737 err:
738 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 cleanup_matches:
740 IP6T_MATCH_ITERATE(e, cleanup_match, &j);
741 return ret;
742}
743
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200744static bool check_underflow(struct ip6t_entry *e)
745{
746 const struct ip6t_entry_target *t;
747 unsigned int verdict;
748
749 if (!unconditional(&e->ipv6))
750 return false;
751 t = ip6t_get_target(e);
752 if (strcmp(t->u.user.name, XT_STANDARD_TARGET) != 0)
753 return false;
754 verdict = ((struct ip6t_standard_target *)t)->verdict;
755 verdict = -verdict - 1;
756 return verdict == NF_DROP || verdict == NF_ACCEPT;
757}
758
Denys Vlasenko022748a2008-01-14 23:44:05 -0800759static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760check_entry_size_and_hooks(struct ip6t_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800761 struct xt_table_info *newinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 unsigned char *base,
763 unsigned char *limit,
764 const unsigned int *hook_entries,
765 const unsigned int *underflows,
Jan Engelhardta7d51732009-07-18 14:52:58 +0200766 unsigned int valid_hooks,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 unsigned int *i)
768{
769 unsigned int h;
770
Joe Perches3666ed12009-11-23 23:17:06 +0100771 if ((unsigned long)e % __alignof__(struct ip6t_entry) != 0 ||
772 (unsigned char *)e + sizeof(struct ip6t_entry) >= limit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 duprintf("Bad offset %p\n", e);
774 return -EINVAL;
775 }
776
777 if (e->next_offset
778 < sizeof(struct ip6t_entry) + sizeof(struct ip6t_entry_target)) {
779 duprintf("checking: element %p size %u\n",
780 e, e->next_offset);
781 return -EINVAL;
782 }
783
784 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800785 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Jan Engelhardta7d51732009-07-18 14:52:58 +0200786 if (!(valid_hooks & (1 << h)))
787 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 if ((unsigned char *)e - base == hook_entries[h])
789 newinfo->hook_entry[h] = hook_entries[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200790 if ((unsigned char *)e - base == underflows[h]) {
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200791 if (!check_underflow(e)) {
792 pr_err("Underflows must be unconditional and "
793 "use the STANDARD target with "
794 "ACCEPT/DROP\n");
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200795 return -EINVAL;
796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 newinfo->underflow[h] = underflows[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800802 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 e->comefrom = 0;
804
805 (*i)++;
806 return 0;
807}
808
Denys Vlasenko022748a2008-01-14 23:44:05 -0800809static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810cleanup_entry(struct ip6t_entry *e, unsigned int *i)
811{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200812 struct xt_tgdtor_param par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 struct ip6t_entry_target *t;
814
815 if (i && (*i)-- == 0)
816 return 1;
817
818 /* Cleanup all matches */
819 IP6T_MATCH_ITERATE(e, cleanup_match, NULL);
820 t = ip6t_get_target(e);
Jan Engelhardta2df1642008-10-08 11:35:19 +0200821
822 par.target = t->u.kernel.target;
823 par.targinfo = t->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200824 par.family = NFPROTO_IPV6;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200825 if (par.target->destroy != NULL)
826 par.target->destroy(&par);
827 module_put(par.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 return 0;
829}
830
831/* Checks and translates the user-supplied table segment (held in
832 newinfo) */
833static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100834translate_table(struct net *net,
835 const char *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 unsigned int valid_hooks,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800837 struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800838 void *entry0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 unsigned int size,
840 unsigned int number,
841 const unsigned int *hook_entries,
842 const unsigned int *underflows)
843{
844 unsigned int i;
845 int ret;
846
847 newinfo->size = size;
848 newinfo->number = number;
849
850 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800851 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 newinfo->hook_entry[i] = 0xFFFFFFFF;
853 newinfo->underflow[i] = 0xFFFFFFFF;
854 }
855
856 duprintf("translate_table: size %u\n", newinfo->size);
857 i = 0;
858 /* Walk through entries, checking offsets. */
Eric Dumazet31836062005-12-13 23:13:48 -0800859 ret = IP6T_ENTRY_ITERATE(entry0, newinfo->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 check_entry_size_and_hooks,
861 newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800862 entry0,
863 entry0 + size,
Jan Engelhardta7d51732009-07-18 14:52:58 +0200864 hook_entries, underflows, valid_hooks, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (ret != 0)
866 return ret;
867
868 if (i != number) {
869 duprintf("translate_table: %u not %u entries\n",
870 i, number);
871 return -EINVAL;
872 }
873
874 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800875 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 /* Only hooks which are valid */
877 if (!(valid_hooks & (1 << i)))
878 continue;
879 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
880 duprintf("Invalid hook entry %u %u\n",
881 i, hook_entries[i]);
882 return -EINVAL;
883 }
884 if (newinfo->underflow[i] == 0xFFFFFFFF) {
885 duprintf("Invalid underflow %u %u\n",
886 i, underflows[i]);
887 return -EINVAL;
888 }
889 }
890
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800891 if (!mark_source_chains(newinfo, valid_hooks, entry0))
892 return -ELOOP;
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 /* Finally, each sanity check must pass */
895 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -0800896 ret = IP6T_ENTRY_ITERATE(entry0, newinfo->size,
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100897 find_check_entry, net, name, size, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800899 if (ret != 0) {
900 IP6T_ENTRY_ITERATE(entry0, newinfo->size,
901 cleanup_entry, &i);
902 return ret;
903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905 /* And one copy for every other CPU */
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700906 for_each_possible_cpu(i) {
Eric Dumazet31836062005-12-13 23:13:48 -0800907 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
908 memcpy(newinfo->entries[i], entry0, newinfo->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
910
Patrick McHardy9c547952007-12-17 21:52:00 -0800911 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914/* Gets counters. */
915static inline int
916add_entry_to_counter(const struct ip6t_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800917 struct xt_counters total[],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 unsigned int *i)
919{
920 ADD_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
921
922 (*i)++;
923 return 0;
924}
925
Eric Dumazet31836062005-12-13 23:13:48 -0800926static inline int
927set_entry_to_counter(const struct ip6t_entry *e,
928 struct ip6t_counters total[],
929 unsigned int *i)
930{
931 SET_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
932
933 (*i)++;
934 return 0;
935}
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800938get_counters(const struct xt_table_info *t,
939 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
941 unsigned int cpu;
942 unsigned int i;
Eric Dumazet31836062005-12-13 23:13:48 -0800943 unsigned int curcpu;
944
945 /* Instead of clearing (by a previous call to memset())
946 * the counters and using adds, we set the counters
947 * with data used by 'current' CPU
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700948 *
949 * Bottom half has to be disabled to prevent deadlock
950 * if new softirq were to run and call ipt_do_table
Eric Dumazet31836062005-12-13 23:13:48 -0800951 */
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700952 local_bh_disable();
953 curcpu = smp_processor_id();
Eric Dumazet31836062005-12-13 23:13:48 -0800954
955 i = 0;
956 IP6T_ENTRY_ITERATE(t->entries[curcpu],
957 t->size,
958 set_entry_to_counter,
959 counters,
960 &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700962 for_each_possible_cpu(cpu) {
Eric Dumazet31836062005-12-13 23:13:48 -0800963 if (cpu == curcpu)
964 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 i = 0;
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700966 xt_info_wrlock(cpu);
Eric Dumazet31836062005-12-13 23:13:48 -0800967 IP6T_ENTRY_ITERATE(t->entries[cpu],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 t->size,
969 add_entry_to_counter,
970 counters,
971 &i);
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700972 xt_info_wrunlock(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
Stephen Hemminger78454472009-02-20 10:35:32 +0100974 local_bh_enable();
975}
976
Denys Vlasenko022748a2008-01-14 23:44:05 -0800977static struct xt_counters *alloc_counters(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800979 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800980 struct xt_counters *counters;
Stephen Hemminger78454472009-02-20 10:35:32 +0100981 struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983 /* We need atomic snapshot of counters: rest doesn't change
984 (other than comefrom, which userspace doesn't care
985 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800986 countersize = sizeof(struct xt_counters) * private->number;
Patrick McHardy3b84e922007-12-17 21:48:33 -0800987 counters = vmalloc_node(countersize, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989 if (counters == NULL)
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700990 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700992 get_counters(private, counters);
Stephen Hemminger78454472009-02-20 10:35:32 +0100993
Eric Dumazet49a88d12009-04-06 17:06:55 +0200994 return counters;
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800995}
996
997static int
998copy_entries_to_user(unsigned int total_size,
999 struct xt_table *table,
1000 void __user *userptr)
1001{
1002 unsigned int off, num;
1003 struct ip6t_entry *e;
1004 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001005 const struct xt_table_info *private = table->private;
Patrick McHardyed1a6f52007-12-17 21:49:51 -08001006 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001007 const void *loc_cpu_entry;
Patrick McHardyed1a6f52007-12-17 21:49:51 -08001008
1009 counters = alloc_counters(table);
1010 if (IS_ERR(counters))
1011 return PTR_ERR(counters);
1012
Patrick McHardy9c547952007-12-17 21:52:00 -08001013 /* choose the copy that is on our node/cpu, ...
1014 * This choice is lazy (because current thread is
1015 * allowed to migrate to another cpu)
1016 */
Harald Welte2e4e6a12006-01-12 13:30:04 -08001017 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -08001018 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 ret = -EFAULT;
1020 goto free_counters;
1021 }
1022
1023 /* FIXME: use iterator macros --RR */
1024 /* ... then go back and fix counters and names */
1025 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
1026 unsigned int i;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001027 const struct ip6t_entry_match *m;
1028 const struct ip6t_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Eric Dumazet31836062005-12-13 23:13:48 -08001030 e = (struct ip6t_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (copy_to_user(userptr + off
1032 + offsetof(struct ip6t_entry, counters),
1033 &counters[num],
1034 sizeof(counters[num])) != 0) {
1035 ret = -EFAULT;
1036 goto free_counters;
1037 }
1038
1039 for (i = sizeof(struct ip6t_entry);
1040 i < e->target_offset;
1041 i += m->u.match_size) {
1042 m = (void *)e + i;
1043
1044 if (copy_to_user(userptr + off + i
1045 + offsetof(struct ip6t_entry_match,
1046 u.user.name),
1047 m->u.kernel.match->name,
1048 strlen(m->u.kernel.match->name)+1)
1049 != 0) {
1050 ret = -EFAULT;
1051 goto free_counters;
1052 }
1053 }
1054
1055 t = ip6t_get_target(e);
1056 if (copy_to_user(userptr + off + e->target_offset
1057 + offsetof(struct ip6t_entry_target,
1058 u.user.name),
1059 t->u.kernel.target->name,
1060 strlen(t->u.kernel.target->name)+1) != 0) {
1061 ret = -EFAULT;
1062 goto free_counters;
1063 }
1064 }
1065
1066 free_counters:
1067 vfree(counters);
1068 return ret;
1069}
1070
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001071#ifdef CONFIG_COMPAT
1072static void compat_standard_from_user(void *dst, void *src)
1073{
1074 int v = *(compat_int_t *)src;
1075
1076 if (v > 0)
1077 v += xt_compat_calc_jump(AF_INET6, v);
1078 memcpy(dst, &v, sizeof(v));
1079}
1080
1081static int compat_standard_to_user(void __user *dst, void *src)
1082{
1083 compat_int_t cv = *(int *)src;
1084
1085 if (cv > 0)
1086 cv -= xt_compat_calc_jump(AF_INET6, cv);
1087 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
1088}
1089
1090static inline int
1091compat_calc_match(struct ip6t_entry_match *m, int *size)
1092{
1093 *size += xt_compat_match_offset(m->u.kernel.match);
1094 return 0;
1095}
1096
1097static int compat_calc_entry(struct ip6t_entry *e,
1098 const struct xt_table_info *info,
1099 void *base, struct xt_table_info *newinfo)
1100{
1101 struct ip6t_entry_target *t;
1102 unsigned int entry_offset;
1103 int off, i, ret;
1104
1105 off = sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1106 entry_offset = (void *)e - base;
1107 IP6T_MATCH_ITERATE(e, compat_calc_match, &off);
1108 t = ip6t_get_target(e);
1109 off += xt_compat_target_offset(t->u.kernel.target);
1110 newinfo->size -= off;
1111 ret = xt_compat_add_offset(AF_INET6, entry_offset, off);
1112 if (ret)
1113 return ret;
1114
1115 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1116 if (info->hook_entry[i] &&
1117 (e < (struct ip6t_entry *)(base + info->hook_entry[i])))
1118 newinfo->hook_entry[i] -= off;
1119 if (info->underflow[i] &&
1120 (e < (struct ip6t_entry *)(base + info->underflow[i])))
1121 newinfo->underflow[i] -= off;
1122 }
1123 return 0;
1124}
1125
1126static int compat_table_info(const struct xt_table_info *info,
1127 struct xt_table_info *newinfo)
1128{
1129 void *loc_cpu_entry;
1130
1131 if (!newinfo || !info)
1132 return -EINVAL;
1133
1134 /* we dont care about newinfo->entries[] */
1135 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1136 newinfo->initial_entries = 0;
1137 loc_cpu_entry = info->entries[raw_smp_processor_id()];
1138 return IP6T_ENTRY_ITERATE(loc_cpu_entry, info->size,
1139 compat_calc_entry, info, loc_cpu_entry,
1140 newinfo);
1141}
1142#endif
1143
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001144static int get_info(struct net *net, void __user *user, int *len, int compat)
Patrick McHardy433665c2007-12-17 21:50:05 -08001145{
1146 char name[IP6T_TABLE_MAXNAMELEN];
1147 struct xt_table *t;
1148 int ret;
1149
1150 if (*len != sizeof(struct ip6t_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001151 duprintf("length %u != %zu\n", *len,
Patrick McHardy433665c2007-12-17 21:50:05 -08001152 sizeof(struct ip6t_getinfo));
1153 return -EINVAL;
1154 }
1155
1156 if (copy_from_user(name, user, sizeof(name)) != 0)
1157 return -EFAULT;
1158
1159 name[IP6T_TABLE_MAXNAMELEN-1] = '\0';
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001160#ifdef CONFIG_COMPAT
1161 if (compat)
1162 xt_compat_lock(AF_INET6);
1163#endif
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001164 t = try_then_request_module(xt_find_table_lock(net, AF_INET6, name),
Patrick McHardy433665c2007-12-17 21:50:05 -08001165 "ip6table_%s", name);
1166 if (t && !IS_ERR(t)) {
1167 struct ip6t_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001168 const struct xt_table_info *private = t->private;
Patrick McHardy433665c2007-12-17 21:50:05 -08001169
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001170#ifdef CONFIG_COMPAT
1171 if (compat) {
1172 struct xt_table_info tmp;
1173 ret = compat_table_info(private, &tmp);
1174 xt_compat_flush_offsets(AF_INET6);
1175 private = &tmp;
1176 }
1177#endif
Patrick McHardy433665c2007-12-17 21:50:05 -08001178 info.valid_hooks = t->valid_hooks;
1179 memcpy(info.hook_entry, private->hook_entry,
1180 sizeof(info.hook_entry));
1181 memcpy(info.underflow, private->underflow,
1182 sizeof(info.underflow));
1183 info.num_entries = private->number;
1184 info.size = private->size;
Patrick McHardyb5dd6742007-12-17 21:52:35 -08001185 strcpy(info.name, name);
Patrick McHardy433665c2007-12-17 21:50:05 -08001186
1187 if (copy_to_user(user, &info, *len) != 0)
1188 ret = -EFAULT;
1189 else
1190 ret = 0;
1191
1192 xt_table_unlock(t);
1193 module_put(t->me);
1194 } else
1195 ret = t ? PTR_ERR(t) : -ENOENT;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001196#ifdef CONFIG_COMPAT
1197 if (compat)
1198 xt_compat_unlock(AF_INET6);
1199#endif
Patrick McHardy433665c2007-12-17 21:50:05 -08001200 return ret;
1201}
1202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001204get_entries(struct net *net, struct ip6t_get_entries __user *uptr, int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
1206 int ret;
Patrick McHardyd9243572007-12-17 21:50:22 -08001207 struct ip6t_get_entries get;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001208 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Patrick McHardyd9243572007-12-17 21:50:22 -08001210 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001211 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Patrick McHardyd9243572007-12-17 21:50:22 -08001212 return -EINVAL;
1213 }
1214 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1215 return -EFAULT;
1216 if (*len != sizeof(struct ip6t_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001217 duprintf("get_entries: %u != %zu\n",
1218 *len, sizeof(get) + get.size);
Patrick McHardyd9243572007-12-17 21:50:22 -08001219 return -EINVAL;
1220 }
1221
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001222 t = xt_find_table_lock(net, AF_INET6, get.name);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001223 if (t && !IS_ERR(t)) {
Harald Welte2e4e6a12006-01-12 13:30:04 -08001224 struct xt_table_info *private = t->private;
1225 duprintf("t->private->number = %u\n", private->number);
Patrick McHardyd9243572007-12-17 21:50:22 -08001226 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001227 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 t, uptr->entrytable);
1229 else {
1230 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001231 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001232 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
Harald Welte6b7d31f2005-10-26 09:34:24 +02001234 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001235 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 } else
Harald Welte6b7d31f2005-10-26 09:34:24 +02001237 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 return ret;
1240}
1241
1242static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001243__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001244 struct xt_table_info *newinfo, unsigned int num_counters,
1245 void __user *counters_ptr)
1246{
1247 int ret;
1248 struct xt_table *t;
1249 struct xt_table_info *oldinfo;
1250 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001251 const void *loc_cpu_old_entry;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001252
1253 ret = 0;
1254 counters = vmalloc_node(num_counters * sizeof(struct xt_counters),
1255 numa_node_id());
1256 if (!counters) {
1257 ret = -ENOMEM;
1258 goto out;
1259 }
1260
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001261 t = try_then_request_module(xt_find_table_lock(net, AF_INET6, name),
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001262 "ip6table_%s", name);
1263 if (!t || IS_ERR(t)) {
1264 ret = t ? PTR_ERR(t) : -ENOENT;
1265 goto free_newinfo_counters_untrans;
1266 }
1267
1268 /* You lied! */
1269 if (valid_hooks != t->valid_hooks) {
1270 duprintf("Valid hook crap: %08X vs %08X\n",
1271 valid_hooks, t->valid_hooks);
1272 ret = -EINVAL;
1273 goto put_module;
1274 }
1275
1276 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1277 if (!oldinfo)
1278 goto put_module;
1279
1280 /* Update module usage count based on number of rules */
1281 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1282 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1283 if ((oldinfo->number > oldinfo->initial_entries) ||
1284 (newinfo->number <= oldinfo->initial_entries))
1285 module_put(t->me);
1286 if ((oldinfo->number > oldinfo->initial_entries) &&
1287 (newinfo->number <= oldinfo->initial_entries))
1288 module_put(t->me);
1289
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001290 /* Get the old counters, and synchronize with replace */
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001291 get_counters(oldinfo, counters);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001292
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001293 /* Decrease module usage counts and free resource */
1294 loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
1295 IP6T_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry,
1296 NULL);
1297 xt_free_table_info(oldinfo);
1298 if (copy_to_user(counters_ptr, counters,
1299 sizeof(struct xt_counters) * num_counters) != 0)
1300 ret = -EFAULT;
1301 vfree(counters);
1302 xt_table_unlock(t);
1303 return ret;
1304
1305 put_module:
1306 module_put(t->me);
1307 xt_table_unlock(t);
1308 free_newinfo_counters_untrans:
1309 vfree(counters);
1310 out:
1311 return ret;
1312}
1313
1314static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001315do_replace(struct net *net, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
1317 int ret;
1318 struct ip6t_replace tmp;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001319 struct xt_table_info *newinfo;
1320 void *loc_cpu_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1323 return -EFAULT;
1324
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001325 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001326 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1327 return -ENOMEM;
1328
Harald Welte2e4e6a12006-01-12 13:30:04 -08001329 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 if (!newinfo)
1331 return -ENOMEM;
1332
Eric Dumazet31836062005-12-13 23:13:48 -08001333 /* choose the copy that is on our node/cpu */
1334 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1335 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 tmp.size) != 0) {
1337 ret = -EFAULT;
1338 goto free_newinfo;
1339 }
1340
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001341 ret = translate_table(net, tmp.name, tmp.valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08001342 newinfo, loc_cpu_entry, tmp.size, tmp.num_entries,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 tmp.hook_entry, tmp.underflow);
1344 if (ret != 0)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001345 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 duprintf("ip_tables: Translated table\n");
1348
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001349 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001350 tmp.num_counters, tmp.counters);
1351 if (ret)
1352 goto free_newinfo_untrans;
1353 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001355 free_newinfo_untrans:
1356 IP6T_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001358 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 return ret;
1360}
1361
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001362/* We're lazy, and add to the first CPU; overflow works its fey magic
1363 * and everything is OK. */
1364static int
1365add_counter_to_entry(struct ip6t_entry *e,
1366 const struct xt_counters addme[],
1367 unsigned int *i)
1368{
1369 ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt);
1370
1371 (*i)++;
1372 return 0;
1373}
1374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001376do_add_counters(struct net *net, void __user *user, unsigned int len,
1377 int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001379 unsigned int i, curcpu;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001380 struct xt_counters_info tmp;
1381 struct xt_counters *paddc;
1382 unsigned int num_counters;
1383 char *name;
1384 int size;
1385 void *ptmp;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001386 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001387 const struct xt_table_info *private;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001388 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001389 const void *loc_cpu_entry;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001390#ifdef CONFIG_COMPAT
1391 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001393 if (compat) {
1394 ptmp = &compat_tmp;
1395 size = sizeof(struct compat_xt_counters_info);
1396 } else
1397#endif
1398 {
1399 ptmp = &tmp;
1400 size = sizeof(struct xt_counters_info);
1401 }
1402
1403 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 return -EFAULT;
1405
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001406#ifdef CONFIG_COMPAT
1407 if (compat) {
1408 num_counters = compat_tmp.num_counters;
1409 name = compat_tmp.name;
1410 } else
1411#endif
1412 {
1413 num_counters = tmp.num_counters;
1414 name = tmp.name;
1415 }
1416
1417 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 return -EINVAL;
1419
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001420 paddc = vmalloc_node(len - size, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 if (!paddc)
1422 return -ENOMEM;
1423
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001424 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 ret = -EFAULT;
1426 goto free;
1427 }
1428
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001429 t = xt_find_table_lock(net, AF_INET6, name);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001430 if (!t || IS_ERR(t)) {
1431 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 goto free;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001435
1436 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001437 private = t->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001438 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 ret = -EINVAL;
1440 goto unlock_up_free;
1441 }
1442
1443 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001444 /* Choose the copy that is on our node */
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001445 curcpu = smp_processor_id();
1446 xt_info_wrlock(curcpu);
1447 loc_cpu_entry = private->entries[curcpu];
Eric Dumazet31836062005-12-13 23:13:48 -08001448 IP6T_ENTRY_ITERATE(loc_cpu_entry,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001449 private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 add_counter_to_entry,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001451 paddc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 &i);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001453 xt_info_wrunlock(curcpu);
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 unlock_up_free:
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001456 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001457 xt_table_unlock(t);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001458 module_put(t->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 free:
1460 vfree(paddc);
1461
1462 return ret;
1463}
1464
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001465#ifdef CONFIG_COMPAT
1466struct compat_ip6t_replace {
1467 char name[IP6T_TABLE_MAXNAMELEN];
1468 u32 valid_hooks;
1469 u32 num_entries;
1470 u32 size;
1471 u32 hook_entry[NF_INET_NUMHOOKS];
1472 u32 underflow[NF_INET_NUMHOOKS];
1473 u32 num_counters;
1474 compat_uptr_t counters; /* struct ip6t_counters * */
1475 struct compat_ip6t_entry entries[0];
1476};
1477
1478static int
1479compat_copy_entry_to_user(struct ip6t_entry *e, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001480 unsigned int *size, struct xt_counters *counters,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001481 unsigned int *i)
1482{
1483 struct ip6t_entry_target *t;
1484 struct compat_ip6t_entry __user *ce;
1485 u_int16_t target_offset, next_offset;
1486 compat_uint_t origsize;
1487 int ret;
1488
1489 ret = -EFAULT;
1490 origsize = *size;
1491 ce = (struct compat_ip6t_entry __user *)*dstptr;
1492 if (copy_to_user(ce, e, sizeof(struct ip6t_entry)))
1493 goto out;
1494
1495 if (copy_to_user(&ce->counters, &counters[*i], sizeof(counters[*i])))
1496 goto out;
1497
1498 *dstptr += sizeof(struct compat_ip6t_entry);
1499 *size -= sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1500
1501 ret = IP6T_MATCH_ITERATE(e, xt_compat_match_to_user, dstptr, size);
1502 target_offset = e->target_offset - (origsize - *size);
1503 if (ret)
1504 goto out;
1505 t = ip6t_get_target(e);
1506 ret = xt_compat_target_to_user(t, dstptr, size);
1507 if (ret)
1508 goto out;
1509 ret = -EFAULT;
1510 next_offset = e->next_offset - (origsize - *size);
1511 if (put_user(target_offset, &ce->target_offset))
1512 goto out;
1513 if (put_user(next_offset, &ce->next_offset))
1514 goto out;
1515
1516 (*i)++;
1517 return 0;
1518out:
1519 return ret;
1520}
1521
Denys Vlasenko022748a2008-01-14 23:44:05 -08001522static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001523compat_find_calc_match(struct ip6t_entry_match *m,
1524 const char *name,
1525 const struct ip6t_ip6 *ipv6,
1526 unsigned int hookmask,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001527 int *size, unsigned int *i)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001528{
1529 struct xt_match *match;
1530
1531 match = try_then_request_module(xt_find_match(AF_INET6, m->u.user.name,
1532 m->u.user.revision),
1533 "ip6t_%s", m->u.user.name);
1534 if (IS_ERR(match) || !match) {
1535 duprintf("compat_check_calc_match: `%s' not found\n",
1536 m->u.user.name);
1537 return match ? PTR_ERR(match) : -ENOENT;
1538 }
1539 m->u.kernel.match = match;
1540 *size += xt_compat_match_offset(match);
1541
1542 (*i)++;
1543 return 0;
1544}
1545
Denys Vlasenko022748a2008-01-14 23:44:05 -08001546static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001547compat_release_match(struct ip6t_entry_match *m, unsigned int *i)
1548{
1549 if (i && (*i)-- == 0)
1550 return 1;
1551
1552 module_put(m->u.kernel.match->me);
1553 return 0;
1554}
1555
Denys Vlasenko022748a2008-01-14 23:44:05 -08001556static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001557compat_release_entry(struct compat_ip6t_entry *e, unsigned int *i)
1558{
1559 struct ip6t_entry_target *t;
1560
1561 if (i && (*i)-- == 0)
1562 return 1;
1563
1564 /* Cleanup all matches */
1565 COMPAT_IP6T_MATCH_ITERATE(e, compat_release_match, NULL);
1566 t = compat_ip6t_get_target(e);
1567 module_put(t->u.kernel.target->me);
1568 return 0;
1569}
1570
Denys Vlasenko022748a2008-01-14 23:44:05 -08001571static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001572check_compat_entry_size_and_hooks(struct compat_ip6t_entry *e,
1573 struct xt_table_info *newinfo,
1574 unsigned int *size,
1575 unsigned char *base,
1576 unsigned char *limit,
1577 unsigned int *hook_entries,
1578 unsigned int *underflows,
1579 unsigned int *i,
1580 const char *name)
1581{
1582 struct ip6t_entry_target *t;
1583 struct xt_target *target;
1584 unsigned int entry_offset;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001585 unsigned int j;
1586 int ret, off, h;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001587
1588 duprintf("check_compat_entry_size_and_hooks %p\n", e);
Joe Perches3666ed12009-11-23 23:17:06 +01001589 if ((unsigned long)e % __alignof__(struct compat_ip6t_entry) != 0 ||
1590 (unsigned char *)e + sizeof(struct compat_ip6t_entry) >= limit) {
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001591 duprintf("Bad offset %p, limit = %p\n", e, limit);
1592 return -EINVAL;
1593 }
1594
1595 if (e->next_offset < sizeof(struct compat_ip6t_entry) +
1596 sizeof(struct compat_xt_entry_target)) {
1597 duprintf("checking: element %p size %u\n",
1598 e, e->next_offset);
1599 return -EINVAL;
1600 }
1601
1602 /* For purposes of check_entry casting the compat entry is fine */
1603 ret = check_entry((struct ip6t_entry *)e, name);
1604 if (ret)
1605 return ret;
1606
1607 off = sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1608 entry_offset = (void *)e - (void *)base;
1609 j = 0;
1610 ret = COMPAT_IP6T_MATCH_ITERATE(e, compat_find_calc_match, name,
1611 &e->ipv6, e->comefrom, &off, &j);
1612 if (ret != 0)
1613 goto release_matches;
1614
1615 t = compat_ip6t_get_target(e);
1616 target = try_then_request_module(xt_find_target(AF_INET6,
1617 t->u.user.name,
1618 t->u.user.revision),
1619 "ip6t_%s", t->u.user.name);
1620 if (IS_ERR(target) || !target) {
1621 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
1622 t->u.user.name);
1623 ret = target ? PTR_ERR(target) : -ENOENT;
1624 goto release_matches;
1625 }
1626 t->u.kernel.target = target;
1627
1628 off += xt_compat_target_offset(target);
1629 *size += off;
1630 ret = xt_compat_add_offset(AF_INET6, entry_offset, off);
1631 if (ret)
1632 goto out;
1633
1634 /* Check hooks & underflows */
1635 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
1636 if ((unsigned char *)e - base == hook_entries[h])
1637 newinfo->hook_entry[h] = hook_entries[h];
1638 if ((unsigned char *)e - base == underflows[h])
1639 newinfo->underflow[h] = underflows[h];
1640 }
1641
1642 /* Clear counters and comefrom */
1643 memset(&e->counters, 0, sizeof(e->counters));
1644 e->comefrom = 0;
1645
1646 (*i)++;
1647 return 0;
1648
1649out:
1650 module_put(t->u.kernel.target->me);
1651release_matches:
1652 IP6T_MATCH_ITERATE(e, compat_release_match, &j);
1653 return ret;
1654}
1655
1656static int
1657compat_copy_entry_from_user(struct compat_ip6t_entry *e, void **dstptr,
1658 unsigned int *size, const char *name,
1659 struct xt_table_info *newinfo, unsigned char *base)
1660{
1661 struct ip6t_entry_target *t;
1662 struct xt_target *target;
1663 struct ip6t_entry *de;
1664 unsigned int origsize;
1665 int ret, h;
1666
1667 ret = 0;
1668 origsize = *size;
1669 de = (struct ip6t_entry *)*dstptr;
1670 memcpy(de, e, sizeof(struct ip6t_entry));
1671 memcpy(&de->counters, &e->counters, sizeof(e->counters));
1672
1673 *dstptr += sizeof(struct ip6t_entry);
1674 *size += sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1675
1676 ret = COMPAT_IP6T_MATCH_ITERATE(e, xt_compat_match_from_user,
1677 dstptr, size);
1678 if (ret)
1679 return ret;
1680 de->target_offset = e->target_offset - (origsize - *size);
1681 t = compat_ip6t_get_target(e);
1682 target = t->u.kernel.target;
1683 xt_compat_target_from_user(t, dstptr, size);
1684
1685 de->next_offset = e->next_offset - (origsize - *size);
1686 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
1687 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1688 newinfo->hook_entry[h] -= origsize - *size;
1689 if ((unsigned char *)de - base < newinfo->underflow[h])
1690 newinfo->underflow[h] -= origsize - *size;
1691 }
1692 return ret;
1693}
1694
Denys Vlasenko022748a2008-01-14 23:44:05 -08001695static int compat_check_entry(struct ip6t_entry *e, const char *name,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001696 unsigned int *i)
1697{
Patrick McHardyb0a63632008-01-31 04:10:18 -08001698 unsigned int j;
1699 int ret;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001700 struct xt_mtchk_param mtpar;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001701
1702 j = 0;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001703 mtpar.table = name;
1704 mtpar.entryinfo = &e->ipv6;
1705 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +02001706 mtpar.family = NFPROTO_IPV6;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001707 ret = IP6T_MATCH_ITERATE(e, check_match, &mtpar, &j);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001708 if (ret)
1709 goto cleanup_matches;
1710
1711 ret = check_target(e, name);
1712 if (ret)
1713 goto cleanup_matches;
1714
1715 (*i)++;
1716 return 0;
1717
1718 cleanup_matches:
1719 IP6T_MATCH_ITERATE(e, cleanup_match, &j);
1720 return ret;
1721}
1722
1723static int
1724translate_compat_table(const char *name,
1725 unsigned int valid_hooks,
1726 struct xt_table_info **pinfo,
1727 void **pentry0,
1728 unsigned int total_size,
1729 unsigned int number,
1730 unsigned int *hook_entries,
1731 unsigned int *underflows)
1732{
1733 unsigned int i, j;
1734 struct xt_table_info *newinfo, *info;
1735 void *pos, *entry0, *entry1;
1736 unsigned int size;
1737 int ret;
1738
1739 info = *pinfo;
1740 entry0 = *pentry0;
1741 size = total_size;
1742 info->number = number;
1743
1744 /* Init all hooks to impossible value. */
1745 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1746 info->hook_entry[i] = 0xFFFFFFFF;
1747 info->underflow[i] = 0xFFFFFFFF;
1748 }
1749
1750 duprintf("translate_compat_table: size %u\n", info->size);
1751 j = 0;
1752 xt_compat_lock(AF_INET6);
1753 /* Walk through entries, checking offsets. */
1754 ret = COMPAT_IP6T_ENTRY_ITERATE(entry0, total_size,
1755 check_compat_entry_size_and_hooks,
1756 info, &size, entry0,
1757 entry0 + total_size,
1758 hook_entries, underflows, &j, name);
1759 if (ret != 0)
1760 goto out_unlock;
1761
1762 ret = -EINVAL;
1763 if (j != number) {
1764 duprintf("translate_compat_table: %u not %u entries\n",
1765 j, number);
1766 goto out_unlock;
1767 }
1768
1769 /* Check hooks all assigned */
1770 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1771 /* Only hooks which are valid */
1772 if (!(valid_hooks & (1 << i)))
1773 continue;
1774 if (info->hook_entry[i] == 0xFFFFFFFF) {
1775 duprintf("Invalid hook entry %u %u\n",
1776 i, hook_entries[i]);
1777 goto out_unlock;
1778 }
1779 if (info->underflow[i] == 0xFFFFFFFF) {
1780 duprintf("Invalid underflow %u %u\n",
1781 i, underflows[i]);
1782 goto out_unlock;
1783 }
1784 }
1785
1786 ret = -ENOMEM;
1787 newinfo = xt_alloc_table_info(size);
1788 if (!newinfo)
1789 goto out_unlock;
1790
1791 newinfo->number = number;
1792 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1793 newinfo->hook_entry[i] = info->hook_entry[i];
1794 newinfo->underflow[i] = info->underflow[i];
1795 }
1796 entry1 = newinfo->entries[raw_smp_processor_id()];
1797 pos = entry1;
1798 size = total_size;
1799 ret = COMPAT_IP6T_ENTRY_ITERATE(entry0, total_size,
1800 compat_copy_entry_from_user,
1801 &pos, &size, name, newinfo, entry1);
1802 xt_compat_flush_offsets(AF_INET6);
1803 xt_compat_unlock(AF_INET6);
1804 if (ret)
1805 goto free_newinfo;
1806
1807 ret = -ELOOP;
1808 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1809 goto free_newinfo;
1810
1811 i = 0;
1812 ret = IP6T_ENTRY_ITERATE(entry1, newinfo->size, compat_check_entry,
1813 name, &i);
1814 if (ret) {
1815 j -= i;
1816 COMPAT_IP6T_ENTRY_ITERATE_CONTINUE(entry0, newinfo->size, i,
1817 compat_release_entry, &j);
1818 IP6T_ENTRY_ITERATE(entry1, newinfo->size, cleanup_entry, &i);
1819 xt_free_table_info(newinfo);
1820 return ret;
1821 }
1822
1823 /* And one copy for every other CPU */
1824 for_each_possible_cpu(i)
1825 if (newinfo->entries[i] && newinfo->entries[i] != entry1)
1826 memcpy(newinfo->entries[i], entry1, newinfo->size);
1827
1828 *pinfo = newinfo;
1829 *pentry0 = entry1;
1830 xt_free_table_info(info);
1831 return 0;
1832
1833free_newinfo:
1834 xt_free_table_info(newinfo);
1835out:
1836 COMPAT_IP6T_ENTRY_ITERATE(entry0, total_size, compat_release_entry, &j);
1837 return ret;
1838out_unlock:
1839 xt_compat_flush_offsets(AF_INET6);
1840 xt_compat_unlock(AF_INET6);
1841 goto out;
1842}
1843
1844static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001845compat_do_replace(struct net *net, void __user *user, unsigned int len)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001846{
1847 int ret;
1848 struct compat_ip6t_replace tmp;
1849 struct xt_table_info *newinfo;
1850 void *loc_cpu_entry;
1851
1852 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1853 return -EFAULT;
1854
1855 /* overflow check */
1856 if (tmp.size >= INT_MAX / num_possible_cpus())
1857 return -ENOMEM;
1858 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1859 return -ENOMEM;
1860
1861 newinfo = xt_alloc_table_info(tmp.size);
1862 if (!newinfo)
1863 return -ENOMEM;
1864
Patrick McHardy9c547952007-12-17 21:52:00 -08001865 /* choose the copy that is on our node/cpu */
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001866 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1867 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1868 tmp.size) != 0) {
1869 ret = -EFAULT;
1870 goto free_newinfo;
1871 }
1872
1873 ret = translate_compat_table(tmp.name, tmp.valid_hooks,
1874 &newinfo, &loc_cpu_entry, tmp.size,
1875 tmp.num_entries, tmp.hook_entry,
1876 tmp.underflow);
1877 if (ret != 0)
1878 goto free_newinfo;
1879
1880 duprintf("compat_do_replace: Translated table\n");
1881
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001882 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001883 tmp.num_counters, compat_ptr(tmp.counters));
1884 if (ret)
1885 goto free_newinfo_untrans;
1886 return 0;
1887
1888 free_newinfo_untrans:
1889 IP6T_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
1890 free_newinfo:
1891 xt_free_table_info(newinfo);
1892 return ret;
1893}
1894
1895static int
1896compat_do_ip6t_set_ctl(struct sock *sk, int cmd, void __user *user,
1897 unsigned int len)
1898{
1899 int ret;
1900
1901 if (!capable(CAP_NET_ADMIN))
1902 return -EPERM;
1903
1904 switch (cmd) {
1905 case IP6T_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001906 ret = compat_do_replace(sock_net(sk), user, len);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001907 break;
1908
1909 case IP6T_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001910 ret = do_add_counters(sock_net(sk), user, len, 1);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001911 break;
1912
1913 default:
1914 duprintf("do_ip6t_set_ctl: unknown request %i\n", cmd);
1915 ret = -EINVAL;
1916 }
1917
1918 return ret;
1919}
1920
1921struct compat_ip6t_get_entries {
1922 char name[IP6T_TABLE_MAXNAMELEN];
1923 compat_uint_t size;
1924 struct compat_ip6t_entry entrytable[0];
1925};
1926
1927static int
1928compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1929 void __user *userptr)
1930{
1931 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001932 const struct xt_table_info *private = table->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001933 void __user *pos;
1934 unsigned int size;
1935 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001936 const void *loc_cpu_entry;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001937 unsigned int i = 0;
1938
1939 counters = alloc_counters(table);
1940 if (IS_ERR(counters))
1941 return PTR_ERR(counters);
1942
1943 /* choose the copy that is on our node/cpu, ...
1944 * This choice is lazy (because current thread is
1945 * allowed to migrate to another cpu)
1946 */
1947 loc_cpu_entry = private->entries[raw_smp_processor_id()];
1948 pos = userptr;
1949 size = total_size;
1950 ret = IP6T_ENTRY_ITERATE(loc_cpu_entry, total_size,
1951 compat_copy_entry_to_user,
1952 &pos, &size, counters, &i);
1953
1954 vfree(counters);
1955 return ret;
1956}
1957
1958static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001959compat_get_entries(struct net *net, struct compat_ip6t_get_entries __user *uptr,
1960 int *len)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001961{
1962 int ret;
1963 struct compat_ip6t_get_entries get;
1964 struct xt_table *t;
1965
1966 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001967 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001968 return -EINVAL;
1969 }
1970
1971 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1972 return -EFAULT;
1973
1974 if (*len != sizeof(struct compat_ip6t_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001975 duprintf("compat_get_entries: %u != %zu\n",
1976 *len, sizeof(get) + get.size);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001977 return -EINVAL;
1978 }
1979
1980 xt_compat_lock(AF_INET6);
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001981 t = xt_find_table_lock(net, AF_INET6, get.name);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001982 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001983 const struct xt_table_info *private = t->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001984 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08001985 duprintf("t->private->number = %u\n", private->number);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001986 ret = compat_table_info(private, &info);
1987 if (!ret && get.size == info.size) {
1988 ret = compat_copy_entries_to_user(private->size,
1989 t, uptr->entrytable);
1990 } else if (!ret) {
1991 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001992 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001993 ret = -EAGAIN;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001994 }
1995 xt_compat_flush_offsets(AF_INET6);
1996 module_put(t->me);
1997 xt_table_unlock(t);
1998 } else
1999 ret = t ? PTR_ERR(t) : -ENOENT;
2000
2001 xt_compat_unlock(AF_INET6);
2002 return ret;
2003}
2004
2005static int do_ip6t_get_ctl(struct sock *, int, void __user *, int *);
2006
2007static int
2008compat_do_ip6t_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2009{
2010 int ret;
2011
2012 if (!capable(CAP_NET_ADMIN))
2013 return -EPERM;
2014
2015 switch (cmd) {
2016 case IP6T_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002017 ret = get_info(sock_net(sk), user, len, 1);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002018 break;
2019 case IP6T_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002020 ret = compat_get_entries(sock_net(sk), user, len);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002021 break;
2022 default:
2023 ret = do_ip6t_get_ctl(sk, cmd, user, len);
2024 }
2025 return ret;
2026}
2027#endif
2028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029static int
2030do_ip6t_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
2031{
2032 int ret;
2033
2034 if (!capable(CAP_NET_ADMIN))
2035 return -EPERM;
2036
2037 switch (cmd) {
2038 case IP6T_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002039 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 break;
2041
2042 case IP6T_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002043 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 break;
2045
2046 default:
2047 duprintf("do_ip6t_set_ctl: unknown request %i\n", cmd);
2048 ret = -EINVAL;
2049 }
2050
2051 return ret;
2052}
2053
2054static int
2055do_ip6t_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2056{
2057 int ret;
2058
2059 if (!capable(CAP_NET_ADMIN))
2060 return -EPERM;
2061
2062 switch (cmd) {
Patrick McHardy433665c2007-12-17 21:50:05 -08002063 case IP6T_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002064 ret = get_info(sock_net(sk), user, len, 0);
Patrick McHardy433665c2007-12-17 21:50:05 -08002065 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Patrick McHardyd9243572007-12-17 21:50:22 -08002067 case IP6T_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002068 ret = get_entries(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Harald Welte6b7d31f2005-10-26 09:34:24 +02002071 case IP6T_SO_GET_REVISION_MATCH:
2072 case IP6T_SO_GET_REVISION_TARGET: {
2073 struct ip6t_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002074 int target;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002075
2076 if (*len != sizeof(rev)) {
2077 ret = -EINVAL;
2078 break;
2079 }
2080 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2081 ret = -EFAULT;
2082 break;
2083 }
2084
2085 if (cmd == IP6T_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08002086 target = 1;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002087 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08002088 target = 0;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002089
Harald Welte2e4e6a12006-01-12 13:30:04 -08002090 try_then_request_module(xt_find_revision(AF_INET6, rev.name,
2091 rev.revision,
2092 target, &ret),
Harald Welte6b7d31f2005-10-26 09:34:24 +02002093 "ip6t_%s", rev.name);
2094 break;
2095 }
2096
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 default:
2098 duprintf("do_ip6t_get_ctl: unknown request %i\n", cmd);
2099 ret = -EINVAL;
2100 }
2101
2102 return ret;
2103}
2104
Jan Engelhardt35aad0f2009-08-24 14:56:30 +02002105struct xt_table *ip6t_register_table(struct net *net,
2106 const struct xt_table *table,
Alexey Dobriyan336b5172008-01-31 04:03:45 -08002107 const struct ip6t_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108{
2109 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002110 struct xt_table_info *newinfo;
Eric Dumazet259d4e42007-12-04 23:24:56 -08002111 struct xt_table_info bootstrap
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 = { 0, 0, 0, { 0 }, { 0 }, { } };
Eric Dumazet31836062005-12-13 23:13:48 -08002113 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08002114 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
Harald Welte2e4e6a12006-01-12 13:30:04 -08002116 newinfo = xt_alloc_table_info(repl->size);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002117 if (!newinfo) {
2118 ret = -ENOMEM;
2119 goto out;
2120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Patrick McHardy9c547952007-12-17 21:52:00 -08002122 /* choose the copy on our node/cpu, but dont care about preemption */
Eric Dumazet31836062005-12-13 23:13:48 -08002123 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
2124 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01002126 ret = translate_table(net, table->name, table->valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08002127 newinfo, loc_cpu_entry, repl->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 repl->num_entries,
2129 repl->hook_entry,
2130 repl->underflow);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002131 if (ret != 0)
2132 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
Alexey Dobriyan336b5172008-01-31 04:03:45 -08002134 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08002135 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002136 ret = PTR_ERR(new_table);
2137 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 }
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002139 return new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002141out_free:
2142 xt_free_table_info(newinfo);
2143out:
2144 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145}
2146
Harald Welte2e4e6a12006-01-12 13:30:04 -08002147void ip6t_unregister_table(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148{
Harald Welte2e4e6a12006-01-12 13:30:04 -08002149 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08002150 void *loc_cpu_entry;
Alexey Dobriyandf200962008-01-31 04:05:34 -08002151 struct module *table_owner = table->me;
Eric Dumazet31836062005-12-13 23:13:48 -08002152
Harald Welte2e4e6a12006-01-12 13:30:04 -08002153 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
2155 /* Decrease module usage counts and free resources */
Harald Welte2e4e6a12006-01-12 13:30:04 -08002156 loc_cpu_entry = private->entries[raw_smp_processor_id()];
2157 IP6T_ENTRY_ITERATE(loc_cpu_entry, private->size, cleanup_entry, NULL);
Alexey Dobriyandf200962008-01-31 04:05:34 -08002158 if (private->number > private->initial_entries)
2159 module_put(table_owner);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002160 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161}
2162
2163/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardtccb79bd2007-07-07 22:16:00 -07002164static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165icmp6_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2166 u_int8_t type, u_int8_t code,
Jan Engelhardtccb79bd2007-07-07 22:16:00 -07002167 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168{
2169 return (type == test_type && code >= min_code && code <= max_code)
2170 ^ invert;
2171}
2172
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002173static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002174icmp6_match(const struct sk_buff *skb, const struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175{
Jan Engelhardt5452e422008-04-14 11:15:35 +02002176 const struct icmp6hdr *ic;
2177 struct icmp6hdr _icmph;
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002178 const struct ip6t_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180 /* Must not be a fragment. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002181 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002182 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002184 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 if (ic == NULL) {
2186 /* We've been asked to examine this packet, and we
Patrick McHardy9c547952007-12-17 21:52:00 -08002187 * can't. Hence, no choice but to drop.
2188 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002190 *par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002191 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 }
2193
2194 return icmp6_type_code_match(icmpinfo->type,
2195 icmpinfo->code[0],
2196 icmpinfo->code[1],
2197 ic->icmp6_type, ic->icmp6_code,
2198 !!(icmpinfo->invflags&IP6T_ICMP_INV));
2199}
2200
2201/* Called when user tries to insert an entry of this type. */
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002202static bool icmp6_checkentry(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002204 const struct ip6t_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Patrick McHardy7f939712006-03-20 18:01:43 -08002206 /* Must specify no unknown invflags */
2207 return !(icmpinfo->invflags & ~IP6T_ICMP_INV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208}
2209
2210/* The built-in targets: standard (NULL) and error. */
Patrick McHardy9f15c532007-07-07 22:22:02 -07002211static struct xt_target ip6t_standard_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 .name = IP6T_STANDARD_TARGET,
Patrick McHardy7f939712006-03-20 18:01:43 -08002213 .targetsize = sizeof(int),
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002214 .family = NFPROTO_IPV6,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002215#ifdef CONFIG_COMPAT
2216 .compatsize = sizeof(compat_int_t),
2217 .compat_from_user = compat_standard_from_user,
2218 .compat_to_user = compat_standard_to_user,
2219#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220};
2221
Patrick McHardy9f15c532007-07-07 22:22:02 -07002222static struct xt_target ip6t_error_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 .name = IP6T_ERROR_TARGET,
2224 .target = ip6t_error,
Patrick McHardy7f939712006-03-20 18:01:43 -08002225 .targetsize = IP6T_FUNCTION_MAXNAMELEN,
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002226 .family = NFPROTO_IPV6,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227};
2228
2229static struct nf_sockopt_ops ip6t_sockopts = {
2230 .pf = PF_INET6,
2231 .set_optmin = IP6T_BASE_CTL,
2232 .set_optmax = IP6T_SO_SET_MAX+1,
2233 .set = do_ip6t_set_ctl,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002234#ifdef CONFIG_COMPAT
2235 .compat_set = compat_do_ip6t_set_ctl,
2236#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 .get_optmin = IP6T_BASE_CTL,
2238 .get_optmax = IP6T_SO_GET_MAX+1,
2239 .get = do_ip6t_get_ctl,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002240#ifdef CONFIG_COMPAT
2241 .compat_get = compat_do_ip6t_get_ctl,
2242#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002243 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244};
2245
Patrick McHardy9f15c532007-07-07 22:22:02 -07002246static struct xt_match icmp6_matchstruct __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 .name = "icmp6",
Patrick McHardy9c547952007-12-17 21:52:00 -08002248 .match = icmp6_match,
Patrick McHardy7f939712006-03-20 18:01:43 -08002249 .matchsize = sizeof(struct ip6t_icmp),
2250 .checkentry = icmp6_checkentry,
2251 .proto = IPPROTO_ICMPV6,
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002252 .family = NFPROTO_IPV6,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253};
2254
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002255static int __net_init ip6_tables_net_init(struct net *net)
2256{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002257 return xt_proto_init(net, NFPROTO_IPV6);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002258}
2259
2260static void __net_exit ip6_tables_net_exit(struct net *net)
2261{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002262 xt_proto_fini(net, NFPROTO_IPV6);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002263}
2264
2265static struct pernet_operations ip6_tables_net_ops = {
2266 .init = ip6_tables_net_init,
2267 .exit = ip6_tables_net_exit,
2268};
2269
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002270static int __init ip6_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271{
2272 int ret;
2273
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002274 ret = register_pernet_subsys(&ip6_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002275 if (ret < 0)
2276 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002277
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 /* Noone else will be downing sem now, so we won't sleep */
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002279 ret = xt_register_target(&ip6t_standard_target);
2280 if (ret < 0)
2281 goto err2;
2282 ret = xt_register_target(&ip6t_error_target);
2283 if (ret < 0)
2284 goto err3;
2285 ret = xt_register_match(&icmp6_matchstruct);
2286 if (ret < 0)
2287 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
2289 /* Register setsockopt */
2290 ret = nf_register_sockopt(&ip6t_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002291 if (ret < 0)
2292 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
Patrick McHardya887c1c2007-07-14 20:46:15 -07002294 printk(KERN_INFO "ip6_tables: (C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002296
2297err5:
2298 xt_unregister_match(&icmp6_matchstruct);
2299err4:
2300 xt_unregister_target(&ip6t_error_target);
2301err3:
2302 xt_unregister_target(&ip6t_standard_target);
2303err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002304 unregister_pernet_subsys(&ip6_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002305err1:
2306 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307}
2308
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002309static void __exit ip6_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310{
2311 nf_unregister_sockopt(&ip6t_sockopts);
Patrick McHardy9c547952007-12-17 21:52:00 -08002312
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002313 xt_unregister_match(&icmp6_matchstruct);
2314 xt_unregister_target(&ip6t_error_target);
2315 xt_unregister_target(&ip6t_standard_target);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002316
2317 unregister_pernet_subsys(&ip6_tables_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318}
2319
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002320/*
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002321 * find the offset to specified header or the protocol number of last header
2322 * if target < 0. "last header" is transport protocol header, ESP, or
2323 * "No next header".
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002324 *
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002325 * If target header is found, its offset is set in *offset and return protocol
2326 * number. Otherwise, return -1.
2327 *
Patrick McHardy6d381632006-10-24 16:15:10 -07002328 * If the first fragment doesn't contain the final protocol header or
2329 * NEXTHDR_NONE it is considered invalid.
2330 *
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002331 * Note that non-1st fragment is special case that "the protocol number
2332 * of last header" is "next header" field in Fragment header. In this case,
2333 * *offset is meaningless and fragment offset is stored in *fragoff if fragoff
2334 * isn't NULL.
2335 *
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002336 */
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002337int ipv6_find_hdr(const struct sk_buff *skb, unsigned int *offset,
2338 int target, unsigned short *fragoff)
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002339{
Arnaldo Carvalho de Melo6b88dd92007-03-19 22:29:03 -03002340 unsigned int start = skb_network_offset(skb) + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002341 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002342 unsigned int len = skb->len - start;
2343
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002344 if (fragoff)
2345 *fragoff = 0;
2346
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002347 while (nexthdr != target) {
2348 struct ipv6_opt_hdr _hdr, *hp;
2349 unsigned int hdrlen;
2350
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002351 if ((!ipv6_ext_hdr(nexthdr)) || nexthdr == NEXTHDR_NONE) {
2352 if (target < 0)
2353 break;
Patrick McHardy6d381632006-10-24 16:15:10 -07002354 return -ENOENT;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002355 }
2356
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002357 hp = skb_header_pointer(skb, start, sizeof(_hdr), &_hdr);
2358 if (hp == NULL)
Patrick McHardy6d381632006-10-24 16:15:10 -07002359 return -EBADMSG;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002360 if (nexthdr == NEXTHDR_FRAGMENT) {
Al Viroe69a4adc2006-11-14 20:56:00 -08002361 unsigned short _frag_off;
2362 __be16 *fp;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002363 fp = skb_header_pointer(skb,
2364 start+offsetof(struct frag_hdr,
2365 frag_off),
2366 sizeof(_frag_off),
2367 &_frag_off);
2368 if (fp == NULL)
Patrick McHardy6d381632006-10-24 16:15:10 -07002369 return -EBADMSG;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002370
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002371 _frag_off = ntohs(*fp) & ~0x7;
2372 if (_frag_off) {
2373 if (target < 0 &&
2374 ((!ipv6_ext_hdr(hp->nexthdr)) ||
Patrick McHardy337dde72006-11-14 19:49:13 -08002375 hp->nexthdr == NEXTHDR_NONE)) {
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002376 if (fragoff)
2377 *fragoff = _frag_off;
2378 return hp->nexthdr;
2379 }
Patrick McHardy6d381632006-10-24 16:15:10 -07002380 return -ENOENT;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002381 }
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002382 hdrlen = 8;
2383 } else if (nexthdr == NEXTHDR_AUTH)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002384 hdrlen = (hp->hdrlen + 2) << 2;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002385 else
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002386 hdrlen = ipv6_optlen(hp);
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002387
2388 nexthdr = hp->nexthdr;
2389 len -= hdrlen;
2390 start += hdrlen;
2391 }
2392
2393 *offset = start;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002394 return nexthdr;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002395}
2396
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397EXPORT_SYMBOL(ip6t_register_table);
2398EXPORT_SYMBOL(ip6t_unregister_table);
2399EXPORT_SYMBOL(ip6t_do_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400EXPORT_SYMBOL(ip6t_ext_hdr);
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002401EXPORT_SYMBOL(ipv6_find_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002403module_init(ip6_tables_init);
2404module_exit(ip6_tables_fini);