blob: 94874b0bdcdcf9835fe0b0b53fd088c12db93305 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Packet matching code.
3 *
4 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
Harald Welte6b7d31f2005-10-26 09:34:24 +02005 * Copyright (C) 2000-2005 Netfilter Core Team <coreteam@netfilter.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +020011#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Randy Dunlap4fc268d2006-01-11 12:17:47 -080012#include <linux/capability.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020013#include <linux/in.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/skbuff.h>
15#include <linux/kmod.h>
16#include <linux/vmalloc.h>
17#include <linux/netdevice.h>
18#include <linux/module.h>
Randy Dunlap4bdbf6c2006-07-03 19:47:27 -070019#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/icmpv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <net/ipv6.h>
Patrick McHardy3bc3fe52007-12-17 21:50:37 -080022#include <net/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/uaccess.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -080024#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/proc_fs.h>
Patrick McHardy3bc3fe52007-12-17 21:50:37 -080026#include <linux/err.h>
David S. Millerc8923c62005-10-13 14:41:23 -070027#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include <linux/netfilter_ipv6/ip6_tables.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -080030#include <linux/netfilter/x_tables.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080031#include <net/netfilter/nf_log.h>
Jan Engelhardte3eaa992009-06-17 22:14:54 +020032#include "../../netfilter/xt_repldata.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34MODULE_LICENSE("GPL");
35MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
36MODULE_DESCRIPTION("IPv6 packet filter");
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038/*#define DEBUG_IP_FIREWALL*/
39/*#define DEBUG_ALLOW_ALL*/ /* Useful for remote debugging */
40/*#define DEBUG_IP_FIREWALL_USER*/
41
42#ifdef DEBUG_IP_FIREWALL
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010043#define dprintf(format, args...) pr_info(format , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#else
45#define dprintf(format, args...)
46#endif
47
48#ifdef DEBUG_IP_FIREWALL_USER
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010049#define duprintf(format, args...) pr_info(format , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#else
51#define duprintf(format, args...)
52#endif
53
54#ifdef CONFIG_NETFILTER_DEBUG
Stephen Hemmingeraf567602010-05-13 15:00:20 +020055#define IP_NF_ASSERT(x) WARN_ON(!(x))
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#else
57#define IP_NF_ASSERT(x)
58#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#if 0
61/* All the better to debug you with... */
62#define static
63#define inline
64#endif
65
Jan Engelhardte3eaa992009-06-17 22:14:54 +020066void *ip6t_alloc_initial_table(const struct xt_table *info)
67{
68 return xt_alloc_initial_table(ip6t, IP6T);
69}
70EXPORT_SYMBOL_GPL(ip6t_alloc_initial_table);
71
Harald Welte6b7d31f2005-10-26 09:34:24 +020072/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 We keep a set of rules for each CPU, so we can avoid write-locking
Harald Welte6b7d31f2005-10-26 09:34:24 +020074 them in the softirq when updating the counters and therefore
75 only need to read-lock in the softirq; doing a write_lock_bh() in user
76 context stops packets coming through and allows user context to read
77 the counters or update the rules.
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 Hence the start of any table is given by get_table() below. */
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/* Check for an extension */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090082int
Linus Torvalds1da177e2005-04-16 15:20:36 -070083ip6t_ext_hdr(u8 nexthdr)
84{
Eric Dumazeta02cec22010-09-22 20:43:57 +000085 return (nexthdr == IPPROTO_HOPOPTS) ||
86 (nexthdr == IPPROTO_ROUTING) ||
87 (nexthdr == IPPROTO_FRAGMENT) ||
88 (nexthdr == IPPROTO_ESP) ||
89 (nexthdr == IPPROTO_AH) ||
90 (nexthdr == IPPROTO_NONE) ||
91 (nexthdr == IPPROTO_DSTOPTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
94/* Returns whether matches rule or not. */
Denys Vlasenko022748a2008-01-14 23:44:05 -080095/* Performance critical - called for every packet */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070096static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -070097ip6_packet_match(const struct sk_buff *skb,
98 const char *indev,
99 const char *outdev,
100 const struct ip6t_ip6 *ip6info,
101 unsigned int *protoff,
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700102 int *fragoff, bool *hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 unsigned long ret;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700105 const struct ipv6hdr *ipv6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Jan Engelhardte79ec502007-12-17 22:44:06 -0800107#define FWINV(bool, invflg) ((bool) ^ !!(ip6info->invflags & (invflg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Patrick McHardyf2ffd9e2006-03-20 18:03:16 -0800109 if (FWINV(ipv6_masked_addr_cmp(&ipv6->saddr, &ip6info->smsk,
Joe Perches3666ed12009-11-23 23:17:06 +0100110 &ip6info->src), IP6T_INV_SRCIP) ||
111 FWINV(ipv6_masked_addr_cmp(&ipv6->daddr, &ip6info->dmsk,
112 &ip6info->dst), IP6T_INV_DSTIP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 dprintf("Source or dest mismatch.\n");
114/*
115 dprintf("SRC: %u. Mask: %u. Target: %u.%s\n", ip->saddr,
116 ipinfo->smsk.s_addr, ipinfo->src.s_addr,
117 ipinfo->invflags & IP6T_INV_SRCIP ? " (INV)" : "");
118 dprintf("DST: %u. Mask: %u. Target: %u.%s\n", ip->daddr,
119 ipinfo->dmsk.s_addr, ipinfo->dst.s_addr,
120 ipinfo->invflags & IP6T_INV_DSTIP ? " (INV)" : "");*/
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700121 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
123
Eric Dumazetb8dfe492009-03-25 17:31:52 +0100124 ret = ifname_compare_aligned(indev, ip6info->iniface, ip6info->iniface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 if (FWINV(ret != 0, IP6T_INV_VIA_IN)) {
127 dprintf("VIA in mismatch (%s vs %s).%s\n",
128 indev, ip6info->iniface,
129 ip6info->invflags&IP6T_INV_VIA_IN ?" (INV)":"");
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700130 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 }
132
Eric Dumazetb8dfe492009-03-25 17:31:52 +0100133 ret = ifname_compare_aligned(outdev, ip6info->outiface, ip6info->outiface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 if (FWINV(ret != 0, IP6T_INV_VIA_OUT)) {
136 dprintf("VIA out mismatch (%s vs %s).%s\n",
137 outdev, ip6info->outiface,
138 ip6info->invflags&IP6T_INV_VIA_OUT ?" (INV)":"");
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700139 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
141
142/* ... might want to do something with class and flowlabel here ... */
143
144 /* look for the desired protocol header */
145 if((ip6info->flags & IP6T_F_PROTO)) {
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800146 int protohdr;
147 unsigned short _frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800149 protohdr = ipv6_find_hdr(skb, protoff, -1, &_frag_off);
Patrick McHardy51d8b1a2006-10-24 16:14:04 -0700150 if (protohdr < 0) {
151 if (_frag_off == 0)
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700152 *hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700153 return false;
Patrick McHardy51d8b1a2006-10-24 16:14:04 -0700154 }
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800155 *fragoff = _frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 dprintf("Packet protocol %hi ?= %s%hi.\n",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900158 protohdr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 ip6info->invflags & IP6T_INV_PROTO ? "!":"",
160 ip6info->proto);
161
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800162 if (ip6info->proto == protohdr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 if(ip6info->invflags & IP6T_INV_PROTO) {
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700164 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700166 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 }
168
169 /* We need match for the '-p all', too! */
170 if ((ip6info->proto != 0) &&
171 !(ip6info->invflags & IP6T_INV_PROTO))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700172 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700174 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
177/* should be ip6 safe */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800178static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179ip6_checkentry(const struct ip6t_ip6 *ipv6)
180{
181 if (ipv6->flags & ~IP6T_F_MASK) {
182 duprintf("Unknown flag bits set: %08X\n",
183 ipv6->flags & ~IP6T_F_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700184 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
186 if (ipv6->invflags & ~IP6T_INV_MASK) {
187 duprintf("Unknown invflag bits set: %08X\n",
188 ipv6->invflags & ~IP6T_INV_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700189 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700191 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
194static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200195ip6t_error(struct sk_buff *skb, const struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
197 if (net_ratelimit())
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100198 pr_info("error: `%s'\n", (const char *)par->targinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 return NF_DROP;
201}
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203static inline struct ip6t_entry *
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200204get_entry(const void *base, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 return (struct ip6t_entry *)(base + offset);
207}
208
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700209/* All zeroes == unconditional rule. */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800210/* Mildly perf critical (only if packet tracing is on) */
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200211static inline bool unconditional(const struct ip6t_ip6 *ipv6)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700212{
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200213 static const struct ip6t_ip6 uncond;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700214
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200215 return memcmp(ipv6, &uncond, sizeof(uncond)) == 0;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700216}
217
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200218static inline const struct xt_entry_target *
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200219ip6t_get_target_c(const struct ip6t_entry *e)
220{
221 return ip6t_get_target((struct ip6t_entry *)e);
222}
223
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700224#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
225 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
226/* This cries for unification! */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800227static const char *const hooknames[] = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800228 [NF_INET_PRE_ROUTING] = "PREROUTING",
229 [NF_INET_LOCAL_IN] = "INPUT",
230 [NF_INET_FORWARD] = "FORWARD",
231 [NF_INET_LOCAL_OUT] = "OUTPUT",
232 [NF_INET_POST_ROUTING] = "POSTROUTING",
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700233};
234
235enum nf_ip_trace_comments {
236 NF_IP6_TRACE_COMMENT_RULE,
237 NF_IP6_TRACE_COMMENT_RETURN,
238 NF_IP6_TRACE_COMMENT_POLICY,
239};
240
Denys Vlasenko022748a2008-01-14 23:44:05 -0800241static const char *const comments[] = {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700242 [NF_IP6_TRACE_COMMENT_RULE] = "rule",
243 [NF_IP6_TRACE_COMMENT_RETURN] = "return",
244 [NF_IP6_TRACE_COMMENT_POLICY] = "policy",
245};
246
247static struct nf_loginfo trace_loginfo = {
248 .type = NF_LOG_TYPE_LOG,
249 .u = {
250 .log = {
251 .level = 4,
252 .logflags = NF_LOG_MASK,
253 },
254 },
255};
256
Denys Vlasenko022748a2008-01-14 23:44:05 -0800257/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700258static inline int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200259get_chainname_rulenum(const struct ip6t_entry *s, const struct ip6t_entry *e,
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200260 const char *hookname, const char **chainname,
261 const char **comment, unsigned int *rulenum)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700262{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200263 const struct xt_standard_target *t = (void *)ip6t_get_target_c(s);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700264
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200265 if (strcmp(t->target.u.kernel.target->name, XT_ERROR_TARGET) == 0) {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700266 /* Head of user chain: ERROR target with chainname */
267 *chainname = t->target.data;
268 (*rulenum) = 0;
269 } else if (s == e) {
270 (*rulenum)++;
271
Joe Perches3666ed12009-11-23 23:17:06 +0100272 if (s->target_offset == sizeof(struct ip6t_entry) &&
273 strcmp(t->target.u.kernel.target->name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200274 XT_STANDARD_TARGET) == 0 &&
Joe Perches3666ed12009-11-23 23:17:06 +0100275 t->verdict < 0 &&
276 unconditional(&s->ipv6)) {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700277 /* Tail of chains: STANDARD target (return/policy) */
278 *comment = *chainname == hookname
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200279 ? comments[NF_IP6_TRACE_COMMENT_POLICY]
280 : comments[NF_IP6_TRACE_COMMENT_RETURN];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700281 }
282 return 1;
283 } else
284 (*rulenum)++;
285
286 return 0;
287}
288
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200289static void trace_packet(const struct sk_buff *skb,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700290 unsigned int hook,
291 const struct net_device *in,
292 const struct net_device *out,
Jan Engelhardtecb6f852008-01-31 03:54:47 -0800293 const char *tablename,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200294 const struct xt_table_info *private,
295 const struct ip6t_entry *e)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700296{
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200297 const void *table_base;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200298 const struct ip6t_entry *root;
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200299 const char *hookname, *chainname, *comment;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100300 const struct ip6t_entry *iter;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700301 unsigned int rulenum = 0;
302
Jan Engelhardtccf5bd82009-04-15 20:27:03 +0200303 table_base = private->entries[smp_processor_id()];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700304 root = get_entry(table_base, private->hook_entry[hook]);
305
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200306 hookname = chainname = hooknames[hook];
307 comment = comments[NF_IP6_TRACE_COMMENT_RULE];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700308
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100309 xt_entry_foreach(iter, root, private->size - private->hook_entry[hook])
310 if (get_chainname_rulenum(iter, e, hookname,
311 &chainname, &comment, &rulenum) != 0)
312 break;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700313
314 nf_log_packet(AF_INET6, hook, skb, in, out, &trace_loginfo,
315 "TRACE: %s:%s:%s:%u ",
316 tablename, chainname, comment, rulenum);
317}
318#endif
319
Jan Engelhardt98e86402009-04-15 21:06:05 +0200320static inline __pure struct ip6t_entry *
321ip6t_next_entry(const struct ip6t_entry *entry)
322{
323 return (void *)entry + entry->next_offset;
324}
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326/* Returns one of the generic firewall policies, like NF_ACCEPT. */
327unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700328ip6t_do_table(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 unsigned int hook,
330 const struct net_device *in,
331 const struct net_device *out,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700332 struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Harald Welte6b7d31f2005-10-26 09:34:24 +0200334 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 /* Initializing verdict to NF_DROP keeps gcc happy. */
336 unsigned int verdict = NF_DROP;
337 const char *indev, *outdev;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200338 const void *table_base;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200339 struct ip6t_entry *e, **jumpstack;
340 unsigned int *stackptr, origptr, cpu;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200341 const struct xt_table_info *private;
Jan Engelhardtde74c162009-07-05 18:26:37 +0200342 struct xt_action_param acpar;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200343 unsigned int addend;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 /* Initialization */
346 indev = in ? in->name : nulldevname;
347 outdev = out ? out->name : nulldevname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 /* We handle fragments by dealing with the first fragment as
349 * if it was a normal packet. All other fragments are treated
350 * normally, except that they will NEVER match rules that ask
351 * things we don't know, ie. tcp syn flag or ports). If the
352 * rule is also a fragment-specific rule, non-fragments won't
353 * match it. */
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200354 acpar.hotdrop = false;
Jan Engelhardtde74c162009-07-05 18:26:37 +0200355 acpar.in = in;
356 acpar.out = out;
357 acpar.family = NFPROTO_IPV6;
358 acpar.hooknum = hook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 IP_NF_ASSERT(table->valid_hooks & (1 << hook));
Stephen Hemminger78454472009-02-20 10:35:32 +0100361
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200362 local_bh_disable();
363 addend = xt_write_recseq_begin();
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700364 private = table->private;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200365 cpu = smp_processor_id();
366 table_base = private->entries[cpu];
367 jumpstack = (struct ip6t_entry **)private->jumpstack[cpu];
Eric Dumazet7489aec2010-05-31 16:41:35 +0200368 stackptr = per_cpu_ptr(private->stackptr, cpu);
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200369 origptr = *stackptr;
Stephen Hemminger78454472009-02-20 10:35:32 +0100370
Harald Welte2e4e6a12006-01-12 13:30:04 -0800371 e = get_entry(table_base, private->hook_entry[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 do {
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200374 const struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100375 const struct xt_entry_match *ematch;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 IP_NF_ASSERT(e);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200378 if (!ip6_packet_match(skb, indev, outdev, &e->ipv6,
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200379 &acpar.thoff, &acpar.fragoff, &acpar.hotdrop)) {
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100380 no_match:
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200381 e = ip6t_next_entry(e);
382 continue;
383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Jan Engelhardtef53d702009-07-09 19:14:18 +0200385 xt_ematch_foreach(ematch, e) {
Jan Engelhardtde74c162009-07-05 18:26:37 +0200386 acpar.match = ematch->u.kernel.match;
387 acpar.matchinfo = ematch->data;
388 if (!acpar.match->match(skb, &acpar))
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100389 goto no_match;
Jan Engelhardtef53d702009-07-09 19:14:18 +0200390 }
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100391
Changli Gao261abc82010-07-23 16:24:34 +0200392 ADD_COUNTER(e->counters, skb->len, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200394 t = ip6t_get_target_c(e);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200395 IP_NF_ASSERT(t->u.kernel.target);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700396
397#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
398 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200399 /* The packet is traced: log it */
400 if (unlikely(skb->nf_trace))
401 trace_packet(skb, hook, in, out,
402 table->name, private, e);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700403#endif
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200404 /* Standard target? */
405 if (!t->u.kernel.target->target) {
406 int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200408 v = ((struct xt_standard_target *)t)->verdict;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200409 if (v < 0) {
410 /* Pop from stack? */
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200411 if (v != XT_RETURN) {
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200412 verdict = (unsigned)(-v) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 break;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200414 }
Eric Dumazetdb856672011-03-20 15:40:06 +0100415 if (*stackptr <= origptr)
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200416 e = get_entry(table_base,
417 private->underflow[hook]);
418 else
419 e = ip6t_next_entry(jumpstack[--*stackptr]);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200420 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
Joe Perches3666ed12009-11-23 23:17:06 +0100422 if (table_base + v != ip6t_next_entry(e) &&
423 !(e->ipv6.flags & IP6T_F_GOTO)) {
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200424 if (*stackptr >= private->stacksize) {
425 verdict = NF_DROP;
426 break;
427 }
428 jumpstack[(*stackptr)++] = e;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200431 e = get_entry(table_base, v);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200432 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200434
Jan Engelhardtde74c162009-07-05 18:26:37 +0200435 acpar.target = t->u.kernel.target;
436 acpar.targinfo = t->data;
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200437
Jan Engelhardtde74c162009-07-05 18:26:37 +0200438 verdict = t->u.kernel.target->target(skb, &acpar);
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200439 if (verdict == XT_CONTINUE)
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200440 e = ip6t_next_entry(e);
441 else
442 /* Verdict */
443 break;
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200444 } while (!acpar.hotdrop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200446 *stackptr = origptr;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200447
448 xt_write_recseq_end(addend);
449 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451#ifdef DEBUG_ALLOW_ALL
452 return NF_ACCEPT;
453#else
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200454 if (acpar.hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return NF_DROP;
456 else return verdict;
457#endif
458}
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460/* Figures out from what hook each rule can be called: returns 0 if
461 there are loops. Puts hook bitmask in comefrom. */
462static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200463mark_source_chains(const struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800464 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
466 unsigned int hook;
467
468 /* No recursion; use packet counter to save back ptrs (reset
469 to 0 as we leave), and comefrom to save source hook bitmask */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800470 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 unsigned int pos = newinfo->hook_entry[hook];
Patrick McHardy9c547952007-12-17 21:52:00 -0800472 struct ip6t_entry *e = (struct ip6t_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 if (!(valid_hooks & (1 << hook)))
475 continue;
476
477 /* Set initial back pointer. */
478 e->counters.pcnt = pos;
479
480 for (;;) {
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200481 const struct xt_standard_target *t
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200482 = (void *)ip6t_get_target_c(e);
Patrick McHardy9c547952007-12-17 21:52:00 -0800483 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800485 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200486 pr_err("iptables: loop hook %u pos %u %08X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 hook, pos, e->comefrom);
488 return 0;
489 }
Patrick McHardy9c547952007-12-17 21:52:00 -0800490 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 /* Unconditional return/END. */
Joe Perches3666ed12009-11-23 23:17:06 +0100493 if ((e->target_offset == sizeof(struct ip6t_entry) &&
494 (strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200495 XT_STANDARD_TARGET) == 0) &&
Joe Perches3666ed12009-11-23 23:17:06 +0100496 t->verdict < 0 &&
497 unconditional(&e->ipv6)) || visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 unsigned int oldpos, size;
499
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100500 if ((strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200501 XT_STANDARD_TARGET) == 0) &&
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100502 t->verdict < -NF_MAX_VERDICT - 1) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800503 duprintf("mark_source_chains: bad "
504 "negative verdict (%i)\n",
505 t->verdict);
506 return 0;
507 }
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 /* Return: backtrack through the last
510 big jump. */
511 do {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800512 e->comefrom ^= (1<<NF_INET_NUMHOOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513#ifdef DEBUG_IP_FIREWALL_USER
514 if (e->comefrom
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800515 & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 duprintf("Back unset "
517 "on hook %u "
518 "rule %u\n",
519 hook, pos);
520 }
521#endif
522 oldpos = pos;
523 pos = e->counters.pcnt;
524 e->counters.pcnt = 0;
525
526 /* We're at the start. */
527 if (pos == oldpos)
528 goto next;
529
530 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800531 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 } while (oldpos == pos + e->next_offset);
533
534 /* Move along one */
535 size = e->next_offset;
536 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800537 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 e->counters.pcnt = pos;
539 pos += size;
540 } else {
541 int newpos = t->verdict;
542
543 if (strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200544 XT_STANDARD_TARGET) == 0 &&
Joe Perches3666ed12009-11-23 23:17:06 +0100545 newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800546 if (newpos > newinfo->size -
547 sizeof(struct ip6t_entry)) {
548 duprintf("mark_source_chains: "
549 "bad verdict (%i)\n",
550 newpos);
551 return 0;
552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 /* This a jump; chase it. */
554 duprintf("Jump rule %u -> %u\n",
555 pos, newpos);
556 } else {
557 /* ... this is a fallthru */
558 newpos = pos + e->next_offset;
559 }
560 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800561 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 e->counters.pcnt = pos;
563 pos = newpos;
564 }
565 }
566 next:
567 duprintf("Finished chain %u\n", hook);
568 }
569 return 1;
570}
571
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200572static void cleanup_match(struct xt_entry_match *m, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200574 struct xt_mtdtor_param par;
575
Alexey Dobriyanf54e9362010-01-18 08:25:47 +0100576 par.net = net;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200577 par.match = m->u.kernel.match;
578 par.matchinfo = m->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200579 par.family = NFPROTO_IPV6;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200580 if (par.match->destroy != NULL)
581 par.match->destroy(&par);
582 module_put(par.match->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
Denys Vlasenko022748a2008-01-14 23:44:05 -0800585static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200586check_entry(const struct ip6t_entry *e, const char *name)
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800587{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200588 const struct xt_entry_target *t;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800589
590 if (!ip6_checkentry(&e->ipv6)) {
591 duprintf("ip_tables: ip check failed %p %s.\n", e, name);
592 return -EINVAL;
593 }
594
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200595 if (e->target_offset + sizeof(struct xt_entry_target) >
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800596 e->next_offset)
597 return -EINVAL;
598
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200599 t = ip6t_get_target_c(e);
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800600 if (e->target_offset + t->u.target_size > e->next_offset)
601 return -EINVAL;
602
603 return 0;
604}
605
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200606static int check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800607{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200608 const struct ip6t_ip6 *ipv6 = par->entryinfo;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800609 int ret;
610
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200611 par->match = m->u.kernel.match;
612 par->matchinfo = m->data;
613
Jan Engelhardt916a9172008-10-08 11:35:20 +0200614 ret = xt_check_match(par, m->u.match_size - sizeof(*m),
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200615 ipv6->proto, ipv6->invflags & IP6T_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200616 if (ret < 0) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800617 duprintf("ip_tables: check failed for `%s'.\n",
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200618 par.match->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200619 return ret;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800620 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200621 return 0;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800622}
623
Denys Vlasenko022748a2008-01-14 23:44:05 -0800624static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200625find_check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800627 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800628 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200630 match = xt_request_find_match(NFPROTO_IPV6, m->u.user.name,
631 m->u.user.revision);
632 if (IS_ERR(match)) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800633 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200634 return PTR_ERR(match);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 }
636 m->u.kernel.match = match;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100638 ret = check_match(m, par);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800639 if (ret)
640 goto err;
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800643err:
644 module_put(m->u.kernel.match->me);
645 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646}
647
Patrick McHardyadd67462010-02-03 13:45:12 +0100648static int check_target(struct ip6t_entry *e, struct net *net, const char *name)
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800649{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200650 struct xt_entry_target *t = ip6t_get_target(e);
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200651 struct xt_tgchk_param par = {
Patrick McHardyadd67462010-02-03 13:45:12 +0100652 .net = net,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200653 .table = name,
654 .entryinfo = e,
655 .target = t->u.kernel.target,
656 .targinfo = t->data,
657 .hook_mask = e->comefrom,
Jan Engelhardt916a9172008-10-08 11:35:20 +0200658 .family = NFPROTO_IPV6,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200659 };
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800660 int ret;
661
662 t = ip6t_get_target(e);
Jan Engelhardt916a9172008-10-08 11:35:20 +0200663 ret = xt_check_target(&par, t->u.target_size - sizeof(*t),
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200664 e->ipv6.proto, e->ipv6.invflags & IP6T_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200665 if (ret < 0) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800666 duprintf("ip_tables: check failed for `%s'.\n",
667 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200668 return ret;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800669 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200670 return 0;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800671}
672
Denys Vlasenko022748a2008-01-14 23:44:05 -0800673static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100674find_check_entry(struct ip6t_entry *e, struct net *net, const char *name,
Jan Engelhardt05595182010-02-24 18:33:43 +0100675 unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200677 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800678 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 int ret;
680 unsigned int j;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200681 struct xt_mtchk_param mtpar;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100682 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800684 ret = check_entry(e, name);
685 if (ret)
686 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 j = 0;
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100689 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200690 mtpar.table = name;
691 mtpar.entryinfo = &e->ipv6;
692 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200693 mtpar.family = NFPROTO_IPV6;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100694 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100695 ret = find_check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100696 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100697 goto cleanup_matches;
698 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 t = ip6t_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200702 target = xt_request_find_target(NFPROTO_IPV6, t->u.user.name,
703 t->u.user.revision);
704 if (IS_ERR(target)) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800705 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200706 ret = PTR_ERR(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 goto cleanup_matches;
708 }
709 t->u.kernel.target = target;
Harald Welte6b7d31f2005-10-26 09:34:24 +0200710
Patrick McHardyadd67462010-02-03 13:45:12 +0100711 ret = check_target(e, net, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800712 if (ret)
713 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800715 err:
716 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100718 xt_ematch_foreach(ematch, e) {
719 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100720 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100721 cleanup_match(ematch, net);
722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return ret;
724}
725
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200726static bool check_underflow(const struct ip6t_entry *e)
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200727{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200728 const struct xt_entry_target *t;
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200729 unsigned int verdict;
730
731 if (!unconditional(&e->ipv6))
732 return false;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200733 t = ip6t_get_target_c(e);
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200734 if (strcmp(t->u.user.name, XT_STANDARD_TARGET) != 0)
735 return false;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200736 verdict = ((struct xt_standard_target *)t)->verdict;
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200737 verdict = -verdict - 1;
738 return verdict == NF_DROP || verdict == NF_ACCEPT;
739}
740
Denys Vlasenko022748a2008-01-14 23:44:05 -0800741static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742check_entry_size_and_hooks(struct ip6t_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800743 struct xt_table_info *newinfo,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200744 const unsigned char *base,
745 const unsigned char *limit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 const unsigned int *hook_entries,
747 const unsigned int *underflows,
Jan Engelhardt05595182010-02-24 18:33:43 +0100748 unsigned int valid_hooks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
750 unsigned int h;
751
Joe Perches3666ed12009-11-23 23:17:06 +0100752 if ((unsigned long)e % __alignof__(struct ip6t_entry) != 0 ||
753 (unsigned char *)e + sizeof(struct ip6t_entry) >= limit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 duprintf("Bad offset %p\n", e);
755 return -EINVAL;
756 }
757
758 if (e->next_offset
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200759 < sizeof(struct ip6t_entry) + sizeof(struct xt_entry_target)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 duprintf("checking: element %p size %u\n",
761 e, e->next_offset);
762 return -EINVAL;
763 }
764
765 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800766 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Jan Engelhardta7d51732009-07-18 14:52:58 +0200767 if (!(valid_hooks & (1 << h)))
768 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 if ((unsigned char *)e - base == hook_entries[h])
770 newinfo->hook_entry[h] = hook_entries[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200771 if ((unsigned char *)e - base == underflows[h]) {
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200772 if (!check_underflow(e)) {
773 pr_err("Underflows must be unconditional and "
774 "use the STANDARD target with "
775 "ACCEPT/DROP\n");
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200776 return -EINVAL;
777 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 newinfo->underflow[h] = underflows[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800783 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 e->comefrom = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 return 0;
786}
787
Jan Engelhardt05595182010-02-24 18:33:43 +0100788static void cleanup_entry(struct ip6t_entry *e, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200790 struct xt_tgdtor_param par;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200791 struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100792 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100795 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100796 cleanup_match(ematch, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 t = ip6t_get_target(e);
Jan Engelhardta2df1642008-10-08 11:35:19 +0200798
Patrick McHardyadd67462010-02-03 13:45:12 +0100799 par.net = net;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200800 par.target = t->u.kernel.target;
801 par.targinfo = t->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200802 par.family = NFPROTO_IPV6;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200803 if (par.target->destroy != NULL)
804 par.target->destroy(&par);
805 module_put(par.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
808/* Checks and translates the user-supplied table segment (held in
809 newinfo) */
810static int
Jan Engelhardt0f234212010-02-24 18:36:04 +0100811translate_table(struct net *net, struct xt_table_info *newinfo, void *entry0,
812 const struct ip6t_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100814 struct ip6t_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 unsigned int i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100816 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Jan Engelhardt0f234212010-02-24 18:36:04 +0100818 newinfo->size = repl->size;
819 newinfo->number = repl->num_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800822 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 newinfo->hook_entry[i] = 0xFFFFFFFF;
824 newinfo->underflow[i] = 0xFFFFFFFF;
825 }
826
827 duprintf("translate_table: size %u\n", newinfo->size);
828 i = 0;
829 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100830 xt_entry_foreach(iter, entry0, newinfo->size) {
831 ret = check_entry_size_and_hooks(iter, newinfo, entry0,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +0100832 entry0 + repl->size,
833 repl->hook_entry,
834 repl->underflow,
835 repl->valid_hooks);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100836 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +0100837 return ret;
838 ++i;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200839 if (strcmp(ip6t_get_target(iter)->u.user.name,
840 XT_ERROR_TARGET) == 0)
841 ++newinfo->stacksize;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Jan Engelhardt0f234212010-02-24 18:36:04 +0100844 if (i != repl->num_entries) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 duprintf("translate_table: %u not %u entries\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100846 i, repl->num_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return -EINVAL;
848 }
849
850 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800851 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 /* Only hooks which are valid */
Jan Engelhardt0f234212010-02-24 18:36:04 +0100853 if (!(repl->valid_hooks & (1 << i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 continue;
855 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
856 duprintf("Invalid hook entry %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100857 i, repl->hook_entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 return -EINVAL;
859 }
860 if (newinfo->underflow[i] == 0xFFFFFFFF) {
861 duprintf("Invalid underflow %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100862 i, repl->underflow[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 return -EINVAL;
864 }
865 }
866
Jan Engelhardt0f234212010-02-24 18:36:04 +0100867 if (!mark_source_chains(newinfo, repl->valid_hooks, entry0))
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800868 return -ELOOP;
869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 /* Finally, each sanity check must pass */
871 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100872 xt_entry_foreach(iter, entry0, newinfo->size) {
Jan Engelhardt0f234212010-02-24 18:36:04 +0100873 ret = find_check_entry(iter, net, repl->name, repl->size);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100874 if (ret != 0)
875 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100876 ++i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800879 if (ret != 0) {
Jan Engelhardt05595182010-02-24 18:33:43 +0100880 xt_entry_foreach(iter, entry0, newinfo->size) {
881 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100882 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100883 cleanup_entry(iter, net);
884 }
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800885 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 -0700897static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800898get_counters(const struct xt_table_info *t,
899 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100901 struct ip6t_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 unsigned int cpu;
903 unsigned int i;
904
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700905 for_each_possible_cpu(cpu) {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200906 seqcount_t *s = &per_cpu(xt_recseq, cpu);
Eric Dumazet83723d62011-01-10 20:11:38 +0100907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 i = 0;
Jan Engelhardt05595182010-02-24 18:33:43 +0100909 xt_entry_foreach(iter, t->entries[cpu], t->size) {
Eric Dumazet83723d62011-01-10 20:11:38 +0100910 u64 bcnt, pcnt;
911 unsigned int start;
912
913 do {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200914 start = read_seqcount_begin(s);
Eric Dumazet83723d62011-01-10 20:11:38 +0100915 bcnt = iter->counters.bcnt;
916 pcnt = iter->counters.pcnt;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200917 } while (read_seqcount_retry(s, start));
Eric Dumazet83723d62011-01-10 20:11:38 +0100918
919 ADD_COUNTER(counters[i], bcnt, pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +0100920 ++i;
921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
Stephen Hemminger78454472009-02-20 10:35:32 +0100923}
924
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200925static struct xt_counters *alloc_counters(const struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800927 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800928 struct xt_counters *counters;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200929 const struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 /* We need atomic snapshot of counters: rest doesn't change
932 (other than comefrom, which userspace doesn't care
933 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800934 countersize = sizeof(struct xt_counters) * private->number;
Eric Dumazet83723d62011-01-10 20:11:38 +0100935 counters = vzalloc(countersize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 if (counters == NULL)
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700938 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700940 get_counters(private, counters);
Stephen Hemminger78454472009-02-20 10:35:32 +0100941
Eric Dumazet49a88d12009-04-06 17:06:55 +0200942 return counters;
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800943}
944
945static int
946copy_entries_to_user(unsigned int total_size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200947 const struct xt_table *table,
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800948 void __user *userptr)
949{
950 unsigned int off, num;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200951 const struct ip6t_entry *e;
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800952 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200953 const struct xt_table_info *private = table->private;
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800954 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200955 const void *loc_cpu_entry;
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800956
957 counters = alloc_counters(table);
958 if (IS_ERR(counters))
959 return PTR_ERR(counters);
960
Patrick McHardy9c547952007-12-17 21:52:00 -0800961 /* choose the copy that is on our node/cpu, ...
962 * This choice is lazy (because current thread is
963 * allowed to migrate to another cpu)
964 */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800965 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -0800966 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 ret = -EFAULT;
968 goto free_counters;
969 }
970
971 /* FIXME: use iterator macros --RR */
972 /* ... then go back and fix counters and names */
973 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
974 unsigned int i;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200975 const struct xt_entry_match *m;
976 const struct xt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Eric Dumazet31836062005-12-13 23:13:48 -0800978 e = (struct ip6t_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 if (copy_to_user(userptr + off
980 + offsetof(struct ip6t_entry, counters),
981 &counters[num],
982 sizeof(counters[num])) != 0) {
983 ret = -EFAULT;
984 goto free_counters;
985 }
986
987 for (i = sizeof(struct ip6t_entry);
988 i < e->target_offset;
989 i += m->u.match_size) {
990 m = (void *)e + i;
991
992 if (copy_to_user(userptr + off + i
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200993 + offsetof(struct xt_entry_match,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 u.user.name),
995 m->u.kernel.match->name,
996 strlen(m->u.kernel.match->name)+1)
997 != 0) {
998 ret = -EFAULT;
999 goto free_counters;
1000 }
1001 }
1002
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001003 t = ip6t_get_target_c(e);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if (copy_to_user(userptr + off + e->target_offset
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001005 + offsetof(struct xt_entry_target,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 u.user.name),
1007 t->u.kernel.target->name,
1008 strlen(t->u.kernel.target->name)+1) != 0) {
1009 ret = -EFAULT;
1010 goto free_counters;
1011 }
1012 }
1013
1014 free_counters:
1015 vfree(counters);
1016 return ret;
1017}
1018
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001019#ifdef CONFIG_COMPAT
Jan Engelhardt739674f2009-06-26 08:23:19 +02001020static void compat_standard_from_user(void *dst, const void *src)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001021{
1022 int v = *(compat_int_t *)src;
1023
1024 if (v > 0)
1025 v += xt_compat_calc_jump(AF_INET6, v);
1026 memcpy(dst, &v, sizeof(v));
1027}
1028
Jan Engelhardt739674f2009-06-26 08:23:19 +02001029static int compat_standard_to_user(void __user *dst, const void *src)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001030{
1031 compat_int_t cv = *(int *)src;
1032
1033 if (cv > 0)
1034 cv -= xt_compat_calc_jump(AF_INET6, cv);
1035 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
1036}
1037
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001038static int compat_calc_entry(const struct ip6t_entry *e,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001039 const struct xt_table_info *info,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001040 const void *base, struct xt_table_info *newinfo)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001041{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001042 const struct xt_entry_match *ematch;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001043 const struct xt_entry_target *t;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001044 unsigned int entry_offset;
1045 int off, i, ret;
1046
1047 off = sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1048 entry_offset = (void *)e - base;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001049 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001050 off += xt_compat_match_offset(ematch->u.kernel.match);
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001051 t = ip6t_get_target_c(e);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001052 off += xt_compat_target_offset(t->u.kernel.target);
1053 newinfo->size -= off;
1054 ret = xt_compat_add_offset(AF_INET6, entry_offset, off);
1055 if (ret)
1056 return ret;
1057
1058 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1059 if (info->hook_entry[i] &&
1060 (e < (struct ip6t_entry *)(base + info->hook_entry[i])))
1061 newinfo->hook_entry[i] -= off;
1062 if (info->underflow[i] &&
1063 (e < (struct ip6t_entry *)(base + info->underflow[i])))
1064 newinfo->underflow[i] -= off;
1065 }
1066 return 0;
1067}
1068
1069static int compat_table_info(const struct xt_table_info *info,
1070 struct xt_table_info *newinfo)
1071{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001072 struct ip6t_entry *iter;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001073 void *loc_cpu_entry;
Jan Engelhardt05595182010-02-24 18:33:43 +01001074 int ret;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001075
1076 if (!newinfo || !info)
1077 return -EINVAL;
1078
1079 /* we dont care about newinfo->entries[] */
1080 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1081 newinfo->initial_entries = 0;
1082 loc_cpu_entry = info->entries[raw_smp_processor_id()];
Eric Dumazet255d0dc2010-12-18 18:35:15 +01001083 xt_compat_init_offsets(AF_INET6, info->number);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001084 xt_entry_foreach(iter, loc_cpu_entry, info->size) {
1085 ret = compat_calc_entry(iter, info, loc_cpu_entry, newinfo);
1086 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001087 return ret;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001088 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001089 return 0;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001090}
1091#endif
1092
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001093static int get_info(struct net *net, void __user *user,
1094 const int *len, int compat)
Patrick McHardy433665c2007-12-17 21:50:05 -08001095{
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001096 char name[XT_TABLE_MAXNAMELEN];
Patrick McHardy433665c2007-12-17 21:50:05 -08001097 struct xt_table *t;
1098 int ret;
1099
1100 if (*len != sizeof(struct ip6t_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001101 duprintf("length %u != %zu\n", *len,
Patrick McHardy433665c2007-12-17 21:50:05 -08001102 sizeof(struct ip6t_getinfo));
1103 return -EINVAL;
1104 }
1105
1106 if (copy_from_user(name, user, sizeof(name)) != 0)
1107 return -EFAULT;
1108
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001109 name[XT_TABLE_MAXNAMELEN-1] = '\0';
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001110#ifdef CONFIG_COMPAT
1111 if (compat)
1112 xt_compat_lock(AF_INET6);
1113#endif
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001114 t = try_then_request_module(xt_find_table_lock(net, AF_INET6, name),
Patrick McHardy433665c2007-12-17 21:50:05 -08001115 "ip6table_%s", name);
1116 if (t && !IS_ERR(t)) {
1117 struct ip6t_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001118 const struct xt_table_info *private = t->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001119#ifdef CONFIG_COMPAT
Alexey Dobriyan14c7dbe2010-02-08 11:17:43 -08001120 struct xt_table_info tmp;
1121
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001122 if (compat) {
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001123 ret = compat_table_info(private, &tmp);
1124 xt_compat_flush_offsets(AF_INET6);
1125 private = &tmp;
1126 }
1127#endif
Jan Engelhardtcccbe5e2010-11-03 18:55:39 -07001128 memset(&info, 0, sizeof(info));
Patrick McHardy433665c2007-12-17 21:50:05 -08001129 info.valid_hooks = t->valid_hooks;
1130 memcpy(info.hook_entry, private->hook_entry,
1131 sizeof(info.hook_entry));
1132 memcpy(info.underflow, private->underflow,
1133 sizeof(info.underflow));
1134 info.num_entries = private->number;
1135 info.size = private->size;
Patrick McHardyb5dd6742007-12-17 21:52:35 -08001136 strcpy(info.name, name);
Patrick McHardy433665c2007-12-17 21:50:05 -08001137
1138 if (copy_to_user(user, &info, *len) != 0)
1139 ret = -EFAULT;
1140 else
1141 ret = 0;
1142
1143 xt_table_unlock(t);
1144 module_put(t->me);
1145 } else
1146 ret = t ? PTR_ERR(t) : -ENOENT;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001147#ifdef CONFIG_COMPAT
1148 if (compat)
1149 xt_compat_unlock(AF_INET6);
1150#endif
Patrick McHardy433665c2007-12-17 21:50:05 -08001151 return ret;
1152}
1153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001155get_entries(struct net *net, struct ip6t_get_entries __user *uptr,
1156 const int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157{
1158 int ret;
Patrick McHardyd9243572007-12-17 21:50:22 -08001159 struct ip6t_get_entries get;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001160 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Patrick McHardyd9243572007-12-17 21:50:22 -08001162 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001163 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Patrick McHardyd9243572007-12-17 21:50:22 -08001164 return -EINVAL;
1165 }
1166 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1167 return -EFAULT;
1168 if (*len != sizeof(struct ip6t_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001169 duprintf("get_entries: %u != %zu\n",
1170 *len, sizeof(get) + get.size);
Patrick McHardyd9243572007-12-17 21:50:22 -08001171 return -EINVAL;
1172 }
1173
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001174 t = xt_find_table_lock(net, AF_INET6, get.name);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001175 if (t && !IS_ERR(t)) {
Harald Welte2e4e6a12006-01-12 13:30:04 -08001176 struct xt_table_info *private = t->private;
1177 duprintf("t->private->number = %u\n", private->number);
Patrick McHardyd9243572007-12-17 21:50:22 -08001178 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001179 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 t, uptr->entrytable);
1181 else {
1182 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001183 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001184 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 }
Harald Welte6b7d31f2005-10-26 09:34:24 +02001186 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001187 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 } else
Harald Welte6b7d31f2005-10-26 09:34:24 +02001189 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191 return ret;
1192}
1193
1194static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001195__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001196 struct xt_table_info *newinfo, unsigned int num_counters,
1197 void __user *counters_ptr)
1198{
1199 int ret;
1200 struct xt_table *t;
1201 struct xt_table_info *oldinfo;
1202 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001203 const void *loc_cpu_old_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001204 struct ip6t_entry *iter;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001205
1206 ret = 0;
Eric Dumazet83723d62011-01-10 20:11:38 +01001207 counters = vzalloc(num_counters * sizeof(struct xt_counters));
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001208 if (!counters) {
1209 ret = -ENOMEM;
1210 goto out;
1211 }
1212
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001213 t = try_then_request_module(xt_find_table_lock(net, AF_INET6, name),
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001214 "ip6table_%s", name);
1215 if (!t || IS_ERR(t)) {
1216 ret = t ? PTR_ERR(t) : -ENOENT;
1217 goto free_newinfo_counters_untrans;
1218 }
1219
1220 /* You lied! */
1221 if (valid_hooks != t->valid_hooks) {
1222 duprintf("Valid hook crap: %08X vs %08X\n",
1223 valid_hooks, t->valid_hooks);
1224 ret = -EINVAL;
1225 goto put_module;
1226 }
1227
1228 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1229 if (!oldinfo)
1230 goto put_module;
1231
1232 /* Update module usage count based on number of rules */
1233 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1234 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1235 if ((oldinfo->number > oldinfo->initial_entries) ||
1236 (newinfo->number <= oldinfo->initial_entries))
1237 module_put(t->me);
1238 if ((oldinfo->number > oldinfo->initial_entries) &&
1239 (newinfo->number <= oldinfo->initial_entries))
1240 module_put(t->me);
1241
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001242 /* Get the old counters, and synchronize with replace */
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001243 get_counters(oldinfo, counters);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001244
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001245 /* Decrease module usage counts and free resource */
1246 loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001247 xt_entry_foreach(iter, loc_cpu_old_entry, oldinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001248 cleanup_entry(iter, net);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001249
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001250 xt_free_table_info(oldinfo);
1251 if (copy_to_user(counters_ptr, counters,
1252 sizeof(struct xt_counters) * num_counters) != 0)
1253 ret = -EFAULT;
1254 vfree(counters);
1255 xt_table_unlock(t);
1256 return ret;
1257
1258 put_module:
1259 module_put(t->me);
1260 xt_table_unlock(t);
1261 free_newinfo_counters_untrans:
1262 vfree(counters);
1263 out:
1264 return ret;
1265}
1266
1267static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001268do_replace(struct net *net, const void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
1270 int ret;
1271 struct ip6t_replace tmp;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001272 struct xt_table_info *newinfo;
1273 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001274 struct ip6t_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1277 return -EFAULT;
1278
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001279 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001280 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1281 return -ENOMEM;
Vasiliy Kulikov6a8ab0602011-03-15 13:37:13 +01001282 tmp.name[sizeof(tmp.name)-1] = 0;
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001283
Harald Welte2e4e6a12006-01-12 13:30:04 -08001284 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 if (!newinfo)
1286 return -ENOMEM;
1287
Eric Dumazet31836062005-12-13 23:13:48 -08001288 /* choose the copy that is on our node/cpu */
1289 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1290 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 tmp.size) != 0) {
1292 ret = -EFAULT;
1293 goto free_newinfo;
1294 }
1295
Jan Engelhardt0f234212010-02-24 18:36:04 +01001296 ret = translate_table(net, newinfo, loc_cpu_entry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 if (ret != 0)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001298 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 duprintf("ip_tables: Translated table\n");
1301
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001302 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001303 tmp.num_counters, tmp.counters);
1304 if (ret)
1305 goto free_newinfo_untrans;
1306 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001308 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001309 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001310 cleanup_entry(iter, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001312 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 return ret;
1314}
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001317do_add_counters(struct net *net, const void __user *user, unsigned int len,
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001318 int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319{
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001320 unsigned int i, curcpu;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001321 struct xt_counters_info tmp;
1322 struct xt_counters *paddc;
1323 unsigned int num_counters;
1324 char *name;
1325 int size;
1326 void *ptmp;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001327 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001328 const struct xt_table_info *private;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001329 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001330 const void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001331 struct ip6t_entry *iter;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001332 unsigned int addend;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001333#ifdef CONFIG_COMPAT
1334 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001336 if (compat) {
1337 ptmp = &compat_tmp;
1338 size = sizeof(struct compat_xt_counters_info);
1339 } else
1340#endif
1341 {
1342 ptmp = &tmp;
1343 size = sizeof(struct xt_counters_info);
1344 }
1345
1346 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 return -EFAULT;
1348
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001349#ifdef CONFIG_COMPAT
1350 if (compat) {
1351 num_counters = compat_tmp.num_counters;
1352 name = compat_tmp.name;
1353 } else
1354#endif
1355 {
1356 num_counters = tmp.num_counters;
1357 name = tmp.name;
1358 }
1359
1360 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 return -EINVAL;
1362
Eric Dumazete12f8e22010-06-04 13:31:29 +02001363 paddc = vmalloc(len - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 if (!paddc)
1365 return -ENOMEM;
1366
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001367 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 ret = -EFAULT;
1369 goto free;
1370 }
1371
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001372 t = xt_find_table_lock(net, AF_INET6, name);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001373 if (!t || IS_ERR(t)) {
1374 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 goto free;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001378
1379 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001380 private = t->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001381 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 ret = -EINVAL;
1383 goto unlock_up_free;
1384 }
1385
1386 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001387 /* Choose the copy that is on our node */
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001388 curcpu = smp_processor_id();
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001389 addend = xt_write_recseq_begin();
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001390 loc_cpu_entry = private->entries[curcpu];
Jan Engelhardt05595182010-02-24 18:33:43 +01001391 xt_entry_foreach(iter, loc_cpu_entry, private->size) {
1392 ADD_COUNTER(iter->counters, paddc[i].bcnt, paddc[i].pcnt);
1393 ++i;
1394 }
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001395 xt_write_recseq_end(addend);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 unlock_up_free:
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001398 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001399 xt_table_unlock(t);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001400 module_put(t->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 free:
1402 vfree(paddc);
1403
1404 return ret;
1405}
1406
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001407#ifdef CONFIG_COMPAT
1408struct compat_ip6t_replace {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001409 char name[XT_TABLE_MAXNAMELEN];
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001410 u32 valid_hooks;
1411 u32 num_entries;
1412 u32 size;
1413 u32 hook_entry[NF_INET_NUMHOOKS];
1414 u32 underflow[NF_INET_NUMHOOKS];
1415 u32 num_counters;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001416 compat_uptr_t counters; /* struct xt_counters * */
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001417 struct compat_ip6t_entry entries[0];
1418};
1419
1420static int
1421compat_copy_entry_to_user(struct ip6t_entry *e, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001422 unsigned int *size, struct xt_counters *counters,
Jan Engelhardt05595182010-02-24 18:33:43 +01001423 unsigned int i)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001424{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001425 struct xt_entry_target *t;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001426 struct compat_ip6t_entry __user *ce;
1427 u_int16_t target_offset, next_offset;
1428 compat_uint_t origsize;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001429 const struct xt_entry_match *ematch;
1430 int ret = 0;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001431
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001432 origsize = *size;
1433 ce = (struct compat_ip6t_entry __user *)*dstptr;
Jan Engelhardt05595182010-02-24 18:33:43 +01001434 if (copy_to_user(ce, e, sizeof(struct ip6t_entry)) != 0 ||
1435 copy_to_user(&ce->counters, &counters[i],
1436 sizeof(counters[i])) != 0)
1437 return -EFAULT;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001438
1439 *dstptr += sizeof(struct compat_ip6t_entry);
1440 *size -= sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1441
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001442 xt_ematch_foreach(ematch, e) {
1443 ret = xt_compat_match_to_user(ematch, dstptr, size);
1444 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001445 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001446 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001447 target_offset = e->target_offset - (origsize - *size);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001448 t = ip6t_get_target(e);
1449 ret = xt_compat_target_to_user(t, dstptr, size);
1450 if (ret)
Jan Engelhardt05595182010-02-24 18:33:43 +01001451 return ret;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001452 next_offset = e->next_offset - (origsize - *size);
Jan Engelhardt05595182010-02-24 18:33:43 +01001453 if (put_user(target_offset, &ce->target_offset) != 0 ||
1454 put_user(next_offset, &ce->next_offset) != 0)
1455 return -EFAULT;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001456 return 0;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001457}
1458
Denys Vlasenko022748a2008-01-14 23:44:05 -08001459static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001460compat_find_calc_match(struct xt_entry_match *m,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001461 const char *name,
1462 const struct ip6t_ip6 *ipv6,
1463 unsigned int hookmask,
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001464 int *size)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001465{
1466 struct xt_match *match;
1467
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001468 match = xt_request_find_match(NFPROTO_IPV6, m->u.user.name,
1469 m->u.user.revision);
1470 if (IS_ERR(match)) {
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001471 duprintf("compat_check_calc_match: `%s' not found\n",
1472 m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001473 return PTR_ERR(match);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001474 }
1475 m->u.kernel.match = match;
1476 *size += xt_compat_match_offset(match);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001477 return 0;
1478}
1479
Jan Engelhardt05595182010-02-24 18:33:43 +01001480static void compat_release_entry(struct compat_ip6t_entry *e)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001481{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001482 struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001483 struct xt_entry_match *ematch;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001484
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001485 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001486 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001487 module_put(ematch->u.kernel.match->me);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001488 t = compat_ip6t_get_target(e);
1489 module_put(t->u.kernel.target->me);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001490}
1491
Denys Vlasenko022748a2008-01-14 23:44:05 -08001492static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001493check_compat_entry_size_and_hooks(struct compat_ip6t_entry *e,
1494 struct xt_table_info *newinfo,
1495 unsigned int *size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001496 const unsigned char *base,
1497 const unsigned char *limit,
1498 const unsigned int *hook_entries,
1499 const unsigned int *underflows,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001500 const char *name)
1501{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001502 struct xt_entry_match *ematch;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001503 struct xt_entry_target *t;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001504 struct xt_target *target;
1505 unsigned int entry_offset;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001506 unsigned int j;
1507 int ret, off, h;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001508
1509 duprintf("check_compat_entry_size_and_hooks %p\n", e);
Joe Perches3666ed12009-11-23 23:17:06 +01001510 if ((unsigned long)e % __alignof__(struct compat_ip6t_entry) != 0 ||
1511 (unsigned char *)e + sizeof(struct compat_ip6t_entry) >= limit) {
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001512 duprintf("Bad offset %p, limit = %p\n", e, limit);
1513 return -EINVAL;
1514 }
1515
1516 if (e->next_offset < sizeof(struct compat_ip6t_entry) +
1517 sizeof(struct compat_xt_entry_target)) {
1518 duprintf("checking: element %p size %u\n",
1519 e, e->next_offset);
1520 return -EINVAL;
1521 }
1522
1523 /* For purposes of check_entry casting the compat entry is fine */
1524 ret = check_entry((struct ip6t_entry *)e, name);
1525 if (ret)
1526 return ret;
1527
1528 off = sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1529 entry_offset = (void *)e - (void *)base;
1530 j = 0;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001531 xt_ematch_foreach(ematch, e) {
1532 ret = compat_find_calc_match(ematch, name,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001533 &e->ipv6, e->comefrom, &off);
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001534 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001535 goto release_matches;
1536 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001537 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001538
1539 t = compat_ip6t_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001540 target = xt_request_find_target(NFPROTO_IPV6, t->u.user.name,
1541 t->u.user.revision);
1542 if (IS_ERR(target)) {
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001543 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
1544 t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001545 ret = PTR_ERR(target);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001546 goto release_matches;
1547 }
1548 t->u.kernel.target = target;
1549
1550 off += xt_compat_target_offset(target);
1551 *size += off;
1552 ret = xt_compat_add_offset(AF_INET6, entry_offset, off);
1553 if (ret)
1554 goto out;
1555
1556 /* Check hooks & underflows */
1557 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
1558 if ((unsigned char *)e - base == hook_entries[h])
1559 newinfo->hook_entry[h] = hook_entries[h];
1560 if ((unsigned char *)e - base == underflows[h])
1561 newinfo->underflow[h] = underflows[h];
1562 }
1563
1564 /* Clear counters and comefrom */
1565 memset(&e->counters, 0, sizeof(e->counters));
1566 e->comefrom = 0;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001567 return 0;
1568
1569out:
1570 module_put(t->u.kernel.target->me);
1571release_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001572 xt_ematch_foreach(ematch, e) {
1573 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001574 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001575 module_put(ematch->u.kernel.match->me);
1576 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001577 return ret;
1578}
1579
1580static int
1581compat_copy_entry_from_user(struct compat_ip6t_entry *e, void **dstptr,
1582 unsigned int *size, const char *name,
1583 struct xt_table_info *newinfo, unsigned char *base)
1584{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001585 struct xt_entry_target *t;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001586 struct ip6t_entry *de;
1587 unsigned int origsize;
1588 int ret, h;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001589 struct xt_entry_match *ematch;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001590
1591 ret = 0;
1592 origsize = *size;
1593 de = (struct ip6t_entry *)*dstptr;
1594 memcpy(de, e, sizeof(struct ip6t_entry));
1595 memcpy(&de->counters, &e->counters, sizeof(e->counters));
1596
1597 *dstptr += sizeof(struct ip6t_entry);
1598 *size += sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1599
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001600 xt_ematch_foreach(ematch, e) {
1601 ret = xt_compat_match_from_user(ematch, dstptr, size);
1602 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001603 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001604 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001605 de->target_offset = e->target_offset - (origsize - *size);
1606 t = compat_ip6t_get_target(e);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001607 xt_compat_target_from_user(t, dstptr, size);
1608
1609 de->next_offset = e->next_offset - (origsize - *size);
1610 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
1611 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1612 newinfo->hook_entry[h] -= origsize - *size;
1613 if ((unsigned char *)de - base < newinfo->underflow[h])
1614 newinfo->underflow[h] -= origsize - *size;
1615 }
1616 return ret;
1617}
1618
Alexey Dobriyanf54e9362010-01-18 08:25:47 +01001619static int compat_check_entry(struct ip6t_entry *e, struct net *net,
Jan Engelhardt05595182010-02-24 18:33:43 +01001620 const char *name)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001621{
Patrick McHardyb0a63632008-01-31 04:10:18 -08001622 unsigned int j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001623 int ret = 0;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001624 struct xt_mtchk_param mtpar;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001625 struct xt_entry_match *ematch;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001626
1627 j = 0;
Alexey Dobriyanf54e9362010-01-18 08:25:47 +01001628 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001629 mtpar.table = name;
1630 mtpar.entryinfo = &e->ipv6;
1631 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +02001632 mtpar.family = NFPROTO_IPV6;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001633 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001634 ret = check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001635 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001636 goto cleanup_matches;
1637 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001638 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001639
Patrick McHardyadd67462010-02-03 13:45:12 +01001640 ret = check_target(e, net, name);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001641 if (ret)
1642 goto cleanup_matches;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001643 return 0;
1644
1645 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001646 xt_ematch_foreach(ematch, e) {
1647 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001648 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001649 cleanup_match(ematch, net);
1650 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001651 return ret;
1652}
1653
1654static int
Alexey Dobriyanf54e9362010-01-18 08:25:47 +01001655translate_compat_table(struct net *net,
1656 const char *name,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001657 unsigned int valid_hooks,
1658 struct xt_table_info **pinfo,
1659 void **pentry0,
1660 unsigned int total_size,
1661 unsigned int number,
1662 unsigned int *hook_entries,
1663 unsigned int *underflows)
1664{
1665 unsigned int i, j;
1666 struct xt_table_info *newinfo, *info;
1667 void *pos, *entry0, *entry1;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001668 struct compat_ip6t_entry *iter0;
1669 struct ip6t_entry *iter1;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001670 unsigned int size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001671 int ret = 0;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001672
1673 info = *pinfo;
1674 entry0 = *pentry0;
1675 size = total_size;
1676 info->number = number;
1677
1678 /* Init all hooks to impossible value. */
1679 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1680 info->hook_entry[i] = 0xFFFFFFFF;
1681 info->underflow[i] = 0xFFFFFFFF;
1682 }
1683
1684 duprintf("translate_compat_table: size %u\n", info->size);
1685 j = 0;
1686 xt_compat_lock(AF_INET6);
Eric Dumazet255d0dc2010-12-18 18:35:15 +01001687 xt_compat_init_offsets(AF_INET6, number);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001688 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001689 xt_entry_foreach(iter0, entry0, total_size) {
1690 ret = check_compat_entry_size_and_hooks(iter0, info, &size,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001691 entry0,
1692 entry0 + total_size,
1693 hook_entries,
1694 underflows,
1695 name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001696 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001697 goto out_unlock;
1698 ++j;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001699 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001700
1701 ret = -EINVAL;
1702 if (j != number) {
1703 duprintf("translate_compat_table: %u not %u entries\n",
1704 j, number);
1705 goto out_unlock;
1706 }
1707
1708 /* Check hooks all assigned */
1709 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1710 /* Only hooks which are valid */
1711 if (!(valid_hooks & (1 << i)))
1712 continue;
1713 if (info->hook_entry[i] == 0xFFFFFFFF) {
1714 duprintf("Invalid hook entry %u %u\n",
1715 i, hook_entries[i]);
1716 goto out_unlock;
1717 }
1718 if (info->underflow[i] == 0xFFFFFFFF) {
1719 duprintf("Invalid underflow %u %u\n",
1720 i, underflows[i]);
1721 goto out_unlock;
1722 }
1723 }
1724
1725 ret = -ENOMEM;
1726 newinfo = xt_alloc_table_info(size);
1727 if (!newinfo)
1728 goto out_unlock;
1729
1730 newinfo->number = number;
1731 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1732 newinfo->hook_entry[i] = info->hook_entry[i];
1733 newinfo->underflow[i] = info->underflow[i];
1734 }
1735 entry1 = newinfo->entries[raw_smp_processor_id()];
1736 pos = entry1;
1737 size = total_size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001738 xt_entry_foreach(iter0, entry0, total_size) {
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001739 ret = compat_copy_entry_from_user(iter0, &pos, &size,
1740 name, newinfo, entry1);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001741 if (ret != 0)
1742 break;
1743 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001744 xt_compat_flush_offsets(AF_INET6);
1745 xt_compat_unlock(AF_INET6);
1746 if (ret)
1747 goto free_newinfo;
1748
1749 ret = -ELOOP;
1750 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1751 goto free_newinfo;
1752
1753 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001754 xt_entry_foreach(iter1, entry1, newinfo->size) {
Jan Engelhardt05595182010-02-24 18:33:43 +01001755 ret = compat_check_entry(iter1, net, name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001756 if (ret != 0)
1757 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001758 ++i;
Florian Westphalcca77b72010-08-23 14:41:22 -07001759 if (strcmp(ip6t_get_target(iter1)->u.user.name,
1760 XT_ERROR_TARGET) == 0)
1761 ++newinfo->stacksize;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001762 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001763 if (ret) {
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001764 /*
1765 * The first i matches need cleanup_entry (calls ->destroy)
1766 * because they had called ->check already. The other j-i
1767 * entries need only release.
1768 */
1769 int skip = i;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001770 j -= i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001771 xt_entry_foreach(iter0, entry0, newinfo->size) {
1772 if (skip-- > 0)
1773 continue;
Jan Engelhardt05595182010-02-24 18:33:43 +01001774 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001775 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001776 compat_release_entry(iter0);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001777 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001778 xt_entry_foreach(iter1, entry1, newinfo->size) {
1779 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001780 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001781 cleanup_entry(iter1, net);
1782 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001783 xt_free_table_info(newinfo);
1784 return ret;
1785 }
1786
1787 /* And one copy for every other CPU */
1788 for_each_possible_cpu(i)
1789 if (newinfo->entries[i] && newinfo->entries[i] != entry1)
1790 memcpy(newinfo->entries[i], entry1, newinfo->size);
1791
1792 *pinfo = newinfo;
1793 *pentry0 = entry1;
1794 xt_free_table_info(info);
1795 return 0;
1796
1797free_newinfo:
1798 xt_free_table_info(newinfo);
1799out:
Jan Engelhardt05595182010-02-24 18:33:43 +01001800 xt_entry_foreach(iter0, entry0, total_size) {
1801 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001802 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001803 compat_release_entry(iter0);
1804 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001805 return ret;
1806out_unlock:
1807 xt_compat_flush_offsets(AF_INET6);
1808 xt_compat_unlock(AF_INET6);
1809 goto out;
1810}
1811
1812static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001813compat_do_replace(struct net *net, void __user *user, unsigned int len)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001814{
1815 int ret;
1816 struct compat_ip6t_replace tmp;
1817 struct xt_table_info *newinfo;
1818 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001819 struct ip6t_entry *iter;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001820
1821 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1822 return -EFAULT;
1823
1824 /* overflow check */
1825 if (tmp.size >= INT_MAX / num_possible_cpus())
1826 return -ENOMEM;
1827 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1828 return -ENOMEM;
Vasiliy Kulikov6a8ab0602011-03-15 13:37:13 +01001829 tmp.name[sizeof(tmp.name)-1] = 0;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001830
1831 newinfo = xt_alloc_table_info(tmp.size);
1832 if (!newinfo)
1833 return -ENOMEM;
1834
Patrick McHardy9c547952007-12-17 21:52:00 -08001835 /* choose the copy that is on our node/cpu */
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001836 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1837 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1838 tmp.size) != 0) {
1839 ret = -EFAULT;
1840 goto free_newinfo;
1841 }
1842
Alexey Dobriyanf54e9362010-01-18 08:25:47 +01001843 ret = translate_compat_table(net, tmp.name, tmp.valid_hooks,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001844 &newinfo, &loc_cpu_entry, tmp.size,
1845 tmp.num_entries, tmp.hook_entry,
1846 tmp.underflow);
1847 if (ret != 0)
1848 goto free_newinfo;
1849
1850 duprintf("compat_do_replace: Translated table\n");
1851
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001852 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001853 tmp.num_counters, compat_ptr(tmp.counters));
1854 if (ret)
1855 goto free_newinfo_untrans;
1856 return 0;
1857
1858 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001859 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001860 cleanup_entry(iter, net);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001861 free_newinfo:
1862 xt_free_table_info(newinfo);
1863 return ret;
1864}
1865
1866static int
1867compat_do_ip6t_set_ctl(struct sock *sk, int cmd, void __user *user,
1868 unsigned int len)
1869{
1870 int ret;
1871
1872 if (!capable(CAP_NET_ADMIN))
1873 return -EPERM;
1874
1875 switch (cmd) {
1876 case IP6T_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001877 ret = compat_do_replace(sock_net(sk), user, len);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001878 break;
1879
1880 case IP6T_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001881 ret = do_add_counters(sock_net(sk), user, len, 1);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001882 break;
1883
1884 default:
1885 duprintf("do_ip6t_set_ctl: unknown request %i\n", cmd);
1886 ret = -EINVAL;
1887 }
1888
1889 return ret;
1890}
1891
1892struct compat_ip6t_get_entries {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001893 char name[XT_TABLE_MAXNAMELEN];
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001894 compat_uint_t size;
1895 struct compat_ip6t_entry entrytable[0];
1896};
1897
1898static int
1899compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1900 void __user *userptr)
1901{
1902 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001903 const struct xt_table_info *private = table->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001904 void __user *pos;
1905 unsigned int size;
1906 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001907 const void *loc_cpu_entry;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001908 unsigned int i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001909 struct ip6t_entry *iter;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001910
1911 counters = alloc_counters(table);
1912 if (IS_ERR(counters))
1913 return PTR_ERR(counters);
1914
1915 /* choose the copy that is on our node/cpu, ...
1916 * This choice is lazy (because current thread is
1917 * allowed to migrate to another cpu)
1918 */
1919 loc_cpu_entry = private->entries[raw_smp_processor_id()];
1920 pos = userptr;
1921 size = total_size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001922 xt_entry_foreach(iter, loc_cpu_entry, total_size) {
1923 ret = compat_copy_entry_to_user(iter, &pos,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001924 &size, counters, i++);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001925 if (ret != 0)
1926 break;
1927 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001928
1929 vfree(counters);
1930 return ret;
1931}
1932
1933static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001934compat_get_entries(struct net *net, struct compat_ip6t_get_entries __user *uptr,
1935 int *len)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001936{
1937 int ret;
1938 struct compat_ip6t_get_entries get;
1939 struct xt_table *t;
1940
1941 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001942 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001943 return -EINVAL;
1944 }
1945
1946 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1947 return -EFAULT;
1948
1949 if (*len != sizeof(struct compat_ip6t_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001950 duprintf("compat_get_entries: %u != %zu\n",
1951 *len, sizeof(get) + get.size);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001952 return -EINVAL;
1953 }
1954
1955 xt_compat_lock(AF_INET6);
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001956 t = xt_find_table_lock(net, AF_INET6, get.name);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001957 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001958 const struct xt_table_info *private = t->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001959 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08001960 duprintf("t->private->number = %u\n", private->number);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001961 ret = compat_table_info(private, &info);
1962 if (!ret && get.size == info.size) {
1963 ret = compat_copy_entries_to_user(private->size,
1964 t, uptr->entrytable);
1965 } else if (!ret) {
1966 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001967 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001968 ret = -EAGAIN;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001969 }
1970 xt_compat_flush_offsets(AF_INET6);
1971 module_put(t->me);
1972 xt_table_unlock(t);
1973 } else
1974 ret = t ? PTR_ERR(t) : -ENOENT;
1975
1976 xt_compat_unlock(AF_INET6);
1977 return ret;
1978}
1979
1980static int do_ip6t_get_ctl(struct sock *, int, void __user *, int *);
1981
1982static int
1983compat_do_ip6t_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1984{
1985 int ret;
1986
1987 if (!capable(CAP_NET_ADMIN))
1988 return -EPERM;
1989
1990 switch (cmd) {
1991 case IP6T_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001992 ret = get_info(sock_net(sk), user, len, 1);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001993 break;
1994 case IP6T_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001995 ret = compat_get_entries(sock_net(sk), user, len);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001996 break;
1997 default:
1998 ret = do_ip6t_get_ctl(sk, cmd, user, len);
1999 }
2000 return ret;
2001}
2002#endif
2003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004static int
2005do_ip6t_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
2006{
2007 int ret;
2008
2009 if (!capable(CAP_NET_ADMIN))
2010 return -EPERM;
2011
2012 switch (cmd) {
2013 case IP6T_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002014 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 break;
2016
2017 case IP6T_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002018 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 break;
2020
2021 default:
2022 duprintf("do_ip6t_set_ctl: unknown request %i\n", cmd);
2023 ret = -EINVAL;
2024 }
2025
2026 return ret;
2027}
2028
2029static int
2030do_ip6t_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2031{
2032 int ret;
2033
2034 if (!capable(CAP_NET_ADMIN))
2035 return -EPERM;
2036
2037 switch (cmd) {
Patrick McHardy433665c2007-12-17 21:50:05 -08002038 case IP6T_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002039 ret = get_info(sock_net(sk), user, len, 0);
Patrick McHardy433665c2007-12-17 21:50:05 -08002040 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Patrick McHardyd9243572007-12-17 21:50:22 -08002042 case IP6T_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002043 ret = get_entries(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
Harald Welte6b7d31f2005-10-26 09:34:24 +02002046 case IP6T_SO_GET_REVISION_MATCH:
2047 case IP6T_SO_GET_REVISION_TARGET: {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02002048 struct xt_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002049 int target;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002050
2051 if (*len != sizeof(rev)) {
2052 ret = -EINVAL;
2053 break;
2054 }
2055 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2056 ret = -EFAULT;
2057 break;
2058 }
Vasiliy Kulikov6a8ab0602011-03-15 13:37:13 +01002059 rev.name[sizeof(rev.name)-1] = 0;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002060
2061 if (cmd == IP6T_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08002062 target = 1;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002063 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08002064 target = 0;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002065
Harald Welte2e4e6a12006-01-12 13:30:04 -08002066 try_then_request_module(xt_find_revision(AF_INET6, rev.name,
2067 rev.revision,
2068 target, &ret),
Harald Welte6b7d31f2005-10-26 09:34:24 +02002069 "ip6t_%s", rev.name);
2070 break;
2071 }
2072
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 default:
2074 duprintf("do_ip6t_get_ctl: unknown request %i\n", cmd);
2075 ret = -EINVAL;
2076 }
2077
2078 return ret;
2079}
2080
Jan Engelhardt35aad0f2009-08-24 14:56:30 +02002081struct xt_table *ip6t_register_table(struct net *net,
2082 const struct xt_table *table,
Alexey Dobriyan336b5172008-01-31 04:03:45 -08002083 const struct ip6t_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
2085 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002086 struct xt_table_info *newinfo;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +02002087 struct xt_table_info bootstrap = {0};
Eric Dumazet31836062005-12-13 23:13:48 -08002088 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08002089 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Harald Welte2e4e6a12006-01-12 13:30:04 -08002091 newinfo = xt_alloc_table_info(repl->size);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002092 if (!newinfo) {
2093 ret = -ENOMEM;
2094 goto out;
2095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Patrick McHardy9c547952007-12-17 21:52:00 -08002097 /* choose the copy on our node/cpu, but dont care about preemption */
Eric Dumazet31836062005-12-13 23:13:48 -08002098 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
2099 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
Jan Engelhardt0f234212010-02-24 18:36:04 +01002101 ret = translate_table(net, newinfo, loc_cpu_entry, repl);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002102 if (ret != 0)
2103 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Alexey Dobriyan336b5172008-01-31 04:03:45 -08002105 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08002106 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002107 ret = PTR_ERR(new_table);
2108 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 }
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002110 return new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002112out_free:
2113 xt_free_table_info(newinfo);
2114out:
2115 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116}
2117
Alexey Dobriyanf54e9362010-01-18 08:25:47 +01002118void ip6t_unregister_table(struct net *net, struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119{
Harald Welte2e4e6a12006-01-12 13:30:04 -08002120 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08002121 void *loc_cpu_entry;
Alexey Dobriyandf200962008-01-31 04:05:34 -08002122 struct module *table_owner = table->me;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01002123 struct ip6t_entry *iter;
Eric Dumazet31836062005-12-13 23:13:48 -08002124
Harald Welte2e4e6a12006-01-12 13:30:04 -08002125 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127 /* Decrease module usage counts and free resources */
Harald Welte2e4e6a12006-01-12 13:30:04 -08002128 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01002129 xt_entry_foreach(iter, loc_cpu_entry, private->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01002130 cleanup_entry(iter, net);
Alexey Dobriyandf200962008-01-31 04:05:34 -08002131 if (private->number > private->initial_entries)
2132 module_put(table_owner);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002133 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134}
2135
2136/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardtccb79bd2007-07-07 22:16:00 -07002137static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138icmp6_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2139 u_int8_t type, u_int8_t code,
Jan Engelhardtccb79bd2007-07-07 22:16:00 -07002140 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141{
2142 return (type == test_type && code >= min_code && code <= max_code)
2143 ^ invert;
2144}
2145
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002146static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +02002147icmp6_match(const struct sk_buff *skb, struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148{
Jan Engelhardt5452e422008-04-14 11:15:35 +02002149 const struct icmp6hdr *ic;
2150 struct icmp6hdr _icmph;
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002151 const struct ip6t_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
2153 /* Must not be a fragment. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002154 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002155 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002157 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 if (ic == NULL) {
2159 /* We've been asked to examine this packet, and we
Patrick McHardy9c547952007-12-17 21:52:00 -08002160 * can't. Hence, no choice but to drop.
2161 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtb4ba2612009-07-07 20:54:30 +02002163 par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002164 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 }
2166
2167 return icmp6_type_code_match(icmpinfo->type,
2168 icmpinfo->code[0],
2169 icmpinfo->code[1],
2170 ic->icmp6_type, ic->icmp6_code,
2171 !!(icmpinfo->invflags&IP6T_ICMP_INV));
2172}
2173
2174/* Called when user tries to insert an entry of this type. */
Jan Engelhardtb0f38452010-03-19 17:16:42 +01002175static int icmp6_checkentry(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002177 const struct ip6t_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Patrick McHardy7f939712006-03-20 18:01:43 -08002179 /* Must specify no unknown invflags */
Jan Engelhardtbd414ee2010-03-23 16:35:56 +01002180 return (icmpinfo->invflags & ~IP6T_ICMP_INV) ? -EINVAL : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181}
2182
2183/* The built-in targets: standard (NULL) and error. */
Jan Engelhardt45385062009-07-04 12:50:00 +02002184static struct xt_target ip6t_builtin_tg[] __read_mostly = {
2185 {
Jan Engelhardt243bf6e2010-10-13 16:28:00 +02002186 .name = XT_STANDARD_TARGET,
Jan Engelhardt45385062009-07-04 12:50:00 +02002187 .targetsize = sizeof(int),
2188 .family = NFPROTO_IPV6,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002189#ifdef CONFIG_COMPAT
Jan Engelhardt45385062009-07-04 12:50:00 +02002190 .compatsize = sizeof(compat_int_t),
2191 .compat_from_user = compat_standard_from_user,
2192 .compat_to_user = compat_standard_to_user,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002193#endif
Jan Engelhardt45385062009-07-04 12:50:00 +02002194 },
2195 {
Jan Engelhardt243bf6e2010-10-13 16:28:00 +02002196 .name = XT_ERROR_TARGET,
Jan Engelhardt45385062009-07-04 12:50:00 +02002197 .target = ip6t_error,
Jan Engelhardt12b00c22010-10-13 15:56:56 +02002198 .targetsize = XT_FUNCTION_MAXNAMELEN,
Jan Engelhardt45385062009-07-04 12:50:00 +02002199 .family = NFPROTO_IPV6,
2200 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201};
2202
2203static struct nf_sockopt_ops ip6t_sockopts = {
2204 .pf = PF_INET6,
2205 .set_optmin = IP6T_BASE_CTL,
2206 .set_optmax = IP6T_SO_SET_MAX+1,
2207 .set = do_ip6t_set_ctl,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002208#ifdef CONFIG_COMPAT
2209 .compat_set = compat_do_ip6t_set_ctl,
2210#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 .get_optmin = IP6T_BASE_CTL,
2212 .get_optmax = IP6T_SO_GET_MAX+1,
2213 .get = do_ip6t_get_ctl,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002214#ifdef CONFIG_COMPAT
2215 .compat_get = compat_do_ip6t_get_ctl,
2216#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002217 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218};
2219
Jan Engelhardt45385062009-07-04 12:50:00 +02002220static struct xt_match ip6t_builtin_mt[] __read_mostly = {
2221 {
2222 .name = "icmp6",
2223 .match = icmp6_match,
2224 .matchsize = sizeof(struct ip6t_icmp),
2225 .checkentry = icmp6_checkentry,
2226 .proto = IPPROTO_ICMPV6,
2227 .family = NFPROTO_IPV6,
2228 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229};
2230
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002231static int __net_init ip6_tables_net_init(struct net *net)
2232{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002233 return xt_proto_init(net, NFPROTO_IPV6);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002234}
2235
2236static void __net_exit ip6_tables_net_exit(struct net *net)
2237{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002238 xt_proto_fini(net, NFPROTO_IPV6);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002239}
2240
2241static struct pernet_operations ip6_tables_net_ops = {
2242 .init = ip6_tables_net_init,
2243 .exit = ip6_tables_net_exit,
2244};
2245
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002246static int __init ip6_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247{
2248 int ret;
2249
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002250 ret = register_pernet_subsys(&ip6_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002251 if (ret < 0)
2252 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002253
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002254 /* No one else will be downing sem now, so we won't sleep */
Jan Engelhardt45385062009-07-04 12:50:00 +02002255 ret = xt_register_targets(ip6t_builtin_tg, ARRAY_SIZE(ip6t_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002256 if (ret < 0)
2257 goto err2;
Jan Engelhardt45385062009-07-04 12:50:00 +02002258 ret = xt_register_matches(ip6t_builtin_mt, ARRAY_SIZE(ip6t_builtin_mt));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002259 if (ret < 0)
2260 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
2262 /* Register setsockopt */
2263 ret = nf_register_sockopt(&ip6t_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002264 if (ret < 0)
2265 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01002267 pr_info("(C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002269
2270err5:
Jan Engelhardt45385062009-07-04 12:50:00 +02002271 xt_unregister_matches(ip6t_builtin_mt, ARRAY_SIZE(ip6t_builtin_mt));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002272err4:
Jan Engelhardt45385062009-07-04 12:50:00 +02002273 xt_unregister_targets(ip6t_builtin_tg, ARRAY_SIZE(ip6t_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002274err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002275 unregister_pernet_subsys(&ip6_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002276err1:
2277 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278}
2279
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002280static void __exit ip6_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281{
2282 nf_unregister_sockopt(&ip6t_sockopts);
Patrick McHardy9c547952007-12-17 21:52:00 -08002283
Jan Engelhardt45385062009-07-04 12:50:00 +02002284 xt_unregister_matches(ip6t_builtin_mt, ARRAY_SIZE(ip6t_builtin_mt));
2285 xt_unregister_targets(ip6t_builtin_tg, ARRAY_SIZE(ip6t_builtin_tg));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002286 unregister_pernet_subsys(&ip6_tables_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287}
2288
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002289/*
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002290 * find the offset to specified header or the protocol number of last header
2291 * if target < 0. "last header" is transport protocol header, ESP, or
2292 * "No next header".
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002293 *
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002294 * If target header is found, its offset is set in *offset and return protocol
2295 * number. Otherwise, return -1.
2296 *
Patrick McHardy6d381632006-10-24 16:15:10 -07002297 * If the first fragment doesn't contain the final protocol header or
2298 * NEXTHDR_NONE it is considered invalid.
2299 *
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002300 * Note that non-1st fragment is special case that "the protocol number
2301 * of last header" is "next header" field in Fragment header. In this case,
2302 * *offset is meaningless and fragment offset is stored in *fragoff if fragoff
2303 * isn't NULL.
2304 *
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002305 */
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002306int ipv6_find_hdr(const struct sk_buff *skb, unsigned int *offset,
2307 int target, unsigned short *fragoff)
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002308{
Arnaldo Carvalho de Melo6b88dd92007-03-19 22:29:03 -03002309 unsigned int start = skb_network_offset(skb) + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002310 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002311 unsigned int len = skb->len - start;
2312
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002313 if (fragoff)
2314 *fragoff = 0;
2315
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002316 while (nexthdr != target) {
2317 struct ipv6_opt_hdr _hdr, *hp;
2318 unsigned int hdrlen;
2319
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002320 if ((!ipv6_ext_hdr(nexthdr)) || nexthdr == NEXTHDR_NONE) {
2321 if (target < 0)
2322 break;
Patrick McHardy6d381632006-10-24 16:15:10 -07002323 return -ENOENT;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002324 }
2325
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002326 hp = skb_header_pointer(skb, start, sizeof(_hdr), &_hdr);
2327 if (hp == NULL)
Patrick McHardy6d381632006-10-24 16:15:10 -07002328 return -EBADMSG;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002329 if (nexthdr == NEXTHDR_FRAGMENT) {
Al Viroe69a4adc2006-11-14 20:56:00 -08002330 unsigned short _frag_off;
2331 __be16 *fp;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002332 fp = skb_header_pointer(skb,
2333 start+offsetof(struct frag_hdr,
2334 frag_off),
2335 sizeof(_frag_off),
2336 &_frag_off);
2337 if (fp == NULL)
Patrick McHardy6d381632006-10-24 16:15:10 -07002338 return -EBADMSG;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002339
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002340 _frag_off = ntohs(*fp) & ~0x7;
2341 if (_frag_off) {
2342 if (target < 0 &&
2343 ((!ipv6_ext_hdr(hp->nexthdr)) ||
Patrick McHardy337dde72006-11-14 19:49:13 -08002344 hp->nexthdr == NEXTHDR_NONE)) {
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002345 if (fragoff)
2346 *fragoff = _frag_off;
2347 return hp->nexthdr;
2348 }
Patrick McHardy6d381632006-10-24 16:15:10 -07002349 return -ENOENT;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002350 }
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002351 hdrlen = 8;
2352 } else if (nexthdr == NEXTHDR_AUTH)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002353 hdrlen = (hp->hdrlen + 2) << 2;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002354 else
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002355 hdrlen = ipv6_optlen(hp);
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002356
2357 nexthdr = hp->nexthdr;
2358 len -= hdrlen;
2359 start += hdrlen;
2360 }
2361
2362 *offset = start;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002363 return nexthdr;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002364}
2365
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366EXPORT_SYMBOL(ip6t_register_table);
2367EXPORT_SYMBOL(ip6t_unregister_table);
2368EXPORT_SYMBOL(ip6t_do_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369EXPORT_SYMBOL(ip6t_ext_hdr);
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002370EXPORT_SYMBOL(ipv6_find_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002372module_init(ip6_tables_init);
2373module_exit(ip6_tables_fini);