blob: 265cedf886606aee55a4e3e6d12f563f62eda0ce [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 Welte2e4e6a12006-01-12 13:30:04 -08005 * Copyright (C) 2000-2005 Netfilter Core Team <coreteam@netfilter.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +020011#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/cache.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080013#include <linux/capability.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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/icmp.h>
20#include <net/ip.h>
Dmitry Mishin27229712006-04-01 02:25:19 -080021#include <net/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/uaccess.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -080023#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/proc_fs.h>
25#include <linux/err.h>
David S. Millerc8923c62005-10-13 14:41:23 -070026#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Harald Welte2e4e6a12006-01-12 13:30:04 -080028#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/netfilter_ipv4/ip_tables.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080030#include <net/netfilter/nf_log.h>
Jan Engelhardte3eaa992009-06-17 22:14:54 +020031#include "../../netfilter/xt_repldata.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33MODULE_LICENSE("GPL");
34MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
35MODULE_DESCRIPTION("IPv4 packet filter");
36
37/*#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
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010042#define dprintf(format, args...) pr_info(format , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#else
44#define dprintf(format, args...)
45#endif
46
47#ifdef DEBUG_IP_FIREWALL_USER
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010048#define duprintf(format, args...) pr_info(format , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#else
50#define duprintf(format, args...)
51#endif
52
53#ifdef CONFIG_NETFILTER_DEBUG
54#define IP_NF_ASSERT(x) \
55do { \
56 if (!(x)) \
57 printk("IP_NF_ASSERT: %s:%s:%u\n", \
Harvey Harrison0dc47872008-03-05 20:47:47 -080058 __func__, __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070059} while(0)
60#else
61#define IP_NF_ASSERT(x)
62#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64#if 0
65/* All the better to debug you with... */
66#define static
67#define inline
68#endif
69
Jan Engelhardte3eaa992009-06-17 22:14:54 +020070void *ipt_alloc_initial_table(const struct xt_table *info)
71{
72 return xt_alloc_initial_table(ipt, IPT);
73}
74EXPORT_SYMBOL_GPL(ipt_alloc_initial_table);
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076/*
77 We keep a set of rules for each CPU, so we can avoid write-locking
78 them in the softirq when updating the counters and therefore
79 only need to read-lock in the softirq; doing a write_lock_bh() in user
80 context stops packets coming through and allows user context to read
81 the counters or update the rules.
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 Hence the start of any table is given by get_table() below. */
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/* Returns whether matches rule or not. */
Denys Vlasenko022748a2008-01-14 23:44:05 -080086/* Performance critical - called for every packet */
Patrick McHardy9c547952007-12-17 21:52:00 -080087static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -070088ip_packet_match(const struct iphdr *ip,
89 const char *indev,
90 const char *outdev,
91 const struct ipt_ip *ipinfo,
92 int isfrag)
93{
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 unsigned long ret;
95
Jan Engelhardte79ec502007-12-17 22:44:06 -080096#define FWINV(bool, invflg) ((bool) ^ !!(ipinfo->invflags & (invflg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98 if (FWINV((ip->saddr&ipinfo->smsk.s_addr) != ipinfo->src.s_addr,
Joe Perches3666ed12009-11-23 23:17:06 +010099 IPT_INV_SRCIP) ||
100 FWINV((ip->daddr&ipinfo->dmsk.s_addr) != ipinfo->dst.s_addr,
101 IPT_INV_DSTIP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 dprintf("Source or dest mismatch.\n");
103
Harvey Harrisoncffee382008-10-31 00:53:08 -0700104 dprintf("SRC: %pI4. Mask: %pI4. Target: %pI4.%s\n",
105 &ip->saddr, &ipinfo->smsk.s_addr, &ipinfo->src.s_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 ipinfo->invflags & IPT_INV_SRCIP ? " (INV)" : "");
Harvey Harrisoncffee382008-10-31 00:53:08 -0700107 dprintf("DST: %pI4 Mask: %pI4 Target: %pI4.%s\n",
108 &ip->daddr, &ipinfo->dmsk.s_addr, &ipinfo->dst.s_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 ipinfo->invflags & IPT_INV_DSTIP ? " (INV)" : "");
Patrick McHardy9c547952007-12-17 21:52:00 -0800110 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 }
112
Eric Dumazetb8dfe492009-03-25 17:31:52 +0100113 ret = ifname_compare_aligned(indev, ipinfo->iniface, ipinfo->iniface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 if (FWINV(ret != 0, IPT_INV_VIA_IN)) {
116 dprintf("VIA in mismatch (%s vs %s).%s\n",
117 indev, ipinfo->iniface,
118 ipinfo->invflags&IPT_INV_VIA_IN ?" (INV)":"");
Patrick McHardy9c547952007-12-17 21:52:00 -0800119 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 }
121
Eric Dumazetb8dfe492009-03-25 17:31:52 +0100122 ret = ifname_compare_aligned(outdev, ipinfo->outiface, ipinfo->outiface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 if (FWINV(ret != 0, IPT_INV_VIA_OUT)) {
125 dprintf("VIA out mismatch (%s vs %s).%s\n",
126 outdev, ipinfo->outiface,
127 ipinfo->invflags&IPT_INV_VIA_OUT ?" (INV)":"");
Patrick McHardy9c547952007-12-17 21:52:00 -0800128 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
130
131 /* Check specific protocol */
Joe Perches3666ed12009-11-23 23:17:06 +0100132 if (ipinfo->proto &&
133 FWINV(ip->protocol != ipinfo->proto, IPT_INV_PROTO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 dprintf("Packet protocol %hi does not match %hi.%s\n",
135 ip->protocol, ipinfo->proto,
136 ipinfo->invflags&IPT_INV_PROTO ? " (INV)":"");
Patrick McHardy9c547952007-12-17 21:52:00 -0800137 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139
140 /* If we have a fragment rule but the packet is not a fragment
141 * then we return zero */
142 if (FWINV((ipinfo->flags&IPT_F_FRAG) && !isfrag, IPT_INV_FRAG)) {
143 dprintf("Fragment rule but not fragment.%s\n",
144 ipinfo->invflags & IPT_INV_FRAG ? " (INV)" : "");
Patrick McHardy9c547952007-12-17 21:52:00 -0800145 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 }
147
Patrick McHardy9c547952007-12-17 21:52:00 -0800148 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Denys Vlasenko022748a2008-01-14 23:44:05 -0800151static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152ip_checkentry(const struct ipt_ip *ip)
153{
154 if (ip->flags & ~IPT_F_MASK) {
155 duprintf("Unknown flag bits set: %08X\n",
156 ip->flags & ~IPT_F_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700157 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
159 if (ip->invflags & ~IPT_INV_MASK) {
160 duprintf("Unknown invflag bits set: %08X\n",
161 ip->invflags & ~IPT_INV_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700162 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700164 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
167static unsigned int
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200168ipt_error(struct sk_buff *skb, const struct xt_target_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
170 if (net_ratelimit())
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100171 pr_info("error: `%s'\n", (const char *)par->targinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 return NF_DROP;
174}
175
Denys Vlasenko022748a2008-01-14 23:44:05 -0800176/* Performance critical */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177static inline struct ipt_entry *
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200178get_entry(const void *base, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 return (struct ipt_entry *)(base + offset);
181}
182
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700183/* All zeroes == unconditional rule. */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800184/* Mildly perf critical (only if packet tracing is on) */
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200185static inline bool unconditional(const struct ipt_ip *ip)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700186{
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200187 static const struct ipt_ip uncond;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700188
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200189 return memcmp(ip, &uncond, sizeof(uncond)) == 0;
Jan Engelhardte79ec502007-12-17 22:44:06 -0800190#undef FWINV
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700191}
192
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200193/* for const-correctness */
194static inline const struct ipt_entry_target *
195ipt_get_target_c(const struct ipt_entry *e)
196{
197 return ipt_get_target((struct ipt_entry *)e);
198}
199
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700200#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
201 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
Denys Vlasenko022748a2008-01-14 23:44:05 -0800202static const char *const hooknames[] = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800203 [NF_INET_PRE_ROUTING] = "PREROUTING",
204 [NF_INET_LOCAL_IN] = "INPUT",
Patrick McHardy9c547952007-12-17 21:52:00 -0800205 [NF_INET_FORWARD] = "FORWARD",
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800206 [NF_INET_LOCAL_OUT] = "OUTPUT",
207 [NF_INET_POST_ROUTING] = "POSTROUTING",
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700208};
209
210enum nf_ip_trace_comments {
211 NF_IP_TRACE_COMMENT_RULE,
212 NF_IP_TRACE_COMMENT_RETURN,
213 NF_IP_TRACE_COMMENT_POLICY,
214};
215
Denys Vlasenko022748a2008-01-14 23:44:05 -0800216static const char *const comments[] = {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700217 [NF_IP_TRACE_COMMENT_RULE] = "rule",
218 [NF_IP_TRACE_COMMENT_RETURN] = "return",
219 [NF_IP_TRACE_COMMENT_POLICY] = "policy",
220};
221
222static struct nf_loginfo trace_loginfo = {
223 .type = NF_LOG_TYPE_LOG,
224 .u = {
225 .log = {
226 .level = 4,
227 .logflags = NF_LOG_MASK,
228 },
229 },
230};
231
Denys Vlasenko022748a2008-01-14 23:44:05 -0800232/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700233static inline int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200234get_chainname_rulenum(const struct ipt_entry *s, const struct ipt_entry *e,
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200235 const char *hookname, const char **chainname,
236 const char **comment, unsigned int *rulenum)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700237{
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200238 const struct ipt_standard_target *t = (void *)ipt_get_target_c(s);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700239
240 if (strcmp(t->target.u.kernel.target->name, IPT_ERROR_TARGET) == 0) {
241 /* Head of user chain: ERROR target with chainname */
242 *chainname = t->target.data;
243 (*rulenum) = 0;
244 } else if (s == e) {
245 (*rulenum)++;
246
Joe Perches3666ed12009-11-23 23:17:06 +0100247 if (s->target_offset == sizeof(struct ipt_entry) &&
248 strcmp(t->target.u.kernel.target->name,
249 IPT_STANDARD_TARGET) == 0 &&
250 t->verdict < 0 &&
251 unconditional(&s->ip)) {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700252 /* Tail of chains: STANDARD target (return/policy) */
253 *comment = *chainname == hookname
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200254 ? comments[NF_IP_TRACE_COMMENT_POLICY]
255 : comments[NF_IP_TRACE_COMMENT_RETURN];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700256 }
257 return 1;
258 } else
259 (*rulenum)++;
260
261 return 0;
262}
263
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200264static void trace_packet(const struct sk_buff *skb,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700265 unsigned int hook,
266 const struct net_device *in,
267 const struct net_device *out,
Jan Engelhardtecb6f852008-01-31 03:54:47 -0800268 const char *tablename,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200269 const struct xt_table_info *private,
270 const struct ipt_entry *e)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700271{
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200272 const void *table_base;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200273 const struct ipt_entry *root;
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200274 const char *hookname, *chainname, *comment;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100275 const struct ipt_entry *iter;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700276 unsigned int rulenum = 0;
277
Jan Engelhardtccf5bd82009-04-15 20:27:03 +0200278 table_base = private->entries[smp_processor_id()];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700279 root = get_entry(table_base, private->hook_entry[hook]);
280
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200281 hookname = chainname = hooknames[hook];
282 comment = comments[NF_IP_TRACE_COMMENT_RULE];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700283
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100284 xt_entry_foreach(iter, root, private->size - private->hook_entry[hook])
285 if (get_chainname_rulenum(iter, e, hookname,
286 &chainname, &comment, &rulenum) != 0)
287 break;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700288
289 nf_log_packet(AF_INET, hook, skb, in, out, &trace_loginfo,
290 "TRACE: %s:%s:%s:%u ",
291 tablename, chainname, comment, rulenum);
292}
293#endif
294
Jan Engelhardt98e86402009-04-15 21:06:05 +0200295static inline __pure
296struct ipt_entry *ipt_next_entry(const struct ipt_entry *entry)
297{
298 return (void *)entry + entry->next_offset;
299}
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301/* Returns one of the generic firewall policies, like NF_ACCEPT. */
302unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700303ipt_do_table(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 unsigned int hook,
305 const struct net_device *in,
306 const struct net_device *out,
Jan Engelhardte60a13e2007-02-07 15:12:33 -0800307 struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
309 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
Jan Engelhardt5452e422008-04-14 11:15:35 +0200310 const struct iphdr *ip;
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700311 bool hotdrop = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 /* Initializing verdict to NF_DROP keeps gcc happy. */
313 unsigned int verdict = NF_DROP;
314 const char *indev, *outdev;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200315 const void *table_base;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200316 struct ipt_entry *e, **jumpstack;
317 unsigned int *stackptr, origptr, cpu;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200318 const struct xt_table_info *private;
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200319 struct xt_match_param mtpar;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200320 struct xt_target_param tgpar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 /* Initialization */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700323 ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 indev = in ? in->name : nulldevname;
325 outdev = out ? out->name : nulldevname;
326 /* We handle fragments by dealing with the first fragment as
327 * if it was a normal packet. All other fragments are treated
328 * normally, except that they will NEVER match rules that ask
329 * things we don't know, ie. tcp syn flag or ports). If the
330 * rule is also a fragment-specific rule, non-fragments won't
331 * match it. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200332 mtpar.fragoff = ntohs(ip->frag_off) & IP_OFFSET;
333 mtpar.thoff = ip_hdrlen(skb);
334 mtpar.hotdrop = &hotdrop;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200335 mtpar.in = tgpar.in = in;
336 mtpar.out = tgpar.out = out;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200337 mtpar.family = tgpar.family = NFPROTO_IPV4;
Evgeniy Polyakova5e78822009-06-04 16:54:42 +0200338 mtpar.hooknum = tgpar.hooknum = hook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 IP_NF_ASSERT(table->valid_hooks & (1 << hook));
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700341 xt_info_rdlock_bh();
342 private = table->private;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200343 cpu = smp_processor_id();
344 table_base = private->entries[cpu];
345 jumpstack = (struct ipt_entry **)private->jumpstack[cpu];
346 stackptr = &private->stackptr[cpu];
347 origptr = *stackptr;
Stephen Hemminger78454472009-02-20 10:35:32 +0100348
Harald Welte2e4e6a12006-01-12 13:30:04 -0800349 e = get_entry(table_base, private->hook_entry[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Patrick McHardycecc74d2010-04-22 13:03:24 +0200351 pr_debug("Entering %s(hook %u); sp at %u (UF %p)\n",
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200352 table->name, hook, origptr,
353 get_entry(table_base, private->underflow[hook]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 do {
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200356 const struct ipt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100357 const struct xt_entry_match *ematch;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 IP_NF_ASSERT(e);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200360 if (!ip_packet_match(ip, indev, outdev,
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100361 &e->ip, mtpar.fragoff)) {
362 no_match:
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200363 e = ipt_next_entry(e);
364 continue;
365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Jan Engelhardtef53d702009-07-09 19:14:18 +0200367 xt_ematch_foreach(ematch, e) {
368 mtpar.match = ematch->u.kernel.match;
369 mtpar.matchinfo = ematch->data;
370 if (!mtpar.match->match(skb, &mtpar))
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100371 goto no_match;
Jan Engelhardtef53d702009-07-09 19:14:18 +0200372 }
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100373
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200374 ADD_COUNTER(e->counters, ntohs(ip->tot_len), 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200376 t = ipt_get_target(e);
377 IP_NF_ASSERT(t->u.kernel.target);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700378
379#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
380 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200381 /* The packet is traced: log it */
382 if (unlikely(skb->nf_trace))
383 trace_packet(skb, hook, in, out,
384 table->name, private, e);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700385#endif
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200386 /* Standard target? */
387 if (!t->u.kernel.target->target) {
388 int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200390 v = ((struct ipt_standard_target *)t)->verdict;
391 if (v < 0) {
392 /* Pop from stack? */
393 if (v != IPT_RETURN) {
394 verdict = (unsigned)(-v) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 break;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200396 }
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200397 if (*stackptr == 0) {
398 e = get_entry(table_base,
399 private->underflow[hook]);
Patrick McHardycecc74d2010-04-22 13:03:24 +0200400 pr_debug("Underflow (this is normal) "
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200401 "to %p\n", e);
402 } else {
403 e = jumpstack[--*stackptr];
Patrick McHardycecc74d2010-04-22 13:03:24 +0200404 pr_debug("Pulled %p out from pos %u\n",
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200405 e, *stackptr);
406 e = ipt_next_entry(e);
407 }
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200408 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
Joe Perches3666ed12009-11-23 23:17:06 +0100410 if (table_base + v != ipt_next_entry(e) &&
411 !(e->ip.flags & IPT_F_GOTO)) {
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200412 if (*stackptr >= private->stacksize) {
413 verdict = NF_DROP;
414 break;
415 }
416 jumpstack[(*stackptr)++] = e;
Patrick McHardycecc74d2010-04-22 13:03:24 +0200417 pr_debug("Pushed %p into pos %u\n",
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200418 e, *stackptr - 1);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200421 e = get_entry(table_base, v);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200422 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200424
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200425 tgpar.target = t->u.kernel.target;
426 tgpar.targinfo = t->data;
Jan Engelhardtbb70dfa2009-04-15 21:40:13 +0200427
428
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200429 verdict = t->u.kernel.target->target(skb, &tgpar);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200430 /* Target might have changed stuff. */
431 ip = ip_hdr(skb);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200432 if (verdict == IPT_CONTINUE)
433 e = ipt_next_entry(e);
434 else
435 /* Verdict */
436 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 } while (!hotdrop);
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700438 xt_info_rdunlock_bh();
Patrick McHardycecc74d2010-04-22 13:03:24 +0200439 pr_debug("Exiting %s; resetting sp from %u to %u\n",
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200440 __func__, *stackptr, origptr);
441 *stackptr = origptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442#ifdef DEBUG_ALLOW_ALL
443 return NF_ACCEPT;
444#else
445 if (hotdrop)
446 return NF_DROP;
447 else return verdict;
448#endif
449}
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451/* Figures out from what hook each rule can be called: returns 0 if
452 there are loops. Puts hook bitmask in comefrom. */
453static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200454mark_source_chains(const struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800455 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
457 unsigned int hook;
458
459 /* No recursion; use packet counter to save back ptrs (reset
460 to 0 as we leave), and comefrom to save source hook bitmask */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800461 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 unsigned int pos = newinfo->hook_entry[hook];
Patrick McHardy9c547952007-12-17 21:52:00 -0800463 struct ipt_entry *e = (struct ipt_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 if (!(valid_hooks & (1 << hook)))
466 continue;
467
468 /* Set initial back pointer. */
469 e->counters.pcnt = pos;
470
471 for (;;) {
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200472 const struct ipt_standard_target *t
473 = (void *)ipt_get_target_c(e);
Al Viroe1b4b9f2006-12-12 00:29:52 -0800474 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800476 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 printk("iptables: loop hook %u pos %u %08X.\n",
478 hook, pos, e->comefrom);
479 return 0;
480 }
Patrick McHardy9c547952007-12-17 21:52:00 -0800481 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 /* Unconditional return/END. */
Joe Perches3666ed12009-11-23 23:17:06 +0100484 if ((e->target_offset == sizeof(struct ipt_entry) &&
485 (strcmp(t->target.u.user.name,
486 IPT_STANDARD_TARGET) == 0) &&
487 t->verdict < 0 && unconditional(&e->ip)) ||
488 visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 unsigned int oldpos, size;
490
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100491 if ((strcmp(t->target.u.user.name,
492 IPT_STANDARD_TARGET) == 0) &&
493 t->verdict < -NF_MAX_VERDICT - 1) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800494 duprintf("mark_source_chains: bad "
495 "negative verdict (%i)\n",
496 t->verdict);
497 return 0;
498 }
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 /* Return: backtrack through the last
501 big jump. */
502 do {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800503 e->comefrom ^= (1<<NF_INET_NUMHOOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504#ifdef DEBUG_IP_FIREWALL_USER
505 if (e->comefrom
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800506 & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 duprintf("Back unset "
508 "on hook %u "
509 "rule %u\n",
510 hook, pos);
511 }
512#endif
513 oldpos = pos;
514 pos = e->counters.pcnt;
515 e->counters.pcnt = 0;
516
517 /* We're at the start. */
518 if (pos == oldpos)
519 goto next;
520
521 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800522 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 } while (oldpos == pos + e->next_offset);
524
525 /* Move along one */
526 size = e->next_offset;
527 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800528 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 e->counters.pcnt = pos;
530 pos += size;
531 } else {
532 int newpos = t->verdict;
533
534 if (strcmp(t->target.u.user.name,
Joe Perches3666ed12009-11-23 23:17:06 +0100535 IPT_STANDARD_TARGET) == 0 &&
536 newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800537 if (newpos > newinfo->size -
538 sizeof(struct ipt_entry)) {
539 duprintf("mark_source_chains: "
540 "bad verdict (%i)\n",
541 newpos);
542 return 0;
543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 /* This a jump; chase it. */
545 duprintf("Jump rule %u -> %u\n",
546 pos, newpos);
547 } else {
548 /* ... this is a fallthru */
549 newpos = pos + e->next_offset;
550 }
551 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800552 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 e->counters.pcnt = pos;
554 pos = newpos;
555 }
556 }
557 next:
558 duprintf("Finished chain %u\n", hook);
559 }
560 return 1;
561}
562
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100563static void cleanup_match(struct ipt_entry_match *m, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200565 struct xt_mtdtor_param par;
566
Alexey Dobriyanf54e9362010-01-18 08:25:47 +0100567 par.net = net;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200568 par.match = m->u.kernel.match;
569 par.matchinfo = m->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200570 par.family = NFPROTO_IPV4;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200571 if (par.match->destroy != NULL)
572 par.match->destroy(&par);
573 module_put(par.match->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
Denys Vlasenko022748a2008-01-14 23:44:05 -0800576static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200577check_entry(const struct ipt_entry *e, const char *name)
Dmitry Mishina96be242006-12-12 00:29:26 -0800578{
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200579 const struct ipt_entry_target *t;
Dmitry Mishina96be242006-12-12 00:29:26 -0800580
581 if (!ip_checkentry(&e->ip)) {
Jan Engelhardtb5cad0d2010-05-02 13:55:21 +0200582 duprintf("ip check failed %p %s.\n", e, par->match->name);
Dmitry Mishina96be242006-12-12 00:29:26 -0800583 return -EINVAL;
584 }
585
Patrick McHardy9c547952007-12-17 21:52:00 -0800586 if (e->target_offset + sizeof(struct ipt_entry_target) >
587 e->next_offset)
Dmitry Mishina96be242006-12-12 00:29:26 -0800588 return -EINVAL;
589
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200590 t = ipt_get_target_c(e);
Dmitry Mishina96be242006-12-12 00:29:26 -0800591 if (e->target_offset + t->u.target_size > e->next_offset)
592 return -EINVAL;
593
594 return 0;
595}
596
Denys Vlasenko022748a2008-01-14 23:44:05 -0800597static int
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100598check_match(struct ipt_entry_match *m, struct xt_mtchk_param *par)
Dmitry Mishina96be242006-12-12 00:29:26 -0800599{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200600 const struct ipt_ip *ip = par->entryinfo;
Dmitry Mishina96be242006-12-12 00:29:26 -0800601 int ret;
602
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200603 par->match = m->u.kernel.match;
604 par->matchinfo = m->data;
605
Jan Engelhardt916a9172008-10-08 11:35:20 +0200606 ret = xt_check_match(par, m->u.match_size - sizeof(*m),
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200607 ip->proto, ip->invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200608 if (ret < 0) {
Jan Engelhardtb5cad0d2010-05-02 13:55:21 +0200609 duprintf("check failed for `%s'.\n", par->match->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200610 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800611 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200612 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800613}
614
Denys Vlasenko022748a2008-01-14 23:44:05 -0800615static int
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100616find_check_match(struct ipt_entry_match *m, struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800618 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800619 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200621 match = xt_request_find_match(NFPROTO_IPV4, m->u.user.name,
622 m->u.user.revision);
623 if (IS_ERR(match)) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800624 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200625 return PTR_ERR(match);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
627 m->u.kernel.match = match;
628
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100629 ret = check_match(m, par);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800630 if (ret)
631 goto err;
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800634err:
635 module_put(m->u.kernel.match->me);
636 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637}
638
Patrick McHardyadd67462010-02-03 13:45:12 +0100639static int check_target(struct ipt_entry *e, struct net *net, const char *name)
Dmitry Mishina96be242006-12-12 00:29:26 -0800640{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200641 struct ipt_entry_target *t = ipt_get_target(e);
642 struct xt_tgchk_param par = {
Patrick McHardyadd67462010-02-03 13:45:12 +0100643 .net = net,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200644 .table = name,
645 .entryinfo = e,
646 .target = t->u.kernel.target,
647 .targinfo = t->data,
648 .hook_mask = e->comefrom,
Jan Engelhardt916a9172008-10-08 11:35:20 +0200649 .family = NFPROTO_IPV4,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200650 };
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900651 int ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800652
Jan Engelhardt916a9172008-10-08 11:35:20 +0200653 ret = xt_check_target(&par, t->u.target_size - sizeof(*t),
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200654 e->ip.proto, e->ip.invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200655 if (ret < 0) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100656 duprintf("check failed for `%s'.\n",
Dmitry Mishina96be242006-12-12 00:29:26 -0800657 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200658 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800659 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200660 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800661}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Denys Vlasenko022748a2008-01-14 23:44:05 -0800663static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100664find_check_entry(struct ipt_entry *e, struct net *net, const char *name,
Jan Engelhardt05595182010-02-24 18:33:43 +0100665 unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
667 struct ipt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800668 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 int ret;
670 unsigned int j;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200671 struct xt_mtchk_param mtpar;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100672 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Dmitry Mishina96be242006-12-12 00:29:26 -0800674 ret = check_entry(e, name);
675 if (ret)
676 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 j = 0;
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100679 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200680 mtpar.table = name;
681 mtpar.entryinfo = &e->ip;
682 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200683 mtpar.family = NFPROTO_IPV4;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100684 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100685 ret = find_check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100686 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100687 goto cleanup_matches;
688 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 t = ipt_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200692 target = xt_request_find_target(NFPROTO_IPV4, t->u.user.name,
693 t->u.user.revision);
694 if (IS_ERR(target)) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800695 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200696 ret = PTR_ERR(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 goto cleanup_matches;
698 }
699 t->u.kernel.target = target;
700
Patrick McHardyadd67462010-02-03 13:45:12 +0100701 ret = check_target(e, net, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800702 if (ret)
703 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800705 err:
706 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100708 xt_ematch_foreach(ematch, e) {
709 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100710 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100711 cleanup_match(ematch, net);
712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return ret;
714}
715
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200716static bool check_underflow(const struct ipt_entry *e)
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200717{
718 const struct ipt_entry_target *t;
719 unsigned int verdict;
720
721 if (!unconditional(&e->ip))
722 return false;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200723 t = ipt_get_target_c(e);
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200724 if (strcmp(t->u.user.name, XT_STANDARD_TARGET) != 0)
725 return false;
726 verdict = ((struct ipt_standard_target *)t)->verdict;
727 verdict = -verdict - 1;
728 return verdict == NF_DROP || verdict == NF_ACCEPT;
729}
730
Denys Vlasenko022748a2008-01-14 23:44:05 -0800731static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732check_entry_size_and_hooks(struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800733 struct xt_table_info *newinfo,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200734 const unsigned char *base,
735 const unsigned char *limit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 const unsigned int *hook_entries,
737 const unsigned int *underflows,
Jan Engelhardt05595182010-02-24 18:33:43 +0100738 unsigned int valid_hooks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
740 unsigned int h;
741
Joe Perches3666ed12009-11-23 23:17:06 +0100742 if ((unsigned long)e % __alignof__(struct ipt_entry) != 0 ||
743 (unsigned char *)e + sizeof(struct ipt_entry) >= limit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 duprintf("Bad offset %p\n", e);
745 return -EINVAL;
746 }
747
748 if (e->next_offset
749 < sizeof(struct ipt_entry) + sizeof(struct ipt_entry_target)) {
750 duprintf("checking: element %p size %u\n",
751 e, e->next_offset);
752 return -EINVAL;
753 }
754
755 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800756 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Jan Engelhardta7d51732009-07-18 14:52:58 +0200757 if (!(valid_hooks & (1 << h)))
758 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 if ((unsigned char *)e - base == hook_entries[h])
760 newinfo->hook_entry[h] = hook_entries[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200761 if ((unsigned char *)e - base == underflows[h]) {
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200762 if (!check_underflow(e)) {
763 pr_err("Underflows must be unconditional and "
764 "use the STANDARD target with "
765 "ACCEPT/DROP\n");
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200766 return -EINVAL;
767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 newinfo->underflow[h] = underflows[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800773 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 e->comefrom = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return 0;
776}
777
Jan Engelhardt05595182010-02-24 18:33:43 +0100778static void
779cleanup_entry(struct ipt_entry *e, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200781 struct xt_tgdtor_param par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 struct ipt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100783 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100786 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100787 cleanup_match(ematch, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 t = ipt_get_target(e);
Jan Engelhardta2df1642008-10-08 11:35:19 +0200789
Patrick McHardyadd67462010-02-03 13:45:12 +0100790 par.net = net;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200791 par.target = t->u.kernel.target;
792 par.targinfo = t->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200793 par.family = NFPROTO_IPV4;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200794 if (par.target->destroy != NULL)
795 par.target->destroy(&par);
796 module_put(par.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797}
798
799/* Checks and translates the user-supplied table segment (held in
800 newinfo) */
801static int
Jan Engelhardt0f234212010-02-24 18:36:04 +0100802translate_table(struct net *net, struct xt_table_info *newinfo, void *entry0,
803 const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100805 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 unsigned int i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100807 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Jan Engelhardt0f234212010-02-24 18:36:04 +0100809 newinfo->size = repl->size;
810 newinfo->number = repl->num_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800813 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 newinfo->hook_entry[i] = 0xFFFFFFFF;
815 newinfo->underflow[i] = 0xFFFFFFFF;
816 }
817
818 duprintf("translate_table: size %u\n", newinfo->size);
819 i = 0;
820 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100821 xt_entry_foreach(iter, entry0, newinfo->size) {
822 ret = check_entry_size_and_hooks(iter, newinfo, entry0,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +0100823 entry0 + repl->size,
824 repl->hook_entry,
825 repl->underflow,
826 repl->valid_hooks);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100827 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +0100828 return ret;
829 ++i;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200830 if (strcmp(ipt_get_target(iter)->u.user.name,
831 XT_ERROR_TARGET) == 0)
832 ++newinfo->stacksize;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Jan Engelhardt0f234212010-02-24 18:36:04 +0100835 if (i != repl->num_entries) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 duprintf("translate_table: %u not %u entries\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100837 i, repl->num_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 return -EINVAL;
839 }
840
841 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800842 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 /* Only hooks which are valid */
Jan Engelhardt0f234212010-02-24 18:36:04 +0100844 if (!(repl->valid_hooks & (1 << i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 continue;
846 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
847 duprintf("Invalid hook entry %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100848 i, repl->hook_entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return -EINVAL;
850 }
851 if (newinfo->underflow[i] == 0xFFFFFFFF) {
852 duprintf("Invalid underflow %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100853 i, repl->underflow[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return -EINVAL;
855 }
856 }
857
Jan Engelhardt0f234212010-02-24 18:36:04 +0100858 if (!mark_source_chains(newinfo, repl->valid_hooks, entry0))
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800859 return -ELOOP;
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 /* Finally, each sanity check must pass */
862 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100863 xt_entry_foreach(iter, entry0, newinfo->size) {
Jan Engelhardt0f234212010-02-24 18:36:04 +0100864 ret = find_check_entry(iter, net, repl->name, repl->size);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100865 if (ret != 0)
866 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100867 ++i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800870 if (ret != 0) {
Jan Engelhardt05595182010-02-24 18:33:43 +0100871 xt_entry_foreach(iter, entry0, newinfo->size) {
872 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100873 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100874 cleanup_entry(iter, net);
875 }
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800876 return ret;
877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 /* And one copy for every other CPU */
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700880 for_each_possible_cpu(i) {
Eric Dumazet31836062005-12-13 23:13:48 -0800881 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
882 memcpy(newinfo->entries[i], entry0, newinfo->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
884
885 return ret;
886}
887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800889get_counters(const struct xt_table_info *t,
890 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100892 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 unsigned int cpu;
894 unsigned int i;
Eric Dumazet31836062005-12-13 23:13:48 -0800895 unsigned int curcpu;
896
897 /* Instead of clearing (by a previous call to memset())
898 * the counters and using adds, we set the counters
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700899 * with data used by 'current' CPU.
900 *
901 * Bottom half has to be disabled to prevent deadlock
902 * if new softirq were to run and call ipt_do_table
Eric Dumazet31836062005-12-13 23:13:48 -0800903 */
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700904 local_bh_disable();
905 curcpu = smp_processor_id();
Eric Dumazet31836062005-12-13 23:13:48 -0800906
907 i = 0;
Jan Engelhardt05595182010-02-24 18:33:43 +0100908 xt_entry_foreach(iter, t->entries[curcpu], t->size) {
909 SET_COUNTER(counters[i], iter->counters.bcnt,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +0100910 iter->counters.pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +0100911 ++i;
912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700914 for_each_possible_cpu(cpu) {
Eric Dumazet31836062005-12-13 23:13:48 -0800915 if (cpu == curcpu)
916 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 i = 0;
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700918 xt_info_wrlock(cpu);
Jan Engelhardt05595182010-02-24 18:33:43 +0100919 xt_entry_foreach(iter, t->entries[cpu], t->size) {
920 ADD_COUNTER(counters[i], iter->counters.bcnt,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +0100921 iter->counters.pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +0100922 ++i; /* macro does multi eval of i */
923 }
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700924 xt_info_wrunlock(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 }
Stephen Hemminger78454472009-02-20 10:35:32 +0100926 local_bh_enable();
927}
928
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200929static struct xt_counters *alloc_counters(const struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Dmitry Mishin27229712006-04-01 02:25:19 -0800931 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800932 struct xt_counters *counters;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200933 const struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 /* We need atomic snapshot of counters: rest doesn't change
936 (other than comefrom, which userspace doesn't care
937 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800938 countersize = sizeof(struct xt_counters) * private->number;
Eric Dumazet31836062005-12-13 23:13:48 -0800939 counters = vmalloc_node(countersize, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 if (counters == NULL)
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700942 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700944 get_counters(private, counters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Dmitry Mishin27229712006-04-01 02:25:19 -0800946 return counters;
947}
948
949static int
950copy_entries_to_user(unsigned int total_size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200951 const struct xt_table *table,
Dmitry Mishin27229712006-04-01 02:25:19 -0800952 void __user *userptr)
953{
954 unsigned int off, num;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200955 const struct ipt_entry *e;
Dmitry Mishin27229712006-04-01 02:25:19 -0800956 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200957 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -0800958 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200959 const void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -0800960
961 counters = alloc_counters(table);
962 if (IS_ERR(counters))
963 return PTR_ERR(counters);
964
Eric Dumazet31836062005-12-13 23:13:48 -0800965 /* choose the copy that is on our node/cpu, ...
966 * This choice is lazy (because current thread is
967 * allowed to migrate to another cpu)
968 */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800969 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -0800970 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 ret = -EFAULT;
972 goto free_counters;
973 }
974
975 /* FIXME: use iterator macros --RR */
976 /* ... then go back and fix counters and names */
977 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
978 unsigned int i;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200979 const struct ipt_entry_match *m;
980 const struct ipt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Eric Dumazet31836062005-12-13 23:13:48 -0800982 e = (struct ipt_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (copy_to_user(userptr + off
984 + offsetof(struct ipt_entry, counters),
985 &counters[num],
986 sizeof(counters[num])) != 0) {
987 ret = -EFAULT;
988 goto free_counters;
989 }
990
991 for (i = sizeof(struct ipt_entry);
992 i < e->target_offset;
993 i += m->u.match_size) {
994 m = (void *)e + i;
995
996 if (copy_to_user(userptr + off + i
997 + offsetof(struct ipt_entry_match,
998 u.user.name),
999 m->u.kernel.match->name,
1000 strlen(m->u.kernel.match->name)+1)
1001 != 0) {
1002 ret = -EFAULT;
1003 goto free_counters;
1004 }
1005 }
1006
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001007 t = ipt_get_target_c(e);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (copy_to_user(userptr + off + e->target_offset
1009 + offsetof(struct ipt_entry_target,
1010 u.user.name),
1011 t->u.kernel.target->name,
1012 strlen(t->u.kernel.target->name)+1) != 0) {
1013 ret = -EFAULT;
1014 goto free_counters;
1015 }
1016 }
1017
1018 free_counters:
1019 vfree(counters);
1020 return ret;
1021}
1022
Dmitry Mishin27229712006-04-01 02:25:19 -08001023#ifdef CONFIG_COMPAT
Jan Engelhardt739674f2009-06-26 08:23:19 +02001024static void compat_standard_from_user(void *dst, const void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001025{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001026 int v = *(compat_int_t *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001027
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001028 if (v > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001029 v += xt_compat_calc_jump(AF_INET, v);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001030 memcpy(dst, &v, sizeof(v));
1031}
1032
Jan Engelhardt739674f2009-06-26 08:23:19 +02001033static int compat_standard_to_user(void __user *dst, const void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001034{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001035 compat_int_t cv = *(int *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001036
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001037 if (cv > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001038 cv -= xt_compat_calc_jump(AF_INET, cv);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001039 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001040}
1041
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001042static int compat_calc_entry(const struct ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001043 const struct xt_table_info *info,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001044 const void *base, struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001045{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001046 const struct xt_entry_match *ematch;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001047 const struct ipt_entry_target *t;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001048 unsigned int entry_offset;
Dmitry Mishin27229712006-04-01 02:25:19 -08001049 int off, i, ret;
1050
Patrick McHardy30c08c42007-12-17 21:47:14 -08001051 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001052 entry_offset = (void *)e - base;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001053 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001054 off += xt_compat_match_offset(ematch->u.kernel.match);
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001055 t = ipt_get_target_c(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001056 off += xt_compat_target_offset(t->u.kernel.target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001057 newinfo->size -= off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001058 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001059 if (ret)
1060 return ret;
1061
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001062 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Patrick McHardy4b478242007-12-17 21:46:15 -08001063 if (info->hook_entry[i] &&
1064 (e < (struct ipt_entry *)(base + info->hook_entry[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001065 newinfo->hook_entry[i] -= off;
Patrick McHardy4b478242007-12-17 21:46:15 -08001066 if (info->underflow[i] &&
1067 (e < (struct ipt_entry *)(base + info->underflow[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001068 newinfo->underflow[i] -= off;
1069 }
1070 return 0;
1071}
1072
Eric Dumazet259d4e42007-12-04 23:24:56 -08001073static int compat_table_info(const struct xt_table_info *info,
Patrick McHardy4b478242007-12-17 21:46:15 -08001074 struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001075{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001076 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001077 void *loc_cpu_entry;
Jan Engelhardt05595182010-02-24 18:33:43 +01001078 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001079
1080 if (!newinfo || !info)
1081 return -EINVAL;
1082
Eric Dumazet259d4e42007-12-04 23:24:56 -08001083 /* we dont care about newinfo->entries[] */
1084 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1085 newinfo->initial_entries = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001086 loc_cpu_entry = info->entries[raw_smp_processor_id()];
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001087 xt_entry_foreach(iter, loc_cpu_entry, info->size) {
1088 ret = compat_calc_entry(iter, info, loc_cpu_entry, newinfo);
1089 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001090 return ret;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001091 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001092 return 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001093}
1094#endif
1095
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001096static int get_info(struct net *net, void __user *user,
1097 const int *len, int compat)
Dmitry Mishin27229712006-04-01 02:25:19 -08001098{
1099 char name[IPT_TABLE_MAXNAMELEN];
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001100 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001101 int ret;
1102
1103 if (*len != sizeof(struct ipt_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001104 duprintf("length %u != %zu\n", *len,
1105 sizeof(struct ipt_getinfo));
Dmitry Mishin27229712006-04-01 02:25:19 -08001106 return -EINVAL;
1107 }
1108
1109 if (copy_from_user(name, user, sizeof(name)) != 0)
1110 return -EFAULT;
1111
1112 name[IPT_TABLE_MAXNAMELEN-1] = '\0';
1113#ifdef CONFIG_COMPAT
1114 if (compat)
1115 xt_compat_lock(AF_INET);
1116#endif
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001117 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Patrick McHardy4b478242007-12-17 21:46:15 -08001118 "iptable_%s", name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001119 if (t && !IS_ERR(t)) {
1120 struct ipt_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001121 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001122#ifdef CONFIG_COMPAT
Alexey Dobriyan14c7dbe2010-02-08 11:17:43 -08001123 struct xt_table_info tmp;
1124
Dmitry Mishin27229712006-04-01 02:25:19 -08001125 if (compat) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001126 ret = compat_table_info(private, &tmp);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001127 xt_compat_flush_offsets(AF_INET);
Patrick McHardy4b478242007-12-17 21:46:15 -08001128 private = &tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001129 }
1130#endif
1131 info.valid_hooks = t->valid_hooks;
1132 memcpy(info.hook_entry, private->hook_entry,
Patrick McHardy4b478242007-12-17 21:46:15 -08001133 sizeof(info.hook_entry));
Dmitry Mishin27229712006-04-01 02:25:19 -08001134 memcpy(info.underflow, private->underflow,
Patrick McHardy4b478242007-12-17 21:46:15 -08001135 sizeof(info.underflow));
Dmitry Mishin27229712006-04-01 02:25:19 -08001136 info.num_entries = private->number;
1137 info.size = private->size;
1138 strcpy(info.name, name);
1139
1140 if (copy_to_user(user, &info, *len) != 0)
1141 ret = -EFAULT;
1142 else
1143 ret = 0;
1144
1145 xt_table_unlock(t);
1146 module_put(t->me);
1147 } else
1148 ret = t ? PTR_ERR(t) : -ENOENT;
1149#ifdef CONFIG_COMPAT
1150 if (compat)
1151 xt_compat_unlock(AF_INET);
1152#endif
1153 return ret;
1154}
1155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001157get_entries(struct net *net, struct ipt_get_entries __user *uptr,
1158 const int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
1160 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001161 struct ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001162 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Dmitry Mishin27229712006-04-01 02:25:19 -08001164 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001165 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001166 return -EINVAL;
1167 }
1168 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1169 return -EFAULT;
1170 if (*len != sizeof(struct ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001171 duprintf("get_entries: %u != %zu\n",
1172 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001173 return -EINVAL;
1174 }
1175
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001176 t = xt_find_table_lock(net, AF_INET, get.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001178 const struct xt_table_info *private = t->private;
Patrick McHardy9c547952007-12-17 21:52:00 -08001179 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001180 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001181 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 t, uptr->entrytable);
1183 else {
1184 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001185 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001186 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 }
1188 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001189 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 } else
1191 ret = t ? PTR_ERR(t) : -ENOENT;
1192
1193 return ret;
1194}
1195
1196static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001197__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001198 struct xt_table_info *newinfo, unsigned int num_counters,
1199 void __user *counters_ptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001200{
1201 int ret;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001202 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001203 struct xt_table_info *oldinfo;
1204 struct xt_counters *counters;
1205 void *loc_cpu_old_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001206 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001207
1208 ret = 0;
1209 counters = vmalloc(num_counters * sizeof(struct xt_counters));
1210 if (!counters) {
1211 ret = -ENOMEM;
1212 goto out;
1213 }
1214
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001215 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Dmitry Mishin27229712006-04-01 02:25:19 -08001216 "iptable_%s", name);
1217 if (!t || IS_ERR(t)) {
1218 ret = t ? PTR_ERR(t) : -ENOENT;
1219 goto free_newinfo_counters_untrans;
1220 }
1221
1222 /* You lied! */
1223 if (valid_hooks != t->valid_hooks) {
1224 duprintf("Valid hook crap: %08X vs %08X\n",
1225 valid_hooks, t->valid_hooks);
1226 ret = -EINVAL;
1227 goto put_module;
1228 }
1229
1230 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1231 if (!oldinfo)
1232 goto put_module;
1233
1234 /* Update module usage count based on number of rules */
1235 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1236 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1237 if ((oldinfo->number > oldinfo->initial_entries) ||
1238 (newinfo->number <= oldinfo->initial_entries))
1239 module_put(t->me);
1240 if ((oldinfo->number > oldinfo->initial_entries) &&
1241 (newinfo->number <= oldinfo->initial_entries))
1242 module_put(t->me);
1243
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001244 /* Get the old counters, and synchronize with replace */
Dmitry Mishin27229712006-04-01 02:25:19 -08001245 get_counters(oldinfo, counters);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001246
Dmitry Mishin27229712006-04-01 02:25:19 -08001247 /* Decrease module usage counts and free resource */
1248 loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001249 xt_entry_foreach(iter, loc_cpu_old_entry, oldinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001250 cleanup_entry(iter, net);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001251
Dmitry Mishin27229712006-04-01 02:25:19 -08001252 xt_free_table_info(oldinfo);
1253 if (copy_to_user(counters_ptr, counters,
1254 sizeof(struct xt_counters) * num_counters) != 0)
1255 ret = -EFAULT;
1256 vfree(counters);
1257 xt_table_unlock(t);
1258 return ret;
1259
1260 put_module:
1261 module_put(t->me);
1262 xt_table_unlock(t);
1263 free_newinfo_counters_untrans:
1264 vfree(counters);
1265 out:
1266 return ret;
1267}
1268
1269static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001270do_replace(struct net *net, const void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271{
1272 int ret;
1273 struct ipt_replace tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001274 struct xt_table_info *newinfo;
1275 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001276 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1279 return -EFAULT;
1280
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001281 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001282 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1283 return -ENOMEM;
1284
Harald Welte2e4e6a12006-01-12 13:30:04 -08001285 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 if (!newinfo)
1287 return -ENOMEM;
1288
Patrick McHardy9c547952007-12-17 21:52:00 -08001289 /* choose the copy that is on our node/cpu */
Eric Dumazet31836062005-12-13 23:13:48 -08001290 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1291 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 tmp.size) != 0) {
1293 ret = -EFAULT;
1294 goto free_newinfo;
1295 }
1296
Jan Engelhardt0f234212010-02-24 18:36:04 +01001297 ret = translate_table(net, newinfo, loc_cpu_entry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 if (ret != 0)
Dmitry Mishin27229712006-04-01 02:25:19 -08001299 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01001301 duprintf("Translated table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001303 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001304 tmp.num_counters, tmp.counters);
Dmitry Mishin27229712006-04-01 02:25:19 -08001305 if (ret)
1306 goto free_newinfo_untrans;
1307 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Dmitry Mishin27229712006-04-01 02:25:19 -08001309 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001310 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001311 cleanup_entry(iter, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001313 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 return ret;
1315}
1316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001318do_add_counters(struct net *net, const void __user *user,
1319 unsigned int len, int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001321 unsigned int i, curcpu;
Dmitry Mishin27229712006-04-01 02:25:19 -08001322 struct xt_counters_info tmp;
1323 struct xt_counters *paddc;
1324 unsigned int num_counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001325 const char *name;
Dmitry Mishin27229712006-04-01 02:25:19 -08001326 int size;
1327 void *ptmp;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001328 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001329 const struct xt_table_info *private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 int ret = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001331 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001332 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001333#ifdef CONFIG_COMPAT
1334 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Dmitry Mishin27229712006-04-01 02:25:19 -08001336 if (compat) {
1337 ptmp = &compat_tmp;
1338 size = sizeof(struct compat_xt_counters_info);
1339 } else
1340#endif
1341 {
1342 ptmp = &tmp;
1343 size = sizeof(struct xt_counters_info);
1344 }
1345
1346 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 return -EFAULT;
1348
Dmitry Mishin27229712006-04-01 02:25:19 -08001349#ifdef CONFIG_COMPAT
1350 if (compat) {
1351 num_counters = compat_tmp.num_counters;
1352 name = compat_tmp.name;
1353 } else
1354#endif
1355 {
1356 num_counters = tmp.num_counters;
1357 name = tmp.name;
1358 }
1359
1360 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 return -EINVAL;
1362
Dmitry Mishin27229712006-04-01 02:25:19 -08001363 paddc = vmalloc_node(len - size, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 if (!paddc)
1365 return -ENOMEM;
1366
Dmitry Mishin27229712006-04-01 02:25:19 -08001367 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 ret = -EFAULT;
1369 goto free;
1370 }
1371
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001372 t = xt_find_table_lock(net, AF_INET, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 if (!t || IS_ERR(t)) {
1374 ret = t ? PTR_ERR(t) : -ENOENT;
1375 goto free;
1376 }
1377
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001378 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001379 private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001380 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 ret = -EINVAL;
1382 goto unlock_up_free;
1383 }
1384
1385 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001386 /* Choose the copy that is on our node */
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001387 curcpu = smp_processor_id();
1388 loc_cpu_entry = private->entries[curcpu];
1389 xt_info_wrlock(curcpu);
Jan Engelhardt05595182010-02-24 18:33:43 +01001390 xt_entry_foreach(iter, loc_cpu_entry, private->size) {
1391 ADD_COUNTER(iter->counters, paddc[i].bcnt, paddc[i].pcnt);
1392 ++i;
1393 }
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001394 xt_info_wrunlock(curcpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 unlock_up_free:
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001396 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001397 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 module_put(t->me);
1399 free:
1400 vfree(paddc);
1401
1402 return ret;
1403}
1404
Dmitry Mishin27229712006-04-01 02:25:19 -08001405#ifdef CONFIG_COMPAT
1406struct compat_ipt_replace {
1407 char name[IPT_TABLE_MAXNAMELEN];
1408 u32 valid_hooks;
1409 u32 num_entries;
1410 u32 size;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001411 u32 hook_entry[NF_INET_NUMHOOKS];
1412 u32 underflow[NF_INET_NUMHOOKS];
Dmitry Mishin27229712006-04-01 02:25:19 -08001413 u32 num_counters;
1414 compat_uptr_t counters; /* struct ipt_counters * */
1415 struct compat_ipt_entry entries[0];
1416};
1417
Patrick McHardya18aa312007-12-12 10:35:16 -08001418static int
1419compat_copy_entry_to_user(struct ipt_entry *e, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001420 unsigned int *size, struct xt_counters *counters,
Jan Engelhardt05595182010-02-24 18:33:43 +01001421 unsigned int i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001422{
Al Viro3e597c62006-09-24 23:42:20 +01001423 struct ipt_entry_target *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001424 struct compat_ipt_entry __user *ce;
1425 u_int16_t target_offset, next_offset;
1426 compat_uint_t origsize;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001427 const struct xt_entry_match *ematch;
1428 int ret = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001429
Dmitry Mishin27229712006-04-01 02:25:19 -08001430 origsize = *size;
1431 ce = (struct compat_ipt_entry __user *)*dstptr;
Jan Engelhardt05595182010-02-24 18:33:43 +01001432 if (copy_to_user(ce, e, sizeof(struct ipt_entry)) != 0 ||
1433 copy_to_user(&ce->counters, &counters[i],
1434 sizeof(counters[i])) != 0)
1435 return -EFAULT;
Patrick McHardya18aa312007-12-12 10:35:16 -08001436
Dmitry Mishin27229712006-04-01 02:25:19 -08001437 *dstptr += sizeof(struct compat_ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001438 *size -= sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1439
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001440 xt_ematch_foreach(ematch, e) {
1441 ret = xt_compat_match_to_user(ematch, dstptr, size);
1442 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001443 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001444 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001445 target_offset = e->target_offset - (origsize - *size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001446 t = ipt_get_target(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001447 ret = xt_compat_target_to_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001448 if (ret)
Jan Engelhardt05595182010-02-24 18:33:43 +01001449 return ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001450 next_offset = e->next_offset - (origsize - *size);
Jan Engelhardt05595182010-02-24 18:33:43 +01001451 if (put_user(target_offset, &ce->target_offset) != 0 ||
1452 put_user(next_offset, &ce->next_offset) != 0)
1453 return -EFAULT;
Dmitry Mishin27229712006-04-01 02:25:19 -08001454 return 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001455}
1456
Denys Vlasenko022748a2008-01-14 23:44:05 -08001457static int
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001458compat_find_calc_match(struct ipt_entry_match *m,
Patrick McHardy4b478242007-12-17 21:46:15 -08001459 const char *name,
1460 const struct ipt_ip *ip,
1461 unsigned int hookmask,
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001462 int *size)
Dmitry Mishin27229712006-04-01 02:25:19 -08001463{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001464 struct xt_match *match;
Dmitry Mishin27229712006-04-01 02:25:19 -08001465
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001466 match = xt_request_find_match(NFPROTO_IPV4, m->u.user.name,
1467 m->u.user.revision);
1468 if (IS_ERR(match)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001469 duprintf("compat_check_calc_match: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001470 m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001471 return PTR_ERR(match);
Dmitry Mishin27229712006-04-01 02:25:19 -08001472 }
1473 m->u.kernel.match = match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001474 *size += xt_compat_match_offset(match);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001475 return 0;
1476}
1477
Jan Engelhardt05595182010-02-24 18:33:43 +01001478static void compat_release_entry(struct compat_ipt_entry *e)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001479{
1480 struct ipt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001481 struct xt_entry_match *ematch;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001482
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001483 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001484 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001485 module_put(ematch->u.kernel.match->me);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001486 t = compat_ipt_get_target(e);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001487 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001488}
1489
Denys Vlasenko022748a2008-01-14 23:44:05 -08001490static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001491check_compat_entry_size_and_hooks(struct compat_ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001492 struct xt_table_info *newinfo,
1493 unsigned int *size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001494 const unsigned char *base,
1495 const unsigned char *limit,
1496 const unsigned int *hook_entries,
1497 const unsigned int *underflows,
Patrick McHardy4b478242007-12-17 21:46:15 -08001498 const char *name)
Dmitry Mishin27229712006-04-01 02:25:19 -08001499{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001500 struct xt_entry_match *ematch;
Dmitry Mishin27229712006-04-01 02:25:19 -08001501 struct ipt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001502 struct xt_target *target;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001503 unsigned int entry_offset;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001504 unsigned int j;
1505 int ret, off, h;
Dmitry Mishin27229712006-04-01 02:25:19 -08001506
1507 duprintf("check_compat_entry_size_and_hooks %p\n", e);
Joe Perches3666ed12009-11-23 23:17:06 +01001508 if ((unsigned long)e % __alignof__(struct compat_ipt_entry) != 0 ||
1509 (unsigned char *)e + sizeof(struct compat_ipt_entry) >= limit) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001510 duprintf("Bad offset %p, limit = %p\n", e, limit);
1511 return -EINVAL;
1512 }
1513
1514 if (e->next_offset < sizeof(struct compat_ipt_entry) +
Patrick McHardy4b478242007-12-17 21:46:15 -08001515 sizeof(struct compat_xt_entry_target)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001516 duprintf("checking: element %p size %u\n",
1517 e, e->next_offset);
1518 return -EINVAL;
1519 }
1520
Patrick McHardy73cd5982007-12-17 21:47:32 -08001521 /* For purposes of check_entry casting the compat entry is fine */
1522 ret = check_entry((struct ipt_entry *)e, name);
Dmitry Mishina96be242006-12-12 00:29:26 -08001523 if (ret)
1524 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -08001525
Patrick McHardy30c08c42007-12-17 21:47:14 -08001526 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001527 entry_offset = (void *)e - (void *)base;
1528 j = 0;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001529 xt_ematch_foreach(ematch, e) {
1530 ret = compat_find_calc_match(ematch, name,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001531 &e->ip, e->comefrom, &off);
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001532 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001533 goto release_matches;
1534 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001535 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001536
Patrick McHardy73cd5982007-12-17 21:47:32 -08001537 t = compat_ipt_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001538 target = xt_request_find_target(NFPROTO_IPV4, t->u.user.name,
1539 t->u.user.revision);
1540 if (IS_ERR(target)) {
Dmitry Mishina96be242006-12-12 00:29:26 -08001541 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001542 t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001543 ret = PTR_ERR(target);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001544 goto release_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001545 }
1546 t->u.kernel.target = target;
1547
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001548 off += xt_compat_target_offset(target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001549 *size += off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001550 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001551 if (ret)
1552 goto out;
1553
1554 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001555 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001556 if ((unsigned char *)e - base == hook_entries[h])
1557 newinfo->hook_entry[h] = hook_entries[h];
1558 if ((unsigned char *)e - base == underflows[h])
1559 newinfo->underflow[h] = underflows[h];
1560 }
1561
1562 /* Clear counters and comefrom */
Patrick McHardy73cd5982007-12-17 21:47:32 -08001563 memset(&e->counters, 0, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001564 e->comefrom = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001565 return 0;
Patrick McHardybec71b12006-09-20 12:04:08 -07001566
Dmitry Mishin27229712006-04-01 02:25:19 -08001567out:
Patrick McHardybec71b12006-09-20 12:04:08 -07001568 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001569release_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001570 xt_ematch_foreach(ematch, e) {
1571 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001572 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001573 module_put(ematch->u.kernel.match->me);
1574 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001575 return ret;
1576}
1577
Patrick McHardy4b478242007-12-17 21:46:15 -08001578static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001579compat_copy_entry_from_user(struct compat_ipt_entry *e, void **dstptr,
Patrick McHardy4b478242007-12-17 21:46:15 -08001580 unsigned int *size, const char *name,
1581 struct xt_table_info *newinfo, unsigned char *base)
Dmitry Mishin27229712006-04-01 02:25:19 -08001582{
1583 struct ipt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001584 struct xt_target *target;
Dmitry Mishin27229712006-04-01 02:25:19 -08001585 struct ipt_entry *de;
1586 unsigned int origsize;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001587 int ret, h;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001588 struct xt_entry_match *ematch;
Dmitry Mishin27229712006-04-01 02:25:19 -08001589
1590 ret = 0;
1591 origsize = *size;
1592 de = (struct ipt_entry *)*dstptr;
1593 memcpy(de, e, sizeof(struct ipt_entry));
Patrick McHardy73cd5982007-12-17 21:47:32 -08001594 memcpy(&de->counters, &e->counters, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001595
Patrick McHardy73cd5982007-12-17 21:47:32 -08001596 *dstptr += sizeof(struct ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001597 *size += sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1598
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001599 xt_ematch_foreach(ematch, e) {
1600 ret = xt_compat_match_from_user(ematch, dstptr, size);
1601 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001602 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001603 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001604 de->target_offset = e->target_offset - (origsize - *size);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001605 t = compat_ipt_get_target(e);
Dmitry Mishin27229712006-04-01 02:25:19 -08001606 target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001607 xt_compat_target_from_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001608
1609 de->next_offset = e->next_offset - (origsize - *size);
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001610 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001611 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1612 newinfo->hook_entry[h] -= origsize - *size;
1613 if ((unsigned char *)de - base < newinfo->underflow[h])
1614 newinfo->underflow[h] -= origsize - *size;
1615 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001616 return ret;
1617}
Dmitry Mishin27229712006-04-01 02:25:19 -08001618
Denys Vlasenko022748a2008-01-14 23:44:05 -08001619static int
Jan Engelhardt05595182010-02-24 18:33:43 +01001620compat_check_entry(struct ipt_entry *e, struct net *net, const char *name)
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001621{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001622 struct xt_entry_match *ematch;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001623 struct xt_mtchk_param mtpar;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001624 unsigned int j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001625 int ret = 0;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001626
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001627 j = 0;
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001628 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001629 mtpar.table = name;
1630 mtpar.entryinfo = &e->ip;
1631 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +02001632 mtpar.family = NFPROTO_IPV4;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001633 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001634 ret = check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001635 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001636 goto cleanup_matches;
1637 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001638 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001639
Patrick McHardyadd67462010-02-03 13:45:12 +01001640 ret = check_target(e, net, name);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001641 if (ret)
1642 goto cleanup_matches;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001643 return 0;
1644
1645 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001646 xt_ematch_foreach(ematch, e) {
1647 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001648 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001649 cleanup_match(ematch, net);
1650 }
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001651 return ret;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001652}
1653
Dmitry Mishin27229712006-04-01 02:25:19 -08001654static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001655translate_compat_table(struct net *net,
1656 const char *name,
Patrick McHardy4b478242007-12-17 21:46:15 -08001657 unsigned int valid_hooks,
1658 struct xt_table_info **pinfo,
1659 void **pentry0,
1660 unsigned int total_size,
1661 unsigned int number,
1662 unsigned int *hook_entries,
1663 unsigned int *underflows)
Dmitry Mishin27229712006-04-01 02:25:19 -08001664{
Dmitry Mishin920b8682006-10-30 15:14:27 -08001665 unsigned int i, j;
Dmitry Mishin27229712006-04-01 02:25:19 -08001666 struct xt_table_info *newinfo, *info;
1667 void *pos, *entry0, *entry1;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001668 struct compat_ipt_entry *iter0;
1669 struct ipt_entry *iter1;
Dmitry Mishin27229712006-04-01 02:25:19 -08001670 unsigned int size;
Jan Engelhardt05595182010-02-24 18:33:43 +01001671 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001672
1673 info = *pinfo;
1674 entry0 = *pentry0;
1675 size = total_size;
1676 info->number = number;
1677
1678 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001679 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001680 info->hook_entry[i] = 0xFFFFFFFF;
1681 info->underflow[i] = 0xFFFFFFFF;
1682 }
1683
1684 duprintf("translate_compat_table: size %u\n", info->size);
Dmitry Mishin920b8682006-10-30 15:14:27 -08001685 j = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001686 xt_compat_lock(AF_INET);
1687 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001688 xt_entry_foreach(iter0, entry0, total_size) {
1689 ret = check_compat_entry_size_and_hooks(iter0, info, &size,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001690 entry0,
1691 entry0 + total_size,
1692 hook_entries,
1693 underflows,
1694 name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001695 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001696 goto out_unlock;
1697 ++j;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001698 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001699
1700 ret = -EINVAL;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001701 if (j != number) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001702 duprintf("translate_compat_table: %u not %u entries\n",
Dmitry Mishin920b8682006-10-30 15:14:27 -08001703 j, number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001704 goto out_unlock;
1705 }
1706
1707 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001708 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001709 /* Only hooks which are valid */
1710 if (!(valid_hooks & (1 << i)))
1711 continue;
1712 if (info->hook_entry[i] == 0xFFFFFFFF) {
1713 duprintf("Invalid hook entry %u %u\n",
1714 i, hook_entries[i]);
1715 goto out_unlock;
1716 }
1717 if (info->underflow[i] == 0xFFFFFFFF) {
1718 duprintf("Invalid underflow %u %u\n",
1719 i, underflows[i]);
1720 goto out_unlock;
1721 }
1722 }
1723
1724 ret = -ENOMEM;
1725 newinfo = xt_alloc_table_info(size);
1726 if (!newinfo)
1727 goto out_unlock;
1728
1729 newinfo->number = number;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001730 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001731 newinfo->hook_entry[i] = info->hook_entry[i];
1732 newinfo->underflow[i] = info->underflow[i];
1733 }
1734 entry1 = newinfo->entries[raw_smp_processor_id()];
1735 pos = entry1;
Patrick McHardy4b478242007-12-17 21:46:15 -08001736 size = total_size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001737 xt_entry_foreach(iter0, entry0, total_size) {
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001738 ret = compat_copy_entry_from_user(iter0, &pos, &size,
1739 name, newinfo, entry1);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001740 if (ret != 0)
1741 break;
1742 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001743 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001744 xt_compat_unlock(AF_INET);
1745 if (ret)
1746 goto free_newinfo;
1747
1748 ret = -ELOOP;
1749 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1750 goto free_newinfo;
1751
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001752 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001753 xt_entry_foreach(iter1, entry1, newinfo->size) {
Jan Engelhardt05595182010-02-24 18:33:43 +01001754 ret = compat_check_entry(iter1, net, name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001755 if (ret != 0)
1756 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001757 ++i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001758 }
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001759 if (ret) {
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001760 /*
1761 * The first i matches need cleanup_entry (calls ->destroy)
1762 * because they had called ->check already. The other j-i
1763 * entries need only release.
1764 */
1765 int skip = i;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001766 j -= i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001767 xt_entry_foreach(iter0, entry0, newinfo->size) {
1768 if (skip-- > 0)
1769 continue;
Jan Engelhardt05595182010-02-24 18:33:43 +01001770 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001771 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001772 compat_release_entry(iter0);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001773 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001774 xt_entry_foreach(iter1, entry1, newinfo->size) {
1775 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001776 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001777 cleanup_entry(iter1, net);
1778 }
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001779 xt_free_table_info(newinfo);
1780 return ret;
1781 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001782
Dmitry Mishin27229712006-04-01 02:25:19 -08001783 /* And one copy for every other CPU */
Andrew Mortonfb1bb342006-06-25 05:46:43 -07001784 for_each_possible_cpu(i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001785 if (newinfo->entries[i] && newinfo->entries[i] != entry1)
1786 memcpy(newinfo->entries[i], entry1, newinfo->size);
1787
1788 *pinfo = newinfo;
1789 *pentry0 = entry1;
1790 xt_free_table_info(info);
1791 return 0;
1792
1793free_newinfo:
1794 xt_free_table_info(newinfo);
1795out:
Jan Engelhardt05595182010-02-24 18:33:43 +01001796 xt_entry_foreach(iter0, entry0, total_size) {
1797 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001798 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001799 compat_release_entry(iter0);
1800 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001801 return ret;
1802out_unlock:
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001803 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001804 xt_compat_unlock(AF_INET);
1805 goto out;
1806}
1807
1808static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001809compat_do_replace(struct net *net, void __user *user, unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001810{
1811 int ret;
1812 struct compat_ipt_replace tmp;
1813 struct xt_table_info *newinfo;
1814 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001815 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001816
1817 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1818 return -EFAULT;
1819
Dmitry Mishin27229712006-04-01 02:25:19 -08001820 /* overflow check */
Eric Dumazet259d4e42007-12-04 23:24:56 -08001821 if (tmp.size >= INT_MAX / num_possible_cpus())
Dmitry Mishin27229712006-04-01 02:25:19 -08001822 return -ENOMEM;
1823 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1824 return -ENOMEM;
1825
1826 newinfo = xt_alloc_table_info(tmp.size);
1827 if (!newinfo)
1828 return -ENOMEM;
1829
Patrick McHardy9c547952007-12-17 21:52:00 -08001830 /* choose the copy that is on our node/cpu */
Dmitry Mishin27229712006-04-01 02:25:19 -08001831 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1832 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1833 tmp.size) != 0) {
1834 ret = -EFAULT;
1835 goto free_newinfo;
1836 }
1837
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001838 ret = translate_compat_table(net, tmp.name, tmp.valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001839 &newinfo, &loc_cpu_entry, tmp.size,
1840 tmp.num_entries, tmp.hook_entry,
1841 tmp.underflow);
Dmitry Mishin27229712006-04-01 02:25:19 -08001842 if (ret != 0)
1843 goto free_newinfo;
1844
1845 duprintf("compat_do_replace: Translated table\n");
1846
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001847 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001848 tmp.num_counters, compat_ptr(tmp.counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001849 if (ret)
1850 goto free_newinfo_untrans;
1851 return 0;
1852
1853 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001854 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001855 cleanup_entry(iter, net);
Dmitry Mishin27229712006-04-01 02:25:19 -08001856 free_newinfo:
1857 xt_free_table_info(newinfo);
1858 return ret;
1859}
1860
1861static int
1862compat_do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user,
Patrick McHardy4b478242007-12-17 21:46:15 -08001863 unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001864{
1865 int ret;
1866
1867 if (!capable(CAP_NET_ADMIN))
1868 return -EPERM;
1869
1870 switch (cmd) {
1871 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001872 ret = compat_do_replace(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001873 break;
1874
1875 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001876 ret = do_add_counters(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001877 break;
1878
1879 default:
1880 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1881 ret = -EINVAL;
1882 }
1883
1884 return ret;
1885}
1886
Patrick McHardy4b478242007-12-17 21:46:15 -08001887struct compat_ipt_get_entries {
Dmitry Mishin27229712006-04-01 02:25:19 -08001888 char name[IPT_TABLE_MAXNAMELEN];
1889 compat_uint_t size;
1890 struct compat_ipt_entry entrytable[0];
1891};
1892
Patrick McHardy4b478242007-12-17 21:46:15 -08001893static int
1894compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1895 void __user *userptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001896{
Dmitry Mishin27229712006-04-01 02:25:19 -08001897 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001898 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001899 void __user *pos;
1900 unsigned int size;
1901 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001902 const void *loc_cpu_entry;
Patrick McHardya18aa312007-12-12 10:35:16 -08001903 unsigned int i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001904 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001905
1906 counters = alloc_counters(table);
1907 if (IS_ERR(counters))
1908 return PTR_ERR(counters);
1909
1910 /* choose the copy that is on our node/cpu, ...
1911 * This choice is lazy (because current thread is
1912 * allowed to migrate to another cpu)
1913 */
1914 loc_cpu_entry = private->entries[raw_smp_processor_id()];
1915 pos = userptr;
1916 size = total_size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001917 xt_entry_foreach(iter, loc_cpu_entry, total_size) {
1918 ret = compat_copy_entry_to_user(iter, &pos,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001919 &size, counters, i++);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001920 if (ret != 0)
1921 break;
1922 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001923
Dmitry Mishin27229712006-04-01 02:25:19 -08001924 vfree(counters);
1925 return ret;
1926}
1927
1928static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001929compat_get_entries(struct net *net, struct compat_ipt_get_entries __user *uptr,
1930 int *len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001931{
1932 int ret;
1933 struct compat_ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001934 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001935
Dmitry Mishin27229712006-04-01 02:25:19 -08001936 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001937 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001938 return -EINVAL;
1939 }
1940
1941 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1942 return -EFAULT;
1943
1944 if (*len != sizeof(struct compat_ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001945 duprintf("compat_get_entries: %u != %zu\n",
1946 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001947 return -EINVAL;
1948 }
1949
1950 xt_compat_lock(AF_INET);
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001951 t = xt_find_table_lock(net, AF_INET, get.name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001952 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001953 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001954 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08001955 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001956 ret = compat_table_info(private, &info);
1957 if (!ret && get.size == info.size) {
1958 ret = compat_copy_entries_to_user(private->size,
Patrick McHardy4b478242007-12-17 21:46:15 -08001959 t, uptr->entrytable);
Dmitry Mishin27229712006-04-01 02:25:19 -08001960 } else if (!ret) {
1961 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001962 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001963 ret = -EAGAIN;
Dmitry Mishin27229712006-04-01 02:25:19 -08001964 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001965 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001966 module_put(t->me);
1967 xt_table_unlock(t);
1968 } else
1969 ret = t ? PTR_ERR(t) : -ENOENT;
1970
1971 xt_compat_unlock(AF_INET);
1972 return ret;
1973}
1974
Patrick McHardy79030ed2006-09-20 12:05:08 -07001975static int do_ipt_get_ctl(struct sock *, int, void __user *, int *);
1976
Dmitry Mishin27229712006-04-01 02:25:19 -08001977static int
1978compat_do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1979{
1980 int ret;
1981
Björn Steinbrink82fac052006-10-20 00:21:10 -07001982 if (!capable(CAP_NET_ADMIN))
1983 return -EPERM;
1984
Dmitry Mishin27229712006-04-01 02:25:19 -08001985 switch (cmd) {
1986 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001987 ret = get_info(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001988 break;
1989 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001990 ret = compat_get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001991 break;
1992 default:
Patrick McHardy79030ed2006-09-20 12:05:08 -07001993 ret = do_ipt_get_ctl(sk, cmd, user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001994 }
1995 return ret;
1996}
1997#endif
1998
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999static int
Patrick McHardy9c547952007-12-17 21:52:00 -08002000do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001{
2002 int ret;
2003
2004 if (!capable(CAP_NET_ADMIN))
2005 return -EPERM;
2006
2007 switch (cmd) {
2008 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002009 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 break;
2011
2012 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002013 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 break;
2015
2016 default:
2017 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
2018 ret = -EINVAL;
2019 }
2020
2021 return ret;
2022}
2023
2024static int
2025do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2026{
2027 int ret;
2028
2029 if (!capable(CAP_NET_ADMIN))
2030 return -EPERM;
2031
2032 switch (cmd) {
Dmitry Mishin27229712006-04-01 02:25:19 -08002033 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002034 ret = get_info(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 break;
Dmitry Mishin27229712006-04-01 02:25:19 -08002036
2037 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002038 ret = get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08002039 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
2041 case IPT_SO_GET_REVISION_MATCH:
2042 case IPT_SO_GET_REVISION_TARGET: {
2043 struct ipt_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002044 int target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
2046 if (*len != sizeof(rev)) {
2047 ret = -EINVAL;
2048 break;
2049 }
2050 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2051 ret = -EFAULT;
2052 break;
2053 }
2054
2055 if (cmd == IPT_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08002056 target = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08002058 target = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Harald Welte2e4e6a12006-01-12 13:30:04 -08002060 try_then_request_module(xt_find_revision(AF_INET, rev.name,
2061 rev.revision,
2062 target, &ret),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 "ipt_%s", rev.name);
2064 break;
2065 }
2066
2067 default:
2068 duprintf("do_ipt_get_ctl: unknown request %i\n", cmd);
2069 ret = -EINVAL;
2070 }
2071
2072 return ret;
2073}
2074
Jan Engelhardt35aad0f2009-08-24 14:56:30 +02002075struct xt_table *ipt_register_table(struct net *net,
2076 const struct xt_table *table,
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002077 const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078{
2079 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002080 struct xt_table_info *newinfo;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +02002081 struct xt_table_info bootstrap = {0};
Eric Dumazet31836062005-12-13 23:13:48 -08002082 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08002083 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Harald Welte2e4e6a12006-01-12 13:30:04 -08002085 newinfo = xt_alloc_table_info(repl->size);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002086 if (!newinfo) {
2087 ret = -ENOMEM;
2088 goto out;
2089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Patrick McHardy9c547952007-12-17 21:52:00 -08002091 /* choose the copy on our node/cpu, but dont care about preemption */
Eric Dumazet31836062005-12-13 23:13:48 -08002092 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
2093 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Jan Engelhardt0f234212010-02-24 18:36:04 +01002095 ret = translate_table(net, newinfo, loc_cpu_entry, repl);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002096 if (ret != 0)
2097 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002099 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08002100 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002101 ret = PTR_ERR(new_table);
2102 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 }
2104
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002105 return new_table;
2106
2107out_free:
2108 xt_free_table_info(newinfo);
2109out:
2110 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111}
2112
Alexey Dobriyanf54e9362010-01-18 08:25:47 +01002113void ipt_unregister_table(struct net *net, struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114{
Harald Welte2e4e6a12006-01-12 13:30:04 -08002115 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08002116 void *loc_cpu_entry;
Alexey Dobriyandf200962008-01-31 04:05:34 -08002117 struct module *table_owner = table->me;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01002118 struct ipt_entry *iter;
Eric Dumazet31836062005-12-13 23:13:48 -08002119
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002120 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122 /* Decrease module usage counts and free resources */
Harald Welte2e4e6a12006-01-12 13:30:04 -08002123 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01002124 xt_entry_foreach(iter, loc_cpu_entry, private->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01002125 cleanup_entry(iter, net);
Alexey Dobriyandf200962008-01-31 04:05:34 -08002126 if (private->number > private->initial_entries)
2127 module_put(table_owner);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002128 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129}
2130
2131/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002132static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133icmp_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2134 u_int8_t type, u_int8_t code,
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002135 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136{
Patrick McHardy9c547952007-12-17 21:52:00 -08002137 return ((test_type == 0xFF) ||
2138 (type == test_type && code >= min_code && code <= max_code))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 ^ invert;
2140}
2141
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002142static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002143icmp_match(const struct sk_buff *skb, const struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144{
Jan Engelhardt5452e422008-04-14 11:15:35 +02002145 const struct icmphdr *ic;
2146 struct icmphdr _icmph;
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002147 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
2149 /* Must not be a fragment. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002150 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002151 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002153 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 if (ic == NULL) {
2155 /* We've been asked to examine this packet, and we
2156 * can't. Hence, no choice but to drop.
2157 */
2158 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002159 *par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002160 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 }
2162
2163 return icmp_type_code_match(icmpinfo->type,
2164 icmpinfo->code[0],
2165 icmpinfo->code[1],
2166 ic->type, ic->code,
2167 !!(icmpinfo->invflags&IPT_ICMP_INV));
2168}
2169
Jan Engelhardtb0f38452010-03-19 17:16:42 +01002170static int icmp_checkentry(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002172 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002174 /* Must specify no unknown invflags */
Jan Engelhardtbd414ee2010-03-23 16:35:56 +01002175 return (icmpinfo->invflags & ~IPT_ICMP_INV) ? -EINVAL : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176}
2177
2178/* The built-in targets: standard (NULL) and error. */
Patrick McHardy9f15c532007-07-07 22:22:02 -07002179static struct xt_target ipt_standard_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 .name = IPT_STANDARD_TARGET,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002181 .targetsize = sizeof(int),
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002182 .family = NFPROTO_IPV4,
Dmitry Mishin27229712006-04-01 02:25:19 -08002183#ifdef CONFIG_COMPAT
Patrick McHardy9fa492c2006-09-20 12:05:37 -07002184 .compatsize = sizeof(compat_int_t),
2185 .compat_from_user = compat_standard_from_user,
2186 .compat_to_user = compat_standard_to_user,
Dmitry Mishin27229712006-04-01 02:25:19 -08002187#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188};
2189
Patrick McHardy9f15c532007-07-07 22:22:02 -07002190static struct xt_target ipt_error_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 .name = IPT_ERROR_TARGET,
2192 .target = ipt_error,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002193 .targetsize = IPT_FUNCTION_MAXNAMELEN,
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002194 .family = NFPROTO_IPV4,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195};
2196
2197static struct nf_sockopt_ops ipt_sockopts = {
2198 .pf = PF_INET,
2199 .set_optmin = IPT_BASE_CTL,
2200 .set_optmax = IPT_SO_SET_MAX+1,
2201 .set = do_ipt_set_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002202#ifdef CONFIG_COMPAT
2203 .compat_set = compat_do_ipt_set_ctl,
2204#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 .get_optmin = IPT_BASE_CTL,
2206 .get_optmax = IPT_SO_GET_MAX+1,
2207 .get = do_ipt_get_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002208#ifdef CONFIG_COMPAT
2209 .compat_get = compat_do_ipt_get_ctl,
2210#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002211 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212};
2213
Patrick McHardy9f15c532007-07-07 22:22:02 -07002214static struct xt_match icmp_matchstruct __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 .name = "icmp",
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002216 .match = icmp_match,
2217 .matchsize = sizeof(struct ipt_icmp),
Patrick McHardy9c547952007-12-17 21:52:00 -08002218 .checkentry = icmp_checkentry,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002219 .proto = IPPROTO_ICMP,
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002220 .family = NFPROTO_IPV4,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221};
2222
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002223static int __net_init ip_tables_net_init(struct net *net)
2224{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002225 return xt_proto_init(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002226}
2227
2228static void __net_exit ip_tables_net_exit(struct net *net)
2229{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002230 xt_proto_fini(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002231}
2232
2233static struct pernet_operations ip_tables_net_ops = {
2234 .init = ip_tables_net_init,
2235 .exit = ip_tables_net_exit,
2236};
2237
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002238static int __init ip_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239{
2240 int ret;
2241
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002242 ret = register_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002243 if (ret < 0)
2244 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002245
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 /* Noone else will be downing sem now, so we won't sleep */
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002247 ret = xt_register_target(&ipt_standard_target);
2248 if (ret < 0)
2249 goto err2;
2250 ret = xt_register_target(&ipt_error_target);
2251 if (ret < 0)
2252 goto err3;
2253 ret = xt_register_match(&icmp_matchstruct);
2254 if (ret < 0)
2255 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
2257 /* Register setsockopt */
2258 ret = nf_register_sockopt(&ipt_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002259 if (ret < 0)
2260 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01002262 pr_info("(C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002264
2265err5:
2266 xt_unregister_match(&icmp_matchstruct);
2267err4:
2268 xt_unregister_target(&ipt_error_target);
2269err3:
2270 xt_unregister_target(&ipt_standard_target);
2271err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002272 unregister_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002273err1:
2274 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275}
2276
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002277static void __exit ip_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278{
2279 nf_unregister_sockopt(&ipt_sockopts);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002280
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002281 xt_unregister_match(&icmp_matchstruct);
2282 xt_unregister_target(&ipt_error_target);
2283 xt_unregister_target(&ipt_standard_target);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002284
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002285 unregister_pernet_subsys(&ip_tables_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286}
2287
2288EXPORT_SYMBOL(ipt_register_table);
2289EXPORT_SYMBOL(ipt_unregister_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290EXPORT_SYMBOL(ipt_do_table);
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002291module_init(ip_tables_init);
2292module_exit(ip_tables_fini);