blob: 12ad4d5c55d6ddb5d28ea771fffcb93737321848 [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{
86 size_t i;
87 unsigned long ret;
88
Jan Engelhardte79ec502007-12-17 22:44:06 -080089#define FWINV(bool, invflg) ((bool) ^ !!(ipinfo->invflags & (invflg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 if (FWINV((ip->saddr&ipinfo->smsk.s_addr) != ipinfo->src.s_addr,
92 IPT_INV_SRCIP)
93 || FWINV((ip->daddr&ipinfo->dmsk.s_addr) != ipinfo->dst.s_addr,
94 IPT_INV_DSTIP)) {
95 dprintf("Source or dest mismatch.\n");
96
97 dprintf("SRC: %u.%u.%u.%u. Mask: %u.%u.%u.%u. Target: %u.%u.%u.%u.%s\n",
98 NIPQUAD(ip->saddr),
99 NIPQUAD(ipinfo->smsk.s_addr),
100 NIPQUAD(ipinfo->src.s_addr),
101 ipinfo->invflags & IPT_INV_SRCIP ? " (INV)" : "");
102 dprintf("DST: %u.%u.%u.%u Mask: %u.%u.%u.%u Target: %u.%u.%u.%u.%s\n",
103 NIPQUAD(ip->daddr),
104 NIPQUAD(ipinfo->dmsk.s_addr),
105 NIPQUAD(ipinfo->dst.s_addr),
106 ipinfo->invflags & IPT_INV_DSTIP ? " (INV)" : "");
Patrick McHardy9c547952007-12-17 21:52:00 -0800107 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 }
109
110 /* Look for ifname matches; this should unroll nicely. */
111 for (i = 0, ret = 0; i < IFNAMSIZ/sizeof(unsigned long); i++) {
112 ret |= (((const unsigned long *)indev)[i]
113 ^ ((const unsigned long *)ipinfo->iniface)[i])
114 & ((const unsigned long *)ipinfo->iniface_mask)[i];
115 }
116
117 if (FWINV(ret != 0, IPT_INV_VIA_IN)) {
118 dprintf("VIA in mismatch (%s vs %s).%s\n",
119 indev, ipinfo->iniface,
120 ipinfo->invflags&IPT_INV_VIA_IN ?" (INV)":"");
Patrick McHardy9c547952007-12-17 21:52:00 -0800121 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
123
124 for (i = 0, ret = 0; i < IFNAMSIZ/sizeof(unsigned long); i++) {
125 ret |= (((const unsigned long *)outdev)[i]
126 ^ ((const unsigned long *)ipinfo->outiface)[i])
127 & ((const unsigned long *)ipinfo->outiface_mask)[i];
128 }
129
130 if (FWINV(ret != 0, IPT_INV_VIA_OUT)) {
131 dprintf("VIA out mismatch (%s vs %s).%s\n",
132 outdev, ipinfo->outiface,
133 ipinfo->invflags&IPT_INV_VIA_OUT ?" (INV)":"");
Patrick McHardy9c547952007-12-17 21:52:00 -0800134 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
137 /* Check specific protocol */
138 if (ipinfo->proto
139 && FWINV(ip->protocol != ipinfo->proto, IPT_INV_PROTO)) {
140 dprintf("Packet protocol %hi does not match %hi.%s\n",
141 ip->protocol, ipinfo->proto,
142 ipinfo->invflags&IPT_INV_PROTO ? " (INV)":"");
Patrick McHardy9c547952007-12-17 21:52:00 -0800143 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
145
146 /* If we have a fragment rule but the packet is not a fragment
147 * then we return zero */
148 if (FWINV((ipinfo->flags&IPT_F_FRAG) && !isfrag, IPT_INV_FRAG)) {
149 dprintf("Fragment rule but not fragment.%s\n",
150 ipinfo->invflags & IPT_INV_FRAG ? " (INV)" : "");
Patrick McHardy9c547952007-12-17 21:52:00 -0800151 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
153
Patrick McHardy9c547952007-12-17 21:52:00 -0800154 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
Denys Vlasenko022748a2008-01-14 23:44:05 -0800157static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158ip_checkentry(const struct ipt_ip *ip)
159{
160 if (ip->flags & ~IPT_F_MASK) {
161 duprintf("Unknown flag bits set: %08X\n",
162 ip->flags & ~IPT_F_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700163 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
165 if (ip->invflags & ~IPT_INV_MASK) {
166 duprintf("Unknown invflag bits set: %08X\n",
167 ip->invflags & ~IPT_INV_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700168 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700170 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
173static unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700174ipt_error(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 const struct net_device *in,
176 const struct net_device *out,
177 unsigned int hooknum,
Patrick McHardyc4986732006-03-20 18:02:56 -0800178 const struct xt_target *target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700179 const void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 if (net_ratelimit())
182 printk("ip_tables: error: `%s'\n", (char *)targinfo);
183
184 return NF_DROP;
185}
186
Denys Vlasenko022748a2008-01-14 23:44:05 -0800187/* Performance critical - called for every packet */
188static inline bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200189do_match(struct ipt_entry_match *m, const struct sk_buff *skb,
190 struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200192 par->match = m->u.kernel.match;
193 par->matchinfo = m->data;
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 /* Stop iteration if it doesn't match */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200196 if (!m->u.kernel.match->match(skb, par))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700197 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 else
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700199 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
Denys Vlasenko022748a2008-01-14 23:44:05 -0800202/* Performance critical */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203static inline struct ipt_entry *
204get_entry(void *base, unsigned int offset)
205{
206 return (struct ipt_entry *)(base + offset);
207}
208
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700209/* All zeroes == unconditional rule. */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800210/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700211static inline int
212unconditional(const struct ipt_ip *ip)
213{
214 unsigned int i;
215
216 for (i = 0; i < sizeof(*ip)/sizeof(__u32); i++)
217 if (((__u32 *)ip)[i])
218 return 0;
219
220 return 1;
Jan Engelhardte79ec502007-12-17 22:44:06 -0800221#undef FWINV
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700222}
223
224#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
225 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
Denys Vlasenko022748a2008-01-14 23:44:05 -0800226static const char *const hooknames[] = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800227 [NF_INET_PRE_ROUTING] = "PREROUTING",
228 [NF_INET_LOCAL_IN] = "INPUT",
Patrick McHardy9c547952007-12-17 21:52:00 -0800229 [NF_INET_FORWARD] = "FORWARD",
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800230 [NF_INET_LOCAL_OUT] = "OUTPUT",
231 [NF_INET_POST_ROUTING] = "POSTROUTING",
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700232};
233
234enum nf_ip_trace_comments {
235 NF_IP_TRACE_COMMENT_RULE,
236 NF_IP_TRACE_COMMENT_RETURN,
237 NF_IP_TRACE_COMMENT_POLICY,
238};
239
Denys Vlasenko022748a2008-01-14 23:44:05 -0800240static const char *const comments[] = {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700241 [NF_IP_TRACE_COMMENT_RULE] = "rule",
242 [NF_IP_TRACE_COMMENT_RETURN] = "return",
243 [NF_IP_TRACE_COMMENT_POLICY] = "policy",
244};
245
246static struct nf_loginfo trace_loginfo = {
247 .type = NF_LOG_TYPE_LOG,
248 .u = {
249 .log = {
250 .level = 4,
251 .logflags = NF_LOG_MASK,
252 },
253 },
254};
255
Denys Vlasenko022748a2008-01-14 23:44:05 -0800256/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700257static inline int
258get_chainname_rulenum(struct ipt_entry *s, struct ipt_entry *e,
259 char *hookname, char **chainname,
260 char **comment, unsigned int *rulenum)
261{
262 struct ipt_standard_target *t = (void *)ipt_get_target(s);
263
264 if (strcmp(t->target.u.kernel.target->name, IPT_ERROR_TARGET) == 0) {
265 /* Head of user chain: ERROR target with chainname */
266 *chainname = t->target.data;
267 (*rulenum) = 0;
268 } else if (s == e) {
269 (*rulenum)++;
270
271 if (s->target_offset == sizeof(struct ipt_entry)
272 && strcmp(t->target.u.kernel.target->name,
273 IPT_STANDARD_TARGET) == 0
274 && t->verdict < 0
275 && unconditional(&s->ip)) {
276 /* Tail of chains: STANDARD target (return/policy) */
277 *comment = *chainname == hookname
278 ? (char *)comments[NF_IP_TRACE_COMMENT_POLICY]
279 : (char *)comments[NF_IP_TRACE_COMMENT_RETURN];
280 }
281 return 1;
282 } else
283 (*rulenum)++;
284
285 return 0;
286}
287
288static void trace_packet(struct sk_buff *skb,
289 unsigned int hook,
290 const struct net_device *in,
291 const struct net_device *out,
Jan Engelhardtecb6f852008-01-31 03:54:47 -0800292 const char *tablename,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700293 struct xt_table_info *private,
294 struct ipt_entry *e)
295{
296 void *table_base;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200297 const struct ipt_entry *root;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700298 char *hookname, *chainname, *comment;
299 unsigned int rulenum = 0;
300
301 table_base = (void *)private->entries[smp_processor_id()];
302 root = get_entry(table_base, private->hook_entry[hook]);
303
304 hookname = chainname = (char *)hooknames[hook];
305 comment = (char *)comments[NF_IP_TRACE_COMMENT_RULE];
306
307 IPT_ENTRY_ITERATE(root,
308 private->size - private->hook_entry[hook],
309 get_chainname_rulenum,
310 e, hookname, &chainname, &comment, &rulenum);
311
312 nf_log_packet(AF_INET, hook, skb, in, out, &trace_loginfo,
313 "TRACE: %s:%s:%s:%u ",
314 tablename, chainname, comment, rulenum);
315}
316#endif
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318/* Returns one of the generic firewall policies, like NF_ACCEPT. */
319unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700320ipt_do_table(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 unsigned int hook,
322 const struct net_device *in,
323 const struct net_device *out,
Jan Engelhardte60a13e2007-02-07 15:12:33 -0800324 struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
326 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
Jan Engelhardt5452e422008-04-14 11:15:35 +0200327 const struct iphdr *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 u_int16_t datalen;
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700329 bool hotdrop = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 /* Initializing verdict to NF_DROP keeps gcc happy. */
331 unsigned int verdict = NF_DROP;
332 const char *indev, *outdev;
333 void *table_base;
334 struct ipt_entry *e, *back;
Patrick McHardy83117312006-08-17 18:13:53 -0700335 struct xt_table_info *private;
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200336 struct xt_match_param mtpar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 /* Initialization */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700339 ip = ip_hdr(skb);
340 datalen = skb->len - ip->ihl * 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 indev = in ? in->name : nulldevname;
342 outdev = out ? out->name : nulldevname;
343 /* We handle fragments by dealing with the first fragment as
344 * if it was a normal packet. All other fragments are treated
345 * normally, except that they will NEVER match rules that ask
346 * things we don't know, ie. tcp syn flag or ports). If the
347 * rule is also a fragment-specific rule, non-fragments won't
348 * match it. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200349 mtpar.fragoff = ntohs(ip->frag_off) & IP_OFFSET;
350 mtpar.thoff = ip_hdrlen(skb);
351 mtpar.hotdrop = &hotdrop;
352 mtpar.in = in;
353 mtpar.out = out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 read_lock_bh(&table->lock);
356 IP_NF_ASSERT(table->valid_hooks & (1 << hook));
Patrick McHardy83117312006-08-17 18:13:53 -0700357 private = table->private;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800358 table_base = (void *)private->entries[smp_processor_id()];
359 e = get_entry(table_base, private->hook_entry[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 /* For return from builtin chain */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800362 back = get_entry(table_base, private->underflow[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 do {
365 IP_NF_ASSERT(e);
366 IP_NF_ASSERT(back);
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200367 if (ip_packet_match(ip, indev, outdev,
368 &e->ip, mtpar.fragoff)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 struct ipt_entry_target *t;
370
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200371 if (IPT_MATCH_ITERATE(e, do_match, skb, &mtpar) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 goto no_match;
373
374 ADD_COUNTER(e->counters, ntohs(ip->tot_len), 1);
375
376 t = ipt_get_target(e);
377 IP_NF_ASSERT(t->u.kernel.target);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700378
379#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
380 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
381 /* The packet is traced: log it */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700382 if (unlikely(skb->nf_trace))
383 trace_packet(skb, hook, in, out,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700384 table->name, private, e);
385#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 /* Standard target? */
387 if (!t->u.kernel.target->target) {
388 int v;
389
390 v = ((struct ipt_standard_target *)t)->verdict;
391 if (v < 0) {
392 /* Pop from stack? */
393 if (v != IPT_RETURN) {
394 verdict = (unsigned)(-v) - 1;
395 break;
396 }
397 e = back;
398 back = get_entry(table_base,
399 back->comefrom);
400 continue;
401 }
Patrick McHardy05465342005-08-21 23:31:43 -0700402 if (table_base + v != (void *)e + e->next_offset
403 && !(e->ip.flags & IPT_F_GOTO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 /* Save old back ptr in next entry */
405 struct ipt_entry *next
406 = (void *)e + e->next_offset;
407 next->comefrom
408 = (void *)back - table_base;
409 /* set back pointer to next entry */
410 back = next;
411 }
412
413 e = get_entry(table_base, v);
414 } else {
415 /* Targets which reenter must return
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900416 abs. verdicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417#ifdef CONFIG_NETFILTER_DEBUG
418 ((struct ipt_entry *)table_base)->comefrom
419 = 0xeeeeeeec;
420#endif
Herbert Xu3db05fe2007-10-15 00:53:15 -0700421 verdict = t->u.kernel.target->target(skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 in, out,
423 hook,
Patrick McHardy1c524832006-03-20 18:02:15 -0800424 t->u.kernel.target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700425 t->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427#ifdef CONFIG_NETFILTER_DEBUG
428 if (((struct ipt_entry *)table_base)->comefrom
429 != 0xeeeeeeec
430 && verdict == IPT_CONTINUE) {
431 printk("Target %s reentered!\n",
432 t->u.kernel.target->name);
433 verdict = NF_DROP;
434 }
435 ((struct ipt_entry *)table_base)->comefrom
436 = 0x57acc001;
437#endif
438 /* Target might have changed stuff. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700439 ip = ip_hdr(skb);
440 datalen = skb->len - ip->ihl * 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 if (verdict == IPT_CONTINUE)
443 e = (void *)e + e->next_offset;
444 else
445 /* Verdict */
446 break;
447 }
448 } else {
449
450 no_match:
451 e = (void *)e + e->next_offset;
452 }
453 } while (!hotdrop);
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 read_unlock_bh(&table->lock);
456
457#ifdef DEBUG_ALLOW_ALL
458 return NF_ACCEPT;
459#else
460 if (hotdrop)
461 return NF_DROP;
462 else return verdict;
463#endif
464}
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466/* Figures out from what hook each rule can be called: returns 0 if
467 there are loops. Puts hook bitmask in comefrom. */
468static int
Harald Welte2e4e6a12006-01-12 13:30:04 -0800469mark_source_chains(struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800470 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
472 unsigned int hook;
473
474 /* No recursion; use packet counter to save back ptrs (reset
475 to 0 as we leave), and comefrom to save source hook bitmask */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800476 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 unsigned int pos = newinfo->hook_entry[hook];
Patrick McHardy9c547952007-12-17 21:52:00 -0800478 struct ipt_entry *e = (struct ipt_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 if (!(valid_hooks & (1 << hook)))
481 continue;
482
483 /* Set initial back pointer. */
484 e->counters.pcnt = pos;
485
486 for (;;) {
487 struct ipt_standard_target *t
488 = (void *)ipt_get_target(e);
Al Viroe1b4b9f2006-12-12 00:29:52 -0800489 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800491 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 printk("iptables: loop hook %u pos %u %08X.\n",
493 hook, pos, e->comefrom);
494 return 0;
495 }
Patrick McHardy9c547952007-12-17 21:52:00 -0800496 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 /* Unconditional return/END. */
Al Viroe1b4b9f2006-12-12 00:29:52 -0800499 if ((e->target_offset == sizeof(struct ipt_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 && (strcmp(t->target.u.user.name,
501 IPT_STANDARD_TARGET) == 0)
502 && t->verdict < 0
Al Viroe1b4b9f2006-12-12 00:29:52 -0800503 && unconditional(&e->ip)) || visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 unsigned int oldpos, size;
505
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800506 if (t->verdict < -NF_MAX_VERDICT - 1) {
507 duprintf("mark_source_chains: bad "
508 "negative verdict (%i)\n",
509 t->verdict);
510 return 0;
511 }
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 /* Return: backtrack through the last
514 big jump. */
515 do {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800516 e->comefrom ^= (1<<NF_INET_NUMHOOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517#ifdef DEBUG_IP_FIREWALL_USER
518 if (e->comefrom
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800519 & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 duprintf("Back unset "
521 "on hook %u "
522 "rule %u\n",
523 hook, pos);
524 }
525#endif
526 oldpos = pos;
527 pos = e->counters.pcnt;
528 e->counters.pcnt = 0;
529
530 /* We're at the start. */
531 if (pos == oldpos)
532 goto next;
533
534 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800535 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 } while (oldpos == pos + e->next_offset);
537
538 /* Move along one */
539 size = e->next_offset;
540 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800541 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 e->counters.pcnt = pos;
543 pos += size;
544 } else {
545 int newpos = t->verdict;
546
547 if (strcmp(t->target.u.user.name,
548 IPT_STANDARD_TARGET) == 0
549 && newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800550 if (newpos > newinfo->size -
551 sizeof(struct ipt_entry)) {
552 duprintf("mark_source_chains: "
553 "bad verdict (%i)\n",
554 newpos);
555 return 0;
556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 /* This a jump; chase it. */
558 duprintf("Jump rule %u -> %u\n",
559 pos, newpos);
560 } else {
561 /* ... this is a fallthru */
562 newpos = pos + e->next_offset;
563 }
564 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800565 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 e->counters.pcnt = pos;
567 pos = newpos;
568 }
569 }
570 next:
571 duprintf("Finished chain %u\n", hook);
572 }
573 return 1;
574}
575
Denys Vlasenko022748a2008-01-14 23:44:05 -0800576static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577cleanup_match(struct ipt_entry_match *m, unsigned int *i)
578{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200579 struct xt_mtdtor_param par;
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (i && (*i)-- == 0)
582 return 1;
583
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200584 par.match = m->u.kernel.match;
585 par.matchinfo = m->data;
586 if (par.match->destroy != NULL)
587 par.match->destroy(&par);
588 module_put(par.match->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return 0;
590}
591
Denys Vlasenko022748a2008-01-14 23:44:05 -0800592static int
Dmitry Mishina96be242006-12-12 00:29:26 -0800593check_entry(struct ipt_entry *e, const char *name)
594{
595 struct ipt_entry_target *t;
596
597 if (!ip_checkentry(&e->ip)) {
598 duprintf("ip_tables: ip check failed %p %s.\n", e, name);
599 return -EINVAL;
600 }
601
Patrick McHardy9c547952007-12-17 21:52:00 -0800602 if (e->target_offset + sizeof(struct ipt_entry_target) >
603 e->next_offset)
Dmitry Mishina96be242006-12-12 00:29:26 -0800604 return -EINVAL;
605
606 t = ipt_get_target(e);
607 if (e->target_offset + t->u.target_size > e->next_offset)
608 return -EINVAL;
609
610 return 0;
611}
612
Denys Vlasenko022748a2008-01-14 23:44:05 -0800613static int
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200614check_match(struct ipt_entry_match *m, struct xt_mtchk_param *par,
615 unsigned int *i)
Dmitry Mishina96be242006-12-12 00:29:26 -0800616{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200617 const struct ipt_ip *ip = par->entryinfo;
Dmitry Mishina96be242006-12-12 00:29:26 -0800618 int ret;
619
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200620 par->match = m->u.kernel.match;
621 par->matchinfo = m->data;
622
623 ret = xt_check_match(par, NFPROTO_IPV4, m->u.match_size - sizeof(*m),
624 ip->proto, ip->invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200625 if (ret < 0) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800626 duprintf("ip_tables: check failed for `%s'.\n",
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200627 par.match->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200628 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800629 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200630 ++*i;
631 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800632}
633
Denys Vlasenko022748a2008-01-14 23:44:05 -0800634static int
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200635find_check_match(struct ipt_entry_match *m, struct xt_mtchk_param *par,
Patrick McHardy4b478242007-12-17 21:46:15 -0800636 unsigned int *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800638 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800639 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Harald Welte2e4e6a12006-01-12 13:30:04 -0800641 match = try_then_request_module(xt_find_match(AF_INET, m->u.user.name,
Patrick McHardy9c547952007-12-17 21:52:00 -0800642 m->u.user.revision),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 "ipt_%s", m->u.user.name);
644 if (IS_ERR(match) || !match) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800645 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return match ? PTR_ERR(match) : -ENOENT;
647 }
648 m->u.kernel.match = match;
649
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200650 ret = check_match(m, par, i);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800651 if (ret)
652 goto err;
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800655err:
656 module_put(m->u.kernel.match->me);
657 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
Denys Vlasenko022748a2008-01-14 23:44:05 -0800660static int check_target(struct ipt_entry *e, const char *name)
Dmitry Mishina96be242006-12-12 00:29:26 -0800661{
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900662 struct ipt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800663 struct xt_target *target;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900664 int ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800665
666 t = ipt_get_target(e);
667 target = t->u.kernel.target;
668 ret = xt_check_target(target, AF_INET, t->u.target_size - sizeof(*t),
669 name, e->comefrom, e->ip.proto,
Jan Engelhardt367c6792008-10-08 11:35:17 +0200670 e->ip.invflags & IPT_INV_PROTO, e, t->data);
671 if (ret < 0) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800672 duprintf("ip_tables: check failed for `%s'.\n",
673 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200674 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800675 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200676 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800677}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Denys Vlasenko022748a2008-01-14 23:44:05 -0800679static int
Dmitry Mishina96be242006-12-12 00:29:26 -0800680find_check_entry(struct ipt_entry *e, const char *name, unsigned int size,
Patrick McHardy4b478242007-12-17 21:46:15 -0800681 unsigned int *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 struct ipt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800684 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 int ret;
686 unsigned int j;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200687 struct xt_mtchk_param mtpar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Dmitry Mishina96be242006-12-12 00:29:26 -0800689 ret = check_entry(e, name);
690 if (ret)
691 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 j = 0;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200694 mtpar.table = name;
695 mtpar.entryinfo = &e->ip;
696 mtpar.hook_mask = e->comefrom;
697 ret = IPT_MATCH_ITERATE(e, find_check_match, &mtpar, &j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 if (ret != 0)
699 goto cleanup_matches;
700
701 t = ipt_get_target(e);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800702 target = try_then_request_module(xt_find_target(AF_INET,
Patrick McHardy4b478242007-12-17 21:46:15 -0800703 t->u.user.name,
704 t->u.user.revision),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 "ipt_%s", t->u.user.name);
706 if (IS_ERR(target) || !target) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800707 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 ret = target ? PTR_ERR(target) : -ENOENT;
709 goto cleanup_matches;
710 }
711 t->u.kernel.target = target;
712
Dmitry Mishina96be242006-12-12 00:29:26 -0800713 ret = check_target(e, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800714 if (ret)
715 goto err;
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 (*i)++;
718 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800719 err:
720 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 cleanup_matches:
722 IPT_MATCH_ITERATE(e, cleanup_match, &j);
723 return ret;
724}
725
Denys Vlasenko022748a2008-01-14 23:44:05 -0800726static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727check_entry_size_and_hooks(struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800728 struct xt_table_info *newinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 unsigned char *base,
730 unsigned char *limit,
731 const unsigned int *hook_entries,
732 const unsigned int *underflows,
733 unsigned int *i)
734{
735 unsigned int h;
736
737 if ((unsigned long)e % __alignof__(struct ipt_entry) != 0
738 || (unsigned char *)e + sizeof(struct ipt_entry) >= limit) {
739 duprintf("Bad offset %p\n", e);
740 return -EINVAL;
741 }
742
743 if (e->next_offset
744 < sizeof(struct ipt_entry) + sizeof(struct ipt_entry_target)) {
745 duprintf("checking: element %p size %u\n",
746 e, e->next_offset);
747 return -EINVAL;
748 }
749
750 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800751 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if ((unsigned char *)e - base == hook_entries[h])
753 newinfo->hook_entry[h] = hook_entries[h];
754 if ((unsigned char *)e - base == underflows[h])
755 newinfo->underflow[h] = underflows[h];
756 }
757
758 /* FIXME: underflows must be unconditional, standard verdicts
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900759 < 0 (not IPT_RETURN). --RR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800762 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 e->comefrom = 0;
764
765 (*i)++;
766 return 0;
767}
768
Denys Vlasenko022748a2008-01-14 23:44:05 -0800769static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770cleanup_entry(struct ipt_entry *e, unsigned int *i)
771{
772 struct ipt_entry_target *t;
773
774 if (i && (*i)-- == 0)
775 return 1;
776
777 /* Cleanup all matches */
778 IPT_MATCH_ITERATE(e, cleanup_match, NULL);
779 t = ipt_get_target(e);
780 if (t->u.kernel.target->destroy)
Patrick McHardyefa74162006-08-22 00:36:37 -0700781 t->u.kernel.target->destroy(t->u.kernel.target, t->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 module_put(t->u.kernel.target->me);
783 return 0;
784}
785
786/* Checks and translates the user-supplied table segment (held in
787 newinfo) */
788static int
789translate_table(const char *name,
790 unsigned int valid_hooks,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800791 struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800792 void *entry0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 unsigned int size,
794 unsigned int number,
795 const unsigned int *hook_entries,
796 const unsigned int *underflows)
797{
798 unsigned int i;
799 int ret;
800
801 newinfo->size = size;
802 newinfo->number = number;
803
804 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800805 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 newinfo->hook_entry[i] = 0xFFFFFFFF;
807 newinfo->underflow[i] = 0xFFFFFFFF;
808 }
809
810 duprintf("translate_table: size %u\n", newinfo->size);
811 i = 0;
812 /* Walk through entries, checking offsets. */
Eric Dumazet31836062005-12-13 23:13:48 -0800813 ret = IPT_ENTRY_ITERATE(entry0, newinfo->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 check_entry_size_and_hooks,
815 newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800816 entry0,
817 entry0 + size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 hook_entries, underflows, &i);
819 if (ret != 0)
820 return ret;
821
822 if (i != number) {
823 duprintf("translate_table: %u not %u entries\n",
824 i, number);
825 return -EINVAL;
826 }
827
828 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800829 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 /* Only hooks which are valid */
831 if (!(valid_hooks & (1 << i)))
832 continue;
833 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
834 duprintf("Invalid hook entry %u %u\n",
835 i, hook_entries[i]);
836 return -EINVAL;
837 }
838 if (newinfo->underflow[i] == 0xFFFFFFFF) {
839 duprintf("Invalid underflow %u %u\n",
840 i, underflows[i]);
841 return -EINVAL;
842 }
843 }
844
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800845 if (!mark_source_chains(newinfo, valid_hooks, entry0))
846 return -ELOOP;
847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 /* Finally, each sanity check must pass */
849 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -0800850 ret = IPT_ENTRY_ITERATE(entry0, newinfo->size,
Dmitry Mishina96be242006-12-12 00:29:26 -0800851 find_check_entry, name, size, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800853 if (ret != 0) {
854 IPT_ENTRY_ITERATE(entry0, newinfo->size,
855 cleanup_entry, &i);
856 return ret;
857 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 /* And one copy for every other CPU */
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700860 for_each_possible_cpu(i) {
Eric Dumazet31836062005-12-13 23:13:48 -0800861 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
862 memcpy(newinfo->entries[i], entry0, newinfo->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
864
865 return ret;
866}
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868/* Gets counters. */
869static inline int
870add_entry_to_counter(const struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800871 struct xt_counters total[],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 unsigned int *i)
873{
874 ADD_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
875
876 (*i)++;
877 return 0;
878}
879
Eric Dumazet31836062005-12-13 23:13:48 -0800880static inline int
881set_entry_to_counter(const struct ipt_entry *e,
882 struct ipt_counters total[],
883 unsigned int *i)
884{
885 SET_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
886
887 (*i)++;
888 return 0;
889}
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800892get_counters(const struct xt_table_info *t,
893 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
895 unsigned int cpu;
896 unsigned int i;
Eric Dumazet31836062005-12-13 23:13:48 -0800897 unsigned int curcpu;
898
899 /* Instead of clearing (by a previous call to memset())
900 * the counters and using adds, we set the counters
901 * with data used by 'current' CPU
902 * We dont care about preemption here.
903 */
904 curcpu = raw_smp_processor_id();
905
906 i = 0;
907 IPT_ENTRY_ITERATE(t->entries[curcpu],
908 t->size,
909 set_entry_to_counter,
910 counters,
911 &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700913 for_each_possible_cpu(cpu) {
Eric Dumazet31836062005-12-13 23:13:48 -0800914 if (cpu == curcpu)
915 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -0800917 IPT_ENTRY_ITERATE(t->entries[cpu],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 t->size,
919 add_entry_to_counter,
920 counters,
921 &i);
922 }
923}
924
Denys Vlasenko022748a2008-01-14 23:44:05 -0800925static struct xt_counters * alloc_counters(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Dmitry Mishin27229712006-04-01 02:25:19 -0800927 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800928 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200929 const struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 /* We need atomic snapshot of counters: rest doesn't change
932 (other than comefrom, which userspace doesn't care
933 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800934 countersize = sizeof(struct xt_counters) * private->number;
Eric Dumazet31836062005-12-13 23:13:48 -0800935 counters = vmalloc_node(countersize, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 if (counters == NULL)
Dmitry Mishin27229712006-04-01 02:25:19 -0800938 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 /* First, sum counters... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 write_lock_bh(&table->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800942 get_counters(private, counters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 write_unlock_bh(&table->lock);
944
Dmitry Mishin27229712006-04-01 02:25:19 -0800945 return counters;
946}
947
948static int
949copy_entries_to_user(unsigned int total_size,
Jan Engelhardte60a13e2007-02-07 15:12:33 -0800950 struct xt_table *table,
Dmitry Mishin27229712006-04-01 02:25:19 -0800951 void __user *userptr)
952{
953 unsigned int off, num;
954 struct ipt_entry *e;
955 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200956 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -0800957 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200958 const void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -0800959
960 counters = alloc_counters(table);
961 if (IS_ERR(counters))
962 return PTR_ERR(counters);
963
Eric Dumazet31836062005-12-13 23:13:48 -0800964 /* choose the copy that is on our node/cpu, ...
965 * This choice is lazy (because current thread is
966 * allowed to migrate to another cpu)
967 */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800968 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -0800969 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 ret = -EFAULT;
971 goto free_counters;
972 }
973
974 /* FIXME: use iterator macros --RR */
975 /* ... then go back and fix counters and names */
976 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
977 unsigned int i;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200978 const struct ipt_entry_match *m;
979 const struct ipt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Eric Dumazet31836062005-12-13 23:13:48 -0800981 e = (struct ipt_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 if (copy_to_user(userptr + off
983 + offsetof(struct ipt_entry, counters),
984 &counters[num],
985 sizeof(counters[num])) != 0) {
986 ret = -EFAULT;
987 goto free_counters;
988 }
989
990 for (i = sizeof(struct ipt_entry);
991 i < e->target_offset;
992 i += m->u.match_size) {
993 m = (void *)e + i;
994
995 if (copy_to_user(userptr + off + i
996 + offsetof(struct ipt_entry_match,
997 u.user.name),
998 m->u.kernel.match->name,
999 strlen(m->u.kernel.match->name)+1)
1000 != 0) {
1001 ret = -EFAULT;
1002 goto free_counters;
1003 }
1004 }
1005
1006 t = ipt_get_target(e);
1007 if (copy_to_user(userptr + off + e->target_offset
1008 + offsetof(struct ipt_entry_target,
1009 u.user.name),
1010 t->u.kernel.target->name,
1011 strlen(t->u.kernel.target->name)+1) != 0) {
1012 ret = -EFAULT;
1013 goto free_counters;
1014 }
1015 }
1016
1017 free_counters:
1018 vfree(counters);
1019 return ret;
1020}
1021
Dmitry Mishin27229712006-04-01 02:25:19 -08001022#ifdef CONFIG_COMPAT
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001023static void compat_standard_from_user(void *dst, void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001024{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001025 int v = *(compat_int_t *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001026
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001027 if (v > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001028 v += xt_compat_calc_jump(AF_INET, v);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001029 memcpy(dst, &v, sizeof(v));
1030}
1031
1032static int compat_standard_to_user(void __user *dst, void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001033{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001034 compat_int_t cv = *(int *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001035
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001036 if (cv > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001037 cv -= xt_compat_calc_jump(AF_INET, cv);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001038 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001039}
1040
1041static inline int
Patrick McHardy4b478242007-12-17 21:46:15 -08001042compat_calc_match(struct ipt_entry_match *m, int *size)
Dmitry Mishin27229712006-04-01 02:25:19 -08001043{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001044 *size += xt_compat_match_offset(m->u.kernel.match);
Dmitry Mishin27229712006-04-01 02:25:19 -08001045 return 0;
1046}
1047
Eric Dumazet259d4e42007-12-04 23:24:56 -08001048static int compat_calc_entry(struct ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001049 const struct xt_table_info *info,
1050 void *base, struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001051{
1052 struct ipt_entry_target *t;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001053 unsigned int entry_offset;
Dmitry Mishin27229712006-04-01 02:25:19 -08001054 int off, i, ret;
1055
Patrick McHardy30c08c42007-12-17 21:47:14 -08001056 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001057 entry_offset = (void *)e - base;
1058 IPT_MATCH_ITERATE(e, compat_calc_match, &off);
1059 t = ipt_get_target(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001060 off += xt_compat_target_offset(t->u.kernel.target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001061 newinfo->size -= off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001062 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001063 if (ret)
1064 return ret;
1065
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001066 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Patrick McHardy4b478242007-12-17 21:46:15 -08001067 if (info->hook_entry[i] &&
1068 (e < (struct ipt_entry *)(base + info->hook_entry[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001069 newinfo->hook_entry[i] -= off;
Patrick McHardy4b478242007-12-17 21:46:15 -08001070 if (info->underflow[i] &&
1071 (e < (struct ipt_entry *)(base + info->underflow[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001072 newinfo->underflow[i] -= off;
1073 }
1074 return 0;
1075}
1076
Eric Dumazet259d4e42007-12-04 23:24:56 -08001077static int compat_table_info(const struct xt_table_info *info,
Patrick McHardy4b478242007-12-17 21:46:15 -08001078 struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001079{
1080 void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -08001081
1082 if (!newinfo || !info)
1083 return -EINVAL;
1084
Eric Dumazet259d4e42007-12-04 23:24:56 -08001085 /* we dont care about newinfo->entries[] */
1086 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1087 newinfo->initial_entries = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001088 loc_cpu_entry = info->entries[raw_smp_processor_id()];
1089 return IPT_ENTRY_ITERATE(loc_cpu_entry, info->size,
Patrick McHardy4b478242007-12-17 21:46:15 -08001090 compat_calc_entry, info, loc_cpu_entry,
1091 newinfo);
Dmitry Mishin27229712006-04-01 02:25:19 -08001092}
1093#endif
1094
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001095static int get_info(struct net *net, void __user *user, int *len, int compat)
Dmitry Mishin27229712006-04-01 02:25:19 -08001096{
1097 char name[IPT_TABLE_MAXNAMELEN];
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001098 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001099 int ret;
1100
1101 if (*len != sizeof(struct ipt_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001102 duprintf("length %u != %zu\n", *len,
1103 sizeof(struct ipt_getinfo));
Dmitry Mishin27229712006-04-01 02:25:19 -08001104 return -EINVAL;
1105 }
1106
1107 if (copy_from_user(name, user, sizeof(name)) != 0)
1108 return -EFAULT;
1109
1110 name[IPT_TABLE_MAXNAMELEN-1] = '\0';
1111#ifdef CONFIG_COMPAT
1112 if (compat)
1113 xt_compat_lock(AF_INET);
1114#endif
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001115 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Patrick McHardy4b478242007-12-17 21:46:15 -08001116 "iptable_%s", name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001117 if (t && !IS_ERR(t)) {
1118 struct ipt_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001119 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001120
1121#ifdef CONFIG_COMPAT
1122 if (compat) {
1123 struct xt_table_info tmp;
1124 ret = compat_table_info(private, &tmp);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001125 xt_compat_flush_offsets(AF_INET);
Patrick McHardy4b478242007-12-17 21:46:15 -08001126 private = &tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001127 }
1128#endif
1129 info.valid_hooks = t->valid_hooks;
1130 memcpy(info.hook_entry, private->hook_entry,
Patrick McHardy4b478242007-12-17 21:46:15 -08001131 sizeof(info.hook_entry));
Dmitry Mishin27229712006-04-01 02:25:19 -08001132 memcpy(info.underflow, private->underflow,
Patrick McHardy4b478242007-12-17 21:46:15 -08001133 sizeof(info.underflow));
Dmitry Mishin27229712006-04-01 02:25:19 -08001134 info.num_entries = private->number;
1135 info.size = private->size;
1136 strcpy(info.name, name);
1137
1138 if (copy_to_user(user, &info, *len) != 0)
1139 ret = -EFAULT;
1140 else
1141 ret = 0;
1142
1143 xt_table_unlock(t);
1144 module_put(t->me);
1145 } else
1146 ret = t ? PTR_ERR(t) : -ENOENT;
1147#ifdef CONFIG_COMPAT
1148 if (compat)
1149 xt_compat_unlock(AF_INET);
1150#endif
1151 return ret;
1152}
1153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001155get_entries(struct net *net, struct ipt_get_entries __user *uptr, int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156{
1157 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001158 struct ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001159 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Dmitry Mishin27229712006-04-01 02:25:19 -08001161 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001162 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001163 return -EINVAL;
1164 }
1165 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1166 return -EFAULT;
1167 if (*len != sizeof(struct ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001168 duprintf("get_entries: %u != %zu\n",
1169 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001170 return -EINVAL;
1171 }
1172
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001173 t = xt_find_table_lock(net, AF_INET, get.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001175 const struct xt_table_info *private = t->private;
Patrick McHardy9c547952007-12-17 21:52:00 -08001176 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001177 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001178 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 t, uptr->entrytable);
1180 else {
1181 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001182 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001183 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 }
1185 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001186 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 } else
1188 ret = t ? PTR_ERR(t) : -ENOENT;
1189
1190 return ret;
1191}
1192
1193static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001194__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001195 struct xt_table_info *newinfo, unsigned int num_counters,
1196 void __user *counters_ptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001197{
1198 int ret;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001199 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001200 struct xt_table_info *oldinfo;
1201 struct xt_counters *counters;
1202 void *loc_cpu_old_entry;
1203
1204 ret = 0;
1205 counters = vmalloc(num_counters * sizeof(struct xt_counters));
1206 if (!counters) {
1207 ret = -ENOMEM;
1208 goto out;
1209 }
1210
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001211 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Dmitry Mishin27229712006-04-01 02:25:19 -08001212 "iptable_%s", name);
1213 if (!t || IS_ERR(t)) {
1214 ret = t ? PTR_ERR(t) : -ENOENT;
1215 goto free_newinfo_counters_untrans;
1216 }
1217
1218 /* You lied! */
1219 if (valid_hooks != t->valid_hooks) {
1220 duprintf("Valid hook crap: %08X vs %08X\n",
1221 valid_hooks, t->valid_hooks);
1222 ret = -EINVAL;
1223 goto put_module;
1224 }
1225
1226 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1227 if (!oldinfo)
1228 goto put_module;
1229
1230 /* Update module usage count based on number of rules */
1231 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1232 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1233 if ((oldinfo->number > oldinfo->initial_entries) ||
1234 (newinfo->number <= oldinfo->initial_entries))
1235 module_put(t->me);
1236 if ((oldinfo->number > oldinfo->initial_entries) &&
1237 (newinfo->number <= oldinfo->initial_entries))
1238 module_put(t->me);
1239
1240 /* Get the old counters. */
1241 get_counters(oldinfo, counters);
1242 /* Decrease module usage counts and free resource */
1243 loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
Patrick McHardy4b478242007-12-17 21:46:15 -08001244 IPT_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry,
1245 NULL);
Dmitry Mishin27229712006-04-01 02:25:19 -08001246 xt_free_table_info(oldinfo);
1247 if (copy_to_user(counters_ptr, counters,
1248 sizeof(struct xt_counters) * num_counters) != 0)
1249 ret = -EFAULT;
1250 vfree(counters);
1251 xt_table_unlock(t);
1252 return ret;
1253
1254 put_module:
1255 module_put(t->me);
1256 xt_table_unlock(t);
1257 free_newinfo_counters_untrans:
1258 vfree(counters);
1259 out:
1260 return ret;
1261}
1262
1263static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001264do_replace(struct net *net, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265{
1266 int ret;
1267 struct ipt_replace tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001268 struct xt_table_info *newinfo;
1269 void *loc_cpu_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
1271 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1272 return -EFAULT;
1273
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001274 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001275 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1276 return -ENOMEM;
1277
Harald Welte2e4e6a12006-01-12 13:30:04 -08001278 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 if (!newinfo)
1280 return -ENOMEM;
1281
Patrick McHardy9c547952007-12-17 21:52:00 -08001282 /* choose the copy that is on our node/cpu */
Eric Dumazet31836062005-12-13 23:13:48 -08001283 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1284 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 tmp.size) != 0) {
1286 ret = -EFAULT;
1287 goto free_newinfo;
1288 }
1289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 ret = translate_table(tmp.name, tmp.valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08001291 newinfo, loc_cpu_entry, tmp.size, tmp.num_entries,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 tmp.hook_entry, tmp.underflow);
1293 if (ret != 0)
Dmitry Mishin27229712006-04-01 02:25:19 -08001294 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 duprintf("ip_tables: Translated table\n");
1297
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001298 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001299 tmp.num_counters, tmp.counters);
Dmitry Mishin27229712006-04-01 02:25:19 -08001300 if (ret)
1301 goto free_newinfo_untrans;
1302 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Dmitry Mishin27229712006-04-01 02:25:19 -08001304 free_newinfo_untrans:
Patrick McHardy9c547952007-12-17 21:52:00 -08001305 IPT_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001307 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 return ret;
1309}
1310
1311/* We're lazy, and add to the first CPU; overflow works its fey magic
1312 * and everything is OK. */
Denys Vlasenko022748a2008-01-14 23:44:05 -08001313static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314add_counter_to_entry(struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001315 const struct xt_counters addme[],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 unsigned int *i)
1317{
1318#if 0
1319 duprintf("add_counter: Entry %u %lu/%lu + %lu/%lu\n",
1320 *i,
1321 (long unsigned int)e->counters.pcnt,
1322 (long unsigned int)e->counters.bcnt,
1323 (long unsigned int)addme[*i].pcnt,
1324 (long unsigned int)addme[*i].bcnt);
1325#endif
1326
1327 ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt);
1328
1329 (*i)++;
1330 return 0;
1331}
1332
1333static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001334do_add_counters(struct net *net, void __user *user, unsigned int len, int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335{
1336 unsigned int i;
Dmitry Mishin27229712006-04-01 02:25:19 -08001337 struct xt_counters_info tmp;
1338 struct xt_counters *paddc;
1339 unsigned int num_counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001340 const char *name;
Dmitry Mishin27229712006-04-01 02:25:19 -08001341 int size;
1342 void *ptmp;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001343 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001344 const struct xt_table_info *private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 int ret = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001346 void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -08001347#ifdef CONFIG_COMPAT
1348 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Dmitry Mishin27229712006-04-01 02:25:19 -08001350 if (compat) {
1351 ptmp = &compat_tmp;
1352 size = sizeof(struct compat_xt_counters_info);
1353 } else
1354#endif
1355 {
1356 ptmp = &tmp;
1357 size = sizeof(struct xt_counters_info);
1358 }
1359
1360 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 return -EFAULT;
1362
Dmitry Mishin27229712006-04-01 02:25:19 -08001363#ifdef CONFIG_COMPAT
1364 if (compat) {
1365 num_counters = compat_tmp.num_counters;
1366 name = compat_tmp.name;
1367 } else
1368#endif
1369 {
1370 num_counters = tmp.num_counters;
1371 name = tmp.name;
1372 }
1373
1374 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 return -EINVAL;
1376
Dmitry Mishin27229712006-04-01 02:25:19 -08001377 paddc = vmalloc_node(len - size, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 if (!paddc)
1379 return -ENOMEM;
1380
Dmitry Mishin27229712006-04-01 02:25:19 -08001381 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 ret = -EFAULT;
1383 goto free;
1384 }
1385
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001386 t = xt_find_table_lock(net, AF_INET, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 if (!t || IS_ERR(t)) {
1388 ret = t ? PTR_ERR(t) : -ENOENT;
1389 goto free;
1390 }
1391
1392 write_lock_bh(&t->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001393 private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001394 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 ret = -EINVAL;
1396 goto unlock_up_free;
1397 }
1398
1399 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001400 /* Choose the copy that is on our node */
Harald Welte2e4e6a12006-01-12 13:30:04 -08001401 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -08001402 IPT_ENTRY_ITERATE(loc_cpu_entry,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001403 private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 add_counter_to_entry,
Dmitry Mishin27229712006-04-01 02:25:19 -08001405 paddc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 &i);
1407 unlock_up_free:
1408 write_unlock_bh(&t->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001409 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 module_put(t->me);
1411 free:
1412 vfree(paddc);
1413
1414 return ret;
1415}
1416
Dmitry Mishin27229712006-04-01 02:25:19 -08001417#ifdef CONFIG_COMPAT
1418struct compat_ipt_replace {
1419 char name[IPT_TABLE_MAXNAMELEN];
1420 u32 valid_hooks;
1421 u32 num_entries;
1422 u32 size;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001423 u32 hook_entry[NF_INET_NUMHOOKS];
1424 u32 underflow[NF_INET_NUMHOOKS];
Dmitry Mishin27229712006-04-01 02:25:19 -08001425 u32 num_counters;
1426 compat_uptr_t counters; /* struct ipt_counters * */
1427 struct compat_ipt_entry entries[0];
1428};
1429
Patrick McHardya18aa312007-12-12 10:35:16 -08001430static int
1431compat_copy_entry_to_user(struct ipt_entry *e, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001432 unsigned int *size, struct xt_counters *counters,
Patrick McHardya18aa312007-12-12 10:35:16 -08001433 unsigned int *i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001434{
Al Viro3e597c62006-09-24 23:42:20 +01001435 struct ipt_entry_target *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001436 struct compat_ipt_entry __user *ce;
1437 u_int16_t target_offset, next_offset;
1438 compat_uint_t origsize;
1439 int ret;
1440
1441 ret = -EFAULT;
1442 origsize = *size;
1443 ce = (struct compat_ipt_entry __user *)*dstptr;
Patrick McHardy78000072006-05-03 23:20:27 -07001444 if (copy_to_user(ce, e, sizeof(struct ipt_entry)))
Dmitry Mishin27229712006-04-01 02:25:19 -08001445 goto out;
1446
Patrick McHardya18aa312007-12-12 10:35:16 -08001447 if (copy_to_user(&ce->counters, &counters[*i], sizeof(counters[*i])))
1448 goto out;
1449
Dmitry Mishin27229712006-04-01 02:25:19 -08001450 *dstptr += sizeof(struct compat_ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001451 *size -= sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1452
Patrick McHardyac8e27f2007-12-17 21:45:52 -08001453 ret = IPT_MATCH_ITERATE(e, xt_compat_match_to_user, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001454 target_offset = e->target_offset - (origsize - *size);
1455 if (ret)
1456 goto out;
1457 t = ipt_get_target(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001458 ret = xt_compat_target_to_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001459 if (ret)
1460 goto out;
1461 ret = -EFAULT;
1462 next_offset = e->next_offset - (origsize - *size);
Patrick McHardy78000072006-05-03 23:20:27 -07001463 if (put_user(target_offset, &ce->target_offset))
Dmitry Mishin27229712006-04-01 02:25:19 -08001464 goto out;
Patrick McHardy78000072006-05-03 23:20:27 -07001465 if (put_user(next_offset, &ce->next_offset))
Dmitry Mishin27229712006-04-01 02:25:19 -08001466 goto out;
Patrick McHardya18aa312007-12-12 10:35:16 -08001467
1468 (*i)++;
Dmitry Mishin27229712006-04-01 02:25:19 -08001469 return 0;
1470out:
1471 return ret;
1472}
1473
Denys Vlasenko022748a2008-01-14 23:44:05 -08001474static int
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001475compat_find_calc_match(struct ipt_entry_match *m,
Patrick McHardy4b478242007-12-17 21:46:15 -08001476 const char *name,
1477 const struct ipt_ip *ip,
1478 unsigned int hookmask,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001479 int *size, unsigned int *i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001480{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001481 struct xt_match *match;
Dmitry Mishin27229712006-04-01 02:25:19 -08001482
1483 match = try_then_request_module(xt_find_match(AF_INET, m->u.user.name,
Patrick McHardy4b478242007-12-17 21:46:15 -08001484 m->u.user.revision),
Dmitry Mishin27229712006-04-01 02:25:19 -08001485 "ipt_%s", m->u.user.name);
1486 if (IS_ERR(match) || !match) {
1487 duprintf("compat_check_calc_match: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001488 m->u.user.name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001489 return match ? PTR_ERR(match) : -ENOENT;
1490 }
1491 m->u.kernel.match = match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001492 *size += xt_compat_match_offset(match);
Dmitry Mishin27229712006-04-01 02:25:19 -08001493
1494 (*i)++;
1495 return 0;
1496}
1497
Denys Vlasenko022748a2008-01-14 23:44:05 -08001498static int
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001499compat_release_match(struct ipt_entry_match *m, unsigned int *i)
1500{
1501 if (i && (*i)-- == 0)
1502 return 1;
1503
1504 module_put(m->u.kernel.match->me);
1505 return 0;
1506}
1507
Denys Vlasenko022748a2008-01-14 23:44:05 -08001508static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001509compat_release_entry(struct compat_ipt_entry *e, unsigned int *i)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001510{
1511 struct ipt_entry_target *t;
1512
1513 if (i && (*i)-- == 0)
1514 return 1;
1515
1516 /* Cleanup all matches */
Patrick McHardy73cd5982007-12-17 21:47:32 -08001517 COMPAT_IPT_MATCH_ITERATE(e, compat_release_match, NULL);
1518 t = compat_ipt_get_target(e);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001519 module_put(t->u.kernel.target->me);
1520 return 0;
1521}
1522
Denys Vlasenko022748a2008-01-14 23:44:05 -08001523static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001524check_compat_entry_size_and_hooks(struct compat_ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001525 struct xt_table_info *newinfo,
1526 unsigned int *size,
1527 unsigned char *base,
1528 unsigned char *limit,
1529 unsigned int *hook_entries,
1530 unsigned int *underflows,
1531 unsigned int *i,
1532 const char *name)
Dmitry Mishin27229712006-04-01 02:25:19 -08001533{
1534 struct ipt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001535 struct xt_target *target;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001536 unsigned int entry_offset;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001537 unsigned int j;
1538 int ret, off, h;
Dmitry Mishin27229712006-04-01 02:25:19 -08001539
1540 duprintf("check_compat_entry_size_and_hooks %p\n", e);
1541 if ((unsigned long)e % __alignof__(struct compat_ipt_entry) != 0
1542 || (unsigned char *)e + sizeof(struct compat_ipt_entry) >= limit) {
1543 duprintf("Bad offset %p, limit = %p\n", e, limit);
1544 return -EINVAL;
1545 }
1546
1547 if (e->next_offset < sizeof(struct compat_ipt_entry) +
Patrick McHardy4b478242007-12-17 21:46:15 -08001548 sizeof(struct compat_xt_entry_target)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001549 duprintf("checking: element %p size %u\n",
1550 e, e->next_offset);
1551 return -EINVAL;
1552 }
1553
Patrick McHardy73cd5982007-12-17 21:47:32 -08001554 /* For purposes of check_entry casting the compat entry is fine */
1555 ret = check_entry((struct ipt_entry *)e, name);
Dmitry Mishina96be242006-12-12 00:29:26 -08001556 if (ret)
1557 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -08001558
Patrick McHardy30c08c42007-12-17 21:47:14 -08001559 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001560 entry_offset = (void *)e - (void *)base;
1561 j = 0;
Patrick McHardy73cd5982007-12-17 21:47:32 -08001562 ret = COMPAT_IPT_MATCH_ITERATE(e, compat_find_calc_match, name,
1563 &e->ip, e->comefrom, &off, &j);
Dmitry Mishin27229712006-04-01 02:25:19 -08001564 if (ret != 0)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001565 goto release_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001566
Patrick McHardy73cd5982007-12-17 21:47:32 -08001567 t = compat_ipt_get_target(e);
Dmitry Mishin27229712006-04-01 02:25:19 -08001568 target = try_then_request_module(xt_find_target(AF_INET,
Patrick McHardy4b478242007-12-17 21:46:15 -08001569 t->u.user.name,
1570 t->u.user.revision),
Dmitry Mishin27229712006-04-01 02:25:19 -08001571 "ipt_%s", t->u.user.name);
1572 if (IS_ERR(target) || !target) {
Dmitry Mishina96be242006-12-12 00:29:26 -08001573 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001574 t->u.user.name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001575 ret = target ? PTR_ERR(target) : -ENOENT;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001576 goto release_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001577 }
1578 t->u.kernel.target = target;
1579
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001580 off += xt_compat_target_offset(target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001581 *size += off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001582 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001583 if (ret)
1584 goto out;
1585
1586 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001587 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001588 if ((unsigned char *)e - base == hook_entries[h])
1589 newinfo->hook_entry[h] = hook_entries[h];
1590 if ((unsigned char *)e - base == underflows[h])
1591 newinfo->underflow[h] = underflows[h];
1592 }
1593
1594 /* Clear counters and comefrom */
Patrick McHardy73cd5982007-12-17 21:47:32 -08001595 memset(&e->counters, 0, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001596 e->comefrom = 0;
1597
1598 (*i)++;
1599 return 0;
Patrick McHardybec71b12006-09-20 12:04:08 -07001600
Dmitry Mishin27229712006-04-01 02:25:19 -08001601out:
Patrick McHardybec71b12006-09-20 12:04:08 -07001602 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001603release_matches:
1604 IPT_MATCH_ITERATE(e, compat_release_match, &j);
Dmitry Mishin27229712006-04-01 02:25:19 -08001605 return ret;
1606}
1607
Patrick McHardy4b478242007-12-17 21:46:15 -08001608static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001609compat_copy_entry_from_user(struct compat_ipt_entry *e, void **dstptr,
Patrick McHardy4b478242007-12-17 21:46:15 -08001610 unsigned int *size, const char *name,
1611 struct xt_table_info *newinfo, unsigned char *base)
Dmitry Mishin27229712006-04-01 02:25:19 -08001612{
1613 struct ipt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001614 struct xt_target *target;
Dmitry Mishin27229712006-04-01 02:25:19 -08001615 struct ipt_entry *de;
1616 unsigned int origsize;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001617 int ret, h;
Dmitry Mishin27229712006-04-01 02:25:19 -08001618
1619 ret = 0;
1620 origsize = *size;
1621 de = (struct ipt_entry *)*dstptr;
1622 memcpy(de, e, sizeof(struct ipt_entry));
Patrick McHardy73cd5982007-12-17 21:47:32 -08001623 memcpy(&de->counters, &e->counters, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001624
Patrick McHardy73cd5982007-12-17 21:47:32 -08001625 *dstptr += sizeof(struct ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001626 *size += sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1627
Patrick McHardy73cd5982007-12-17 21:47:32 -08001628 ret = COMPAT_IPT_MATCH_ITERATE(e, xt_compat_match_from_user,
1629 dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001630 if (ret)
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001631 return ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001632 de->target_offset = e->target_offset - (origsize - *size);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001633 t = compat_ipt_get_target(e);
Dmitry Mishin27229712006-04-01 02:25:19 -08001634 target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001635 xt_compat_target_from_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001636
1637 de->next_offset = e->next_offset - (origsize - *size);
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001638 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001639 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1640 newinfo->hook_entry[h] -= origsize - *size;
1641 if ((unsigned char *)de - base < newinfo->underflow[h])
1642 newinfo->underflow[h] -= origsize - *size;
1643 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001644 return ret;
1645}
Dmitry Mishin27229712006-04-01 02:25:19 -08001646
Denys Vlasenko022748a2008-01-14 23:44:05 -08001647static int
1648compat_check_entry(struct ipt_entry *e, const char *name,
Patrick McHardy4b478242007-12-17 21:46:15 -08001649 unsigned int *i)
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001650{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001651 struct xt_mtchk_param mtpar;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001652 unsigned int j;
1653 int ret;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001654
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001655 j = 0;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001656 mtpar.table = name;
1657 mtpar.entryinfo = &e->ip;
1658 mtpar.hook_mask = e->comefrom;
1659 ret = IPT_MATCH_ITERATE(e, check_match, &mtpar, &j);
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001660 if (ret)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001661 goto cleanup_matches;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001662
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001663 ret = check_target(e, name);
1664 if (ret)
1665 goto cleanup_matches;
1666
1667 (*i)++;
1668 return 0;
1669
1670 cleanup_matches:
1671 IPT_MATCH_ITERATE(e, cleanup_match, &j);
1672 return ret;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001673}
1674
Dmitry Mishin27229712006-04-01 02:25:19 -08001675static int
1676translate_compat_table(const char *name,
Patrick McHardy4b478242007-12-17 21:46:15 -08001677 unsigned int valid_hooks,
1678 struct xt_table_info **pinfo,
1679 void **pentry0,
1680 unsigned int total_size,
1681 unsigned int number,
1682 unsigned int *hook_entries,
1683 unsigned int *underflows)
Dmitry Mishin27229712006-04-01 02:25:19 -08001684{
Dmitry Mishin920b8682006-10-30 15:14:27 -08001685 unsigned int i, j;
Dmitry Mishin27229712006-04-01 02:25:19 -08001686 struct xt_table_info *newinfo, *info;
1687 void *pos, *entry0, *entry1;
1688 unsigned int size;
1689 int ret;
1690
1691 info = *pinfo;
1692 entry0 = *pentry0;
1693 size = total_size;
1694 info->number = number;
1695
1696 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001697 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001698 info->hook_entry[i] = 0xFFFFFFFF;
1699 info->underflow[i] = 0xFFFFFFFF;
1700 }
1701
1702 duprintf("translate_compat_table: size %u\n", info->size);
Dmitry Mishin920b8682006-10-30 15:14:27 -08001703 j = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001704 xt_compat_lock(AF_INET);
1705 /* Walk through entries, checking offsets. */
Patrick McHardy73cd5982007-12-17 21:47:32 -08001706 ret = COMPAT_IPT_ENTRY_ITERATE(entry0, total_size,
1707 check_compat_entry_size_and_hooks,
1708 info, &size, entry0,
1709 entry0 + total_size,
1710 hook_entries, underflows, &j, name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001711 if (ret != 0)
1712 goto out_unlock;
1713
1714 ret = -EINVAL;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001715 if (j != number) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001716 duprintf("translate_compat_table: %u not %u entries\n",
Dmitry Mishin920b8682006-10-30 15:14:27 -08001717 j, number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001718 goto out_unlock;
1719 }
1720
1721 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001722 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001723 /* Only hooks which are valid */
1724 if (!(valid_hooks & (1 << i)))
1725 continue;
1726 if (info->hook_entry[i] == 0xFFFFFFFF) {
1727 duprintf("Invalid hook entry %u %u\n",
1728 i, hook_entries[i]);
1729 goto out_unlock;
1730 }
1731 if (info->underflow[i] == 0xFFFFFFFF) {
1732 duprintf("Invalid underflow %u %u\n",
1733 i, underflows[i]);
1734 goto out_unlock;
1735 }
1736 }
1737
1738 ret = -ENOMEM;
1739 newinfo = xt_alloc_table_info(size);
1740 if (!newinfo)
1741 goto out_unlock;
1742
1743 newinfo->number = number;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001744 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001745 newinfo->hook_entry[i] = info->hook_entry[i];
1746 newinfo->underflow[i] = info->underflow[i];
1747 }
1748 entry1 = newinfo->entries[raw_smp_processor_id()];
1749 pos = entry1;
Patrick McHardy4b478242007-12-17 21:46:15 -08001750 size = total_size;
Patrick McHardy73cd5982007-12-17 21:47:32 -08001751 ret = COMPAT_IPT_ENTRY_ITERATE(entry0, total_size,
Patrick McHardy9c547952007-12-17 21:52:00 -08001752 compat_copy_entry_from_user,
1753 &pos, &size, name, newinfo, entry1);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001754 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001755 xt_compat_unlock(AF_INET);
1756 if (ret)
1757 goto free_newinfo;
1758
1759 ret = -ELOOP;
1760 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1761 goto free_newinfo;
1762
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001763 i = 0;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001764 ret = IPT_ENTRY_ITERATE(entry1, newinfo->size, compat_check_entry,
Patrick McHardy4b478242007-12-17 21:46:15 -08001765 name, &i);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001766 if (ret) {
1767 j -= i;
Patrick McHardy73cd5982007-12-17 21:47:32 -08001768 COMPAT_IPT_ENTRY_ITERATE_CONTINUE(entry0, newinfo->size, i,
1769 compat_release_entry, &j);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001770 IPT_ENTRY_ITERATE(entry1, newinfo->size, cleanup_entry, &i);
1771 xt_free_table_info(newinfo);
1772 return ret;
1773 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001774
Dmitry Mishin27229712006-04-01 02:25:19 -08001775 /* And one copy for every other CPU */
Andrew Mortonfb1bb342006-06-25 05:46:43 -07001776 for_each_possible_cpu(i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001777 if (newinfo->entries[i] && newinfo->entries[i] != entry1)
1778 memcpy(newinfo->entries[i], entry1, newinfo->size);
1779
1780 *pinfo = newinfo;
1781 *pentry0 = entry1;
1782 xt_free_table_info(info);
1783 return 0;
1784
1785free_newinfo:
1786 xt_free_table_info(newinfo);
1787out:
Patrick McHardy73cd5982007-12-17 21:47:32 -08001788 COMPAT_IPT_ENTRY_ITERATE(entry0, total_size, compat_release_entry, &j);
Dmitry Mishin27229712006-04-01 02:25:19 -08001789 return ret;
1790out_unlock:
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001791 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001792 xt_compat_unlock(AF_INET);
1793 goto out;
1794}
1795
1796static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001797compat_do_replace(struct net *net, void __user *user, unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001798{
1799 int ret;
1800 struct compat_ipt_replace tmp;
1801 struct xt_table_info *newinfo;
1802 void *loc_cpu_entry;
1803
1804 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1805 return -EFAULT;
1806
Dmitry Mishin27229712006-04-01 02:25:19 -08001807 /* overflow check */
Eric Dumazet259d4e42007-12-04 23:24:56 -08001808 if (tmp.size >= INT_MAX / num_possible_cpus())
Dmitry Mishin27229712006-04-01 02:25:19 -08001809 return -ENOMEM;
1810 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1811 return -ENOMEM;
1812
1813 newinfo = xt_alloc_table_info(tmp.size);
1814 if (!newinfo)
1815 return -ENOMEM;
1816
Patrick McHardy9c547952007-12-17 21:52:00 -08001817 /* choose the copy that is on our node/cpu */
Dmitry Mishin27229712006-04-01 02:25:19 -08001818 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1819 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1820 tmp.size) != 0) {
1821 ret = -EFAULT;
1822 goto free_newinfo;
1823 }
1824
1825 ret = translate_compat_table(tmp.name, tmp.valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001826 &newinfo, &loc_cpu_entry, tmp.size,
1827 tmp.num_entries, tmp.hook_entry,
1828 tmp.underflow);
Dmitry Mishin27229712006-04-01 02:25:19 -08001829 if (ret != 0)
1830 goto free_newinfo;
1831
1832 duprintf("compat_do_replace: Translated table\n");
1833
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001834 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001835 tmp.num_counters, compat_ptr(tmp.counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001836 if (ret)
1837 goto free_newinfo_untrans;
1838 return 0;
1839
1840 free_newinfo_untrans:
Patrick McHardy4b478242007-12-17 21:46:15 -08001841 IPT_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
Dmitry Mishin27229712006-04-01 02:25:19 -08001842 free_newinfo:
1843 xt_free_table_info(newinfo);
1844 return ret;
1845}
1846
1847static int
1848compat_do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user,
Patrick McHardy4b478242007-12-17 21:46:15 -08001849 unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001850{
1851 int ret;
1852
1853 if (!capable(CAP_NET_ADMIN))
1854 return -EPERM;
1855
1856 switch (cmd) {
1857 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001858 ret = compat_do_replace(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001859 break;
1860
1861 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001862 ret = do_add_counters(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001863 break;
1864
1865 default:
1866 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1867 ret = -EINVAL;
1868 }
1869
1870 return ret;
1871}
1872
Patrick McHardy4b478242007-12-17 21:46:15 -08001873struct compat_ipt_get_entries {
Dmitry Mishin27229712006-04-01 02:25:19 -08001874 char name[IPT_TABLE_MAXNAMELEN];
1875 compat_uint_t size;
1876 struct compat_ipt_entry entrytable[0];
1877};
1878
Patrick McHardy4b478242007-12-17 21:46:15 -08001879static int
1880compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1881 void __user *userptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001882{
Dmitry Mishin27229712006-04-01 02:25:19 -08001883 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001884 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001885 void __user *pos;
1886 unsigned int size;
1887 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001888 const void *loc_cpu_entry;
Patrick McHardya18aa312007-12-12 10:35:16 -08001889 unsigned int i = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001890
1891 counters = alloc_counters(table);
1892 if (IS_ERR(counters))
1893 return PTR_ERR(counters);
1894
1895 /* choose the copy that is on our node/cpu, ...
1896 * This choice is lazy (because current thread is
1897 * allowed to migrate to another cpu)
1898 */
1899 loc_cpu_entry = private->entries[raw_smp_processor_id()];
1900 pos = userptr;
1901 size = total_size;
1902 ret = IPT_ENTRY_ITERATE(loc_cpu_entry, total_size,
Patrick McHardya18aa312007-12-12 10:35:16 -08001903 compat_copy_entry_to_user,
1904 &pos, &size, counters, &i);
Dmitry Mishin27229712006-04-01 02:25:19 -08001905
Dmitry Mishin27229712006-04-01 02:25:19 -08001906 vfree(counters);
1907 return ret;
1908}
1909
1910static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001911compat_get_entries(struct net *net, struct compat_ipt_get_entries __user *uptr,
1912 int *len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001913{
1914 int ret;
1915 struct compat_ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001916 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001917
Dmitry Mishin27229712006-04-01 02:25:19 -08001918 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001919 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001920 return -EINVAL;
1921 }
1922
1923 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1924 return -EFAULT;
1925
1926 if (*len != sizeof(struct compat_ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001927 duprintf("compat_get_entries: %u != %zu\n",
1928 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001929 return -EINVAL;
1930 }
1931
1932 xt_compat_lock(AF_INET);
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001933 t = xt_find_table_lock(net, AF_INET, get.name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001934 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001935 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001936 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08001937 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001938 ret = compat_table_info(private, &info);
1939 if (!ret && get.size == info.size) {
1940 ret = compat_copy_entries_to_user(private->size,
Patrick McHardy4b478242007-12-17 21:46:15 -08001941 t, uptr->entrytable);
Dmitry Mishin27229712006-04-01 02:25:19 -08001942 } else if (!ret) {
1943 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001944 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001945 ret = -EAGAIN;
Dmitry Mishin27229712006-04-01 02:25:19 -08001946 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001947 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001948 module_put(t->me);
1949 xt_table_unlock(t);
1950 } else
1951 ret = t ? PTR_ERR(t) : -ENOENT;
1952
1953 xt_compat_unlock(AF_INET);
1954 return ret;
1955}
1956
Patrick McHardy79030ed2006-09-20 12:05:08 -07001957static int do_ipt_get_ctl(struct sock *, int, void __user *, int *);
1958
Dmitry Mishin27229712006-04-01 02:25:19 -08001959static int
1960compat_do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1961{
1962 int ret;
1963
Björn Steinbrink82fac052006-10-20 00:21:10 -07001964 if (!capable(CAP_NET_ADMIN))
1965 return -EPERM;
1966
Dmitry Mishin27229712006-04-01 02:25:19 -08001967 switch (cmd) {
1968 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001969 ret = get_info(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001970 break;
1971 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001972 ret = compat_get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001973 break;
1974 default:
Patrick McHardy79030ed2006-09-20 12:05:08 -07001975 ret = do_ipt_get_ctl(sk, cmd, user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001976 }
1977 return ret;
1978}
1979#endif
1980
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981static int
Patrick McHardy9c547952007-12-17 21:52:00 -08001982do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983{
1984 int ret;
1985
1986 if (!capable(CAP_NET_ADMIN))
1987 return -EPERM;
1988
1989 switch (cmd) {
1990 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001991 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 break;
1993
1994 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001995 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 break;
1997
1998 default:
1999 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
2000 ret = -EINVAL;
2001 }
2002
2003 return ret;
2004}
2005
2006static int
2007do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2008{
2009 int ret;
2010
2011 if (!capable(CAP_NET_ADMIN))
2012 return -EPERM;
2013
2014 switch (cmd) {
Dmitry Mishin27229712006-04-01 02:25:19 -08002015 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002016 ret = get_info(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 break;
Dmitry Mishin27229712006-04-01 02:25:19 -08002018
2019 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002020 ret = get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08002021 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
2023 case IPT_SO_GET_REVISION_MATCH:
2024 case IPT_SO_GET_REVISION_TARGET: {
2025 struct ipt_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002026 int target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028 if (*len != sizeof(rev)) {
2029 ret = -EINVAL;
2030 break;
2031 }
2032 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2033 ret = -EFAULT;
2034 break;
2035 }
2036
2037 if (cmd == IPT_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08002038 target = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08002040 target = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Harald Welte2e4e6a12006-01-12 13:30:04 -08002042 try_then_request_module(xt_find_revision(AF_INET, rev.name,
2043 rev.revision,
2044 target, &ret),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 "ipt_%s", rev.name);
2046 break;
2047 }
2048
2049 default:
2050 duprintf("do_ipt_get_ctl: unknown request %i\n", cmd);
2051 ret = -EINVAL;
2052 }
2053
2054 return ret;
2055}
2056
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002057struct xt_table *ipt_register_table(struct net *net, struct xt_table *table,
2058 const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059{
2060 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002061 struct xt_table_info *newinfo;
Eric Dumazet259d4e42007-12-04 23:24:56 -08002062 struct xt_table_info bootstrap
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 = { 0, 0, 0, { 0 }, { 0 }, { } };
Eric Dumazet31836062005-12-13 23:13:48 -08002064 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08002065 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Harald Welte2e4e6a12006-01-12 13:30:04 -08002067 newinfo = xt_alloc_table_info(repl->size);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002068 if (!newinfo) {
2069 ret = -ENOMEM;
2070 goto out;
2071 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Patrick McHardy9c547952007-12-17 21:52:00 -08002073 /* choose the copy on our node/cpu, but dont care about preemption */
Eric Dumazet31836062005-12-13 23:13:48 -08002074 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
2075 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
2077 ret = translate_table(table->name, table->valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08002078 newinfo, loc_cpu_entry, repl->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 repl->num_entries,
2080 repl->hook_entry,
2081 repl->underflow);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002082 if (ret != 0)
2083 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002085 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08002086 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002087 ret = PTR_ERR(new_table);
2088 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 }
2090
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002091 return new_table;
2092
2093out_free:
2094 xt_free_table_info(newinfo);
2095out:
2096 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097}
2098
Jan Engelhardte60a13e2007-02-07 15:12:33 -08002099void ipt_unregister_table(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100{
Harald Welte2e4e6a12006-01-12 13:30:04 -08002101 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08002102 void *loc_cpu_entry;
Alexey Dobriyandf200962008-01-31 04:05:34 -08002103 struct module *table_owner = table->me;
Eric Dumazet31836062005-12-13 23:13:48 -08002104
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002105 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
2107 /* Decrease module usage counts and free resources */
Harald Welte2e4e6a12006-01-12 13:30:04 -08002108 loc_cpu_entry = private->entries[raw_smp_processor_id()];
2109 IPT_ENTRY_ITERATE(loc_cpu_entry, private->size, cleanup_entry, NULL);
Alexey Dobriyandf200962008-01-31 04:05:34 -08002110 if (private->number > private->initial_entries)
2111 module_put(table_owner);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002112 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113}
2114
2115/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002116static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117icmp_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2118 u_int8_t type, u_int8_t code,
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002119 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120{
Patrick McHardy9c547952007-12-17 21:52:00 -08002121 return ((test_type == 0xFF) ||
2122 (type == test_type && code >= min_code && code <= max_code))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 ^ invert;
2124}
2125
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002126static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002127icmp_match(const struct sk_buff *skb, const struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
Jan Engelhardt5452e422008-04-14 11:15:35 +02002129 const struct icmphdr *ic;
2130 struct icmphdr _icmph;
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002131 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133 /* Must not be a fragment. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002134 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002135 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002137 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 if (ic == NULL) {
2139 /* We've been asked to examine this packet, and we
2140 * can't. Hence, no choice but to drop.
2141 */
2142 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002143 *par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002144 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 }
2146
2147 return icmp_type_code_match(icmpinfo->type,
2148 icmpinfo->code[0],
2149 icmpinfo->code[1],
2150 ic->type, ic->code,
2151 !!(icmpinfo->invflags&IPT_ICMP_INV));
2152}
2153
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002154static bool icmp_checkentry(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002156 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002158 /* Must specify no unknown invflags */
2159 return !(icmpinfo->invflags & ~IPT_ICMP_INV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160}
2161
2162/* The built-in targets: standard (NULL) and error. */
Patrick McHardy9f15c532007-07-07 22:22:02 -07002163static struct xt_target ipt_standard_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 .name = IPT_STANDARD_TARGET,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002165 .targetsize = sizeof(int),
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002166 .family = AF_INET,
Dmitry Mishin27229712006-04-01 02:25:19 -08002167#ifdef CONFIG_COMPAT
Patrick McHardy9fa492c2006-09-20 12:05:37 -07002168 .compatsize = sizeof(compat_int_t),
2169 .compat_from_user = compat_standard_from_user,
2170 .compat_to_user = compat_standard_to_user,
Dmitry Mishin27229712006-04-01 02:25:19 -08002171#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172};
2173
Patrick McHardy9f15c532007-07-07 22:22:02 -07002174static struct xt_target ipt_error_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 .name = IPT_ERROR_TARGET,
2176 .target = ipt_error,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002177 .targetsize = IPT_FUNCTION_MAXNAMELEN,
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002178 .family = AF_INET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179};
2180
2181static struct nf_sockopt_ops ipt_sockopts = {
2182 .pf = PF_INET,
2183 .set_optmin = IPT_BASE_CTL,
2184 .set_optmax = IPT_SO_SET_MAX+1,
2185 .set = do_ipt_set_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002186#ifdef CONFIG_COMPAT
2187 .compat_set = compat_do_ipt_set_ctl,
2188#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 .get_optmin = IPT_BASE_CTL,
2190 .get_optmax = IPT_SO_GET_MAX+1,
2191 .get = do_ipt_get_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002192#ifdef CONFIG_COMPAT
2193 .compat_get = compat_do_ipt_get_ctl,
2194#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002195 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196};
2197
Patrick McHardy9f15c532007-07-07 22:22:02 -07002198static struct xt_match icmp_matchstruct __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 .name = "icmp",
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002200 .match = icmp_match,
2201 .matchsize = sizeof(struct ipt_icmp),
Patrick McHardy9c547952007-12-17 21:52:00 -08002202 .checkentry = icmp_checkentry,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002203 .proto = IPPROTO_ICMP,
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002204 .family = AF_INET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205};
2206
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002207static int __net_init ip_tables_net_init(struct net *net)
2208{
2209 return xt_proto_init(net, AF_INET);
2210}
2211
2212static void __net_exit ip_tables_net_exit(struct net *net)
2213{
2214 xt_proto_fini(net, AF_INET);
2215}
2216
2217static struct pernet_operations ip_tables_net_ops = {
2218 .init = ip_tables_net_init,
2219 .exit = ip_tables_net_exit,
2220};
2221
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002222static int __init ip_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223{
2224 int ret;
2225
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002226 ret = register_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002227 if (ret < 0)
2228 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002229
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 /* Noone else will be downing sem now, so we won't sleep */
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002231 ret = xt_register_target(&ipt_standard_target);
2232 if (ret < 0)
2233 goto err2;
2234 ret = xt_register_target(&ipt_error_target);
2235 if (ret < 0)
2236 goto err3;
2237 ret = xt_register_match(&icmp_matchstruct);
2238 if (ret < 0)
2239 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
2241 /* Register setsockopt */
2242 ret = nf_register_sockopt(&ipt_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002243 if (ret < 0)
2244 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
Dan Aloni0236e662007-07-09 13:20:12 -07002246 printk(KERN_INFO "ip_tables: (C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002248
2249err5:
2250 xt_unregister_match(&icmp_matchstruct);
2251err4:
2252 xt_unregister_target(&ipt_error_target);
2253err3:
2254 xt_unregister_target(&ipt_standard_target);
2255err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002256 unregister_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002257err1:
2258 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259}
2260
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002261static void __exit ip_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262{
2263 nf_unregister_sockopt(&ipt_sockopts);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002264
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002265 xt_unregister_match(&icmp_matchstruct);
2266 xt_unregister_target(&ipt_error_target);
2267 xt_unregister_target(&ipt_standard_target);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002268
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002269 unregister_pernet_subsys(&ip_tables_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270}
2271
2272EXPORT_SYMBOL(ipt_register_table);
2273EXPORT_SYMBOL(ipt_unregister_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274EXPORT_SYMBOL(ipt_do_table);
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002275module_init(ip_tables_init);
2276module_exit(ip_tables_fini);