blob: a6c2213f821ea18559553daab8b5a6bb0f0c966a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Packet matching code.
3 *
4 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
Harald Welte6b7d31f2005-10-26 09:34:24 +02005 * Copyright (C) 2000-2005 Netfilter Core Team <coreteam@netfilter.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
Randy Dunlap4fc268d2006-01-11 12:17:47 -080011
12#include <linux/capability.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020013#include <linux/in.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/skbuff.h>
15#include <linux/kmod.h>
16#include <linux/vmalloc.h>
17#include <linux/netdevice.h>
18#include <linux/module.h>
Randy Dunlap4bdbf6c2006-07-03 19:47:27 -070019#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/icmpv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <net/ipv6.h>
Patrick McHardy3bc3fe52007-12-17 21:50:37 -080022#include <net/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/uaccess.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -080024#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/proc_fs.h>
Patrick McHardy3bc3fe52007-12-17 21:50:37 -080026#include <linux/err.h>
David S. Millerc8923c62005-10-13 14:41:23 -070027#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include <linux/netfilter_ipv6/ip6_tables.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -080030#include <linux/netfilter/x_tables.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080031#include <net/netfilter/nf_log.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33MODULE_LICENSE("GPL");
34MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
35MODULE_DESCRIPTION("IPv6 packet filter");
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037/*#define DEBUG_IP_FIREWALL*/
38/*#define DEBUG_ALLOW_ALL*/ /* Useful for remote debugging */
39/*#define DEBUG_IP_FIREWALL_USER*/
40
41#ifdef DEBUG_IP_FIREWALL
42#define dprintf(format, args...) printk(format , ## args)
43#else
44#define dprintf(format, args...)
45#endif
46
47#ifdef DEBUG_IP_FIREWALL_USER
48#define duprintf(format, args...) printk(format , ## args)
49#else
50#define duprintf(format, args...)
51#endif
52
53#ifdef CONFIG_NETFILTER_DEBUG
54#define IP_NF_ASSERT(x) \
55do { \
56 if (!(x)) \
57 printk("IP_NF_ASSERT: %s:%s:%u\n", \
Harvey Harrison0dc47872008-03-05 20:47:47 -080058 __func__, __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070059} while(0)
60#else
61#define IP_NF_ASSERT(x)
62#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#if 0
65/* All the better to debug you with... */
66#define static
67#define inline
68#endif
69
Harald Welte6b7d31f2005-10-26 09:34:24 +020070/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 We keep a set of rules for each CPU, so we can avoid write-locking
Harald Welte6b7d31f2005-10-26 09:34:24 +020072 them in the softirq when updating the counters and therefore
73 only need to read-lock in the softirq; doing a write_lock_bh() in user
74 context stops packets coming through and allows user context to read
75 the counters or update the rules.
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 Hence the start of any table is given by get_table() below. */
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/* Check for an extension */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090080int
Linus Torvalds1da177e2005-04-16 15:20:36 -070081ip6t_ext_hdr(u8 nexthdr)
82{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090083 return ( (nexthdr == IPPROTO_HOPOPTS) ||
84 (nexthdr == IPPROTO_ROUTING) ||
85 (nexthdr == IPPROTO_FRAGMENT) ||
86 (nexthdr == IPPROTO_ESP) ||
87 (nexthdr == IPPROTO_AH) ||
88 (nexthdr == IPPROTO_NONE) ||
89 (nexthdr == IPPROTO_DSTOPTS) );
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
92/* Returns whether matches rule or not. */
Denys Vlasenko022748a2008-01-14 23:44:05 -080093/* Performance critical - called for every packet */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070094static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -070095ip6_packet_match(const struct sk_buff *skb,
96 const char *indev,
97 const char *outdev,
98 const struct ip6t_ip6 *ip6info,
99 unsigned int *protoff,
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700100 int *fragoff, bool *hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 unsigned long ret;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700103 const struct ipv6hdr *ipv6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Jan Engelhardte79ec502007-12-17 22:44:06 -0800105#define FWINV(bool, invflg) ((bool) ^ !!(ip6info->invflags & (invflg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Patrick McHardyf2ffd9e2006-03-20 18:03:16 -0800107 if (FWINV(ipv6_masked_addr_cmp(&ipv6->saddr, &ip6info->smsk,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900108 &ip6info->src), IP6T_INV_SRCIP)
Patrick McHardyf2ffd9e2006-03-20 18:03:16 -0800109 || FWINV(ipv6_masked_addr_cmp(&ipv6->daddr, &ip6info->dmsk,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900110 &ip6info->dst), IP6T_INV_DSTIP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 dprintf("Source or dest mismatch.\n");
112/*
113 dprintf("SRC: %u. Mask: %u. Target: %u.%s\n", ip->saddr,
114 ipinfo->smsk.s_addr, ipinfo->src.s_addr,
115 ipinfo->invflags & IP6T_INV_SRCIP ? " (INV)" : "");
116 dprintf("DST: %u. Mask: %u. Target: %u.%s\n", ip->daddr,
117 ipinfo->dmsk.s_addr, ipinfo->dst.s_addr,
118 ipinfo->invflags & IP6T_INV_DSTIP ? " (INV)" : "");*/
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700119 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 }
121
Eric Dumazetb8dfe492009-03-25 17:31:52 +0100122 ret = ifname_compare_aligned(indev, ip6info->iniface, ip6info->iniface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 if (FWINV(ret != 0, IP6T_INV_VIA_IN)) {
125 dprintf("VIA in mismatch (%s vs %s).%s\n",
126 indev, ip6info->iniface,
127 ip6info->invflags&IP6T_INV_VIA_IN ?" (INV)":"");
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700128 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
130
Eric Dumazetb8dfe492009-03-25 17:31:52 +0100131 ret = ifname_compare_aligned(outdev, ip6info->outiface, ip6info->outiface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 if (FWINV(ret != 0, IP6T_INV_VIA_OUT)) {
134 dprintf("VIA out mismatch (%s vs %s).%s\n",
135 outdev, ip6info->outiface,
136 ip6info->invflags&IP6T_INV_VIA_OUT ?" (INV)":"");
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700137 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139
140/* ... might want to do something with class and flowlabel here ... */
141
142 /* look for the desired protocol header */
143 if((ip6info->flags & IP6T_F_PROTO)) {
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800144 int protohdr;
145 unsigned short _frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800147 protohdr = ipv6_find_hdr(skb, protoff, -1, &_frag_off);
Patrick McHardy51d8b1a2006-10-24 16:14:04 -0700148 if (protohdr < 0) {
149 if (_frag_off == 0)
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700150 *hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700151 return false;
Patrick McHardy51d8b1a2006-10-24 16:14:04 -0700152 }
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800153 *fragoff = _frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 dprintf("Packet protocol %hi ?= %s%hi.\n",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900156 protohdr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 ip6info->invflags & IP6T_INV_PROTO ? "!":"",
158 ip6info->proto);
159
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800160 if (ip6info->proto == protohdr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 if(ip6info->invflags & IP6T_INV_PROTO) {
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700162 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 }
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700164 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
166
167 /* We need match for the '-p all', too! */
168 if ((ip6info->proto != 0) &&
169 !(ip6info->invflags & IP6T_INV_PROTO))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700170 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700172 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
175/* should be ip6 safe */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800176static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177ip6_checkentry(const struct ip6t_ip6 *ipv6)
178{
179 if (ipv6->flags & ~IP6T_F_MASK) {
180 duprintf("Unknown flag bits set: %08X\n",
181 ipv6->flags & ~IP6T_F_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700182 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184 if (ipv6->invflags & ~IP6T_INV_MASK) {
185 duprintf("Unknown invflag bits set: %08X\n",
186 ipv6->invflags & ~IP6T_INV_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700187 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700189 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
192static unsigned int
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200193ip6t_error(struct sk_buff *skb, const struct xt_target_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
195 if (net_ratelimit())
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200196 printk("ip6_tables: error: `%s'\n",
197 (const char *)par->targinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 return NF_DROP;
200}
201
Denys Vlasenko022748a2008-01-14 23:44:05 -0800202/* Performance critical - called for every packet */
203static inline bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200204do_match(struct ip6t_entry_match *m, const struct sk_buff *skb,
205 struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200207 par->match = m->u.kernel.match;
208 par->matchinfo = m->data;
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 /* Stop iteration if it doesn't match */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200211 if (!m->u.kernel.match->match(skb, par))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700212 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 else
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700214 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
217static inline struct ip6t_entry *
218get_entry(void *base, unsigned int offset)
219{
220 return (struct ip6t_entry *)(base + offset);
221}
222
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700223/* All zeroes == unconditional rule. */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800224/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700225static inline int
226unconditional(const struct ip6t_ip6 *ipv6)
227{
228 unsigned int i;
229
230 for (i = 0; i < sizeof(*ipv6); i++)
231 if (((char *)ipv6)[i])
232 break;
233
234 return (i == sizeof(*ipv6));
235}
236
237#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
238 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
239/* This cries for unification! */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800240static const char *const hooknames[] = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800241 [NF_INET_PRE_ROUTING] = "PREROUTING",
242 [NF_INET_LOCAL_IN] = "INPUT",
243 [NF_INET_FORWARD] = "FORWARD",
244 [NF_INET_LOCAL_OUT] = "OUTPUT",
245 [NF_INET_POST_ROUTING] = "POSTROUTING",
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700246};
247
248enum nf_ip_trace_comments {
249 NF_IP6_TRACE_COMMENT_RULE,
250 NF_IP6_TRACE_COMMENT_RETURN,
251 NF_IP6_TRACE_COMMENT_POLICY,
252};
253
Denys Vlasenko022748a2008-01-14 23:44:05 -0800254static const char *const comments[] = {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700255 [NF_IP6_TRACE_COMMENT_RULE] = "rule",
256 [NF_IP6_TRACE_COMMENT_RETURN] = "return",
257 [NF_IP6_TRACE_COMMENT_POLICY] = "policy",
258};
259
260static struct nf_loginfo trace_loginfo = {
261 .type = NF_LOG_TYPE_LOG,
262 .u = {
263 .log = {
264 .level = 4,
265 .logflags = NF_LOG_MASK,
266 },
267 },
268};
269
Denys Vlasenko022748a2008-01-14 23:44:05 -0800270/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700271static inline int
272get_chainname_rulenum(struct ip6t_entry *s, struct ip6t_entry *e,
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200273 const char *hookname, const char **chainname,
274 const char **comment, unsigned int *rulenum)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700275{
276 struct ip6t_standard_target *t = (void *)ip6t_get_target(s);
277
278 if (strcmp(t->target.u.kernel.target->name, IP6T_ERROR_TARGET) == 0) {
279 /* Head of user chain: ERROR target with chainname */
280 *chainname = t->target.data;
281 (*rulenum) = 0;
282 } else if (s == e) {
283 (*rulenum)++;
284
285 if (s->target_offset == sizeof(struct ip6t_entry)
286 && strcmp(t->target.u.kernel.target->name,
287 IP6T_STANDARD_TARGET) == 0
288 && t->verdict < 0
289 && unconditional(&s->ipv6)) {
290 /* Tail of chains: STANDARD target (return/policy) */
291 *comment = *chainname == hookname
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200292 ? comments[NF_IP6_TRACE_COMMENT_POLICY]
293 : comments[NF_IP6_TRACE_COMMENT_RETURN];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700294 }
295 return 1;
296 } else
297 (*rulenum)++;
298
299 return 0;
300}
301
302static void trace_packet(struct sk_buff *skb,
303 unsigned int hook,
304 const struct net_device *in,
305 const struct net_device *out,
Jan Engelhardtecb6f852008-01-31 03:54:47 -0800306 const char *tablename,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700307 struct xt_table_info *private,
308 struct ip6t_entry *e)
309{
310 void *table_base;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200311 const struct ip6t_entry *root;
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200312 const char *hookname, *chainname, *comment;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700313 unsigned int rulenum = 0;
314
Jan Engelhardtccf5bd82009-04-15 20:27:03 +0200315 table_base = private->entries[smp_processor_id()];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700316 root = get_entry(table_base, private->hook_entry[hook]);
317
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200318 hookname = chainname = hooknames[hook];
319 comment = comments[NF_IP6_TRACE_COMMENT_RULE];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700320
321 IP6T_ENTRY_ITERATE(root,
322 private->size - private->hook_entry[hook],
323 get_chainname_rulenum,
324 e, hookname, &chainname, &comment, &rulenum);
325
326 nf_log_packet(AF_INET6, hook, skb, in, out, &trace_loginfo,
327 "TRACE: %s:%s:%s:%u ",
328 tablename, chainname, comment, rulenum);
329}
330#endif
331
Jan Engelhardt98e86402009-04-15 21:06:05 +0200332static inline __pure struct ip6t_entry *
333ip6t_next_entry(const struct ip6t_entry *entry)
334{
335 return (void *)entry + entry->next_offset;
336}
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338/* Returns one of the generic firewall policies, like NF_ACCEPT. */
339unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700340ip6t_do_table(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 unsigned int hook,
342 const struct net_device *in,
343 const struct net_device *out,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700344 struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Harald Welte6b7d31f2005-10-26 09:34:24 +0200346 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700347 bool hotdrop = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 /* Initializing verdict to NF_DROP keeps gcc happy. */
349 unsigned int verdict = NF_DROP;
350 const char *indev, *outdev;
351 void *table_base;
352 struct ip6t_entry *e, *back;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800353 struct xt_table_info *private;
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200354 struct xt_match_param mtpar;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200355 struct xt_target_param tgpar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 /* Initialization */
358 indev = in ? in->name : nulldevname;
359 outdev = out ? out->name : nulldevname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 /* We handle fragments by dealing with the first fragment as
361 * if it was a normal packet. All other fragments are treated
362 * normally, except that they will NEVER match rules that ask
363 * things we don't know, ie. tcp syn flag or ports). If the
364 * rule is also a fragment-specific rule, non-fragments won't
365 * match it. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200366 mtpar.hotdrop = &hotdrop;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200367 mtpar.in = tgpar.in = in;
368 mtpar.out = tgpar.out = out;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200369 mtpar.family = tgpar.family = NFPROTO_IPV6;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200370 tgpar.hooknum = hook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 IP_NF_ASSERT(table->valid_hooks & (1 << hook));
Stephen Hemminger78454472009-02-20 10:35:32 +0100373
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700374 xt_info_rdlock_bh();
375 private = table->private;
376 table_base = private->entries[smp_processor_id()];
Stephen Hemminger78454472009-02-20 10:35:32 +0100377
Harald Welte2e4e6a12006-01-12 13:30:04 -0800378 e = get_entry(table_base, private->hook_entry[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 /* For return from builtin chain */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800381 back = get_entry(table_base, private->underflow[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 do {
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200384 struct ip6t_entry_target *t;
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 IP_NF_ASSERT(e);
387 IP_NF_ASSERT(back);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200388 if (!ip6_packet_match(skb, indev, outdev, &e->ipv6,
389 &mtpar.thoff, &mtpar.fragoff, &hotdrop)) {
390 no_match:
391 e = ip6t_next_entry(e);
392 continue;
393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200395 if (IP6T_MATCH_ITERATE(e, do_match, skb, &mtpar) != 0)
396 goto no_match;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200398 ADD_COUNTER(e->counters,
399 ntohs(ipv6_hdr(skb)->payload_len) +
400 sizeof(struct ipv6hdr), 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200402 t = ip6t_get_target(e);
403 IP_NF_ASSERT(t->u.kernel.target);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700404
405#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
406 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200407 /* The packet is traced: log it */
408 if (unlikely(skb->nf_trace))
409 trace_packet(skb, hook, in, out,
410 table->name, private, e);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700411#endif
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200412 /* Standard target? */
413 if (!t->u.kernel.target->target) {
414 int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200416 v = ((struct ip6t_standard_target *)t)->verdict;
417 if (v < 0) {
418 /* Pop from stack? */
419 if (v != IP6T_RETURN) {
420 verdict = (unsigned)(-v) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 break;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200422 }
423 e = back;
424 back = get_entry(table_base, back->comefrom);
425 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200427 if (table_base + v != ip6t_next_entry(e)
428 && !(e->ipv6.flags & IP6T_F_GOTO)) {
429 /* Save old back ptr in next entry */
430 struct ip6t_entry *next = ip6t_next_entry(e);
431 next->comefrom = (void *)back - table_base;
432 /* set back pointer to next entry */
433 back = next;
434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200436 e = get_entry(table_base, v);
437 } else {
438 /* Targets which reenter must return
439 abs. verdicts */
440 tgpar.target = t->u.kernel.target;
441 tgpar.targinfo = t->data;
442
443#ifdef CONFIG_NETFILTER_DEBUG
444 ((struct ip6t_entry *)table_base)->comefrom
445 = 0xeeeeeeec;
446#endif
447 verdict = t->u.kernel.target->target(skb, &tgpar);
448
449#ifdef CONFIG_NETFILTER_DEBUG
450 if (((struct ip6t_entry *)table_base)->comefrom
451 != 0xeeeeeeec
452 && verdict == IP6T_CONTINUE) {
453 printk("Target %s reentered!\n",
454 t->u.kernel.target->name);
455 verdict = NF_DROP;
456 }
457 ((struct ip6t_entry *)table_base)->comefrom
458 = 0x57acc001;
459#endif
460 if (verdict == IP6T_CONTINUE)
461 e = ip6t_next_entry(e);
462 else
463 /* Verdict */
464 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
466 } while (!hotdrop);
467
468#ifdef CONFIG_NETFILTER_DEBUG
Randy Dunlap4bdbf6c2006-07-03 19:47:27 -0700469 ((struct ip6t_entry *)table_base)->comefrom = NETFILTER_LINK_POISON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470#endif
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700471 xt_info_rdunlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473#ifdef DEBUG_ALLOW_ALL
474 return NF_ACCEPT;
475#else
476 if (hotdrop)
477 return NF_DROP;
478 else return verdict;
479#endif
480}
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482/* Figures out from what hook each rule can be called: returns 0 if
483 there are loops. Puts hook bitmask in comefrom. */
484static int
Harald Welte2e4e6a12006-01-12 13:30:04 -0800485mark_source_chains(struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800486 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
488 unsigned int hook;
489
490 /* No recursion; use packet counter to save back ptrs (reset
491 to 0 as we leave), and comefrom to save source hook bitmask */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800492 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 unsigned int pos = newinfo->hook_entry[hook];
Patrick McHardy9c547952007-12-17 21:52:00 -0800494 struct ip6t_entry *e = (struct ip6t_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 if (!(valid_hooks & (1 << hook)))
497 continue;
498
499 /* Set initial back pointer. */
500 e->counters.pcnt = pos;
501
502 for (;;) {
503 struct ip6t_standard_target *t
504 = (void *)ip6t_get_target(e);
Patrick McHardy9c547952007-12-17 21:52:00 -0800505 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800507 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 printk("iptables: loop hook %u pos %u %08X.\n",
509 hook, pos, e->comefrom);
510 return 0;
511 }
Patrick McHardy9c547952007-12-17 21:52:00 -0800512 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 /* Unconditional return/END. */
Al Viroe1b4b9f2006-12-12 00:29:52 -0800515 if ((e->target_offset == sizeof(struct ip6t_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 && (strcmp(t->target.u.user.name,
517 IP6T_STANDARD_TARGET) == 0)
518 && t->verdict < 0
Al Viroe1b4b9f2006-12-12 00:29:52 -0800519 && unconditional(&e->ipv6)) || visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 unsigned int oldpos, size;
521
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100522 if ((strcmp(t->target.u.user.name,
523 IP6T_STANDARD_TARGET) == 0) &&
524 t->verdict < -NF_MAX_VERDICT - 1) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800525 duprintf("mark_source_chains: bad "
526 "negative verdict (%i)\n",
527 t->verdict);
528 return 0;
529 }
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 /* Return: backtrack through the last
532 big jump. */
533 do {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800534 e->comefrom ^= (1<<NF_INET_NUMHOOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535#ifdef DEBUG_IP_FIREWALL_USER
536 if (e->comefrom
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800537 & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 duprintf("Back unset "
539 "on hook %u "
540 "rule %u\n",
541 hook, pos);
542 }
543#endif
544 oldpos = pos;
545 pos = e->counters.pcnt;
546 e->counters.pcnt = 0;
547
548 /* We're at the start. */
549 if (pos == oldpos)
550 goto next;
551
552 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800553 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 } while (oldpos == pos + e->next_offset);
555
556 /* Move along one */
557 size = e->next_offset;
558 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800559 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 e->counters.pcnt = pos;
561 pos += size;
562 } else {
563 int newpos = t->verdict;
564
565 if (strcmp(t->target.u.user.name,
566 IP6T_STANDARD_TARGET) == 0
567 && newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800568 if (newpos > newinfo->size -
569 sizeof(struct ip6t_entry)) {
570 duprintf("mark_source_chains: "
571 "bad verdict (%i)\n",
572 newpos);
573 return 0;
574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 /* This a jump; chase it. */
576 duprintf("Jump rule %u -> %u\n",
577 pos, newpos);
578 } else {
579 /* ... this is a fallthru */
580 newpos = pos + e->next_offset;
581 }
582 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800583 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 e->counters.pcnt = pos;
585 pos = newpos;
586 }
587 }
588 next:
589 duprintf("Finished chain %u\n", hook);
590 }
591 return 1;
592}
593
Denys Vlasenko022748a2008-01-14 23:44:05 -0800594static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595cleanup_match(struct ip6t_entry_match *m, unsigned int *i)
596{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200597 struct xt_mtdtor_param par;
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (i && (*i)-- == 0)
600 return 1;
601
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200602 par.match = m->u.kernel.match;
603 par.matchinfo = m->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200604 par.family = NFPROTO_IPV6;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200605 if (par.match->destroy != NULL)
606 par.match->destroy(&par);
607 module_put(par.match->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return 0;
609}
610
Denys Vlasenko022748a2008-01-14 23:44:05 -0800611static int
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800612check_entry(struct ip6t_entry *e, const char *name)
613{
614 struct ip6t_entry_target *t;
615
616 if (!ip6_checkentry(&e->ipv6)) {
617 duprintf("ip_tables: ip check failed %p %s.\n", e, name);
618 return -EINVAL;
619 }
620
621 if (e->target_offset + sizeof(struct ip6t_entry_target) >
622 e->next_offset)
623 return -EINVAL;
624
625 t = ip6t_get_target(e);
626 if (e->target_offset + t->u.target_size > e->next_offset)
627 return -EINVAL;
628
629 return 0;
630}
631
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200632static int check_match(struct ip6t_entry_match *m, struct xt_mtchk_param *par,
633 unsigned int *i)
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800634{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200635 const struct ip6t_ip6 *ipv6 = par->entryinfo;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800636 int ret;
637
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200638 par->match = m->u.kernel.match;
639 par->matchinfo = m->data;
640
Jan Engelhardt916a9172008-10-08 11:35:20 +0200641 ret = xt_check_match(par, m->u.match_size - sizeof(*m),
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200642 ipv6->proto, ipv6->invflags & IP6T_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200643 if (ret < 0) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800644 duprintf("ip_tables: check failed for `%s'.\n",
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200645 par.match->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200646 return ret;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800647 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200648 ++*i;
649 return 0;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800650}
651
Denys Vlasenko022748a2008-01-14 23:44:05 -0800652static int
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200653find_check_match(struct ip6t_entry_match *m, struct xt_mtchk_param *par,
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800654 unsigned int *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800656 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800657 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Harald Welte2e4e6a12006-01-12 13:30:04 -0800659 match = try_then_request_module(xt_find_match(AF_INET6, m->u.user.name,
Patrick McHardy9c547952007-12-17 21:52:00 -0800660 m->u.user.revision),
Harald Welte6b7d31f2005-10-26 09:34:24 +0200661 "ip6t_%s", m->u.user.name);
662 if (IS_ERR(match) || !match) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800663 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Harald Welte6b7d31f2005-10-26 09:34:24 +0200664 return match ? PTR_ERR(match) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
666 m->u.kernel.match = match;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200668 ret = check_match(m, par, i);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800669 if (ret)
670 goto err;
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800673err:
674 module_put(m->u.kernel.match->me);
675 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
Denys Vlasenko022748a2008-01-14 23:44:05 -0800678static int check_target(struct ip6t_entry *e, const char *name)
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800679{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200680 struct ip6t_entry_target *t = ip6t_get_target(e);
681 struct xt_tgchk_param par = {
682 .table = name,
683 .entryinfo = e,
684 .target = t->u.kernel.target,
685 .targinfo = t->data,
686 .hook_mask = e->comefrom,
Jan Engelhardt916a9172008-10-08 11:35:20 +0200687 .family = NFPROTO_IPV6,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200688 };
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800689 int ret;
690
691 t = ip6t_get_target(e);
Jan Engelhardt916a9172008-10-08 11:35:20 +0200692 ret = xt_check_target(&par, t->u.target_size - sizeof(*t),
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200693 e->ipv6.proto, e->ipv6.invflags & IP6T_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200694 if (ret < 0) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800695 duprintf("ip_tables: check failed for `%s'.\n",
696 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200697 return ret;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800698 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200699 return 0;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800700}
701
Denys Vlasenko022748a2008-01-14 23:44:05 -0800702static int
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800703find_check_entry(struct ip6t_entry *e, const char *name, unsigned int size,
704 unsigned int *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
706 struct ip6t_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800707 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 int ret;
709 unsigned int j;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200710 struct xt_mtchk_param mtpar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800712 ret = check_entry(e, name);
713 if (ret)
714 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 j = 0;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200717 mtpar.table = name;
718 mtpar.entryinfo = &e->ipv6;
719 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200720 mtpar.family = NFPROTO_IPV6;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200721 ret = IP6T_MATCH_ITERATE(e, find_check_match, &mtpar, &j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 if (ret != 0)
723 goto cleanup_matches;
724
725 t = ip6t_get_target(e);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800726 target = try_then_request_module(xt_find_target(AF_INET6,
727 t->u.user.name,
728 t->u.user.revision),
Harald Welte6b7d31f2005-10-26 09:34:24 +0200729 "ip6t_%s", t->u.user.name);
730 if (IS_ERR(target) || !target) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800731 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Harald Welte6b7d31f2005-10-26 09:34:24 +0200732 ret = target ? PTR_ERR(target) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 goto cleanup_matches;
734 }
735 t->u.kernel.target = target;
Harald Welte6b7d31f2005-10-26 09:34:24 +0200736
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800737 ret = check_target(e, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800738 if (ret)
739 goto err;
740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 (*i)++;
742 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800743 err:
744 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 cleanup_matches:
746 IP6T_MATCH_ITERATE(e, cleanup_match, &j);
747 return ret;
748}
749
Denys Vlasenko022748a2008-01-14 23:44:05 -0800750static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751check_entry_size_and_hooks(struct ip6t_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800752 struct xt_table_info *newinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 unsigned char *base,
754 unsigned char *limit,
755 const unsigned int *hook_entries,
756 const unsigned int *underflows,
757 unsigned int *i)
758{
759 unsigned int h;
760
761 if ((unsigned long)e % __alignof__(struct ip6t_entry) != 0
762 || (unsigned char *)e + sizeof(struct ip6t_entry) >= limit) {
763 duprintf("Bad offset %p\n", e);
764 return -EINVAL;
765 }
766
767 if (e->next_offset
768 < sizeof(struct ip6t_entry) + sizeof(struct ip6t_entry_target)) {
769 duprintf("checking: element %p size %u\n",
770 e, e->next_offset);
771 return -EINVAL;
772 }
773
774 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800775 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if ((unsigned char *)e - base == hook_entries[h])
777 newinfo->hook_entry[h] = hook_entries[h];
778 if ((unsigned char *)e - base == underflows[h])
779 newinfo->underflow[h] = underflows[h];
780 }
781
782 /* FIXME: underflows must be unconditional, standard verdicts
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900783 < 0 (not IP6T_RETURN). --RR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800786 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 e->comefrom = 0;
788
789 (*i)++;
790 return 0;
791}
792
Denys Vlasenko022748a2008-01-14 23:44:05 -0800793static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794cleanup_entry(struct ip6t_entry *e, unsigned int *i)
795{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200796 struct xt_tgdtor_param par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 struct ip6t_entry_target *t;
798
799 if (i && (*i)-- == 0)
800 return 1;
801
802 /* Cleanup all matches */
803 IP6T_MATCH_ITERATE(e, cleanup_match, NULL);
804 t = ip6t_get_target(e);
Jan Engelhardta2df1642008-10-08 11:35:19 +0200805
806 par.target = t->u.kernel.target;
807 par.targinfo = t->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200808 par.family = NFPROTO_IPV6;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200809 if (par.target->destroy != NULL)
810 par.target->destroy(&par);
811 module_put(par.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 return 0;
813}
814
815/* Checks and translates the user-supplied table segment (held in
816 newinfo) */
817static int
818translate_table(const char *name,
819 unsigned int valid_hooks,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800820 struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800821 void *entry0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 unsigned int size,
823 unsigned int number,
824 const unsigned int *hook_entries,
825 const unsigned int *underflows)
826{
827 unsigned int i;
828 int ret;
829
830 newinfo->size = size;
831 newinfo->number = number;
832
833 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800834 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 newinfo->hook_entry[i] = 0xFFFFFFFF;
836 newinfo->underflow[i] = 0xFFFFFFFF;
837 }
838
839 duprintf("translate_table: size %u\n", newinfo->size);
840 i = 0;
841 /* Walk through entries, checking offsets. */
Eric Dumazet31836062005-12-13 23:13:48 -0800842 ret = IP6T_ENTRY_ITERATE(entry0, newinfo->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 check_entry_size_and_hooks,
844 newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800845 entry0,
846 entry0 + size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 hook_entries, underflows, &i);
848 if (ret != 0)
849 return ret;
850
851 if (i != number) {
852 duprintf("translate_table: %u not %u entries\n",
853 i, number);
854 return -EINVAL;
855 }
856
857 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800858 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 /* Only hooks which are valid */
860 if (!(valid_hooks & (1 << i)))
861 continue;
862 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
863 duprintf("Invalid hook entry %u %u\n",
864 i, hook_entries[i]);
865 return -EINVAL;
866 }
867 if (newinfo->underflow[i] == 0xFFFFFFFF) {
868 duprintf("Invalid underflow %u %u\n",
869 i, underflows[i]);
870 return -EINVAL;
871 }
872 }
873
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800874 if (!mark_source_chains(newinfo, valid_hooks, entry0))
875 return -ELOOP;
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 /* Finally, each sanity check must pass */
878 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -0800879 ret = IP6T_ENTRY_ITERATE(entry0, newinfo->size,
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800880 find_check_entry, name, size, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800882 if (ret != 0) {
883 IP6T_ENTRY_ITERATE(entry0, newinfo->size,
884 cleanup_entry, &i);
885 return ret;
886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 /* And one copy for every other CPU */
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700889 for_each_possible_cpu(i) {
Eric Dumazet31836062005-12-13 23:13:48 -0800890 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
891 memcpy(newinfo->entries[i], entry0, newinfo->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 }
893
Patrick McHardy9c547952007-12-17 21:52:00 -0800894 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897/* Gets counters. */
898static inline int
899add_entry_to_counter(const struct ip6t_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800900 struct xt_counters total[],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 unsigned int *i)
902{
903 ADD_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
904
905 (*i)++;
906 return 0;
907}
908
Eric Dumazet31836062005-12-13 23:13:48 -0800909static inline int
910set_entry_to_counter(const struct ip6t_entry *e,
911 struct ip6t_counters total[],
912 unsigned int *i)
913{
914 SET_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
915
916 (*i)++;
917 return 0;
918}
919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800921get_counters(const struct xt_table_info *t,
922 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
924 unsigned int cpu;
925 unsigned int i;
Eric Dumazet31836062005-12-13 23:13:48 -0800926 unsigned int curcpu;
927
928 /* Instead of clearing (by a previous call to memset())
929 * the counters and using adds, we set the counters
930 * with data used by 'current' CPU
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700931 *
932 * Bottom half has to be disabled to prevent deadlock
933 * if new softirq were to run and call ipt_do_table
Eric Dumazet31836062005-12-13 23:13:48 -0800934 */
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700935 local_bh_disable();
936 curcpu = smp_processor_id();
Eric Dumazet31836062005-12-13 23:13:48 -0800937
938 i = 0;
939 IP6T_ENTRY_ITERATE(t->entries[curcpu],
940 t->size,
941 set_entry_to_counter,
942 counters,
943 &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700945 for_each_possible_cpu(cpu) {
Eric Dumazet31836062005-12-13 23:13:48 -0800946 if (cpu == curcpu)
947 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 i = 0;
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700949 xt_info_wrlock(cpu);
Eric Dumazet31836062005-12-13 23:13:48 -0800950 IP6T_ENTRY_ITERATE(t->entries[cpu],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 t->size,
952 add_entry_to_counter,
953 counters,
954 &i);
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700955 xt_info_wrunlock(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 }
Stephen Hemminger78454472009-02-20 10:35:32 +0100957 local_bh_enable();
958}
959
Denys Vlasenko022748a2008-01-14 23:44:05 -0800960static struct xt_counters *alloc_counters(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800962 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800963 struct xt_counters *counters;
Stephen Hemminger78454472009-02-20 10:35:32 +0100964 struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 /* We need atomic snapshot of counters: rest doesn't change
967 (other than comefrom, which userspace doesn't care
968 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800969 countersize = sizeof(struct xt_counters) * private->number;
Patrick McHardy3b84e922007-12-17 21:48:33 -0800970 counters = vmalloc_node(countersize, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972 if (counters == NULL)
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700973 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700975 get_counters(private, counters);
Stephen Hemminger78454472009-02-20 10:35:32 +0100976
Eric Dumazet49a88d12009-04-06 17:06:55 +0200977 return counters;
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800978}
979
980static int
981copy_entries_to_user(unsigned int total_size,
982 struct xt_table *table,
983 void __user *userptr)
984{
985 unsigned int off, num;
986 struct ip6t_entry *e;
987 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200988 const struct xt_table_info *private = table->private;
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800989 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200990 const void *loc_cpu_entry;
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800991
992 counters = alloc_counters(table);
993 if (IS_ERR(counters))
994 return PTR_ERR(counters);
995
Patrick McHardy9c547952007-12-17 21:52:00 -0800996 /* choose the copy that is on our node/cpu, ...
997 * This choice is lazy (because current thread is
998 * allowed to migrate to another cpu)
999 */
Harald Welte2e4e6a12006-01-12 13:30:04 -08001000 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -08001001 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 ret = -EFAULT;
1003 goto free_counters;
1004 }
1005
1006 /* FIXME: use iterator macros --RR */
1007 /* ... then go back and fix counters and names */
1008 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
1009 unsigned int i;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001010 const struct ip6t_entry_match *m;
1011 const struct ip6t_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Eric Dumazet31836062005-12-13 23:13:48 -08001013 e = (struct ip6t_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 if (copy_to_user(userptr + off
1015 + offsetof(struct ip6t_entry, counters),
1016 &counters[num],
1017 sizeof(counters[num])) != 0) {
1018 ret = -EFAULT;
1019 goto free_counters;
1020 }
1021
1022 for (i = sizeof(struct ip6t_entry);
1023 i < e->target_offset;
1024 i += m->u.match_size) {
1025 m = (void *)e + i;
1026
1027 if (copy_to_user(userptr + off + i
1028 + offsetof(struct ip6t_entry_match,
1029 u.user.name),
1030 m->u.kernel.match->name,
1031 strlen(m->u.kernel.match->name)+1)
1032 != 0) {
1033 ret = -EFAULT;
1034 goto free_counters;
1035 }
1036 }
1037
1038 t = ip6t_get_target(e);
1039 if (copy_to_user(userptr + off + e->target_offset
1040 + offsetof(struct ip6t_entry_target,
1041 u.user.name),
1042 t->u.kernel.target->name,
1043 strlen(t->u.kernel.target->name)+1) != 0) {
1044 ret = -EFAULT;
1045 goto free_counters;
1046 }
1047 }
1048
1049 free_counters:
1050 vfree(counters);
1051 return ret;
1052}
1053
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001054#ifdef CONFIG_COMPAT
1055static void compat_standard_from_user(void *dst, void *src)
1056{
1057 int v = *(compat_int_t *)src;
1058
1059 if (v > 0)
1060 v += xt_compat_calc_jump(AF_INET6, v);
1061 memcpy(dst, &v, sizeof(v));
1062}
1063
1064static int compat_standard_to_user(void __user *dst, void *src)
1065{
1066 compat_int_t cv = *(int *)src;
1067
1068 if (cv > 0)
1069 cv -= xt_compat_calc_jump(AF_INET6, cv);
1070 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
1071}
1072
1073static inline int
1074compat_calc_match(struct ip6t_entry_match *m, int *size)
1075{
1076 *size += xt_compat_match_offset(m->u.kernel.match);
1077 return 0;
1078}
1079
1080static int compat_calc_entry(struct ip6t_entry *e,
1081 const struct xt_table_info *info,
1082 void *base, struct xt_table_info *newinfo)
1083{
1084 struct ip6t_entry_target *t;
1085 unsigned int entry_offset;
1086 int off, i, ret;
1087
1088 off = sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1089 entry_offset = (void *)e - base;
1090 IP6T_MATCH_ITERATE(e, compat_calc_match, &off);
1091 t = ip6t_get_target(e);
1092 off += xt_compat_target_offset(t->u.kernel.target);
1093 newinfo->size -= off;
1094 ret = xt_compat_add_offset(AF_INET6, entry_offset, off);
1095 if (ret)
1096 return ret;
1097
1098 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1099 if (info->hook_entry[i] &&
1100 (e < (struct ip6t_entry *)(base + info->hook_entry[i])))
1101 newinfo->hook_entry[i] -= off;
1102 if (info->underflow[i] &&
1103 (e < (struct ip6t_entry *)(base + info->underflow[i])))
1104 newinfo->underflow[i] -= off;
1105 }
1106 return 0;
1107}
1108
1109static int compat_table_info(const struct xt_table_info *info,
1110 struct xt_table_info *newinfo)
1111{
1112 void *loc_cpu_entry;
1113
1114 if (!newinfo || !info)
1115 return -EINVAL;
1116
1117 /* we dont care about newinfo->entries[] */
1118 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1119 newinfo->initial_entries = 0;
1120 loc_cpu_entry = info->entries[raw_smp_processor_id()];
1121 return IP6T_ENTRY_ITERATE(loc_cpu_entry, info->size,
1122 compat_calc_entry, info, loc_cpu_entry,
1123 newinfo);
1124}
1125#endif
1126
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001127static int get_info(struct net *net, void __user *user, int *len, int compat)
Patrick McHardy433665c2007-12-17 21:50:05 -08001128{
1129 char name[IP6T_TABLE_MAXNAMELEN];
1130 struct xt_table *t;
1131 int ret;
1132
1133 if (*len != sizeof(struct ip6t_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001134 duprintf("length %u != %zu\n", *len,
Patrick McHardy433665c2007-12-17 21:50:05 -08001135 sizeof(struct ip6t_getinfo));
1136 return -EINVAL;
1137 }
1138
1139 if (copy_from_user(name, user, sizeof(name)) != 0)
1140 return -EFAULT;
1141
1142 name[IP6T_TABLE_MAXNAMELEN-1] = '\0';
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001143#ifdef CONFIG_COMPAT
1144 if (compat)
1145 xt_compat_lock(AF_INET6);
1146#endif
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001147 t = try_then_request_module(xt_find_table_lock(net, AF_INET6, name),
Patrick McHardy433665c2007-12-17 21:50:05 -08001148 "ip6table_%s", name);
1149 if (t && !IS_ERR(t)) {
1150 struct ip6t_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001151 const struct xt_table_info *private = t->private;
Patrick McHardy433665c2007-12-17 21:50:05 -08001152
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001153#ifdef CONFIG_COMPAT
1154 if (compat) {
1155 struct xt_table_info tmp;
1156 ret = compat_table_info(private, &tmp);
1157 xt_compat_flush_offsets(AF_INET6);
1158 private = &tmp;
1159 }
1160#endif
Patrick McHardy433665c2007-12-17 21:50:05 -08001161 info.valid_hooks = t->valid_hooks;
1162 memcpy(info.hook_entry, private->hook_entry,
1163 sizeof(info.hook_entry));
1164 memcpy(info.underflow, private->underflow,
1165 sizeof(info.underflow));
1166 info.num_entries = private->number;
1167 info.size = private->size;
Patrick McHardyb5dd6742007-12-17 21:52:35 -08001168 strcpy(info.name, name);
Patrick McHardy433665c2007-12-17 21:50:05 -08001169
1170 if (copy_to_user(user, &info, *len) != 0)
1171 ret = -EFAULT;
1172 else
1173 ret = 0;
1174
1175 xt_table_unlock(t);
1176 module_put(t->me);
1177 } else
1178 ret = t ? PTR_ERR(t) : -ENOENT;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001179#ifdef CONFIG_COMPAT
1180 if (compat)
1181 xt_compat_unlock(AF_INET6);
1182#endif
Patrick McHardy433665c2007-12-17 21:50:05 -08001183 return ret;
1184}
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001187get_entries(struct net *net, struct ip6t_get_entries __user *uptr, int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188{
1189 int ret;
Patrick McHardyd9243572007-12-17 21:50:22 -08001190 struct ip6t_get_entries get;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001191 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Patrick McHardyd9243572007-12-17 21:50:22 -08001193 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001194 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Patrick McHardyd9243572007-12-17 21:50:22 -08001195 return -EINVAL;
1196 }
1197 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1198 return -EFAULT;
1199 if (*len != sizeof(struct ip6t_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001200 duprintf("get_entries: %u != %zu\n",
1201 *len, sizeof(get) + get.size);
Patrick McHardyd9243572007-12-17 21:50:22 -08001202 return -EINVAL;
1203 }
1204
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001205 t = xt_find_table_lock(net, AF_INET6, get.name);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001206 if (t && !IS_ERR(t)) {
Harald Welte2e4e6a12006-01-12 13:30:04 -08001207 struct xt_table_info *private = t->private;
1208 duprintf("t->private->number = %u\n", private->number);
Patrick McHardyd9243572007-12-17 21:50:22 -08001209 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001210 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 t, uptr->entrytable);
1212 else {
1213 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001214 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001215 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
Harald Welte6b7d31f2005-10-26 09:34:24 +02001217 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001218 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 } else
Harald Welte6b7d31f2005-10-26 09:34:24 +02001220 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 return ret;
1223}
1224
1225static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001226__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001227 struct xt_table_info *newinfo, unsigned int num_counters,
1228 void __user *counters_ptr)
1229{
1230 int ret;
1231 struct xt_table *t;
1232 struct xt_table_info *oldinfo;
1233 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001234 const void *loc_cpu_old_entry;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001235
1236 ret = 0;
1237 counters = vmalloc_node(num_counters * sizeof(struct xt_counters),
1238 numa_node_id());
1239 if (!counters) {
1240 ret = -ENOMEM;
1241 goto out;
1242 }
1243
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001244 t = try_then_request_module(xt_find_table_lock(net, AF_INET6, name),
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001245 "ip6table_%s", name);
1246 if (!t || IS_ERR(t)) {
1247 ret = t ? PTR_ERR(t) : -ENOENT;
1248 goto free_newinfo_counters_untrans;
1249 }
1250
1251 /* You lied! */
1252 if (valid_hooks != t->valid_hooks) {
1253 duprintf("Valid hook crap: %08X vs %08X\n",
1254 valid_hooks, t->valid_hooks);
1255 ret = -EINVAL;
1256 goto put_module;
1257 }
1258
1259 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1260 if (!oldinfo)
1261 goto put_module;
1262
1263 /* Update module usage count based on number of rules */
1264 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1265 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1266 if ((oldinfo->number > oldinfo->initial_entries) ||
1267 (newinfo->number <= oldinfo->initial_entries))
1268 module_put(t->me);
1269 if ((oldinfo->number > oldinfo->initial_entries) &&
1270 (newinfo->number <= oldinfo->initial_entries))
1271 module_put(t->me);
1272
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001273 /* Get the old counters, and synchronize with replace */
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001274 get_counters(oldinfo, counters);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001275
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001276 /* Decrease module usage counts and free resource */
1277 loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
1278 IP6T_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry,
1279 NULL);
1280 xt_free_table_info(oldinfo);
1281 if (copy_to_user(counters_ptr, counters,
1282 sizeof(struct xt_counters) * num_counters) != 0)
1283 ret = -EFAULT;
1284 vfree(counters);
1285 xt_table_unlock(t);
1286 return ret;
1287
1288 put_module:
1289 module_put(t->me);
1290 xt_table_unlock(t);
1291 free_newinfo_counters_untrans:
1292 vfree(counters);
1293 out:
1294 return ret;
1295}
1296
1297static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001298do_replace(struct net *net, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
1300 int ret;
1301 struct ip6t_replace tmp;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001302 struct xt_table_info *newinfo;
1303 void *loc_cpu_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1306 return -EFAULT;
1307
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001308 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001309 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1310 return -ENOMEM;
1311
Harald Welte2e4e6a12006-01-12 13:30:04 -08001312 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 if (!newinfo)
1314 return -ENOMEM;
1315
Eric Dumazet31836062005-12-13 23:13:48 -08001316 /* choose the copy that is on our node/cpu */
1317 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1318 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 tmp.size) != 0) {
1320 ret = -EFAULT;
1321 goto free_newinfo;
1322 }
1323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 ret = translate_table(tmp.name, tmp.valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08001325 newinfo, loc_cpu_entry, tmp.size, tmp.num_entries,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 tmp.hook_entry, tmp.underflow);
1327 if (ret != 0)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001328 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330 duprintf("ip_tables: Translated table\n");
1331
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001332 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001333 tmp.num_counters, tmp.counters);
1334 if (ret)
1335 goto free_newinfo_untrans;
1336 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001338 free_newinfo_untrans:
1339 IP6T_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001341 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 return ret;
1343}
1344
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001345/* We're lazy, and add to the first CPU; overflow works its fey magic
1346 * and everything is OK. */
1347static int
1348add_counter_to_entry(struct ip6t_entry *e,
1349 const struct xt_counters addme[],
1350 unsigned int *i)
1351{
1352 ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt);
1353
1354 (*i)++;
1355 return 0;
1356}
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001359do_add_counters(struct net *net, void __user *user, unsigned int len,
1360 int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361{
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001362 unsigned int i, curcpu;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001363 struct xt_counters_info tmp;
1364 struct xt_counters *paddc;
1365 unsigned int num_counters;
1366 char *name;
1367 int size;
1368 void *ptmp;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001369 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001370 const struct xt_table_info *private;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001371 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001372 const void *loc_cpu_entry;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001373#ifdef CONFIG_COMPAT
1374 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001376 if (compat) {
1377 ptmp = &compat_tmp;
1378 size = sizeof(struct compat_xt_counters_info);
1379 } else
1380#endif
1381 {
1382 ptmp = &tmp;
1383 size = sizeof(struct xt_counters_info);
1384 }
1385
1386 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 return -EFAULT;
1388
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001389#ifdef CONFIG_COMPAT
1390 if (compat) {
1391 num_counters = compat_tmp.num_counters;
1392 name = compat_tmp.name;
1393 } else
1394#endif
1395 {
1396 num_counters = tmp.num_counters;
1397 name = tmp.name;
1398 }
1399
1400 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 return -EINVAL;
1402
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001403 paddc = vmalloc_node(len - size, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 if (!paddc)
1405 return -ENOMEM;
1406
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001407 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 ret = -EFAULT;
1409 goto free;
1410 }
1411
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001412 t = xt_find_table_lock(net, AF_INET6, name);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001413 if (!t || IS_ERR(t)) {
1414 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 goto free;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001418
1419 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001420 private = t->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001421 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 ret = -EINVAL;
1423 goto unlock_up_free;
1424 }
1425
1426 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001427 /* Choose the copy that is on our node */
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001428 curcpu = smp_processor_id();
1429 xt_info_wrlock(curcpu);
1430 loc_cpu_entry = private->entries[curcpu];
Eric Dumazet31836062005-12-13 23:13:48 -08001431 IP6T_ENTRY_ITERATE(loc_cpu_entry,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001432 private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 add_counter_to_entry,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001434 paddc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 &i);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001436 xt_info_wrunlock(curcpu);
1437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 unlock_up_free:
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001439 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001440 xt_table_unlock(t);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001441 module_put(t->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 free:
1443 vfree(paddc);
1444
1445 return ret;
1446}
1447
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001448#ifdef CONFIG_COMPAT
1449struct compat_ip6t_replace {
1450 char name[IP6T_TABLE_MAXNAMELEN];
1451 u32 valid_hooks;
1452 u32 num_entries;
1453 u32 size;
1454 u32 hook_entry[NF_INET_NUMHOOKS];
1455 u32 underflow[NF_INET_NUMHOOKS];
1456 u32 num_counters;
1457 compat_uptr_t counters; /* struct ip6t_counters * */
1458 struct compat_ip6t_entry entries[0];
1459};
1460
1461static int
1462compat_copy_entry_to_user(struct ip6t_entry *e, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001463 unsigned int *size, struct xt_counters *counters,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001464 unsigned int *i)
1465{
1466 struct ip6t_entry_target *t;
1467 struct compat_ip6t_entry __user *ce;
1468 u_int16_t target_offset, next_offset;
1469 compat_uint_t origsize;
1470 int ret;
1471
1472 ret = -EFAULT;
1473 origsize = *size;
1474 ce = (struct compat_ip6t_entry __user *)*dstptr;
1475 if (copy_to_user(ce, e, sizeof(struct ip6t_entry)))
1476 goto out;
1477
1478 if (copy_to_user(&ce->counters, &counters[*i], sizeof(counters[*i])))
1479 goto out;
1480
1481 *dstptr += sizeof(struct compat_ip6t_entry);
1482 *size -= sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1483
1484 ret = IP6T_MATCH_ITERATE(e, xt_compat_match_to_user, dstptr, size);
1485 target_offset = e->target_offset - (origsize - *size);
1486 if (ret)
1487 goto out;
1488 t = ip6t_get_target(e);
1489 ret = xt_compat_target_to_user(t, dstptr, size);
1490 if (ret)
1491 goto out;
1492 ret = -EFAULT;
1493 next_offset = e->next_offset - (origsize - *size);
1494 if (put_user(target_offset, &ce->target_offset))
1495 goto out;
1496 if (put_user(next_offset, &ce->next_offset))
1497 goto out;
1498
1499 (*i)++;
1500 return 0;
1501out:
1502 return ret;
1503}
1504
Denys Vlasenko022748a2008-01-14 23:44:05 -08001505static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001506compat_find_calc_match(struct ip6t_entry_match *m,
1507 const char *name,
1508 const struct ip6t_ip6 *ipv6,
1509 unsigned int hookmask,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001510 int *size, unsigned int *i)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001511{
1512 struct xt_match *match;
1513
1514 match = try_then_request_module(xt_find_match(AF_INET6, m->u.user.name,
1515 m->u.user.revision),
1516 "ip6t_%s", m->u.user.name);
1517 if (IS_ERR(match) || !match) {
1518 duprintf("compat_check_calc_match: `%s' not found\n",
1519 m->u.user.name);
1520 return match ? PTR_ERR(match) : -ENOENT;
1521 }
1522 m->u.kernel.match = match;
1523 *size += xt_compat_match_offset(match);
1524
1525 (*i)++;
1526 return 0;
1527}
1528
Denys Vlasenko022748a2008-01-14 23:44:05 -08001529static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001530compat_release_match(struct ip6t_entry_match *m, unsigned int *i)
1531{
1532 if (i && (*i)-- == 0)
1533 return 1;
1534
1535 module_put(m->u.kernel.match->me);
1536 return 0;
1537}
1538
Denys Vlasenko022748a2008-01-14 23:44:05 -08001539static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001540compat_release_entry(struct compat_ip6t_entry *e, unsigned int *i)
1541{
1542 struct ip6t_entry_target *t;
1543
1544 if (i && (*i)-- == 0)
1545 return 1;
1546
1547 /* Cleanup all matches */
1548 COMPAT_IP6T_MATCH_ITERATE(e, compat_release_match, NULL);
1549 t = compat_ip6t_get_target(e);
1550 module_put(t->u.kernel.target->me);
1551 return 0;
1552}
1553
Denys Vlasenko022748a2008-01-14 23:44:05 -08001554static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001555check_compat_entry_size_and_hooks(struct compat_ip6t_entry *e,
1556 struct xt_table_info *newinfo,
1557 unsigned int *size,
1558 unsigned char *base,
1559 unsigned char *limit,
1560 unsigned int *hook_entries,
1561 unsigned int *underflows,
1562 unsigned int *i,
1563 const char *name)
1564{
1565 struct ip6t_entry_target *t;
1566 struct xt_target *target;
1567 unsigned int entry_offset;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001568 unsigned int j;
1569 int ret, off, h;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001570
1571 duprintf("check_compat_entry_size_and_hooks %p\n", e);
1572 if ((unsigned long)e % __alignof__(struct compat_ip6t_entry) != 0
1573 || (unsigned char *)e + sizeof(struct compat_ip6t_entry) >= limit) {
1574 duprintf("Bad offset %p, limit = %p\n", e, limit);
1575 return -EINVAL;
1576 }
1577
1578 if (e->next_offset < sizeof(struct compat_ip6t_entry) +
1579 sizeof(struct compat_xt_entry_target)) {
1580 duprintf("checking: element %p size %u\n",
1581 e, e->next_offset);
1582 return -EINVAL;
1583 }
1584
1585 /* For purposes of check_entry casting the compat entry is fine */
1586 ret = check_entry((struct ip6t_entry *)e, name);
1587 if (ret)
1588 return ret;
1589
1590 off = sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1591 entry_offset = (void *)e - (void *)base;
1592 j = 0;
1593 ret = COMPAT_IP6T_MATCH_ITERATE(e, compat_find_calc_match, name,
1594 &e->ipv6, e->comefrom, &off, &j);
1595 if (ret != 0)
1596 goto release_matches;
1597
1598 t = compat_ip6t_get_target(e);
1599 target = try_then_request_module(xt_find_target(AF_INET6,
1600 t->u.user.name,
1601 t->u.user.revision),
1602 "ip6t_%s", t->u.user.name);
1603 if (IS_ERR(target) || !target) {
1604 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
1605 t->u.user.name);
1606 ret = target ? PTR_ERR(target) : -ENOENT;
1607 goto release_matches;
1608 }
1609 t->u.kernel.target = target;
1610
1611 off += xt_compat_target_offset(target);
1612 *size += off;
1613 ret = xt_compat_add_offset(AF_INET6, entry_offset, off);
1614 if (ret)
1615 goto out;
1616
1617 /* Check hooks & underflows */
1618 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
1619 if ((unsigned char *)e - base == hook_entries[h])
1620 newinfo->hook_entry[h] = hook_entries[h];
1621 if ((unsigned char *)e - base == underflows[h])
1622 newinfo->underflow[h] = underflows[h];
1623 }
1624
1625 /* Clear counters and comefrom */
1626 memset(&e->counters, 0, sizeof(e->counters));
1627 e->comefrom = 0;
1628
1629 (*i)++;
1630 return 0;
1631
1632out:
1633 module_put(t->u.kernel.target->me);
1634release_matches:
1635 IP6T_MATCH_ITERATE(e, compat_release_match, &j);
1636 return ret;
1637}
1638
1639static int
1640compat_copy_entry_from_user(struct compat_ip6t_entry *e, void **dstptr,
1641 unsigned int *size, const char *name,
1642 struct xt_table_info *newinfo, unsigned char *base)
1643{
1644 struct ip6t_entry_target *t;
1645 struct xt_target *target;
1646 struct ip6t_entry *de;
1647 unsigned int origsize;
1648 int ret, h;
1649
1650 ret = 0;
1651 origsize = *size;
1652 de = (struct ip6t_entry *)*dstptr;
1653 memcpy(de, e, sizeof(struct ip6t_entry));
1654 memcpy(&de->counters, &e->counters, sizeof(e->counters));
1655
1656 *dstptr += sizeof(struct ip6t_entry);
1657 *size += sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1658
1659 ret = COMPAT_IP6T_MATCH_ITERATE(e, xt_compat_match_from_user,
1660 dstptr, size);
1661 if (ret)
1662 return ret;
1663 de->target_offset = e->target_offset - (origsize - *size);
1664 t = compat_ip6t_get_target(e);
1665 target = t->u.kernel.target;
1666 xt_compat_target_from_user(t, dstptr, size);
1667
1668 de->next_offset = e->next_offset - (origsize - *size);
1669 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
1670 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1671 newinfo->hook_entry[h] -= origsize - *size;
1672 if ((unsigned char *)de - base < newinfo->underflow[h])
1673 newinfo->underflow[h] -= origsize - *size;
1674 }
1675 return ret;
1676}
1677
Denys Vlasenko022748a2008-01-14 23:44:05 -08001678static int compat_check_entry(struct ip6t_entry *e, const char *name,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001679 unsigned int *i)
1680{
Patrick McHardyb0a63632008-01-31 04:10:18 -08001681 unsigned int j;
1682 int ret;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001683 struct xt_mtchk_param mtpar;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001684
1685 j = 0;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001686 mtpar.table = name;
1687 mtpar.entryinfo = &e->ipv6;
1688 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +02001689 mtpar.family = NFPROTO_IPV6;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001690 ret = IP6T_MATCH_ITERATE(e, check_match, &mtpar, &j);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001691 if (ret)
1692 goto cleanup_matches;
1693
1694 ret = check_target(e, name);
1695 if (ret)
1696 goto cleanup_matches;
1697
1698 (*i)++;
1699 return 0;
1700
1701 cleanup_matches:
1702 IP6T_MATCH_ITERATE(e, cleanup_match, &j);
1703 return ret;
1704}
1705
1706static int
1707translate_compat_table(const char *name,
1708 unsigned int valid_hooks,
1709 struct xt_table_info **pinfo,
1710 void **pentry0,
1711 unsigned int total_size,
1712 unsigned int number,
1713 unsigned int *hook_entries,
1714 unsigned int *underflows)
1715{
1716 unsigned int i, j;
1717 struct xt_table_info *newinfo, *info;
1718 void *pos, *entry0, *entry1;
1719 unsigned int size;
1720 int ret;
1721
1722 info = *pinfo;
1723 entry0 = *pentry0;
1724 size = total_size;
1725 info->number = number;
1726
1727 /* Init all hooks to impossible value. */
1728 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1729 info->hook_entry[i] = 0xFFFFFFFF;
1730 info->underflow[i] = 0xFFFFFFFF;
1731 }
1732
1733 duprintf("translate_compat_table: size %u\n", info->size);
1734 j = 0;
1735 xt_compat_lock(AF_INET6);
1736 /* Walk through entries, checking offsets. */
1737 ret = COMPAT_IP6T_ENTRY_ITERATE(entry0, total_size,
1738 check_compat_entry_size_and_hooks,
1739 info, &size, entry0,
1740 entry0 + total_size,
1741 hook_entries, underflows, &j, name);
1742 if (ret != 0)
1743 goto out_unlock;
1744
1745 ret = -EINVAL;
1746 if (j != number) {
1747 duprintf("translate_compat_table: %u not %u entries\n",
1748 j, number);
1749 goto out_unlock;
1750 }
1751
1752 /* Check hooks all assigned */
1753 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1754 /* Only hooks which are valid */
1755 if (!(valid_hooks & (1 << i)))
1756 continue;
1757 if (info->hook_entry[i] == 0xFFFFFFFF) {
1758 duprintf("Invalid hook entry %u %u\n",
1759 i, hook_entries[i]);
1760 goto out_unlock;
1761 }
1762 if (info->underflow[i] == 0xFFFFFFFF) {
1763 duprintf("Invalid underflow %u %u\n",
1764 i, underflows[i]);
1765 goto out_unlock;
1766 }
1767 }
1768
1769 ret = -ENOMEM;
1770 newinfo = xt_alloc_table_info(size);
1771 if (!newinfo)
1772 goto out_unlock;
1773
1774 newinfo->number = number;
1775 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1776 newinfo->hook_entry[i] = info->hook_entry[i];
1777 newinfo->underflow[i] = info->underflow[i];
1778 }
1779 entry1 = newinfo->entries[raw_smp_processor_id()];
1780 pos = entry1;
1781 size = total_size;
1782 ret = COMPAT_IP6T_ENTRY_ITERATE(entry0, total_size,
1783 compat_copy_entry_from_user,
1784 &pos, &size, name, newinfo, entry1);
1785 xt_compat_flush_offsets(AF_INET6);
1786 xt_compat_unlock(AF_INET6);
1787 if (ret)
1788 goto free_newinfo;
1789
1790 ret = -ELOOP;
1791 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1792 goto free_newinfo;
1793
1794 i = 0;
1795 ret = IP6T_ENTRY_ITERATE(entry1, newinfo->size, compat_check_entry,
1796 name, &i);
1797 if (ret) {
1798 j -= i;
1799 COMPAT_IP6T_ENTRY_ITERATE_CONTINUE(entry0, newinfo->size, i,
1800 compat_release_entry, &j);
1801 IP6T_ENTRY_ITERATE(entry1, newinfo->size, cleanup_entry, &i);
1802 xt_free_table_info(newinfo);
1803 return ret;
1804 }
1805
1806 /* And one copy for every other CPU */
1807 for_each_possible_cpu(i)
1808 if (newinfo->entries[i] && newinfo->entries[i] != entry1)
1809 memcpy(newinfo->entries[i], entry1, newinfo->size);
1810
1811 *pinfo = newinfo;
1812 *pentry0 = entry1;
1813 xt_free_table_info(info);
1814 return 0;
1815
1816free_newinfo:
1817 xt_free_table_info(newinfo);
1818out:
1819 COMPAT_IP6T_ENTRY_ITERATE(entry0, total_size, compat_release_entry, &j);
1820 return ret;
1821out_unlock:
1822 xt_compat_flush_offsets(AF_INET6);
1823 xt_compat_unlock(AF_INET6);
1824 goto out;
1825}
1826
1827static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001828compat_do_replace(struct net *net, void __user *user, unsigned int len)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001829{
1830 int ret;
1831 struct compat_ip6t_replace tmp;
1832 struct xt_table_info *newinfo;
1833 void *loc_cpu_entry;
1834
1835 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1836 return -EFAULT;
1837
1838 /* overflow check */
1839 if (tmp.size >= INT_MAX / num_possible_cpus())
1840 return -ENOMEM;
1841 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1842 return -ENOMEM;
1843
1844 newinfo = xt_alloc_table_info(tmp.size);
1845 if (!newinfo)
1846 return -ENOMEM;
1847
Patrick McHardy9c547952007-12-17 21:52:00 -08001848 /* choose the copy that is on our node/cpu */
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001849 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1850 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1851 tmp.size) != 0) {
1852 ret = -EFAULT;
1853 goto free_newinfo;
1854 }
1855
1856 ret = translate_compat_table(tmp.name, tmp.valid_hooks,
1857 &newinfo, &loc_cpu_entry, tmp.size,
1858 tmp.num_entries, tmp.hook_entry,
1859 tmp.underflow);
1860 if (ret != 0)
1861 goto free_newinfo;
1862
1863 duprintf("compat_do_replace: Translated table\n");
1864
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001865 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001866 tmp.num_counters, compat_ptr(tmp.counters));
1867 if (ret)
1868 goto free_newinfo_untrans;
1869 return 0;
1870
1871 free_newinfo_untrans:
1872 IP6T_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
1873 free_newinfo:
1874 xt_free_table_info(newinfo);
1875 return ret;
1876}
1877
1878static int
1879compat_do_ip6t_set_ctl(struct sock *sk, int cmd, void __user *user,
1880 unsigned int len)
1881{
1882 int ret;
1883
1884 if (!capable(CAP_NET_ADMIN))
1885 return -EPERM;
1886
1887 switch (cmd) {
1888 case IP6T_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001889 ret = compat_do_replace(sock_net(sk), user, len);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001890 break;
1891
1892 case IP6T_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001893 ret = do_add_counters(sock_net(sk), user, len, 1);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001894 break;
1895
1896 default:
1897 duprintf("do_ip6t_set_ctl: unknown request %i\n", cmd);
1898 ret = -EINVAL;
1899 }
1900
1901 return ret;
1902}
1903
1904struct compat_ip6t_get_entries {
1905 char name[IP6T_TABLE_MAXNAMELEN];
1906 compat_uint_t size;
1907 struct compat_ip6t_entry entrytable[0];
1908};
1909
1910static int
1911compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1912 void __user *userptr)
1913{
1914 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001915 const struct xt_table_info *private = table->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001916 void __user *pos;
1917 unsigned int size;
1918 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001919 const void *loc_cpu_entry;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001920 unsigned int i = 0;
1921
1922 counters = alloc_counters(table);
1923 if (IS_ERR(counters))
1924 return PTR_ERR(counters);
1925
1926 /* choose the copy that is on our node/cpu, ...
1927 * This choice is lazy (because current thread is
1928 * allowed to migrate to another cpu)
1929 */
1930 loc_cpu_entry = private->entries[raw_smp_processor_id()];
1931 pos = userptr;
1932 size = total_size;
1933 ret = IP6T_ENTRY_ITERATE(loc_cpu_entry, total_size,
1934 compat_copy_entry_to_user,
1935 &pos, &size, counters, &i);
1936
1937 vfree(counters);
1938 return ret;
1939}
1940
1941static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001942compat_get_entries(struct net *net, struct compat_ip6t_get_entries __user *uptr,
1943 int *len)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001944{
1945 int ret;
1946 struct compat_ip6t_get_entries get;
1947 struct xt_table *t;
1948
1949 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001950 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001951 return -EINVAL;
1952 }
1953
1954 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1955 return -EFAULT;
1956
1957 if (*len != sizeof(struct compat_ip6t_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001958 duprintf("compat_get_entries: %u != %zu\n",
1959 *len, sizeof(get) + get.size);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001960 return -EINVAL;
1961 }
1962
1963 xt_compat_lock(AF_INET6);
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001964 t = xt_find_table_lock(net, AF_INET6, get.name);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001965 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001966 const struct xt_table_info *private = t->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001967 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08001968 duprintf("t->private->number = %u\n", private->number);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001969 ret = compat_table_info(private, &info);
1970 if (!ret && get.size == info.size) {
1971 ret = compat_copy_entries_to_user(private->size,
1972 t, uptr->entrytable);
1973 } else if (!ret) {
1974 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001975 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001976 ret = -EAGAIN;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001977 }
1978 xt_compat_flush_offsets(AF_INET6);
1979 module_put(t->me);
1980 xt_table_unlock(t);
1981 } else
1982 ret = t ? PTR_ERR(t) : -ENOENT;
1983
1984 xt_compat_unlock(AF_INET6);
1985 return ret;
1986}
1987
1988static int do_ip6t_get_ctl(struct sock *, int, void __user *, int *);
1989
1990static int
1991compat_do_ip6t_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1992{
1993 int ret;
1994
1995 if (!capable(CAP_NET_ADMIN))
1996 return -EPERM;
1997
1998 switch (cmd) {
1999 case IP6T_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002000 ret = get_info(sock_net(sk), user, len, 1);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002001 break;
2002 case IP6T_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002003 ret = compat_get_entries(sock_net(sk), user, len);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002004 break;
2005 default:
2006 ret = do_ip6t_get_ctl(sk, cmd, user, len);
2007 }
2008 return ret;
2009}
2010#endif
2011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012static int
2013do_ip6t_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
2014{
2015 int ret;
2016
2017 if (!capable(CAP_NET_ADMIN))
2018 return -EPERM;
2019
2020 switch (cmd) {
2021 case IP6T_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002022 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 break;
2024
2025 case IP6T_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002026 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 break;
2028
2029 default:
2030 duprintf("do_ip6t_set_ctl: unknown request %i\n", cmd);
2031 ret = -EINVAL;
2032 }
2033
2034 return ret;
2035}
2036
2037static int
2038do_ip6t_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2039{
2040 int ret;
2041
2042 if (!capable(CAP_NET_ADMIN))
2043 return -EPERM;
2044
2045 switch (cmd) {
Patrick McHardy433665c2007-12-17 21:50:05 -08002046 case IP6T_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002047 ret = get_info(sock_net(sk), user, len, 0);
Patrick McHardy433665c2007-12-17 21:50:05 -08002048 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Patrick McHardyd9243572007-12-17 21:50:22 -08002050 case IP6T_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002051 ret = get_entries(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Harald Welte6b7d31f2005-10-26 09:34:24 +02002054 case IP6T_SO_GET_REVISION_MATCH:
2055 case IP6T_SO_GET_REVISION_TARGET: {
2056 struct ip6t_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002057 int target;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002058
2059 if (*len != sizeof(rev)) {
2060 ret = -EINVAL;
2061 break;
2062 }
2063 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2064 ret = -EFAULT;
2065 break;
2066 }
2067
2068 if (cmd == IP6T_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08002069 target = 1;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002070 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08002071 target = 0;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002072
Harald Welte2e4e6a12006-01-12 13:30:04 -08002073 try_then_request_module(xt_find_revision(AF_INET6, rev.name,
2074 rev.revision,
2075 target, &ret),
Harald Welte6b7d31f2005-10-26 09:34:24 +02002076 "ip6t_%s", rev.name);
2077 break;
2078 }
2079
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 default:
2081 duprintf("do_ip6t_get_ctl: unknown request %i\n", cmd);
2082 ret = -EINVAL;
2083 }
2084
2085 return ret;
2086}
2087
Alexey Dobriyan336b5172008-01-31 04:03:45 -08002088struct xt_table *ip6t_register_table(struct net *net, struct xt_table *table,
2089 const struct ip6t_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090{
2091 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002092 struct xt_table_info *newinfo;
Eric Dumazet259d4e42007-12-04 23:24:56 -08002093 struct xt_table_info bootstrap
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 = { 0, 0, 0, { 0 }, { 0 }, { } };
Eric Dumazet31836062005-12-13 23:13:48 -08002095 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08002096 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
Harald Welte2e4e6a12006-01-12 13:30:04 -08002098 newinfo = xt_alloc_table_info(repl->size);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002099 if (!newinfo) {
2100 ret = -ENOMEM;
2101 goto out;
2102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Patrick McHardy9c547952007-12-17 21:52:00 -08002104 /* choose the copy on our node/cpu, but dont care about preemption */
Eric Dumazet31836062005-12-13 23:13:48 -08002105 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
2106 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
2108 ret = translate_table(table->name, table->valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08002109 newinfo, loc_cpu_entry, repl->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 repl->num_entries,
2111 repl->hook_entry,
2112 repl->underflow);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002113 if (ret != 0)
2114 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
Alexey Dobriyan336b5172008-01-31 04:03:45 -08002116 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08002117 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002118 ret = PTR_ERR(new_table);
2119 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 }
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002121 return new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002123out_free:
2124 xt_free_table_info(newinfo);
2125out:
2126 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127}
2128
Harald Welte2e4e6a12006-01-12 13:30:04 -08002129void ip6t_unregister_table(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
Harald Welte2e4e6a12006-01-12 13:30:04 -08002131 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08002132 void *loc_cpu_entry;
Alexey Dobriyandf200962008-01-31 04:05:34 -08002133 struct module *table_owner = table->me;
Eric Dumazet31836062005-12-13 23:13:48 -08002134
Harald Welte2e4e6a12006-01-12 13:30:04 -08002135 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
2137 /* Decrease module usage counts and free resources */
Harald Welte2e4e6a12006-01-12 13:30:04 -08002138 loc_cpu_entry = private->entries[raw_smp_processor_id()];
2139 IP6T_ENTRY_ITERATE(loc_cpu_entry, private->size, cleanup_entry, NULL);
Alexey Dobriyandf200962008-01-31 04:05:34 -08002140 if (private->number > private->initial_entries)
2141 module_put(table_owner);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002142 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143}
2144
2145/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardtccb79bd2007-07-07 22:16:00 -07002146static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147icmp6_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2148 u_int8_t type, u_int8_t code,
Jan Engelhardtccb79bd2007-07-07 22:16:00 -07002149 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150{
2151 return (type == test_type && code >= min_code && code <= max_code)
2152 ^ invert;
2153}
2154
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002155static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002156icmp6_match(const struct sk_buff *skb, const struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157{
Jan Engelhardt5452e422008-04-14 11:15:35 +02002158 const struct icmp6hdr *ic;
2159 struct icmp6hdr _icmph;
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002160 const struct ip6t_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
2162 /* Must not be a fragment. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002163 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002164 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002166 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 if (ic == NULL) {
2168 /* We've been asked to examine this packet, and we
Patrick McHardy9c547952007-12-17 21:52:00 -08002169 * can't. Hence, no choice but to drop.
2170 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002172 *par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002173 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 }
2175
2176 return icmp6_type_code_match(icmpinfo->type,
2177 icmpinfo->code[0],
2178 icmpinfo->code[1],
2179 ic->icmp6_type, ic->icmp6_code,
2180 !!(icmpinfo->invflags&IP6T_ICMP_INV));
2181}
2182
2183/* Called when user tries to insert an entry of this type. */
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002184static bool icmp6_checkentry(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002186 const struct ip6t_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
Patrick McHardy7f939712006-03-20 18:01:43 -08002188 /* Must specify no unknown invflags */
2189 return !(icmpinfo->invflags & ~IP6T_ICMP_INV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190}
2191
2192/* The built-in targets: standard (NULL) and error. */
Patrick McHardy9f15c532007-07-07 22:22:02 -07002193static struct xt_target ip6t_standard_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 .name = IP6T_STANDARD_TARGET,
Patrick McHardy7f939712006-03-20 18:01:43 -08002195 .targetsize = sizeof(int),
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002196 .family = NFPROTO_IPV6,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002197#ifdef CONFIG_COMPAT
2198 .compatsize = sizeof(compat_int_t),
2199 .compat_from_user = compat_standard_from_user,
2200 .compat_to_user = compat_standard_to_user,
2201#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202};
2203
Patrick McHardy9f15c532007-07-07 22:22:02 -07002204static struct xt_target ip6t_error_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 .name = IP6T_ERROR_TARGET,
2206 .target = ip6t_error,
Patrick McHardy7f939712006-03-20 18:01:43 -08002207 .targetsize = IP6T_FUNCTION_MAXNAMELEN,
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002208 .family = NFPROTO_IPV6,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209};
2210
2211static struct nf_sockopt_ops ip6t_sockopts = {
2212 .pf = PF_INET6,
2213 .set_optmin = IP6T_BASE_CTL,
2214 .set_optmax = IP6T_SO_SET_MAX+1,
2215 .set = do_ip6t_set_ctl,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002216#ifdef CONFIG_COMPAT
2217 .compat_set = compat_do_ip6t_set_ctl,
2218#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 .get_optmin = IP6T_BASE_CTL,
2220 .get_optmax = IP6T_SO_GET_MAX+1,
2221 .get = do_ip6t_get_ctl,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002222#ifdef CONFIG_COMPAT
2223 .compat_get = compat_do_ip6t_get_ctl,
2224#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002225 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226};
2227
Patrick McHardy9f15c532007-07-07 22:22:02 -07002228static struct xt_match icmp6_matchstruct __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 .name = "icmp6",
Patrick McHardy9c547952007-12-17 21:52:00 -08002230 .match = icmp6_match,
Patrick McHardy7f939712006-03-20 18:01:43 -08002231 .matchsize = sizeof(struct ip6t_icmp),
2232 .checkentry = icmp6_checkentry,
2233 .proto = IPPROTO_ICMPV6,
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002234 .family = NFPROTO_IPV6,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235};
2236
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002237static int __net_init ip6_tables_net_init(struct net *net)
2238{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002239 return xt_proto_init(net, NFPROTO_IPV6);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002240}
2241
2242static void __net_exit ip6_tables_net_exit(struct net *net)
2243{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002244 xt_proto_fini(net, NFPROTO_IPV6);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002245}
2246
2247static struct pernet_operations ip6_tables_net_ops = {
2248 .init = ip6_tables_net_init,
2249 .exit = ip6_tables_net_exit,
2250};
2251
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002252static int __init ip6_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253{
2254 int ret;
2255
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002256 ret = register_pernet_subsys(&ip6_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002257 if (ret < 0)
2258 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002259
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 /* Noone else will be downing sem now, so we won't sleep */
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002261 ret = xt_register_target(&ip6t_standard_target);
2262 if (ret < 0)
2263 goto err2;
2264 ret = xt_register_target(&ip6t_error_target);
2265 if (ret < 0)
2266 goto err3;
2267 ret = xt_register_match(&icmp6_matchstruct);
2268 if (ret < 0)
2269 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
2271 /* Register setsockopt */
2272 ret = nf_register_sockopt(&ip6t_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002273 if (ret < 0)
2274 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Patrick McHardya887c1c2007-07-14 20:46:15 -07002276 printk(KERN_INFO "ip6_tables: (C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002278
2279err5:
2280 xt_unregister_match(&icmp6_matchstruct);
2281err4:
2282 xt_unregister_target(&ip6t_error_target);
2283err3:
2284 xt_unregister_target(&ip6t_standard_target);
2285err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002286 unregister_pernet_subsys(&ip6_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002287err1:
2288 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289}
2290
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002291static void __exit ip6_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292{
2293 nf_unregister_sockopt(&ip6t_sockopts);
Patrick McHardy9c547952007-12-17 21:52:00 -08002294
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002295 xt_unregister_match(&icmp6_matchstruct);
2296 xt_unregister_target(&ip6t_error_target);
2297 xt_unregister_target(&ip6t_standard_target);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002298
2299 unregister_pernet_subsys(&ip6_tables_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300}
2301
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002302/*
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002303 * find the offset to specified header or the protocol number of last header
2304 * if target < 0. "last header" is transport protocol header, ESP, or
2305 * "No next header".
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002306 *
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002307 * If target header is found, its offset is set in *offset and return protocol
2308 * number. Otherwise, return -1.
2309 *
Patrick McHardy6d381632006-10-24 16:15:10 -07002310 * If the first fragment doesn't contain the final protocol header or
2311 * NEXTHDR_NONE it is considered invalid.
2312 *
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002313 * Note that non-1st fragment is special case that "the protocol number
2314 * of last header" is "next header" field in Fragment header. In this case,
2315 * *offset is meaningless and fragment offset is stored in *fragoff if fragoff
2316 * isn't NULL.
2317 *
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002318 */
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002319int ipv6_find_hdr(const struct sk_buff *skb, unsigned int *offset,
2320 int target, unsigned short *fragoff)
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002321{
Arnaldo Carvalho de Melo6b88dd92007-03-19 22:29:03 -03002322 unsigned int start = skb_network_offset(skb) + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002323 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002324 unsigned int len = skb->len - start;
2325
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002326 if (fragoff)
2327 *fragoff = 0;
2328
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002329 while (nexthdr != target) {
2330 struct ipv6_opt_hdr _hdr, *hp;
2331 unsigned int hdrlen;
2332
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002333 if ((!ipv6_ext_hdr(nexthdr)) || nexthdr == NEXTHDR_NONE) {
2334 if (target < 0)
2335 break;
Patrick McHardy6d381632006-10-24 16:15:10 -07002336 return -ENOENT;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002337 }
2338
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002339 hp = skb_header_pointer(skb, start, sizeof(_hdr), &_hdr);
2340 if (hp == NULL)
Patrick McHardy6d381632006-10-24 16:15:10 -07002341 return -EBADMSG;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002342 if (nexthdr == NEXTHDR_FRAGMENT) {
Al Viroe69a4adc2006-11-14 20:56:00 -08002343 unsigned short _frag_off;
2344 __be16 *fp;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002345 fp = skb_header_pointer(skb,
2346 start+offsetof(struct frag_hdr,
2347 frag_off),
2348 sizeof(_frag_off),
2349 &_frag_off);
2350 if (fp == NULL)
Patrick McHardy6d381632006-10-24 16:15:10 -07002351 return -EBADMSG;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002352
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002353 _frag_off = ntohs(*fp) & ~0x7;
2354 if (_frag_off) {
2355 if (target < 0 &&
2356 ((!ipv6_ext_hdr(hp->nexthdr)) ||
Patrick McHardy337dde72006-11-14 19:49:13 -08002357 hp->nexthdr == NEXTHDR_NONE)) {
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002358 if (fragoff)
2359 *fragoff = _frag_off;
2360 return hp->nexthdr;
2361 }
Patrick McHardy6d381632006-10-24 16:15:10 -07002362 return -ENOENT;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002363 }
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002364 hdrlen = 8;
2365 } else if (nexthdr == NEXTHDR_AUTH)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002366 hdrlen = (hp->hdrlen + 2) << 2;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002367 else
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002368 hdrlen = ipv6_optlen(hp);
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002369
2370 nexthdr = hp->nexthdr;
2371 len -= hdrlen;
2372 start += hdrlen;
2373 }
2374
2375 *offset = start;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002376 return nexthdr;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002377}
2378
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379EXPORT_SYMBOL(ip6t_register_table);
2380EXPORT_SYMBOL(ip6t_unregister_table);
2381EXPORT_SYMBOL(ip6t_do_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382EXPORT_SYMBOL(ip6t_ext_hdr);
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002383EXPORT_SYMBOL(ipv6_find_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002385module_init(ip6_tables_init);
2386module_exit(ip6_tables_fini);