blob: 6e7b7e8b80b1430de9296709c4f9dcc24b34c233 [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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/cache.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080012#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/skbuff.h>
14#include <linux/kmod.h>
15#include <linux/vmalloc.h>
16#include <linux/netdevice.h>
17#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/icmp.h>
19#include <net/ip.h>
Dmitry Mishin27229712006-04-01 02:25:19 -080020#include <net/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/uaccess.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -080022#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/proc_fs.h>
24#include <linux/err.h>
David S. Millerc8923c62005-10-13 14:41:23 -070025#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Harald Welte2e4e6a12006-01-12 13:30:04 -080027#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/netfilter_ipv4/ip_tables.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080029#include <net/netfilter/nf_log.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31MODULE_LICENSE("GPL");
32MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
33MODULE_DESCRIPTION("IPv4 packet filter");
34
35/*#define DEBUG_IP_FIREWALL*/
36/*#define DEBUG_ALLOW_ALL*/ /* Useful for remote debugging */
37/*#define DEBUG_IP_FIREWALL_USER*/
38
39#ifdef DEBUG_IP_FIREWALL
40#define dprintf(format, args...) printk(format , ## args)
41#else
42#define dprintf(format, args...)
43#endif
44
45#ifdef DEBUG_IP_FIREWALL_USER
46#define duprintf(format, args...) printk(format , ## args)
47#else
48#define duprintf(format, args...)
49#endif
50
51#ifdef CONFIG_NETFILTER_DEBUG
52#define IP_NF_ASSERT(x) \
53do { \
54 if (!(x)) \
55 printk("IP_NF_ASSERT: %s:%s:%u\n", \
Harvey Harrison0dc47872008-03-05 20:47:47 -080056 __func__, __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070057} while(0)
58#else
59#define IP_NF_ASSERT(x)
60#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#if 0
63/* All the better to debug you with... */
64#define static
65#define inline
66#endif
67
68/*
69 We keep a set of rules for each CPU, so we can avoid write-locking
70 them in the softirq when updating the counters and therefore
71 only need to read-lock in the softirq; doing a write_lock_bh() in user
72 context stops packets coming through and allows user context to read
73 the counters or update the rules.
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 Hence the start of any table is given by get_table() below. */
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/* Returns whether matches rule or not. */
Denys Vlasenko022748a2008-01-14 23:44:05 -080078/* Performance critical - called for every packet */
Patrick McHardy9c547952007-12-17 21:52:00 -080079static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -070080ip_packet_match(const struct iphdr *ip,
81 const char *indev,
82 const char *outdev,
83 const struct ipt_ip *ipinfo,
84 int isfrag)
85{
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 unsigned long ret;
87
Jan Engelhardte79ec502007-12-17 22:44:06 -080088#define FWINV(bool, invflg) ((bool) ^ !!(ipinfo->invflags & (invflg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 if (FWINV((ip->saddr&ipinfo->smsk.s_addr) != ipinfo->src.s_addr,
91 IPT_INV_SRCIP)
92 || FWINV((ip->daddr&ipinfo->dmsk.s_addr) != ipinfo->dst.s_addr,
93 IPT_INV_DSTIP)) {
94 dprintf("Source or dest mismatch.\n");
95
Harvey Harrisoncffee382008-10-31 00:53:08 -070096 dprintf("SRC: %pI4. Mask: %pI4. Target: %pI4.%s\n",
97 &ip->saddr, &ipinfo->smsk.s_addr, &ipinfo->src.s_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 ipinfo->invflags & IPT_INV_SRCIP ? " (INV)" : "");
Harvey Harrisoncffee382008-10-31 00:53:08 -070099 dprintf("DST: %pI4 Mask: %pI4 Target: %pI4.%s\n",
100 &ip->daddr, &ipinfo->dmsk.s_addr, &ipinfo->dst.s_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 ipinfo->invflags & IPT_INV_DSTIP ? " (INV)" : "");
Patrick McHardy9c547952007-12-17 21:52:00 -0800102 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 }
104
Eric Dumazetb8dfe492009-03-25 17:31:52 +0100105 ret = ifname_compare_aligned(indev, ipinfo->iniface, ipinfo->iniface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 if (FWINV(ret != 0, IPT_INV_VIA_IN)) {
108 dprintf("VIA in mismatch (%s vs %s).%s\n",
109 indev, ipinfo->iniface,
110 ipinfo->invflags&IPT_INV_VIA_IN ?" (INV)":"");
Patrick McHardy9c547952007-12-17 21:52:00 -0800111 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
113
Eric Dumazetb8dfe492009-03-25 17:31:52 +0100114 ret = ifname_compare_aligned(outdev, ipinfo->outiface, ipinfo->outiface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 if (FWINV(ret != 0, IPT_INV_VIA_OUT)) {
117 dprintf("VIA out mismatch (%s vs %s).%s\n",
118 outdev, ipinfo->outiface,
119 ipinfo->invflags&IPT_INV_VIA_OUT ?" (INV)":"");
Patrick McHardy9c547952007-12-17 21:52:00 -0800120 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 }
122
123 /* Check specific protocol */
124 if (ipinfo->proto
125 && FWINV(ip->protocol != ipinfo->proto, IPT_INV_PROTO)) {
126 dprintf("Packet protocol %hi does not match %hi.%s\n",
127 ip->protocol, ipinfo->proto,
128 ipinfo->invflags&IPT_INV_PROTO ? " (INV)":"");
Patrick McHardy9c547952007-12-17 21:52:00 -0800129 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
131
132 /* If we have a fragment rule but the packet is not a fragment
133 * then we return zero */
134 if (FWINV((ipinfo->flags&IPT_F_FRAG) && !isfrag, IPT_INV_FRAG)) {
135 dprintf("Fragment rule but not fragment.%s\n",
136 ipinfo->invflags & IPT_INV_FRAG ? " (INV)" : "");
Patrick McHardy9c547952007-12-17 21:52:00 -0800137 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139
Patrick McHardy9c547952007-12-17 21:52:00 -0800140 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
Denys Vlasenko022748a2008-01-14 23:44:05 -0800143static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144ip_checkentry(const struct ipt_ip *ip)
145{
146 if (ip->flags & ~IPT_F_MASK) {
147 duprintf("Unknown flag bits set: %08X\n",
148 ip->flags & ~IPT_F_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700149 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151 if (ip->invflags & ~IPT_INV_MASK) {
152 duprintf("Unknown invflag bits set: %08X\n",
153 ip->invflags & ~IPT_INV_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700154 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700156 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159static unsigned int
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200160ipt_error(struct sk_buff *skb, const struct xt_target_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 if (net_ratelimit())
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200163 printk("ip_tables: error: `%s'\n",
164 (const char *)par->targinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 return NF_DROP;
167}
168
Denys Vlasenko022748a2008-01-14 23:44:05 -0800169/* Performance critical - called for every packet */
170static inline bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200171do_match(struct ipt_entry_match *m, const struct sk_buff *skb,
172 struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200174 par->match = m->u.kernel.match;
175 par->matchinfo = m->data;
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 /* Stop iteration if it doesn't match */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200178 if (!m->u.kernel.match->match(skb, par))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700179 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 else
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700181 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
Denys Vlasenko022748a2008-01-14 23:44:05 -0800184/* Performance critical */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185static inline struct ipt_entry *
186get_entry(void *base, unsigned int offset)
187{
188 return (struct ipt_entry *)(base + offset);
189}
190
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700191/* All zeroes == unconditional rule. */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800192/* Mildly perf critical (only if packet tracing is on) */
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200193static inline bool unconditional(const struct ipt_ip *ip)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700194{
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200195 static const struct ipt_ip uncond;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700196
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200197 return memcmp(ip, &uncond, sizeof(uncond)) == 0;
Jan Engelhardte79ec502007-12-17 22:44:06 -0800198#undef FWINV
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700199}
200
201#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
202 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
Denys Vlasenko022748a2008-01-14 23:44:05 -0800203static const char *const hooknames[] = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800204 [NF_INET_PRE_ROUTING] = "PREROUTING",
205 [NF_INET_LOCAL_IN] = "INPUT",
Patrick McHardy9c547952007-12-17 21:52:00 -0800206 [NF_INET_FORWARD] = "FORWARD",
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800207 [NF_INET_LOCAL_OUT] = "OUTPUT",
208 [NF_INET_POST_ROUTING] = "POSTROUTING",
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700209};
210
211enum nf_ip_trace_comments {
212 NF_IP_TRACE_COMMENT_RULE,
213 NF_IP_TRACE_COMMENT_RETURN,
214 NF_IP_TRACE_COMMENT_POLICY,
215};
216
Denys Vlasenko022748a2008-01-14 23:44:05 -0800217static const char *const comments[] = {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700218 [NF_IP_TRACE_COMMENT_RULE] = "rule",
219 [NF_IP_TRACE_COMMENT_RETURN] = "return",
220 [NF_IP_TRACE_COMMENT_POLICY] = "policy",
221};
222
223static struct nf_loginfo trace_loginfo = {
224 .type = NF_LOG_TYPE_LOG,
225 .u = {
226 .log = {
227 .level = 4,
228 .logflags = NF_LOG_MASK,
229 },
230 },
231};
232
Denys Vlasenko022748a2008-01-14 23:44:05 -0800233/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700234static inline int
235get_chainname_rulenum(struct ipt_entry *s, struct ipt_entry *e,
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200236 const char *hookname, const char **chainname,
237 const char **comment, unsigned int *rulenum)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700238{
239 struct ipt_standard_target *t = (void *)ipt_get_target(s);
240
241 if (strcmp(t->target.u.kernel.target->name, IPT_ERROR_TARGET) == 0) {
242 /* Head of user chain: ERROR target with chainname */
243 *chainname = t->target.data;
244 (*rulenum) = 0;
245 } else if (s == e) {
246 (*rulenum)++;
247
248 if (s->target_offset == sizeof(struct ipt_entry)
249 && strcmp(t->target.u.kernel.target->name,
250 IPT_STANDARD_TARGET) == 0
251 && t->verdict < 0
252 && unconditional(&s->ip)) {
253 /* Tail of chains: STANDARD target (return/policy) */
254 *comment = *chainname == hookname
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200255 ? comments[NF_IP_TRACE_COMMENT_POLICY]
256 : comments[NF_IP_TRACE_COMMENT_RETURN];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700257 }
258 return 1;
259 } else
260 (*rulenum)++;
261
262 return 0;
263}
264
265static void trace_packet(struct sk_buff *skb,
266 unsigned int hook,
267 const struct net_device *in,
268 const struct net_device *out,
Jan Engelhardtecb6f852008-01-31 03:54:47 -0800269 const char *tablename,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700270 struct xt_table_info *private,
271 struct ipt_entry *e)
272{
273 void *table_base;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200274 const struct ipt_entry *root;
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200275 const char *hookname, *chainname, *comment;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700276 unsigned int rulenum = 0;
277
Jan Engelhardtccf5bd82009-04-15 20:27:03 +0200278 table_base = private->entries[smp_processor_id()];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700279 root = get_entry(table_base, private->hook_entry[hook]);
280
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200281 hookname = chainname = hooknames[hook];
282 comment = comments[NF_IP_TRACE_COMMENT_RULE];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700283
284 IPT_ENTRY_ITERATE(root,
285 private->size - private->hook_entry[hook],
286 get_chainname_rulenum,
287 e, hookname, &chainname, &comment, &rulenum);
288
289 nf_log_packet(AF_INET, hook, skb, in, out, &trace_loginfo,
290 "TRACE: %s:%s:%s:%u ",
291 tablename, chainname, comment, rulenum);
292}
293#endif
294
Jan Engelhardt98e86402009-04-15 21:06:05 +0200295static inline __pure
296struct ipt_entry *ipt_next_entry(const struct ipt_entry *entry)
297{
298 return (void *)entry + entry->next_offset;
299}
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301/* Returns one of the generic firewall policies, like NF_ACCEPT. */
302unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700303ipt_do_table(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 unsigned int hook,
305 const struct net_device *in,
306 const struct net_device *out,
Jan Engelhardte60a13e2007-02-07 15:12:33 -0800307 struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Jan Engelhardtbb70dfa2009-04-15 21:40:13 +0200309#define tb_comefrom ((struct ipt_entry *)table_base)->comefrom
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
Jan Engelhardt5452e422008-04-14 11:15:35 +0200312 const struct iphdr *ip;
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700313 bool hotdrop = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 /* Initializing verdict to NF_DROP keeps gcc happy. */
315 unsigned int verdict = NF_DROP;
316 const char *indev, *outdev;
317 void *table_base;
318 struct ipt_entry *e, *back;
Patrick McHardy83117312006-08-17 18:13:53 -0700319 struct xt_table_info *private;
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200320 struct xt_match_param mtpar;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200321 struct xt_target_param tgpar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 /* Initialization */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700324 ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 indev = in ? in->name : nulldevname;
326 outdev = out ? out->name : nulldevname;
327 /* We handle fragments by dealing with the first fragment as
328 * if it was a normal packet. All other fragments are treated
329 * normally, except that they will NEVER match rules that ask
330 * things we don't know, ie. tcp syn flag or ports). If the
331 * rule is also a fragment-specific rule, non-fragments won't
332 * match it. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200333 mtpar.fragoff = ntohs(ip->frag_off) & IP_OFFSET;
334 mtpar.thoff = ip_hdrlen(skb);
335 mtpar.hotdrop = &hotdrop;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200336 mtpar.in = tgpar.in = in;
337 mtpar.out = tgpar.out = out;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200338 mtpar.family = tgpar.family = NFPROTO_IPV4;
Evgeniy Polyakova5e78822009-06-04 16:54:42 +0200339 mtpar.hooknum = tgpar.hooknum = hook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 IP_NF_ASSERT(table->valid_hooks & (1 << hook));
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700342 xt_info_rdlock_bh();
343 private = table->private;
344 table_base = private->entries[smp_processor_id()];
Stephen Hemminger78454472009-02-20 10:35:32 +0100345
Harald Welte2e4e6a12006-01-12 13:30:04 -0800346 e = get_entry(table_base, private->hook_entry[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 /* For return from builtin chain */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800349 back = get_entry(table_base, private->underflow[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 do {
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200352 struct ipt_entry_target *t;
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 IP_NF_ASSERT(e);
355 IP_NF_ASSERT(back);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200356 if (!ip_packet_match(ip, indev, outdev,
Jan Engelhardt94522582009-04-15 21:31:32 +0200357 &e->ip, mtpar.fragoff) ||
358 IPT_MATCH_ITERATE(e, do_match, skb, &mtpar) != 0) {
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200359 e = ipt_next_entry(e);
360 continue;
361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200363 ADD_COUNTER(e->counters, ntohs(ip->tot_len), 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200365 t = ipt_get_target(e);
366 IP_NF_ASSERT(t->u.kernel.target);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700367
368#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
369 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200370 /* The packet is traced: log it */
371 if (unlikely(skb->nf_trace))
372 trace_packet(skb, hook, in, out,
373 table->name, private, e);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700374#endif
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200375 /* Standard target? */
376 if (!t->u.kernel.target->target) {
377 int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200379 v = ((struct ipt_standard_target *)t)->verdict;
380 if (v < 0) {
381 /* Pop from stack? */
382 if (v != IPT_RETURN) {
383 verdict = (unsigned)(-v) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 break;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200385 }
386 e = back;
387 back = get_entry(table_base, back->comefrom);
388 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200390 if (table_base + v != ipt_next_entry(e)
391 && !(e->ip.flags & IPT_F_GOTO)) {
392 /* Save old back ptr in next entry */
393 struct ipt_entry *next = ipt_next_entry(e);
394 next->comefrom = (void *)back - table_base;
395 /* set back pointer to next entry */
396 back = next;
397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200399 e = get_entry(table_base, v);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200400 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200402
403 /* Targets which reenter must return
404 abs. verdicts */
405 tgpar.target = t->u.kernel.target;
406 tgpar.targinfo = t->data;
Jan Engelhardtbb70dfa2009-04-15 21:40:13 +0200407
408
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200409#ifdef CONFIG_NETFILTER_DEBUG
Jan Engelhardtbb70dfa2009-04-15 21:40:13 +0200410 tb_comefrom = 0xeeeeeeec;
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200411#endif
412 verdict = t->u.kernel.target->target(skb, &tgpar);
413#ifdef CONFIG_NETFILTER_DEBUG
Patrick McHardy24992ea2009-06-12 01:53:09 +0200414 if (tb_comefrom != 0xeeeeeeec && verdict == IPT_CONTINUE) {
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200415 printk("Target %s reentered!\n",
416 t->u.kernel.target->name);
417 verdict = NF_DROP;
418 }
Jan Engelhardtbb70dfa2009-04-15 21:40:13 +0200419 tb_comefrom = 0x57acc001;
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200420#endif
421 /* Target might have changed stuff. */
422 ip = ip_hdr(skb);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200423 if (verdict == IPT_CONTINUE)
424 e = ipt_next_entry(e);
425 else
426 /* Verdict */
427 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 } while (!hotdrop);
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700429 xt_info_rdunlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431#ifdef DEBUG_ALLOW_ALL
432 return NF_ACCEPT;
433#else
434 if (hotdrop)
435 return NF_DROP;
436 else return verdict;
437#endif
Jan Engelhardtbb70dfa2009-04-15 21:40:13 +0200438
439#undef tb_comefrom
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442/* Figures out from what hook each rule can be called: returns 0 if
443 there are loops. Puts hook bitmask in comefrom. */
444static int
Harald Welte2e4e6a12006-01-12 13:30:04 -0800445mark_source_chains(struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800446 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 unsigned int hook;
449
450 /* No recursion; use packet counter to save back ptrs (reset
451 to 0 as we leave), and comefrom to save source hook bitmask */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800452 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 unsigned int pos = newinfo->hook_entry[hook];
Patrick McHardy9c547952007-12-17 21:52:00 -0800454 struct ipt_entry *e = (struct ipt_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 if (!(valid_hooks & (1 << hook)))
457 continue;
458
459 /* Set initial back pointer. */
460 e->counters.pcnt = pos;
461
462 for (;;) {
463 struct ipt_standard_target *t
464 = (void *)ipt_get_target(e);
Al Viroe1b4b9f2006-12-12 00:29:52 -0800465 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800467 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 printk("iptables: loop hook %u pos %u %08X.\n",
469 hook, pos, e->comefrom);
470 return 0;
471 }
Patrick McHardy9c547952007-12-17 21:52:00 -0800472 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 /* Unconditional return/END. */
Al Viroe1b4b9f2006-12-12 00:29:52 -0800475 if ((e->target_offset == sizeof(struct ipt_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 && (strcmp(t->target.u.user.name,
477 IPT_STANDARD_TARGET) == 0)
478 && t->verdict < 0
Al Viroe1b4b9f2006-12-12 00:29:52 -0800479 && unconditional(&e->ip)) || visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 unsigned int oldpos, size;
481
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100482 if ((strcmp(t->target.u.user.name,
483 IPT_STANDARD_TARGET) == 0) &&
484 t->verdict < -NF_MAX_VERDICT - 1) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800485 duprintf("mark_source_chains: bad "
486 "negative verdict (%i)\n",
487 t->verdict);
488 return 0;
489 }
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 /* Return: backtrack through the last
492 big jump. */
493 do {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800494 e->comefrom ^= (1<<NF_INET_NUMHOOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495#ifdef DEBUG_IP_FIREWALL_USER
496 if (e->comefrom
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800497 & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 duprintf("Back unset "
499 "on hook %u "
500 "rule %u\n",
501 hook, pos);
502 }
503#endif
504 oldpos = pos;
505 pos = e->counters.pcnt;
506 e->counters.pcnt = 0;
507
508 /* We're at the start. */
509 if (pos == oldpos)
510 goto next;
511
512 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800513 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 } while (oldpos == pos + e->next_offset);
515
516 /* Move along one */
517 size = e->next_offset;
518 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800519 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 e->counters.pcnt = pos;
521 pos += size;
522 } else {
523 int newpos = t->verdict;
524
525 if (strcmp(t->target.u.user.name,
526 IPT_STANDARD_TARGET) == 0
527 && newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800528 if (newpos > newinfo->size -
529 sizeof(struct ipt_entry)) {
530 duprintf("mark_source_chains: "
531 "bad verdict (%i)\n",
532 newpos);
533 return 0;
534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 /* This a jump; chase it. */
536 duprintf("Jump rule %u -> %u\n",
537 pos, newpos);
538 } else {
539 /* ... this is a fallthru */
540 newpos = pos + e->next_offset;
541 }
542 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800543 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 e->counters.pcnt = pos;
545 pos = newpos;
546 }
547 }
548 next:
549 duprintf("Finished chain %u\n", hook);
550 }
551 return 1;
552}
553
Denys Vlasenko022748a2008-01-14 23:44:05 -0800554static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555cleanup_match(struct ipt_entry_match *m, unsigned int *i)
556{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200557 struct xt_mtdtor_param par;
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (i && (*i)-- == 0)
560 return 1;
561
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200562 par.match = m->u.kernel.match;
563 par.matchinfo = m->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200564 par.family = NFPROTO_IPV4;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200565 if (par.match->destroy != NULL)
566 par.match->destroy(&par);
567 module_put(par.match->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return 0;
569}
570
Denys Vlasenko022748a2008-01-14 23:44:05 -0800571static int
Dmitry Mishina96be242006-12-12 00:29:26 -0800572check_entry(struct ipt_entry *e, const char *name)
573{
574 struct ipt_entry_target *t;
575
576 if (!ip_checkentry(&e->ip)) {
577 duprintf("ip_tables: ip check failed %p %s.\n", e, name);
578 return -EINVAL;
579 }
580
Patrick McHardy9c547952007-12-17 21:52:00 -0800581 if (e->target_offset + sizeof(struct ipt_entry_target) >
582 e->next_offset)
Dmitry Mishina96be242006-12-12 00:29:26 -0800583 return -EINVAL;
584
585 t = ipt_get_target(e);
586 if (e->target_offset + t->u.target_size > e->next_offset)
587 return -EINVAL;
588
589 return 0;
590}
591
Denys Vlasenko022748a2008-01-14 23:44:05 -0800592static int
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200593check_match(struct ipt_entry_match *m, struct xt_mtchk_param *par,
594 unsigned int *i)
Dmitry Mishina96be242006-12-12 00:29:26 -0800595{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200596 const struct ipt_ip *ip = par->entryinfo;
Dmitry Mishina96be242006-12-12 00:29:26 -0800597 int ret;
598
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200599 par->match = m->u.kernel.match;
600 par->matchinfo = m->data;
601
Jan Engelhardt916a9172008-10-08 11:35:20 +0200602 ret = xt_check_match(par, m->u.match_size - sizeof(*m),
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200603 ip->proto, ip->invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200604 if (ret < 0) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800605 duprintf("ip_tables: check failed for `%s'.\n",
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200606 par.match->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200607 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800608 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200609 ++*i;
610 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800611}
612
Denys Vlasenko022748a2008-01-14 23:44:05 -0800613static int
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200614find_check_match(struct ipt_entry_match *m, struct xt_mtchk_param *par,
Patrick McHardy4b478242007-12-17 21:46:15 -0800615 unsigned int *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800617 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800618 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Harald Welte2e4e6a12006-01-12 13:30:04 -0800620 match = try_then_request_module(xt_find_match(AF_INET, m->u.user.name,
Patrick McHardy9c547952007-12-17 21:52:00 -0800621 m->u.user.revision),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 "ipt_%s", m->u.user.name);
623 if (IS_ERR(match) || !match) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800624 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 return match ? PTR_ERR(match) : -ENOENT;
626 }
627 m->u.kernel.match = match;
628
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200629 ret = check_match(m, par, i);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800630 if (ret)
631 goto err;
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800634err:
635 module_put(m->u.kernel.match->me);
636 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637}
638
Denys Vlasenko022748a2008-01-14 23:44:05 -0800639static int check_target(struct ipt_entry *e, const char *name)
Dmitry Mishina96be242006-12-12 00:29:26 -0800640{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200641 struct ipt_entry_target *t = ipt_get_target(e);
642 struct xt_tgchk_param par = {
643 .table = name,
644 .entryinfo = e,
645 .target = t->u.kernel.target,
646 .targinfo = t->data,
647 .hook_mask = e->comefrom,
Jan Engelhardt916a9172008-10-08 11:35:20 +0200648 .family = NFPROTO_IPV4,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200649 };
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900650 int ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800651
Jan Engelhardt916a9172008-10-08 11:35:20 +0200652 ret = xt_check_target(&par, t->u.target_size - sizeof(*t),
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200653 e->ip.proto, e->ip.invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200654 if (ret < 0) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800655 duprintf("ip_tables: check failed for `%s'.\n",
656 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200657 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800658 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200659 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800660}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Denys Vlasenko022748a2008-01-14 23:44:05 -0800662static int
Dmitry Mishina96be242006-12-12 00:29:26 -0800663find_check_entry(struct ipt_entry *e, const char *name, unsigned int size,
Patrick McHardy4b478242007-12-17 21:46:15 -0800664 unsigned int *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666 struct ipt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800667 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 int ret;
669 unsigned int j;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200670 struct xt_mtchk_param mtpar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Dmitry Mishina96be242006-12-12 00:29:26 -0800672 ret = check_entry(e, name);
673 if (ret)
674 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 j = 0;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200677 mtpar.table = name;
678 mtpar.entryinfo = &e->ip;
679 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200680 mtpar.family = NFPROTO_IPV4;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200681 ret = IPT_MATCH_ITERATE(e, find_check_match, &mtpar, &j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (ret != 0)
683 goto cleanup_matches;
684
685 t = ipt_get_target(e);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800686 target = try_then_request_module(xt_find_target(AF_INET,
Patrick McHardy4b478242007-12-17 21:46:15 -0800687 t->u.user.name,
688 t->u.user.revision),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 "ipt_%s", t->u.user.name);
690 if (IS_ERR(target) || !target) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800691 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 ret = target ? PTR_ERR(target) : -ENOENT;
693 goto cleanup_matches;
694 }
695 t->u.kernel.target = target;
696
Dmitry Mishina96be242006-12-12 00:29:26 -0800697 ret = check_target(e, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800698 if (ret)
699 goto err;
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 (*i)++;
702 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800703 err:
704 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 cleanup_matches:
706 IPT_MATCH_ITERATE(e, cleanup_match, &j);
707 return ret;
708}
709
Denys Vlasenko022748a2008-01-14 23:44:05 -0800710static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711check_entry_size_and_hooks(struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800712 struct xt_table_info *newinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 unsigned char *base,
714 unsigned char *limit,
715 const unsigned int *hook_entries,
716 const unsigned int *underflows,
Jan Engelhardta7d51732009-07-18 14:52:58 +0200717 unsigned int valid_hooks,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 unsigned int *i)
719{
720 unsigned int h;
721
722 if ((unsigned long)e % __alignof__(struct ipt_entry) != 0
723 || (unsigned char *)e + sizeof(struct ipt_entry) >= limit) {
724 duprintf("Bad offset %p\n", e);
725 return -EINVAL;
726 }
727
728 if (e->next_offset
729 < sizeof(struct ipt_entry) + sizeof(struct ipt_entry_target)) {
730 duprintf("checking: element %p size %u\n",
731 e, e->next_offset);
732 return -EINVAL;
733 }
734
735 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800736 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Jan Engelhardta7d51732009-07-18 14:52:58 +0200737 if (!(valid_hooks & (1 << h)))
738 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if ((unsigned char *)e - base == hook_entries[h])
740 newinfo->hook_entry[h] = hook_entries[h];
741 if ((unsigned char *)e - base == underflows[h])
742 newinfo->underflow[h] = underflows[h];
743 }
744
745 /* FIXME: underflows must be unconditional, standard verdicts
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900746 < 0 (not IPT_RETURN). --RR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800749 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 e->comefrom = 0;
751
752 (*i)++;
753 return 0;
754}
755
Denys Vlasenko022748a2008-01-14 23:44:05 -0800756static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757cleanup_entry(struct ipt_entry *e, unsigned int *i)
758{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200759 struct xt_tgdtor_param par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 struct ipt_entry_target *t;
761
762 if (i && (*i)-- == 0)
763 return 1;
764
765 /* Cleanup all matches */
766 IPT_MATCH_ITERATE(e, cleanup_match, NULL);
767 t = ipt_get_target(e);
Jan Engelhardta2df1642008-10-08 11:35:19 +0200768
769 par.target = t->u.kernel.target;
770 par.targinfo = t->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200771 par.family = NFPROTO_IPV4;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200772 if (par.target->destroy != NULL)
773 par.target->destroy(&par);
774 module_put(par.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return 0;
776}
777
778/* Checks and translates the user-supplied table segment (held in
779 newinfo) */
780static int
781translate_table(const char *name,
782 unsigned int valid_hooks,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800783 struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800784 void *entry0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 unsigned int size,
786 unsigned int number,
787 const unsigned int *hook_entries,
788 const unsigned int *underflows)
789{
790 unsigned int i;
791 int ret;
792
793 newinfo->size = size;
794 newinfo->number = number;
795
796 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800797 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 newinfo->hook_entry[i] = 0xFFFFFFFF;
799 newinfo->underflow[i] = 0xFFFFFFFF;
800 }
801
802 duprintf("translate_table: size %u\n", newinfo->size);
803 i = 0;
804 /* Walk through entries, checking offsets. */
Eric Dumazet31836062005-12-13 23:13:48 -0800805 ret = IPT_ENTRY_ITERATE(entry0, newinfo->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 check_entry_size_and_hooks,
807 newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800808 entry0,
809 entry0 + size,
Jan Engelhardta7d51732009-07-18 14:52:58 +0200810 hook_entries, underflows, valid_hooks, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (ret != 0)
812 return ret;
813
814 if (i != number) {
815 duprintf("translate_table: %u not %u entries\n",
816 i, number);
817 return -EINVAL;
818 }
819
820 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800821 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 /* Only hooks which are valid */
823 if (!(valid_hooks & (1 << i)))
824 continue;
825 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
826 duprintf("Invalid hook entry %u %u\n",
827 i, hook_entries[i]);
828 return -EINVAL;
829 }
830 if (newinfo->underflow[i] == 0xFFFFFFFF) {
831 duprintf("Invalid underflow %u %u\n",
832 i, underflows[i]);
833 return -EINVAL;
834 }
835 }
836
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800837 if (!mark_source_chains(newinfo, valid_hooks, entry0))
838 return -ELOOP;
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 /* Finally, each sanity check must pass */
841 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -0800842 ret = IPT_ENTRY_ITERATE(entry0, newinfo->size,
Dmitry Mishina96be242006-12-12 00:29:26 -0800843 find_check_entry, name, size, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800845 if (ret != 0) {
846 IPT_ENTRY_ITERATE(entry0, newinfo->size,
847 cleanup_entry, &i);
848 return ret;
849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 /* And one copy for every other CPU */
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700852 for_each_possible_cpu(i) {
Eric Dumazet31836062005-12-13 23:13:48 -0800853 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
854 memcpy(newinfo->entries[i], entry0, newinfo->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
856
857 return ret;
858}
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860/* Gets counters. */
861static inline int
862add_entry_to_counter(const struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800863 struct xt_counters total[],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 unsigned int *i)
865{
866 ADD_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
867
868 (*i)++;
869 return 0;
870}
871
Eric Dumazet31836062005-12-13 23:13:48 -0800872static inline int
873set_entry_to_counter(const struct ipt_entry *e,
874 struct ipt_counters total[],
875 unsigned int *i)
876{
877 SET_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
878
879 (*i)++;
880 return 0;
881}
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800884get_counters(const struct xt_table_info *t,
885 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
887 unsigned int cpu;
888 unsigned int i;
Eric Dumazet31836062005-12-13 23:13:48 -0800889 unsigned int curcpu;
890
891 /* Instead of clearing (by a previous call to memset())
892 * the counters and using adds, we set the counters
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700893 * with data used by 'current' CPU.
894 *
895 * Bottom half has to be disabled to prevent deadlock
896 * if new softirq were to run and call ipt_do_table
Eric Dumazet31836062005-12-13 23:13:48 -0800897 */
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700898 local_bh_disable();
899 curcpu = smp_processor_id();
Eric Dumazet31836062005-12-13 23:13:48 -0800900
901 i = 0;
902 IPT_ENTRY_ITERATE(t->entries[curcpu],
903 t->size,
904 set_entry_to_counter,
905 counters,
906 &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700908 for_each_possible_cpu(cpu) {
Eric Dumazet31836062005-12-13 23:13:48 -0800909 if (cpu == curcpu)
910 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 i = 0;
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700912 xt_info_wrlock(cpu);
Eric Dumazet31836062005-12-13 23:13:48 -0800913 IPT_ENTRY_ITERATE(t->entries[cpu],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 t->size,
915 add_entry_to_counter,
916 counters,
917 &i);
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700918 xt_info_wrunlock(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 }
Stephen Hemminger78454472009-02-20 10:35:32 +0100920 local_bh_enable();
921}
922
Denys Vlasenko022748a2008-01-14 23:44:05 -0800923static struct xt_counters * alloc_counters(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
Dmitry Mishin27229712006-04-01 02:25:19 -0800925 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800926 struct xt_counters *counters;
Stephen Hemminger78454472009-02-20 10:35:32 +0100927 struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 /* We need atomic snapshot of counters: rest doesn't change
930 (other than comefrom, which userspace doesn't care
931 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800932 countersize = sizeof(struct xt_counters) * private->number;
Eric Dumazet31836062005-12-13 23:13:48 -0800933 counters = vmalloc_node(countersize, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 if (counters == NULL)
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700936 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700938 get_counters(private, counters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Dmitry Mishin27229712006-04-01 02:25:19 -0800940 return counters;
941}
942
943static int
944copy_entries_to_user(unsigned int total_size,
Jan Engelhardte60a13e2007-02-07 15:12:33 -0800945 struct xt_table *table,
Dmitry Mishin27229712006-04-01 02:25:19 -0800946 void __user *userptr)
947{
948 unsigned int off, num;
949 struct ipt_entry *e;
950 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200951 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -0800952 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200953 const void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -0800954
955 counters = alloc_counters(table);
956 if (IS_ERR(counters))
957 return PTR_ERR(counters);
958
Eric Dumazet31836062005-12-13 23:13:48 -0800959 /* choose the copy that is on our node/cpu, ...
960 * This choice is lazy (because current thread is
961 * allowed to migrate to another cpu)
962 */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800963 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -0800964 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 ret = -EFAULT;
966 goto free_counters;
967 }
968
969 /* FIXME: use iterator macros --RR */
970 /* ... then go back and fix counters and names */
971 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
972 unsigned int i;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200973 const struct ipt_entry_match *m;
974 const struct ipt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Eric Dumazet31836062005-12-13 23:13:48 -0800976 e = (struct ipt_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if (copy_to_user(userptr + off
978 + offsetof(struct ipt_entry, counters),
979 &counters[num],
980 sizeof(counters[num])) != 0) {
981 ret = -EFAULT;
982 goto free_counters;
983 }
984
985 for (i = sizeof(struct ipt_entry);
986 i < e->target_offset;
987 i += m->u.match_size) {
988 m = (void *)e + i;
989
990 if (copy_to_user(userptr + off + i
991 + offsetof(struct ipt_entry_match,
992 u.user.name),
993 m->u.kernel.match->name,
994 strlen(m->u.kernel.match->name)+1)
995 != 0) {
996 ret = -EFAULT;
997 goto free_counters;
998 }
999 }
1000
1001 t = ipt_get_target(e);
1002 if (copy_to_user(userptr + off + e->target_offset
1003 + offsetof(struct ipt_entry_target,
1004 u.user.name),
1005 t->u.kernel.target->name,
1006 strlen(t->u.kernel.target->name)+1) != 0) {
1007 ret = -EFAULT;
1008 goto free_counters;
1009 }
1010 }
1011
1012 free_counters:
1013 vfree(counters);
1014 return ret;
1015}
1016
Dmitry Mishin27229712006-04-01 02:25:19 -08001017#ifdef CONFIG_COMPAT
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001018static void compat_standard_from_user(void *dst, void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001019{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001020 int v = *(compat_int_t *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001021
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001022 if (v > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001023 v += xt_compat_calc_jump(AF_INET, v);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001024 memcpy(dst, &v, sizeof(v));
1025}
1026
1027static int compat_standard_to_user(void __user *dst, void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001028{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001029 compat_int_t cv = *(int *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001030
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001031 if (cv > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001032 cv -= xt_compat_calc_jump(AF_INET, cv);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001033 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001034}
1035
1036static inline int
Patrick McHardy4b478242007-12-17 21:46:15 -08001037compat_calc_match(struct ipt_entry_match *m, int *size)
Dmitry Mishin27229712006-04-01 02:25:19 -08001038{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001039 *size += xt_compat_match_offset(m->u.kernel.match);
Dmitry Mishin27229712006-04-01 02:25:19 -08001040 return 0;
1041}
1042
Eric Dumazet259d4e42007-12-04 23:24:56 -08001043static int compat_calc_entry(struct ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001044 const struct xt_table_info *info,
1045 void *base, struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001046{
1047 struct ipt_entry_target *t;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001048 unsigned int entry_offset;
Dmitry Mishin27229712006-04-01 02:25:19 -08001049 int off, i, ret;
1050
Patrick McHardy30c08c42007-12-17 21:47:14 -08001051 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001052 entry_offset = (void *)e - base;
1053 IPT_MATCH_ITERATE(e, compat_calc_match, &off);
1054 t = ipt_get_target(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001055 off += xt_compat_target_offset(t->u.kernel.target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001056 newinfo->size -= off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001057 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001058 if (ret)
1059 return ret;
1060
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001061 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Patrick McHardy4b478242007-12-17 21:46:15 -08001062 if (info->hook_entry[i] &&
1063 (e < (struct ipt_entry *)(base + info->hook_entry[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001064 newinfo->hook_entry[i] -= off;
Patrick McHardy4b478242007-12-17 21:46:15 -08001065 if (info->underflow[i] &&
1066 (e < (struct ipt_entry *)(base + info->underflow[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001067 newinfo->underflow[i] -= off;
1068 }
1069 return 0;
1070}
1071
Eric Dumazet259d4e42007-12-04 23:24:56 -08001072static int compat_table_info(const struct xt_table_info *info,
Patrick McHardy4b478242007-12-17 21:46:15 -08001073 struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001074{
1075 void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -08001076
1077 if (!newinfo || !info)
1078 return -EINVAL;
1079
Eric Dumazet259d4e42007-12-04 23:24:56 -08001080 /* we dont care about newinfo->entries[] */
1081 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1082 newinfo->initial_entries = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001083 loc_cpu_entry = info->entries[raw_smp_processor_id()];
1084 return IPT_ENTRY_ITERATE(loc_cpu_entry, info->size,
Patrick McHardy4b478242007-12-17 21:46:15 -08001085 compat_calc_entry, info, loc_cpu_entry,
1086 newinfo);
Dmitry Mishin27229712006-04-01 02:25:19 -08001087}
1088#endif
1089
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001090static int get_info(struct net *net, void __user *user, int *len, int compat)
Dmitry Mishin27229712006-04-01 02:25:19 -08001091{
1092 char name[IPT_TABLE_MAXNAMELEN];
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001093 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001094 int ret;
1095
1096 if (*len != sizeof(struct ipt_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001097 duprintf("length %u != %zu\n", *len,
1098 sizeof(struct ipt_getinfo));
Dmitry Mishin27229712006-04-01 02:25:19 -08001099 return -EINVAL;
1100 }
1101
1102 if (copy_from_user(name, user, sizeof(name)) != 0)
1103 return -EFAULT;
1104
1105 name[IPT_TABLE_MAXNAMELEN-1] = '\0';
1106#ifdef CONFIG_COMPAT
1107 if (compat)
1108 xt_compat_lock(AF_INET);
1109#endif
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001110 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Patrick McHardy4b478242007-12-17 21:46:15 -08001111 "iptable_%s", name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001112 if (t && !IS_ERR(t)) {
1113 struct ipt_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001114 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001115
1116#ifdef CONFIG_COMPAT
1117 if (compat) {
1118 struct xt_table_info tmp;
1119 ret = compat_table_info(private, &tmp);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001120 xt_compat_flush_offsets(AF_INET);
Patrick McHardy4b478242007-12-17 21:46:15 -08001121 private = &tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001122 }
1123#endif
1124 info.valid_hooks = t->valid_hooks;
1125 memcpy(info.hook_entry, private->hook_entry,
Patrick McHardy4b478242007-12-17 21:46:15 -08001126 sizeof(info.hook_entry));
Dmitry Mishin27229712006-04-01 02:25:19 -08001127 memcpy(info.underflow, private->underflow,
Patrick McHardy4b478242007-12-17 21:46:15 -08001128 sizeof(info.underflow));
Dmitry Mishin27229712006-04-01 02:25:19 -08001129 info.num_entries = private->number;
1130 info.size = private->size;
1131 strcpy(info.name, name);
1132
1133 if (copy_to_user(user, &info, *len) != 0)
1134 ret = -EFAULT;
1135 else
1136 ret = 0;
1137
1138 xt_table_unlock(t);
1139 module_put(t->me);
1140 } else
1141 ret = t ? PTR_ERR(t) : -ENOENT;
1142#ifdef CONFIG_COMPAT
1143 if (compat)
1144 xt_compat_unlock(AF_INET);
1145#endif
1146 return ret;
1147}
1148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001150get_entries(struct net *net, struct ipt_get_entries __user *uptr, int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
1152 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001153 struct ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001154 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Dmitry Mishin27229712006-04-01 02:25:19 -08001156 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001157 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001158 return -EINVAL;
1159 }
1160 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1161 return -EFAULT;
1162 if (*len != sizeof(struct ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001163 duprintf("get_entries: %u != %zu\n",
1164 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001165 return -EINVAL;
1166 }
1167
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001168 t = xt_find_table_lock(net, AF_INET, get.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001170 const struct xt_table_info *private = t->private;
Patrick McHardy9c547952007-12-17 21:52:00 -08001171 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001172 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001173 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 t, uptr->entrytable);
1175 else {
1176 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001177 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001178 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
1180 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001181 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 } else
1183 ret = t ? PTR_ERR(t) : -ENOENT;
1184
1185 return ret;
1186}
1187
1188static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001189__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001190 struct xt_table_info *newinfo, unsigned int num_counters,
1191 void __user *counters_ptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001192{
1193 int ret;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001194 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001195 struct xt_table_info *oldinfo;
1196 struct xt_counters *counters;
1197 void *loc_cpu_old_entry;
1198
1199 ret = 0;
1200 counters = vmalloc(num_counters * sizeof(struct xt_counters));
1201 if (!counters) {
1202 ret = -ENOMEM;
1203 goto out;
1204 }
1205
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001206 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Dmitry Mishin27229712006-04-01 02:25:19 -08001207 "iptable_%s", name);
1208 if (!t || IS_ERR(t)) {
1209 ret = t ? PTR_ERR(t) : -ENOENT;
1210 goto free_newinfo_counters_untrans;
1211 }
1212
1213 /* You lied! */
1214 if (valid_hooks != t->valid_hooks) {
1215 duprintf("Valid hook crap: %08X vs %08X\n",
1216 valid_hooks, t->valid_hooks);
1217 ret = -EINVAL;
1218 goto put_module;
1219 }
1220
1221 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1222 if (!oldinfo)
1223 goto put_module;
1224
1225 /* Update module usage count based on number of rules */
1226 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1227 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1228 if ((oldinfo->number > oldinfo->initial_entries) ||
1229 (newinfo->number <= oldinfo->initial_entries))
1230 module_put(t->me);
1231 if ((oldinfo->number > oldinfo->initial_entries) &&
1232 (newinfo->number <= oldinfo->initial_entries))
1233 module_put(t->me);
1234
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001235 /* Get the old counters, and synchronize with replace */
Dmitry Mishin27229712006-04-01 02:25:19 -08001236 get_counters(oldinfo, counters);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001237
Dmitry Mishin27229712006-04-01 02:25:19 -08001238 /* Decrease module usage counts and free resource */
1239 loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
Patrick McHardy4b478242007-12-17 21:46:15 -08001240 IPT_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry,
1241 NULL);
Dmitry Mishin27229712006-04-01 02:25:19 -08001242 xt_free_table_info(oldinfo);
1243 if (copy_to_user(counters_ptr, counters,
1244 sizeof(struct xt_counters) * num_counters) != 0)
1245 ret = -EFAULT;
1246 vfree(counters);
1247 xt_table_unlock(t);
1248 return ret;
1249
1250 put_module:
1251 module_put(t->me);
1252 xt_table_unlock(t);
1253 free_newinfo_counters_untrans:
1254 vfree(counters);
1255 out:
1256 return ret;
1257}
1258
1259static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001260do_replace(struct net *net, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261{
1262 int ret;
1263 struct ipt_replace tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001264 struct xt_table_info *newinfo;
1265 void *loc_cpu_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1268 return -EFAULT;
1269
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001270 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001271 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1272 return -ENOMEM;
1273
Harald Welte2e4e6a12006-01-12 13:30:04 -08001274 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 if (!newinfo)
1276 return -ENOMEM;
1277
Patrick McHardy9c547952007-12-17 21:52:00 -08001278 /* choose the copy that is on our node/cpu */
Eric Dumazet31836062005-12-13 23:13:48 -08001279 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1280 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 tmp.size) != 0) {
1282 ret = -EFAULT;
1283 goto free_newinfo;
1284 }
1285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 ret = translate_table(tmp.name, tmp.valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08001287 newinfo, loc_cpu_entry, tmp.size, tmp.num_entries,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 tmp.hook_entry, tmp.underflow);
1289 if (ret != 0)
Dmitry Mishin27229712006-04-01 02:25:19 -08001290 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 duprintf("ip_tables: Translated table\n");
1293
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001294 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001295 tmp.num_counters, tmp.counters);
Dmitry Mishin27229712006-04-01 02:25:19 -08001296 if (ret)
1297 goto free_newinfo_untrans;
1298 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Dmitry Mishin27229712006-04-01 02:25:19 -08001300 free_newinfo_untrans:
Patrick McHardy9c547952007-12-17 21:52:00 -08001301 IPT_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001303 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 return ret;
1305}
1306
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001307/* We're lazy, and add to the first CPU; overflow works its fey magic
1308 * and everything is OK. */
1309static int
1310add_counter_to_entry(struct ipt_entry *e,
1311 const struct xt_counters addme[],
1312 unsigned int *i)
1313{
1314 ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt);
1315
1316 (*i)++;
1317 return 0;
1318}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
1320static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001321do_add_counters(struct net *net, void __user *user, unsigned int len, int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001323 unsigned int i, curcpu;
Dmitry Mishin27229712006-04-01 02:25:19 -08001324 struct xt_counters_info tmp;
1325 struct xt_counters *paddc;
1326 unsigned int num_counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001327 const char *name;
Dmitry Mishin27229712006-04-01 02:25:19 -08001328 int size;
1329 void *ptmp;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001330 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001331 const struct xt_table_info *private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 int ret = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001333 void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -08001334#ifdef CONFIG_COMPAT
1335 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Dmitry Mishin27229712006-04-01 02:25:19 -08001337 if (compat) {
1338 ptmp = &compat_tmp;
1339 size = sizeof(struct compat_xt_counters_info);
1340 } else
1341#endif
1342 {
1343 ptmp = &tmp;
1344 size = sizeof(struct xt_counters_info);
1345 }
1346
1347 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 return -EFAULT;
1349
Dmitry Mishin27229712006-04-01 02:25:19 -08001350#ifdef CONFIG_COMPAT
1351 if (compat) {
1352 num_counters = compat_tmp.num_counters;
1353 name = compat_tmp.name;
1354 } else
1355#endif
1356 {
1357 num_counters = tmp.num_counters;
1358 name = tmp.name;
1359 }
1360
1361 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 return -EINVAL;
1363
Dmitry Mishin27229712006-04-01 02:25:19 -08001364 paddc = vmalloc_node(len - size, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 if (!paddc)
1366 return -ENOMEM;
1367
Dmitry Mishin27229712006-04-01 02:25:19 -08001368 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 ret = -EFAULT;
1370 goto free;
1371 }
1372
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001373 t = xt_find_table_lock(net, AF_INET, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 if (!t || IS_ERR(t)) {
1375 ret = t ? PTR_ERR(t) : -ENOENT;
1376 goto free;
1377 }
1378
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001379 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001380 private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001381 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 ret = -EINVAL;
1383 goto unlock_up_free;
1384 }
1385
1386 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001387 /* Choose the copy that is on our node */
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001388 curcpu = smp_processor_id();
1389 loc_cpu_entry = private->entries[curcpu];
1390 xt_info_wrlock(curcpu);
Eric Dumazet31836062005-12-13 23:13:48 -08001391 IPT_ENTRY_ITERATE(loc_cpu_entry,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001392 private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 add_counter_to_entry,
Dmitry Mishin27229712006-04-01 02:25:19 -08001394 paddc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 &i);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001396 xt_info_wrunlock(curcpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 unlock_up_free:
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001398 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001399 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 module_put(t->me);
1401 free:
1402 vfree(paddc);
1403
1404 return ret;
1405}
1406
Dmitry Mishin27229712006-04-01 02:25:19 -08001407#ifdef CONFIG_COMPAT
1408struct compat_ipt_replace {
1409 char name[IPT_TABLE_MAXNAMELEN];
1410 u32 valid_hooks;
1411 u32 num_entries;
1412 u32 size;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001413 u32 hook_entry[NF_INET_NUMHOOKS];
1414 u32 underflow[NF_INET_NUMHOOKS];
Dmitry Mishin27229712006-04-01 02:25:19 -08001415 u32 num_counters;
1416 compat_uptr_t counters; /* struct ipt_counters * */
1417 struct compat_ipt_entry entries[0];
1418};
1419
Patrick McHardya18aa312007-12-12 10:35:16 -08001420static int
1421compat_copy_entry_to_user(struct ipt_entry *e, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001422 unsigned int *size, struct xt_counters *counters,
Patrick McHardya18aa312007-12-12 10:35:16 -08001423 unsigned int *i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001424{
Al Viro3e597c62006-09-24 23:42:20 +01001425 struct ipt_entry_target *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001426 struct compat_ipt_entry __user *ce;
1427 u_int16_t target_offset, next_offset;
1428 compat_uint_t origsize;
1429 int ret;
1430
1431 ret = -EFAULT;
1432 origsize = *size;
1433 ce = (struct compat_ipt_entry __user *)*dstptr;
Patrick McHardy78000072006-05-03 23:20:27 -07001434 if (copy_to_user(ce, e, sizeof(struct ipt_entry)))
Dmitry Mishin27229712006-04-01 02:25:19 -08001435 goto out;
1436
Patrick McHardya18aa312007-12-12 10:35:16 -08001437 if (copy_to_user(&ce->counters, &counters[*i], sizeof(counters[*i])))
1438 goto out;
1439
Dmitry Mishin27229712006-04-01 02:25:19 -08001440 *dstptr += sizeof(struct compat_ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001441 *size -= sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1442
Patrick McHardyac8e27f2007-12-17 21:45:52 -08001443 ret = IPT_MATCH_ITERATE(e, xt_compat_match_to_user, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001444 target_offset = e->target_offset - (origsize - *size);
1445 if (ret)
1446 goto out;
1447 t = ipt_get_target(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001448 ret = xt_compat_target_to_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001449 if (ret)
1450 goto out;
1451 ret = -EFAULT;
1452 next_offset = e->next_offset - (origsize - *size);
Patrick McHardy78000072006-05-03 23:20:27 -07001453 if (put_user(target_offset, &ce->target_offset))
Dmitry Mishin27229712006-04-01 02:25:19 -08001454 goto out;
Patrick McHardy78000072006-05-03 23:20:27 -07001455 if (put_user(next_offset, &ce->next_offset))
Dmitry Mishin27229712006-04-01 02:25:19 -08001456 goto out;
Patrick McHardya18aa312007-12-12 10:35:16 -08001457
1458 (*i)++;
Dmitry Mishin27229712006-04-01 02:25:19 -08001459 return 0;
1460out:
1461 return ret;
1462}
1463
Denys Vlasenko022748a2008-01-14 23:44:05 -08001464static int
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001465compat_find_calc_match(struct ipt_entry_match *m,
Patrick McHardy4b478242007-12-17 21:46:15 -08001466 const char *name,
1467 const struct ipt_ip *ip,
1468 unsigned int hookmask,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001469 int *size, unsigned int *i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001470{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001471 struct xt_match *match;
Dmitry Mishin27229712006-04-01 02:25:19 -08001472
1473 match = try_then_request_module(xt_find_match(AF_INET, m->u.user.name,
Patrick McHardy4b478242007-12-17 21:46:15 -08001474 m->u.user.revision),
Dmitry Mishin27229712006-04-01 02:25:19 -08001475 "ipt_%s", m->u.user.name);
1476 if (IS_ERR(match) || !match) {
1477 duprintf("compat_check_calc_match: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001478 m->u.user.name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001479 return match ? PTR_ERR(match) : -ENOENT;
1480 }
1481 m->u.kernel.match = match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001482 *size += xt_compat_match_offset(match);
Dmitry Mishin27229712006-04-01 02:25:19 -08001483
1484 (*i)++;
1485 return 0;
1486}
1487
Denys Vlasenko022748a2008-01-14 23:44:05 -08001488static int
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001489compat_release_match(struct ipt_entry_match *m, unsigned int *i)
1490{
1491 if (i && (*i)-- == 0)
1492 return 1;
1493
1494 module_put(m->u.kernel.match->me);
1495 return 0;
1496}
1497
Denys Vlasenko022748a2008-01-14 23:44:05 -08001498static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001499compat_release_entry(struct compat_ipt_entry *e, unsigned int *i)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001500{
1501 struct ipt_entry_target *t;
1502
1503 if (i && (*i)-- == 0)
1504 return 1;
1505
1506 /* Cleanup all matches */
Patrick McHardy73cd5982007-12-17 21:47:32 -08001507 COMPAT_IPT_MATCH_ITERATE(e, compat_release_match, NULL);
1508 t = compat_ipt_get_target(e);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001509 module_put(t->u.kernel.target->me);
1510 return 0;
1511}
1512
Denys Vlasenko022748a2008-01-14 23:44:05 -08001513static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001514check_compat_entry_size_and_hooks(struct compat_ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001515 struct xt_table_info *newinfo,
1516 unsigned int *size,
1517 unsigned char *base,
1518 unsigned char *limit,
1519 unsigned int *hook_entries,
1520 unsigned int *underflows,
1521 unsigned int *i,
1522 const char *name)
Dmitry Mishin27229712006-04-01 02:25:19 -08001523{
1524 struct ipt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001525 struct xt_target *target;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001526 unsigned int entry_offset;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001527 unsigned int j;
1528 int ret, off, h;
Dmitry Mishin27229712006-04-01 02:25:19 -08001529
1530 duprintf("check_compat_entry_size_and_hooks %p\n", e);
1531 if ((unsigned long)e % __alignof__(struct compat_ipt_entry) != 0
1532 || (unsigned char *)e + sizeof(struct compat_ipt_entry) >= limit) {
1533 duprintf("Bad offset %p, limit = %p\n", e, limit);
1534 return -EINVAL;
1535 }
1536
1537 if (e->next_offset < sizeof(struct compat_ipt_entry) +
Patrick McHardy4b478242007-12-17 21:46:15 -08001538 sizeof(struct compat_xt_entry_target)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001539 duprintf("checking: element %p size %u\n",
1540 e, e->next_offset);
1541 return -EINVAL;
1542 }
1543
Patrick McHardy73cd5982007-12-17 21:47:32 -08001544 /* For purposes of check_entry casting the compat entry is fine */
1545 ret = check_entry((struct ipt_entry *)e, name);
Dmitry Mishina96be242006-12-12 00:29:26 -08001546 if (ret)
1547 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -08001548
Patrick McHardy30c08c42007-12-17 21:47:14 -08001549 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001550 entry_offset = (void *)e - (void *)base;
1551 j = 0;
Patrick McHardy73cd5982007-12-17 21:47:32 -08001552 ret = COMPAT_IPT_MATCH_ITERATE(e, compat_find_calc_match, name,
1553 &e->ip, e->comefrom, &off, &j);
Dmitry Mishin27229712006-04-01 02:25:19 -08001554 if (ret != 0)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001555 goto release_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001556
Patrick McHardy73cd5982007-12-17 21:47:32 -08001557 t = compat_ipt_get_target(e);
Dmitry Mishin27229712006-04-01 02:25:19 -08001558 target = try_then_request_module(xt_find_target(AF_INET,
Patrick McHardy4b478242007-12-17 21:46:15 -08001559 t->u.user.name,
1560 t->u.user.revision),
Dmitry Mishin27229712006-04-01 02:25:19 -08001561 "ipt_%s", t->u.user.name);
1562 if (IS_ERR(target) || !target) {
Dmitry Mishina96be242006-12-12 00:29:26 -08001563 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001564 t->u.user.name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001565 ret = target ? PTR_ERR(target) : -ENOENT;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001566 goto release_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001567 }
1568 t->u.kernel.target = target;
1569
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001570 off += xt_compat_target_offset(target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001571 *size += off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001572 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001573 if (ret)
1574 goto out;
1575
1576 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001577 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001578 if ((unsigned char *)e - base == hook_entries[h])
1579 newinfo->hook_entry[h] = hook_entries[h];
1580 if ((unsigned char *)e - base == underflows[h])
1581 newinfo->underflow[h] = underflows[h];
1582 }
1583
1584 /* Clear counters and comefrom */
Patrick McHardy73cd5982007-12-17 21:47:32 -08001585 memset(&e->counters, 0, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001586 e->comefrom = 0;
1587
1588 (*i)++;
1589 return 0;
Patrick McHardybec71b12006-09-20 12:04:08 -07001590
Dmitry Mishin27229712006-04-01 02:25:19 -08001591out:
Patrick McHardybec71b12006-09-20 12:04:08 -07001592 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001593release_matches:
1594 IPT_MATCH_ITERATE(e, compat_release_match, &j);
Dmitry Mishin27229712006-04-01 02:25:19 -08001595 return ret;
1596}
1597
Patrick McHardy4b478242007-12-17 21:46:15 -08001598static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001599compat_copy_entry_from_user(struct compat_ipt_entry *e, void **dstptr,
Patrick McHardy4b478242007-12-17 21:46:15 -08001600 unsigned int *size, const char *name,
1601 struct xt_table_info *newinfo, unsigned char *base)
Dmitry Mishin27229712006-04-01 02:25:19 -08001602{
1603 struct ipt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001604 struct xt_target *target;
Dmitry Mishin27229712006-04-01 02:25:19 -08001605 struct ipt_entry *de;
1606 unsigned int origsize;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001607 int ret, h;
Dmitry Mishin27229712006-04-01 02:25:19 -08001608
1609 ret = 0;
1610 origsize = *size;
1611 de = (struct ipt_entry *)*dstptr;
1612 memcpy(de, e, sizeof(struct ipt_entry));
Patrick McHardy73cd5982007-12-17 21:47:32 -08001613 memcpy(&de->counters, &e->counters, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001614
Patrick McHardy73cd5982007-12-17 21:47:32 -08001615 *dstptr += sizeof(struct ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001616 *size += sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1617
Patrick McHardy73cd5982007-12-17 21:47:32 -08001618 ret = COMPAT_IPT_MATCH_ITERATE(e, xt_compat_match_from_user,
1619 dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001620 if (ret)
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001621 return ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001622 de->target_offset = e->target_offset - (origsize - *size);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001623 t = compat_ipt_get_target(e);
Dmitry Mishin27229712006-04-01 02:25:19 -08001624 target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001625 xt_compat_target_from_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001626
1627 de->next_offset = e->next_offset - (origsize - *size);
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001628 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001629 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1630 newinfo->hook_entry[h] -= origsize - *size;
1631 if ((unsigned char *)de - base < newinfo->underflow[h])
1632 newinfo->underflow[h] -= origsize - *size;
1633 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001634 return ret;
1635}
Dmitry Mishin27229712006-04-01 02:25:19 -08001636
Denys Vlasenko022748a2008-01-14 23:44:05 -08001637static int
1638compat_check_entry(struct ipt_entry *e, const char *name,
Patrick McHardy4b478242007-12-17 21:46:15 -08001639 unsigned int *i)
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001640{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001641 struct xt_mtchk_param mtpar;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001642 unsigned int j;
1643 int ret;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001644
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001645 j = 0;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001646 mtpar.table = name;
1647 mtpar.entryinfo = &e->ip;
1648 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +02001649 mtpar.family = NFPROTO_IPV4;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001650 ret = IPT_MATCH_ITERATE(e, check_match, &mtpar, &j);
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001651 if (ret)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001652 goto cleanup_matches;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001653
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001654 ret = check_target(e, name);
1655 if (ret)
1656 goto cleanup_matches;
1657
1658 (*i)++;
1659 return 0;
1660
1661 cleanup_matches:
1662 IPT_MATCH_ITERATE(e, cleanup_match, &j);
1663 return ret;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001664}
1665
Dmitry Mishin27229712006-04-01 02:25:19 -08001666static int
1667translate_compat_table(const char *name,
Patrick McHardy4b478242007-12-17 21:46:15 -08001668 unsigned int valid_hooks,
1669 struct xt_table_info **pinfo,
1670 void **pentry0,
1671 unsigned int total_size,
1672 unsigned int number,
1673 unsigned int *hook_entries,
1674 unsigned int *underflows)
Dmitry Mishin27229712006-04-01 02:25:19 -08001675{
Dmitry Mishin920b8682006-10-30 15:14:27 -08001676 unsigned int i, j;
Dmitry Mishin27229712006-04-01 02:25:19 -08001677 struct xt_table_info *newinfo, *info;
1678 void *pos, *entry0, *entry1;
1679 unsigned int size;
1680 int ret;
1681
1682 info = *pinfo;
1683 entry0 = *pentry0;
1684 size = total_size;
1685 info->number = number;
1686
1687 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001688 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001689 info->hook_entry[i] = 0xFFFFFFFF;
1690 info->underflow[i] = 0xFFFFFFFF;
1691 }
1692
1693 duprintf("translate_compat_table: size %u\n", info->size);
Dmitry Mishin920b8682006-10-30 15:14:27 -08001694 j = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001695 xt_compat_lock(AF_INET);
1696 /* Walk through entries, checking offsets. */
Patrick McHardy73cd5982007-12-17 21:47:32 -08001697 ret = COMPAT_IPT_ENTRY_ITERATE(entry0, total_size,
1698 check_compat_entry_size_and_hooks,
1699 info, &size, entry0,
1700 entry0 + total_size,
1701 hook_entries, underflows, &j, name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001702 if (ret != 0)
1703 goto out_unlock;
1704
1705 ret = -EINVAL;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001706 if (j != number) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001707 duprintf("translate_compat_table: %u not %u entries\n",
Dmitry Mishin920b8682006-10-30 15:14:27 -08001708 j, number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001709 goto out_unlock;
1710 }
1711
1712 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001713 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001714 /* Only hooks which are valid */
1715 if (!(valid_hooks & (1 << i)))
1716 continue;
1717 if (info->hook_entry[i] == 0xFFFFFFFF) {
1718 duprintf("Invalid hook entry %u %u\n",
1719 i, hook_entries[i]);
1720 goto out_unlock;
1721 }
1722 if (info->underflow[i] == 0xFFFFFFFF) {
1723 duprintf("Invalid underflow %u %u\n",
1724 i, underflows[i]);
1725 goto out_unlock;
1726 }
1727 }
1728
1729 ret = -ENOMEM;
1730 newinfo = xt_alloc_table_info(size);
1731 if (!newinfo)
1732 goto out_unlock;
1733
1734 newinfo->number = number;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001735 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001736 newinfo->hook_entry[i] = info->hook_entry[i];
1737 newinfo->underflow[i] = info->underflow[i];
1738 }
1739 entry1 = newinfo->entries[raw_smp_processor_id()];
1740 pos = entry1;
Patrick McHardy4b478242007-12-17 21:46:15 -08001741 size = total_size;
Patrick McHardy73cd5982007-12-17 21:47:32 -08001742 ret = COMPAT_IPT_ENTRY_ITERATE(entry0, total_size,
Patrick McHardy9c547952007-12-17 21:52:00 -08001743 compat_copy_entry_from_user,
1744 &pos, &size, name, newinfo, entry1);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001745 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001746 xt_compat_unlock(AF_INET);
1747 if (ret)
1748 goto free_newinfo;
1749
1750 ret = -ELOOP;
1751 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1752 goto free_newinfo;
1753
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001754 i = 0;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001755 ret = IPT_ENTRY_ITERATE(entry1, newinfo->size, compat_check_entry,
Patrick McHardy4b478242007-12-17 21:46:15 -08001756 name, &i);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001757 if (ret) {
1758 j -= i;
Patrick McHardy73cd5982007-12-17 21:47:32 -08001759 COMPAT_IPT_ENTRY_ITERATE_CONTINUE(entry0, newinfo->size, i,
1760 compat_release_entry, &j);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001761 IPT_ENTRY_ITERATE(entry1, newinfo->size, cleanup_entry, &i);
1762 xt_free_table_info(newinfo);
1763 return ret;
1764 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001765
Dmitry Mishin27229712006-04-01 02:25:19 -08001766 /* And one copy for every other CPU */
Andrew Mortonfb1bb342006-06-25 05:46:43 -07001767 for_each_possible_cpu(i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001768 if (newinfo->entries[i] && newinfo->entries[i] != entry1)
1769 memcpy(newinfo->entries[i], entry1, newinfo->size);
1770
1771 *pinfo = newinfo;
1772 *pentry0 = entry1;
1773 xt_free_table_info(info);
1774 return 0;
1775
1776free_newinfo:
1777 xt_free_table_info(newinfo);
1778out:
Patrick McHardy73cd5982007-12-17 21:47:32 -08001779 COMPAT_IPT_ENTRY_ITERATE(entry0, total_size, compat_release_entry, &j);
Dmitry Mishin27229712006-04-01 02:25:19 -08001780 return ret;
1781out_unlock:
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001782 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001783 xt_compat_unlock(AF_INET);
1784 goto out;
1785}
1786
1787static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001788compat_do_replace(struct net *net, void __user *user, unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001789{
1790 int ret;
1791 struct compat_ipt_replace tmp;
1792 struct xt_table_info *newinfo;
1793 void *loc_cpu_entry;
1794
1795 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1796 return -EFAULT;
1797
Dmitry Mishin27229712006-04-01 02:25:19 -08001798 /* overflow check */
Eric Dumazet259d4e42007-12-04 23:24:56 -08001799 if (tmp.size >= INT_MAX / num_possible_cpus())
Dmitry Mishin27229712006-04-01 02:25:19 -08001800 return -ENOMEM;
1801 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1802 return -ENOMEM;
1803
1804 newinfo = xt_alloc_table_info(tmp.size);
1805 if (!newinfo)
1806 return -ENOMEM;
1807
Patrick McHardy9c547952007-12-17 21:52:00 -08001808 /* choose the copy that is on our node/cpu */
Dmitry Mishin27229712006-04-01 02:25:19 -08001809 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1810 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1811 tmp.size) != 0) {
1812 ret = -EFAULT;
1813 goto free_newinfo;
1814 }
1815
1816 ret = translate_compat_table(tmp.name, tmp.valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001817 &newinfo, &loc_cpu_entry, tmp.size,
1818 tmp.num_entries, tmp.hook_entry,
1819 tmp.underflow);
Dmitry Mishin27229712006-04-01 02:25:19 -08001820 if (ret != 0)
1821 goto free_newinfo;
1822
1823 duprintf("compat_do_replace: Translated table\n");
1824
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001825 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001826 tmp.num_counters, compat_ptr(tmp.counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001827 if (ret)
1828 goto free_newinfo_untrans;
1829 return 0;
1830
1831 free_newinfo_untrans:
Patrick McHardy4b478242007-12-17 21:46:15 -08001832 IPT_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
Dmitry Mishin27229712006-04-01 02:25:19 -08001833 free_newinfo:
1834 xt_free_table_info(newinfo);
1835 return ret;
1836}
1837
1838static int
1839compat_do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user,
Patrick McHardy4b478242007-12-17 21:46:15 -08001840 unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001841{
1842 int ret;
1843
1844 if (!capable(CAP_NET_ADMIN))
1845 return -EPERM;
1846
1847 switch (cmd) {
1848 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001849 ret = compat_do_replace(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001850 break;
1851
1852 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001853 ret = do_add_counters(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001854 break;
1855
1856 default:
1857 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1858 ret = -EINVAL;
1859 }
1860
1861 return ret;
1862}
1863
Patrick McHardy4b478242007-12-17 21:46:15 -08001864struct compat_ipt_get_entries {
Dmitry Mishin27229712006-04-01 02:25:19 -08001865 char name[IPT_TABLE_MAXNAMELEN];
1866 compat_uint_t size;
1867 struct compat_ipt_entry entrytable[0];
1868};
1869
Patrick McHardy4b478242007-12-17 21:46:15 -08001870static int
1871compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1872 void __user *userptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001873{
Dmitry Mishin27229712006-04-01 02:25:19 -08001874 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001875 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001876 void __user *pos;
1877 unsigned int size;
1878 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001879 const void *loc_cpu_entry;
Patrick McHardya18aa312007-12-12 10:35:16 -08001880 unsigned int i = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001881
1882 counters = alloc_counters(table);
1883 if (IS_ERR(counters))
1884 return PTR_ERR(counters);
1885
1886 /* choose the copy that is on our node/cpu, ...
1887 * This choice is lazy (because current thread is
1888 * allowed to migrate to another cpu)
1889 */
1890 loc_cpu_entry = private->entries[raw_smp_processor_id()];
1891 pos = userptr;
1892 size = total_size;
1893 ret = IPT_ENTRY_ITERATE(loc_cpu_entry, total_size,
Patrick McHardya18aa312007-12-12 10:35:16 -08001894 compat_copy_entry_to_user,
1895 &pos, &size, counters, &i);
Dmitry Mishin27229712006-04-01 02:25:19 -08001896
Dmitry Mishin27229712006-04-01 02:25:19 -08001897 vfree(counters);
1898 return ret;
1899}
1900
1901static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001902compat_get_entries(struct net *net, struct compat_ipt_get_entries __user *uptr,
1903 int *len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001904{
1905 int ret;
1906 struct compat_ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001907 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001908
Dmitry Mishin27229712006-04-01 02:25:19 -08001909 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001910 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001911 return -EINVAL;
1912 }
1913
1914 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1915 return -EFAULT;
1916
1917 if (*len != sizeof(struct compat_ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001918 duprintf("compat_get_entries: %u != %zu\n",
1919 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001920 return -EINVAL;
1921 }
1922
1923 xt_compat_lock(AF_INET);
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001924 t = xt_find_table_lock(net, AF_INET, get.name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001925 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001926 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001927 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08001928 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001929 ret = compat_table_info(private, &info);
1930 if (!ret && get.size == info.size) {
1931 ret = compat_copy_entries_to_user(private->size,
Patrick McHardy4b478242007-12-17 21:46:15 -08001932 t, uptr->entrytable);
Dmitry Mishin27229712006-04-01 02:25:19 -08001933 } else if (!ret) {
1934 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001935 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001936 ret = -EAGAIN;
Dmitry Mishin27229712006-04-01 02:25:19 -08001937 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001938 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001939 module_put(t->me);
1940 xt_table_unlock(t);
1941 } else
1942 ret = t ? PTR_ERR(t) : -ENOENT;
1943
1944 xt_compat_unlock(AF_INET);
1945 return ret;
1946}
1947
Patrick McHardy79030ed2006-09-20 12:05:08 -07001948static int do_ipt_get_ctl(struct sock *, int, void __user *, int *);
1949
Dmitry Mishin27229712006-04-01 02:25:19 -08001950static int
1951compat_do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1952{
1953 int ret;
1954
Björn Steinbrink82fac052006-10-20 00:21:10 -07001955 if (!capable(CAP_NET_ADMIN))
1956 return -EPERM;
1957
Dmitry Mishin27229712006-04-01 02:25:19 -08001958 switch (cmd) {
1959 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001960 ret = get_info(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001961 break;
1962 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001963 ret = compat_get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001964 break;
1965 default:
Patrick McHardy79030ed2006-09-20 12:05:08 -07001966 ret = do_ipt_get_ctl(sk, cmd, user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001967 }
1968 return ret;
1969}
1970#endif
1971
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972static int
Patrick McHardy9c547952007-12-17 21:52:00 -08001973do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974{
1975 int ret;
1976
1977 if (!capable(CAP_NET_ADMIN))
1978 return -EPERM;
1979
1980 switch (cmd) {
1981 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001982 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 break;
1984
1985 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001986 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 break;
1988
1989 default:
1990 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1991 ret = -EINVAL;
1992 }
1993
1994 return ret;
1995}
1996
1997static int
1998do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1999{
2000 int ret;
2001
2002 if (!capable(CAP_NET_ADMIN))
2003 return -EPERM;
2004
2005 switch (cmd) {
Dmitry Mishin27229712006-04-01 02:25:19 -08002006 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002007 ret = get_info(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 break;
Dmitry Mishin27229712006-04-01 02:25:19 -08002009
2010 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002011 ret = get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08002012 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
2014 case IPT_SO_GET_REVISION_MATCH:
2015 case IPT_SO_GET_REVISION_TARGET: {
2016 struct ipt_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002017 int target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
2019 if (*len != sizeof(rev)) {
2020 ret = -EINVAL;
2021 break;
2022 }
2023 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2024 ret = -EFAULT;
2025 break;
2026 }
2027
2028 if (cmd == IPT_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08002029 target = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08002031 target = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Harald Welte2e4e6a12006-01-12 13:30:04 -08002033 try_then_request_module(xt_find_revision(AF_INET, rev.name,
2034 rev.revision,
2035 target, &ret),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 "ipt_%s", rev.name);
2037 break;
2038 }
2039
2040 default:
2041 duprintf("do_ipt_get_ctl: unknown request %i\n", cmd);
2042 ret = -EINVAL;
2043 }
2044
2045 return ret;
2046}
2047
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002048struct xt_table *ipt_register_table(struct net *net, struct xt_table *table,
2049 const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050{
2051 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002052 struct xt_table_info *newinfo;
Eric Dumazet259d4e42007-12-04 23:24:56 -08002053 struct xt_table_info bootstrap
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 = { 0, 0, 0, { 0 }, { 0 }, { } };
Eric Dumazet31836062005-12-13 23:13:48 -08002055 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08002056 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
Harald Welte2e4e6a12006-01-12 13:30:04 -08002058 newinfo = xt_alloc_table_info(repl->size);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002059 if (!newinfo) {
2060 ret = -ENOMEM;
2061 goto out;
2062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
Patrick McHardy9c547952007-12-17 21:52:00 -08002064 /* choose the copy on our node/cpu, but dont care about preemption */
Eric Dumazet31836062005-12-13 23:13:48 -08002065 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
2066 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
2068 ret = translate_table(table->name, table->valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08002069 newinfo, loc_cpu_entry, repl->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 repl->num_entries,
2071 repl->hook_entry,
2072 repl->underflow);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002073 if (ret != 0)
2074 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002076 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08002077 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002078 ret = PTR_ERR(new_table);
2079 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 }
2081
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002082 return new_table;
2083
2084out_free:
2085 xt_free_table_info(newinfo);
2086out:
2087 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088}
2089
Jan Engelhardte60a13e2007-02-07 15:12:33 -08002090void ipt_unregister_table(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091{
Harald Welte2e4e6a12006-01-12 13:30:04 -08002092 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08002093 void *loc_cpu_entry;
Alexey Dobriyandf200962008-01-31 04:05:34 -08002094 struct module *table_owner = table->me;
Eric Dumazet31836062005-12-13 23:13:48 -08002095
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002096 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
2098 /* Decrease module usage counts and free resources */
Harald Welte2e4e6a12006-01-12 13:30:04 -08002099 loc_cpu_entry = private->entries[raw_smp_processor_id()];
2100 IPT_ENTRY_ITERATE(loc_cpu_entry, private->size, cleanup_entry, NULL);
Alexey Dobriyandf200962008-01-31 04:05:34 -08002101 if (private->number > private->initial_entries)
2102 module_put(table_owner);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002103 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104}
2105
2106/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002107static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108icmp_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2109 u_int8_t type, u_int8_t code,
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002110 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111{
Patrick McHardy9c547952007-12-17 21:52:00 -08002112 return ((test_type == 0xFF) ||
2113 (type == test_type && code >= min_code && code <= max_code))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 ^ invert;
2115}
2116
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002117static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002118icmp_match(const struct sk_buff *skb, const struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119{
Jan Engelhardt5452e422008-04-14 11:15:35 +02002120 const struct icmphdr *ic;
2121 struct icmphdr _icmph;
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002122 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
2124 /* Must not be a fragment. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002125 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002126 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002128 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 if (ic == NULL) {
2130 /* We've been asked to examine this packet, and we
2131 * can't. Hence, no choice but to drop.
2132 */
2133 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002134 *par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002135 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 }
2137
2138 return icmp_type_code_match(icmpinfo->type,
2139 icmpinfo->code[0],
2140 icmpinfo->code[1],
2141 ic->type, ic->code,
2142 !!(icmpinfo->invflags&IPT_ICMP_INV));
2143}
2144
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002145static bool icmp_checkentry(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002147 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002149 /* Must specify no unknown invflags */
2150 return !(icmpinfo->invflags & ~IPT_ICMP_INV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151}
2152
2153/* The built-in targets: standard (NULL) and error. */
Patrick McHardy9f15c532007-07-07 22:22:02 -07002154static struct xt_target ipt_standard_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 .name = IPT_STANDARD_TARGET,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002156 .targetsize = sizeof(int),
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002157 .family = NFPROTO_IPV4,
Dmitry Mishin27229712006-04-01 02:25:19 -08002158#ifdef CONFIG_COMPAT
Patrick McHardy9fa492c2006-09-20 12:05:37 -07002159 .compatsize = sizeof(compat_int_t),
2160 .compat_from_user = compat_standard_from_user,
2161 .compat_to_user = compat_standard_to_user,
Dmitry Mishin27229712006-04-01 02:25:19 -08002162#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163};
2164
Patrick McHardy9f15c532007-07-07 22:22:02 -07002165static struct xt_target ipt_error_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 .name = IPT_ERROR_TARGET,
2167 .target = ipt_error,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002168 .targetsize = IPT_FUNCTION_MAXNAMELEN,
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002169 .family = NFPROTO_IPV4,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170};
2171
2172static struct nf_sockopt_ops ipt_sockopts = {
2173 .pf = PF_INET,
2174 .set_optmin = IPT_BASE_CTL,
2175 .set_optmax = IPT_SO_SET_MAX+1,
2176 .set = do_ipt_set_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002177#ifdef CONFIG_COMPAT
2178 .compat_set = compat_do_ipt_set_ctl,
2179#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 .get_optmin = IPT_BASE_CTL,
2181 .get_optmax = IPT_SO_GET_MAX+1,
2182 .get = do_ipt_get_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002183#ifdef CONFIG_COMPAT
2184 .compat_get = compat_do_ipt_get_ctl,
2185#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002186 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187};
2188
Patrick McHardy9f15c532007-07-07 22:22:02 -07002189static struct xt_match icmp_matchstruct __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 .name = "icmp",
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002191 .match = icmp_match,
2192 .matchsize = sizeof(struct ipt_icmp),
Patrick McHardy9c547952007-12-17 21:52:00 -08002193 .checkentry = icmp_checkentry,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002194 .proto = IPPROTO_ICMP,
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002195 .family = NFPROTO_IPV4,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196};
2197
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002198static int __net_init ip_tables_net_init(struct net *net)
2199{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002200 return xt_proto_init(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002201}
2202
2203static void __net_exit ip_tables_net_exit(struct net *net)
2204{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002205 xt_proto_fini(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002206}
2207
2208static struct pernet_operations ip_tables_net_ops = {
2209 .init = ip_tables_net_init,
2210 .exit = ip_tables_net_exit,
2211};
2212
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002213static int __init ip_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214{
2215 int ret;
2216
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002217 ret = register_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002218 if (ret < 0)
2219 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 /* Noone else will be downing sem now, so we won't sleep */
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002222 ret = xt_register_target(&ipt_standard_target);
2223 if (ret < 0)
2224 goto err2;
2225 ret = xt_register_target(&ipt_error_target);
2226 if (ret < 0)
2227 goto err3;
2228 ret = xt_register_match(&icmp_matchstruct);
2229 if (ret < 0)
2230 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
2232 /* Register setsockopt */
2233 ret = nf_register_sockopt(&ipt_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002234 if (ret < 0)
2235 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
Dan Aloni0236e662007-07-09 13:20:12 -07002237 printk(KERN_INFO "ip_tables: (C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002239
2240err5:
2241 xt_unregister_match(&icmp_matchstruct);
2242err4:
2243 xt_unregister_target(&ipt_error_target);
2244err3:
2245 xt_unregister_target(&ipt_standard_target);
2246err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002247 unregister_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002248err1:
2249 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250}
2251
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002252static void __exit ip_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253{
2254 nf_unregister_sockopt(&ipt_sockopts);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002255
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002256 xt_unregister_match(&icmp_matchstruct);
2257 xt_unregister_target(&ipt_error_target);
2258 xt_unregister_target(&ipt_standard_target);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002259
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002260 unregister_pernet_subsys(&ip_tables_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261}
2262
2263EXPORT_SYMBOL(ipt_register_table);
2264EXPORT_SYMBOL(ipt_unregister_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265EXPORT_SYMBOL(ipt_do_table);
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002266module_init(ip_tables_init);
2267module_exit(ip_tables_fini);