blob: 2453dfdc91aa60c6afbc54475fd0e8a63a1a309a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Packet matching code.
3 *
4 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
Harald Welte6b7d31f2005-10-26 09:34:24 +02005 * Copyright (C) 2000-2005 Netfilter Core Team <coreteam@netfilter.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
Randy Dunlap4fc268d2006-01-11 12:17:47 -080011
12#include <linux/capability.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020013#include <linux/in.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/skbuff.h>
15#include <linux/kmod.h>
16#include <linux/vmalloc.h>
17#include <linux/netdevice.h>
18#include <linux/module.h>
Randy Dunlap4bdbf6c2006-07-03 19:47:27 -070019#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/icmpv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <net/ipv6.h>
Patrick McHardy3bc3fe52007-12-17 21:50:37 -080022#include <net/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/uaccess.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -080024#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/proc_fs.h>
Patrick McHardy3bc3fe52007-12-17 21:50:37 -080026#include <linux/err.h>
David S. Millerc8923c62005-10-13 14:41:23 -070027#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include <linux/netfilter_ipv6/ip6_tables.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -080030#include <linux/netfilter/x_tables.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080031#include <net/netfilter/nf_log.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33MODULE_LICENSE("GPL");
34MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
35MODULE_DESCRIPTION("IPv6 packet filter");
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037/*#define DEBUG_IP_FIREWALL*/
38/*#define DEBUG_ALLOW_ALL*/ /* Useful for remote debugging */
39/*#define DEBUG_IP_FIREWALL_USER*/
40
41#ifdef DEBUG_IP_FIREWALL
42#define dprintf(format, args...) printk(format , ## args)
43#else
44#define dprintf(format, args...)
45#endif
46
47#ifdef DEBUG_IP_FIREWALL_USER
48#define duprintf(format, args...) printk(format , ## args)
49#else
50#define duprintf(format, args...)
51#endif
52
53#ifdef CONFIG_NETFILTER_DEBUG
54#define IP_NF_ASSERT(x) \
55do { \
56 if (!(x)) \
57 printk("IP_NF_ASSERT: %s:%s:%u\n", \
58 __FUNCTION__, __FILE__, __LINE__); \
59} while(0)
60#else
61#define IP_NF_ASSERT(x)
62#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#if 0
65/* All the better to debug you with... */
66#define static
67#define inline
68#endif
69
Harald Welte6b7d31f2005-10-26 09:34:24 +020070/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 We keep a set of rules for each CPU, so we can avoid write-locking
Harald Welte6b7d31f2005-10-26 09:34:24 +020072 them in the softirq when updating the counters and therefore
73 only need to read-lock in the softirq; doing a write_lock_bh() in user
74 context stops packets coming through and allows user context to read
75 the counters or update the rules.
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 Hence the start of any table is given by get_table() below. */
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/* Check for an extension */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090080int
Linus Torvalds1da177e2005-04-16 15:20:36 -070081ip6t_ext_hdr(u8 nexthdr)
82{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090083 return ( (nexthdr == IPPROTO_HOPOPTS) ||
84 (nexthdr == IPPROTO_ROUTING) ||
85 (nexthdr == IPPROTO_FRAGMENT) ||
86 (nexthdr == IPPROTO_ESP) ||
87 (nexthdr == IPPROTO_AH) ||
88 (nexthdr == IPPROTO_NONE) ||
89 (nexthdr == IPPROTO_DSTOPTS) );
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
92/* Returns whether matches rule or not. */
Denys Vlasenko022748a2008-01-14 23:44:05 -080093/* Performance critical - called for every packet */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070094static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -070095ip6_packet_match(const struct sk_buff *skb,
96 const char *indev,
97 const char *outdev,
98 const struct ip6t_ip6 *ip6info,
99 unsigned int *protoff,
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700100 int *fragoff, bool *hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 size_t i;
103 unsigned long ret;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700104 const struct ipv6hdr *ipv6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Jan Engelhardte79ec502007-12-17 22:44:06 -0800106#define FWINV(bool, invflg) ((bool) ^ !!(ip6info->invflags & (invflg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Patrick McHardyf2ffd9e2006-03-20 18:03:16 -0800108 if (FWINV(ipv6_masked_addr_cmp(&ipv6->saddr, &ip6info->smsk,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900109 &ip6info->src), IP6T_INV_SRCIP)
Patrick McHardyf2ffd9e2006-03-20 18:03:16 -0800110 || FWINV(ipv6_masked_addr_cmp(&ipv6->daddr, &ip6info->dmsk,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900111 &ip6info->dst), IP6T_INV_DSTIP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 dprintf("Source or dest mismatch.\n");
113/*
114 dprintf("SRC: %u. Mask: %u. Target: %u.%s\n", ip->saddr,
115 ipinfo->smsk.s_addr, ipinfo->src.s_addr,
116 ipinfo->invflags & IP6T_INV_SRCIP ? " (INV)" : "");
117 dprintf("DST: %u. Mask: %u. Target: %u.%s\n", ip->daddr,
118 ipinfo->dmsk.s_addr, ipinfo->dst.s_addr,
119 ipinfo->invflags & IP6T_INV_DSTIP ? " (INV)" : "");*/
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700120 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 }
122
123 /* Look for ifname matches; this should unroll nicely. */
124 for (i = 0, ret = 0; i < IFNAMSIZ/sizeof(unsigned long); i++) {
125 ret |= (((const unsigned long *)indev)[i]
126 ^ ((const unsigned long *)ip6info->iniface)[i])
127 & ((const unsigned long *)ip6info->iniface_mask)[i];
128 }
129
130 if (FWINV(ret != 0, IP6T_INV_VIA_IN)) {
131 dprintf("VIA in mismatch (%s vs %s).%s\n",
132 indev, ip6info->iniface,
133 ip6info->invflags&IP6T_INV_VIA_IN ?" (INV)":"");
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700134 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
137 for (i = 0, ret = 0; i < IFNAMSIZ/sizeof(unsigned long); i++) {
138 ret |= (((const unsigned long *)outdev)[i]
139 ^ ((const unsigned long *)ip6info->outiface)[i])
140 & ((const unsigned long *)ip6info->outiface_mask)[i];
141 }
142
143 if (FWINV(ret != 0, IP6T_INV_VIA_OUT)) {
144 dprintf("VIA out mismatch (%s vs %s).%s\n",
145 outdev, ip6info->outiface,
146 ip6info->invflags&IP6T_INV_VIA_OUT ?" (INV)":"");
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700147 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
149
150/* ... might want to do something with class and flowlabel here ... */
151
152 /* look for the desired protocol header */
153 if((ip6info->flags & IP6T_F_PROTO)) {
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800154 int protohdr;
155 unsigned short _frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800157 protohdr = ipv6_find_hdr(skb, protoff, -1, &_frag_off);
Patrick McHardy51d8b1a2006-10-24 16:14:04 -0700158 if (protohdr < 0) {
159 if (_frag_off == 0)
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700160 *hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700161 return false;
Patrick McHardy51d8b1a2006-10-24 16:14:04 -0700162 }
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800163 *fragoff = _frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 dprintf("Packet protocol %hi ?= %s%hi.\n",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900166 protohdr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 ip6info->invflags & IP6T_INV_PROTO ? "!":"",
168 ip6info->proto);
169
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800170 if (ip6info->proto == protohdr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 if(ip6info->invflags & IP6T_INV_PROTO) {
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700172 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700174 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
176
177 /* We need match for the '-p all', too! */
178 if ((ip6info->proto != 0) &&
179 !(ip6info->invflags & IP6T_INV_PROTO))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700180 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700182 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
185/* should be ip6 safe */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800186static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187ip6_checkentry(const struct ip6t_ip6 *ipv6)
188{
189 if (ipv6->flags & ~IP6T_F_MASK) {
190 duprintf("Unknown flag bits set: %08X\n",
191 ipv6->flags & ~IP6T_F_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700192 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
194 if (ipv6->invflags & ~IP6T_INV_MASK) {
195 duprintf("Unknown invflag bits set: %08X\n",
196 ipv6->invflags & ~IP6T_INV_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700197 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700199 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
202static unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700203ip6t_error(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 const struct net_device *in,
205 const struct net_device *out,
206 unsigned int hooknum,
Patrick McHardyc4986732006-03-20 18:02:56 -0800207 const struct xt_target *target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700208 const void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
210 if (net_ratelimit())
211 printk("ip6_tables: error: `%s'\n", (char *)targinfo);
212
213 return NF_DROP;
214}
215
Denys Vlasenko022748a2008-01-14 23:44:05 -0800216/* Performance critical - called for every packet */
217static inline bool
218do_match(struct ip6t_entry_match *m,
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700219 const struct sk_buff *skb,
220 const struct net_device *in,
221 const struct net_device *out,
222 int offset,
223 unsigned int protoff,
224 bool *hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 /* Stop iteration if it doesn't match */
Patrick McHardy1c524832006-03-20 18:02:15 -0800227 if (!m->u.kernel.match->match(skb, in, out, m->u.kernel.match, m->data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 offset, protoff, hotdrop))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700229 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 else
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700231 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
234static inline struct ip6t_entry *
235get_entry(void *base, unsigned int offset)
236{
237 return (struct ip6t_entry *)(base + offset);
238}
239
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700240/* All zeroes == unconditional rule. */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800241/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700242static inline int
243unconditional(const struct ip6t_ip6 *ipv6)
244{
245 unsigned int i;
246
247 for (i = 0; i < sizeof(*ipv6); i++)
248 if (((char *)ipv6)[i])
249 break;
250
251 return (i == sizeof(*ipv6));
252}
253
254#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
255 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
256/* This cries for unification! */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800257static const char *const hooknames[] = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800258 [NF_INET_PRE_ROUTING] = "PREROUTING",
259 [NF_INET_LOCAL_IN] = "INPUT",
260 [NF_INET_FORWARD] = "FORWARD",
261 [NF_INET_LOCAL_OUT] = "OUTPUT",
262 [NF_INET_POST_ROUTING] = "POSTROUTING",
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700263};
264
265enum nf_ip_trace_comments {
266 NF_IP6_TRACE_COMMENT_RULE,
267 NF_IP6_TRACE_COMMENT_RETURN,
268 NF_IP6_TRACE_COMMENT_POLICY,
269};
270
Denys Vlasenko022748a2008-01-14 23:44:05 -0800271static const char *const comments[] = {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700272 [NF_IP6_TRACE_COMMENT_RULE] = "rule",
273 [NF_IP6_TRACE_COMMENT_RETURN] = "return",
274 [NF_IP6_TRACE_COMMENT_POLICY] = "policy",
275};
276
277static struct nf_loginfo trace_loginfo = {
278 .type = NF_LOG_TYPE_LOG,
279 .u = {
280 .log = {
281 .level = 4,
282 .logflags = NF_LOG_MASK,
283 },
284 },
285};
286
Denys Vlasenko022748a2008-01-14 23:44:05 -0800287/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700288static inline int
289get_chainname_rulenum(struct ip6t_entry *s, struct ip6t_entry *e,
290 char *hookname, char **chainname,
291 char **comment, unsigned int *rulenum)
292{
293 struct ip6t_standard_target *t = (void *)ip6t_get_target(s);
294
295 if (strcmp(t->target.u.kernel.target->name, IP6T_ERROR_TARGET) == 0) {
296 /* Head of user chain: ERROR target with chainname */
297 *chainname = t->target.data;
298 (*rulenum) = 0;
299 } else if (s == e) {
300 (*rulenum)++;
301
302 if (s->target_offset == sizeof(struct ip6t_entry)
303 && strcmp(t->target.u.kernel.target->name,
304 IP6T_STANDARD_TARGET) == 0
305 && t->verdict < 0
306 && unconditional(&s->ipv6)) {
307 /* Tail of chains: STANDARD target (return/policy) */
308 *comment = *chainname == hookname
309 ? (char *)comments[NF_IP6_TRACE_COMMENT_POLICY]
310 : (char *)comments[NF_IP6_TRACE_COMMENT_RETURN];
311 }
312 return 1;
313 } else
314 (*rulenum)++;
315
316 return 0;
317}
318
319static void trace_packet(struct sk_buff *skb,
320 unsigned int hook,
321 const struct net_device *in,
322 const struct net_device *out,
Jan Engelhardtecb6f852008-01-31 03:54:47 -0800323 const char *tablename,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700324 struct xt_table_info *private,
325 struct ip6t_entry *e)
326{
327 void *table_base;
328 struct ip6t_entry *root;
329 char *hookname, *chainname, *comment;
330 unsigned int rulenum = 0;
331
332 table_base = (void *)private->entries[smp_processor_id()];
333 root = get_entry(table_base, private->hook_entry[hook]);
334
335 hookname = chainname = (char *)hooknames[hook];
336 comment = (char *)comments[NF_IP6_TRACE_COMMENT_RULE];
337
338 IP6T_ENTRY_ITERATE(root,
339 private->size - private->hook_entry[hook],
340 get_chainname_rulenum,
341 e, hookname, &chainname, &comment, &rulenum);
342
343 nf_log_packet(AF_INET6, hook, skb, in, out, &trace_loginfo,
344 "TRACE: %s:%s:%s:%u ",
345 tablename, chainname, comment, rulenum);
346}
347#endif
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349/* Returns one of the generic firewall policies, like NF_ACCEPT. */
350unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700351ip6t_do_table(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 unsigned int hook,
353 const struct net_device *in,
354 const struct net_device *out,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700355 struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
Harald Welte6b7d31f2005-10-26 09:34:24 +0200357 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 int offset = 0;
359 unsigned int protoff = 0;
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700360 bool hotdrop = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 /* Initializing verdict to NF_DROP keeps gcc happy. */
362 unsigned int verdict = NF_DROP;
363 const char *indev, *outdev;
364 void *table_base;
365 struct ip6t_entry *e, *back;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800366 struct xt_table_info *private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 /* Initialization */
369 indev = in ? in->name : nulldevname;
370 outdev = out ? out->name : nulldevname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 /* We handle fragments by dealing with the first fragment as
372 * if it was a normal packet. All other fragments are treated
373 * normally, except that they will NEVER match rules that ask
374 * things we don't know, ie. tcp syn flag or ports). If the
375 * rule is also a fragment-specific rule, non-fragments won't
376 * match it. */
377
378 read_lock_bh(&table->lock);
379 IP_NF_ASSERT(table->valid_hooks & (1 << hook));
Patrick McHardy9c547952007-12-17 21:52:00 -0800380 private = table->private;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800381 table_base = (void *)private->entries[smp_processor_id()];
382 e = get_entry(table_base, private->hook_entry[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 /* For return from builtin chain */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800385 back = get_entry(table_base, private->underflow[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 do {
388 IP_NF_ASSERT(e);
389 IP_NF_ASSERT(back);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700390 if (ip6_packet_match(skb, indev, outdev, &e->ipv6,
Patrick McHardy51d8b1a2006-10-24 16:14:04 -0700391 &protoff, &offset, &hotdrop)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 struct ip6t_entry_target *t;
393
394 if (IP6T_MATCH_ITERATE(e, do_match,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700395 skb, in, out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 offset, protoff, &hotdrop) != 0)
397 goto no_match;
398
399 ADD_COUNTER(e->counters,
Patrick McHardy72f36ec2007-12-17 21:48:02 -0800400 ntohs(ipv6_hdr(skb)->payload_len) +
401 sizeof(struct ipv6hdr), 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 t = ip6t_get_target(e);
404 IP_NF_ASSERT(t->u.kernel.target);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700405
406#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
407 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
408 /* The packet is traced: log it */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700409 if (unlikely(skb->nf_trace))
410 trace_packet(skb, hook, in, out,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700411 table->name, private, e);
412#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 /* Standard target? */
414 if (!t->u.kernel.target->target) {
415 int v;
416
417 v = ((struct ip6t_standard_target *)t)->verdict;
418 if (v < 0) {
419 /* Pop from stack? */
420 if (v != IP6T_RETURN) {
421 verdict = (unsigned)(-v) - 1;
422 break;
423 }
424 e = back;
425 back = get_entry(table_base,
426 back->comefrom);
427 continue;
428 }
Patrick McHardy05465342005-08-21 23:31:43 -0700429 if (table_base + v != (void *)e + e->next_offset
430 && !(e->ipv6.flags & IP6T_F_GOTO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 /* Save old back ptr in next entry */
432 struct ip6t_entry *next
433 = (void *)e + e->next_offset;
434 next->comefrom
435 = (void *)back - table_base;
436 /* set back pointer to next entry */
437 back = next;
438 }
439
440 e = get_entry(table_base, v);
441 } else {
442 /* Targets which reenter must return
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900443 abs. verdicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444#ifdef CONFIG_NETFILTER_DEBUG
445 ((struct ip6t_entry *)table_base)->comefrom
446 = 0xeeeeeeec;
447#endif
Herbert Xu3db05fe2007-10-15 00:53:15 -0700448 verdict = t->u.kernel.target->target(skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 in, out,
450 hook,
Patrick McHardy1c524832006-03-20 18:02:15 -0800451 t->u.kernel.target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700452 t->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454#ifdef CONFIG_NETFILTER_DEBUG
455 if (((struct ip6t_entry *)table_base)->comefrom
456 != 0xeeeeeeec
457 && verdict == IP6T_CONTINUE) {
458 printk("Target %s reentered!\n",
459 t->u.kernel.target->name);
460 verdict = NF_DROP;
461 }
462 ((struct ip6t_entry *)table_base)->comefrom
463 = 0x57acc001;
464#endif
465 if (verdict == IP6T_CONTINUE)
466 e = (void *)e + e->next_offset;
467 else
468 /* Verdict */
469 break;
470 }
471 } else {
472
473 no_match:
474 e = (void *)e + e->next_offset;
475 }
476 } while (!hotdrop);
477
478#ifdef CONFIG_NETFILTER_DEBUG
Randy Dunlap4bdbf6c2006-07-03 19:47:27 -0700479 ((struct ip6t_entry *)table_base)->comefrom = NETFILTER_LINK_POISON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480#endif
481 read_unlock_bh(&table->lock);
482
483#ifdef DEBUG_ALLOW_ALL
484 return NF_ACCEPT;
485#else
486 if (hotdrop)
487 return NF_DROP;
488 else return verdict;
489#endif
490}
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492/* Figures out from what hook each rule can be called: returns 0 if
493 there are loops. Puts hook bitmask in comefrom. */
494static int
Harald Welte2e4e6a12006-01-12 13:30:04 -0800495mark_source_chains(struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800496 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
498 unsigned int hook;
499
500 /* No recursion; use packet counter to save back ptrs (reset
501 to 0 as we leave), and comefrom to save source hook bitmask */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800502 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 unsigned int pos = newinfo->hook_entry[hook];
Patrick McHardy9c547952007-12-17 21:52:00 -0800504 struct ip6t_entry *e = (struct ip6t_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 if (!(valid_hooks & (1 << hook)))
507 continue;
508
509 /* Set initial back pointer. */
510 e->counters.pcnt = pos;
511
512 for (;;) {
513 struct ip6t_standard_target *t
514 = (void *)ip6t_get_target(e);
Patrick McHardy9c547952007-12-17 21:52:00 -0800515 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800517 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 printk("iptables: loop hook %u pos %u %08X.\n",
519 hook, pos, e->comefrom);
520 return 0;
521 }
Patrick McHardy9c547952007-12-17 21:52:00 -0800522 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 /* Unconditional return/END. */
Al Viroe1b4b9f2006-12-12 00:29:52 -0800525 if ((e->target_offset == sizeof(struct ip6t_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 && (strcmp(t->target.u.user.name,
527 IP6T_STANDARD_TARGET) == 0)
528 && t->verdict < 0
Al Viroe1b4b9f2006-12-12 00:29:52 -0800529 && unconditional(&e->ipv6)) || visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 unsigned int oldpos, size;
531
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800532 if (t->verdict < -NF_MAX_VERDICT - 1) {
533 duprintf("mark_source_chains: bad "
534 "negative verdict (%i)\n",
535 t->verdict);
536 return 0;
537 }
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 /* Return: backtrack through the last
540 big jump. */
541 do {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800542 e->comefrom ^= (1<<NF_INET_NUMHOOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543#ifdef DEBUG_IP_FIREWALL_USER
544 if (e->comefrom
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800545 & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 duprintf("Back unset "
547 "on hook %u "
548 "rule %u\n",
549 hook, pos);
550 }
551#endif
552 oldpos = pos;
553 pos = e->counters.pcnt;
554 e->counters.pcnt = 0;
555
556 /* We're at the start. */
557 if (pos == oldpos)
558 goto next;
559
560 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800561 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 } while (oldpos == pos + e->next_offset);
563
564 /* Move along one */
565 size = e->next_offset;
566 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800567 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 e->counters.pcnt = pos;
569 pos += size;
570 } else {
571 int newpos = t->verdict;
572
573 if (strcmp(t->target.u.user.name,
574 IP6T_STANDARD_TARGET) == 0
575 && newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800576 if (newpos > newinfo->size -
577 sizeof(struct ip6t_entry)) {
578 duprintf("mark_source_chains: "
579 "bad verdict (%i)\n",
580 newpos);
581 return 0;
582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 /* This a jump; chase it. */
584 duprintf("Jump rule %u -> %u\n",
585 pos, newpos);
586 } else {
587 /* ... this is a fallthru */
588 newpos = pos + e->next_offset;
589 }
590 e = (struct ip6t_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800591 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 e->counters.pcnt = pos;
593 pos = newpos;
594 }
595 }
596 next:
597 duprintf("Finished chain %u\n", hook);
598 }
599 return 1;
600}
601
Denys Vlasenko022748a2008-01-14 23:44:05 -0800602static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603cleanup_match(struct ip6t_entry_match *m, unsigned int *i)
604{
605 if (i && (*i)-- == 0)
606 return 1;
607
608 if (m->u.kernel.match->destroy)
Patrick McHardyefa74162006-08-22 00:36:37 -0700609 m->u.kernel.match->destroy(m->u.kernel.match, m->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 module_put(m->u.kernel.match->me);
611 return 0;
612}
613
Denys Vlasenko022748a2008-01-14 23:44:05 -0800614static int
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800615check_entry(struct ip6t_entry *e, const char *name)
616{
617 struct ip6t_entry_target *t;
618
619 if (!ip6_checkentry(&e->ipv6)) {
620 duprintf("ip_tables: ip check failed %p %s.\n", e, name);
621 return -EINVAL;
622 }
623
624 if (e->target_offset + sizeof(struct ip6t_entry_target) >
625 e->next_offset)
626 return -EINVAL;
627
628 t = ip6t_get_target(e);
629 if (e->target_offset + t->u.target_size > e->next_offset)
630 return -EINVAL;
631
632 return 0;
633}
634
Denys Vlasenko022748a2008-01-14 23:44:05 -0800635static int check_match(struct ip6t_entry_match *m, const char *name,
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800636 const struct ip6t_ip6 *ipv6,
637 unsigned int hookmask, unsigned int *i)
638{
639 struct xt_match *match;
640 int ret;
641
642 match = m->u.kernel.match;
643 ret = xt_check_match(match, AF_INET6, m->u.match_size - sizeof(*m),
644 name, hookmask, ipv6->proto,
645 ipv6->invflags & IP6T_INV_PROTO);
646 if (!ret && m->u.kernel.match->checkentry
647 && !m->u.kernel.match->checkentry(name, ipv6, match, m->data,
648 hookmask)) {
649 duprintf("ip_tables: check failed for `%s'.\n",
650 m->u.kernel.match->name);
651 ret = -EINVAL;
652 }
653 if (!ret)
654 (*i)++;
655 return ret;
656}
657
Denys Vlasenko022748a2008-01-14 23:44:05 -0800658static int
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800659find_check_match(struct ip6t_entry_match *m,
660 const char *name,
661 const struct ip6t_ip6 *ipv6,
662 unsigned int hookmask,
663 unsigned int *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800665 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800666 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Harald Welte2e4e6a12006-01-12 13:30:04 -0800668 match = try_then_request_module(xt_find_match(AF_INET6, m->u.user.name,
Patrick McHardy9c547952007-12-17 21:52:00 -0800669 m->u.user.revision),
Harald Welte6b7d31f2005-10-26 09:34:24 +0200670 "ip6t_%s", m->u.user.name);
671 if (IS_ERR(match) || !match) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800672 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Harald Welte6b7d31f2005-10-26 09:34:24 +0200673 return match ? PTR_ERR(match) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 }
675 m->u.kernel.match = match;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800677 ret = check_match(m, name, ipv6, hookmask, i);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800678 if (ret)
679 goto err;
680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800682err:
683 module_put(m->u.kernel.match->me);
684 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686
Denys Vlasenko022748a2008-01-14 23:44:05 -0800687static int check_target(struct ip6t_entry *e, const char *name)
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800688{
689 struct ip6t_entry_target *t;
690 struct xt_target *target;
691 int ret;
692
693 t = ip6t_get_target(e);
694 target = t->u.kernel.target;
695 ret = xt_check_target(target, AF_INET6, t->u.target_size - sizeof(*t),
696 name, e->comefrom, e->ipv6.proto,
697 e->ipv6.invflags & IP6T_INV_PROTO);
698 if (!ret && t->u.kernel.target->checkentry
699 && !t->u.kernel.target->checkentry(name, e, target, t->data,
700 e->comefrom)) {
701 duprintf("ip_tables: check failed for `%s'.\n",
702 t->u.kernel.target->name);
703 ret = -EINVAL;
704 }
705 return ret;
706}
707
Denys Vlasenko022748a2008-01-14 23:44:05 -0800708static int
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800709find_check_entry(struct ip6t_entry *e, const char *name, unsigned int size,
710 unsigned int *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
712 struct ip6t_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800713 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 int ret;
715 unsigned int j;
716
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800717 ret = check_entry(e, name);
718 if (ret)
719 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 j = 0;
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800722 ret = IP6T_MATCH_ITERATE(e, find_check_match, name, &e->ipv6,
723 e->comefrom, &j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 if (ret != 0)
725 goto cleanup_matches;
726
727 t = ip6t_get_target(e);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800728 target = try_then_request_module(xt_find_target(AF_INET6,
729 t->u.user.name,
730 t->u.user.revision),
Harald Welte6b7d31f2005-10-26 09:34:24 +0200731 "ip6t_%s", t->u.user.name);
732 if (IS_ERR(target) || !target) {
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800733 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Harald Welte6b7d31f2005-10-26 09:34:24 +0200734 ret = target ? PTR_ERR(target) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 goto cleanup_matches;
736 }
737 t->u.kernel.target = target;
Harald Welte6b7d31f2005-10-26 09:34:24 +0200738
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800739 ret = check_target(e, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800740 if (ret)
741 goto err;
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 (*i)++;
744 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800745 err:
746 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 cleanup_matches:
748 IP6T_MATCH_ITERATE(e, cleanup_match, &j);
749 return ret;
750}
751
Denys Vlasenko022748a2008-01-14 23:44:05 -0800752static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753check_entry_size_and_hooks(struct ip6t_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800754 struct xt_table_info *newinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 unsigned char *base,
756 unsigned char *limit,
757 const unsigned int *hook_entries,
758 const unsigned int *underflows,
759 unsigned int *i)
760{
761 unsigned int h;
762
763 if ((unsigned long)e % __alignof__(struct ip6t_entry) != 0
764 || (unsigned char *)e + sizeof(struct ip6t_entry) >= limit) {
765 duprintf("Bad offset %p\n", e);
766 return -EINVAL;
767 }
768
769 if (e->next_offset
770 < sizeof(struct ip6t_entry) + sizeof(struct ip6t_entry_target)) {
771 duprintf("checking: element %p size %u\n",
772 e, e->next_offset);
773 return -EINVAL;
774 }
775
776 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800777 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if ((unsigned char *)e - base == hook_entries[h])
779 newinfo->hook_entry[h] = hook_entries[h];
780 if ((unsigned char *)e - base == underflows[h])
781 newinfo->underflow[h] = underflows[h];
782 }
783
784 /* FIXME: underflows must be unconditional, standard verdicts
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900785 < 0 (not IP6T_RETURN). --RR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800788 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 e->comefrom = 0;
790
791 (*i)++;
792 return 0;
793}
794
Denys Vlasenko022748a2008-01-14 23:44:05 -0800795static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796cleanup_entry(struct ip6t_entry *e, unsigned int *i)
797{
798 struct ip6t_entry_target *t;
799
800 if (i && (*i)-- == 0)
801 return 1;
802
803 /* Cleanup all matches */
804 IP6T_MATCH_ITERATE(e, cleanup_match, NULL);
805 t = ip6t_get_target(e);
806 if (t->u.kernel.target->destroy)
Patrick McHardyefa74162006-08-22 00:36:37 -0700807 t->u.kernel.target->destroy(t->u.kernel.target, t->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 module_put(t->u.kernel.target->me);
809 return 0;
810}
811
812/* Checks and translates the user-supplied table segment (held in
813 newinfo) */
814static int
815translate_table(const char *name,
816 unsigned int valid_hooks,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800817 struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800818 void *entry0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 unsigned int size,
820 unsigned int number,
821 const unsigned int *hook_entries,
822 const unsigned int *underflows)
823{
824 unsigned int i;
825 int ret;
826
827 newinfo->size = size;
828 newinfo->number = number;
829
830 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800831 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 newinfo->hook_entry[i] = 0xFFFFFFFF;
833 newinfo->underflow[i] = 0xFFFFFFFF;
834 }
835
836 duprintf("translate_table: size %u\n", newinfo->size);
837 i = 0;
838 /* Walk through entries, checking offsets. */
Eric Dumazet31836062005-12-13 23:13:48 -0800839 ret = IP6T_ENTRY_ITERATE(entry0, newinfo->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 check_entry_size_and_hooks,
841 newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800842 entry0,
843 entry0 + size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 hook_entries, underflows, &i);
845 if (ret != 0)
846 return ret;
847
848 if (i != number) {
849 duprintf("translate_table: %u not %u entries\n",
850 i, number);
851 return -EINVAL;
852 }
853
854 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800855 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 /* Only hooks which are valid */
857 if (!(valid_hooks & (1 << i)))
858 continue;
859 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
860 duprintf("Invalid hook entry %u %u\n",
861 i, hook_entries[i]);
862 return -EINVAL;
863 }
864 if (newinfo->underflow[i] == 0xFFFFFFFF) {
865 duprintf("Invalid underflow %u %u\n",
866 i, underflows[i]);
867 return -EINVAL;
868 }
869 }
870
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800871 if (!mark_source_chains(newinfo, valid_hooks, entry0))
872 return -ELOOP;
873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 /* Finally, each sanity check must pass */
875 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -0800876 ret = IP6T_ENTRY_ITERATE(entry0, newinfo->size,
Patrick McHardyf173c8a2007-12-17 21:48:17 -0800877 find_check_entry, name, size, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800879 if (ret != 0) {
880 IP6T_ENTRY_ITERATE(entry0, newinfo->size,
881 cleanup_entry, &i);
882 return ret;
883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 /* And one copy for every other CPU */
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700886 for_each_possible_cpu(i) {
Eric Dumazet31836062005-12-13 23:13:48 -0800887 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
888 memcpy(newinfo->entries[i], entry0, newinfo->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 }
890
Patrick McHardy9c547952007-12-17 21:52:00 -0800891 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892}
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894/* Gets counters. */
895static inline int
896add_entry_to_counter(const struct ip6t_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800897 struct xt_counters total[],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 unsigned int *i)
899{
900 ADD_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
901
902 (*i)++;
903 return 0;
904}
905
Eric Dumazet31836062005-12-13 23:13:48 -0800906static inline int
907set_entry_to_counter(const struct ip6t_entry *e,
908 struct ip6t_counters total[],
909 unsigned int *i)
910{
911 SET_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
912
913 (*i)++;
914 return 0;
915}
916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800918get_counters(const struct xt_table_info *t,
919 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
921 unsigned int cpu;
922 unsigned int i;
Eric Dumazet31836062005-12-13 23:13:48 -0800923 unsigned int curcpu;
924
925 /* Instead of clearing (by a previous call to memset())
926 * the counters and using adds, we set the counters
927 * with data used by 'current' CPU
928 * We dont care about preemption here.
929 */
930 curcpu = raw_smp_processor_id();
931
932 i = 0;
933 IP6T_ENTRY_ITERATE(t->entries[curcpu],
934 t->size,
935 set_entry_to_counter,
936 counters,
937 &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700939 for_each_possible_cpu(cpu) {
Eric Dumazet31836062005-12-13 23:13:48 -0800940 if (cpu == curcpu)
941 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -0800943 IP6T_ENTRY_ITERATE(t->entries[cpu],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 t->size,
945 add_entry_to_counter,
946 counters,
947 &i);
948 }
949}
950
Denys Vlasenko022748a2008-01-14 23:44:05 -0800951static struct xt_counters *alloc_counters(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800953 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800954 struct xt_counters *counters;
955 struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957 /* We need atomic snapshot of counters: rest doesn't change
958 (other than comefrom, which userspace doesn't care
959 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800960 countersize = sizeof(struct xt_counters) * private->number;
Patrick McHardy3b84e922007-12-17 21:48:33 -0800961 counters = vmalloc_node(countersize, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 if (counters == NULL)
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800964 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 /* First, sum counters... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 write_lock_bh(&table->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800968 get_counters(private, counters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 write_unlock_bh(&table->lock);
970
Patrick McHardyed1a6f52007-12-17 21:49:51 -0800971 return counters;
972}
973
974static int
975copy_entries_to_user(unsigned int total_size,
976 struct xt_table *table,
977 void __user *userptr)
978{
979 unsigned int off, num;
980 struct ip6t_entry *e;
981 struct xt_counters *counters;
982 struct xt_table_info *private = table->private;
983 int ret = 0;
984 void *loc_cpu_entry;
985
986 counters = alloc_counters(table);
987 if (IS_ERR(counters))
988 return PTR_ERR(counters);
989
Patrick McHardy9c547952007-12-17 21:52:00 -0800990 /* choose the copy that is on our node/cpu, ...
991 * This choice is lazy (because current thread is
992 * allowed to migrate to another cpu)
993 */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800994 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -0800995 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 ret = -EFAULT;
997 goto free_counters;
998 }
999
1000 /* FIXME: use iterator macros --RR */
1001 /* ... then go back and fix counters and names */
1002 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
1003 unsigned int i;
1004 struct ip6t_entry_match *m;
1005 struct ip6t_entry_target *t;
1006
Eric Dumazet31836062005-12-13 23:13:48 -08001007 e = (struct ip6t_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (copy_to_user(userptr + off
1009 + offsetof(struct ip6t_entry, counters),
1010 &counters[num],
1011 sizeof(counters[num])) != 0) {
1012 ret = -EFAULT;
1013 goto free_counters;
1014 }
1015
1016 for (i = sizeof(struct ip6t_entry);
1017 i < e->target_offset;
1018 i += m->u.match_size) {
1019 m = (void *)e + i;
1020
1021 if (copy_to_user(userptr + off + i
1022 + offsetof(struct ip6t_entry_match,
1023 u.user.name),
1024 m->u.kernel.match->name,
1025 strlen(m->u.kernel.match->name)+1)
1026 != 0) {
1027 ret = -EFAULT;
1028 goto free_counters;
1029 }
1030 }
1031
1032 t = ip6t_get_target(e);
1033 if (copy_to_user(userptr + off + e->target_offset
1034 + offsetof(struct ip6t_entry_target,
1035 u.user.name),
1036 t->u.kernel.target->name,
1037 strlen(t->u.kernel.target->name)+1) != 0) {
1038 ret = -EFAULT;
1039 goto free_counters;
1040 }
1041 }
1042
1043 free_counters:
1044 vfree(counters);
1045 return ret;
1046}
1047
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001048#ifdef CONFIG_COMPAT
1049static void compat_standard_from_user(void *dst, void *src)
1050{
1051 int v = *(compat_int_t *)src;
1052
1053 if (v > 0)
1054 v += xt_compat_calc_jump(AF_INET6, v);
1055 memcpy(dst, &v, sizeof(v));
1056}
1057
1058static int compat_standard_to_user(void __user *dst, void *src)
1059{
1060 compat_int_t cv = *(int *)src;
1061
1062 if (cv > 0)
1063 cv -= xt_compat_calc_jump(AF_INET6, cv);
1064 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
1065}
1066
1067static inline int
1068compat_calc_match(struct ip6t_entry_match *m, int *size)
1069{
1070 *size += xt_compat_match_offset(m->u.kernel.match);
1071 return 0;
1072}
1073
1074static int compat_calc_entry(struct ip6t_entry *e,
1075 const struct xt_table_info *info,
1076 void *base, struct xt_table_info *newinfo)
1077{
1078 struct ip6t_entry_target *t;
1079 unsigned int entry_offset;
1080 int off, i, ret;
1081
1082 off = sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1083 entry_offset = (void *)e - base;
1084 IP6T_MATCH_ITERATE(e, compat_calc_match, &off);
1085 t = ip6t_get_target(e);
1086 off += xt_compat_target_offset(t->u.kernel.target);
1087 newinfo->size -= off;
1088 ret = xt_compat_add_offset(AF_INET6, entry_offset, off);
1089 if (ret)
1090 return ret;
1091
1092 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1093 if (info->hook_entry[i] &&
1094 (e < (struct ip6t_entry *)(base + info->hook_entry[i])))
1095 newinfo->hook_entry[i] -= off;
1096 if (info->underflow[i] &&
1097 (e < (struct ip6t_entry *)(base + info->underflow[i])))
1098 newinfo->underflow[i] -= off;
1099 }
1100 return 0;
1101}
1102
1103static int compat_table_info(const struct xt_table_info *info,
1104 struct xt_table_info *newinfo)
1105{
1106 void *loc_cpu_entry;
1107
1108 if (!newinfo || !info)
1109 return -EINVAL;
1110
1111 /* we dont care about newinfo->entries[] */
1112 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1113 newinfo->initial_entries = 0;
1114 loc_cpu_entry = info->entries[raw_smp_processor_id()];
1115 return IP6T_ENTRY_ITERATE(loc_cpu_entry, info->size,
1116 compat_calc_entry, info, loc_cpu_entry,
1117 newinfo);
1118}
1119#endif
1120
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001121static int get_info(struct net *net, void __user *user, int *len, int compat)
Patrick McHardy433665c2007-12-17 21:50:05 -08001122{
1123 char name[IP6T_TABLE_MAXNAMELEN];
1124 struct xt_table *t;
1125 int ret;
1126
1127 if (*len != sizeof(struct ip6t_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001128 duprintf("length %u != %zu\n", *len,
Patrick McHardy433665c2007-12-17 21:50:05 -08001129 sizeof(struct ip6t_getinfo));
1130 return -EINVAL;
1131 }
1132
1133 if (copy_from_user(name, user, sizeof(name)) != 0)
1134 return -EFAULT;
1135
1136 name[IP6T_TABLE_MAXNAMELEN-1] = '\0';
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001137#ifdef CONFIG_COMPAT
1138 if (compat)
1139 xt_compat_lock(AF_INET6);
1140#endif
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001141 t = try_then_request_module(xt_find_table_lock(net, AF_INET6, name),
Patrick McHardy433665c2007-12-17 21:50:05 -08001142 "ip6table_%s", name);
1143 if (t && !IS_ERR(t)) {
1144 struct ip6t_getinfo info;
1145 struct xt_table_info *private = t->private;
1146
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001147#ifdef CONFIG_COMPAT
1148 if (compat) {
1149 struct xt_table_info tmp;
1150 ret = compat_table_info(private, &tmp);
1151 xt_compat_flush_offsets(AF_INET6);
1152 private = &tmp;
1153 }
1154#endif
Patrick McHardy433665c2007-12-17 21:50:05 -08001155 info.valid_hooks = t->valid_hooks;
1156 memcpy(info.hook_entry, private->hook_entry,
1157 sizeof(info.hook_entry));
1158 memcpy(info.underflow, private->underflow,
1159 sizeof(info.underflow));
1160 info.num_entries = private->number;
1161 info.size = private->size;
Patrick McHardyb5dd6742007-12-17 21:52:35 -08001162 strcpy(info.name, name);
Patrick McHardy433665c2007-12-17 21:50:05 -08001163
1164 if (copy_to_user(user, &info, *len) != 0)
1165 ret = -EFAULT;
1166 else
1167 ret = 0;
1168
1169 xt_table_unlock(t);
1170 module_put(t->me);
1171 } else
1172 ret = t ? PTR_ERR(t) : -ENOENT;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001173#ifdef CONFIG_COMPAT
1174 if (compat)
1175 xt_compat_unlock(AF_INET6);
1176#endif
Patrick McHardy433665c2007-12-17 21:50:05 -08001177 return ret;
1178}
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001181get_entries(struct net *net, struct ip6t_get_entries __user *uptr, int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182{
1183 int ret;
Patrick McHardyd9243572007-12-17 21:50:22 -08001184 struct ip6t_get_entries get;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001185 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Patrick McHardyd9243572007-12-17 21:50:22 -08001187 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001188 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Patrick McHardyd9243572007-12-17 21:50:22 -08001189 return -EINVAL;
1190 }
1191 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1192 return -EFAULT;
1193 if (*len != sizeof(struct ip6t_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001194 duprintf("get_entries: %u != %zu\n",
1195 *len, sizeof(get) + get.size);
Patrick McHardyd9243572007-12-17 21:50:22 -08001196 return -EINVAL;
1197 }
1198
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001199 t = xt_find_table_lock(net, AF_INET6, get.name);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001200 if (t && !IS_ERR(t)) {
Harald Welte2e4e6a12006-01-12 13:30:04 -08001201 struct xt_table_info *private = t->private;
1202 duprintf("t->private->number = %u\n", private->number);
Patrick McHardyd9243572007-12-17 21:50:22 -08001203 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001204 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 t, uptr->entrytable);
1206 else {
1207 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001208 private->size, get.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 ret = -EINVAL;
1210 }
Harald Welte6b7d31f2005-10-26 09:34:24 +02001211 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001212 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 } else
Harald Welte6b7d31f2005-10-26 09:34:24 +02001214 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 return ret;
1217}
1218
1219static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001220__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001221 struct xt_table_info *newinfo, unsigned int num_counters,
1222 void __user *counters_ptr)
1223{
1224 int ret;
1225 struct xt_table *t;
1226 struct xt_table_info *oldinfo;
1227 struct xt_counters *counters;
1228 void *loc_cpu_old_entry;
1229
1230 ret = 0;
1231 counters = vmalloc_node(num_counters * sizeof(struct xt_counters),
1232 numa_node_id());
1233 if (!counters) {
1234 ret = -ENOMEM;
1235 goto out;
1236 }
1237
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001238 t = try_then_request_module(xt_find_table_lock(net, AF_INET6, name),
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001239 "ip6table_%s", name);
1240 if (!t || IS_ERR(t)) {
1241 ret = t ? PTR_ERR(t) : -ENOENT;
1242 goto free_newinfo_counters_untrans;
1243 }
1244
1245 /* You lied! */
1246 if (valid_hooks != t->valid_hooks) {
1247 duprintf("Valid hook crap: %08X vs %08X\n",
1248 valid_hooks, t->valid_hooks);
1249 ret = -EINVAL;
1250 goto put_module;
1251 }
1252
1253 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1254 if (!oldinfo)
1255 goto put_module;
1256
1257 /* Update module usage count based on number of rules */
1258 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1259 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1260 if ((oldinfo->number > oldinfo->initial_entries) ||
1261 (newinfo->number <= oldinfo->initial_entries))
1262 module_put(t->me);
1263 if ((oldinfo->number > oldinfo->initial_entries) &&
1264 (newinfo->number <= oldinfo->initial_entries))
1265 module_put(t->me);
1266
1267 /* Get the old counters. */
1268 get_counters(oldinfo, counters);
1269 /* Decrease module usage counts and free resource */
1270 loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
1271 IP6T_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry,
1272 NULL);
1273 xt_free_table_info(oldinfo);
1274 if (copy_to_user(counters_ptr, counters,
1275 sizeof(struct xt_counters) * num_counters) != 0)
1276 ret = -EFAULT;
1277 vfree(counters);
1278 xt_table_unlock(t);
1279 return ret;
1280
1281 put_module:
1282 module_put(t->me);
1283 xt_table_unlock(t);
1284 free_newinfo_counters_untrans:
1285 vfree(counters);
1286 out:
1287 return ret;
1288}
1289
1290static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001291do_replace(struct net *net, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292{
1293 int ret;
1294 struct ip6t_replace tmp;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001295 struct xt_table_info *newinfo;
1296 void *loc_cpu_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
1298 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1299 return -EFAULT;
1300
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001301 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001302 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1303 return -ENOMEM;
1304
Harald Welte2e4e6a12006-01-12 13:30:04 -08001305 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 if (!newinfo)
1307 return -ENOMEM;
1308
Eric Dumazet31836062005-12-13 23:13:48 -08001309 /* choose the copy that is on our node/cpu */
1310 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1311 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 tmp.size) != 0) {
1313 ret = -EFAULT;
1314 goto free_newinfo;
1315 }
1316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 ret = translate_table(tmp.name, tmp.valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08001318 newinfo, loc_cpu_entry, tmp.size, tmp.num_entries,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 tmp.hook_entry, tmp.underflow);
1320 if (ret != 0)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001321 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 duprintf("ip_tables: Translated table\n");
1324
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001325 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001326 tmp.num_counters, tmp.counters);
1327 if (ret)
1328 goto free_newinfo_untrans;
1329 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001331 free_newinfo_untrans:
1332 IP6T_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001334 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 return ret;
1336}
1337
1338/* We're lazy, and add to the first CPU; overflow works its fey magic
1339 * and everything is OK. */
1340static inline int
1341add_counter_to_entry(struct ip6t_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001342 const struct xt_counters addme[],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 unsigned int *i)
1344{
1345#if 0
1346 duprintf("add_counter: Entry %u %lu/%lu + %lu/%lu\n",
1347 *i,
1348 (long unsigned int)e->counters.pcnt,
1349 (long unsigned int)e->counters.bcnt,
1350 (long unsigned int)addme[*i].pcnt,
1351 (long unsigned int)addme[*i].bcnt);
1352#endif
1353
1354 ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt);
1355
1356 (*i)++;
1357 return 0;
1358}
1359
1360static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001361do_add_counters(struct net *net, void __user *user, unsigned int len,
1362 int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363{
1364 unsigned int i;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001365 struct xt_counters_info tmp;
1366 struct xt_counters *paddc;
1367 unsigned int num_counters;
1368 char *name;
1369 int size;
1370 void *ptmp;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001371 struct xt_table *t;
Patrick McHardy9c547952007-12-17 21:52:00 -08001372 struct xt_table_info *private;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001373 int ret = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001374 void *loc_cpu_entry;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001375#ifdef CONFIG_COMPAT
1376 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001378 if (compat) {
1379 ptmp = &compat_tmp;
1380 size = sizeof(struct compat_xt_counters_info);
1381 } else
1382#endif
1383 {
1384 ptmp = &tmp;
1385 size = sizeof(struct xt_counters_info);
1386 }
1387
1388 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 return -EFAULT;
1390
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001391#ifdef CONFIG_COMPAT
1392 if (compat) {
1393 num_counters = compat_tmp.num_counters;
1394 name = compat_tmp.name;
1395 } else
1396#endif
1397 {
1398 num_counters = tmp.num_counters;
1399 name = tmp.name;
1400 }
1401
1402 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 return -EINVAL;
1404
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001405 paddc = vmalloc_node(len - size, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 if (!paddc)
1407 return -ENOMEM;
1408
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001409 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 ret = -EFAULT;
1411 goto free;
1412 }
1413
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001414 t = xt_find_table_lock(net, AF_INET6, name);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001415 if (!t || IS_ERR(t)) {
1416 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 goto free;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
1420 write_lock_bh(&t->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001421 private = t->private;
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001422 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 ret = -EINVAL;
1424 goto unlock_up_free;
1425 }
1426
1427 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001428 /* Choose the copy that is on our node */
Patrick McHardyda4d0f62007-12-17 21:52:52 -08001429 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -08001430 IP6T_ENTRY_ITERATE(loc_cpu_entry,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001431 private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 add_counter_to_entry,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001433 paddc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 &i);
1435 unlock_up_free:
1436 write_unlock_bh(&t->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001437 xt_table_unlock(t);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001438 module_put(t->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 free:
1440 vfree(paddc);
1441
1442 return ret;
1443}
1444
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001445#ifdef CONFIG_COMPAT
1446struct compat_ip6t_replace {
1447 char name[IP6T_TABLE_MAXNAMELEN];
1448 u32 valid_hooks;
1449 u32 num_entries;
1450 u32 size;
1451 u32 hook_entry[NF_INET_NUMHOOKS];
1452 u32 underflow[NF_INET_NUMHOOKS];
1453 u32 num_counters;
1454 compat_uptr_t counters; /* struct ip6t_counters * */
1455 struct compat_ip6t_entry entries[0];
1456};
1457
1458static int
1459compat_copy_entry_to_user(struct ip6t_entry *e, void __user **dstptr,
1460 compat_uint_t *size, struct xt_counters *counters,
1461 unsigned int *i)
1462{
1463 struct ip6t_entry_target *t;
1464 struct compat_ip6t_entry __user *ce;
1465 u_int16_t target_offset, next_offset;
1466 compat_uint_t origsize;
1467 int ret;
1468
1469 ret = -EFAULT;
1470 origsize = *size;
1471 ce = (struct compat_ip6t_entry __user *)*dstptr;
1472 if (copy_to_user(ce, e, sizeof(struct ip6t_entry)))
1473 goto out;
1474
1475 if (copy_to_user(&ce->counters, &counters[*i], sizeof(counters[*i])))
1476 goto out;
1477
1478 *dstptr += sizeof(struct compat_ip6t_entry);
1479 *size -= sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1480
1481 ret = IP6T_MATCH_ITERATE(e, xt_compat_match_to_user, dstptr, size);
1482 target_offset = e->target_offset - (origsize - *size);
1483 if (ret)
1484 goto out;
1485 t = ip6t_get_target(e);
1486 ret = xt_compat_target_to_user(t, dstptr, size);
1487 if (ret)
1488 goto out;
1489 ret = -EFAULT;
1490 next_offset = e->next_offset - (origsize - *size);
1491 if (put_user(target_offset, &ce->target_offset))
1492 goto out;
1493 if (put_user(next_offset, &ce->next_offset))
1494 goto out;
1495
1496 (*i)++;
1497 return 0;
1498out:
1499 return ret;
1500}
1501
Denys Vlasenko022748a2008-01-14 23:44:05 -08001502static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001503compat_find_calc_match(struct ip6t_entry_match *m,
1504 const char *name,
1505 const struct ip6t_ip6 *ipv6,
1506 unsigned int hookmask,
1507 int *size, int *i)
1508{
1509 struct xt_match *match;
1510
1511 match = try_then_request_module(xt_find_match(AF_INET6, m->u.user.name,
1512 m->u.user.revision),
1513 "ip6t_%s", m->u.user.name);
1514 if (IS_ERR(match) || !match) {
1515 duprintf("compat_check_calc_match: `%s' not found\n",
1516 m->u.user.name);
1517 return match ? PTR_ERR(match) : -ENOENT;
1518 }
1519 m->u.kernel.match = match;
1520 *size += xt_compat_match_offset(match);
1521
1522 (*i)++;
1523 return 0;
1524}
1525
Denys Vlasenko022748a2008-01-14 23:44:05 -08001526static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001527compat_release_match(struct ip6t_entry_match *m, unsigned int *i)
1528{
1529 if (i && (*i)-- == 0)
1530 return 1;
1531
1532 module_put(m->u.kernel.match->me);
1533 return 0;
1534}
1535
Denys Vlasenko022748a2008-01-14 23:44:05 -08001536static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001537compat_release_entry(struct compat_ip6t_entry *e, unsigned int *i)
1538{
1539 struct ip6t_entry_target *t;
1540
1541 if (i && (*i)-- == 0)
1542 return 1;
1543
1544 /* Cleanup all matches */
1545 COMPAT_IP6T_MATCH_ITERATE(e, compat_release_match, NULL);
1546 t = compat_ip6t_get_target(e);
1547 module_put(t->u.kernel.target->me);
1548 return 0;
1549}
1550
Denys Vlasenko022748a2008-01-14 23:44:05 -08001551static int
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001552check_compat_entry_size_and_hooks(struct compat_ip6t_entry *e,
1553 struct xt_table_info *newinfo,
1554 unsigned int *size,
1555 unsigned char *base,
1556 unsigned char *limit,
1557 unsigned int *hook_entries,
1558 unsigned int *underflows,
1559 unsigned int *i,
1560 const char *name)
1561{
1562 struct ip6t_entry_target *t;
1563 struct xt_target *target;
1564 unsigned int entry_offset;
1565 int ret, off, h, j;
1566
1567 duprintf("check_compat_entry_size_and_hooks %p\n", e);
1568 if ((unsigned long)e % __alignof__(struct compat_ip6t_entry) != 0
1569 || (unsigned char *)e + sizeof(struct compat_ip6t_entry) >= limit) {
1570 duprintf("Bad offset %p, limit = %p\n", e, limit);
1571 return -EINVAL;
1572 }
1573
1574 if (e->next_offset < sizeof(struct compat_ip6t_entry) +
1575 sizeof(struct compat_xt_entry_target)) {
1576 duprintf("checking: element %p size %u\n",
1577 e, e->next_offset);
1578 return -EINVAL;
1579 }
1580
1581 /* For purposes of check_entry casting the compat entry is fine */
1582 ret = check_entry((struct ip6t_entry *)e, name);
1583 if (ret)
1584 return ret;
1585
1586 off = sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1587 entry_offset = (void *)e - (void *)base;
1588 j = 0;
1589 ret = COMPAT_IP6T_MATCH_ITERATE(e, compat_find_calc_match, name,
1590 &e->ipv6, e->comefrom, &off, &j);
1591 if (ret != 0)
1592 goto release_matches;
1593
1594 t = compat_ip6t_get_target(e);
1595 target = try_then_request_module(xt_find_target(AF_INET6,
1596 t->u.user.name,
1597 t->u.user.revision),
1598 "ip6t_%s", t->u.user.name);
1599 if (IS_ERR(target) || !target) {
1600 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
1601 t->u.user.name);
1602 ret = target ? PTR_ERR(target) : -ENOENT;
1603 goto release_matches;
1604 }
1605 t->u.kernel.target = target;
1606
1607 off += xt_compat_target_offset(target);
1608 *size += off;
1609 ret = xt_compat_add_offset(AF_INET6, entry_offset, off);
1610 if (ret)
1611 goto out;
1612
1613 /* Check hooks & underflows */
1614 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
1615 if ((unsigned char *)e - base == hook_entries[h])
1616 newinfo->hook_entry[h] = hook_entries[h];
1617 if ((unsigned char *)e - base == underflows[h])
1618 newinfo->underflow[h] = underflows[h];
1619 }
1620
1621 /* Clear counters and comefrom */
1622 memset(&e->counters, 0, sizeof(e->counters));
1623 e->comefrom = 0;
1624
1625 (*i)++;
1626 return 0;
1627
1628out:
1629 module_put(t->u.kernel.target->me);
1630release_matches:
1631 IP6T_MATCH_ITERATE(e, compat_release_match, &j);
1632 return ret;
1633}
1634
1635static int
1636compat_copy_entry_from_user(struct compat_ip6t_entry *e, void **dstptr,
1637 unsigned int *size, const char *name,
1638 struct xt_table_info *newinfo, unsigned char *base)
1639{
1640 struct ip6t_entry_target *t;
1641 struct xt_target *target;
1642 struct ip6t_entry *de;
1643 unsigned int origsize;
1644 int ret, h;
1645
1646 ret = 0;
1647 origsize = *size;
1648 de = (struct ip6t_entry *)*dstptr;
1649 memcpy(de, e, sizeof(struct ip6t_entry));
1650 memcpy(&de->counters, &e->counters, sizeof(e->counters));
1651
1652 *dstptr += sizeof(struct ip6t_entry);
1653 *size += sizeof(struct ip6t_entry) - sizeof(struct compat_ip6t_entry);
1654
1655 ret = COMPAT_IP6T_MATCH_ITERATE(e, xt_compat_match_from_user,
1656 dstptr, size);
1657 if (ret)
1658 return ret;
1659 de->target_offset = e->target_offset - (origsize - *size);
1660 t = compat_ip6t_get_target(e);
1661 target = t->u.kernel.target;
1662 xt_compat_target_from_user(t, dstptr, size);
1663
1664 de->next_offset = e->next_offset - (origsize - *size);
1665 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
1666 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1667 newinfo->hook_entry[h] -= origsize - *size;
1668 if ((unsigned char *)de - base < newinfo->underflow[h])
1669 newinfo->underflow[h] -= origsize - *size;
1670 }
1671 return ret;
1672}
1673
Denys Vlasenko022748a2008-01-14 23:44:05 -08001674static int compat_check_entry(struct ip6t_entry *e, const char *name,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001675 unsigned int *i)
1676{
1677 int j, ret;
1678
1679 j = 0;
1680 ret = IP6T_MATCH_ITERATE(e, check_match, name, &e->ipv6,
1681 e->comefrom, &j);
1682 if (ret)
1683 goto cleanup_matches;
1684
1685 ret = check_target(e, name);
1686 if (ret)
1687 goto cleanup_matches;
1688
1689 (*i)++;
1690 return 0;
1691
1692 cleanup_matches:
1693 IP6T_MATCH_ITERATE(e, cleanup_match, &j);
1694 return ret;
1695}
1696
1697static int
1698translate_compat_table(const char *name,
1699 unsigned int valid_hooks,
1700 struct xt_table_info **pinfo,
1701 void **pentry0,
1702 unsigned int total_size,
1703 unsigned int number,
1704 unsigned int *hook_entries,
1705 unsigned int *underflows)
1706{
1707 unsigned int i, j;
1708 struct xt_table_info *newinfo, *info;
1709 void *pos, *entry0, *entry1;
1710 unsigned int size;
1711 int ret;
1712
1713 info = *pinfo;
1714 entry0 = *pentry0;
1715 size = total_size;
1716 info->number = number;
1717
1718 /* Init all hooks to impossible value. */
1719 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1720 info->hook_entry[i] = 0xFFFFFFFF;
1721 info->underflow[i] = 0xFFFFFFFF;
1722 }
1723
1724 duprintf("translate_compat_table: size %u\n", info->size);
1725 j = 0;
1726 xt_compat_lock(AF_INET6);
1727 /* Walk through entries, checking offsets. */
1728 ret = COMPAT_IP6T_ENTRY_ITERATE(entry0, total_size,
1729 check_compat_entry_size_and_hooks,
1730 info, &size, entry0,
1731 entry0 + total_size,
1732 hook_entries, underflows, &j, name);
1733 if (ret != 0)
1734 goto out_unlock;
1735
1736 ret = -EINVAL;
1737 if (j != number) {
1738 duprintf("translate_compat_table: %u not %u entries\n",
1739 j, number);
1740 goto out_unlock;
1741 }
1742
1743 /* Check hooks all assigned */
1744 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1745 /* Only hooks which are valid */
1746 if (!(valid_hooks & (1 << i)))
1747 continue;
1748 if (info->hook_entry[i] == 0xFFFFFFFF) {
1749 duprintf("Invalid hook entry %u %u\n",
1750 i, hook_entries[i]);
1751 goto out_unlock;
1752 }
1753 if (info->underflow[i] == 0xFFFFFFFF) {
1754 duprintf("Invalid underflow %u %u\n",
1755 i, underflows[i]);
1756 goto out_unlock;
1757 }
1758 }
1759
1760 ret = -ENOMEM;
1761 newinfo = xt_alloc_table_info(size);
1762 if (!newinfo)
1763 goto out_unlock;
1764
1765 newinfo->number = number;
1766 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1767 newinfo->hook_entry[i] = info->hook_entry[i];
1768 newinfo->underflow[i] = info->underflow[i];
1769 }
1770 entry1 = newinfo->entries[raw_smp_processor_id()];
1771 pos = entry1;
1772 size = total_size;
1773 ret = COMPAT_IP6T_ENTRY_ITERATE(entry0, total_size,
1774 compat_copy_entry_from_user,
1775 &pos, &size, name, newinfo, entry1);
1776 xt_compat_flush_offsets(AF_INET6);
1777 xt_compat_unlock(AF_INET6);
1778 if (ret)
1779 goto free_newinfo;
1780
1781 ret = -ELOOP;
1782 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1783 goto free_newinfo;
1784
1785 i = 0;
1786 ret = IP6T_ENTRY_ITERATE(entry1, newinfo->size, compat_check_entry,
1787 name, &i);
1788 if (ret) {
1789 j -= i;
1790 COMPAT_IP6T_ENTRY_ITERATE_CONTINUE(entry0, newinfo->size, i,
1791 compat_release_entry, &j);
1792 IP6T_ENTRY_ITERATE(entry1, newinfo->size, cleanup_entry, &i);
1793 xt_free_table_info(newinfo);
1794 return ret;
1795 }
1796
1797 /* And one copy for every other CPU */
1798 for_each_possible_cpu(i)
1799 if (newinfo->entries[i] && newinfo->entries[i] != entry1)
1800 memcpy(newinfo->entries[i], entry1, newinfo->size);
1801
1802 *pinfo = newinfo;
1803 *pentry0 = entry1;
1804 xt_free_table_info(info);
1805 return 0;
1806
1807free_newinfo:
1808 xt_free_table_info(newinfo);
1809out:
1810 COMPAT_IP6T_ENTRY_ITERATE(entry0, total_size, compat_release_entry, &j);
1811 return ret;
1812out_unlock:
1813 xt_compat_flush_offsets(AF_INET6);
1814 xt_compat_unlock(AF_INET6);
1815 goto out;
1816}
1817
1818static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001819compat_do_replace(struct net *net, void __user *user, unsigned int len)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001820{
1821 int ret;
1822 struct compat_ip6t_replace tmp;
1823 struct xt_table_info *newinfo;
1824 void *loc_cpu_entry;
1825
1826 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1827 return -EFAULT;
1828
1829 /* overflow check */
1830 if (tmp.size >= INT_MAX / num_possible_cpus())
1831 return -ENOMEM;
1832 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1833 return -ENOMEM;
1834
1835 newinfo = xt_alloc_table_info(tmp.size);
1836 if (!newinfo)
1837 return -ENOMEM;
1838
Patrick McHardy9c547952007-12-17 21:52:00 -08001839 /* choose the copy that is on our node/cpu */
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001840 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1841 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1842 tmp.size) != 0) {
1843 ret = -EFAULT;
1844 goto free_newinfo;
1845 }
1846
1847 ret = translate_compat_table(tmp.name, tmp.valid_hooks,
1848 &newinfo, &loc_cpu_entry, tmp.size,
1849 tmp.num_entries, tmp.hook_entry,
1850 tmp.underflow);
1851 if (ret != 0)
1852 goto free_newinfo;
1853
1854 duprintf("compat_do_replace: Translated table\n");
1855
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001856 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001857 tmp.num_counters, compat_ptr(tmp.counters));
1858 if (ret)
1859 goto free_newinfo_untrans;
1860 return 0;
1861
1862 free_newinfo_untrans:
1863 IP6T_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
1864 free_newinfo:
1865 xt_free_table_info(newinfo);
1866 return ret;
1867}
1868
1869static int
1870compat_do_ip6t_set_ctl(struct sock *sk, int cmd, void __user *user,
1871 unsigned int len)
1872{
1873 int ret;
1874
1875 if (!capable(CAP_NET_ADMIN))
1876 return -EPERM;
1877
1878 switch (cmd) {
1879 case IP6T_SO_SET_REPLACE:
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001880 ret = compat_do_replace(sk->sk_net, user, len);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001881 break;
1882
1883 case IP6T_SO_SET_ADD_COUNTERS:
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001884 ret = do_add_counters(sk->sk_net, user, len, 1);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001885 break;
1886
1887 default:
1888 duprintf("do_ip6t_set_ctl: unknown request %i\n", cmd);
1889 ret = -EINVAL;
1890 }
1891
1892 return ret;
1893}
1894
1895struct compat_ip6t_get_entries {
1896 char name[IP6T_TABLE_MAXNAMELEN];
1897 compat_uint_t size;
1898 struct compat_ip6t_entry entrytable[0];
1899};
1900
1901static int
1902compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1903 void __user *userptr)
1904{
1905 struct xt_counters *counters;
1906 struct xt_table_info *private = table->private;
1907 void __user *pos;
1908 unsigned int size;
1909 int ret = 0;
1910 void *loc_cpu_entry;
1911 unsigned int i = 0;
1912
1913 counters = alloc_counters(table);
1914 if (IS_ERR(counters))
1915 return PTR_ERR(counters);
1916
1917 /* choose the copy that is on our node/cpu, ...
1918 * This choice is lazy (because current thread is
1919 * allowed to migrate to another cpu)
1920 */
1921 loc_cpu_entry = private->entries[raw_smp_processor_id()];
1922 pos = userptr;
1923 size = total_size;
1924 ret = IP6T_ENTRY_ITERATE(loc_cpu_entry, total_size,
1925 compat_copy_entry_to_user,
1926 &pos, &size, counters, &i);
1927
1928 vfree(counters);
1929 return ret;
1930}
1931
1932static int
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001933compat_get_entries(struct net *net, struct compat_ip6t_get_entries __user *uptr,
1934 int *len)
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001935{
1936 int ret;
1937 struct compat_ip6t_get_entries get;
1938 struct xt_table *t;
1939
1940 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001941 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001942 return -EINVAL;
1943 }
1944
1945 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1946 return -EFAULT;
1947
1948 if (*len != sizeof(struct compat_ip6t_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001949 duprintf("compat_get_entries: %u != %zu\n",
1950 *len, sizeof(get) + get.size);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001951 return -EINVAL;
1952 }
1953
1954 xt_compat_lock(AF_INET6);
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001955 t = xt_find_table_lock(net, AF_INET6, get.name);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001956 if (t && !IS_ERR(t)) {
1957 struct xt_table_info *private = t->private;
1958 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08001959 duprintf("t->private->number = %u\n", private->number);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001960 ret = compat_table_info(private, &info);
1961 if (!ret && get.size == info.size) {
1962 ret = compat_copy_entries_to_user(private->size,
1963 t, uptr->entrytable);
1964 } else if (!ret) {
1965 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001966 private->size, get.size);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001967 ret = -EINVAL;
1968 }
1969 xt_compat_flush_offsets(AF_INET6);
1970 module_put(t->me);
1971 xt_table_unlock(t);
1972 } else
1973 ret = t ? PTR_ERR(t) : -ENOENT;
1974
1975 xt_compat_unlock(AF_INET6);
1976 return ret;
1977}
1978
1979static int do_ip6t_get_ctl(struct sock *, int, void __user *, int *);
1980
1981static int
1982compat_do_ip6t_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1983{
1984 int ret;
1985
1986 if (!capable(CAP_NET_ADMIN))
1987 return -EPERM;
1988
1989 switch (cmd) {
1990 case IP6T_SO_GET_INFO:
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001991 ret = get_info(sk->sk_net, user, len, 1);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001992 break;
1993 case IP6T_SO_GET_ENTRIES:
Alexey Dobriyan336b5172008-01-31 04:03:45 -08001994 ret = compat_get_entries(sk->sk_net, user, len);
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08001995 break;
1996 default:
1997 ret = do_ip6t_get_ctl(sk, cmd, user, len);
1998 }
1999 return ret;
2000}
2001#endif
2002
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003static int
2004do_ip6t_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
2005{
2006 int ret;
2007
2008 if (!capable(CAP_NET_ADMIN))
2009 return -EPERM;
2010
2011 switch (cmd) {
2012 case IP6T_SO_SET_REPLACE:
Alexey Dobriyan336b5172008-01-31 04:03:45 -08002013 ret = do_replace(sk->sk_net, user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 break;
2015
2016 case IP6T_SO_SET_ADD_COUNTERS:
Alexey Dobriyan336b5172008-01-31 04:03:45 -08002017 ret = do_add_counters(sk->sk_net, user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 break;
2019
2020 default:
2021 duprintf("do_ip6t_set_ctl: unknown request %i\n", cmd);
2022 ret = -EINVAL;
2023 }
2024
2025 return ret;
2026}
2027
2028static int
2029do_ip6t_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2030{
2031 int ret;
2032
2033 if (!capable(CAP_NET_ADMIN))
2034 return -EPERM;
2035
2036 switch (cmd) {
Patrick McHardy433665c2007-12-17 21:50:05 -08002037 case IP6T_SO_GET_INFO:
Alexey Dobriyan336b5172008-01-31 04:03:45 -08002038 ret = get_info(sk->sk_net, user, len, 0);
Patrick McHardy433665c2007-12-17 21:50:05 -08002039 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Patrick McHardyd9243572007-12-17 21:50:22 -08002041 case IP6T_SO_GET_ENTRIES:
Alexey Dobriyan336b5172008-01-31 04:03:45 -08002042 ret = get_entries(sk->sk_net, user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Harald Welte6b7d31f2005-10-26 09:34:24 +02002045 case IP6T_SO_GET_REVISION_MATCH:
2046 case IP6T_SO_GET_REVISION_TARGET: {
2047 struct ip6t_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002048 int target;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002049
2050 if (*len != sizeof(rev)) {
2051 ret = -EINVAL;
2052 break;
2053 }
2054 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2055 ret = -EFAULT;
2056 break;
2057 }
2058
2059 if (cmd == IP6T_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08002060 target = 1;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002061 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08002062 target = 0;
Harald Welte6b7d31f2005-10-26 09:34:24 +02002063
Harald Welte2e4e6a12006-01-12 13:30:04 -08002064 try_then_request_module(xt_find_revision(AF_INET6, rev.name,
2065 rev.revision,
2066 target, &ret),
Harald Welte6b7d31f2005-10-26 09:34:24 +02002067 "ip6t_%s", rev.name);
2068 break;
2069 }
2070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 default:
2072 duprintf("do_ip6t_get_ctl: unknown request %i\n", cmd);
2073 ret = -EINVAL;
2074 }
2075
2076 return ret;
2077}
2078
Alexey Dobriyan336b5172008-01-31 04:03:45 -08002079struct xt_table *ip6t_register_table(struct net *net, struct xt_table *table,
2080 const struct ip6t_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081{
2082 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002083 struct xt_table_info *newinfo;
Eric Dumazet259d4e42007-12-04 23:24:56 -08002084 struct xt_table_info bootstrap
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 = { 0, 0, 0, { 0 }, { 0 }, { } };
Eric Dumazet31836062005-12-13 23:13:48 -08002086 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08002087 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Harald Welte2e4e6a12006-01-12 13:30:04 -08002089 newinfo = xt_alloc_table_info(repl->size);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002090 if (!newinfo) {
2091 ret = -ENOMEM;
2092 goto out;
2093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Patrick McHardy9c547952007-12-17 21:52:00 -08002095 /* choose the copy on our node/cpu, but dont care about preemption */
Eric Dumazet31836062005-12-13 23:13:48 -08002096 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
2097 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
2099 ret = translate_table(table->name, table->valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08002100 newinfo, loc_cpu_entry, repl->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 repl->num_entries,
2102 repl->hook_entry,
2103 repl->underflow);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002104 if (ret != 0)
2105 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Alexey Dobriyan336b5172008-01-31 04:03:45 -08002107 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08002108 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002109 ret = PTR_ERR(new_table);
2110 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 }
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002112 return new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002114out_free:
2115 xt_free_table_info(newinfo);
2116out:
2117 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118}
2119
Harald Welte2e4e6a12006-01-12 13:30:04 -08002120void ip6t_unregister_table(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121{
Harald Welte2e4e6a12006-01-12 13:30:04 -08002122 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08002123 void *loc_cpu_entry;
2124
Harald Welte2e4e6a12006-01-12 13:30:04 -08002125 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127 /* Decrease module usage counts and free resources */
Harald Welte2e4e6a12006-01-12 13:30:04 -08002128 loc_cpu_entry = private->entries[raw_smp_processor_id()];
2129 IP6T_ENTRY_ITERATE(loc_cpu_entry, private->size, cleanup_entry, NULL);
2130 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131}
2132
2133/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardtccb79bd2007-07-07 22:16:00 -07002134static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135icmp6_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2136 u_int8_t type, u_int8_t code,
Jan Engelhardtccb79bd2007-07-07 22:16:00 -07002137 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138{
2139 return (type == test_type && code >= min_code && code <= max_code)
2140 ^ invert;
2141}
2142
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002143static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144icmp6_match(const struct sk_buff *skb,
2145 const struct net_device *in,
2146 const struct net_device *out,
Patrick McHardyc4986732006-03-20 18:02:56 -08002147 const struct xt_match *match,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 const void *matchinfo,
2149 int offset,
2150 unsigned int protoff,
Jan Engelhardtcff533a2007-07-07 22:15:12 -07002151 bool *hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152{
Patrick McHardy9c547952007-12-17 21:52:00 -08002153 struct icmp6hdr _icmph, *ic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 const struct ip6t_icmp *icmpinfo = matchinfo;
2155
2156 /* Must not be a fragment. */
2157 if (offset)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002158 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
Patrick McHardy9c547952007-12-17 21:52:00 -08002160 ic = skb_header_pointer(skb, protoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 if (ic == NULL) {
2162 /* We've been asked to examine this packet, and we
Patrick McHardy9c547952007-12-17 21:52:00 -08002163 * can't. Hence, no choice but to drop.
2164 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtcff533a2007-07-07 22:15:12 -07002166 *hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002167 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 }
2169
2170 return icmp6_type_code_match(icmpinfo->type,
2171 icmpinfo->code[0],
2172 icmpinfo->code[1],
2173 ic->icmp6_type, ic->icmp6_code,
2174 !!(icmpinfo->invflags&IP6T_ICMP_INV));
2175}
2176
2177/* Called when user tries to insert an entry of this type. */
Jan Engelhardtccb79bd2007-07-07 22:16:00 -07002178static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179icmp6_checkentry(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -08002180 const void *entry,
Patrick McHardyc4986732006-03-20 18:02:56 -08002181 const struct xt_match *match,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 void *matchinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 unsigned int hook_mask)
2184{
2185 const struct ip6t_icmp *icmpinfo = matchinfo;
2186
Patrick McHardy7f939712006-03-20 18:01:43 -08002187 /* Must specify no unknown invflags */
2188 return !(icmpinfo->invflags & ~IP6T_ICMP_INV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189}
2190
2191/* The built-in targets: standard (NULL) and error. */
Patrick McHardy9f15c532007-07-07 22:22:02 -07002192static struct xt_target ip6t_standard_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 .name = IP6T_STANDARD_TARGET,
Patrick McHardy7f939712006-03-20 18:01:43 -08002194 .targetsize = sizeof(int),
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002195 .family = AF_INET6,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002196#ifdef CONFIG_COMPAT
2197 .compatsize = sizeof(compat_int_t),
2198 .compat_from_user = compat_standard_from_user,
2199 .compat_to_user = compat_standard_to_user,
2200#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201};
2202
Patrick McHardy9f15c532007-07-07 22:22:02 -07002203static struct xt_target ip6t_error_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 .name = IP6T_ERROR_TARGET,
2205 .target = ip6t_error,
Patrick McHardy7f939712006-03-20 18:01:43 -08002206 .targetsize = IP6T_FUNCTION_MAXNAMELEN,
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002207 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208};
2209
2210static struct nf_sockopt_ops ip6t_sockopts = {
2211 .pf = PF_INET6,
2212 .set_optmin = IP6T_BASE_CTL,
2213 .set_optmax = IP6T_SO_SET_MAX+1,
2214 .set = do_ip6t_set_ctl,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002215#ifdef CONFIG_COMPAT
2216 .compat_set = compat_do_ip6t_set_ctl,
2217#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 .get_optmin = IP6T_BASE_CTL,
2219 .get_optmax = IP6T_SO_GET_MAX+1,
2220 .get = do_ip6t_get_ctl,
Patrick McHardy3bc3fe52007-12-17 21:50:37 -08002221#ifdef CONFIG_COMPAT
2222 .compat_get = compat_do_ip6t_get_ctl,
2223#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002224 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225};
2226
Patrick McHardy9f15c532007-07-07 22:22:02 -07002227static struct xt_match icmp6_matchstruct __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 .name = "icmp6",
Patrick McHardy9c547952007-12-17 21:52:00 -08002229 .match = icmp6_match,
Patrick McHardy7f939712006-03-20 18:01:43 -08002230 .matchsize = sizeof(struct ip6t_icmp),
2231 .checkentry = icmp6_checkentry,
2232 .proto = IPPROTO_ICMPV6,
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002233 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234};
2235
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002236static int __init ip6_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237{
2238 int ret;
2239
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002240 ret = xt_proto_init(AF_INET6);
2241 if (ret < 0)
2242 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002243
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 /* Noone else will be downing sem now, so we won't sleep */
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002245 ret = xt_register_target(&ip6t_standard_target);
2246 if (ret < 0)
2247 goto err2;
2248 ret = xt_register_target(&ip6t_error_target);
2249 if (ret < 0)
2250 goto err3;
2251 ret = xt_register_match(&icmp6_matchstruct);
2252 if (ret < 0)
2253 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
2255 /* Register setsockopt */
2256 ret = nf_register_sockopt(&ip6t_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002257 if (ret < 0)
2258 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
Patrick McHardya887c1c2007-07-14 20:46:15 -07002260 printk(KERN_INFO "ip6_tables: (C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002262
2263err5:
2264 xt_unregister_match(&icmp6_matchstruct);
2265err4:
2266 xt_unregister_target(&ip6t_error_target);
2267err3:
2268 xt_unregister_target(&ip6t_standard_target);
2269err2:
2270 xt_proto_fini(AF_INET6);
2271err1:
2272 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273}
2274
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002275static void __exit ip6_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276{
2277 nf_unregister_sockopt(&ip6t_sockopts);
Patrick McHardy9c547952007-12-17 21:52:00 -08002278
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002279 xt_unregister_match(&icmp6_matchstruct);
2280 xt_unregister_target(&ip6t_error_target);
2281 xt_unregister_target(&ip6t_standard_target);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002282 xt_proto_fini(AF_INET6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283}
2284
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002285/*
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002286 * find the offset to specified header or the protocol number of last header
2287 * if target < 0. "last header" is transport protocol header, ESP, or
2288 * "No next header".
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002289 *
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002290 * If target header is found, its offset is set in *offset and return protocol
2291 * number. Otherwise, return -1.
2292 *
Patrick McHardy6d381632006-10-24 16:15:10 -07002293 * If the first fragment doesn't contain the final protocol header or
2294 * NEXTHDR_NONE it is considered invalid.
2295 *
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002296 * Note that non-1st fragment is special case that "the protocol number
2297 * of last header" is "next header" field in Fragment header. In this case,
2298 * *offset is meaningless and fragment offset is stored in *fragoff if fragoff
2299 * isn't NULL.
2300 *
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002301 */
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002302int ipv6_find_hdr(const struct sk_buff *skb, unsigned int *offset,
2303 int target, unsigned short *fragoff)
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002304{
Arnaldo Carvalho de Melo6b88dd92007-03-19 22:29:03 -03002305 unsigned int start = skb_network_offset(skb) + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002306 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002307 unsigned int len = skb->len - start;
2308
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002309 if (fragoff)
2310 *fragoff = 0;
2311
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002312 while (nexthdr != target) {
2313 struct ipv6_opt_hdr _hdr, *hp;
2314 unsigned int hdrlen;
2315
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002316 if ((!ipv6_ext_hdr(nexthdr)) || nexthdr == NEXTHDR_NONE) {
2317 if (target < 0)
2318 break;
Patrick McHardy6d381632006-10-24 16:15:10 -07002319 return -ENOENT;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002320 }
2321
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002322 hp = skb_header_pointer(skb, start, sizeof(_hdr), &_hdr);
2323 if (hp == NULL)
Patrick McHardy6d381632006-10-24 16:15:10 -07002324 return -EBADMSG;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002325 if (nexthdr == NEXTHDR_FRAGMENT) {
Al Viroe69a4adc2006-11-14 20:56:00 -08002326 unsigned short _frag_off;
2327 __be16 *fp;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002328 fp = skb_header_pointer(skb,
2329 start+offsetof(struct frag_hdr,
2330 frag_off),
2331 sizeof(_frag_off),
2332 &_frag_off);
2333 if (fp == NULL)
Patrick McHardy6d381632006-10-24 16:15:10 -07002334 return -EBADMSG;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002335
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002336 _frag_off = ntohs(*fp) & ~0x7;
2337 if (_frag_off) {
2338 if (target < 0 &&
2339 ((!ipv6_ext_hdr(hp->nexthdr)) ||
Patrick McHardy337dde72006-11-14 19:49:13 -08002340 hp->nexthdr == NEXTHDR_NONE)) {
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002341 if (fragoff)
2342 *fragoff = _frag_off;
2343 return hp->nexthdr;
2344 }
Patrick McHardy6d381632006-10-24 16:15:10 -07002345 return -ENOENT;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002346 }
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002347 hdrlen = 8;
2348 } else if (nexthdr == NEXTHDR_AUTH)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002349 hdrlen = (hp->hdrlen + 2) << 2;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002350 else
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002351 hdrlen = ipv6_optlen(hp);
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002352
2353 nexthdr = hp->nexthdr;
2354 len -= hdrlen;
2355 start += hdrlen;
2356 }
2357
2358 *offset = start;
Patrick McHardyb777e0c2006-01-05 12:21:16 -08002359 return nexthdr;
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002360}
2361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362EXPORT_SYMBOL(ip6t_register_table);
2363EXPORT_SYMBOL(ip6t_unregister_table);
2364EXPORT_SYMBOL(ip6t_do_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365EXPORT_SYMBOL(ip6t_ext_hdr);
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -07002366EXPORT_SYMBOL(ipv6_find_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002368module_init(ip6_tables_init);
2369module_exit(ip6_tables_fini);