blob: 70900ecf88e2166d47466770b54a874f416831d7 [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 - called for every packet */
177static inline bool
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200178do_match(const struct ipt_entry_match *m, const struct sk_buff *skb,
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200179 struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200181 par->match = m->u.kernel.match;
182 par->matchinfo = m->data;
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 /* Stop iteration if it doesn't match */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200185 if (!m->u.kernel.match->match(skb, par))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700186 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 else
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700188 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
Denys Vlasenko022748a2008-01-14 23:44:05 -0800191/* Performance critical */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192static inline struct ipt_entry *
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200193get_entry(const void *base, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
195 return (struct ipt_entry *)(base + offset);
196}
197
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700198/* All zeroes == unconditional rule. */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800199/* Mildly perf critical (only if packet tracing is on) */
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200200static inline bool unconditional(const struct ipt_ip *ip)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700201{
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200202 static const struct ipt_ip uncond;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700203
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200204 return memcmp(ip, &uncond, sizeof(uncond)) == 0;
Jan Engelhardte79ec502007-12-17 22:44:06 -0800205#undef FWINV
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700206}
207
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200208/* for const-correctness */
209static inline const struct ipt_entry_target *
210ipt_get_target_c(const struct ipt_entry *e)
211{
212 return ipt_get_target((struct ipt_entry *)e);
213}
214
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700215#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
216 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
Denys Vlasenko022748a2008-01-14 23:44:05 -0800217static const char *const hooknames[] = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800218 [NF_INET_PRE_ROUTING] = "PREROUTING",
219 [NF_INET_LOCAL_IN] = "INPUT",
Patrick McHardy9c547952007-12-17 21:52:00 -0800220 [NF_INET_FORWARD] = "FORWARD",
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800221 [NF_INET_LOCAL_OUT] = "OUTPUT",
222 [NF_INET_POST_ROUTING] = "POSTROUTING",
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700223};
224
225enum nf_ip_trace_comments {
226 NF_IP_TRACE_COMMENT_RULE,
227 NF_IP_TRACE_COMMENT_RETURN,
228 NF_IP_TRACE_COMMENT_POLICY,
229};
230
Denys Vlasenko022748a2008-01-14 23:44:05 -0800231static const char *const comments[] = {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700232 [NF_IP_TRACE_COMMENT_RULE] = "rule",
233 [NF_IP_TRACE_COMMENT_RETURN] = "return",
234 [NF_IP_TRACE_COMMENT_POLICY] = "policy",
235};
236
237static struct nf_loginfo trace_loginfo = {
238 .type = NF_LOG_TYPE_LOG,
239 .u = {
240 .log = {
241 .level = 4,
242 .logflags = NF_LOG_MASK,
243 },
244 },
245};
246
Denys Vlasenko022748a2008-01-14 23:44:05 -0800247/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700248static inline int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200249get_chainname_rulenum(const struct ipt_entry *s, const struct ipt_entry *e,
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200250 const char *hookname, const char **chainname,
251 const char **comment, unsigned int *rulenum)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700252{
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200253 const struct ipt_standard_target *t = (void *)ipt_get_target_c(s);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700254
255 if (strcmp(t->target.u.kernel.target->name, IPT_ERROR_TARGET) == 0) {
256 /* Head of user chain: ERROR target with chainname */
257 *chainname = t->target.data;
258 (*rulenum) = 0;
259 } else if (s == e) {
260 (*rulenum)++;
261
Joe Perches3666ed12009-11-23 23:17:06 +0100262 if (s->target_offset == sizeof(struct ipt_entry) &&
263 strcmp(t->target.u.kernel.target->name,
264 IPT_STANDARD_TARGET) == 0 &&
265 t->verdict < 0 &&
266 unconditional(&s->ip)) {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700267 /* Tail of chains: STANDARD target (return/policy) */
268 *comment = *chainname == hookname
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200269 ? comments[NF_IP_TRACE_COMMENT_POLICY]
270 : comments[NF_IP_TRACE_COMMENT_RETURN];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700271 }
272 return 1;
273 } else
274 (*rulenum)++;
275
276 return 0;
277}
278
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200279static void trace_packet(const struct sk_buff *skb,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700280 unsigned int hook,
281 const struct net_device *in,
282 const struct net_device *out,
Jan Engelhardtecb6f852008-01-31 03:54:47 -0800283 const char *tablename,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200284 const struct xt_table_info *private,
285 const struct ipt_entry *e)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700286{
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200287 const void *table_base;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200288 const struct ipt_entry *root;
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200289 const char *hookname, *chainname, *comment;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100290 const struct ipt_entry *iter;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700291 unsigned int rulenum = 0;
292
Jan Engelhardtccf5bd82009-04-15 20:27:03 +0200293 table_base = private->entries[smp_processor_id()];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700294 root = get_entry(table_base, private->hook_entry[hook]);
295
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200296 hookname = chainname = hooknames[hook];
297 comment = comments[NF_IP_TRACE_COMMENT_RULE];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700298
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100299 xt_entry_foreach(iter, root, private->size - private->hook_entry[hook])
300 if (get_chainname_rulenum(iter, e, hookname,
301 &chainname, &comment, &rulenum) != 0)
302 break;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700303
304 nf_log_packet(AF_INET, hook, skb, in, out, &trace_loginfo,
305 "TRACE: %s:%s:%s:%u ",
306 tablename, chainname, comment, rulenum);
307}
308#endif
309
Jan Engelhardt98e86402009-04-15 21:06:05 +0200310static inline __pure
311struct ipt_entry *ipt_next_entry(const struct ipt_entry *entry)
312{
313 return (void *)entry + entry->next_offset;
314}
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316/* Returns one of the generic firewall policies, like NF_ACCEPT. */
317unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700318ipt_do_table(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 unsigned int hook,
320 const struct net_device *in,
321 const struct net_device *out,
Jan Engelhardte60a13e2007-02-07 15:12:33 -0800322 struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
Jan Engelhardt5452e422008-04-14 11:15:35 +0200325 const struct iphdr *ip;
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700326 bool hotdrop = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 /* Initializing verdict to NF_DROP keeps gcc happy. */
328 unsigned int verdict = NF_DROP;
329 const char *indev, *outdev;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200330 const void *table_base;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200331 struct ipt_entry *e, **jumpstack;
332 unsigned int *stackptr, origptr, cpu;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200333 const struct xt_table_info *private;
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200334 struct xt_match_param mtpar;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200335 struct xt_target_param tgpar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 /* Initialization */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700338 ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 indev = in ? in->name : nulldevname;
340 outdev = out ? out->name : nulldevname;
341 /* We handle fragments by dealing with the first fragment as
342 * if it was a normal packet. All other fragments are treated
343 * normally, except that they will NEVER match rules that ask
344 * things we don't know, ie. tcp syn flag or ports). If the
345 * rule is also a fragment-specific rule, non-fragments won't
346 * match it. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200347 mtpar.fragoff = ntohs(ip->frag_off) & IP_OFFSET;
348 mtpar.thoff = ip_hdrlen(skb);
349 mtpar.hotdrop = &hotdrop;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200350 mtpar.in = tgpar.in = in;
351 mtpar.out = tgpar.out = out;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200352 mtpar.family = tgpar.family = NFPROTO_IPV4;
Evgeniy Polyakova5e78822009-06-04 16:54:42 +0200353 mtpar.hooknum = tgpar.hooknum = hook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 IP_NF_ASSERT(table->valid_hooks & (1 << hook));
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700356 xt_info_rdlock_bh();
357 private = table->private;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200358 cpu = smp_processor_id();
359 table_base = private->entries[cpu];
360 jumpstack = (struct ipt_entry **)private->jumpstack[cpu];
361 stackptr = &private->stackptr[cpu];
362 origptr = *stackptr;
Stephen Hemminger78454472009-02-20 10:35:32 +0100363
Harald Welte2e4e6a12006-01-12 13:30:04 -0800364 e = get_entry(table_base, private->hook_entry[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200366 pr_devel("Entering %s(hook %u); sp at %u (UF %p)\n",
367 table->name, hook, origptr,
368 get_entry(table_base, private->underflow[hook]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 do {
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200371 const struct ipt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100372 const struct xt_entry_match *ematch;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 IP_NF_ASSERT(e);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200375 if (!ip_packet_match(ip, indev, outdev,
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100376 &e->ip, mtpar.fragoff)) {
377 no_match:
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200378 e = ipt_next_entry(e);
379 continue;
380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100382 xt_ematch_foreach(ematch, e)
383 if (do_match(ematch, skb, &mtpar) != 0)
384 goto no_match;
385
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200386 ADD_COUNTER(e->counters, ntohs(ip->tot_len), 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200388 t = ipt_get_target(e);
389 IP_NF_ASSERT(t->u.kernel.target);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700390
391#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
392 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200393 /* The packet is traced: log it */
394 if (unlikely(skb->nf_trace))
395 trace_packet(skb, hook, in, out,
396 table->name, private, e);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700397#endif
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200398 /* Standard target? */
399 if (!t->u.kernel.target->target) {
400 int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200402 v = ((struct ipt_standard_target *)t)->verdict;
403 if (v < 0) {
404 /* Pop from stack? */
405 if (v != IPT_RETURN) {
406 verdict = (unsigned)(-v) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 break;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200408 }
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200409 if (*stackptr == 0) {
410 e = get_entry(table_base,
411 private->underflow[hook]);
412 pr_devel("Underflow (this is normal) "
413 "to %p\n", e);
414 } else {
415 e = jumpstack[--*stackptr];
416 pr_devel("Pulled %p out from pos %u\n",
417 e, *stackptr);
418 e = ipt_next_entry(e);
419 }
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200420 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
Joe Perches3666ed12009-11-23 23:17:06 +0100422 if (table_base + v != ipt_next_entry(e) &&
423 !(e->ip.flags & IPT_F_GOTO)) {
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200424 if (*stackptr >= private->stacksize) {
425 verdict = NF_DROP;
426 break;
427 }
428 jumpstack[(*stackptr)++] = e;
429 pr_devel("Pushed %p into pos %u\n",
430 e, *stackptr - 1);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200433 e = get_entry(table_base, v);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200434 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200436
437 /* Targets which reenter must return
438 abs. verdicts */
439 tgpar.target = t->u.kernel.target;
440 tgpar.targinfo = t->data;
Jan Engelhardtbb70dfa2009-04-15 21:40:13 +0200441
442
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200443 verdict = t->u.kernel.target->target(skb, &tgpar);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200444 /* Target might have changed stuff. */
445 ip = ip_hdr(skb);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200446 if (verdict == IPT_CONTINUE)
447 e = ipt_next_entry(e);
448 else
449 /* Verdict */
450 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 } while (!hotdrop);
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700452 xt_info_rdunlock_bh();
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200453 pr_devel("Exiting %s; resetting sp from %u to %u\n",
454 __func__, *stackptr, origptr);
455 *stackptr = origptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456#ifdef DEBUG_ALLOW_ALL
457 return NF_ACCEPT;
458#else
459 if (hotdrop)
460 return NF_DROP;
461 else return verdict;
462#endif
463}
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465/* Figures out from what hook each rule can be called: returns 0 if
466 there are loops. Puts hook bitmask in comefrom. */
467static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200468mark_source_chains(const struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800469 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471 unsigned int hook;
472
473 /* No recursion; use packet counter to save back ptrs (reset
474 to 0 as we leave), and comefrom to save source hook bitmask */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800475 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 unsigned int pos = newinfo->hook_entry[hook];
Patrick McHardy9c547952007-12-17 21:52:00 -0800477 struct ipt_entry *e = (struct ipt_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 if (!(valid_hooks & (1 << hook)))
480 continue;
481
482 /* Set initial back pointer. */
483 e->counters.pcnt = pos;
484
485 for (;;) {
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200486 const struct ipt_standard_target *t
487 = (void *)ipt_get_target_c(e);
Al Viroe1b4b9f2006-12-12 00:29:52 -0800488 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800490 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 printk("iptables: loop hook %u pos %u %08X.\n",
492 hook, pos, e->comefrom);
493 return 0;
494 }
Patrick McHardy9c547952007-12-17 21:52:00 -0800495 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 /* Unconditional return/END. */
Joe Perches3666ed12009-11-23 23:17:06 +0100498 if ((e->target_offset == sizeof(struct ipt_entry) &&
499 (strcmp(t->target.u.user.name,
500 IPT_STANDARD_TARGET) == 0) &&
501 t->verdict < 0 && unconditional(&e->ip)) ||
502 visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 unsigned int oldpos, size;
504
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100505 if ((strcmp(t->target.u.user.name,
506 IPT_STANDARD_TARGET) == 0) &&
507 t->verdict < -NF_MAX_VERDICT - 1) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800508 duprintf("mark_source_chains: bad "
509 "negative verdict (%i)\n",
510 t->verdict);
511 return 0;
512 }
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 /* Return: backtrack through the last
515 big jump. */
516 do {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800517 e->comefrom ^= (1<<NF_INET_NUMHOOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518#ifdef DEBUG_IP_FIREWALL_USER
519 if (e->comefrom
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800520 & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 duprintf("Back unset "
522 "on hook %u "
523 "rule %u\n",
524 hook, pos);
525 }
526#endif
527 oldpos = pos;
528 pos = e->counters.pcnt;
529 e->counters.pcnt = 0;
530
531 /* We're at the start. */
532 if (pos == oldpos)
533 goto next;
534
535 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800536 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 } while (oldpos == pos + e->next_offset);
538
539 /* Move along one */
540 size = e->next_offset;
541 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800542 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 e->counters.pcnt = pos;
544 pos += size;
545 } else {
546 int newpos = t->verdict;
547
548 if (strcmp(t->target.u.user.name,
Joe Perches3666ed12009-11-23 23:17:06 +0100549 IPT_STANDARD_TARGET) == 0 &&
550 newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800551 if (newpos > newinfo->size -
552 sizeof(struct ipt_entry)) {
553 duprintf("mark_source_chains: "
554 "bad verdict (%i)\n",
555 newpos);
556 return 0;
557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 /* This a jump; chase it. */
559 duprintf("Jump rule %u -> %u\n",
560 pos, newpos);
561 } else {
562 /* ... this is a fallthru */
563 newpos = pos + e->next_offset;
564 }
565 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800566 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 e->counters.pcnt = pos;
568 pos = newpos;
569 }
570 }
571 next:
572 duprintf("Finished chain %u\n", hook);
573 }
574 return 1;
575}
576
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100577static void cleanup_match(struct ipt_entry_match *m, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200579 struct xt_mtdtor_param par;
580
Alexey Dobriyanf54e9362010-01-18 08:25:47 +0100581 par.net = net;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200582 par.match = m->u.kernel.match;
583 par.matchinfo = m->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200584 par.family = NFPROTO_IPV4;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200585 if (par.match->destroy != NULL)
586 par.match->destroy(&par);
587 module_put(par.match->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
Denys Vlasenko022748a2008-01-14 23:44:05 -0800590static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200591check_entry(const struct ipt_entry *e, const char *name)
Dmitry Mishina96be242006-12-12 00:29:26 -0800592{
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200593 const struct ipt_entry_target *t;
Dmitry Mishina96be242006-12-12 00:29:26 -0800594
595 if (!ip_checkentry(&e->ip)) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100596 duprintf("ip check failed %p %s.\n", e, name);
Dmitry Mishina96be242006-12-12 00:29:26 -0800597 return -EINVAL;
598 }
599
Patrick McHardy9c547952007-12-17 21:52:00 -0800600 if (e->target_offset + sizeof(struct ipt_entry_target) >
601 e->next_offset)
Dmitry Mishina96be242006-12-12 00:29:26 -0800602 return -EINVAL;
603
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200604 t = ipt_get_target_c(e);
Dmitry Mishina96be242006-12-12 00:29:26 -0800605 if (e->target_offset + t->u.target_size > e->next_offset)
606 return -EINVAL;
607
608 return 0;
609}
610
Denys Vlasenko022748a2008-01-14 23:44:05 -0800611static int
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100612check_match(struct ipt_entry_match *m, struct xt_mtchk_param *par)
Dmitry Mishina96be242006-12-12 00:29:26 -0800613{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200614 const struct ipt_ip *ip = par->entryinfo;
Dmitry Mishina96be242006-12-12 00:29:26 -0800615 int ret;
616
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200617 par->match = m->u.kernel.match;
618 par->matchinfo = m->data;
619
Jan Engelhardt916a9172008-10-08 11:35:20 +0200620 ret = xt_check_match(par, m->u.match_size - sizeof(*m),
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200621 ip->proto, ip->invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200622 if (ret < 0) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100623 duprintf("check failed for `%s'.\n", par.match->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200624 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800625 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200626 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800627}
628
Denys Vlasenko022748a2008-01-14 23:44:05 -0800629static int
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100630find_check_match(struct ipt_entry_match *m, struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800632 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800633 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200635 match = xt_request_find_match(NFPROTO_IPV4, m->u.user.name,
636 m->u.user.revision);
637 if (IS_ERR(match)) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800638 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200639 return PTR_ERR(match);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
641 m->u.kernel.match = match;
642
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100643 ret = check_match(m, par);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800644 if (ret)
645 goto err;
646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800648err:
649 module_put(m->u.kernel.match->me);
650 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652
Patrick McHardyadd67462010-02-03 13:45:12 +0100653static int check_target(struct ipt_entry *e, struct net *net, const char *name)
Dmitry Mishina96be242006-12-12 00:29:26 -0800654{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200655 struct ipt_entry_target *t = ipt_get_target(e);
656 struct xt_tgchk_param par = {
Patrick McHardyadd67462010-02-03 13:45:12 +0100657 .net = net,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200658 .table = name,
659 .entryinfo = e,
660 .target = t->u.kernel.target,
661 .targinfo = t->data,
662 .hook_mask = e->comefrom,
Jan Engelhardt916a9172008-10-08 11:35:20 +0200663 .family = NFPROTO_IPV4,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200664 };
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900665 int ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800666
Jan Engelhardt916a9172008-10-08 11:35:20 +0200667 ret = xt_check_target(&par, t->u.target_size - sizeof(*t),
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200668 e->ip.proto, e->ip.invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200669 if (ret < 0) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100670 duprintf("check failed for `%s'.\n",
Dmitry Mishina96be242006-12-12 00:29:26 -0800671 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200672 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800673 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200674 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800675}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Denys Vlasenko022748a2008-01-14 23:44:05 -0800677static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100678find_check_entry(struct ipt_entry *e, struct net *net, const char *name,
Jan Engelhardt05595182010-02-24 18:33:43 +0100679 unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
681 struct ipt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800682 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 int ret;
684 unsigned int j;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200685 struct xt_mtchk_param mtpar;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100686 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Dmitry Mishina96be242006-12-12 00:29:26 -0800688 ret = check_entry(e, name);
689 if (ret)
690 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 j = 0;
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100693 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200694 mtpar.table = name;
695 mtpar.entryinfo = &e->ip;
696 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200697 mtpar.family = NFPROTO_IPV4;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100698 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100699 ret = find_check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100700 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100701 goto cleanup_matches;
702 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 t = ipt_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200706 target = xt_request_find_target(NFPROTO_IPV4, t->u.user.name,
707 t->u.user.revision);
708 if (IS_ERR(target)) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800709 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200710 ret = PTR_ERR(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 goto cleanup_matches;
712 }
713 t->u.kernel.target = target;
714
Patrick McHardyadd67462010-02-03 13:45:12 +0100715 ret = check_target(e, net, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800716 if (ret)
717 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800719 err:
720 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100722 xt_ematch_foreach(ematch, e) {
723 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100724 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100725 cleanup_match(ematch, net);
726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return ret;
728}
729
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200730static bool check_underflow(const struct ipt_entry *e)
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200731{
732 const struct ipt_entry_target *t;
733 unsigned int verdict;
734
735 if (!unconditional(&e->ip))
736 return false;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200737 t = ipt_get_target_c(e);
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200738 if (strcmp(t->u.user.name, XT_STANDARD_TARGET) != 0)
739 return false;
740 verdict = ((struct ipt_standard_target *)t)->verdict;
741 verdict = -verdict - 1;
742 return verdict == NF_DROP || verdict == NF_ACCEPT;
743}
744
Denys Vlasenko022748a2008-01-14 23:44:05 -0800745static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746check_entry_size_and_hooks(struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800747 struct xt_table_info *newinfo,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200748 const unsigned char *base,
749 const unsigned char *limit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 const unsigned int *hook_entries,
751 const unsigned int *underflows,
Jan Engelhardt05595182010-02-24 18:33:43 +0100752 unsigned int valid_hooks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
754 unsigned int h;
755
Joe Perches3666ed12009-11-23 23:17:06 +0100756 if ((unsigned long)e % __alignof__(struct ipt_entry) != 0 ||
757 (unsigned char *)e + sizeof(struct ipt_entry) >= limit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 duprintf("Bad offset %p\n", e);
759 return -EINVAL;
760 }
761
762 if (e->next_offset
763 < sizeof(struct ipt_entry) + sizeof(struct ipt_entry_target)) {
764 duprintf("checking: element %p size %u\n",
765 e, e->next_offset);
766 return -EINVAL;
767 }
768
769 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800770 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Jan Engelhardta7d51732009-07-18 14:52:58 +0200771 if (!(valid_hooks & (1 << h)))
772 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if ((unsigned char *)e - base == hook_entries[h])
774 newinfo->hook_entry[h] = hook_entries[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200775 if ((unsigned char *)e - base == underflows[h]) {
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200776 if (!check_underflow(e)) {
777 pr_err("Underflows must be unconditional and "
778 "use the STANDARD target with "
779 "ACCEPT/DROP\n");
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200780 return -EINVAL;
781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 newinfo->underflow[h] = underflows[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800787 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 e->comefrom = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 return 0;
790}
791
Jan Engelhardt05595182010-02-24 18:33:43 +0100792static void
793cleanup_entry(struct ipt_entry *e, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200795 struct xt_tgdtor_param par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 struct ipt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100797 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100800 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100801 cleanup_match(ematch, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 t = ipt_get_target(e);
Jan Engelhardta2df1642008-10-08 11:35:19 +0200803
Patrick McHardyadd67462010-02-03 13:45:12 +0100804 par.net = net;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200805 par.target = t->u.kernel.target;
806 par.targinfo = t->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200807 par.family = NFPROTO_IPV4;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200808 if (par.target->destroy != NULL)
809 par.target->destroy(&par);
810 module_put(par.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
812
813/* Checks and translates the user-supplied table segment (held in
814 newinfo) */
815static int
Jan Engelhardt0f234212010-02-24 18:36:04 +0100816translate_table(struct net *net, struct xt_table_info *newinfo, void *entry0,
817 const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100819 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 unsigned int i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100821 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Jan Engelhardt0f234212010-02-24 18:36:04 +0100823 newinfo->size = repl->size;
824 newinfo->number = repl->num_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800827 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 newinfo->hook_entry[i] = 0xFFFFFFFF;
829 newinfo->underflow[i] = 0xFFFFFFFF;
830 }
831
832 duprintf("translate_table: size %u\n", newinfo->size);
833 i = 0;
834 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100835 xt_entry_foreach(iter, entry0, newinfo->size) {
836 ret = check_entry_size_and_hooks(iter, newinfo, entry0,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +0100837 entry0 + repl->size,
838 repl->hook_entry,
839 repl->underflow,
840 repl->valid_hooks);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100841 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +0100842 return ret;
843 ++i;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200844 if (strcmp(ipt_get_target(iter)->u.user.name,
845 XT_ERROR_TARGET) == 0)
846 ++newinfo->stacksize;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Jan Engelhardt0f234212010-02-24 18:36:04 +0100849 if (i != repl->num_entries) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 duprintf("translate_table: %u not %u entries\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100851 i, repl->num_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 return -EINVAL;
853 }
854
855 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800856 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 /* Only hooks which are valid */
Jan Engelhardt0f234212010-02-24 18:36:04 +0100858 if (!(repl->valid_hooks & (1 << i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 continue;
860 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
861 duprintf("Invalid hook entry %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100862 i, repl->hook_entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 return -EINVAL;
864 }
865 if (newinfo->underflow[i] == 0xFFFFFFFF) {
866 duprintf("Invalid underflow %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100867 i, repl->underflow[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return -EINVAL;
869 }
870 }
871
Jan Engelhardt0f234212010-02-24 18:36:04 +0100872 if (!mark_source_chains(newinfo, repl->valid_hooks, entry0))
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800873 return -ELOOP;
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 /* Finally, each sanity check must pass */
876 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100877 xt_entry_foreach(iter, entry0, newinfo->size) {
Jan Engelhardt0f234212010-02-24 18:36:04 +0100878 ret = find_check_entry(iter, net, repl->name, repl->size);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100879 if (ret != 0)
880 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100881 ++i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800884 if (ret != 0) {
Jan Engelhardt05595182010-02-24 18:33:43 +0100885 xt_entry_foreach(iter, entry0, newinfo->size) {
886 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100887 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100888 cleanup_entry(iter, net);
889 }
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800890 return ret;
891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 /* And one copy for every other CPU */
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700894 for_each_possible_cpu(i) {
Eric Dumazet31836062005-12-13 23:13:48 -0800895 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
896 memcpy(newinfo->entries[i], entry0, newinfo->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 }
898
899 return ret;
900}
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800903get_counters(const struct xt_table_info *t,
904 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100906 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 unsigned int cpu;
908 unsigned int i;
Eric Dumazet31836062005-12-13 23:13:48 -0800909 unsigned int curcpu;
910
911 /* Instead of clearing (by a previous call to memset())
912 * the counters and using adds, we set the counters
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700913 * with data used by 'current' CPU.
914 *
915 * Bottom half has to be disabled to prevent deadlock
916 * if new softirq were to run and call ipt_do_table
Eric Dumazet31836062005-12-13 23:13:48 -0800917 */
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700918 local_bh_disable();
919 curcpu = smp_processor_id();
Eric Dumazet31836062005-12-13 23:13:48 -0800920
921 i = 0;
Jan Engelhardt05595182010-02-24 18:33:43 +0100922 xt_entry_foreach(iter, t->entries[curcpu], t->size) {
923 SET_COUNTER(counters[i], iter->counters.bcnt,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +0100924 iter->counters.pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +0100925 ++i;
926 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700928 for_each_possible_cpu(cpu) {
Eric Dumazet31836062005-12-13 23:13:48 -0800929 if (cpu == curcpu)
930 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 i = 0;
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700932 xt_info_wrlock(cpu);
Jan Engelhardt05595182010-02-24 18:33:43 +0100933 xt_entry_foreach(iter, t->entries[cpu], t->size) {
934 ADD_COUNTER(counters[i], iter->counters.bcnt,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +0100935 iter->counters.pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +0100936 ++i; /* macro does multi eval of i */
937 }
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700938 xt_info_wrunlock(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 }
Stephen Hemminger78454472009-02-20 10:35:32 +0100940 local_bh_enable();
941}
942
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200943static struct xt_counters *alloc_counters(const struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
Dmitry Mishin27229712006-04-01 02:25:19 -0800945 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800946 struct xt_counters *counters;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200947 const struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 /* We need atomic snapshot of counters: rest doesn't change
950 (other than comefrom, which userspace doesn't care
951 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800952 countersize = sizeof(struct xt_counters) * private->number;
Eric Dumazet31836062005-12-13 23:13:48 -0800953 counters = vmalloc_node(countersize, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955 if (counters == NULL)
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700956 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700958 get_counters(private, counters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Dmitry Mishin27229712006-04-01 02:25:19 -0800960 return counters;
961}
962
963static int
964copy_entries_to_user(unsigned int total_size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200965 const struct xt_table *table,
Dmitry Mishin27229712006-04-01 02:25:19 -0800966 void __user *userptr)
967{
968 unsigned int off, num;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200969 const struct ipt_entry *e;
Dmitry Mishin27229712006-04-01 02:25:19 -0800970 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200971 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -0800972 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200973 const void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -0800974
975 counters = alloc_counters(table);
976 if (IS_ERR(counters))
977 return PTR_ERR(counters);
978
Eric Dumazet31836062005-12-13 23:13:48 -0800979 /* choose the copy that is on our node/cpu, ...
980 * This choice is lazy (because current thread is
981 * allowed to migrate to another cpu)
982 */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800983 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -0800984 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 ret = -EFAULT;
986 goto free_counters;
987 }
988
989 /* FIXME: use iterator macros --RR */
990 /* ... then go back and fix counters and names */
991 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
992 unsigned int i;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200993 const struct ipt_entry_match *m;
994 const struct ipt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Eric Dumazet31836062005-12-13 23:13:48 -0800996 e = (struct ipt_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 if (copy_to_user(userptr + off
998 + offsetof(struct ipt_entry, counters),
999 &counters[num],
1000 sizeof(counters[num])) != 0) {
1001 ret = -EFAULT;
1002 goto free_counters;
1003 }
1004
1005 for (i = sizeof(struct ipt_entry);
1006 i < e->target_offset;
1007 i += m->u.match_size) {
1008 m = (void *)e + i;
1009
1010 if (copy_to_user(userptr + off + i
1011 + offsetof(struct ipt_entry_match,
1012 u.user.name),
1013 m->u.kernel.match->name,
1014 strlen(m->u.kernel.match->name)+1)
1015 != 0) {
1016 ret = -EFAULT;
1017 goto free_counters;
1018 }
1019 }
1020
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001021 t = ipt_get_target_c(e);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (copy_to_user(userptr + off + e->target_offset
1023 + offsetof(struct ipt_entry_target,
1024 u.user.name),
1025 t->u.kernel.target->name,
1026 strlen(t->u.kernel.target->name)+1) != 0) {
1027 ret = -EFAULT;
1028 goto free_counters;
1029 }
1030 }
1031
1032 free_counters:
1033 vfree(counters);
1034 return ret;
1035}
1036
Dmitry Mishin27229712006-04-01 02:25:19 -08001037#ifdef CONFIG_COMPAT
Jan Engelhardt739674f2009-06-26 08:23:19 +02001038static void compat_standard_from_user(void *dst, const void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001039{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001040 int v = *(compat_int_t *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001041
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001042 if (v > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001043 v += xt_compat_calc_jump(AF_INET, v);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001044 memcpy(dst, &v, sizeof(v));
1045}
1046
Jan Engelhardt739674f2009-06-26 08:23:19 +02001047static int compat_standard_to_user(void __user *dst, const void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001048{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001049 compat_int_t cv = *(int *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001050
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001051 if (cv > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001052 cv -= xt_compat_calc_jump(AF_INET, cv);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001053 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001054}
1055
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001056static int compat_calc_entry(const struct ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001057 const struct xt_table_info *info,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001058 const void *base, struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001059{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001060 const struct xt_entry_match *ematch;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001061 const struct ipt_entry_target *t;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001062 unsigned int entry_offset;
Dmitry Mishin27229712006-04-01 02:25:19 -08001063 int off, i, ret;
1064
Patrick McHardy30c08c42007-12-17 21:47:14 -08001065 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001066 entry_offset = (void *)e - base;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001067 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001068 off += xt_compat_match_offset(ematch->u.kernel.match);
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001069 t = ipt_get_target_c(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001070 off += xt_compat_target_offset(t->u.kernel.target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001071 newinfo->size -= off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001072 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001073 if (ret)
1074 return ret;
1075
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001076 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Patrick McHardy4b478242007-12-17 21:46:15 -08001077 if (info->hook_entry[i] &&
1078 (e < (struct ipt_entry *)(base + info->hook_entry[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001079 newinfo->hook_entry[i] -= off;
Patrick McHardy4b478242007-12-17 21:46:15 -08001080 if (info->underflow[i] &&
1081 (e < (struct ipt_entry *)(base + info->underflow[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001082 newinfo->underflow[i] -= off;
1083 }
1084 return 0;
1085}
1086
Eric Dumazet259d4e42007-12-04 23:24:56 -08001087static int compat_table_info(const struct xt_table_info *info,
Patrick McHardy4b478242007-12-17 21:46:15 -08001088 struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001089{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001090 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001091 void *loc_cpu_entry;
Jan Engelhardt05595182010-02-24 18:33:43 +01001092 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001093
1094 if (!newinfo || !info)
1095 return -EINVAL;
1096
Eric Dumazet259d4e42007-12-04 23:24:56 -08001097 /* we dont care about newinfo->entries[] */
1098 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1099 newinfo->initial_entries = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001100 loc_cpu_entry = info->entries[raw_smp_processor_id()];
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001101 xt_entry_foreach(iter, loc_cpu_entry, info->size) {
1102 ret = compat_calc_entry(iter, info, loc_cpu_entry, newinfo);
1103 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001104 return ret;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001105 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001106 return 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001107}
1108#endif
1109
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001110static int get_info(struct net *net, void __user *user,
1111 const int *len, int compat)
Dmitry Mishin27229712006-04-01 02:25:19 -08001112{
1113 char name[IPT_TABLE_MAXNAMELEN];
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001114 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001115 int ret;
1116
1117 if (*len != sizeof(struct ipt_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001118 duprintf("length %u != %zu\n", *len,
1119 sizeof(struct ipt_getinfo));
Dmitry Mishin27229712006-04-01 02:25:19 -08001120 return -EINVAL;
1121 }
1122
1123 if (copy_from_user(name, user, sizeof(name)) != 0)
1124 return -EFAULT;
1125
1126 name[IPT_TABLE_MAXNAMELEN-1] = '\0';
1127#ifdef CONFIG_COMPAT
1128 if (compat)
1129 xt_compat_lock(AF_INET);
1130#endif
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001131 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Patrick McHardy4b478242007-12-17 21:46:15 -08001132 "iptable_%s", name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001133 if (t && !IS_ERR(t)) {
1134 struct ipt_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001135 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001136#ifdef CONFIG_COMPAT
Alexey Dobriyan14c7dbe2010-02-08 11:17:43 -08001137 struct xt_table_info tmp;
1138
Dmitry Mishin27229712006-04-01 02:25:19 -08001139 if (compat) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001140 ret = compat_table_info(private, &tmp);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001141 xt_compat_flush_offsets(AF_INET);
Patrick McHardy4b478242007-12-17 21:46:15 -08001142 private = &tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001143 }
1144#endif
1145 info.valid_hooks = t->valid_hooks;
1146 memcpy(info.hook_entry, private->hook_entry,
Patrick McHardy4b478242007-12-17 21:46:15 -08001147 sizeof(info.hook_entry));
Dmitry Mishin27229712006-04-01 02:25:19 -08001148 memcpy(info.underflow, private->underflow,
Patrick McHardy4b478242007-12-17 21:46:15 -08001149 sizeof(info.underflow));
Dmitry Mishin27229712006-04-01 02:25:19 -08001150 info.num_entries = private->number;
1151 info.size = private->size;
1152 strcpy(info.name, name);
1153
1154 if (copy_to_user(user, &info, *len) != 0)
1155 ret = -EFAULT;
1156 else
1157 ret = 0;
1158
1159 xt_table_unlock(t);
1160 module_put(t->me);
1161 } else
1162 ret = t ? PTR_ERR(t) : -ENOENT;
1163#ifdef CONFIG_COMPAT
1164 if (compat)
1165 xt_compat_unlock(AF_INET);
1166#endif
1167 return ret;
1168}
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001171get_entries(struct net *net, struct ipt_get_entries __user *uptr,
1172 const int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
1174 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001175 struct ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001176 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Dmitry Mishin27229712006-04-01 02:25:19 -08001178 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001179 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001180 return -EINVAL;
1181 }
1182 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1183 return -EFAULT;
1184 if (*len != sizeof(struct ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001185 duprintf("get_entries: %u != %zu\n",
1186 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001187 return -EINVAL;
1188 }
1189
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001190 t = xt_find_table_lock(net, AF_INET, get.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001192 const struct xt_table_info *private = t->private;
Patrick McHardy9c547952007-12-17 21:52:00 -08001193 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001194 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001195 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 t, uptr->entrytable);
1197 else {
1198 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001199 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001200 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 }
1202 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001203 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 } else
1205 ret = t ? PTR_ERR(t) : -ENOENT;
1206
1207 return ret;
1208}
1209
1210static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001211__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001212 struct xt_table_info *newinfo, unsigned int num_counters,
1213 void __user *counters_ptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001214{
1215 int ret;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001216 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001217 struct xt_table_info *oldinfo;
1218 struct xt_counters *counters;
1219 void *loc_cpu_old_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001220 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001221
1222 ret = 0;
1223 counters = vmalloc(num_counters * sizeof(struct xt_counters));
1224 if (!counters) {
1225 ret = -ENOMEM;
1226 goto out;
1227 }
1228
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001229 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Dmitry Mishin27229712006-04-01 02:25:19 -08001230 "iptable_%s", name);
1231 if (!t || IS_ERR(t)) {
1232 ret = t ? PTR_ERR(t) : -ENOENT;
1233 goto free_newinfo_counters_untrans;
1234 }
1235
1236 /* You lied! */
1237 if (valid_hooks != t->valid_hooks) {
1238 duprintf("Valid hook crap: %08X vs %08X\n",
1239 valid_hooks, t->valid_hooks);
1240 ret = -EINVAL;
1241 goto put_module;
1242 }
1243
1244 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1245 if (!oldinfo)
1246 goto put_module;
1247
1248 /* Update module usage count based on number of rules */
1249 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1250 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1251 if ((oldinfo->number > oldinfo->initial_entries) ||
1252 (newinfo->number <= oldinfo->initial_entries))
1253 module_put(t->me);
1254 if ((oldinfo->number > oldinfo->initial_entries) &&
1255 (newinfo->number <= oldinfo->initial_entries))
1256 module_put(t->me);
1257
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001258 /* Get the old counters, and synchronize with replace */
Dmitry Mishin27229712006-04-01 02:25:19 -08001259 get_counters(oldinfo, counters);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001260
Dmitry Mishin27229712006-04-01 02:25:19 -08001261 /* Decrease module usage counts and free resource */
1262 loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001263 xt_entry_foreach(iter, loc_cpu_old_entry, oldinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001264 cleanup_entry(iter, net);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001265
Dmitry Mishin27229712006-04-01 02:25:19 -08001266 xt_free_table_info(oldinfo);
1267 if (copy_to_user(counters_ptr, counters,
1268 sizeof(struct xt_counters) * num_counters) != 0)
1269 ret = -EFAULT;
1270 vfree(counters);
1271 xt_table_unlock(t);
1272 return ret;
1273
1274 put_module:
1275 module_put(t->me);
1276 xt_table_unlock(t);
1277 free_newinfo_counters_untrans:
1278 vfree(counters);
1279 out:
1280 return ret;
1281}
1282
1283static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001284do_replace(struct net *net, const void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285{
1286 int ret;
1287 struct ipt_replace tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001288 struct xt_table_info *newinfo;
1289 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001290 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1293 return -EFAULT;
1294
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001295 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001296 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1297 return -ENOMEM;
1298
Harald Welte2e4e6a12006-01-12 13:30:04 -08001299 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 if (!newinfo)
1301 return -ENOMEM;
1302
Patrick McHardy9c547952007-12-17 21:52:00 -08001303 /* choose the copy that is on our node/cpu */
Eric Dumazet31836062005-12-13 23:13:48 -08001304 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1305 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 tmp.size) != 0) {
1307 ret = -EFAULT;
1308 goto free_newinfo;
1309 }
1310
Jan Engelhardt0f234212010-02-24 18:36:04 +01001311 ret = translate_table(net, newinfo, loc_cpu_entry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 if (ret != 0)
Dmitry Mishin27229712006-04-01 02:25:19 -08001313 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01001315 duprintf("Translated table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001317 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001318 tmp.num_counters, tmp.counters);
Dmitry Mishin27229712006-04-01 02:25:19 -08001319 if (ret)
1320 goto free_newinfo_untrans;
1321 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Dmitry Mishin27229712006-04-01 02:25:19 -08001323 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001324 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001325 cleanup_entry(iter, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001327 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return ret;
1329}
1330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001332do_add_counters(struct net *net, const void __user *user,
1333 unsigned int len, int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001335 unsigned int i, curcpu;
Dmitry Mishin27229712006-04-01 02:25:19 -08001336 struct xt_counters_info tmp;
1337 struct xt_counters *paddc;
1338 unsigned int num_counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001339 const char *name;
Dmitry Mishin27229712006-04-01 02:25:19 -08001340 int size;
1341 void *ptmp;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001342 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001343 const struct xt_table_info *private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 int ret = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001345 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001346 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001347#ifdef CONFIG_COMPAT
1348 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Dmitry Mishin27229712006-04-01 02:25:19 -08001350 if (compat) {
1351 ptmp = &compat_tmp;
1352 size = sizeof(struct compat_xt_counters_info);
1353 } else
1354#endif
1355 {
1356 ptmp = &tmp;
1357 size = sizeof(struct xt_counters_info);
1358 }
1359
1360 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 return -EFAULT;
1362
Dmitry Mishin27229712006-04-01 02:25:19 -08001363#ifdef CONFIG_COMPAT
1364 if (compat) {
1365 num_counters = compat_tmp.num_counters;
1366 name = compat_tmp.name;
1367 } else
1368#endif
1369 {
1370 num_counters = tmp.num_counters;
1371 name = tmp.name;
1372 }
1373
1374 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 return -EINVAL;
1376
Dmitry Mishin27229712006-04-01 02:25:19 -08001377 paddc = vmalloc_node(len - size, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 if (!paddc)
1379 return -ENOMEM;
1380
Dmitry Mishin27229712006-04-01 02:25:19 -08001381 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 ret = -EFAULT;
1383 goto free;
1384 }
1385
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001386 t = xt_find_table_lock(net, AF_INET, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 if (!t || IS_ERR(t)) {
1388 ret = t ? PTR_ERR(t) : -ENOENT;
1389 goto free;
1390 }
1391
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001392 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001393 private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001394 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 ret = -EINVAL;
1396 goto unlock_up_free;
1397 }
1398
1399 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001400 /* Choose the copy that is on our node */
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001401 curcpu = smp_processor_id();
1402 loc_cpu_entry = private->entries[curcpu];
1403 xt_info_wrlock(curcpu);
Jan Engelhardt05595182010-02-24 18:33:43 +01001404 xt_entry_foreach(iter, loc_cpu_entry, private->size) {
1405 ADD_COUNTER(iter->counters, paddc[i].bcnt, paddc[i].pcnt);
1406 ++i;
1407 }
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001408 xt_info_wrunlock(curcpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 unlock_up_free:
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001410 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001411 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 module_put(t->me);
1413 free:
1414 vfree(paddc);
1415
1416 return ret;
1417}
1418
Dmitry Mishin27229712006-04-01 02:25:19 -08001419#ifdef CONFIG_COMPAT
1420struct compat_ipt_replace {
1421 char name[IPT_TABLE_MAXNAMELEN];
1422 u32 valid_hooks;
1423 u32 num_entries;
1424 u32 size;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001425 u32 hook_entry[NF_INET_NUMHOOKS];
1426 u32 underflow[NF_INET_NUMHOOKS];
Dmitry Mishin27229712006-04-01 02:25:19 -08001427 u32 num_counters;
1428 compat_uptr_t counters; /* struct ipt_counters * */
1429 struct compat_ipt_entry entries[0];
1430};
1431
Patrick McHardya18aa312007-12-12 10:35:16 -08001432static int
1433compat_copy_entry_to_user(struct ipt_entry *e, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001434 unsigned int *size, struct xt_counters *counters,
Jan Engelhardt05595182010-02-24 18:33:43 +01001435 unsigned int i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001436{
Al Viro3e597c62006-09-24 23:42:20 +01001437 struct ipt_entry_target *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001438 struct compat_ipt_entry __user *ce;
1439 u_int16_t target_offset, next_offset;
1440 compat_uint_t origsize;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001441 const struct xt_entry_match *ematch;
1442 int ret = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001443
Dmitry Mishin27229712006-04-01 02:25:19 -08001444 origsize = *size;
1445 ce = (struct compat_ipt_entry __user *)*dstptr;
Jan Engelhardt05595182010-02-24 18:33:43 +01001446 if (copy_to_user(ce, e, sizeof(struct ipt_entry)) != 0 ||
1447 copy_to_user(&ce->counters, &counters[i],
1448 sizeof(counters[i])) != 0)
1449 return -EFAULT;
Patrick McHardya18aa312007-12-12 10:35:16 -08001450
Dmitry Mishin27229712006-04-01 02:25:19 -08001451 *dstptr += sizeof(struct compat_ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001452 *size -= sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1453
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001454 xt_ematch_foreach(ematch, e) {
1455 ret = xt_compat_match_to_user(ematch, dstptr, size);
1456 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001457 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001458 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001459 target_offset = e->target_offset - (origsize - *size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001460 t = ipt_get_target(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001461 ret = xt_compat_target_to_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001462 if (ret)
Jan Engelhardt05595182010-02-24 18:33:43 +01001463 return ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001464 next_offset = e->next_offset - (origsize - *size);
Jan Engelhardt05595182010-02-24 18:33:43 +01001465 if (put_user(target_offset, &ce->target_offset) != 0 ||
1466 put_user(next_offset, &ce->next_offset) != 0)
1467 return -EFAULT;
Dmitry Mishin27229712006-04-01 02:25:19 -08001468 return 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001469}
1470
Denys Vlasenko022748a2008-01-14 23:44:05 -08001471static int
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001472compat_find_calc_match(struct ipt_entry_match *m,
Patrick McHardy4b478242007-12-17 21:46:15 -08001473 const char *name,
1474 const struct ipt_ip *ip,
1475 unsigned int hookmask,
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001476 int *size)
Dmitry Mishin27229712006-04-01 02:25:19 -08001477{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001478 struct xt_match *match;
Dmitry Mishin27229712006-04-01 02:25:19 -08001479
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001480 match = xt_request_find_match(NFPROTO_IPV4, m->u.user.name,
1481 m->u.user.revision);
1482 if (IS_ERR(match)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001483 duprintf("compat_check_calc_match: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001484 m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001485 return PTR_ERR(match);
Dmitry Mishin27229712006-04-01 02:25:19 -08001486 }
1487 m->u.kernel.match = match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001488 *size += xt_compat_match_offset(match);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001489 return 0;
1490}
1491
Jan Engelhardt05595182010-02-24 18:33:43 +01001492static void compat_release_entry(struct compat_ipt_entry *e)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001493{
1494 struct ipt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001495 struct xt_entry_match *ematch;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001496
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001497 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001498 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001499 module_put(ematch->u.kernel.match->me);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001500 t = compat_ipt_get_target(e);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001501 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001502}
1503
Denys Vlasenko022748a2008-01-14 23:44:05 -08001504static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001505check_compat_entry_size_and_hooks(struct compat_ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001506 struct xt_table_info *newinfo,
1507 unsigned int *size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001508 const unsigned char *base,
1509 const unsigned char *limit,
1510 const unsigned int *hook_entries,
1511 const unsigned int *underflows,
Patrick McHardy4b478242007-12-17 21:46:15 -08001512 const char *name)
Dmitry Mishin27229712006-04-01 02:25:19 -08001513{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001514 struct xt_entry_match *ematch;
Dmitry Mishin27229712006-04-01 02:25:19 -08001515 struct ipt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001516 struct xt_target *target;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001517 unsigned int entry_offset;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001518 unsigned int j;
1519 int ret, off, h;
Dmitry Mishin27229712006-04-01 02:25:19 -08001520
1521 duprintf("check_compat_entry_size_and_hooks %p\n", e);
Joe Perches3666ed12009-11-23 23:17:06 +01001522 if ((unsigned long)e % __alignof__(struct compat_ipt_entry) != 0 ||
1523 (unsigned char *)e + sizeof(struct compat_ipt_entry) >= limit) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001524 duprintf("Bad offset %p, limit = %p\n", e, limit);
1525 return -EINVAL;
1526 }
1527
1528 if (e->next_offset < sizeof(struct compat_ipt_entry) +
Patrick McHardy4b478242007-12-17 21:46:15 -08001529 sizeof(struct compat_xt_entry_target)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001530 duprintf("checking: element %p size %u\n",
1531 e, e->next_offset);
1532 return -EINVAL;
1533 }
1534
Patrick McHardy73cd5982007-12-17 21:47:32 -08001535 /* For purposes of check_entry casting the compat entry is fine */
1536 ret = check_entry((struct ipt_entry *)e, name);
Dmitry Mishina96be242006-12-12 00:29:26 -08001537 if (ret)
1538 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -08001539
Patrick McHardy30c08c42007-12-17 21:47:14 -08001540 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001541 entry_offset = (void *)e - (void *)base;
1542 j = 0;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001543 xt_ematch_foreach(ematch, e) {
1544 ret = compat_find_calc_match(ematch, name,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001545 &e->ip, e->comefrom, &off);
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001546 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001547 goto release_matches;
1548 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001549 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001550
Patrick McHardy73cd5982007-12-17 21:47:32 -08001551 t = compat_ipt_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001552 target = xt_request_find_target(NFPROTO_IPV4, t->u.user.name,
1553 t->u.user.revision);
1554 if (IS_ERR(target)) {
Dmitry Mishina96be242006-12-12 00:29:26 -08001555 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001556 t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001557 ret = PTR_ERR(target);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001558 goto release_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001559 }
1560 t->u.kernel.target = target;
1561
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001562 off += xt_compat_target_offset(target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001563 *size += off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001564 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001565 if (ret)
1566 goto out;
1567
1568 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001569 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001570 if ((unsigned char *)e - base == hook_entries[h])
1571 newinfo->hook_entry[h] = hook_entries[h];
1572 if ((unsigned char *)e - base == underflows[h])
1573 newinfo->underflow[h] = underflows[h];
1574 }
1575
1576 /* Clear counters and comefrom */
Patrick McHardy73cd5982007-12-17 21:47:32 -08001577 memset(&e->counters, 0, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001578 e->comefrom = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001579 return 0;
Patrick McHardybec71b12006-09-20 12:04:08 -07001580
Dmitry Mishin27229712006-04-01 02:25:19 -08001581out:
Patrick McHardybec71b12006-09-20 12:04:08 -07001582 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001583release_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001584 xt_ematch_foreach(ematch, e) {
1585 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001586 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001587 module_put(ematch->u.kernel.match->me);
1588 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001589 return ret;
1590}
1591
Patrick McHardy4b478242007-12-17 21:46:15 -08001592static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001593compat_copy_entry_from_user(struct compat_ipt_entry *e, void **dstptr,
Patrick McHardy4b478242007-12-17 21:46:15 -08001594 unsigned int *size, const char *name,
1595 struct xt_table_info *newinfo, unsigned char *base)
Dmitry Mishin27229712006-04-01 02:25:19 -08001596{
1597 struct ipt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001598 struct xt_target *target;
Dmitry Mishin27229712006-04-01 02:25:19 -08001599 struct ipt_entry *de;
1600 unsigned int origsize;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001601 int ret, h;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001602 struct xt_entry_match *ematch;
Dmitry Mishin27229712006-04-01 02:25:19 -08001603
1604 ret = 0;
1605 origsize = *size;
1606 de = (struct ipt_entry *)*dstptr;
1607 memcpy(de, e, sizeof(struct ipt_entry));
Patrick McHardy73cd5982007-12-17 21:47:32 -08001608 memcpy(&de->counters, &e->counters, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001609
Patrick McHardy73cd5982007-12-17 21:47:32 -08001610 *dstptr += sizeof(struct ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001611 *size += sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1612
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001613 xt_ematch_foreach(ematch, e) {
1614 ret = xt_compat_match_from_user(ematch, dstptr, size);
1615 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001616 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001617 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001618 de->target_offset = e->target_offset - (origsize - *size);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001619 t = compat_ipt_get_target(e);
Dmitry Mishin27229712006-04-01 02:25:19 -08001620 target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001621 xt_compat_target_from_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001622
1623 de->next_offset = e->next_offset - (origsize - *size);
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001624 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001625 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1626 newinfo->hook_entry[h] -= origsize - *size;
1627 if ((unsigned char *)de - base < newinfo->underflow[h])
1628 newinfo->underflow[h] -= origsize - *size;
1629 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001630 return ret;
1631}
Dmitry Mishin27229712006-04-01 02:25:19 -08001632
Denys Vlasenko022748a2008-01-14 23:44:05 -08001633static int
Jan Engelhardt05595182010-02-24 18:33:43 +01001634compat_check_entry(struct ipt_entry *e, struct net *net, const char *name)
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001635{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001636 struct xt_entry_match *ematch;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001637 struct xt_mtchk_param mtpar;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001638 unsigned int j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001639 int ret = 0;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001640
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001641 j = 0;
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001642 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001643 mtpar.table = name;
1644 mtpar.entryinfo = &e->ip;
1645 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +02001646 mtpar.family = NFPROTO_IPV4;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001647 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001648 ret = check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001649 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001650 goto cleanup_matches;
1651 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001652 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001653
Patrick McHardyadd67462010-02-03 13:45:12 +01001654 ret = check_target(e, net, name);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001655 if (ret)
1656 goto cleanup_matches;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001657 return 0;
1658
1659 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001660 xt_ematch_foreach(ematch, e) {
1661 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001662 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001663 cleanup_match(ematch, net);
1664 }
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001665 return ret;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001666}
1667
Dmitry Mishin27229712006-04-01 02:25:19 -08001668static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001669translate_compat_table(struct net *net,
1670 const char *name,
Patrick McHardy4b478242007-12-17 21:46:15 -08001671 unsigned int valid_hooks,
1672 struct xt_table_info **pinfo,
1673 void **pentry0,
1674 unsigned int total_size,
1675 unsigned int number,
1676 unsigned int *hook_entries,
1677 unsigned int *underflows)
Dmitry Mishin27229712006-04-01 02:25:19 -08001678{
Dmitry Mishin920b8682006-10-30 15:14:27 -08001679 unsigned int i, j;
Dmitry Mishin27229712006-04-01 02:25:19 -08001680 struct xt_table_info *newinfo, *info;
1681 void *pos, *entry0, *entry1;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001682 struct compat_ipt_entry *iter0;
1683 struct ipt_entry *iter1;
Dmitry Mishin27229712006-04-01 02:25:19 -08001684 unsigned int size;
Jan Engelhardt05595182010-02-24 18:33:43 +01001685 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001686
1687 info = *pinfo;
1688 entry0 = *pentry0;
1689 size = total_size;
1690 info->number = number;
1691
1692 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001693 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001694 info->hook_entry[i] = 0xFFFFFFFF;
1695 info->underflow[i] = 0xFFFFFFFF;
1696 }
1697
1698 duprintf("translate_compat_table: size %u\n", info->size);
Dmitry Mishin920b8682006-10-30 15:14:27 -08001699 j = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001700 xt_compat_lock(AF_INET);
1701 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001702 xt_entry_foreach(iter0, entry0, total_size) {
1703 ret = check_compat_entry_size_and_hooks(iter0, info, &size,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001704 entry0,
1705 entry0 + total_size,
1706 hook_entries,
1707 underflows,
1708 name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001709 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001710 goto out_unlock;
1711 ++j;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001712 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001713
1714 ret = -EINVAL;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001715 if (j != number) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001716 duprintf("translate_compat_table: %u not %u entries\n",
Dmitry Mishin920b8682006-10-30 15:14:27 -08001717 j, number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001718 goto out_unlock;
1719 }
1720
1721 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001722 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001723 /* Only hooks which are valid */
1724 if (!(valid_hooks & (1 << i)))
1725 continue;
1726 if (info->hook_entry[i] == 0xFFFFFFFF) {
1727 duprintf("Invalid hook entry %u %u\n",
1728 i, hook_entries[i]);
1729 goto out_unlock;
1730 }
1731 if (info->underflow[i] == 0xFFFFFFFF) {
1732 duprintf("Invalid underflow %u %u\n",
1733 i, underflows[i]);
1734 goto out_unlock;
1735 }
1736 }
1737
1738 ret = -ENOMEM;
1739 newinfo = xt_alloc_table_info(size);
1740 if (!newinfo)
1741 goto out_unlock;
1742
1743 newinfo->number = number;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001744 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001745 newinfo->hook_entry[i] = info->hook_entry[i];
1746 newinfo->underflow[i] = info->underflow[i];
1747 }
1748 entry1 = newinfo->entries[raw_smp_processor_id()];
1749 pos = entry1;
Patrick McHardy4b478242007-12-17 21:46:15 -08001750 size = total_size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001751 xt_entry_foreach(iter0, entry0, total_size) {
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001752 ret = compat_copy_entry_from_user(iter0, &pos, &size,
1753 name, newinfo, entry1);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001754 if (ret != 0)
1755 break;
1756 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001757 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001758 xt_compat_unlock(AF_INET);
1759 if (ret)
1760 goto free_newinfo;
1761
1762 ret = -ELOOP;
1763 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1764 goto free_newinfo;
1765
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001766 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001767 xt_entry_foreach(iter1, entry1, newinfo->size) {
Jan Engelhardt05595182010-02-24 18:33:43 +01001768 ret = compat_check_entry(iter1, net, name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001769 if (ret != 0)
1770 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001771 ++i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001772 }
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001773 if (ret) {
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001774 /*
1775 * The first i matches need cleanup_entry (calls ->destroy)
1776 * because they had called ->check already. The other j-i
1777 * entries need only release.
1778 */
1779 int skip = i;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001780 j -= i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001781 xt_entry_foreach(iter0, entry0, newinfo->size) {
1782 if (skip-- > 0)
1783 continue;
Jan Engelhardt05595182010-02-24 18:33:43 +01001784 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001785 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001786 compat_release_entry(iter0);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001787 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001788 xt_entry_foreach(iter1, entry1, newinfo->size) {
1789 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001790 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001791 cleanup_entry(iter1, net);
1792 }
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001793 xt_free_table_info(newinfo);
1794 return ret;
1795 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001796
Dmitry Mishin27229712006-04-01 02:25:19 -08001797 /* And one copy for every other CPU */
Andrew Mortonfb1bb342006-06-25 05:46:43 -07001798 for_each_possible_cpu(i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001799 if (newinfo->entries[i] && newinfo->entries[i] != entry1)
1800 memcpy(newinfo->entries[i], entry1, newinfo->size);
1801
1802 *pinfo = newinfo;
1803 *pentry0 = entry1;
1804 xt_free_table_info(info);
1805 return 0;
1806
1807free_newinfo:
1808 xt_free_table_info(newinfo);
1809out:
Jan Engelhardt05595182010-02-24 18:33:43 +01001810 xt_entry_foreach(iter0, entry0, total_size) {
1811 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001812 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001813 compat_release_entry(iter0);
1814 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001815 return ret;
1816out_unlock:
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001817 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001818 xt_compat_unlock(AF_INET);
1819 goto out;
1820}
1821
1822static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001823compat_do_replace(struct net *net, void __user *user, unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001824{
1825 int ret;
1826 struct compat_ipt_replace tmp;
1827 struct xt_table_info *newinfo;
1828 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001829 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001830
1831 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1832 return -EFAULT;
1833
Dmitry Mishin27229712006-04-01 02:25:19 -08001834 /* overflow check */
Eric Dumazet259d4e42007-12-04 23:24:56 -08001835 if (tmp.size >= INT_MAX / num_possible_cpus())
Dmitry Mishin27229712006-04-01 02:25:19 -08001836 return -ENOMEM;
1837 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1838 return -ENOMEM;
1839
1840 newinfo = xt_alloc_table_info(tmp.size);
1841 if (!newinfo)
1842 return -ENOMEM;
1843
Patrick McHardy9c547952007-12-17 21:52:00 -08001844 /* choose the copy that is on our node/cpu */
Dmitry Mishin27229712006-04-01 02:25:19 -08001845 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1846 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1847 tmp.size) != 0) {
1848 ret = -EFAULT;
1849 goto free_newinfo;
1850 }
1851
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001852 ret = translate_compat_table(net, tmp.name, tmp.valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001853 &newinfo, &loc_cpu_entry, tmp.size,
1854 tmp.num_entries, tmp.hook_entry,
1855 tmp.underflow);
Dmitry Mishin27229712006-04-01 02:25:19 -08001856 if (ret != 0)
1857 goto free_newinfo;
1858
1859 duprintf("compat_do_replace: Translated table\n");
1860
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001861 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001862 tmp.num_counters, compat_ptr(tmp.counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001863 if (ret)
1864 goto free_newinfo_untrans;
1865 return 0;
1866
1867 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001868 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001869 cleanup_entry(iter, net);
Dmitry Mishin27229712006-04-01 02:25:19 -08001870 free_newinfo:
1871 xt_free_table_info(newinfo);
1872 return ret;
1873}
1874
1875static int
1876compat_do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user,
Patrick McHardy4b478242007-12-17 21:46:15 -08001877 unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001878{
1879 int ret;
1880
1881 if (!capable(CAP_NET_ADMIN))
1882 return -EPERM;
1883
1884 switch (cmd) {
1885 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001886 ret = compat_do_replace(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001887 break;
1888
1889 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001890 ret = do_add_counters(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001891 break;
1892
1893 default:
1894 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1895 ret = -EINVAL;
1896 }
1897
1898 return ret;
1899}
1900
Patrick McHardy4b478242007-12-17 21:46:15 -08001901struct compat_ipt_get_entries {
Dmitry Mishin27229712006-04-01 02:25:19 -08001902 char name[IPT_TABLE_MAXNAMELEN];
1903 compat_uint_t size;
1904 struct compat_ipt_entry entrytable[0];
1905};
1906
Patrick McHardy4b478242007-12-17 21:46:15 -08001907static int
1908compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1909 void __user *userptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001910{
Dmitry Mishin27229712006-04-01 02:25:19 -08001911 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001912 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001913 void __user *pos;
1914 unsigned int size;
1915 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001916 const void *loc_cpu_entry;
Patrick McHardya18aa312007-12-12 10:35:16 -08001917 unsigned int i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001918 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001919
1920 counters = alloc_counters(table);
1921 if (IS_ERR(counters))
1922 return PTR_ERR(counters);
1923
1924 /* choose the copy that is on our node/cpu, ...
1925 * This choice is lazy (because current thread is
1926 * allowed to migrate to another cpu)
1927 */
1928 loc_cpu_entry = private->entries[raw_smp_processor_id()];
1929 pos = userptr;
1930 size = total_size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001931 xt_entry_foreach(iter, loc_cpu_entry, total_size) {
1932 ret = compat_copy_entry_to_user(iter, &pos,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001933 &size, counters, i++);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001934 if (ret != 0)
1935 break;
1936 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001937
Dmitry Mishin27229712006-04-01 02:25:19 -08001938 vfree(counters);
1939 return ret;
1940}
1941
1942static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001943compat_get_entries(struct net *net, struct compat_ipt_get_entries __user *uptr,
1944 int *len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001945{
1946 int ret;
1947 struct compat_ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001948 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001949
Dmitry Mishin27229712006-04-01 02:25:19 -08001950 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001951 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001952 return -EINVAL;
1953 }
1954
1955 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1956 return -EFAULT;
1957
1958 if (*len != sizeof(struct compat_ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001959 duprintf("compat_get_entries: %u != %zu\n",
1960 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001961 return -EINVAL;
1962 }
1963
1964 xt_compat_lock(AF_INET);
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001965 t = xt_find_table_lock(net, AF_INET, get.name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001966 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001967 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001968 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08001969 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001970 ret = compat_table_info(private, &info);
1971 if (!ret && get.size == info.size) {
1972 ret = compat_copy_entries_to_user(private->size,
Patrick McHardy4b478242007-12-17 21:46:15 -08001973 t, uptr->entrytable);
Dmitry Mishin27229712006-04-01 02:25:19 -08001974 } else if (!ret) {
1975 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001976 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001977 ret = -EAGAIN;
Dmitry Mishin27229712006-04-01 02:25:19 -08001978 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001979 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001980 module_put(t->me);
1981 xt_table_unlock(t);
1982 } else
1983 ret = t ? PTR_ERR(t) : -ENOENT;
1984
1985 xt_compat_unlock(AF_INET);
1986 return ret;
1987}
1988
Patrick McHardy79030ed2006-09-20 12:05:08 -07001989static int do_ipt_get_ctl(struct sock *, int, void __user *, int *);
1990
Dmitry Mishin27229712006-04-01 02:25:19 -08001991static int
1992compat_do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1993{
1994 int ret;
1995
Björn Steinbrink82fac052006-10-20 00:21:10 -07001996 if (!capable(CAP_NET_ADMIN))
1997 return -EPERM;
1998
Dmitry Mishin27229712006-04-01 02:25:19 -08001999 switch (cmd) {
2000 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002001 ret = get_info(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08002002 break;
2003 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002004 ret = compat_get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08002005 break;
2006 default:
Patrick McHardy79030ed2006-09-20 12:05:08 -07002007 ret = do_ipt_get_ctl(sk, cmd, user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08002008 }
2009 return ret;
2010}
2011#endif
2012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013static int
Patrick McHardy9c547952007-12-17 21:52:00 -08002014do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015{
2016 int ret;
2017
2018 if (!capable(CAP_NET_ADMIN))
2019 return -EPERM;
2020
2021 switch (cmd) {
2022 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002023 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 break;
2025
2026 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002027 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 break;
2029
2030 default:
2031 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
2032 ret = -EINVAL;
2033 }
2034
2035 return ret;
2036}
2037
2038static int
2039do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2040{
2041 int ret;
2042
2043 if (!capable(CAP_NET_ADMIN))
2044 return -EPERM;
2045
2046 switch (cmd) {
Dmitry Mishin27229712006-04-01 02:25:19 -08002047 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002048 ret = get_info(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 break;
Dmitry Mishin27229712006-04-01 02:25:19 -08002050
2051 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002052 ret = get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08002053 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
2055 case IPT_SO_GET_REVISION_MATCH:
2056 case IPT_SO_GET_REVISION_TARGET: {
2057 struct ipt_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002058 int target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
2060 if (*len != sizeof(rev)) {
2061 ret = -EINVAL;
2062 break;
2063 }
2064 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2065 ret = -EFAULT;
2066 break;
2067 }
2068
2069 if (cmd == IPT_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08002070 target = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08002072 target = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
Harald Welte2e4e6a12006-01-12 13:30:04 -08002074 try_then_request_module(xt_find_revision(AF_INET, rev.name,
2075 rev.revision,
2076 target, &ret),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 "ipt_%s", rev.name);
2078 break;
2079 }
2080
2081 default:
2082 duprintf("do_ipt_get_ctl: unknown request %i\n", cmd);
2083 ret = -EINVAL;
2084 }
2085
2086 return ret;
2087}
2088
Jan Engelhardt35aad0f2009-08-24 14:56:30 +02002089struct xt_table *ipt_register_table(struct net *net,
2090 const struct xt_table *table,
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002091 const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092{
2093 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002094 struct xt_table_info *newinfo;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +02002095 struct xt_table_info bootstrap = {0};
Eric Dumazet31836062005-12-13 23:13:48 -08002096 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08002097 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Harald Welte2e4e6a12006-01-12 13:30:04 -08002099 newinfo = xt_alloc_table_info(repl->size);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002100 if (!newinfo) {
2101 ret = -ENOMEM;
2102 goto out;
2103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Patrick McHardy9c547952007-12-17 21:52:00 -08002105 /* choose the copy on our node/cpu, but dont care about preemption */
Eric Dumazet31836062005-12-13 23:13:48 -08002106 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
2107 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
Jan Engelhardt0f234212010-02-24 18:36:04 +01002109 ret = translate_table(net, newinfo, loc_cpu_entry, repl);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002110 if (ret != 0)
2111 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002113 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08002114 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002115 ret = PTR_ERR(new_table);
2116 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 }
2118
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002119 return new_table;
2120
2121out_free:
2122 xt_free_table_info(newinfo);
2123out:
2124 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125}
2126
Alexey Dobriyanf54e9362010-01-18 08:25:47 +01002127void ipt_unregister_table(struct net *net, struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
Harald Welte2e4e6a12006-01-12 13:30:04 -08002129 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08002130 void *loc_cpu_entry;
Alexey Dobriyandf200962008-01-31 04:05:34 -08002131 struct module *table_owner = table->me;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01002132 struct ipt_entry *iter;
Eric Dumazet31836062005-12-13 23:13:48 -08002133
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002134 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
2136 /* Decrease module usage counts and free resources */
Harald Welte2e4e6a12006-01-12 13:30:04 -08002137 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01002138 xt_entry_foreach(iter, loc_cpu_entry, private->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01002139 cleanup_entry(iter, net);
Alexey Dobriyandf200962008-01-31 04:05:34 -08002140 if (private->number > private->initial_entries)
2141 module_put(table_owner);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002142 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143}
2144
2145/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002146static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147icmp_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2148 u_int8_t type, u_int8_t code,
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002149 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150{
Patrick McHardy9c547952007-12-17 21:52:00 -08002151 return ((test_type == 0xFF) ||
2152 (type == test_type && code >= min_code && code <= max_code))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 ^ invert;
2154}
2155
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002156static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002157icmp_match(const struct sk_buff *skb, const struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158{
Jan Engelhardt5452e422008-04-14 11:15:35 +02002159 const struct icmphdr *ic;
2160 struct icmphdr _icmph;
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002161 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
2163 /* Must not be a fragment. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002164 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002165 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002167 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 if (ic == NULL) {
2169 /* We've been asked to examine this packet, and we
2170 * can't. Hence, no choice but to drop.
2171 */
2172 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002173 *par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002174 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 }
2176
2177 return icmp_type_code_match(icmpinfo->type,
2178 icmpinfo->code[0],
2179 icmpinfo->code[1],
2180 ic->type, ic->code,
2181 !!(icmpinfo->invflags&IPT_ICMP_INV));
2182}
2183
Jan Engelhardtb0f38452010-03-19 17:16:42 +01002184static int icmp_checkentry(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002186 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002188 /* Must specify no unknown invflags */
Jan Engelhardtbd414ee2010-03-23 16:35:56 +01002189 return (icmpinfo->invflags & ~IPT_ICMP_INV) ? -EINVAL : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190}
2191
2192/* The built-in targets: standard (NULL) and error. */
Patrick McHardy9f15c532007-07-07 22:22:02 -07002193static struct xt_target ipt_standard_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 .name = IPT_STANDARD_TARGET,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002195 .targetsize = sizeof(int),
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002196 .family = NFPROTO_IPV4,
Dmitry Mishin27229712006-04-01 02:25:19 -08002197#ifdef CONFIG_COMPAT
Patrick McHardy9fa492c2006-09-20 12:05:37 -07002198 .compatsize = sizeof(compat_int_t),
2199 .compat_from_user = compat_standard_from_user,
2200 .compat_to_user = compat_standard_to_user,
Dmitry Mishin27229712006-04-01 02:25:19 -08002201#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202};
2203
Patrick McHardy9f15c532007-07-07 22:22:02 -07002204static struct xt_target ipt_error_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 .name = IPT_ERROR_TARGET,
2206 .target = ipt_error,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002207 .targetsize = IPT_FUNCTION_MAXNAMELEN,
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002208 .family = NFPROTO_IPV4,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209};
2210
2211static struct nf_sockopt_ops ipt_sockopts = {
2212 .pf = PF_INET,
2213 .set_optmin = IPT_BASE_CTL,
2214 .set_optmax = IPT_SO_SET_MAX+1,
2215 .set = do_ipt_set_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002216#ifdef CONFIG_COMPAT
2217 .compat_set = compat_do_ipt_set_ctl,
2218#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 .get_optmin = IPT_BASE_CTL,
2220 .get_optmax = IPT_SO_GET_MAX+1,
2221 .get = do_ipt_get_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002222#ifdef CONFIG_COMPAT
2223 .compat_get = compat_do_ipt_get_ctl,
2224#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002225 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226};
2227
Patrick McHardy9f15c532007-07-07 22:22:02 -07002228static struct xt_match icmp_matchstruct __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 .name = "icmp",
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002230 .match = icmp_match,
2231 .matchsize = sizeof(struct ipt_icmp),
Patrick McHardy9c547952007-12-17 21:52:00 -08002232 .checkentry = icmp_checkentry,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002233 .proto = IPPROTO_ICMP,
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002234 .family = NFPROTO_IPV4,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235};
2236
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002237static int __net_init ip_tables_net_init(struct net *net)
2238{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002239 return xt_proto_init(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002240}
2241
2242static void __net_exit ip_tables_net_exit(struct net *net)
2243{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002244 xt_proto_fini(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002245}
2246
2247static struct pernet_operations ip_tables_net_ops = {
2248 .init = ip_tables_net_init,
2249 .exit = ip_tables_net_exit,
2250};
2251
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002252static int __init ip_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253{
2254 int ret;
2255
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002256 ret = register_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002257 if (ret < 0)
2258 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002259
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 /* Noone else will be downing sem now, so we won't sleep */
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002261 ret = xt_register_target(&ipt_standard_target);
2262 if (ret < 0)
2263 goto err2;
2264 ret = xt_register_target(&ipt_error_target);
2265 if (ret < 0)
2266 goto err3;
2267 ret = xt_register_match(&icmp_matchstruct);
2268 if (ret < 0)
2269 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
2271 /* Register setsockopt */
2272 ret = nf_register_sockopt(&ipt_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002273 if (ret < 0)
2274 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01002276 pr_info("(C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002278
2279err5:
2280 xt_unregister_match(&icmp_matchstruct);
2281err4:
2282 xt_unregister_target(&ipt_error_target);
2283err3:
2284 xt_unregister_target(&ipt_standard_target);
2285err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002286 unregister_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002287err1:
2288 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289}
2290
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002291static void __exit ip_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292{
2293 nf_unregister_sockopt(&ipt_sockopts);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002294
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002295 xt_unregister_match(&icmp_matchstruct);
2296 xt_unregister_target(&ipt_error_target);
2297 xt_unregister_target(&ipt_standard_target);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002298
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002299 unregister_pernet_subsys(&ip_tables_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300}
2301
2302EXPORT_SYMBOL(ipt_register_table);
2303EXPORT_SYMBOL(ipt_unregister_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304EXPORT_SYMBOL(ipt_do_table);
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002305module_init(ip_tables_init);
2306module_exit(ip_tables_fini);