blob: cfcb7af917247c44a81b40300bfc4168aac6d30f [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) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700193static inline int
194unconditional(const struct ipt_ip *ip)
195{
196 unsigned int i;
197
198 for (i = 0; i < sizeof(*ip)/sizeof(__u32); i++)
199 if (((__u32 *)ip)[i])
200 return 0;
201
202 return 1;
Jan Engelhardte79ec502007-12-17 22:44:06 -0800203#undef FWINV
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700204}
205
206#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
207 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
Denys Vlasenko022748a2008-01-14 23:44:05 -0800208static const char *const hooknames[] = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800209 [NF_INET_PRE_ROUTING] = "PREROUTING",
210 [NF_INET_LOCAL_IN] = "INPUT",
Patrick McHardy9c547952007-12-17 21:52:00 -0800211 [NF_INET_FORWARD] = "FORWARD",
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800212 [NF_INET_LOCAL_OUT] = "OUTPUT",
213 [NF_INET_POST_ROUTING] = "POSTROUTING",
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700214};
215
216enum nf_ip_trace_comments {
217 NF_IP_TRACE_COMMENT_RULE,
218 NF_IP_TRACE_COMMENT_RETURN,
219 NF_IP_TRACE_COMMENT_POLICY,
220};
221
Denys Vlasenko022748a2008-01-14 23:44:05 -0800222static const char *const comments[] = {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700223 [NF_IP_TRACE_COMMENT_RULE] = "rule",
224 [NF_IP_TRACE_COMMENT_RETURN] = "return",
225 [NF_IP_TRACE_COMMENT_POLICY] = "policy",
226};
227
228static struct nf_loginfo trace_loginfo = {
229 .type = NF_LOG_TYPE_LOG,
230 .u = {
231 .log = {
232 .level = 4,
233 .logflags = NF_LOG_MASK,
234 },
235 },
236};
237
Denys Vlasenko022748a2008-01-14 23:44:05 -0800238/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700239static inline int
240get_chainname_rulenum(struct ipt_entry *s, struct ipt_entry *e,
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200241 const char *hookname, const char **chainname,
242 const char **comment, unsigned int *rulenum)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700243{
244 struct ipt_standard_target *t = (void *)ipt_get_target(s);
245
246 if (strcmp(t->target.u.kernel.target->name, IPT_ERROR_TARGET) == 0) {
247 /* Head of user chain: ERROR target with chainname */
248 *chainname = t->target.data;
249 (*rulenum) = 0;
250 } else if (s == e) {
251 (*rulenum)++;
252
253 if (s->target_offset == sizeof(struct ipt_entry)
254 && strcmp(t->target.u.kernel.target->name,
255 IPT_STANDARD_TARGET) == 0
256 && t->verdict < 0
257 && unconditional(&s->ip)) {
258 /* Tail of chains: STANDARD target (return/policy) */
259 *comment = *chainname == hookname
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200260 ? comments[NF_IP_TRACE_COMMENT_POLICY]
261 : comments[NF_IP_TRACE_COMMENT_RETURN];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700262 }
263 return 1;
264 } else
265 (*rulenum)++;
266
267 return 0;
268}
269
270static void trace_packet(struct sk_buff *skb,
271 unsigned int hook,
272 const struct net_device *in,
273 const struct net_device *out,
Jan Engelhardtecb6f852008-01-31 03:54:47 -0800274 const char *tablename,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700275 struct xt_table_info *private,
276 struct ipt_entry *e)
277{
278 void *table_base;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200279 const struct ipt_entry *root;
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200280 const char *hookname, *chainname, *comment;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700281 unsigned int rulenum = 0;
282
Jan Engelhardtccf5bd82009-04-15 20:27:03 +0200283 table_base = private->entries[smp_processor_id()];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700284 root = get_entry(table_base, private->hook_entry[hook]);
285
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200286 hookname = chainname = hooknames[hook];
287 comment = comments[NF_IP_TRACE_COMMENT_RULE];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700288
289 IPT_ENTRY_ITERATE(root,
290 private->size - private->hook_entry[hook],
291 get_chainname_rulenum,
292 e, hookname, &chainname, &comment, &rulenum);
293
294 nf_log_packet(AF_INET, hook, skb, in, out, &trace_loginfo,
295 "TRACE: %s:%s:%s:%u ",
296 tablename, chainname, comment, rulenum);
297}
298#endif
299
Jan Engelhardt98e86402009-04-15 21:06:05 +0200300static inline __pure
301struct ipt_entry *ipt_next_entry(const struct ipt_entry *entry)
302{
303 return (void *)entry + entry->next_offset;
304}
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306/* Returns one of the generic firewall policies, like NF_ACCEPT. */
307unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700308ipt_do_table(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 unsigned int hook,
310 const struct net_device *in,
311 const struct net_device *out,
Jan Engelhardte60a13e2007-02-07 15:12:33 -0800312 struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
314 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
Jan Engelhardt5452e422008-04-14 11:15:35 +0200315 const struct iphdr *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 u_int16_t datalen;
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700317 bool hotdrop = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 /* Initializing verdict to NF_DROP keeps gcc happy. */
319 unsigned int verdict = NF_DROP;
320 const char *indev, *outdev;
321 void *table_base;
322 struct ipt_entry *e, *back;
Patrick McHardy83117312006-08-17 18:13:53 -0700323 struct xt_table_info *private;
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200324 struct xt_match_param mtpar;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200325 struct xt_target_param tgpar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 /* Initialization */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700328 ip = ip_hdr(skb);
329 datalen = skb->len - ip->ihl * 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 indev = in ? in->name : nulldevname;
331 outdev = out ? out->name : nulldevname;
332 /* We handle fragments by dealing with the first fragment as
333 * if it was a normal packet. All other fragments are treated
334 * normally, except that they will NEVER match rules that ask
335 * things we don't know, ie. tcp syn flag or ports). If the
336 * rule is also a fragment-specific rule, non-fragments won't
337 * match it. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200338 mtpar.fragoff = ntohs(ip->frag_off) & IP_OFFSET;
339 mtpar.thoff = ip_hdrlen(skb);
340 mtpar.hotdrop = &hotdrop;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200341 mtpar.in = tgpar.in = in;
342 mtpar.out = tgpar.out = out;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200343 mtpar.family = tgpar.family = NFPROTO_IPV4;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200344 tgpar.hooknum = hook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 IP_NF_ASSERT(table->valid_hooks & (1 << hook));
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700347 xt_info_rdlock_bh();
348 private = table->private;
349 table_base = private->entries[smp_processor_id()];
Stephen Hemminger78454472009-02-20 10:35:32 +0100350
Harald Welte2e4e6a12006-01-12 13:30:04 -0800351 e = get_entry(table_base, private->hook_entry[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 /* For return from builtin chain */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800354 back = get_entry(table_base, private->underflow[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 do {
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200357 struct ipt_entry_target *t;
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 IP_NF_ASSERT(e);
360 IP_NF_ASSERT(back);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200361 if (!ip_packet_match(ip, indev, outdev,
Jan Engelhardt94522582009-04-15 21:31:32 +0200362 &e->ip, mtpar.fragoff) ||
363 IPT_MATCH_ITERATE(e, do_match, skb, &mtpar) != 0) {
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200364 e = ipt_next_entry(e);
365 continue;
366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200368 ADD_COUNTER(e->counters, ntohs(ip->tot_len), 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200370 t = ipt_get_target(e);
371 IP_NF_ASSERT(t->u.kernel.target);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700372
373#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
374 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200375 /* The packet is traced: log it */
376 if (unlikely(skb->nf_trace))
377 trace_packet(skb, hook, in, out,
378 table->name, private, e);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700379#endif
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200380 /* Standard target? */
381 if (!t->u.kernel.target->target) {
382 int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200384 v = ((struct ipt_standard_target *)t)->verdict;
385 if (v < 0) {
386 /* Pop from stack? */
387 if (v != IPT_RETURN) {
388 verdict = (unsigned)(-v) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 break;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200390 }
391 e = back;
392 back = get_entry(table_base, back->comefrom);
393 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200395 if (table_base + v != ipt_next_entry(e)
396 && !(e->ip.flags & IPT_F_GOTO)) {
397 /* Save old back ptr in next entry */
398 struct ipt_entry *next = ipt_next_entry(e);
399 next->comefrom = (void *)back - table_base;
400 /* set back pointer to next entry */
401 back = next;
402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200404 e = get_entry(table_base, v);
405 } else {
406 /* Targets which reenter must return
407 abs. verdicts */
408 tgpar.target = t->u.kernel.target;
409 tgpar.targinfo = t->data;
410#ifdef CONFIG_NETFILTER_DEBUG
411 ((struct ipt_entry *)table_base)->comefrom
412 = 0xeeeeeeec;
413#endif
414 verdict = t->u.kernel.target->target(skb, &tgpar);
415#ifdef CONFIG_NETFILTER_DEBUG
416 if (((struct ipt_entry *)table_base)->comefrom
417 != 0xeeeeeeec
418 && verdict == IPT_CONTINUE) {
419 printk("Target %s reentered!\n",
420 t->u.kernel.target->name);
421 verdict = NF_DROP;
422 }
423 ((struct ipt_entry *)table_base)->comefrom
424 = 0x57acc001;
425#endif
426 /* Target might have changed stuff. */
427 ip = ip_hdr(skb);
428 datalen = skb->len - ip->ihl * 4;
429
430 if (verdict == IPT_CONTINUE)
431 e = ipt_next_entry(e);
432 else
433 /* Verdict */
434 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
436 } while (!hotdrop);
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700437 xt_info_rdunlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439#ifdef DEBUG_ALLOW_ALL
440 return NF_ACCEPT;
441#else
442 if (hotdrop)
443 return NF_DROP;
444 else return verdict;
445#endif
446}
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448/* Figures out from what hook each rule can be called: returns 0 if
449 there are loops. Puts hook bitmask in comefrom. */
450static int
Harald Welte2e4e6a12006-01-12 13:30:04 -0800451mark_source_chains(struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800452 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
454 unsigned int hook;
455
456 /* No recursion; use packet counter to save back ptrs (reset
457 to 0 as we leave), and comefrom to save source hook bitmask */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800458 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 unsigned int pos = newinfo->hook_entry[hook];
Patrick McHardy9c547952007-12-17 21:52:00 -0800460 struct ipt_entry *e = (struct ipt_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 if (!(valid_hooks & (1 << hook)))
463 continue;
464
465 /* Set initial back pointer. */
466 e->counters.pcnt = pos;
467
468 for (;;) {
469 struct ipt_standard_target *t
470 = (void *)ipt_get_target(e);
Al Viroe1b4b9f2006-12-12 00:29:52 -0800471 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800473 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 printk("iptables: loop hook %u pos %u %08X.\n",
475 hook, pos, e->comefrom);
476 return 0;
477 }
Patrick McHardy9c547952007-12-17 21:52:00 -0800478 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 /* Unconditional return/END. */
Al Viroe1b4b9f2006-12-12 00:29:52 -0800481 if ((e->target_offset == sizeof(struct ipt_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 && (strcmp(t->target.u.user.name,
483 IPT_STANDARD_TARGET) == 0)
484 && t->verdict < 0
Al Viroe1b4b9f2006-12-12 00:29:52 -0800485 && unconditional(&e->ip)) || visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 unsigned int oldpos, size;
487
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100488 if ((strcmp(t->target.u.user.name,
489 IPT_STANDARD_TARGET) == 0) &&
490 t->verdict < -NF_MAX_VERDICT - 1) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800491 duprintf("mark_source_chains: bad "
492 "negative verdict (%i)\n",
493 t->verdict);
494 return 0;
495 }
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 /* Return: backtrack through the last
498 big jump. */
499 do {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800500 e->comefrom ^= (1<<NF_INET_NUMHOOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501#ifdef DEBUG_IP_FIREWALL_USER
502 if (e->comefrom
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800503 & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 duprintf("Back unset "
505 "on hook %u "
506 "rule %u\n",
507 hook, pos);
508 }
509#endif
510 oldpos = pos;
511 pos = e->counters.pcnt;
512 e->counters.pcnt = 0;
513
514 /* We're at the start. */
515 if (pos == oldpos)
516 goto next;
517
518 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800519 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 } while (oldpos == pos + e->next_offset);
521
522 /* Move along one */
523 size = e->next_offset;
524 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800525 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 e->counters.pcnt = pos;
527 pos += size;
528 } else {
529 int newpos = t->verdict;
530
531 if (strcmp(t->target.u.user.name,
532 IPT_STANDARD_TARGET) == 0
533 && newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800534 if (newpos > newinfo->size -
535 sizeof(struct ipt_entry)) {
536 duprintf("mark_source_chains: "
537 "bad verdict (%i)\n",
538 newpos);
539 return 0;
540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 /* This a jump; chase it. */
542 duprintf("Jump rule %u -> %u\n",
543 pos, newpos);
544 } else {
545 /* ... this is a fallthru */
546 newpos = pos + e->next_offset;
547 }
548 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800549 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 e->counters.pcnt = pos;
551 pos = newpos;
552 }
553 }
554 next:
555 duprintf("Finished chain %u\n", hook);
556 }
557 return 1;
558}
559
Denys Vlasenko022748a2008-01-14 23:44:05 -0800560static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561cleanup_match(struct ipt_entry_match *m, unsigned int *i)
562{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200563 struct xt_mtdtor_param par;
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (i && (*i)-- == 0)
566 return 1;
567
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200568 par.match = m->u.kernel.match;
569 par.matchinfo = m->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200570 par.family = NFPROTO_IPV4;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200571 if (par.match->destroy != NULL)
572 par.match->destroy(&par);
573 module_put(par.match->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 return 0;
575}
576
Denys Vlasenko022748a2008-01-14 23:44:05 -0800577static int
Dmitry Mishina96be242006-12-12 00:29:26 -0800578check_entry(struct ipt_entry *e, const char *name)
579{
580 struct ipt_entry_target *t;
581
582 if (!ip_checkentry(&e->ip)) {
583 duprintf("ip_tables: ip check failed %p %s.\n", e, name);
584 return -EINVAL;
585 }
586
Patrick McHardy9c547952007-12-17 21:52:00 -0800587 if (e->target_offset + sizeof(struct ipt_entry_target) >
588 e->next_offset)
Dmitry Mishina96be242006-12-12 00:29:26 -0800589 return -EINVAL;
590
591 t = ipt_get_target(e);
592 if (e->target_offset + t->u.target_size > e->next_offset)
593 return -EINVAL;
594
595 return 0;
596}
597
Denys Vlasenko022748a2008-01-14 23:44:05 -0800598static int
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200599check_match(struct ipt_entry_match *m, struct xt_mtchk_param *par,
600 unsigned int *i)
Dmitry Mishina96be242006-12-12 00:29:26 -0800601{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200602 const struct ipt_ip *ip = par->entryinfo;
Dmitry Mishina96be242006-12-12 00:29:26 -0800603 int ret;
604
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200605 par->match = m->u.kernel.match;
606 par->matchinfo = m->data;
607
Jan Engelhardt916a9172008-10-08 11:35:20 +0200608 ret = xt_check_match(par, m->u.match_size - sizeof(*m),
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200609 ip->proto, ip->invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200610 if (ret < 0) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800611 duprintf("ip_tables: check failed for `%s'.\n",
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200612 par.match->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200613 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800614 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200615 ++*i;
616 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800617}
618
Denys Vlasenko022748a2008-01-14 23:44:05 -0800619static int
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200620find_check_match(struct ipt_entry_match *m, struct xt_mtchk_param *par,
Patrick McHardy4b478242007-12-17 21:46:15 -0800621 unsigned int *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800623 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800624 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Harald Welte2e4e6a12006-01-12 13:30:04 -0800626 match = try_then_request_module(xt_find_match(AF_INET, m->u.user.name,
Patrick McHardy9c547952007-12-17 21:52:00 -0800627 m->u.user.revision),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 "ipt_%s", m->u.user.name);
629 if (IS_ERR(match) || !match) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800630 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return match ? PTR_ERR(match) : -ENOENT;
632 }
633 m->u.kernel.match = match;
634
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200635 ret = check_match(m, par, i);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800636 if (ret)
637 goto err;
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800640err:
641 module_put(m->u.kernel.match->me);
642 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644
Denys Vlasenko022748a2008-01-14 23:44:05 -0800645static int check_target(struct ipt_entry *e, const char *name)
Dmitry Mishina96be242006-12-12 00:29:26 -0800646{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200647 struct ipt_entry_target *t = ipt_get_target(e);
648 struct xt_tgchk_param par = {
649 .table = name,
650 .entryinfo = e,
651 .target = t->u.kernel.target,
652 .targinfo = t->data,
653 .hook_mask = e->comefrom,
Jan Engelhardt916a9172008-10-08 11:35:20 +0200654 .family = NFPROTO_IPV4,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200655 };
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900656 int ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800657
Jan Engelhardt916a9172008-10-08 11:35:20 +0200658 ret = xt_check_target(&par, t->u.target_size - sizeof(*t),
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200659 e->ip.proto, e->ip.invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200660 if (ret < 0) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800661 duprintf("ip_tables: check failed for `%s'.\n",
662 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200663 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800664 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200665 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800666}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Denys Vlasenko022748a2008-01-14 23:44:05 -0800668static int
Dmitry Mishina96be242006-12-12 00:29:26 -0800669find_check_entry(struct ipt_entry *e, const char *name, unsigned int size,
Patrick McHardy4b478242007-12-17 21:46:15 -0800670 unsigned int *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
672 struct ipt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800673 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 int ret;
675 unsigned int j;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200676 struct xt_mtchk_param mtpar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Dmitry Mishina96be242006-12-12 00:29:26 -0800678 ret = check_entry(e, name);
679 if (ret)
680 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 j = 0;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200683 mtpar.table = name;
684 mtpar.entryinfo = &e->ip;
685 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200686 mtpar.family = NFPROTO_IPV4;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200687 ret = IPT_MATCH_ITERATE(e, find_check_match, &mtpar, &j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (ret != 0)
689 goto cleanup_matches;
690
691 t = ipt_get_target(e);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800692 target = try_then_request_module(xt_find_target(AF_INET,
Patrick McHardy4b478242007-12-17 21:46:15 -0800693 t->u.user.name,
694 t->u.user.revision),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 "ipt_%s", t->u.user.name);
696 if (IS_ERR(target) || !target) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800697 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 ret = target ? PTR_ERR(target) : -ENOENT;
699 goto cleanup_matches;
700 }
701 t->u.kernel.target = target;
702
Dmitry Mishina96be242006-12-12 00:29:26 -0800703 ret = check_target(e, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800704 if (ret)
705 goto err;
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 (*i)++;
708 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800709 err:
710 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 cleanup_matches:
712 IPT_MATCH_ITERATE(e, cleanup_match, &j);
713 return ret;
714}
715
Denys Vlasenko022748a2008-01-14 23:44:05 -0800716static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717check_entry_size_and_hooks(struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800718 struct xt_table_info *newinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 unsigned char *base,
720 unsigned char *limit,
721 const unsigned int *hook_entries,
722 const unsigned int *underflows,
723 unsigned int *i)
724{
725 unsigned int h;
726
727 if ((unsigned long)e % __alignof__(struct ipt_entry) != 0
728 || (unsigned char *)e + sizeof(struct ipt_entry) >= limit) {
729 duprintf("Bad offset %p\n", e);
730 return -EINVAL;
731 }
732
733 if (e->next_offset
734 < sizeof(struct ipt_entry) + sizeof(struct ipt_entry_target)) {
735 duprintf("checking: element %p size %u\n",
736 e, e->next_offset);
737 return -EINVAL;
738 }
739
740 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800741 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if ((unsigned char *)e - base == hook_entries[h])
743 newinfo->hook_entry[h] = hook_entries[h];
744 if ((unsigned char *)e - base == underflows[h])
745 newinfo->underflow[h] = underflows[h];
746 }
747
748 /* FIXME: underflows must be unconditional, standard verdicts
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900749 < 0 (not IPT_RETURN). --RR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800752 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 e->comefrom = 0;
754
755 (*i)++;
756 return 0;
757}
758
Denys Vlasenko022748a2008-01-14 23:44:05 -0800759static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760cleanup_entry(struct ipt_entry *e, unsigned int *i)
761{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200762 struct xt_tgdtor_param par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 struct ipt_entry_target *t;
764
765 if (i && (*i)-- == 0)
766 return 1;
767
768 /* Cleanup all matches */
769 IPT_MATCH_ITERATE(e, cleanup_match, NULL);
770 t = ipt_get_target(e);
Jan Engelhardta2df1642008-10-08 11:35:19 +0200771
772 par.target = t->u.kernel.target;
773 par.targinfo = t->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200774 par.family = NFPROTO_IPV4;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200775 if (par.target->destroy != NULL)
776 par.target->destroy(&par);
777 module_put(par.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 return 0;
779}
780
781/* Checks and translates the user-supplied table segment (held in
782 newinfo) */
783static int
784translate_table(const char *name,
785 unsigned int valid_hooks,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800786 struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800787 void *entry0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 unsigned int size,
789 unsigned int number,
790 const unsigned int *hook_entries,
791 const unsigned int *underflows)
792{
793 unsigned int i;
794 int ret;
795
796 newinfo->size = size;
797 newinfo->number = number;
798
799 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800800 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 newinfo->hook_entry[i] = 0xFFFFFFFF;
802 newinfo->underflow[i] = 0xFFFFFFFF;
803 }
804
805 duprintf("translate_table: size %u\n", newinfo->size);
806 i = 0;
807 /* Walk through entries, checking offsets. */
Eric Dumazet31836062005-12-13 23:13:48 -0800808 ret = IPT_ENTRY_ITERATE(entry0, newinfo->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 check_entry_size_and_hooks,
810 newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800811 entry0,
812 entry0 + size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 hook_entries, underflows, &i);
814 if (ret != 0)
815 return ret;
816
817 if (i != number) {
818 duprintf("translate_table: %u not %u entries\n",
819 i, number);
820 return -EINVAL;
821 }
822
823 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800824 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 /* Only hooks which are valid */
826 if (!(valid_hooks & (1 << i)))
827 continue;
828 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
829 duprintf("Invalid hook entry %u %u\n",
830 i, hook_entries[i]);
831 return -EINVAL;
832 }
833 if (newinfo->underflow[i] == 0xFFFFFFFF) {
834 duprintf("Invalid underflow %u %u\n",
835 i, underflows[i]);
836 return -EINVAL;
837 }
838 }
839
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800840 if (!mark_source_chains(newinfo, valid_hooks, entry0))
841 return -ELOOP;
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 /* Finally, each sanity check must pass */
844 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -0800845 ret = IPT_ENTRY_ITERATE(entry0, newinfo->size,
Dmitry Mishina96be242006-12-12 00:29:26 -0800846 find_check_entry, name, size, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800848 if (ret != 0) {
849 IPT_ENTRY_ITERATE(entry0, newinfo->size,
850 cleanup_entry, &i);
851 return ret;
852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 /* And one copy for every other CPU */
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700855 for_each_possible_cpu(i) {
Eric Dumazet31836062005-12-13 23:13:48 -0800856 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
857 memcpy(newinfo->entries[i], entry0, newinfo->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
859
860 return ret;
861}
862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863/* Gets counters. */
864static inline int
865add_entry_to_counter(const struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800866 struct xt_counters total[],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 unsigned int *i)
868{
869 ADD_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
870
871 (*i)++;
872 return 0;
873}
874
Eric Dumazet31836062005-12-13 23:13:48 -0800875static inline int
876set_entry_to_counter(const struct ipt_entry *e,
877 struct ipt_counters total[],
878 unsigned int *i)
879{
880 SET_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
881
882 (*i)++;
883 return 0;
884}
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800887get_counters(const struct xt_table_info *t,
888 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
890 unsigned int cpu;
891 unsigned int i;
Eric Dumazet31836062005-12-13 23:13:48 -0800892 unsigned int curcpu;
893
894 /* Instead of clearing (by a previous call to memset())
895 * the counters and using adds, we set the counters
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700896 * with data used by 'current' CPU.
897 *
898 * Bottom half has to be disabled to prevent deadlock
899 * if new softirq were to run and call ipt_do_table
Eric Dumazet31836062005-12-13 23:13:48 -0800900 */
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700901 local_bh_disable();
902 curcpu = smp_processor_id();
Eric Dumazet31836062005-12-13 23:13:48 -0800903
904 i = 0;
905 IPT_ENTRY_ITERATE(t->entries[curcpu],
906 t->size,
907 set_entry_to_counter,
908 counters,
909 &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700911 for_each_possible_cpu(cpu) {
Eric Dumazet31836062005-12-13 23:13:48 -0800912 if (cpu == curcpu)
913 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 i = 0;
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700915 xt_info_wrlock(cpu);
Eric Dumazet31836062005-12-13 23:13:48 -0800916 IPT_ENTRY_ITERATE(t->entries[cpu],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 t->size,
918 add_entry_to_counter,
919 counters,
920 &i);
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700921 xt_info_wrunlock(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
Stephen Hemminger78454472009-02-20 10:35:32 +0100923 local_bh_enable();
924}
925
Denys Vlasenko022748a2008-01-14 23:44:05 -0800926static struct xt_counters * alloc_counters(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Dmitry Mishin27229712006-04-01 02:25:19 -0800928 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800929 struct xt_counters *counters;
Stephen Hemminger78454472009-02-20 10:35:32 +0100930 struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 /* We need atomic snapshot of counters: rest doesn't change
933 (other than comefrom, which userspace doesn't care
934 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800935 countersize = sizeof(struct xt_counters) * private->number;
Eric Dumazet31836062005-12-13 23:13:48 -0800936 counters = vmalloc_node(countersize, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 if (counters == NULL)
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700939 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700941 get_counters(private, counters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Dmitry Mishin27229712006-04-01 02:25:19 -0800943 return counters;
944}
945
946static int
947copy_entries_to_user(unsigned int total_size,
Jan Engelhardte60a13e2007-02-07 15:12:33 -0800948 struct xt_table *table,
Dmitry Mishin27229712006-04-01 02:25:19 -0800949 void __user *userptr)
950{
951 unsigned int off, num;
952 struct ipt_entry *e;
953 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200954 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -0800955 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200956 const void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -0800957
958 counters = alloc_counters(table);
959 if (IS_ERR(counters))
960 return PTR_ERR(counters);
961
Eric Dumazet31836062005-12-13 23:13:48 -0800962 /* choose the copy that is on our node/cpu, ...
963 * This choice is lazy (because current thread is
964 * allowed to migrate to another cpu)
965 */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800966 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -0800967 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 ret = -EFAULT;
969 goto free_counters;
970 }
971
972 /* FIXME: use iterator macros --RR */
973 /* ... then go back and fix counters and names */
974 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
975 unsigned int i;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200976 const struct ipt_entry_match *m;
977 const struct ipt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Eric Dumazet31836062005-12-13 23:13:48 -0800979 e = (struct ipt_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 if (copy_to_user(userptr + off
981 + offsetof(struct ipt_entry, counters),
982 &counters[num],
983 sizeof(counters[num])) != 0) {
984 ret = -EFAULT;
985 goto free_counters;
986 }
987
988 for (i = sizeof(struct ipt_entry);
989 i < e->target_offset;
990 i += m->u.match_size) {
991 m = (void *)e + i;
992
993 if (copy_to_user(userptr + off + i
994 + offsetof(struct ipt_entry_match,
995 u.user.name),
996 m->u.kernel.match->name,
997 strlen(m->u.kernel.match->name)+1)
998 != 0) {
999 ret = -EFAULT;
1000 goto free_counters;
1001 }
1002 }
1003
1004 t = ipt_get_target(e);
1005 if (copy_to_user(userptr + off + e->target_offset
1006 + offsetof(struct ipt_entry_target,
1007 u.user.name),
1008 t->u.kernel.target->name,
1009 strlen(t->u.kernel.target->name)+1) != 0) {
1010 ret = -EFAULT;
1011 goto free_counters;
1012 }
1013 }
1014
1015 free_counters:
1016 vfree(counters);
1017 return ret;
1018}
1019
Dmitry Mishin27229712006-04-01 02:25:19 -08001020#ifdef CONFIG_COMPAT
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001021static void compat_standard_from_user(void *dst, void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001022{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001023 int v = *(compat_int_t *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001024
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001025 if (v > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001026 v += xt_compat_calc_jump(AF_INET, v);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001027 memcpy(dst, &v, sizeof(v));
1028}
1029
1030static int compat_standard_to_user(void __user *dst, void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001031{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001032 compat_int_t cv = *(int *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001033
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001034 if (cv > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001035 cv -= xt_compat_calc_jump(AF_INET, cv);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001036 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001037}
1038
1039static inline int
Patrick McHardy4b478242007-12-17 21:46:15 -08001040compat_calc_match(struct ipt_entry_match *m, int *size)
Dmitry Mishin27229712006-04-01 02:25:19 -08001041{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001042 *size += xt_compat_match_offset(m->u.kernel.match);
Dmitry Mishin27229712006-04-01 02:25:19 -08001043 return 0;
1044}
1045
Eric Dumazet259d4e42007-12-04 23:24:56 -08001046static int compat_calc_entry(struct ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001047 const struct xt_table_info *info,
1048 void *base, struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001049{
1050 struct ipt_entry_target *t;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001051 unsigned int entry_offset;
Dmitry Mishin27229712006-04-01 02:25:19 -08001052 int off, i, ret;
1053
Patrick McHardy30c08c42007-12-17 21:47:14 -08001054 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001055 entry_offset = (void *)e - base;
1056 IPT_MATCH_ITERATE(e, compat_calc_match, &off);
1057 t = ipt_get_target(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001058 off += xt_compat_target_offset(t->u.kernel.target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001059 newinfo->size -= off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001060 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001061 if (ret)
1062 return ret;
1063
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001064 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Patrick McHardy4b478242007-12-17 21:46:15 -08001065 if (info->hook_entry[i] &&
1066 (e < (struct ipt_entry *)(base + info->hook_entry[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001067 newinfo->hook_entry[i] -= off;
Patrick McHardy4b478242007-12-17 21:46:15 -08001068 if (info->underflow[i] &&
1069 (e < (struct ipt_entry *)(base + info->underflow[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001070 newinfo->underflow[i] -= off;
1071 }
1072 return 0;
1073}
1074
Eric Dumazet259d4e42007-12-04 23:24:56 -08001075static int compat_table_info(const struct xt_table_info *info,
Patrick McHardy4b478242007-12-17 21:46:15 -08001076 struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001077{
1078 void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -08001079
1080 if (!newinfo || !info)
1081 return -EINVAL;
1082
Eric Dumazet259d4e42007-12-04 23:24:56 -08001083 /* we dont care about newinfo->entries[] */
1084 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1085 newinfo->initial_entries = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001086 loc_cpu_entry = info->entries[raw_smp_processor_id()];
1087 return IPT_ENTRY_ITERATE(loc_cpu_entry, info->size,
Patrick McHardy4b478242007-12-17 21:46:15 -08001088 compat_calc_entry, info, loc_cpu_entry,
1089 newinfo);
Dmitry Mishin27229712006-04-01 02:25:19 -08001090}
1091#endif
1092
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001093static int get_info(struct net *net, void __user *user, int *len, int compat)
Dmitry Mishin27229712006-04-01 02:25:19 -08001094{
1095 char name[IPT_TABLE_MAXNAMELEN];
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001096 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001097 int ret;
1098
1099 if (*len != sizeof(struct ipt_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001100 duprintf("length %u != %zu\n", *len,
1101 sizeof(struct ipt_getinfo));
Dmitry Mishin27229712006-04-01 02:25:19 -08001102 return -EINVAL;
1103 }
1104
1105 if (copy_from_user(name, user, sizeof(name)) != 0)
1106 return -EFAULT;
1107
1108 name[IPT_TABLE_MAXNAMELEN-1] = '\0';
1109#ifdef CONFIG_COMPAT
1110 if (compat)
1111 xt_compat_lock(AF_INET);
1112#endif
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001113 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Patrick McHardy4b478242007-12-17 21:46:15 -08001114 "iptable_%s", name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001115 if (t && !IS_ERR(t)) {
1116 struct ipt_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001117 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001118
1119#ifdef CONFIG_COMPAT
1120 if (compat) {
1121 struct xt_table_info tmp;
1122 ret = compat_table_info(private, &tmp);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001123 xt_compat_flush_offsets(AF_INET);
Patrick McHardy4b478242007-12-17 21:46:15 -08001124 private = &tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001125 }
1126#endif
1127 info.valid_hooks = t->valid_hooks;
1128 memcpy(info.hook_entry, private->hook_entry,
Patrick McHardy4b478242007-12-17 21:46:15 -08001129 sizeof(info.hook_entry));
Dmitry Mishin27229712006-04-01 02:25:19 -08001130 memcpy(info.underflow, private->underflow,
Patrick McHardy4b478242007-12-17 21:46:15 -08001131 sizeof(info.underflow));
Dmitry Mishin27229712006-04-01 02:25:19 -08001132 info.num_entries = private->number;
1133 info.size = private->size;
1134 strcpy(info.name, name);
1135
1136 if (copy_to_user(user, &info, *len) != 0)
1137 ret = -EFAULT;
1138 else
1139 ret = 0;
1140
1141 xt_table_unlock(t);
1142 module_put(t->me);
1143 } else
1144 ret = t ? PTR_ERR(t) : -ENOENT;
1145#ifdef CONFIG_COMPAT
1146 if (compat)
1147 xt_compat_unlock(AF_INET);
1148#endif
1149 return ret;
1150}
1151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001153get_entries(struct net *net, struct ipt_get_entries __user *uptr, int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
1155 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001156 struct ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001157 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Dmitry Mishin27229712006-04-01 02:25:19 -08001159 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001160 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001161 return -EINVAL;
1162 }
1163 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1164 return -EFAULT;
1165 if (*len != sizeof(struct ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001166 duprintf("get_entries: %u != %zu\n",
1167 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001168 return -EINVAL;
1169 }
1170
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001171 t = xt_find_table_lock(net, AF_INET, get.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001173 const struct xt_table_info *private = t->private;
Patrick McHardy9c547952007-12-17 21:52:00 -08001174 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001175 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001176 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 t, uptr->entrytable);
1178 else {
1179 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001180 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001181 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
1183 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001184 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 } else
1186 ret = t ? PTR_ERR(t) : -ENOENT;
1187
1188 return ret;
1189}
1190
1191static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001192__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001193 struct xt_table_info *newinfo, unsigned int num_counters,
1194 void __user *counters_ptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001195{
1196 int ret;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001197 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001198 struct xt_table_info *oldinfo;
1199 struct xt_counters *counters;
1200 void *loc_cpu_old_entry;
1201
1202 ret = 0;
1203 counters = vmalloc(num_counters * sizeof(struct xt_counters));
1204 if (!counters) {
1205 ret = -ENOMEM;
1206 goto out;
1207 }
1208
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001209 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Dmitry Mishin27229712006-04-01 02:25:19 -08001210 "iptable_%s", name);
1211 if (!t || IS_ERR(t)) {
1212 ret = t ? PTR_ERR(t) : -ENOENT;
1213 goto free_newinfo_counters_untrans;
1214 }
1215
1216 /* You lied! */
1217 if (valid_hooks != t->valid_hooks) {
1218 duprintf("Valid hook crap: %08X vs %08X\n",
1219 valid_hooks, t->valid_hooks);
1220 ret = -EINVAL;
1221 goto put_module;
1222 }
1223
1224 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1225 if (!oldinfo)
1226 goto put_module;
1227
1228 /* Update module usage count based on number of rules */
1229 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1230 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1231 if ((oldinfo->number > oldinfo->initial_entries) ||
1232 (newinfo->number <= oldinfo->initial_entries))
1233 module_put(t->me);
1234 if ((oldinfo->number > oldinfo->initial_entries) &&
1235 (newinfo->number <= oldinfo->initial_entries))
1236 module_put(t->me);
1237
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001238 /* Get the old counters, and synchronize with replace */
Dmitry Mishin27229712006-04-01 02:25:19 -08001239 get_counters(oldinfo, counters);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001240
Dmitry Mishin27229712006-04-01 02:25:19 -08001241 /* Decrease module usage counts and free resource */
1242 loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
Patrick McHardy4b478242007-12-17 21:46:15 -08001243 IPT_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry,
1244 NULL);
Dmitry Mishin27229712006-04-01 02:25:19 -08001245 xt_free_table_info(oldinfo);
1246 if (copy_to_user(counters_ptr, counters,
1247 sizeof(struct xt_counters) * num_counters) != 0)
1248 ret = -EFAULT;
1249 vfree(counters);
1250 xt_table_unlock(t);
1251 return ret;
1252
1253 put_module:
1254 module_put(t->me);
1255 xt_table_unlock(t);
1256 free_newinfo_counters_untrans:
1257 vfree(counters);
1258 out:
1259 return ret;
1260}
1261
1262static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001263do_replace(struct net *net, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
1265 int ret;
1266 struct ipt_replace tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001267 struct xt_table_info *newinfo;
1268 void *loc_cpu_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1271 return -EFAULT;
1272
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001273 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001274 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1275 return -ENOMEM;
1276
Harald Welte2e4e6a12006-01-12 13:30:04 -08001277 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 if (!newinfo)
1279 return -ENOMEM;
1280
Patrick McHardy9c547952007-12-17 21:52:00 -08001281 /* choose the copy that is on our node/cpu */
Eric Dumazet31836062005-12-13 23:13:48 -08001282 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1283 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 tmp.size) != 0) {
1285 ret = -EFAULT;
1286 goto free_newinfo;
1287 }
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 ret = translate_table(tmp.name, tmp.valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08001290 newinfo, loc_cpu_entry, tmp.size, tmp.num_entries,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 tmp.hook_entry, tmp.underflow);
1292 if (ret != 0)
Dmitry Mishin27229712006-04-01 02:25:19 -08001293 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295 duprintf("ip_tables: Translated table\n");
1296
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001297 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001298 tmp.num_counters, tmp.counters);
Dmitry Mishin27229712006-04-01 02:25:19 -08001299 if (ret)
1300 goto free_newinfo_untrans;
1301 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Dmitry Mishin27229712006-04-01 02:25:19 -08001303 free_newinfo_untrans:
Patrick McHardy9c547952007-12-17 21:52:00 -08001304 IPT_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001306 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 return ret;
1308}
1309
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001310/* We're lazy, and add to the first CPU; overflow works its fey magic
1311 * and everything is OK. */
1312static int
1313add_counter_to_entry(struct ipt_entry *e,
1314 const struct xt_counters addme[],
1315 unsigned int *i)
1316{
1317 ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt);
1318
1319 (*i)++;
1320 return 0;
1321}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001324do_add_counters(struct net *net, void __user *user, unsigned int len, int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001326 unsigned int i, curcpu;
Dmitry Mishin27229712006-04-01 02:25:19 -08001327 struct xt_counters_info tmp;
1328 struct xt_counters *paddc;
1329 unsigned int num_counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001330 const char *name;
Dmitry Mishin27229712006-04-01 02:25:19 -08001331 int size;
1332 void *ptmp;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001333 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001334 const struct xt_table_info *private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 int ret = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001336 void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -08001337#ifdef CONFIG_COMPAT
1338 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Dmitry Mishin27229712006-04-01 02:25:19 -08001340 if (compat) {
1341 ptmp = &compat_tmp;
1342 size = sizeof(struct compat_xt_counters_info);
1343 } else
1344#endif
1345 {
1346 ptmp = &tmp;
1347 size = sizeof(struct xt_counters_info);
1348 }
1349
1350 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 return -EFAULT;
1352
Dmitry Mishin27229712006-04-01 02:25:19 -08001353#ifdef CONFIG_COMPAT
1354 if (compat) {
1355 num_counters = compat_tmp.num_counters;
1356 name = compat_tmp.name;
1357 } else
1358#endif
1359 {
1360 num_counters = tmp.num_counters;
1361 name = tmp.name;
1362 }
1363
1364 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 return -EINVAL;
1366
Dmitry Mishin27229712006-04-01 02:25:19 -08001367 paddc = vmalloc_node(len - size, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 if (!paddc)
1369 return -ENOMEM;
1370
Dmitry Mishin27229712006-04-01 02:25:19 -08001371 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 ret = -EFAULT;
1373 goto free;
1374 }
1375
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001376 t = xt_find_table_lock(net, AF_INET, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 if (!t || IS_ERR(t)) {
1378 ret = t ? PTR_ERR(t) : -ENOENT;
1379 goto free;
1380 }
1381
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001382 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001383 private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001384 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 ret = -EINVAL;
1386 goto unlock_up_free;
1387 }
1388
1389 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001390 /* Choose the copy that is on our node */
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001391 curcpu = smp_processor_id();
1392 loc_cpu_entry = private->entries[curcpu];
1393 xt_info_wrlock(curcpu);
Eric Dumazet31836062005-12-13 23:13:48 -08001394 IPT_ENTRY_ITERATE(loc_cpu_entry,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001395 private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 add_counter_to_entry,
Dmitry Mishin27229712006-04-01 02:25:19 -08001397 paddc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 &i);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001399 xt_info_wrunlock(curcpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 unlock_up_free:
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001401 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001402 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 module_put(t->me);
1404 free:
1405 vfree(paddc);
1406
1407 return ret;
1408}
1409
Dmitry Mishin27229712006-04-01 02:25:19 -08001410#ifdef CONFIG_COMPAT
1411struct compat_ipt_replace {
1412 char name[IPT_TABLE_MAXNAMELEN];
1413 u32 valid_hooks;
1414 u32 num_entries;
1415 u32 size;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001416 u32 hook_entry[NF_INET_NUMHOOKS];
1417 u32 underflow[NF_INET_NUMHOOKS];
Dmitry Mishin27229712006-04-01 02:25:19 -08001418 u32 num_counters;
1419 compat_uptr_t counters; /* struct ipt_counters * */
1420 struct compat_ipt_entry entries[0];
1421};
1422
Patrick McHardya18aa312007-12-12 10:35:16 -08001423static int
1424compat_copy_entry_to_user(struct ipt_entry *e, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001425 unsigned int *size, struct xt_counters *counters,
Patrick McHardya18aa312007-12-12 10:35:16 -08001426 unsigned int *i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001427{
Al Viro3e597c62006-09-24 23:42:20 +01001428 struct ipt_entry_target *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001429 struct compat_ipt_entry __user *ce;
1430 u_int16_t target_offset, next_offset;
1431 compat_uint_t origsize;
1432 int ret;
1433
1434 ret = -EFAULT;
1435 origsize = *size;
1436 ce = (struct compat_ipt_entry __user *)*dstptr;
Patrick McHardy78000072006-05-03 23:20:27 -07001437 if (copy_to_user(ce, e, sizeof(struct ipt_entry)))
Dmitry Mishin27229712006-04-01 02:25:19 -08001438 goto out;
1439
Patrick McHardya18aa312007-12-12 10:35:16 -08001440 if (copy_to_user(&ce->counters, &counters[*i], sizeof(counters[*i])))
1441 goto out;
1442
Dmitry Mishin27229712006-04-01 02:25:19 -08001443 *dstptr += sizeof(struct compat_ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001444 *size -= sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1445
Patrick McHardyac8e27f2007-12-17 21:45:52 -08001446 ret = IPT_MATCH_ITERATE(e, xt_compat_match_to_user, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001447 target_offset = e->target_offset - (origsize - *size);
1448 if (ret)
1449 goto out;
1450 t = ipt_get_target(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001451 ret = xt_compat_target_to_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001452 if (ret)
1453 goto out;
1454 ret = -EFAULT;
1455 next_offset = e->next_offset - (origsize - *size);
Patrick McHardy78000072006-05-03 23:20:27 -07001456 if (put_user(target_offset, &ce->target_offset))
Dmitry Mishin27229712006-04-01 02:25:19 -08001457 goto out;
Patrick McHardy78000072006-05-03 23:20:27 -07001458 if (put_user(next_offset, &ce->next_offset))
Dmitry Mishin27229712006-04-01 02:25:19 -08001459 goto out;
Patrick McHardya18aa312007-12-12 10:35:16 -08001460
1461 (*i)++;
Dmitry Mishin27229712006-04-01 02:25:19 -08001462 return 0;
1463out:
1464 return ret;
1465}
1466
Denys Vlasenko022748a2008-01-14 23:44:05 -08001467static int
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001468compat_find_calc_match(struct ipt_entry_match *m,
Patrick McHardy4b478242007-12-17 21:46:15 -08001469 const char *name,
1470 const struct ipt_ip *ip,
1471 unsigned int hookmask,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001472 int *size, unsigned int *i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001473{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001474 struct xt_match *match;
Dmitry Mishin27229712006-04-01 02:25:19 -08001475
1476 match = try_then_request_module(xt_find_match(AF_INET, m->u.user.name,
Patrick McHardy4b478242007-12-17 21:46:15 -08001477 m->u.user.revision),
Dmitry Mishin27229712006-04-01 02:25:19 -08001478 "ipt_%s", m->u.user.name);
1479 if (IS_ERR(match) || !match) {
1480 duprintf("compat_check_calc_match: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001481 m->u.user.name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001482 return match ? PTR_ERR(match) : -ENOENT;
1483 }
1484 m->u.kernel.match = match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001485 *size += xt_compat_match_offset(match);
Dmitry Mishin27229712006-04-01 02:25:19 -08001486
1487 (*i)++;
1488 return 0;
1489}
1490
Denys Vlasenko022748a2008-01-14 23:44:05 -08001491static int
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001492compat_release_match(struct ipt_entry_match *m, unsigned int *i)
1493{
1494 if (i && (*i)-- == 0)
1495 return 1;
1496
1497 module_put(m->u.kernel.match->me);
1498 return 0;
1499}
1500
Denys Vlasenko022748a2008-01-14 23:44:05 -08001501static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001502compat_release_entry(struct compat_ipt_entry *e, unsigned int *i)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001503{
1504 struct ipt_entry_target *t;
1505
1506 if (i && (*i)-- == 0)
1507 return 1;
1508
1509 /* Cleanup all matches */
Patrick McHardy73cd5982007-12-17 21:47:32 -08001510 COMPAT_IPT_MATCH_ITERATE(e, compat_release_match, NULL);
1511 t = compat_ipt_get_target(e);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001512 module_put(t->u.kernel.target->me);
1513 return 0;
1514}
1515
Denys Vlasenko022748a2008-01-14 23:44:05 -08001516static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001517check_compat_entry_size_and_hooks(struct compat_ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001518 struct xt_table_info *newinfo,
1519 unsigned int *size,
1520 unsigned char *base,
1521 unsigned char *limit,
1522 unsigned int *hook_entries,
1523 unsigned int *underflows,
1524 unsigned int *i,
1525 const char *name)
Dmitry Mishin27229712006-04-01 02:25:19 -08001526{
1527 struct ipt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001528 struct xt_target *target;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001529 unsigned int entry_offset;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001530 unsigned int j;
1531 int ret, off, h;
Dmitry Mishin27229712006-04-01 02:25:19 -08001532
1533 duprintf("check_compat_entry_size_and_hooks %p\n", e);
1534 if ((unsigned long)e % __alignof__(struct compat_ipt_entry) != 0
1535 || (unsigned char *)e + sizeof(struct compat_ipt_entry) >= limit) {
1536 duprintf("Bad offset %p, limit = %p\n", e, limit);
1537 return -EINVAL;
1538 }
1539
1540 if (e->next_offset < sizeof(struct compat_ipt_entry) +
Patrick McHardy4b478242007-12-17 21:46:15 -08001541 sizeof(struct compat_xt_entry_target)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001542 duprintf("checking: element %p size %u\n",
1543 e, e->next_offset);
1544 return -EINVAL;
1545 }
1546
Patrick McHardy73cd5982007-12-17 21:47:32 -08001547 /* For purposes of check_entry casting the compat entry is fine */
1548 ret = check_entry((struct ipt_entry *)e, name);
Dmitry Mishina96be242006-12-12 00:29:26 -08001549 if (ret)
1550 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -08001551
Patrick McHardy30c08c42007-12-17 21:47:14 -08001552 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001553 entry_offset = (void *)e - (void *)base;
1554 j = 0;
Patrick McHardy73cd5982007-12-17 21:47:32 -08001555 ret = COMPAT_IPT_MATCH_ITERATE(e, compat_find_calc_match, name,
1556 &e->ip, e->comefrom, &off, &j);
Dmitry Mishin27229712006-04-01 02:25:19 -08001557 if (ret != 0)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001558 goto release_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001559
Patrick McHardy73cd5982007-12-17 21:47:32 -08001560 t = compat_ipt_get_target(e);
Dmitry Mishin27229712006-04-01 02:25:19 -08001561 target = try_then_request_module(xt_find_target(AF_INET,
Patrick McHardy4b478242007-12-17 21:46:15 -08001562 t->u.user.name,
1563 t->u.user.revision),
Dmitry Mishin27229712006-04-01 02:25:19 -08001564 "ipt_%s", t->u.user.name);
1565 if (IS_ERR(target) || !target) {
Dmitry Mishina96be242006-12-12 00:29:26 -08001566 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001567 t->u.user.name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001568 ret = target ? PTR_ERR(target) : -ENOENT;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001569 goto release_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001570 }
1571 t->u.kernel.target = target;
1572
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001573 off += xt_compat_target_offset(target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001574 *size += off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001575 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001576 if (ret)
1577 goto out;
1578
1579 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001580 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001581 if ((unsigned char *)e - base == hook_entries[h])
1582 newinfo->hook_entry[h] = hook_entries[h];
1583 if ((unsigned char *)e - base == underflows[h])
1584 newinfo->underflow[h] = underflows[h];
1585 }
1586
1587 /* Clear counters and comefrom */
Patrick McHardy73cd5982007-12-17 21:47:32 -08001588 memset(&e->counters, 0, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001589 e->comefrom = 0;
1590
1591 (*i)++;
1592 return 0;
Patrick McHardybec71b12006-09-20 12:04:08 -07001593
Dmitry Mishin27229712006-04-01 02:25:19 -08001594out:
Patrick McHardybec71b12006-09-20 12:04:08 -07001595 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001596release_matches:
1597 IPT_MATCH_ITERATE(e, compat_release_match, &j);
Dmitry Mishin27229712006-04-01 02:25:19 -08001598 return ret;
1599}
1600
Patrick McHardy4b478242007-12-17 21:46:15 -08001601static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001602compat_copy_entry_from_user(struct compat_ipt_entry *e, void **dstptr,
Patrick McHardy4b478242007-12-17 21:46:15 -08001603 unsigned int *size, const char *name,
1604 struct xt_table_info *newinfo, unsigned char *base)
Dmitry Mishin27229712006-04-01 02:25:19 -08001605{
1606 struct ipt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001607 struct xt_target *target;
Dmitry Mishin27229712006-04-01 02:25:19 -08001608 struct ipt_entry *de;
1609 unsigned int origsize;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001610 int ret, h;
Dmitry Mishin27229712006-04-01 02:25:19 -08001611
1612 ret = 0;
1613 origsize = *size;
1614 de = (struct ipt_entry *)*dstptr;
1615 memcpy(de, e, sizeof(struct ipt_entry));
Patrick McHardy73cd5982007-12-17 21:47:32 -08001616 memcpy(&de->counters, &e->counters, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001617
Patrick McHardy73cd5982007-12-17 21:47:32 -08001618 *dstptr += sizeof(struct ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001619 *size += sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1620
Patrick McHardy73cd5982007-12-17 21:47:32 -08001621 ret = COMPAT_IPT_MATCH_ITERATE(e, xt_compat_match_from_user,
1622 dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001623 if (ret)
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001624 return ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001625 de->target_offset = e->target_offset - (origsize - *size);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001626 t = compat_ipt_get_target(e);
Dmitry Mishin27229712006-04-01 02:25:19 -08001627 target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001628 xt_compat_target_from_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001629
1630 de->next_offset = e->next_offset - (origsize - *size);
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001631 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001632 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1633 newinfo->hook_entry[h] -= origsize - *size;
1634 if ((unsigned char *)de - base < newinfo->underflow[h])
1635 newinfo->underflow[h] -= origsize - *size;
1636 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001637 return ret;
1638}
Dmitry Mishin27229712006-04-01 02:25:19 -08001639
Denys Vlasenko022748a2008-01-14 23:44:05 -08001640static int
1641compat_check_entry(struct ipt_entry *e, const char *name,
Patrick McHardy4b478242007-12-17 21:46:15 -08001642 unsigned int *i)
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001643{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001644 struct xt_mtchk_param mtpar;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001645 unsigned int j;
1646 int ret;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001647
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001648 j = 0;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001649 mtpar.table = name;
1650 mtpar.entryinfo = &e->ip;
1651 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +02001652 mtpar.family = NFPROTO_IPV4;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001653 ret = IPT_MATCH_ITERATE(e, check_match, &mtpar, &j);
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001654 if (ret)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001655 goto cleanup_matches;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001656
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001657 ret = check_target(e, name);
1658 if (ret)
1659 goto cleanup_matches;
1660
1661 (*i)++;
1662 return 0;
1663
1664 cleanup_matches:
1665 IPT_MATCH_ITERATE(e, cleanup_match, &j);
1666 return ret;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001667}
1668
Dmitry Mishin27229712006-04-01 02:25:19 -08001669static int
1670translate_compat_table(const char *name,
Patrick McHardy4b478242007-12-17 21:46:15 -08001671 unsigned int valid_hooks,
1672 struct xt_table_info **pinfo,
1673 void **pentry0,
1674 unsigned int total_size,
1675 unsigned int number,
1676 unsigned int *hook_entries,
1677 unsigned int *underflows)
Dmitry Mishin27229712006-04-01 02:25:19 -08001678{
Dmitry Mishin920b8682006-10-30 15:14:27 -08001679 unsigned int i, j;
Dmitry Mishin27229712006-04-01 02:25:19 -08001680 struct xt_table_info *newinfo, *info;
1681 void *pos, *entry0, *entry1;
1682 unsigned int size;
1683 int ret;
1684
1685 info = *pinfo;
1686 entry0 = *pentry0;
1687 size = total_size;
1688 info->number = number;
1689
1690 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001691 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001692 info->hook_entry[i] = 0xFFFFFFFF;
1693 info->underflow[i] = 0xFFFFFFFF;
1694 }
1695
1696 duprintf("translate_compat_table: size %u\n", info->size);
Dmitry Mishin920b8682006-10-30 15:14:27 -08001697 j = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001698 xt_compat_lock(AF_INET);
1699 /* Walk through entries, checking offsets. */
Patrick McHardy73cd5982007-12-17 21:47:32 -08001700 ret = COMPAT_IPT_ENTRY_ITERATE(entry0, total_size,
1701 check_compat_entry_size_and_hooks,
1702 info, &size, entry0,
1703 entry0 + total_size,
1704 hook_entries, underflows, &j, name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001705 if (ret != 0)
1706 goto out_unlock;
1707
1708 ret = -EINVAL;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001709 if (j != number) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001710 duprintf("translate_compat_table: %u not %u entries\n",
Dmitry Mishin920b8682006-10-30 15:14:27 -08001711 j, number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001712 goto out_unlock;
1713 }
1714
1715 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001716 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001717 /* Only hooks which are valid */
1718 if (!(valid_hooks & (1 << i)))
1719 continue;
1720 if (info->hook_entry[i] == 0xFFFFFFFF) {
1721 duprintf("Invalid hook entry %u %u\n",
1722 i, hook_entries[i]);
1723 goto out_unlock;
1724 }
1725 if (info->underflow[i] == 0xFFFFFFFF) {
1726 duprintf("Invalid underflow %u %u\n",
1727 i, underflows[i]);
1728 goto out_unlock;
1729 }
1730 }
1731
1732 ret = -ENOMEM;
1733 newinfo = xt_alloc_table_info(size);
1734 if (!newinfo)
1735 goto out_unlock;
1736
1737 newinfo->number = number;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001738 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001739 newinfo->hook_entry[i] = info->hook_entry[i];
1740 newinfo->underflow[i] = info->underflow[i];
1741 }
1742 entry1 = newinfo->entries[raw_smp_processor_id()];
1743 pos = entry1;
Patrick McHardy4b478242007-12-17 21:46:15 -08001744 size = total_size;
Patrick McHardy73cd5982007-12-17 21:47:32 -08001745 ret = COMPAT_IPT_ENTRY_ITERATE(entry0, total_size,
Patrick McHardy9c547952007-12-17 21:52:00 -08001746 compat_copy_entry_from_user,
1747 &pos, &size, name, newinfo, entry1);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001748 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001749 xt_compat_unlock(AF_INET);
1750 if (ret)
1751 goto free_newinfo;
1752
1753 ret = -ELOOP;
1754 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1755 goto free_newinfo;
1756
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001757 i = 0;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001758 ret = IPT_ENTRY_ITERATE(entry1, newinfo->size, compat_check_entry,
Patrick McHardy4b478242007-12-17 21:46:15 -08001759 name, &i);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001760 if (ret) {
1761 j -= i;
Patrick McHardy73cd5982007-12-17 21:47:32 -08001762 COMPAT_IPT_ENTRY_ITERATE_CONTINUE(entry0, newinfo->size, i,
1763 compat_release_entry, &j);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001764 IPT_ENTRY_ITERATE(entry1, newinfo->size, cleanup_entry, &i);
1765 xt_free_table_info(newinfo);
1766 return ret;
1767 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001768
Dmitry Mishin27229712006-04-01 02:25:19 -08001769 /* And one copy for every other CPU */
Andrew Mortonfb1bb342006-06-25 05:46:43 -07001770 for_each_possible_cpu(i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001771 if (newinfo->entries[i] && newinfo->entries[i] != entry1)
1772 memcpy(newinfo->entries[i], entry1, newinfo->size);
1773
1774 *pinfo = newinfo;
1775 *pentry0 = entry1;
1776 xt_free_table_info(info);
1777 return 0;
1778
1779free_newinfo:
1780 xt_free_table_info(newinfo);
1781out:
Patrick McHardy73cd5982007-12-17 21:47:32 -08001782 COMPAT_IPT_ENTRY_ITERATE(entry0, total_size, compat_release_entry, &j);
Dmitry Mishin27229712006-04-01 02:25:19 -08001783 return ret;
1784out_unlock:
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001785 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001786 xt_compat_unlock(AF_INET);
1787 goto out;
1788}
1789
1790static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001791compat_do_replace(struct net *net, void __user *user, unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001792{
1793 int ret;
1794 struct compat_ipt_replace tmp;
1795 struct xt_table_info *newinfo;
1796 void *loc_cpu_entry;
1797
1798 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1799 return -EFAULT;
1800
Dmitry Mishin27229712006-04-01 02:25:19 -08001801 /* overflow check */
Eric Dumazet259d4e42007-12-04 23:24:56 -08001802 if (tmp.size >= INT_MAX / num_possible_cpus())
Dmitry Mishin27229712006-04-01 02:25:19 -08001803 return -ENOMEM;
1804 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1805 return -ENOMEM;
1806
1807 newinfo = xt_alloc_table_info(tmp.size);
1808 if (!newinfo)
1809 return -ENOMEM;
1810
Patrick McHardy9c547952007-12-17 21:52:00 -08001811 /* choose the copy that is on our node/cpu */
Dmitry Mishin27229712006-04-01 02:25:19 -08001812 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1813 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1814 tmp.size) != 0) {
1815 ret = -EFAULT;
1816 goto free_newinfo;
1817 }
1818
1819 ret = translate_compat_table(tmp.name, tmp.valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001820 &newinfo, &loc_cpu_entry, tmp.size,
1821 tmp.num_entries, tmp.hook_entry,
1822 tmp.underflow);
Dmitry Mishin27229712006-04-01 02:25:19 -08001823 if (ret != 0)
1824 goto free_newinfo;
1825
1826 duprintf("compat_do_replace: Translated table\n");
1827
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001828 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001829 tmp.num_counters, compat_ptr(tmp.counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001830 if (ret)
1831 goto free_newinfo_untrans;
1832 return 0;
1833
1834 free_newinfo_untrans:
Patrick McHardy4b478242007-12-17 21:46:15 -08001835 IPT_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
Dmitry Mishin27229712006-04-01 02:25:19 -08001836 free_newinfo:
1837 xt_free_table_info(newinfo);
1838 return ret;
1839}
1840
1841static int
1842compat_do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user,
Patrick McHardy4b478242007-12-17 21:46:15 -08001843 unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001844{
1845 int ret;
1846
1847 if (!capable(CAP_NET_ADMIN))
1848 return -EPERM;
1849
1850 switch (cmd) {
1851 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001852 ret = compat_do_replace(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001853 break;
1854
1855 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001856 ret = do_add_counters(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001857 break;
1858
1859 default:
1860 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1861 ret = -EINVAL;
1862 }
1863
1864 return ret;
1865}
1866
Patrick McHardy4b478242007-12-17 21:46:15 -08001867struct compat_ipt_get_entries {
Dmitry Mishin27229712006-04-01 02:25:19 -08001868 char name[IPT_TABLE_MAXNAMELEN];
1869 compat_uint_t size;
1870 struct compat_ipt_entry entrytable[0];
1871};
1872
Patrick McHardy4b478242007-12-17 21:46:15 -08001873static int
1874compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1875 void __user *userptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001876{
Dmitry Mishin27229712006-04-01 02:25:19 -08001877 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001878 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001879 void __user *pos;
1880 unsigned int size;
1881 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001882 const void *loc_cpu_entry;
Patrick McHardya18aa312007-12-12 10:35:16 -08001883 unsigned int i = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001884
1885 counters = alloc_counters(table);
1886 if (IS_ERR(counters))
1887 return PTR_ERR(counters);
1888
1889 /* choose the copy that is on our node/cpu, ...
1890 * This choice is lazy (because current thread is
1891 * allowed to migrate to another cpu)
1892 */
1893 loc_cpu_entry = private->entries[raw_smp_processor_id()];
1894 pos = userptr;
1895 size = total_size;
1896 ret = IPT_ENTRY_ITERATE(loc_cpu_entry, total_size,
Patrick McHardya18aa312007-12-12 10:35:16 -08001897 compat_copy_entry_to_user,
1898 &pos, &size, counters, &i);
Dmitry Mishin27229712006-04-01 02:25:19 -08001899
Dmitry Mishin27229712006-04-01 02:25:19 -08001900 vfree(counters);
1901 return ret;
1902}
1903
1904static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001905compat_get_entries(struct net *net, struct compat_ipt_get_entries __user *uptr,
1906 int *len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001907{
1908 int ret;
1909 struct compat_ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001910 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001911
Dmitry Mishin27229712006-04-01 02:25:19 -08001912 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001913 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001914 return -EINVAL;
1915 }
1916
1917 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1918 return -EFAULT;
1919
1920 if (*len != sizeof(struct compat_ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001921 duprintf("compat_get_entries: %u != %zu\n",
1922 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001923 return -EINVAL;
1924 }
1925
1926 xt_compat_lock(AF_INET);
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001927 t = xt_find_table_lock(net, AF_INET, get.name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001928 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001929 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001930 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08001931 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001932 ret = compat_table_info(private, &info);
1933 if (!ret && get.size == info.size) {
1934 ret = compat_copy_entries_to_user(private->size,
Patrick McHardy4b478242007-12-17 21:46:15 -08001935 t, uptr->entrytable);
Dmitry Mishin27229712006-04-01 02:25:19 -08001936 } else if (!ret) {
1937 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001938 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001939 ret = -EAGAIN;
Dmitry Mishin27229712006-04-01 02:25:19 -08001940 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001941 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001942 module_put(t->me);
1943 xt_table_unlock(t);
1944 } else
1945 ret = t ? PTR_ERR(t) : -ENOENT;
1946
1947 xt_compat_unlock(AF_INET);
1948 return ret;
1949}
1950
Patrick McHardy79030ed2006-09-20 12:05:08 -07001951static int do_ipt_get_ctl(struct sock *, int, void __user *, int *);
1952
Dmitry Mishin27229712006-04-01 02:25:19 -08001953static int
1954compat_do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1955{
1956 int ret;
1957
Björn Steinbrink82fac052006-10-20 00:21:10 -07001958 if (!capable(CAP_NET_ADMIN))
1959 return -EPERM;
1960
Dmitry Mishin27229712006-04-01 02:25:19 -08001961 switch (cmd) {
1962 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001963 ret = get_info(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001964 break;
1965 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001966 ret = compat_get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001967 break;
1968 default:
Patrick McHardy79030ed2006-09-20 12:05:08 -07001969 ret = do_ipt_get_ctl(sk, cmd, user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001970 }
1971 return ret;
1972}
1973#endif
1974
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975static int
Patrick McHardy9c547952007-12-17 21:52:00 -08001976do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977{
1978 int ret;
1979
1980 if (!capable(CAP_NET_ADMIN))
1981 return -EPERM;
1982
1983 switch (cmd) {
1984 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001985 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 break;
1987
1988 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001989 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 break;
1991
1992 default:
1993 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1994 ret = -EINVAL;
1995 }
1996
1997 return ret;
1998}
1999
2000static int
2001do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2002{
2003 int ret;
2004
2005 if (!capable(CAP_NET_ADMIN))
2006 return -EPERM;
2007
2008 switch (cmd) {
Dmitry Mishin27229712006-04-01 02:25:19 -08002009 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002010 ret = get_info(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 break;
Dmitry Mishin27229712006-04-01 02:25:19 -08002012
2013 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002014 ret = get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08002015 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
2017 case IPT_SO_GET_REVISION_MATCH:
2018 case IPT_SO_GET_REVISION_TARGET: {
2019 struct ipt_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002020 int target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
2022 if (*len != sizeof(rev)) {
2023 ret = -EINVAL;
2024 break;
2025 }
2026 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2027 ret = -EFAULT;
2028 break;
2029 }
2030
2031 if (cmd == IPT_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08002032 target = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08002034 target = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
Harald Welte2e4e6a12006-01-12 13:30:04 -08002036 try_then_request_module(xt_find_revision(AF_INET, rev.name,
2037 rev.revision,
2038 target, &ret),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 "ipt_%s", rev.name);
2040 break;
2041 }
2042
2043 default:
2044 duprintf("do_ipt_get_ctl: unknown request %i\n", cmd);
2045 ret = -EINVAL;
2046 }
2047
2048 return ret;
2049}
2050
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002051struct xt_table *ipt_register_table(struct net *net, struct xt_table *table,
2052 const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053{
2054 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002055 struct xt_table_info *newinfo;
Eric Dumazet259d4e42007-12-04 23:24:56 -08002056 struct xt_table_info bootstrap
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 = { 0, 0, 0, { 0 }, { 0 }, { } };
Eric Dumazet31836062005-12-13 23:13:48 -08002058 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08002059 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Harald Welte2e4e6a12006-01-12 13:30:04 -08002061 newinfo = xt_alloc_table_info(repl->size);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002062 if (!newinfo) {
2063 ret = -ENOMEM;
2064 goto out;
2065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Patrick McHardy9c547952007-12-17 21:52:00 -08002067 /* choose the copy on our node/cpu, but dont care about preemption */
Eric Dumazet31836062005-12-13 23:13:48 -08002068 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
2069 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 ret = translate_table(table->name, table->valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08002072 newinfo, loc_cpu_entry, repl->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 repl->num_entries,
2074 repl->hook_entry,
2075 repl->underflow);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002076 if (ret != 0)
2077 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002079 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08002080 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002081 ret = PTR_ERR(new_table);
2082 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 }
2084
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002085 return new_table;
2086
2087out_free:
2088 xt_free_table_info(newinfo);
2089out:
2090 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091}
2092
Jan Engelhardte60a13e2007-02-07 15:12:33 -08002093void ipt_unregister_table(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094{
Harald Welte2e4e6a12006-01-12 13:30:04 -08002095 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08002096 void *loc_cpu_entry;
Alexey Dobriyandf200962008-01-31 04:05:34 -08002097 struct module *table_owner = table->me;
Eric Dumazet31836062005-12-13 23:13:48 -08002098
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002099 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
2101 /* Decrease module usage counts and free resources */
Harald Welte2e4e6a12006-01-12 13:30:04 -08002102 loc_cpu_entry = private->entries[raw_smp_processor_id()];
2103 IPT_ENTRY_ITERATE(loc_cpu_entry, private->size, cleanup_entry, NULL);
Alexey Dobriyandf200962008-01-31 04:05:34 -08002104 if (private->number > private->initial_entries)
2105 module_put(table_owner);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002106 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107}
2108
2109/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002110static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111icmp_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2112 u_int8_t type, u_int8_t code,
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002113 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114{
Patrick McHardy9c547952007-12-17 21:52:00 -08002115 return ((test_type == 0xFF) ||
2116 (type == test_type && code >= min_code && code <= max_code))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 ^ invert;
2118}
2119
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002120static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002121icmp_match(const struct sk_buff *skb, const struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122{
Jan Engelhardt5452e422008-04-14 11:15:35 +02002123 const struct icmphdr *ic;
2124 struct icmphdr _icmph;
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002125 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127 /* Must not be a fragment. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002128 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002129 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002131 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 if (ic == NULL) {
2133 /* We've been asked to examine this packet, and we
2134 * can't. Hence, no choice but to drop.
2135 */
2136 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002137 *par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002138 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 }
2140
2141 return icmp_type_code_match(icmpinfo->type,
2142 icmpinfo->code[0],
2143 icmpinfo->code[1],
2144 ic->type, ic->code,
2145 !!(icmpinfo->invflags&IPT_ICMP_INV));
2146}
2147
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002148static bool icmp_checkentry(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002150 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002152 /* Must specify no unknown invflags */
2153 return !(icmpinfo->invflags & ~IPT_ICMP_INV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154}
2155
2156/* The built-in targets: standard (NULL) and error. */
Patrick McHardy9f15c532007-07-07 22:22:02 -07002157static struct xt_target ipt_standard_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 .name = IPT_STANDARD_TARGET,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002159 .targetsize = sizeof(int),
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002160 .family = NFPROTO_IPV4,
Dmitry Mishin27229712006-04-01 02:25:19 -08002161#ifdef CONFIG_COMPAT
Patrick McHardy9fa492c2006-09-20 12:05:37 -07002162 .compatsize = sizeof(compat_int_t),
2163 .compat_from_user = compat_standard_from_user,
2164 .compat_to_user = compat_standard_to_user,
Dmitry Mishin27229712006-04-01 02:25:19 -08002165#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166};
2167
Patrick McHardy9f15c532007-07-07 22:22:02 -07002168static struct xt_target ipt_error_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 .name = IPT_ERROR_TARGET,
2170 .target = ipt_error,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002171 .targetsize = IPT_FUNCTION_MAXNAMELEN,
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002172 .family = NFPROTO_IPV4,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173};
2174
2175static struct nf_sockopt_ops ipt_sockopts = {
2176 .pf = PF_INET,
2177 .set_optmin = IPT_BASE_CTL,
2178 .set_optmax = IPT_SO_SET_MAX+1,
2179 .set = do_ipt_set_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002180#ifdef CONFIG_COMPAT
2181 .compat_set = compat_do_ipt_set_ctl,
2182#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 .get_optmin = IPT_BASE_CTL,
2184 .get_optmax = IPT_SO_GET_MAX+1,
2185 .get = do_ipt_get_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002186#ifdef CONFIG_COMPAT
2187 .compat_get = compat_do_ipt_get_ctl,
2188#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002189 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190};
2191
Patrick McHardy9f15c532007-07-07 22:22:02 -07002192static struct xt_match icmp_matchstruct __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 .name = "icmp",
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002194 .match = icmp_match,
2195 .matchsize = sizeof(struct ipt_icmp),
Patrick McHardy9c547952007-12-17 21:52:00 -08002196 .checkentry = icmp_checkentry,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002197 .proto = IPPROTO_ICMP,
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002198 .family = NFPROTO_IPV4,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199};
2200
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002201static int __net_init ip_tables_net_init(struct net *net)
2202{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002203 return xt_proto_init(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002204}
2205
2206static void __net_exit ip_tables_net_exit(struct net *net)
2207{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002208 xt_proto_fini(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002209}
2210
2211static struct pernet_operations ip_tables_net_ops = {
2212 .init = ip_tables_net_init,
2213 .exit = ip_tables_net_exit,
2214};
2215
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002216static int __init ip_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217{
2218 int ret;
2219
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002220 ret = register_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002221 if (ret < 0)
2222 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002223
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 /* Noone else will be downing sem now, so we won't sleep */
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002225 ret = xt_register_target(&ipt_standard_target);
2226 if (ret < 0)
2227 goto err2;
2228 ret = xt_register_target(&ipt_error_target);
2229 if (ret < 0)
2230 goto err3;
2231 ret = xt_register_match(&icmp_matchstruct);
2232 if (ret < 0)
2233 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
2235 /* Register setsockopt */
2236 ret = nf_register_sockopt(&ipt_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002237 if (ret < 0)
2238 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
Dan Aloni0236e662007-07-09 13:20:12 -07002240 printk(KERN_INFO "ip_tables: (C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002242
2243err5:
2244 xt_unregister_match(&icmp_matchstruct);
2245err4:
2246 xt_unregister_target(&ipt_error_target);
2247err3:
2248 xt_unregister_target(&ipt_standard_target);
2249err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002250 unregister_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002251err1:
2252 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253}
2254
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002255static void __exit ip_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
2257 nf_unregister_sockopt(&ipt_sockopts);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002258
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002259 xt_unregister_match(&icmp_matchstruct);
2260 xt_unregister_target(&ipt_error_target);
2261 xt_unregister_target(&ipt_standard_target);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002262
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002263 unregister_pernet_subsys(&ip_tables_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264}
2265
2266EXPORT_SYMBOL(ipt_register_table);
2267EXPORT_SYMBOL(ipt_unregister_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268EXPORT_SYMBOL(ipt_do_table);
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002269module_init(ip_tables_init);
2270module_exit(ip_tables_fini);