blob: 1a732a1d3c8e13c58508cef9381d2d32e5a34448 [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>
Patrick McHardyf229f6c2013-04-06 15:24:29 +02006 * Copyright (c) 2006-2010 Patrick McHardy <kaber@trash.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
Joe Perchesa81b2ce2015-03-23 11:50:10 -070012
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +020013#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Joe Perchesa81b2ce2015-03-23 11:50:10 -070014
15#include <linux/kernel.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080016#include <linux/capability.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020017#include <linux/in.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/skbuff.h>
19#include <linux/kmod.h>
20#include <linux/vmalloc.h>
21#include <linux/netdevice.h>
22#include <linux/module.h>
Randy Dunlap4bdbf6c2006-07-03 19:47:27 -070023#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/icmpv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <net/ipv6.h>
Patrick McHardy3bc3fe52007-12-17 21:50:37 -080026#include <net/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/uaccess.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -080028#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/proc_fs.h>
Patrick McHardy3bc3fe52007-12-17 21:50:37 -080030#include <linux/err.h>
David S. Millerc8923c62005-10-13 14:41:23 -070031#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include <linux/netfilter_ipv6/ip6_tables.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -080034#include <linux/netfilter/x_tables.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080035#include <net/netfilter/nf_log.h>
Jan Engelhardte3eaa992009-06-17 22:14:54 +020036#include "../../netfilter/xt_repldata.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38MODULE_LICENSE("GPL");
39MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
40MODULE_DESCRIPTION("IPv6 packet filter");
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/*#define DEBUG_IP_FIREWALL*/
43/*#define DEBUG_ALLOW_ALL*/ /* Useful for remote debugging */
44/*#define DEBUG_IP_FIREWALL_USER*/
45
46#ifdef DEBUG_IP_FIREWALL
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010047#define dprintf(format, args...) pr_info(format , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#else
49#define dprintf(format, args...)
50#endif
51
52#ifdef DEBUG_IP_FIREWALL_USER
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010053#define duprintf(format, args...) pr_info(format , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#else
55#define duprintf(format, args...)
56#endif
57
58#ifdef CONFIG_NETFILTER_DEBUG
Stephen Hemmingeraf567602010-05-13 15:00:20 +020059#define IP_NF_ASSERT(x) WARN_ON(!(x))
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#else
61#define IP_NF_ASSERT(x)
62#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#if 0
65/* All the better to debug you with... */
66#define static
67#define inline
68#endif
69
Jan Engelhardte3eaa992009-06-17 22:14:54 +020070void *ip6t_alloc_initial_table(const struct xt_table *info)
71{
72 return xt_alloc_initial_table(ip6t, IP6T);
73}
74EXPORT_SYMBOL_GPL(ip6t_alloc_initial_table);
75
Harald Welte6b7d31f2005-10-26 09:34:24 +020076/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 We keep a set of rules for each CPU, so we can avoid write-locking
Harald Welte6b7d31f2005-10-26 09:34:24 +020078 them in the softirq when updating the counters and therefore
79 only need to read-lock in the softirq; doing a write_lock_bh() in user
80 context stops packets coming through and allows user context to read
81 the counters or update the rules.
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 Hence the start of any table is given by get_table() below. */
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/* Returns whether matches rule or not. */
Denys Vlasenko022748a2008-01-14 23:44:05 -080086/* Performance critical - called for every packet */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070087static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -070088ip6_packet_match(const struct sk_buff *skb,
89 const char *indev,
90 const char *outdev,
91 const struct ip6t_ip6 *ip6info,
92 unsigned int *protoff,
Jan Engelhardtcff533a2007-07-07 22:15:12 -070093 int *fragoff, bool *hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 unsigned long ret;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -070096 const struct ipv6hdr *ipv6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Jan Engelhardte79ec502007-12-17 22:44:06 -080098#define FWINV(bool, invflg) ((bool) ^ !!(ip6info->invflags & (invflg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Patrick McHardyf2ffd9e2006-03-20 18:03:16 -0800100 if (FWINV(ipv6_masked_addr_cmp(&ipv6->saddr, &ip6info->smsk,
Joe Perches3666ed12009-11-23 23:17:06 +0100101 &ip6info->src), IP6T_INV_SRCIP) ||
102 FWINV(ipv6_masked_addr_cmp(&ipv6->daddr, &ip6info->dmsk,
103 &ip6info->dst), IP6T_INV_DSTIP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 dprintf("Source or dest mismatch.\n");
105/*
106 dprintf("SRC: %u. Mask: %u. Target: %u.%s\n", ip->saddr,
107 ipinfo->smsk.s_addr, ipinfo->src.s_addr,
108 ipinfo->invflags & IP6T_INV_SRCIP ? " (INV)" : "");
109 dprintf("DST: %u. Mask: %u. Target: %u.%s\n", ip->daddr,
110 ipinfo->dmsk.s_addr, ipinfo->dst.s_addr,
111 ipinfo->invflags & IP6T_INV_DSTIP ? " (INV)" : "");*/
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700112 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114
Eric Dumazetb8dfe492009-03-25 17:31:52 +0100115 ret = ifname_compare_aligned(indev, ip6info->iniface, ip6info->iniface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 if (FWINV(ret != 0, IP6T_INV_VIA_IN)) {
118 dprintf("VIA in mismatch (%s vs %s).%s\n",
119 indev, ip6info->iniface,
120 ip6info->invflags&IP6T_INV_VIA_IN ?" (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(outdev, ip6info->outiface, ip6info->outiface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 if (FWINV(ret != 0, IP6T_INV_VIA_OUT)) {
127 dprintf("VIA out mismatch (%s vs %s).%s\n",
128 outdev, ip6info->outiface,
129 ip6info->invflags&IP6T_INV_VIA_OUT ?" (INV)":"");
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700130 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 }
132
133/* ... might want to do something with class and flowlabel here ... */
134
135 /* look for the desired protocol header */
136 if((ip6info->flags & IP6T_F_PROTO)) {
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800137 int protohdr;
138 unsigned short _frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Hans Schillstrom84018f52012-04-23 03:35:26 +0000140 protohdr = ipv6_find_hdr(skb, protoff, -1, &_frag_off, NULL);
Patrick McHardy51d8b1a2006-10-24 16:14:04 -0700141 if (protohdr < 0) {
142 if (_frag_off == 0)
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700143 *hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700144 return false;
Patrick McHardy51d8b1a2006-10-24 16:14:04 -0700145 }
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800146 *fragoff = _frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 dprintf("Packet protocol %hi ?= %s%hi.\n",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900149 protohdr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 ip6info->invflags & IP6T_INV_PROTO ? "!":"",
151 ip6info->proto);
152
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800153 if (ip6info->proto == protohdr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 if(ip6info->invflags & IP6T_INV_PROTO) {
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700155 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700157 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
159
160 /* We need match for the '-p all', too! */
161 if ((ip6info->proto != 0) &&
162 !(ip6info->invflags & IP6T_INV_PROTO))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700163 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700165 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
168/* should be ip6 safe */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800169static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170ip6_checkentry(const struct ip6t_ip6 *ipv6)
171{
172 if (ipv6->flags & ~IP6T_F_MASK) {
173 duprintf("Unknown flag bits set: %08X\n",
174 ipv6->flags & ~IP6T_F_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700175 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177 if (ipv6->invflags & ~IP6T_INV_MASK) {
178 duprintf("Unknown invflag bits set: %08X\n",
179 ipv6->invflags & ~IP6T_INV_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700180 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700182 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
185static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200186ip6t_error(struct sk_buff *skb, const struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Joe Perchese87cc472012-05-13 21:56:26 +0000188 net_info_ratelimited("error: `%s'\n", (const char *)par->targinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 return NF_DROP;
191}
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193static inline struct ip6t_entry *
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200194get_entry(const void *base, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
196 return (struct ip6t_entry *)(base + offset);
197}
198
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700199/* All zeroes == unconditional rule. */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800200/* Mildly perf critical (only if packet tracing is on) */
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200201static inline bool unconditional(const struct ip6t_ip6 *ipv6)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700202{
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200203 static const struct ip6t_ip6 uncond;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700204
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200205 return memcmp(ipv6, &uncond, sizeof(uncond)) == 0;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700206}
207
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200208static inline const struct xt_entry_target *
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200209ip6t_get_target_c(const struct ip6t_entry *e)
210{
211 return ip6t_get_target((struct ip6t_entry *)e);
212}
213
Amerigo Wang07a93622012-10-29 16:23:10 +0000214#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700215/* This cries for unification! */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800216static const char *const hooknames[] = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800217 [NF_INET_PRE_ROUTING] = "PREROUTING",
218 [NF_INET_LOCAL_IN] = "INPUT",
219 [NF_INET_FORWARD] = "FORWARD",
220 [NF_INET_LOCAL_OUT] = "OUTPUT",
221 [NF_INET_POST_ROUTING] = "POSTROUTING",
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700222};
223
224enum nf_ip_trace_comments {
225 NF_IP6_TRACE_COMMENT_RULE,
226 NF_IP6_TRACE_COMMENT_RETURN,
227 NF_IP6_TRACE_COMMENT_POLICY,
228};
229
Denys Vlasenko022748a2008-01-14 23:44:05 -0800230static const char *const comments[] = {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700231 [NF_IP6_TRACE_COMMENT_RULE] = "rule",
232 [NF_IP6_TRACE_COMMENT_RETURN] = "return",
233 [NF_IP6_TRACE_COMMENT_POLICY] = "policy",
234};
235
236static struct nf_loginfo trace_loginfo = {
237 .type = NF_LOG_TYPE_LOG,
238 .u = {
239 .log = {
Joe Perchesa81b2ce2015-03-23 11:50:10 -0700240 .level = LOGLEVEL_WARNING,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700241 .logflags = NF_LOG_MASK,
242 },
243 },
244};
245
Denys Vlasenko022748a2008-01-14 23:44:05 -0800246/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700247static inline int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200248get_chainname_rulenum(const struct ip6t_entry *s, const struct ip6t_entry *e,
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200249 const char *hookname, const char **chainname,
250 const char **comment, unsigned int *rulenum)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700251{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200252 const struct xt_standard_target *t = (void *)ip6t_get_target_c(s);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700253
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200254 if (strcmp(t->target.u.kernel.target->name, XT_ERROR_TARGET) == 0) {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700255 /* Head of user chain: ERROR target with chainname */
256 *chainname = t->target.data;
257 (*rulenum) = 0;
258 } else if (s == e) {
259 (*rulenum)++;
260
Joe Perches3666ed12009-11-23 23:17:06 +0100261 if (s->target_offset == sizeof(struct ip6t_entry) &&
262 strcmp(t->target.u.kernel.target->name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200263 XT_STANDARD_TARGET) == 0 &&
Joe Perches3666ed12009-11-23 23:17:06 +0100264 t->verdict < 0 &&
265 unconditional(&s->ipv6)) {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700266 /* Tail of chains: STANDARD target (return/policy) */
267 *comment = *chainname == hookname
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200268 ? comments[NF_IP6_TRACE_COMMENT_POLICY]
269 : comments[NF_IP6_TRACE_COMMENT_RETURN];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700270 }
271 return 1;
272 } else
273 (*rulenum)++;
274
275 return 0;
276}
277
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200278static void trace_packet(const struct sk_buff *skb,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700279 unsigned int hook,
280 const struct net_device *in,
281 const struct net_device *out,
Jan Engelhardtecb6f852008-01-31 03:54:47 -0800282 const char *tablename,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200283 const struct xt_table_info *private,
284 const struct ip6t_entry *e)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700285{
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200286 const void *table_base;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200287 const struct ip6t_entry *root;
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200288 const char *hookname, *chainname, *comment;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100289 const struct ip6t_entry *iter;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700290 unsigned int rulenum = 0;
Gao feng30e0c6a2013-03-24 23:50:40 +0000291 struct net *net = dev_net(in ? in : out);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700292
Jan Engelhardtccf5bd82009-04-15 20:27:03 +0200293 table_base = private->entries[smp_processor_id()];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700294 root = get_entry(table_base, private->hook_entry[hook]);
295
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200296 hookname = chainname = hooknames[hook];
297 comment = comments[NF_IP6_TRACE_COMMENT_RULE];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700298
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100299 xt_entry_foreach(iter, root, private->size - private->hook_entry[hook])
300 if (get_chainname_rulenum(iter, e, hookname,
301 &chainname, &comment, &rulenum) != 0)
302 break;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700303
Pablo Neira Ayuso4017a7e2015-03-02 01:10:28 +0100304 nf_log_trace(net, AF_INET6, hook, skb, in, out, &trace_loginfo,
305 "TRACE: %s:%s:%s:%u ",
306 tablename, chainname, comment, rulenum);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700307}
308#endif
309
Jan Engelhardt98e86402009-04-15 21:06:05 +0200310static inline __pure struct ip6t_entry *
311ip6t_next_entry(const struct ip6t_entry *entry)
312{
313 return (void *)entry + entry->next_offset;
314}
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316/* Returns one of the generic firewall policies, like NF_ACCEPT. */
317unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700318ip6t_do_table(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 unsigned int hook,
David S. Miller8f8a3712015-04-03 21:09:51 -0400320 const struct nf_hook_state *state,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700321 struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Harald Welte6b7d31f2005-10-26 09:34:24 +0200323 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 /* Initializing verdict to NF_DROP keeps gcc happy. */
325 unsigned int verdict = NF_DROP;
326 const char *indev, *outdev;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200327 const void *table_base;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200328 struct ip6t_entry *e, **jumpstack;
329 unsigned int *stackptr, origptr, cpu;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200330 const struct xt_table_info *private;
Jan Engelhardtde74c162009-07-05 18:26:37 +0200331 struct xt_action_param acpar;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200332 unsigned int addend;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 /* Initialization */
David S. Miller8f8a3712015-04-03 21:09:51 -0400335 indev = state->in ? state->in->name : nulldevname;
336 outdev = state->out ? state->out->name : nulldevname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 /* We handle fragments by dealing with the first fragment as
338 * if it was a normal packet. All other fragments are treated
339 * normally, except that they will NEVER match rules that ask
340 * things we don't know, ie. tcp syn flag or ports). If the
341 * rule is also a fragment-specific rule, non-fragments won't
342 * match it. */
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200343 acpar.hotdrop = false;
David S. Miller8f8a3712015-04-03 21:09:51 -0400344 acpar.in = state->in;
345 acpar.out = state->out;
Jan Engelhardtde74c162009-07-05 18:26:37 +0200346 acpar.family = NFPROTO_IPV6;
347 acpar.hooknum = hook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 IP_NF_ASSERT(table->valid_hooks & (1 << hook));
Stephen Hemminger78454472009-02-20 10:35:32 +0100350
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200351 local_bh_disable();
352 addend = xt_write_recseq_begin();
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700353 private = table->private;
Will Deaconb416c142013-10-21 13:14:53 +0100354 /*
355 * Ensure we load private-> members after we've fetched the base
356 * pointer.
357 */
358 smp_read_barrier_depends();
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200359 cpu = smp_processor_id();
360 table_base = private->entries[cpu];
361 jumpstack = (struct ip6t_entry **)private->jumpstack[cpu];
Eric Dumazet7489aec2010-05-31 16:41:35 +0200362 stackptr = per_cpu_ptr(private->stackptr, cpu);
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200363 origptr = *stackptr;
Stephen Hemminger78454472009-02-20 10:35:32 +0100364
Harald Welte2e4e6a12006-01-12 13:30:04 -0800365 e = get_entry(table_base, private->hook_entry[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 do {
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200368 const struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100369 const struct xt_entry_match *ematch;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 IP_NF_ASSERT(e);
Hans Schillstrom84018f52012-04-23 03:35:26 +0000372 acpar.thoff = 0;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200373 if (!ip6_packet_match(skb, indev, outdev, &e->ipv6,
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200374 &acpar.thoff, &acpar.fragoff, &acpar.hotdrop)) {
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100375 no_match:
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200376 e = ip6t_next_entry(e);
377 continue;
378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Jan Engelhardtef53d702009-07-09 19:14:18 +0200380 xt_ematch_foreach(ematch, e) {
Jan Engelhardtde74c162009-07-05 18:26:37 +0200381 acpar.match = ematch->u.kernel.match;
382 acpar.matchinfo = ematch->data;
383 if (!acpar.match->match(skb, &acpar))
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100384 goto no_match;
Jan Engelhardtef53d702009-07-09 19:14:18 +0200385 }
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100386
Changli Gao261abc82010-07-23 16:24:34 +0200387 ADD_COUNTER(e->counters, skb->len, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200389 t = ip6t_get_target_c(e);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200390 IP_NF_ASSERT(t->u.kernel.target);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700391
Amerigo Wang07a93622012-10-29 16:23:10 +0000392#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200393 /* The packet is traced: log it */
394 if (unlikely(skb->nf_trace))
David S. Miller8f8a3712015-04-03 21:09:51 -0400395 trace_packet(skb, hook, state->in, state->out,
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200396 table->name, private, e);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700397#endif
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200398 /* Standard target? */
399 if (!t->u.kernel.target->target) {
400 int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200402 v = ((struct xt_standard_target *)t)->verdict;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200403 if (v < 0) {
404 /* Pop from stack? */
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200405 if (v != XT_RETURN) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000406 verdict = (unsigned int)(-v) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 break;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200408 }
Eric Dumazetdb856672011-03-20 15:40:06 +0100409 if (*stackptr <= origptr)
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200410 e = get_entry(table_base,
411 private->underflow[hook]);
412 else
413 e = ip6t_next_entry(jumpstack[--*stackptr]);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200414 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
Joe Perches3666ed12009-11-23 23:17:06 +0100416 if (table_base + v != ip6t_next_entry(e) &&
417 !(e->ipv6.flags & IP6T_F_GOTO)) {
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200418 if (*stackptr >= private->stacksize) {
419 verdict = NF_DROP;
420 break;
421 }
422 jumpstack[(*stackptr)++] = e;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200425 e = get_entry(table_base, v);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200426 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200428
Jan Engelhardtde74c162009-07-05 18:26:37 +0200429 acpar.target = t->u.kernel.target;
430 acpar.targinfo = t->data;
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200431
Jan Engelhardtde74c162009-07-05 18:26:37 +0200432 verdict = t->u.kernel.target->target(skb, &acpar);
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200433 if (verdict == XT_CONTINUE)
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200434 e = ip6t_next_entry(e);
435 else
436 /* Verdict */
437 break;
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200438 } while (!acpar.hotdrop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200440 *stackptr = origptr;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200441
442 xt_write_recseq_end(addend);
443 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445#ifdef DEBUG_ALLOW_ALL
446 return NF_ACCEPT;
447#else
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200448 if (acpar.hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return NF_DROP;
450 else return verdict;
451#endif
452}
453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454/* Figures out from what hook each rule can be called: returns 0 if
455 there are loops. Puts hook bitmask in comefrom. */
456static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200457mark_source_chains(const struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800458 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
460 unsigned int hook;
461
462 /* No recursion; use packet counter to save back ptrs (reset
463 to 0 as we leave), and comefrom to save source hook bitmask */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800464 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 unsigned int pos = newinfo->hook_entry[hook];
Patrick McHardy9c547952007-12-17 21:52:00 -0800466 struct ip6t_entry *e = (struct ip6t_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 if (!(valid_hooks & (1 << hook)))
469 continue;
470
471 /* Set initial back pointer. */
472 e->counters.pcnt = pos;
473
474 for (;;) {
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200475 const struct xt_standard_target *t
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200476 = (void *)ip6t_get_target_c(e);
Patrick McHardy9c547952007-12-17 21:52:00 -0800477 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800479 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200480 pr_err("iptables: loop hook %u pos %u %08X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 hook, pos, e->comefrom);
482 return 0;
483 }
Patrick McHardy9c547952007-12-17 21:52:00 -0800484 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 /* Unconditional return/END. */
Joe Perches3666ed12009-11-23 23:17:06 +0100487 if ((e->target_offset == sizeof(struct ip6t_entry) &&
488 (strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200489 XT_STANDARD_TARGET) == 0) &&
Joe Perches3666ed12009-11-23 23:17:06 +0100490 t->verdict < 0 &&
491 unconditional(&e->ipv6)) || visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 unsigned int oldpos, size;
493
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100494 if ((strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200495 XT_STANDARD_TARGET) == 0) &&
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100496 t->verdict < -NF_MAX_VERDICT - 1) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800497 duprintf("mark_source_chains: bad "
498 "negative verdict (%i)\n",
499 t->verdict);
500 return 0;
501 }
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 /* Return: backtrack through the last
504 big jump. */
505 do {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800506 e->comefrom ^= (1<<NF_INET_NUMHOOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507#ifdef DEBUG_IP_FIREWALL_USER
508 if (e->comefrom
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800509 & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 duprintf("Back unset "
511 "on hook %u "
512 "rule %u\n",
513 hook, pos);
514 }
515#endif
516 oldpos = pos;
517 pos = e->counters.pcnt;
518 e->counters.pcnt = 0;
519
520 /* We're at the start. */
521 if (pos == oldpos)
522 goto next;
523
524 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800525 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 } while (oldpos == pos + e->next_offset);
527
528 /* Move along one */
529 size = e->next_offset;
530 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800531 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 e->counters.pcnt = pos;
533 pos += size;
534 } else {
535 int newpos = t->verdict;
536
537 if (strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200538 XT_STANDARD_TARGET) == 0 &&
Joe Perches3666ed12009-11-23 23:17:06 +0100539 newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800540 if (newpos > newinfo->size -
541 sizeof(struct ip6t_entry)) {
542 duprintf("mark_source_chains: "
543 "bad verdict (%i)\n",
544 newpos);
545 return 0;
546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 /* This a jump; chase it. */
548 duprintf("Jump rule %u -> %u\n",
549 pos, newpos);
550 } else {
551 /* ... this is a fallthru */
552 newpos = pos + e->next_offset;
553 }
554 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800555 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 e->counters.pcnt = pos;
557 pos = newpos;
558 }
559 }
560 next:
561 duprintf("Finished chain %u\n", hook);
562 }
563 return 1;
564}
565
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200566static void cleanup_match(struct xt_entry_match *m, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200568 struct xt_mtdtor_param par;
569
Alexey Dobriyanf54e9362010-01-18 08:25:47 +0100570 par.net = net;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200571 par.match = m->u.kernel.match;
572 par.matchinfo = m->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200573 par.family = NFPROTO_IPV6;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200574 if (par.match->destroy != NULL)
575 par.match->destroy(&par);
576 module_put(par.match->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
Denys Vlasenko022748a2008-01-14 23:44:05 -0800579static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200580check_entry(const struct ip6t_entry *e, const char *name)
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800581{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200582 const struct xt_entry_target *t;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800583
584 if (!ip6_checkentry(&e->ipv6)) {
585 duprintf("ip_tables: ip check failed %p %s.\n", e, name);
586 return -EINVAL;
587 }
588
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200589 if (e->target_offset + sizeof(struct xt_entry_target) >
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800590 e->next_offset)
591 return -EINVAL;
592
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200593 t = ip6t_get_target_c(e);
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800594 if (e->target_offset + t->u.target_size > e->next_offset)
595 return -EINVAL;
596
597 return 0;
598}
599
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200600static int check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800601{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200602 const struct ip6t_ip6 *ipv6 = par->entryinfo;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800603 int ret;
604
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200605 par->match = m->u.kernel.match;
606 par->matchinfo = m->data;
607
Jan Engelhardt916a9172008-10-08 11:35:20 +0200608 ret = xt_check_match(par, m->u.match_size - sizeof(*m),
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200609 ipv6->proto, ipv6->invflags & IP6T_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200610 if (ret < 0) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800611 duprintf("ip_tables: check failed for `%s'.\n",
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200612 par.match->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200613 return ret;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800614 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200615 return 0;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800616}
617
Denys Vlasenko022748a2008-01-14 23:44:05 -0800618static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200619find_check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800621 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800622 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200624 match = xt_request_find_match(NFPROTO_IPV6, m->u.user.name,
625 m->u.user.revision);
626 if (IS_ERR(match)) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800627 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200628 return PTR_ERR(match);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 }
630 m->u.kernel.match = match;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100632 ret = check_match(m, par);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800633 if (ret)
634 goto err;
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800637err:
638 module_put(m->u.kernel.match->me);
639 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641
Patrick McHardyadd67462010-02-03 13:45:12 +0100642static int check_target(struct ip6t_entry *e, struct net *net, const char *name)
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800643{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200644 struct xt_entry_target *t = ip6t_get_target(e);
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200645 struct xt_tgchk_param par = {
Patrick McHardyadd67462010-02-03 13:45:12 +0100646 .net = net,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200647 .table = name,
648 .entryinfo = e,
649 .target = t->u.kernel.target,
650 .targinfo = t->data,
651 .hook_mask = e->comefrom,
Jan Engelhardt916a9172008-10-08 11:35:20 +0200652 .family = NFPROTO_IPV6,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200653 };
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800654 int ret;
655
656 t = ip6t_get_target(e);
Jan Engelhardt916a9172008-10-08 11:35:20 +0200657 ret = xt_check_target(&par, t->u.target_size - sizeof(*t),
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200658 e->ipv6.proto, e->ipv6.invflags & IP6T_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200659 if (ret < 0) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800660 duprintf("ip_tables: check failed for `%s'.\n",
661 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200662 return ret;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800663 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200664 return 0;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800665}
666
Denys Vlasenko022748a2008-01-14 23:44:05 -0800667static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100668find_check_entry(struct ip6t_entry *e, struct net *net, const char *name,
Jan Engelhardt05595182010-02-24 18:33:43 +0100669 unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200671 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800672 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 int ret;
674 unsigned int j;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200675 struct xt_mtchk_param mtpar;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100676 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800678 ret = check_entry(e, name);
679 if (ret)
680 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 j = 0;
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100683 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200684 mtpar.table = name;
685 mtpar.entryinfo = &e->ipv6;
686 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200687 mtpar.family = NFPROTO_IPV6;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100688 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100689 ret = find_check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100690 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100691 goto cleanup_matches;
692 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100693 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695 t = ip6t_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200696 target = xt_request_find_target(NFPROTO_IPV6, t->u.user.name,
697 t->u.user.revision);
698 if (IS_ERR(target)) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800699 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200700 ret = PTR_ERR(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 goto cleanup_matches;
702 }
703 t->u.kernel.target = target;
Harald Welte6b7d31f2005-10-26 09:34:24 +0200704
Patrick McHardyadd67462010-02-03 13:45:12 +0100705 ret = check_target(e, net, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800706 if (ret)
707 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800709 err:
710 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100712 xt_ematch_foreach(ematch, e) {
713 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100714 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100715 cleanup_match(ematch, net);
716 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return ret;
718}
719
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200720static bool check_underflow(const struct ip6t_entry *e)
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200721{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200722 const struct xt_entry_target *t;
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200723 unsigned int verdict;
724
725 if (!unconditional(&e->ipv6))
726 return false;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200727 t = ip6t_get_target_c(e);
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200728 if (strcmp(t->u.user.name, XT_STANDARD_TARGET) != 0)
729 return false;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200730 verdict = ((struct xt_standard_target *)t)->verdict;
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200731 verdict = -verdict - 1;
732 return verdict == NF_DROP || verdict == NF_ACCEPT;
733}
734
Denys Vlasenko022748a2008-01-14 23:44:05 -0800735static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736check_entry_size_and_hooks(struct ip6t_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800737 struct xt_table_info *newinfo,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200738 const unsigned char *base,
739 const unsigned char *limit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 const unsigned int *hook_entries,
741 const unsigned int *underflows,
Jan Engelhardt05595182010-02-24 18:33:43 +0100742 unsigned int valid_hooks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
744 unsigned int h;
745
Joe Perches3666ed12009-11-23 23:17:06 +0100746 if ((unsigned long)e % __alignof__(struct ip6t_entry) != 0 ||
747 (unsigned char *)e + sizeof(struct ip6t_entry) >= limit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 duprintf("Bad offset %p\n", e);
749 return -EINVAL;
750 }
751
752 if (e->next_offset
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200753 < sizeof(struct ip6t_entry) + sizeof(struct xt_entry_target)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 duprintf("checking: element %p size %u\n",
755 e, e->next_offset);
756 return -EINVAL;
757 }
758
759 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800760 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Jan Engelhardta7d51732009-07-18 14:52:58 +0200761 if (!(valid_hooks & (1 << h)))
762 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if ((unsigned char *)e - base == hook_entries[h])
764 newinfo->hook_entry[h] = hook_entries[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200765 if ((unsigned char *)e - base == underflows[h]) {
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200766 if (!check_underflow(e)) {
767 pr_err("Underflows must be unconditional and "
768 "use the STANDARD target with "
769 "ACCEPT/DROP\n");
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200770 return -EINVAL;
771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 newinfo->underflow[h] = underflows[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800777 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 e->comefrom = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return 0;
780}
781
Jan Engelhardt05595182010-02-24 18:33:43 +0100782static void cleanup_entry(struct ip6t_entry *e, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200784 struct xt_tgdtor_param par;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200785 struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100786 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100789 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100790 cleanup_match(ematch, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 t = ip6t_get_target(e);
Jan Engelhardta2df1642008-10-08 11:35:19 +0200792
Patrick McHardyadd67462010-02-03 13:45:12 +0100793 par.net = net;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200794 par.target = t->u.kernel.target;
795 par.targinfo = t->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200796 par.family = NFPROTO_IPV6;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200797 if (par.target->destroy != NULL)
798 par.target->destroy(&par);
799 module_put(par.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
801
802/* Checks and translates the user-supplied table segment (held in
803 newinfo) */
804static int
Jan Engelhardt0f234212010-02-24 18:36:04 +0100805translate_table(struct net *net, struct xt_table_info *newinfo, void *entry0,
806 const struct ip6t_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100808 struct ip6t_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 unsigned int i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100810 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Jan Engelhardt0f234212010-02-24 18:36:04 +0100812 newinfo->size = repl->size;
813 newinfo->number = repl->num_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800816 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 newinfo->hook_entry[i] = 0xFFFFFFFF;
818 newinfo->underflow[i] = 0xFFFFFFFF;
819 }
820
821 duprintf("translate_table: size %u\n", newinfo->size);
822 i = 0;
823 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100824 xt_entry_foreach(iter, entry0, newinfo->size) {
825 ret = check_entry_size_and_hooks(iter, newinfo, entry0,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +0100826 entry0 + repl->size,
827 repl->hook_entry,
828 repl->underflow,
829 repl->valid_hooks);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100830 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +0100831 return ret;
832 ++i;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200833 if (strcmp(ip6t_get_target(iter)->u.user.name,
834 XT_ERROR_TARGET) == 0)
835 ++newinfo->stacksize;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Jan Engelhardt0f234212010-02-24 18:36:04 +0100838 if (i != repl->num_entries) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 duprintf("translate_table: %u not %u entries\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100840 i, repl->num_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 return -EINVAL;
842 }
843
844 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800845 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 /* Only hooks which are valid */
Jan Engelhardt0f234212010-02-24 18:36:04 +0100847 if (!(repl->valid_hooks & (1 << i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 continue;
849 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
850 duprintf("Invalid hook entry %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100851 i, repl->hook_entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 return -EINVAL;
853 }
854 if (newinfo->underflow[i] == 0xFFFFFFFF) {
855 duprintf("Invalid underflow %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100856 i, repl->underflow[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 return -EINVAL;
858 }
859 }
860
Jan Engelhardt0f234212010-02-24 18:36:04 +0100861 if (!mark_source_chains(newinfo, repl->valid_hooks, entry0))
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800862 return -ELOOP;
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 /* Finally, each sanity check must pass */
865 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100866 xt_entry_foreach(iter, entry0, newinfo->size) {
Jan Engelhardt0f234212010-02-24 18:36:04 +0100867 ret = find_check_entry(iter, net, repl->name, repl->size);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100868 if (ret != 0)
869 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100870 ++i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800873 if (ret != 0) {
Jan Engelhardt05595182010-02-24 18:33:43 +0100874 xt_entry_foreach(iter, entry0, newinfo->size) {
875 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100876 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100877 cleanup_entry(iter, net);
878 }
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800879 return ret;
880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882 /* And one copy for every other CPU */
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700883 for_each_possible_cpu(i) {
Eric Dumazet31836062005-12-13 23:13:48 -0800884 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
885 memcpy(newinfo->entries[i], entry0, newinfo->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 }
887
Patrick McHardy9c547952007-12-17 21:52:00 -0800888 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800892get_counters(const struct xt_table_info *t,
893 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100895 struct ip6t_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 unsigned int cpu;
897 unsigned int i;
898
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700899 for_each_possible_cpu(cpu) {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200900 seqcount_t *s = &per_cpu(xt_recseq, cpu);
Eric Dumazet83723d62011-01-10 20:11:38 +0100901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 i = 0;
Jan Engelhardt05595182010-02-24 18:33:43 +0100903 xt_entry_foreach(iter, t->entries[cpu], t->size) {
Eric Dumazet83723d62011-01-10 20:11:38 +0100904 u64 bcnt, pcnt;
905 unsigned int start;
906
907 do {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200908 start = read_seqcount_begin(s);
Eric Dumazet83723d62011-01-10 20:11:38 +0100909 bcnt = iter->counters.bcnt;
910 pcnt = iter->counters.pcnt;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200911 } while (read_seqcount_retry(s, start));
Eric Dumazet83723d62011-01-10 20:11:38 +0100912
913 ADD_COUNTER(counters[i], bcnt, pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +0100914 ++i;
915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 }
Stephen Hemminger78454472009-02-20 10:35:32 +0100917}
918
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200919static struct xt_counters *alloc_counters(const struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800921 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800922 struct xt_counters *counters;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200923 const struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925 /* We need atomic snapshot of counters: rest doesn't change
926 (other than comefrom, which userspace doesn't care
927 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800928 countersize = sizeof(struct xt_counters) * private->number;
Eric Dumazet83723d62011-01-10 20:11:38 +0100929 counters = vzalloc(countersize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 if (counters == NULL)
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700932 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700934 get_counters(private, counters);
Stephen Hemminger78454472009-02-20 10:35:32 +0100935
Eric Dumazet49a88d12009-04-06 17:06:55 +0200936 return counters;
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800937}
938
939static int
940copy_entries_to_user(unsigned int total_size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200941 const struct xt_table *table,
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800942 void __user *userptr)
943{
944 unsigned int off, num;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200945 const struct ip6t_entry *e;
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800946 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200947 const struct xt_table_info *private = table->private;
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800948 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200949 const void *loc_cpu_entry;
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800950
951 counters = alloc_counters(table);
952 if (IS_ERR(counters))
953 return PTR_ERR(counters);
954
Patrick McHardy9c547952007-12-17 21:52:00 -0800955 /* choose the copy that is on our node/cpu, ...
956 * This choice is lazy (because current thread is
957 * allowed to migrate to another cpu)
958 */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800959 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -0800960 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 ret = -EFAULT;
962 goto free_counters;
963 }
964
965 /* FIXME: use iterator macros --RR */
966 /* ... then go back and fix counters and names */
967 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
968 unsigned int i;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200969 const struct xt_entry_match *m;
970 const struct xt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Eric Dumazet31836062005-12-13 23:13:48 -0800972 e = (struct ip6t_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 if (copy_to_user(userptr + off
974 + offsetof(struct ip6t_entry, counters),
975 &counters[num],
976 sizeof(counters[num])) != 0) {
977 ret = -EFAULT;
978 goto free_counters;
979 }
980
981 for (i = sizeof(struct ip6t_entry);
982 i < e->target_offset;
983 i += m->u.match_size) {
984 m = (void *)e + i;
985
986 if (copy_to_user(userptr + off + i
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200987 + offsetof(struct xt_entry_match,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 u.user.name),
989 m->u.kernel.match->name,
990 strlen(m->u.kernel.match->name)+1)
991 != 0) {
992 ret = -EFAULT;
993 goto free_counters;
994 }
995 }
996
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200997 t = ip6t_get_target_c(e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 if (copy_to_user(userptr + off + e->target_offset
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200999 + offsetof(struct xt_entry_target,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 u.user.name),
1001 t->u.kernel.target->name,
1002 strlen(t->u.kernel.target->name)+1) != 0) {
1003 ret = -EFAULT;
1004 goto free_counters;
1005 }
1006 }
1007
1008 free_counters:
1009 vfree(counters);
1010 return ret;
1011}
1012
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001013#ifdef CONFIG_COMPAT
Jan Engelhardt739674f2009-06-26 08:23:19 +02001014static void compat_standard_from_user(void *dst, const void *src)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001015{
1016 int v = *(compat_int_t *)src;
1017
1018 if (v > 0)
1019 v += xt_compat_calc_jump(AF_INET6, v);
1020 memcpy(dst, &v, sizeof(v));
1021}
1022
Jan Engelhardt739674f2009-06-26 08:23:19 +02001023static int compat_standard_to_user(void __user *dst, const void *src)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001024{
1025 compat_int_t cv = *(int *)src;
1026
1027 if (cv > 0)
1028 cv -= xt_compat_calc_jump(AF_INET6, cv);
1029 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
1030}
1031
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001032static int compat_calc_entry(const struct ip6t_entry *e,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001033 const struct xt_table_info *info,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001034 const void *base, struct xt_table_info *newinfo)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001035{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001036 const struct xt_entry_match *ematch;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001037 const struct xt_entry_target *t;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001038 unsigned int entry_offset;
1039 int off, i, ret;
1040
1041 off = sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1042 entry_offset = (void *)e - base;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001043 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001044 off += xt_compat_match_offset(ematch->u.kernel.match);
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001045 t = ip6t_get_target_c(e);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001046 off += xt_compat_target_offset(t->u.kernel.target);
1047 newinfo->size -= off;
1048 ret = xt_compat_add_offset(AF_INET6, entry_offset, off);
1049 if (ret)
1050 return ret;
1051
1052 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1053 if (info->hook_entry[i] &&
1054 (e < (struct ip6t_entry *)(base + info->hook_entry[i])))
1055 newinfo->hook_entry[i] -= off;
1056 if (info->underflow[i] &&
1057 (e < (struct ip6t_entry *)(base + info->underflow[i])))
1058 newinfo->underflow[i] -= off;
1059 }
1060 return 0;
1061}
1062
1063static int compat_table_info(const struct xt_table_info *info,
1064 struct xt_table_info *newinfo)
1065{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001066 struct ip6t_entry *iter;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001067 void *loc_cpu_entry;
Jan Engelhardt05595182010-02-24 18:33:43 +01001068 int ret;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001069
1070 if (!newinfo || !info)
1071 return -EINVAL;
1072
1073 /* we dont care about newinfo->entries[] */
1074 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1075 newinfo->initial_entries = 0;
1076 loc_cpu_entry = info->entries[raw_smp_processor_id()];
Eric Dumazet255d0dc2010-12-18 18:35:15 +01001077 xt_compat_init_offsets(AF_INET6, info->number);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001078 xt_entry_foreach(iter, loc_cpu_entry, info->size) {
1079 ret = compat_calc_entry(iter, info, loc_cpu_entry, newinfo);
1080 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001081 return ret;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001082 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001083 return 0;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001084}
1085#endif
1086
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001087static int get_info(struct net *net, void __user *user,
1088 const int *len, int compat)
Patrick McHardy433665c2007-12-17 21:50:05 -08001089{
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001090 char name[XT_TABLE_MAXNAMELEN];
Patrick McHardy433665c2007-12-17 21:50:05 -08001091 struct xt_table *t;
1092 int ret;
1093
1094 if (*len != sizeof(struct ip6t_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001095 duprintf("length %u != %zu\n", *len,
Patrick McHardy433665c2007-12-17 21:50:05 -08001096 sizeof(struct ip6t_getinfo));
1097 return -EINVAL;
1098 }
1099
1100 if (copy_from_user(name, user, sizeof(name)) != 0)
1101 return -EFAULT;
1102
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001103 name[XT_TABLE_MAXNAMELEN-1] = '\0';
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001104#ifdef CONFIG_COMPAT
1105 if (compat)
1106 xt_compat_lock(AF_INET6);
1107#endif
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001108 t = try_then_request_module(xt_find_table_lock(net, AF_INET6, name),
Patrick McHardy433665c2007-12-17 21:50:05 -08001109 "ip6table_%s", name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001110 if (!IS_ERR_OR_NULL(t)) {
Patrick McHardy433665c2007-12-17 21:50:05 -08001111 struct ip6t_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001112 const struct xt_table_info *private = t->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001113#ifdef CONFIG_COMPAT
Alexey Dobriyan14c7dbe2010-02-08 11:17:43 -08001114 struct xt_table_info tmp;
1115
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001116 if (compat) {
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001117 ret = compat_table_info(private, &tmp);
1118 xt_compat_flush_offsets(AF_INET6);
1119 private = &tmp;
1120 }
1121#endif
Jan Engelhardtcccbe5e2010-11-03 18:55:39 -07001122 memset(&info, 0, sizeof(info));
Patrick McHardy433665c2007-12-17 21:50:05 -08001123 info.valid_hooks = t->valid_hooks;
1124 memcpy(info.hook_entry, private->hook_entry,
1125 sizeof(info.hook_entry));
1126 memcpy(info.underflow, private->underflow,
1127 sizeof(info.underflow));
1128 info.num_entries = private->number;
1129 info.size = private->size;
Patrick McHardyb5dd6742007-12-17 21:52:35 -08001130 strcpy(info.name, name);
Patrick McHardy433665c2007-12-17 21:50:05 -08001131
1132 if (copy_to_user(user, &info, *len) != 0)
1133 ret = -EFAULT;
1134 else
1135 ret = 0;
1136
1137 xt_table_unlock(t);
1138 module_put(t->me);
1139 } else
1140 ret = t ? PTR_ERR(t) : -ENOENT;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001141#ifdef CONFIG_COMPAT
1142 if (compat)
1143 xt_compat_unlock(AF_INET6);
1144#endif
Patrick McHardy433665c2007-12-17 21:50:05 -08001145 return ret;
1146}
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001149get_entries(struct net *net, struct ip6t_get_entries __user *uptr,
1150 const int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
1152 int ret;
Patrick McHardyd9243572007-12-17 21:50:22 -08001153 struct ip6t_get_entries get;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001154 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Patrick McHardyd9243572007-12-17 21:50:22 -08001156 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001157 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Patrick McHardyd9243572007-12-17 21:50:22 -08001158 return -EINVAL;
1159 }
1160 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1161 return -EFAULT;
1162 if (*len != sizeof(struct ip6t_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001163 duprintf("get_entries: %u != %zu\n",
1164 *len, sizeof(get) + get.size);
Patrick McHardyd9243572007-12-17 21:50:22 -08001165 return -EINVAL;
1166 }
1167
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001168 t = xt_find_table_lock(net, AF_INET6, get.name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001169 if (!IS_ERR_OR_NULL(t)) {
Harald Welte2e4e6a12006-01-12 13:30:04 -08001170 struct xt_table_info *private = t->private;
1171 duprintf("t->private->number = %u\n", private->number);
Patrick McHardyd9243572007-12-17 21:50:22 -08001172 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001173 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 t, uptr->entrytable);
1175 else {
1176 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001177 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001178 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
Harald Welte6b7d31f2005-10-26 09:34:24 +02001180 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001181 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 } else
Harald Welte6b7d31f2005-10-26 09:34:24 +02001183 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 return ret;
1186}
1187
1188static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001189__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001190 struct xt_table_info *newinfo, unsigned int num_counters,
1191 void __user *counters_ptr)
1192{
1193 int ret;
1194 struct xt_table *t;
1195 struct xt_table_info *oldinfo;
1196 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001197 const void *loc_cpu_old_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001198 struct ip6t_entry *iter;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001199
1200 ret = 0;
Eric Dumazet83723d62011-01-10 20:11:38 +01001201 counters = vzalloc(num_counters * sizeof(struct xt_counters));
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001202 if (!counters) {
1203 ret = -ENOMEM;
1204 goto out;
1205 }
1206
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001207 t = try_then_request_module(xt_find_table_lock(net, AF_INET6, name),
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001208 "ip6table_%s", name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001209 if (IS_ERR_OR_NULL(t)) {
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001210 ret = t ? PTR_ERR(t) : -ENOENT;
1211 goto free_newinfo_counters_untrans;
1212 }
1213
1214 /* You lied! */
1215 if (valid_hooks != t->valid_hooks) {
1216 duprintf("Valid hook crap: %08X vs %08X\n",
1217 valid_hooks, t->valid_hooks);
1218 ret = -EINVAL;
1219 goto put_module;
1220 }
1221
1222 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1223 if (!oldinfo)
1224 goto put_module;
1225
1226 /* Update module usage count based on number of rules */
1227 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1228 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1229 if ((oldinfo->number > oldinfo->initial_entries) ||
1230 (newinfo->number <= oldinfo->initial_entries))
1231 module_put(t->me);
1232 if ((oldinfo->number > oldinfo->initial_entries) &&
1233 (newinfo->number <= oldinfo->initial_entries))
1234 module_put(t->me);
1235
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001236 /* Get the old counters, and synchronize with replace */
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001237 get_counters(oldinfo, counters);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001238
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001239 /* Decrease module usage counts and free resource */
1240 loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001241 xt_entry_foreach(iter, loc_cpu_old_entry, oldinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001242 cleanup_entry(iter, net);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001243
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001244 xt_free_table_info(oldinfo);
1245 if (copy_to_user(counters_ptr, counters,
Thomas Grafc58dd2d2014-04-04 17:57:45 +02001246 sizeof(struct xt_counters) * num_counters) != 0) {
1247 /* Silent error, can't fail, new table is already in place */
1248 net_warn_ratelimited("ip6tables: counters copy to user failed while replacing table\n");
1249 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001250 vfree(counters);
1251 xt_table_unlock(t);
1252 return ret;
1253
1254 put_module:
1255 module_put(t->me);
1256 xt_table_unlock(t);
1257 free_newinfo_counters_untrans:
1258 vfree(counters);
1259 out:
1260 return ret;
1261}
1262
1263static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001264do_replace(struct net *net, const void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265{
1266 int ret;
1267 struct ip6t_replace tmp;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001268 struct xt_table_info *newinfo;
1269 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001270 struct ip6t_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
1272 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1273 return -EFAULT;
1274
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001275 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001276 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1277 return -ENOMEM;
Vasiliy Kulikov6a8ab0602011-03-15 13:37:13 +01001278 tmp.name[sizeof(tmp.name)-1] = 0;
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001279
Harald Welte2e4e6a12006-01-12 13:30:04 -08001280 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 if (!newinfo)
1282 return -ENOMEM;
1283
Eric Dumazet31836062005-12-13 23:13:48 -08001284 /* choose the copy that is on our node/cpu */
1285 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1286 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 tmp.size) != 0) {
1288 ret = -EFAULT;
1289 goto free_newinfo;
1290 }
1291
Jan Engelhardt0f234212010-02-24 18:36:04 +01001292 ret = translate_table(net, newinfo, loc_cpu_entry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if (ret != 0)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001294 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 duprintf("ip_tables: Translated table\n");
1297
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001298 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001299 tmp.num_counters, tmp.counters);
1300 if (ret)
1301 goto free_newinfo_untrans;
1302 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001304 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001305 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001306 cleanup_entry(iter, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001308 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 return ret;
1310}
1311
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001313do_add_counters(struct net *net, const void __user *user, unsigned int len,
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001314 int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315{
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001316 unsigned int i, curcpu;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001317 struct xt_counters_info tmp;
1318 struct xt_counters *paddc;
1319 unsigned int num_counters;
1320 char *name;
1321 int size;
1322 void *ptmp;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001323 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001324 const struct xt_table_info *private;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001325 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001326 const void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001327 struct ip6t_entry *iter;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001328 unsigned int addend;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001329#ifdef CONFIG_COMPAT
1330 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001332 if (compat) {
1333 ptmp = &compat_tmp;
1334 size = sizeof(struct compat_xt_counters_info);
1335 } else
1336#endif
1337 {
1338 ptmp = &tmp;
1339 size = sizeof(struct xt_counters_info);
1340 }
1341
1342 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 return -EFAULT;
1344
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001345#ifdef CONFIG_COMPAT
1346 if (compat) {
1347 num_counters = compat_tmp.num_counters;
1348 name = compat_tmp.name;
1349 } else
1350#endif
1351 {
1352 num_counters = tmp.num_counters;
1353 name = tmp.name;
1354 }
1355
1356 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 return -EINVAL;
1358
Eric Dumazete12f8e22010-06-04 13:31:29 +02001359 paddc = vmalloc(len - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 if (!paddc)
1361 return -ENOMEM;
1362
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001363 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 ret = -EFAULT;
1365 goto free;
1366 }
1367
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001368 t = xt_find_table_lock(net, AF_INET6, name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001369 if (IS_ERR_OR_NULL(t)) {
Harald Welte6b7d31f2005-10-26 09:34:24 +02001370 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 goto free;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001374
1375 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001376 private = t->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001377 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 ret = -EINVAL;
1379 goto unlock_up_free;
1380 }
1381
1382 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001383 /* Choose the copy that is on our node */
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001384 curcpu = smp_processor_id();
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001385 addend = xt_write_recseq_begin();
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001386 loc_cpu_entry = private->entries[curcpu];
Jan Engelhardt05595182010-02-24 18:33:43 +01001387 xt_entry_foreach(iter, loc_cpu_entry, private->size) {
1388 ADD_COUNTER(iter->counters, paddc[i].bcnt, paddc[i].pcnt);
1389 ++i;
1390 }
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001391 xt_write_recseq_end(addend);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001392
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 unlock_up_free:
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001394 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001395 xt_table_unlock(t);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001396 module_put(t->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 free:
1398 vfree(paddc);
1399
1400 return ret;
1401}
1402
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001403#ifdef CONFIG_COMPAT
1404struct compat_ip6t_replace {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001405 char name[XT_TABLE_MAXNAMELEN];
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001406 u32 valid_hooks;
1407 u32 num_entries;
1408 u32 size;
1409 u32 hook_entry[NF_INET_NUMHOOKS];
1410 u32 underflow[NF_INET_NUMHOOKS];
1411 u32 num_counters;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001412 compat_uptr_t counters; /* struct xt_counters * */
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001413 struct compat_ip6t_entry entries[0];
1414};
1415
1416static int
1417compat_copy_entry_to_user(struct ip6t_entry *e, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001418 unsigned int *size, struct xt_counters *counters,
Jan Engelhardt05595182010-02-24 18:33:43 +01001419 unsigned int i)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001420{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001421 struct xt_entry_target *t;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001422 struct compat_ip6t_entry __user *ce;
1423 u_int16_t target_offset, next_offset;
1424 compat_uint_t origsize;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001425 const struct xt_entry_match *ematch;
1426 int ret = 0;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001427
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001428 origsize = *size;
1429 ce = (struct compat_ip6t_entry __user *)*dstptr;
Jan Engelhardt05595182010-02-24 18:33:43 +01001430 if (copy_to_user(ce, e, sizeof(struct ip6t_entry)) != 0 ||
1431 copy_to_user(&ce->counters, &counters[i],
1432 sizeof(counters[i])) != 0)
1433 return -EFAULT;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001434
1435 *dstptr += sizeof(struct compat_ip6t_entry);
1436 *size -= sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1437
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001438 xt_ematch_foreach(ematch, e) {
1439 ret = xt_compat_match_to_user(ematch, dstptr, size);
1440 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001441 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001442 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001443 target_offset = e->target_offset - (origsize - *size);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001444 t = ip6t_get_target(e);
1445 ret = xt_compat_target_to_user(t, dstptr, size);
1446 if (ret)
Jan Engelhardt05595182010-02-24 18:33:43 +01001447 return ret;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001448 next_offset = e->next_offset - (origsize - *size);
Jan Engelhardt05595182010-02-24 18:33:43 +01001449 if (put_user(target_offset, &ce->target_offset) != 0 ||
1450 put_user(next_offset, &ce->next_offset) != 0)
1451 return -EFAULT;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001452 return 0;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001453}
1454
Denys Vlasenko022748a2008-01-14 23:44:05 -08001455static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001456compat_find_calc_match(struct xt_entry_match *m,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001457 const char *name,
1458 const struct ip6t_ip6 *ipv6,
1459 unsigned int hookmask,
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001460 int *size)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001461{
1462 struct xt_match *match;
1463
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001464 match = xt_request_find_match(NFPROTO_IPV6, m->u.user.name,
1465 m->u.user.revision);
1466 if (IS_ERR(match)) {
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001467 duprintf("compat_check_calc_match: `%s' not found\n",
1468 m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001469 return PTR_ERR(match);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001470 }
1471 m->u.kernel.match = match;
1472 *size += xt_compat_match_offset(match);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001473 return 0;
1474}
1475
Jan Engelhardt05595182010-02-24 18:33:43 +01001476static void compat_release_entry(struct compat_ip6t_entry *e)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001477{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001478 struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001479 struct xt_entry_match *ematch;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001480
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001481 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001482 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001483 module_put(ematch->u.kernel.match->me);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001484 t = compat_ip6t_get_target(e);
1485 module_put(t->u.kernel.target->me);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001486}
1487
Denys Vlasenko022748a2008-01-14 23:44:05 -08001488static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001489check_compat_entry_size_and_hooks(struct compat_ip6t_entry *e,
1490 struct xt_table_info *newinfo,
1491 unsigned int *size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001492 const unsigned char *base,
1493 const unsigned char *limit,
1494 const unsigned int *hook_entries,
1495 const unsigned int *underflows,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001496 const char *name)
1497{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001498 struct xt_entry_match *ematch;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001499 struct xt_entry_target *t;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001500 struct xt_target *target;
1501 unsigned int entry_offset;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001502 unsigned int j;
1503 int ret, off, h;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001504
1505 duprintf("check_compat_entry_size_and_hooks %p\n", e);
Joe Perches3666ed12009-11-23 23:17:06 +01001506 if ((unsigned long)e % __alignof__(struct compat_ip6t_entry) != 0 ||
1507 (unsigned char *)e + sizeof(struct compat_ip6t_entry) >= limit) {
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001508 duprintf("Bad offset %p, limit = %p\n", e, limit);
1509 return -EINVAL;
1510 }
1511
1512 if (e->next_offset < sizeof(struct compat_ip6t_entry) +
1513 sizeof(struct compat_xt_entry_target)) {
1514 duprintf("checking: element %p size %u\n",
1515 e, e->next_offset);
1516 return -EINVAL;
1517 }
1518
1519 /* For purposes of check_entry casting the compat entry is fine */
1520 ret = check_entry((struct ip6t_entry *)e, name);
1521 if (ret)
1522 return ret;
1523
1524 off = sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1525 entry_offset = (void *)e - (void *)base;
1526 j = 0;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001527 xt_ematch_foreach(ematch, e) {
1528 ret = compat_find_calc_match(ematch, name,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001529 &e->ipv6, e->comefrom, &off);
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001530 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001531 goto release_matches;
1532 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001533 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001534
1535 t = compat_ip6t_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001536 target = xt_request_find_target(NFPROTO_IPV6, t->u.user.name,
1537 t->u.user.revision);
1538 if (IS_ERR(target)) {
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001539 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
1540 t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001541 ret = PTR_ERR(target);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001542 goto release_matches;
1543 }
1544 t->u.kernel.target = target;
1545
1546 off += xt_compat_target_offset(target);
1547 *size += off;
1548 ret = xt_compat_add_offset(AF_INET6, entry_offset, off);
1549 if (ret)
1550 goto out;
1551
1552 /* Check hooks & underflows */
1553 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
1554 if ((unsigned char *)e - base == hook_entries[h])
1555 newinfo->hook_entry[h] = hook_entries[h];
1556 if ((unsigned char *)e - base == underflows[h])
1557 newinfo->underflow[h] = underflows[h];
1558 }
1559
1560 /* Clear counters and comefrom */
1561 memset(&e->counters, 0, sizeof(e->counters));
1562 e->comefrom = 0;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001563 return 0;
1564
1565out:
1566 module_put(t->u.kernel.target->me);
1567release_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001568 xt_ematch_foreach(ematch, e) {
1569 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001570 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001571 module_put(ematch->u.kernel.match->me);
1572 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001573 return ret;
1574}
1575
1576static int
1577compat_copy_entry_from_user(struct compat_ip6t_entry *e, void **dstptr,
1578 unsigned int *size, const char *name,
1579 struct xt_table_info *newinfo, unsigned char *base)
1580{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001581 struct xt_entry_target *t;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001582 struct ip6t_entry *de;
1583 unsigned int origsize;
1584 int ret, h;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001585 struct xt_entry_match *ematch;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001586
1587 ret = 0;
1588 origsize = *size;
1589 de = (struct ip6t_entry *)*dstptr;
1590 memcpy(de, e, sizeof(struct ip6t_entry));
1591 memcpy(&de->counters, &e->counters, sizeof(e->counters));
1592
1593 *dstptr += sizeof(struct ip6t_entry);
1594 *size += sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1595
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001596 xt_ematch_foreach(ematch, e) {
1597 ret = xt_compat_match_from_user(ematch, dstptr, size);
1598 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001599 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001600 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001601 de->target_offset = e->target_offset - (origsize - *size);
1602 t = compat_ip6t_get_target(e);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001603 xt_compat_target_from_user(t, dstptr, size);
1604
1605 de->next_offset = e->next_offset - (origsize - *size);
1606 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
1607 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1608 newinfo->hook_entry[h] -= origsize - *size;
1609 if ((unsigned char *)de - base < newinfo->underflow[h])
1610 newinfo->underflow[h] -= origsize - *size;
1611 }
1612 return ret;
1613}
1614
Alexey Dobriyanf54e9362010-01-18 08:25:47 +01001615static int compat_check_entry(struct ip6t_entry *e, struct net *net,
Jan Engelhardt05595182010-02-24 18:33:43 +01001616 const char *name)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001617{
Patrick McHardyb0a63632008-01-31 04:10:18 -08001618 unsigned int j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001619 int ret = 0;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001620 struct xt_mtchk_param mtpar;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001621 struct xt_entry_match *ematch;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001622
1623 j = 0;
Alexey Dobriyanf54e9362010-01-18 08:25:47 +01001624 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001625 mtpar.table = name;
1626 mtpar.entryinfo = &e->ipv6;
1627 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +02001628 mtpar.family = NFPROTO_IPV6;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001629 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001630 ret = check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001631 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001632 goto cleanup_matches;
1633 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001634 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001635
Patrick McHardyadd67462010-02-03 13:45:12 +01001636 ret = check_target(e, net, name);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001637 if (ret)
1638 goto cleanup_matches;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001639 return 0;
1640
1641 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001642 xt_ematch_foreach(ematch, e) {
1643 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001644 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001645 cleanup_match(ematch, net);
1646 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001647 return ret;
1648}
1649
1650static int
Alexey Dobriyanf54e9362010-01-18 08:25:47 +01001651translate_compat_table(struct net *net,
1652 const char *name,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001653 unsigned int valid_hooks,
1654 struct xt_table_info **pinfo,
1655 void **pentry0,
1656 unsigned int total_size,
1657 unsigned int number,
1658 unsigned int *hook_entries,
1659 unsigned int *underflows)
1660{
1661 unsigned int i, j;
1662 struct xt_table_info *newinfo, *info;
1663 void *pos, *entry0, *entry1;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001664 struct compat_ip6t_entry *iter0;
1665 struct ip6t_entry *iter1;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001666 unsigned int size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001667 int ret = 0;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001668
1669 info = *pinfo;
1670 entry0 = *pentry0;
1671 size = total_size;
1672 info->number = number;
1673
1674 /* Init all hooks to impossible value. */
1675 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1676 info->hook_entry[i] = 0xFFFFFFFF;
1677 info->underflow[i] = 0xFFFFFFFF;
1678 }
1679
1680 duprintf("translate_compat_table: size %u\n", info->size);
1681 j = 0;
1682 xt_compat_lock(AF_INET6);
Eric Dumazet255d0dc2010-12-18 18:35:15 +01001683 xt_compat_init_offsets(AF_INET6, number);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001684 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001685 xt_entry_foreach(iter0, entry0, total_size) {
1686 ret = check_compat_entry_size_and_hooks(iter0, info, &size,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001687 entry0,
1688 entry0 + total_size,
1689 hook_entries,
1690 underflows,
1691 name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001692 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001693 goto out_unlock;
1694 ++j;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001695 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001696
1697 ret = -EINVAL;
1698 if (j != number) {
1699 duprintf("translate_compat_table: %u not %u entries\n",
1700 j, number);
1701 goto out_unlock;
1702 }
1703
1704 /* Check hooks all assigned */
1705 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1706 /* Only hooks which are valid */
1707 if (!(valid_hooks & (1 << i)))
1708 continue;
1709 if (info->hook_entry[i] == 0xFFFFFFFF) {
1710 duprintf("Invalid hook entry %u %u\n",
1711 i, hook_entries[i]);
1712 goto out_unlock;
1713 }
1714 if (info->underflow[i] == 0xFFFFFFFF) {
1715 duprintf("Invalid underflow %u %u\n",
1716 i, underflows[i]);
1717 goto out_unlock;
1718 }
1719 }
1720
1721 ret = -ENOMEM;
1722 newinfo = xt_alloc_table_info(size);
1723 if (!newinfo)
1724 goto out_unlock;
1725
1726 newinfo->number = number;
1727 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1728 newinfo->hook_entry[i] = info->hook_entry[i];
1729 newinfo->underflow[i] = info->underflow[i];
1730 }
1731 entry1 = newinfo->entries[raw_smp_processor_id()];
1732 pos = entry1;
1733 size = total_size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001734 xt_entry_foreach(iter0, entry0, total_size) {
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001735 ret = compat_copy_entry_from_user(iter0, &pos, &size,
1736 name, newinfo, entry1);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001737 if (ret != 0)
1738 break;
1739 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001740 xt_compat_flush_offsets(AF_INET6);
1741 xt_compat_unlock(AF_INET6);
1742 if (ret)
1743 goto free_newinfo;
1744
1745 ret = -ELOOP;
1746 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1747 goto free_newinfo;
1748
1749 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001750 xt_entry_foreach(iter1, entry1, newinfo->size) {
Jan Engelhardt05595182010-02-24 18:33:43 +01001751 ret = compat_check_entry(iter1, net, name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001752 if (ret != 0)
1753 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001754 ++i;
Florian Westphalcca77b72010-08-23 14:41:22 -07001755 if (strcmp(ip6t_get_target(iter1)->u.user.name,
1756 XT_ERROR_TARGET) == 0)
1757 ++newinfo->stacksize;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001758 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001759 if (ret) {
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001760 /*
1761 * The first i matches need cleanup_entry (calls ->destroy)
1762 * because they had called ->check already. The other j-i
1763 * entries need only release.
1764 */
1765 int skip = i;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001766 j -= i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001767 xt_entry_foreach(iter0, entry0, newinfo->size) {
1768 if (skip-- > 0)
1769 continue;
Jan Engelhardt05595182010-02-24 18:33:43 +01001770 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001771 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001772 compat_release_entry(iter0);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001773 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001774 xt_entry_foreach(iter1, entry1, newinfo->size) {
1775 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001776 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001777 cleanup_entry(iter1, net);
1778 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001779 xt_free_table_info(newinfo);
1780 return ret;
1781 }
1782
1783 /* And one copy for every other CPU */
1784 for_each_possible_cpu(i)
1785 if (newinfo->entries[i] && newinfo->entries[i] != entry1)
1786 memcpy(newinfo->entries[i], entry1, newinfo->size);
1787
1788 *pinfo = newinfo;
1789 *pentry0 = entry1;
1790 xt_free_table_info(info);
1791 return 0;
1792
1793free_newinfo:
1794 xt_free_table_info(newinfo);
1795out:
Jan Engelhardt05595182010-02-24 18:33:43 +01001796 xt_entry_foreach(iter0, entry0, total_size) {
1797 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001798 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001799 compat_release_entry(iter0);
1800 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001801 return ret;
1802out_unlock:
1803 xt_compat_flush_offsets(AF_INET6);
1804 xt_compat_unlock(AF_INET6);
1805 goto out;
1806}
1807
1808static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001809compat_do_replace(struct net *net, void __user *user, unsigned int len)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001810{
1811 int ret;
1812 struct compat_ip6t_replace tmp;
1813 struct xt_table_info *newinfo;
1814 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001815 struct ip6t_entry *iter;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001816
1817 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1818 return -EFAULT;
1819
1820 /* overflow check */
1821 if (tmp.size >= INT_MAX / num_possible_cpus())
1822 return -ENOMEM;
1823 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1824 return -ENOMEM;
Vasiliy Kulikov6a8ab0602011-03-15 13:37:13 +01001825 tmp.name[sizeof(tmp.name)-1] = 0;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001826
1827 newinfo = xt_alloc_table_info(tmp.size);
1828 if (!newinfo)
1829 return -ENOMEM;
1830
Patrick McHardy9c547952007-12-17 21:52:00 -08001831 /* choose the copy that is on our node/cpu */
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001832 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1833 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1834 tmp.size) != 0) {
1835 ret = -EFAULT;
1836 goto free_newinfo;
1837 }
1838
Alexey Dobriyanf54e9362010-01-18 08:25:47 +01001839 ret = translate_compat_table(net, tmp.name, tmp.valid_hooks,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001840 &newinfo, &loc_cpu_entry, tmp.size,
1841 tmp.num_entries, tmp.hook_entry,
1842 tmp.underflow);
1843 if (ret != 0)
1844 goto free_newinfo;
1845
1846 duprintf("compat_do_replace: Translated table\n");
1847
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001848 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001849 tmp.num_counters, compat_ptr(tmp.counters));
1850 if (ret)
1851 goto free_newinfo_untrans;
1852 return 0;
1853
1854 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001855 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001856 cleanup_entry(iter, net);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001857 free_newinfo:
1858 xt_free_table_info(newinfo);
1859 return ret;
1860}
1861
1862static int
1863compat_do_ip6t_set_ctl(struct sock *sk, int cmd, void __user *user,
1864 unsigned int len)
1865{
1866 int ret;
1867
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001868 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001869 return -EPERM;
1870
1871 switch (cmd) {
1872 case IP6T_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001873 ret = compat_do_replace(sock_net(sk), user, len);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001874 break;
1875
1876 case IP6T_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001877 ret = do_add_counters(sock_net(sk), user, len, 1);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001878 break;
1879
1880 default:
1881 duprintf("do_ip6t_set_ctl: unknown request %i\n", cmd);
1882 ret = -EINVAL;
1883 }
1884
1885 return ret;
1886}
1887
1888struct compat_ip6t_get_entries {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001889 char name[XT_TABLE_MAXNAMELEN];
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001890 compat_uint_t size;
1891 struct compat_ip6t_entry entrytable[0];
1892};
1893
1894static int
1895compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1896 void __user *userptr)
1897{
1898 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001899 const struct xt_table_info *private = table->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001900 void __user *pos;
1901 unsigned int size;
1902 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001903 const void *loc_cpu_entry;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001904 unsigned int i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001905 struct ip6t_entry *iter;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001906
1907 counters = alloc_counters(table);
1908 if (IS_ERR(counters))
1909 return PTR_ERR(counters);
1910
1911 /* choose the copy that is on our node/cpu, ...
1912 * This choice is lazy (because current thread is
1913 * allowed to migrate to another cpu)
1914 */
1915 loc_cpu_entry = private->entries[raw_smp_processor_id()];
1916 pos = userptr;
1917 size = total_size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001918 xt_entry_foreach(iter, loc_cpu_entry, total_size) {
1919 ret = compat_copy_entry_to_user(iter, &pos,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001920 &size, counters, i++);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001921 if (ret != 0)
1922 break;
1923 }
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001924
1925 vfree(counters);
1926 return ret;
1927}
1928
1929static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001930compat_get_entries(struct net *net, struct compat_ip6t_get_entries __user *uptr,
1931 int *len)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001932{
1933 int ret;
1934 struct compat_ip6t_get_entries get;
1935 struct xt_table *t;
1936
1937 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001938 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001939 return -EINVAL;
1940 }
1941
1942 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1943 return -EFAULT;
1944
1945 if (*len != sizeof(struct compat_ip6t_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001946 duprintf("compat_get_entries: %u != %zu\n",
1947 *len, sizeof(get) + get.size);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001948 return -EINVAL;
1949 }
1950
1951 xt_compat_lock(AF_INET6);
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001952 t = xt_find_table_lock(net, AF_INET6, get.name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001953 if (!IS_ERR_OR_NULL(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001954 const struct xt_table_info *private = t->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001955 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08001956 duprintf("t->private->number = %u\n", private->number);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001957 ret = compat_table_info(private, &info);
1958 if (!ret && get.size == info.size) {
1959 ret = compat_copy_entries_to_user(private->size,
1960 t, uptr->entrytable);
1961 } else if (!ret) {
1962 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001963 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001964 ret = -EAGAIN;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001965 }
1966 xt_compat_flush_offsets(AF_INET6);
1967 module_put(t->me);
1968 xt_table_unlock(t);
1969 } else
1970 ret = t ? PTR_ERR(t) : -ENOENT;
1971
1972 xt_compat_unlock(AF_INET6);
1973 return ret;
1974}
1975
1976static int do_ip6t_get_ctl(struct sock *, int, void __user *, int *);
1977
1978static int
1979compat_do_ip6t_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1980{
1981 int ret;
1982
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001983 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001984 return -EPERM;
1985
1986 switch (cmd) {
1987 case IP6T_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001988 ret = get_info(sock_net(sk), user, len, 1);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001989 break;
1990 case IP6T_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001991 ret = compat_get_entries(sock_net(sk), user, len);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001992 break;
1993 default:
1994 ret = do_ip6t_get_ctl(sk, cmd, user, len);
1995 }
1996 return ret;
1997}
1998#endif
1999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000static int
2001do_ip6t_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
2002{
2003 int ret;
2004
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002005 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 return -EPERM;
2007
2008 switch (cmd) {
2009 case IP6T_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002010 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 break;
2012
2013 case IP6T_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002014 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 break;
2016
2017 default:
2018 duprintf("do_ip6t_set_ctl: unknown request %i\n", cmd);
2019 ret = -EINVAL;
2020 }
2021
2022 return ret;
2023}
2024
2025static int
2026do_ip6t_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2027{
2028 int ret;
2029
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002030 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 return -EPERM;
2032
2033 switch (cmd) {
Patrick McHardy433665c2007-12-17 21:50:05 -08002034 case IP6T_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002035 ret = get_info(sock_net(sk), user, len, 0);
Patrick McHardy433665c2007-12-17 21:50:05 -08002036 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
Patrick McHardyd9243572007-12-17 21:50:22 -08002038 case IP6T_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002039 ret = get_entries(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Harald Welte6b7d31f2005-10-26 09:34:24 +02002042 case IP6T_SO_GET_REVISION_MATCH:
2043 case IP6T_SO_GET_REVISION_TARGET: {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02002044 struct xt_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002045 int target;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002046
2047 if (*len != sizeof(rev)) {
2048 ret = -EINVAL;
2049 break;
2050 }
2051 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2052 ret = -EFAULT;
2053 break;
2054 }
Vasiliy Kulikov6a8ab0602011-03-15 13:37:13 +01002055 rev.name[sizeof(rev.name)-1] = 0;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002056
2057 if (cmd == IP6T_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08002058 target = 1;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002059 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08002060 target = 0;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002061
Harald Welte2e4e6a12006-01-12 13:30:04 -08002062 try_then_request_module(xt_find_revision(AF_INET6, rev.name,
2063 rev.revision,
2064 target, &ret),
Harald Welte6b7d31f2005-10-26 09:34:24 +02002065 "ip6t_%s", rev.name);
2066 break;
2067 }
2068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 default:
2070 duprintf("do_ip6t_get_ctl: unknown request %i\n", cmd);
2071 ret = -EINVAL;
2072 }
2073
2074 return ret;
2075}
2076
Jan Engelhardt35aad0f2009-08-24 14:56:30 +02002077struct xt_table *ip6t_register_table(struct net *net,
2078 const struct xt_table *table,
Alexey Dobriyan336b5172008-01-31 04:03:45 -08002079 const struct ip6t_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080{
2081 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002082 struct xt_table_info *newinfo;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +02002083 struct xt_table_info bootstrap = {0};
Eric Dumazet31836062005-12-13 23:13:48 -08002084 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08002085 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Harald Welte2e4e6a12006-01-12 13:30:04 -08002087 newinfo = xt_alloc_table_info(repl->size);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002088 if (!newinfo) {
2089 ret = -ENOMEM;
2090 goto out;
2091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
Patrick McHardy9c547952007-12-17 21:52:00 -08002093 /* choose the copy on our node/cpu, but dont care about preemption */
Eric Dumazet31836062005-12-13 23:13:48 -08002094 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
2095 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Jan Engelhardt0f234212010-02-24 18:36:04 +01002097 ret = translate_table(net, newinfo, loc_cpu_entry, repl);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002098 if (ret != 0)
2099 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
Alexey Dobriyan336b5172008-01-31 04:03:45 -08002101 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08002102 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002103 ret = PTR_ERR(new_table);
2104 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 }
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002106 return new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002108out_free:
2109 xt_free_table_info(newinfo);
2110out:
2111 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112}
2113
Alexey Dobriyanf54e9362010-01-18 08:25:47 +01002114void ip6t_unregister_table(struct net *net, struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115{
Harald Welte2e4e6a12006-01-12 13:30:04 -08002116 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08002117 void *loc_cpu_entry;
Alexey Dobriyandf200962008-01-31 04:05:34 -08002118 struct module *table_owner = table->me;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01002119 struct ip6t_entry *iter;
Eric Dumazet31836062005-12-13 23:13:48 -08002120
Harald Welte2e4e6a12006-01-12 13:30:04 -08002121 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
2123 /* Decrease module usage counts and free resources */
Harald Welte2e4e6a12006-01-12 13:30:04 -08002124 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01002125 xt_entry_foreach(iter, loc_cpu_entry, private->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01002126 cleanup_entry(iter, net);
Alexey Dobriyandf200962008-01-31 04:05:34 -08002127 if (private->number > private->initial_entries)
2128 module_put(table_owner);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002129 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130}
2131
2132/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardtccb79bd2007-07-07 22:16:00 -07002133static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134icmp6_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2135 u_int8_t type, u_int8_t code,
Jan Engelhardtccb79bd2007-07-07 22:16:00 -07002136 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137{
2138 return (type == test_type && code >= min_code && code <= max_code)
2139 ^ invert;
2140}
2141
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002142static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +02002143icmp6_match(const struct sk_buff *skb, struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144{
Jan Engelhardt5452e422008-04-14 11:15:35 +02002145 const struct icmp6hdr *ic;
2146 struct icmp6hdr _icmph;
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002147 const struct ip6t_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
2149 /* Must not be a fragment. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002150 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002151 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002153 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 if (ic == NULL) {
2155 /* We've been asked to examine this packet, and we
Patrick McHardy9c547952007-12-17 21:52:00 -08002156 * can't. Hence, no choice but to drop.
2157 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtb4ba2612009-07-07 20:54:30 +02002159 par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002160 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 }
2162
2163 return icmp6_type_code_match(icmpinfo->type,
2164 icmpinfo->code[0],
2165 icmpinfo->code[1],
2166 ic->icmp6_type, ic->icmp6_code,
2167 !!(icmpinfo->invflags&IP6T_ICMP_INV));
2168}
2169
2170/* Called when user tries to insert an entry of this type. */
Jan Engelhardtb0f38452010-03-19 17:16:42 +01002171static int icmp6_checkentry(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002173 const struct ip6t_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
Patrick McHardy7f939712006-03-20 18:01:43 -08002175 /* Must specify no unknown invflags */
Jan Engelhardtbd414ee2010-03-23 16:35:56 +01002176 return (icmpinfo->invflags & ~IP6T_ICMP_INV) ? -EINVAL : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177}
2178
2179/* The built-in targets: standard (NULL) and error. */
Jan Engelhardt45385062009-07-04 12:50:00 +02002180static struct xt_target ip6t_builtin_tg[] __read_mostly = {
2181 {
Jan Engelhardt243bf6e2010-10-13 16:28:00 +02002182 .name = XT_STANDARD_TARGET,
Jan Engelhardt45385062009-07-04 12:50:00 +02002183 .targetsize = sizeof(int),
2184 .family = NFPROTO_IPV6,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002185#ifdef CONFIG_COMPAT
Jan Engelhardt45385062009-07-04 12:50:00 +02002186 .compatsize = sizeof(compat_int_t),
2187 .compat_from_user = compat_standard_from_user,
2188 .compat_to_user = compat_standard_to_user,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002189#endif
Jan Engelhardt45385062009-07-04 12:50:00 +02002190 },
2191 {
Jan Engelhardt243bf6e2010-10-13 16:28:00 +02002192 .name = XT_ERROR_TARGET,
Jan Engelhardt45385062009-07-04 12:50:00 +02002193 .target = ip6t_error,
Jan Engelhardt12b00c22010-10-13 15:56:56 +02002194 .targetsize = XT_FUNCTION_MAXNAMELEN,
Jan Engelhardt45385062009-07-04 12:50:00 +02002195 .family = NFPROTO_IPV6,
2196 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197};
2198
2199static struct nf_sockopt_ops ip6t_sockopts = {
2200 .pf = PF_INET6,
2201 .set_optmin = IP6T_BASE_CTL,
2202 .set_optmax = IP6T_SO_SET_MAX+1,
2203 .set = do_ip6t_set_ctl,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002204#ifdef CONFIG_COMPAT
2205 .compat_set = compat_do_ip6t_set_ctl,
2206#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 .get_optmin = IP6T_BASE_CTL,
2208 .get_optmax = IP6T_SO_GET_MAX+1,
2209 .get = do_ip6t_get_ctl,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002210#ifdef CONFIG_COMPAT
2211 .compat_get = compat_do_ip6t_get_ctl,
2212#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002213 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214};
2215
Jan Engelhardt45385062009-07-04 12:50:00 +02002216static struct xt_match ip6t_builtin_mt[] __read_mostly = {
2217 {
2218 .name = "icmp6",
2219 .match = icmp6_match,
2220 .matchsize = sizeof(struct ip6t_icmp),
2221 .checkentry = icmp6_checkentry,
2222 .proto = IPPROTO_ICMPV6,
2223 .family = NFPROTO_IPV6,
2224 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225};
2226
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002227static int __net_init ip6_tables_net_init(struct net *net)
2228{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002229 return xt_proto_init(net, NFPROTO_IPV6);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002230}
2231
2232static void __net_exit ip6_tables_net_exit(struct net *net)
2233{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002234 xt_proto_fini(net, NFPROTO_IPV6);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002235}
2236
2237static struct pernet_operations ip6_tables_net_ops = {
2238 .init = ip6_tables_net_init,
2239 .exit = ip6_tables_net_exit,
2240};
2241
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002242static int __init ip6_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243{
2244 int ret;
2245
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002246 ret = register_pernet_subsys(&ip6_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002247 if (ret < 0)
2248 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002249
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002250 /* No one else will be downing sem now, so we won't sleep */
Jan Engelhardt45385062009-07-04 12:50:00 +02002251 ret = xt_register_targets(ip6t_builtin_tg, ARRAY_SIZE(ip6t_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002252 if (ret < 0)
2253 goto err2;
Jan Engelhardt45385062009-07-04 12:50:00 +02002254 ret = xt_register_matches(ip6t_builtin_mt, ARRAY_SIZE(ip6t_builtin_mt));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002255 if (ret < 0)
2256 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258 /* Register setsockopt */
2259 ret = nf_register_sockopt(&ip6t_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002260 if (ret < 0)
2261 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01002263 pr_info("(C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002265
2266err5:
Jan Engelhardt45385062009-07-04 12:50:00 +02002267 xt_unregister_matches(ip6t_builtin_mt, ARRAY_SIZE(ip6t_builtin_mt));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002268err4:
Jan Engelhardt45385062009-07-04 12:50:00 +02002269 xt_unregister_targets(ip6t_builtin_tg, ARRAY_SIZE(ip6t_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002270err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002271 unregister_pernet_subsys(&ip6_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002272err1:
2273 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274}
2275
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002276static void __exit ip6_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277{
2278 nf_unregister_sockopt(&ip6t_sockopts);
Patrick McHardy9c547952007-12-17 21:52:00 -08002279
Jan Engelhardt45385062009-07-04 12:50:00 +02002280 xt_unregister_matches(ip6t_builtin_mt, ARRAY_SIZE(ip6t_builtin_mt));
2281 xt_unregister_targets(ip6t_builtin_tg, ARRAY_SIZE(ip6t_builtin_tg));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002282 unregister_pernet_subsys(&ip6_tables_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283}
2284
2285EXPORT_SYMBOL(ip6t_register_table);
2286EXPORT_SYMBOL(ip6t_unregister_table);
2287EXPORT_SYMBOL(ip6t_do_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002289module_init(ip6_tables_init);
2290module_exit(ip6_tables_fini);