blob: 7fcbc16dd24be25dd2f4268c12fae1f2cf2e9559 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Packet matching code.
3 *
4 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
Harald Welte2e4e6a12006-01-12 13:30:04 -08005 * Copyright (C) 2000-2005 Netfilter Core Team <coreteam@netfilter.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/cache.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080012#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/skbuff.h>
14#include <linux/kmod.h>
15#include <linux/vmalloc.h>
16#include <linux/netdevice.h>
17#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/icmp.h>
19#include <net/ip.h>
Dmitry Mishin27229712006-04-01 02:25:19 -080020#include <net/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/uaccess.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -080022#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/proc_fs.h>
24#include <linux/err.h>
David S. Millerc8923c62005-10-13 14:41:23 -070025#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Harald Welte2e4e6a12006-01-12 13:30:04 -080027#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/netfilter_ipv4/ip_tables.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080029#include <net/netfilter/nf_log.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31MODULE_LICENSE("GPL");
32MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
33MODULE_DESCRIPTION("IPv4 packet filter");
34
35/*#define DEBUG_IP_FIREWALL*/
36/*#define DEBUG_ALLOW_ALL*/ /* Useful for remote debugging */
37/*#define DEBUG_IP_FIREWALL_USER*/
38
39#ifdef DEBUG_IP_FIREWALL
40#define dprintf(format, args...) printk(format , ## args)
41#else
42#define dprintf(format, args...)
43#endif
44
45#ifdef DEBUG_IP_FIREWALL_USER
46#define duprintf(format, args...) printk(format , ## args)
47#else
48#define duprintf(format, args...)
49#endif
50
51#ifdef CONFIG_NETFILTER_DEBUG
52#define IP_NF_ASSERT(x) \
53do { \
54 if (!(x)) \
55 printk("IP_NF_ASSERT: %s:%s:%u\n", \
Harvey Harrison0dc47872008-03-05 20:47:47 -080056 __func__, __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070057} while(0)
58#else
59#define IP_NF_ASSERT(x)
60#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#if 0
63/* All the better to debug you with... */
64#define static
65#define inline
66#endif
67
68/*
69 We keep a set of rules for each CPU, so we can avoid write-locking
70 them in the softirq when updating the counters and therefore
71 only need to read-lock in the softirq; doing a write_lock_bh() in user
72 context stops packets coming through and allows user context to read
73 the counters or update the rules.
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 Hence the start of any table is given by get_table() below. */
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/* Returns whether matches rule or not. */
Denys Vlasenko022748a2008-01-14 23:44:05 -080078/* Performance critical - called for every packet */
Patrick McHardy9c547952007-12-17 21:52:00 -080079static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -070080ip_packet_match(const struct iphdr *ip,
81 const char *indev,
82 const char *outdev,
83 const struct ipt_ip *ipinfo,
84 int isfrag)
85{
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 unsigned long ret;
87
Jan Engelhardte79ec502007-12-17 22:44:06 -080088#define FWINV(bool, invflg) ((bool) ^ !!(ipinfo->invflags & (invflg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 if (FWINV((ip->saddr&ipinfo->smsk.s_addr) != ipinfo->src.s_addr,
91 IPT_INV_SRCIP)
92 || FWINV((ip->daddr&ipinfo->dmsk.s_addr) != ipinfo->dst.s_addr,
93 IPT_INV_DSTIP)) {
94 dprintf("Source or dest mismatch.\n");
95
Harvey Harrisoncffee382008-10-31 00:53:08 -070096 dprintf("SRC: %pI4. Mask: %pI4. Target: %pI4.%s\n",
97 &ip->saddr, &ipinfo->smsk.s_addr, &ipinfo->src.s_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 ipinfo->invflags & IPT_INV_SRCIP ? " (INV)" : "");
Harvey Harrisoncffee382008-10-31 00:53:08 -070099 dprintf("DST: %pI4 Mask: %pI4 Target: %pI4.%s\n",
100 &ip->daddr, &ipinfo->dmsk.s_addr, &ipinfo->dst.s_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 ipinfo->invflags & IPT_INV_DSTIP ? " (INV)" : "");
Patrick McHardy9c547952007-12-17 21:52:00 -0800102 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 }
104
Eric Dumazetb8dfe492009-03-25 17:31:52 +0100105 ret = ifname_compare_aligned(indev, ipinfo->iniface, ipinfo->iniface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 if (FWINV(ret != 0, IPT_INV_VIA_IN)) {
108 dprintf("VIA in mismatch (%s vs %s).%s\n",
109 indev, ipinfo->iniface,
110 ipinfo->invflags&IPT_INV_VIA_IN ?" (INV)":"");
Patrick McHardy9c547952007-12-17 21:52:00 -0800111 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
113
Eric Dumazetb8dfe492009-03-25 17:31:52 +0100114 ret = ifname_compare_aligned(outdev, ipinfo->outiface, ipinfo->outiface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 if (FWINV(ret != 0, IPT_INV_VIA_OUT)) {
117 dprintf("VIA out mismatch (%s vs %s).%s\n",
118 outdev, ipinfo->outiface,
119 ipinfo->invflags&IPT_INV_VIA_OUT ?" (INV)":"");
Patrick McHardy9c547952007-12-17 21:52:00 -0800120 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 }
122
123 /* Check specific protocol */
124 if (ipinfo->proto
125 && FWINV(ip->protocol != ipinfo->proto, IPT_INV_PROTO)) {
126 dprintf("Packet protocol %hi does not match %hi.%s\n",
127 ip->protocol, ipinfo->proto,
128 ipinfo->invflags&IPT_INV_PROTO ? " (INV)":"");
Patrick McHardy9c547952007-12-17 21:52:00 -0800129 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
131
132 /* If we have a fragment rule but the packet is not a fragment
133 * then we return zero */
134 if (FWINV((ipinfo->flags&IPT_F_FRAG) && !isfrag, IPT_INV_FRAG)) {
135 dprintf("Fragment rule but not fragment.%s\n",
136 ipinfo->invflags & IPT_INV_FRAG ? " (INV)" : "");
Patrick McHardy9c547952007-12-17 21:52:00 -0800137 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139
Patrick McHardy9c547952007-12-17 21:52:00 -0800140 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
Denys Vlasenko022748a2008-01-14 23:44:05 -0800143static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144ip_checkentry(const struct ipt_ip *ip)
145{
146 if (ip->flags & ~IPT_F_MASK) {
147 duprintf("Unknown flag bits set: %08X\n",
148 ip->flags & ~IPT_F_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700149 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151 if (ip->invflags & ~IPT_INV_MASK) {
152 duprintf("Unknown invflag bits set: %08X\n",
153 ip->invflags & ~IPT_INV_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700154 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700156 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159static unsigned int
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200160ipt_error(struct sk_buff *skb, const struct xt_target_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 if (net_ratelimit())
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200163 printk("ip_tables: error: `%s'\n",
164 (const char *)par->targinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 return NF_DROP;
167}
168
Denys Vlasenko022748a2008-01-14 23:44:05 -0800169/* Performance critical - called for every packet */
170static inline bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200171do_match(struct ipt_entry_match *m, const struct sk_buff *skb,
172 struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200174 par->match = m->u.kernel.match;
175 par->matchinfo = m->data;
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 /* Stop iteration if it doesn't match */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200178 if (!m->u.kernel.match->match(skb, par))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700179 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 else
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700181 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
Denys Vlasenko022748a2008-01-14 23:44:05 -0800184/* Performance critical */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185static inline struct ipt_entry *
186get_entry(void *base, unsigned int offset)
187{
188 return (struct ipt_entry *)(base + offset);
189}
190
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700191/* All zeroes == unconditional rule. */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800192/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700193static inline int
194unconditional(const struct ipt_ip *ip)
195{
196 unsigned int i;
197
198 for (i = 0; i < sizeof(*ip)/sizeof(__u32); i++)
199 if (((__u32 *)ip)[i])
200 return 0;
201
202 return 1;
Jan Engelhardte79ec502007-12-17 22:44:06 -0800203#undef FWINV
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700204}
205
206#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
207 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
Denys Vlasenko022748a2008-01-14 23:44:05 -0800208static const char *const hooknames[] = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800209 [NF_INET_PRE_ROUTING] = "PREROUTING",
210 [NF_INET_LOCAL_IN] = "INPUT",
Patrick McHardy9c547952007-12-17 21:52:00 -0800211 [NF_INET_FORWARD] = "FORWARD",
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800212 [NF_INET_LOCAL_OUT] = "OUTPUT",
213 [NF_INET_POST_ROUTING] = "POSTROUTING",
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700214};
215
216enum nf_ip_trace_comments {
217 NF_IP_TRACE_COMMENT_RULE,
218 NF_IP_TRACE_COMMENT_RETURN,
219 NF_IP_TRACE_COMMENT_POLICY,
220};
221
Denys Vlasenko022748a2008-01-14 23:44:05 -0800222static const char *const comments[] = {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700223 [NF_IP_TRACE_COMMENT_RULE] = "rule",
224 [NF_IP_TRACE_COMMENT_RETURN] = "return",
225 [NF_IP_TRACE_COMMENT_POLICY] = "policy",
226};
227
228static struct nf_loginfo trace_loginfo = {
229 .type = NF_LOG_TYPE_LOG,
230 .u = {
231 .log = {
232 .level = 4,
233 .logflags = NF_LOG_MASK,
234 },
235 },
236};
237
Denys Vlasenko022748a2008-01-14 23:44:05 -0800238/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700239static inline int
240get_chainname_rulenum(struct ipt_entry *s, struct ipt_entry *e,
241 char *hookname, char **chainname,
242 char **comment, unsigned int *rulenum)
243{
244 struct ipt_standard_target *t = (void *)ipt_get_target(s);
245
246 if (strcmp(t->target.u.kernel.target->name, IPT_ERROR_TARGET) == 0) {
247 /* Head of user chain: ERROR target with chainname */
248 *chainname = t->target.data;
249 (*rulenum) = 0;
250 } else if (s == e) {
251 (*rulenum)++;
252
253 if (s->target_offset == sizeof(struct ipt_entry)
254 && strcmp(t->target.u.kernel.target->name,
255 IPT_STANDARD_TARGET) == 0
256 && t->verdict < 0
257 && unconditional(&s->ip)) {
258 /* Tail of chains: STANDARD target (return/policy) */
259 *comment = *chainname == hookname
260 ? (char *)comments[NF_IP_TRACE_COMMENT_POLICY]
261 : (char *)comments[NF_IP_TRACE_COMMENT_RETURN];
262 }
263 return 1;
264 } else
265 (*rulenum)++;
266
267 return 0;
268}
269
270static void trace_packet(struct sk_buff *skb,
271 unsigned int hook,
272 const struct net_device *in,
273 const struct net_device *out,
Jan Engelhardtecb6f852008-01-31 03:54:47 -0800274 const char *tablename,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700275 struct xt_table_info *private,
276 struct ipt_entry *e)
277{
278 void *table_base;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200279 const struct ipt_entry *root;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700280 char *hookname, *chainname, *comment;
281 unsigned int rulenum = 0;
282
Jan Engelhardtccf5bd82009-04-15 20:27:03 +0200283 table_base = private->entries[smp_processor_id()];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700284 root = get_entry(table_base, private->hook_entry[hook]);
285
286 hookname = chainname = (char *)hooknames[hook];
287 comment = (char *)comments[NF_IP_TRACE_COMMENT_RULE];
288
289 IPT_ENTRY_ITERATE(root,
290 private->size - private->hook_entry[hook],
291 get_chainname_rulenum,
292 e, hookname, &chainname, &comment, &rulenum);
293
294 nf_log_packet(AF_INET, hook, skb, in, out, &trace_loginfo,
295 "TRACE: %s:%s:%s:%u ",
296 tablename, chainname, comment, rulenum);
297}
298#endif
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300/* Returns one of the generic firewall policies, like NF_ACCEPT. */
301unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700302ipt_do_table(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 unsigned int hook,
304 const struct net_device *in,
305 const struct net_device *out,
Jan Engelhardte60a13e2007-02-07 15:12:33 -0800306 struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
308 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
Jan Engelhardt5452e422008-04-14 11:15:35 +0200309 const struct iphdr *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 u_int16_t datalen;
Jan Engelhardtcff533a2007-07-07 22:15:12 -0700311 bool hotdrop = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 /* Initializing verdict to NF_DROP keeps gcc happy. */
313 unsigned int verdict = NF_DROP;
314 const char *indev, *outdev;
315 void *table_base;
316 struct ipt_entry *e, *back;
Patrick McHardy83117312006-08-17 18:13:53 -0700317 struct xt_table_info *private;
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200318 struct xt_match_param mtpar;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200319 struct xt_target_param tgpar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 /* Initialization */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700322 ip = ip_hdr(skb);
323 datalen = skb->len - ip->ihl * 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 indev = in ? in->name : nulldevname;
325 outdev = out ? out->name : nulldevname;
326 /* We handle fragments by dealing with the first fragment as
327 * if it was a normal packet. All other fragments are treated
328 * normally, except that they will NEVER match rules that ask
329 * things we don't know, ie. tcp syn flag or ports). If the
330 * rule is also a fragment-specific rule, non-fragments won't
331 * match it. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200332 mtpar.fragoff = ntohs(ip->frag_off) & IP_OFFSET;
333 mtpar.thoff = ip_hdrlen(skb);
334 mtpar.hotdrop = &hotdrop;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200335 mtpar.in = tgpar.in = in;
336 mtpar.out = tgpar.out = out;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200337 mtpar.family = tgpar.family = NFPROTO_IPV4;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200338 tgpar.hooknum = hook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 IP_NF_ASSERT(table->valid_hooks & (1 << hook));
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700341 xt_info_rdlock_bh();
342 private = table->private;
343 table_base = private->entries[smp_processor_id()];
Stephen Hemminger78454472009-02-20 10:35:32 +0100344
Harald Welte2e4e6a12006-01-12 13:30:04 -0800345 e = get_entry(table_base, private->hook_entry[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 /* For return from builtin chain */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800348 back = get_entry(table_base, private->underflow[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 do {
351 IP_NF_ASSERT(e);
352 IP_NF_ASSERT(back);
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200353 if (ip_packet_match(ip, indev, outdev,
354 &e->ip, mtpar.fragoff)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 struct ipt_entry_target *t;
356
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200357 if (IPT_MATCH_ITERATE(e, do_match, skb, &mtpar) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 goto no_match;
359
360 ADD_COUNTER(e->counters, ntohs(ip->tot_len), 1);
361
362 t = ipt_get_target(e);
363 IP_NF_ASSERT(t->u.kernel.target);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700364
365#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
366 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
367 /* The packet is traced: log it */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700368 if (unlikely(skb->nf_trace))
369 trace_packet(skb, hook, in, out,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700370 table->name, private, e);
371#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 /* Standard target? */
373 if (!t->u.kernel.target->target) {
374 int v;
375
376 v = ((struct ipt_standard_target *)t)->verdict;
377 if (v < 0) {
378 /* Pop from stack? */
379 if (v != IPT_RETURN) {
380 verdict = (unsigned)(-v) - 1;
381 break;
382 }
383 e = back;
384 back = get_entry(table_base,
385 back->comefrom);
386 continue;
387 }
Patrick McHardy05465342005-08-21 23:31:43 -0700388 if (table_base + v != (void *)e + e->next_offset
389 && !(e->ip.flags & IPT_F_GOTO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 /* Save old back ptr in next entry */
391 struct ipt_entry *next
392 = (void *)e + e->next_offset;
393 next->comefrom
394 = (void *)back - table_base;
395 /* set back pointer to next entry */
396 back = next;
397 }
398
399 e = get_entry(table_base, v);
400 } else {
401 /* Targets which reenter must return
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900402 abs. verdicts */
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200403 tgpar.target = t->u.kernel.target;
404 tgpar.targinfo = t->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405#ifdef CONFIG_NETFILTER_DEBUG
406 ((struct ipt_entry *)table_base)->comefrom
407 = 0xeeeeeeec;
408#endif
Herbert Xu3db05fe2007-10-15 00:53:15 -0700409 verdict = t->u.kernel.target->target(skb,
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200410 &tgpar);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411#ifdef CONFIG_NETFILTER_DEBUG
412 if (((struct ipt_entry *)table_base)->comefrom
413 != 0xeeeeeeec
414 && verdict == IPT_CONTINUE) {
415 printk("Target %s reentered!\n",
416 t->u.kernel.target->name);
417 verdict = NF_DROP;
418 }
419 ((struct ipt_entry *)table_base)->comefrom
420 = 0x57acc001;
421#endif
422 /* Target might have changed stuff. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700423 ip = ip_hdr(skb);
424 datalen = skb->len - ip->ihl * 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 if (verdict == IPT_CONTINUE)
427 e = (void *)e + e->next_offset;
428 else
429 /* Verdict */
430 break;
431 }
432 } else {
433
434 no_match:
435 e = (void *)e + e->next_offset;
436 }
437 } while (!hotdrop);
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700438 xt_info_rdunlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440#ifdef DEBUG_ALLOW_ALL
441 return NF_ACCEPT;
442#else
443 if (hotdrop)
444 return NF_DROP;
445 else return verdict;
446#endif
447}
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449/* Figures out from what hook each rule can be called: returns 0 if
450 there are loops. Puts hook bitmask in comefrom. */
451static int
Harald Welte2e4e6a12006-01-12 13:30:04 -0800452mark_source_chains(struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800453 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 unsigned int hook;
456
457 /* No recursion; use packet counter to save back ptrs (reset
458 to 0 as we leave), and comefrom to save source hook bitmask */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800459 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 unsigned int pos = newinfo->hook_entry[hook];
Patrick McHardy9c547952007-12-17 21:52:00 -0800461 struct ipt_entry *e = (struct ipt_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 if (!(valid_hooks & (1 << hook)))
464 continue;
465
466 /* Set initial back pointer. */
467 e->counters.pcnt = pos;
468
469 for (;;) {
470 struct ipt_standard_target *t
471 = (void *)ipt_get_target(e);
Al Viroe1b4b9f2006-12-12 00:29:52 -0800472 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800474 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 printk("iptables: loop hook %u pos %u %08X.\n",
476 hook, pos, e->comefrom);
477 return 0;
478 }
Patrick McHardy9c547952007-12-17 21:52:00 -0800479 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 /* Unconditional return/END. */
Al Viroe1b4b9f2006-12-12 00:29:52 -0800482 if ((e->target_offset == sizeof(struct ipt_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 && (strcmp(t->target.u.user.name,
484 IPT_STANDARD_TARGET) == 0)
485 && t->verdict < 0
Al Viroe1b4b9f2006-12-12 00:29:52 -0800486 && unconditional(&e->ip)) || visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 unsigned int oldpos, size;
488
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100489 if ((strcmp(t->target.u.user.name,
490 IPT_STANDARD_TARGET) == 0) &&
491 t->verdict < -NF_MAX_VERDICT - 1) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800492 duprintf("mark_source_chains: bad "
493 "negative verdict (%i)\n",
494 t->verdict);
495 return 0;
496 }
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 /* Return: backtrack through the last
499 big jump. */
500 do {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800501 e->comefrom ^= (1<<NF_INET_NUMHOOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502#ifdef DEBUG_IP_FIREWALL_USER
503 if (e->comefrom
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800504 & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 duprintf("Back unset "
506 "on hook %u "
507 "rule %u\n",
508 hook, pos);
509 }
510#endif
511 oldpos = pos;
512 pos = e->counters.pcnt;
513 e->counters.pcnt = 0;
514
515 /* We're at the start. */
516 if (pos == oldpos)
517 goto next;
518
519 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800520 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 } while (oldpos == pos + e->next_offset);
522
523 /* Move along one */
524 size = e->next_offset;
525 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800526 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 e->counters.pcnt = pos;
528 pos += size;
529 } else {
530 int newpos = t->verdict;
531
532 if (strcmp(t->target.u.user.name,
533 IPT_STANDARD_TARGET) == 0
534 && newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800535 if (newpos > newinfo->size -
536 sizeof(struct ipt_entry)) {
537 duprintf("mark_source_chains: "
538 "bad verdict (%i)\n",
539 newpos);
540 return 0;
541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 /* This a jump; chase it. */
543 duprintf("Jump rule %u -> %u\n",
544 pos, newpos);
545 } else {
546 /* ... this is a fallthru */
547 newpos = pos + e->next_offset;
548 }
549 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800550 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 e->counters.pcnt = pos;
552 pos = newpos;
553 }
554 }
555 next:
556 duprintf("Finished chain %u\n", hook);
557 }
558 return 1;
559}
560
Denys Vlasenko022748a2008-01-14 23:44:05 -0800561static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562cleanup_match(struct ipt_entry_match *m, unsigned int *i)
563{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200564 struct xt_mtdtor_param par;
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (i && (*i)-- == 0)
567 return 1;
568
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200569 par.match = m->u.kernel.match;
570 par.matchinfo = m->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200571 par.family = NFPROTO_IPV4;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200572 if (par.match->destroy != NULL)
573 par.match->destroy(&par);
574 module_put(par.match->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return 0;
576}
577
Denys Vlasenko022748a2008-01-14 23:44:05 -0800578static int
Dmitry Mishina96be242006-12-12 00:29:26 -0800579check_entry(struct ipt_entry *e, const char *name)
580{
581 struct ipt_entry_target *t;
582
583 if (!ip_checkentry(&e->ip)) {
584 duprintf("ip_tables: ip check failed %p %s.\n", e, name);
585 return -EINVAL;
586 }
587
Patrick McHardy9c547952007-12-17 21:52:00 -0800588 if (e->target_offset + sizeof(struct ipt_entry_target) >
589 e->next_offset)
Dmitry Mishina96be242006-12-12 00:29:26 -0800590 return -EINVAL;
591
592 t = ipt_get_target(e);
593 if (e->target_offset + t->u.target_size > e->next_offset)
594 return -EINVAL;
595
596 return 0;
597}
598
Denys Vlasenko022748a2008-01-14 23:44:05 -0800599static int
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200600check_match(struct ipt_entry_match *m, struct xt_mtchk_param *par,
601 unsigned int *i)
Dmitry Mishina96be242006-12-12 00:29:26 -0800602{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200603 const struct ipt_ip *ip = par->entryinfo;
Dmitry Mishina96be242006-12-12 00:29:26 -0800604 int ret;
605
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200606 par->match = m->u.kernel.match;
607 par->matchinfo = m->data;
608
Jan Engelhardt916a9172008-10-08 11:35:20 +0200609 ret = xt_check_match(par, m->u.match_size - sizeof(*m),
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200610 ip->proto, ip->invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200611 if (ret < 0) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800612 duprintf("ip_tables: check failed for `%s'.\n",
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200613 par.match->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200614 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800615 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200616 ++*i;
617 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800618}
619
Denys Vlasenko022748a2008-01-14 23:44:05 -0800620static int
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200621find_check_match(struct ipt_entry_match *m, struct xt_mtchk_param *par,
Patrick McHardy4b478242007-12-17 21:46:15 -0800622 unsigned int *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800624 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800625 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Harald Welte2e4e6a12006-01-12 13:30:04 -0800627 match = try_then_request_module(xt_find_match(AF_INET, m->u.user.name,
Patrick McHardy9c547952007-12-17 21:52:00 -0800628 m->u.user.revision),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 "ipt_%s", m->u.user.name);
630 if (IS_ERR(match) || !match) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800631 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return match ? PTR_ERR(match) : -ENOENT;
633 }
634 m->u.kernel.match = match;
635
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200636 ret = check_match(m, par, i);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800637 if (ret)
638 goto err;
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800641err:
642 module_put(m->u.kernel.match->me);
643 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
Denys Vlasenko022748a2008-01-14 23:44:05 -0800646static int check_target(struct ipt_entry *e, const char *name)
Dmitry Mishina96be242006-12-12 00:29:26 -0800647{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200648 struct ipt_entry_target *t = ipt_get_target(e);
649 struct xt_tgchk_param par = {
650 .table = name,
651 .entryinfo = e,
652 .target = t->u.kernel.target,
653 .targinfo = t->data,
654 .hook_mask = e->comefrom,
Jan Engelhardt916a9172008-10-08 11:35:20 +0200655 .family = NFPROTO_IPV4,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200656 };
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900657 int ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800658
Jan Engelhardt916a9172008-10-08 11:35:20 +0200659 ret = xt_check_target(&par, t->u.target_size - sizeof(*t),
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200660 e->ip.proto, e->ip.invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200661 if (ret < 0) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800662 duprintf("ip_tables: check failed for `%s'.\n",
663 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200664 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800665 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200666 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800667}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Denys Vlasenko022748a2008-01-14 23:44:05 -0800669static int
Dmitry Mishina96be242006-12-12 00:29:26 -0800670find_check_entry(struct ipt_entry *e, const char *name, unsigned int size,
Patrick McHardy4b478242007-12-17 21:46:15 -0800671 unsigned int *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
673 struct ipt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800674 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 int ret;
676 unsigned int j;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200677 struct xt_mtchk_param mtpar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Dmitry Mishina96be242006-12-12 00:29:26 -0800679 ret = check_entry(e, name);
680 if (ret)
681 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 j = 0;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200684 mtpar.table = name;
685 mtpar.entryinfo = &e->ip;
686 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200687 mtpar.family = NFPROTO_IPV4;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200688 ret = IPT_MATCH_ITERATE(e, find_check_match, &mtpar, &j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 if (ret != 0)
690 goto cleanup_matches;
691
692 t = ipt_get_target(e);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800693 target = try_then_request_module(xt_find_target(AF_INET,
Patrick McHardy4b478242007-12-17 21:46:15 -0800694 t->u.user.name,
695 t->u.user.revision),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 "ipt_%s", t->u.user.name);
697 if (IS_ERR(target) || !target) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800698 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 ret = target ? PTR_ERR(target) : -ENOENT;
700 goto cleanup_matches;
701 }
702 t->u.kernel.target = target;
703
Dmitry Mishina96be242006-12-12 00:29:26 -0800704 ret = check_target(e, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800705 if (ret)
706 goto err;
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 (*i)++;
709 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800710 err:
711 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 cleanup_matches:
713 IPT_MATCH_ITERATE(e, cleanup_match, &j);
714 return ret;
715}
716
Denys Vlasenko022748a2008-01-14 23:44:05 -0800717static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718check_entry_size_and_hooks(struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800719 struct xt_table_info *newinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 unsigned char *base,
721 unsigned char *limit,
722 const unsigned int *hook_entries,
723 const unsigned int *underflows,
724 unsigned int *i)
725{
726 unsigned int h;
727
728 if ((unsigned long)e % __alignof__(struct ipt_entry) != 0
729 || (unsigned char *)e + sizeof(struct ipt_entry) >= limit) {
730 duprintf("Bad offset %p\n", e);
731 return -EINVAL;
732 }
733
734 if (e->next_offset
735 < sizeof(struct ipt_entry) + sizeof(struct ipt_entry_target)) {
736 duprintf("checking: element %p size %u\n",
737 e, e->next_offset);
738 return -EINVAL;
739 }
740
741 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800742 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if ((unsigned char *)e - base == hook_entries[h])
744 newinfo->hook_entry[h] = hook_entries[h];
745 if ((unsigned char *)e - base == underflows[h])
746 newinfo->underflow[h] = underflows[h];
747 }
748
749 /* FIXME: underflows must be unconditional, standard verdicts
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900750 < 0 (not IPT_RETURN). --RR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800753 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 e->comefrom = 0;
755
756 (*i)++;
757 return 0;
758}
759
Denys Vlasenko022748a2008-01-14 23:44:05 -0800760static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761cleanup_entry(struct ipt_entry *e, unsigned int *i)
762{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200763 struct xt_tgdtor_param par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 struct ipt_entry_target *t;
765
766 if (i && (*i)-- == 0)
767 return 1;
768
769 /* Cleanup all matches */
770 IPT_MATCH_ITERATE(e, cleanup_match, NULL);
771 t = ipt_get_target(e);
Jan Engelhardta2df1642008-10-08 11:35:19 +0200772
773 par.target = t->u.kernel.target;
774 par.targinfo = t->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200775 par.family = NFPROTO_IPV4;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200776 if (par.target->destroy != NULL)
777 par.target->destroy(&par);
778 module_put(par.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return 0;
780}
781
782/* Checks and translates the user-supplied table segment (held in
783 newinfo) */
784static int
785translate_table(const char *name,
786 unsigned int valid_hooks,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800787 struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800788 void *entry0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 unsigned int size,
790 unsigned int number,
791 const unsigned int *hook_entries,
792 const unsigned int *underflows)
793{
794 unsigned int i;
795 int ret;
796
797 newinfo->size = size;
798 newinfo->number = number;
799
800 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800801 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 newinfo->hook_entry[i] = 0xFFFFFFFF;
803 newinfo->underflow[i] = 0xFFFFFFFF;
804 }
805
806 duprintf("translate_table: size %u\n", newinfo->size);
807 i = 0;
808 /* Walk through entries, checking offsets. */
Eric Dumazet31836062005-12-13 23:13:48 -0800809 ret = IPT_ENTRY_ITERATE(entry0, newinfo->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 check_entry_size_and_hooks,
811 newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800812 entry0,
813 entry0 + size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 hook_entries, underflows, &i);
815 if (ret != 0)
816 return ret;
817
818 if (i != number) {
819 duprintf("translate_table: %u not %u entries\n",
820 i, number);
821 return -EINVAL;
822 }
823
824 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800825 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 /* Only hooks which are valid */
827 if (!(valid_hooks & (1 << i)))
828 continue;
829 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
830 duprintf("Invalid hook entry %u %u\n",
831 i, hook_entries[i]);
832 return -EINVAL;
833 }
834 if (newinfo->underflow[i] == 0xFFFFFFFF) {
835 duprintf("Invalid underflow %u %u\n",
836 i, underflows[i]);
837 return -EINVAL;
838 }
839 }
840
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800841 if (!mark_source_chains(newinfo, valid_hooks, entry0))
842 return -ELOOP;
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 /* Finally, each sanity check must pass */
845 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -0800846 ret = IPT_ENTRY_ITERATE(entry0, newinfo->size,
Dmitry Mishina96be242006-12-12 00:29:26 -0800847 find_check_entry, name, size, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800849 if (ret != 0) {
850 IPT_ENTRY_ITERATE(entry0, newinfo->size,
851 cleanup_entry, &i);
852 return ret;
853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 /* And one copy for every other CPU */
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700856 for_each_possible_cpu(i) {
Eric Dumazet31836062005-12-13 23:13:48 -0800857 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
858 memcpy(newinfo->entries[i], entry0, newinfo->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
860
861 return ret;
862}
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864/* Gets counters. */
865static inline int
866add_entry_to_counter(const struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800867 struct xt_counters total[],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 unsigned int *i)
869{
870 ADD_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
871
872 (*i)++;
873 return 0;
874}
875
Eric Dumazet31836062005-12-13 23:13:48 -0800876static inline int
877set_entry_to_counter(const struct ipt_entry *e,
878 struct ipt_counters total[],
879 unsigned int *i)
880{
881 SET_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
882
883 (*i)++;
884 return 0;
885}
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800888get_counters(const struct xt_table_info *t,
889 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
891 unsigned int cpu;
892 unsigned int i;
Eric Dumazet31836062005-12-13 23:13:48 -0800893 unsigned int curcpu;
894
895 /* Instead of clearing (by a previous call to memset())
896 * the counters and using adds, we set the counters
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700897 * with data used by 'current' CPU.
898 *
899 * Bottom half has to be disabled to prevent deadlock
900 * if new softirq were to run and call ipt_do_table
Eric Dumazet31836062005-12-13 23:13:48 -0800901 */
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700902 local_bh_disable();
903 curcpu = smp_processor_id();
Eric Dumazet31836062005-12-13 23:13:48 -0800904
905 i = 0;
906 IPT_ENTRY_ITERATE(t->entries[curcpu],
907 t->size,
908 set_entry_to_counter,
909 counters,
910 &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700912 for_each_possible_cpu(cpu) {
Eric Dumazet31836062005-12-13 23:13:48 -0800913 if (cpu == curcpu)
914 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 i = 0;
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700916 xt_info_wrlock(cpu);
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);
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700922 xt_info_wrunlock(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 }
Stephen Hemminger78454472009-02-20 10:35:32 +0100924 local_bh_enable();
925}
926
Denys Vlasenko022748a2008-01-14 23:44:05 -0800927static struct xt_counters * alloc_counters(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
Dmitry Mishin27229712006-04-01 02:25:19 -0800929 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800930 struct xt_counters *counters;
Stephen Hemminger78454472009-02-20 10:35:32 +0100931 struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 /* We need atomic snapshot of counters: rest doesn't change
934 (other than comefrom, which userspace doesn't care
935 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800936 countersize = sizeof(struct xt_counters) * private->number;
Eric Dumazet31836062005-12-13 23:13:48 -0800937 counters = vmalloc_node(countersize, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 if (counters == NULL)
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700940 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700942 get_counters(private, counters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Dmitry Mishin27229712006-04-01 02:25:19 -0800944 return counters;
945}
946
947static int
948copy_entries_to_user(unsigned int total_size,
Jan Engelhardte60a13e2007-02-07 15:12:33 -0800949 struct xt_table *table,
Dmitry Mishin27229712006-04-01 02:25:19 -0800950 void __user *userptr)
951{
952 unsigned int off, num;
953 struct ipt_entry *e;
954 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200955 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -0800956 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200957 const void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -0800958
959 counters = alloc_counters(table);
960 if (IS_ERR(counters))
961 return PTR_ERR(counters);
962
Eric Dumazet31836062005-12-13 23:13:48 -0800963 /* choose the copy that is on our node/cpu, ...
964 * This choice is lazy (because current thread is
965 * allowed to migrate to another cpu)
966 */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800967 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -0800968 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 ret = -EFAULT;
970 goto free_counters;
971 }
972
973 /* FIXME: use iterator macros --RR */
974 /* ... then go back and fix counters and names */
975 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
976 unsigned int i;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200977 const struct ipt_entry_match *m;
978 const struct ipt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Eric Dumazet31836062005-12-13 23:13:48 -0800980 e = (struct ipt_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 if (copy_to_user(userptr + off
982 + offsetof(struct ipt_entry, counters),
983 &counters[num],
984 sizeof(counters[num])) != 0) {
985 ret = -EFAULT;
986 goto free_counters;
987 }
988
989 for (i = sizeof(struct ipt_entry);
990 i < e->target_offset;
991 i += m->u.match_size) {
992 m = (void *)e + i;
993
994 if (copy_to_user(userptr + off + i
995 + offsetof(struct ipt_entry_match,
996 u.user.name),
997 m->u.kernel.match->name,
998 strlen(m->u.kernel.match->name)+1)
999 != 0) {
1000 ret = -EFAULT;
1001 goto free_counters;
1002 }
1003 }
1004
1005 t = ipt_get_target(e);
1006 if (copy_to_user(userptr + off + e->target_offset
1007 + offsetof(struct ipt_entry_target,
1008 u.user.name),
1009 t->u.kernel.target->name,
1010 strlen(t->u.kernel.target->name)+1) != 0) {
1011 ret = -EFAULT;
1012 goto free_counters;
1013 }
1014 }
1015
1016 free_counters:
1017 vfree(counters);
1018 return ret;
1019}
1020
Dmitry Mishin27229712006-04-01 02:25:19 -08001021#ifdef CONFIG_COMPAT
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001022static void compat_standard_from_user(void *dst, void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001023{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001024 int v = *(compat_int_t *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001025
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001026 if (v > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001027 v += xt_compat_calc_jump(AF_INET, v);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001028 memcpy(dst, &v, sizeof(v));
1029}
1030
1031static int compat_standard_to_user(void __user *dst, void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001032{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001033 compat_int_t cv = *(int *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001034
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001035 if (cv > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001036 cv -= xt_compat_calc_jump(AF_INET, cv);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001037 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001038}
1039
1040static inline int
Patrick McHardy4b478242007-12-17 21:46:15 -08001041compat_calc_match(struct ipt_entry_match *m, int *size)
Dmitry Mishin27229712006-04-01 02:25:19 -08001042{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001043 *size += xt_compat_match_offset(m->u.kernel.match);
Dmitry Mishin27229712006-04-01 02:25:19 -08001044 return 0;
1045}
1046
Eric Dumazet259d4e42007-12-04 23:24:56 -08001047static int compat_calc_entry(struct ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001048 const struct xt_table_info *info,
1049 void *base, struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001050{
1051 struct ipt_entry_target *t;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001052 unsigned int entry_offset;
Dmitry Mishin27229712006-04-01 02:25:19 -08001053 int off, i, ret;
1054
Patrick McHardy30c08c42007-12-17 21:47:14 -08001055 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001056 entry_offset = (void *)e - base;
1057 IPT_MATCH_ITERATE(e, compat_calc_match, &off);
1058 t = ipt_get_target(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001059 off += xt_compat_target_offset(t->u.kernel.target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001060 newinfo->size -= off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001061 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001062 if (ret)
1063 return ret;
1064
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001065 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Patrick McHardy4b478242007-12-17 21:46:15 -08001066 if (info->hook_entry[i] &&
1067 (e < (struct ipt_entry *)(base + info->hook_entry[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001068 newinfo->hook_entry[i] -= off;
Patrick McHardy4b478242007-12-17 21:46:15 -08001069 if (info->underflow[i] &&
1070 (e < (struct ipt_entry *)(base + info->underflow[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001071 newinfo->underflow[i] -= off;
1072 }
1073 return 0;
1074}
1075
Eric Dumazet259d4e42007-12-04 23:24:56 -08001076static int compat_table_info(const struct xt_table_info *info,
Patrick McHardy4b478242007-12-17 21:46:15 -08001077 struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001078{
1079 void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -08001080
1081 if (!newinfo || !info)
1082 return -EINVAL;
1083
Eric Dumazet259d4e42007-12-04 23:24:56 -08001084 /* we dont care about newinfo->entries[] */
1085 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1086 newinfo->initial_entries = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001087 loc_cpu_entry = info->entries[raw_smp_processor_id()];
1088 return IPT_ENTRY_ITERATE(loc_cpu_entry, info->size,
Patrick McHardy4b478242007-12-17 21:46:15 -08001089 compat_calc_entry, info, loc_cpu_entry,
1090 newinfo);
Dmitry Mishin27229712006-04-01 02:25:19 -08001091}
1092#endif
1093
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001094static int get_info(struct net *net, void __user *user, int *len, int compat)
Dmitry Mishin27229712006-04-01 02:25:19 -08001095{
1096 char name[IPT_TABLE_MAXNAMELEN];
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001097 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001098 int ret;
1099
1100 if (*len != sizeof(struct ipt_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001101 duprintf("length %u != %zu\n", *len,
1102 sizeof(struct ipt_getinfo));
Dmitry Mishin27229712006-04-01 02:25:19 -08001103 return -EINVAL;
1104 }
1105
1106 if (copy_from_user(name, user, sizeof(name)) != 0)
1107 return -EFAULT;
1108
1109 name[IPT_TABLE_MAXNAMELEN-1] = '\0';
1110#ifdef CONFIG_COMPAT
1111 if (compat)
1112 xt_compat_lock(AF_INET);
1113#endif
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001114 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Patrick McHardy4b478242007-12-17 21:46:15 -08001115 "iptable_%s", name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001116 if (t && !IS_ERR(t)) {
1117 struct ipt_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001118 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001119
1120#ifdef CONFIG_COMPAT
1121 if (compat) {
1122 struct xt_table_info tmp;
1123 ret = compat_table_info(private, &tmp);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001124 xt_compat_flush_offsets(AF_INET);
Patrick McHardy4b478242007-12-17 21:46:15 -08001125 private = &tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001126 }
1127#endif
1128 info.valid_hooks = t->valid_hooks;
1129 memcpy(info.hook_entry, private->hook_entry,
Patrick McHardy4b478242007-12-17 21:46:15 -08001130 sizeof(info.hook_entry));
Dmitry Mishin27229712006-04-01 02:25:19 -08001131 memcpy(info.underflow, private->underflow,
Patrick McHardy4b478242007-12-17 21:46:15 -08001132 sizeof(info.underflow));
Dmitry Mishin27229712006-04-01 02:25:19 -08001133 info.num_entries = private->number;
1134 info.size = private->size;
1135 strcpy(info.name, name);
1136
1137 if (copy_to_user(user, &info, *len) != 0)
1138 ret = -EFAULT;
1139 else
1140 ret = 0;
1141
1142 xt_table_unlock(t);
1143 module_put(t->me);
1144 } else
1145 ret = t ? PTR_ERR(t) : -ENOENT;
1146#ifdef CONFIG_COMPAT
1147 if (compat)
1148 xt_compat_unlock(AF_INET);
1149#endif
1150 return ret;
1151}
1152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001154get_entries(struct net *net, struct ipt_get_entries __user *uptr, int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
1156 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001157 struct ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001158 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Dmitry Mishin27229712006-04-01 02:25:19 -08001160 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001161 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001162 return -EINVAL;
1163 }
1164 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1165 return -EFAULT;
1166 if (*len != sizeof(struct ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001167 duprintf("get_entries: %u != %zu\n",
1168 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001169 return -EINVAL;
1170 }
1171
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001172 t = xt_find_table_lock(net, AF_INET, get.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001174 const struct xt_table_info *private = t->private;
Patrick McHardy9c547952007-12-17 21:52:00 -08001175 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001176 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001177 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 t, uptr->entrytable);
1179 else {
1180 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001181 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001182 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 }
1184 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001185 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 } else
1187 ret = t ? PTR_ERR(t) : -ENOENT;
1188
1189 return ret;
1190}
1191
1192static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001193__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001194 struct xt_table_info *newinfo, unsigned int num_counters,
1195 void __user *counters_ptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001196{
1197 int ret;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001198 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001199 struct xt_table_info *oldinfo;
1200 struct xt_counters *counters;
1201 void *loc_cpu_old_entry;
1202
1203 ret = 0;
1204 counters = vmalloc(num_counters * sizeof(struct xt_counters));
1205 if (!counters) {
1206 ret = -ENOMEM;
1207 goto out;
1208 }
1209
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001210 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Dmitry Mishin27229712006-04-01 02:25:19 -08001211 "iptable_%s", name);
1212 if (!t || IS_ERR(t)) {
1213 ret = t ? PTR_ERR(t) : -ENOENT;
1214 goto free_newinfo_counters_untrans;
1215 }
1216
1217 /* You lied! */
1218 if (valid_hooks != t->valid_hooks) {
1219 duprintf("Valid hook crap: %08X vs %08X\n",
1220 valid_hooks, t->valid_hooks);
1221 ret = -EINVAL;
1222 goto put_module;
1223 }
1224
1225 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1226 if (!oldinfo)
1227 goto put_module;
1228
1229 /* Update module usage count based on number of rules */
1230 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1231 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1232 if ((oldinfo->number > oldinfo->initial_entries) ||
1233 (newinfo->number <= oldinfo->initial_entries))
1234 module_put(t->me);
1235 if ((oldinfo->number > oldinfo->initial_entries) &&
1236 (newinfo->number <= oldinfo->initial_entries))
1237 module_put(t->me);
1238
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001239 /* Get the old counters, and synchronize with replace */
Dmitry Mishin27229712006-04-01 02:25:19 -08001240 get_counters(oldinfo, counters);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001241
Dmitry Mishin27229712006-04-01 02:25:19 -08001242 /* 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
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001311/* We're lazy, and add to the first CPU; overflow works its fey magic
1312 * and everything is OK. */
1313static int
1314add_counter_to_entry(struct ipt_entry *e,
1315 const struct xt_counters addme[],
1316 unsigned int *i)
1317{
1318 ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt);
1319
1320 (*i)++;
1321 return 0;
1322}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
1324static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001325do_add_counters(struct net *net, void __user *user, unsigned int len, int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001327 unsigned int i, curcpu;
Dmitry Mishin27229712006-04-01 02:25:19 -08001328 struct xt_counters_info tmp;
1329 struct xt_counters *paddc;
1330 unsigned int num_counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001331 const char *name;
Dmitry Mishin27229712006-04-01 02:25:19 -08001332 int size;
1333 void *ptmp;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001334 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001335 const struct xt_table_info *private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 int ret = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001337 void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -08001338#ifdef CONFIG_COMPAT
1339 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Dmitry Mishin27229712006-04-01 02:25:19 -08001341 if (compat) {
1342 ptmp = &compat_tmp;
1343 size = sizeof(struct compat_xt_counters_info);
1344 } else
1345#endif
1346 {
1347 ptmp = &tmp;
1348 size = sizeof(struct xt_counters_info);
1349 }
1350
1351 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 return -EFAULT;
1353
Dmitry Mishin27229712006-04-01 02:25:19 -08001354#ifdef CONFIG_COMPAT
1355 if (compat) {
1356 num_counters = compat_tmp.num_counters;
1357 name = compat_tmp.name;
1358 } else
1359#endif
1360 {
1361 num_counters = tmp.num_counters;
1362 name = tmp.name;
1363 }
1364
1365 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return -EINVAL;
1367
Dmitry Mishin27229712006-04-01 02:25:19 -08001368 paddc = vmalloc_node(len - size, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 if (!paddc)
1370 return -ENOMEM;
1371
Dmitry Mishin27229712006-04-01 02:25:19 -08001372 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 ret = -EFAULT;
1374 goto free;
1375 }
1376
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001377 t = xt_find_table_lock(net, AF_INET, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 if (!t || IS_ERR(t)) {
1379 ret = t ? PTR_ERR(t) : -ENOENT;
1380 goto free;
1381 }
1382
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001383 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001384 private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001385 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 ret = -EINVAL;
1387 goto unlock_up_free;
1388 }
1389
1390 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001391 /* Choose the copy that is on our node */
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001392 curcpu = smp_processor_id();
1393 loc_cpu_entry = private->entries[curcpu];
1394 xt_info_wrlock(curcpu);
Eric Dumazet31836062005-12-13 23:13:48 -08001395 IPT_ENTRY_ITERATE(loc_cpu_entry,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001396 private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 add_counter_to_entry,
Dmitry Mishin27229712006-04-01 02:25:19 -08001398 paddc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 &i);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001400 xt_info_wrunlock(curcpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 unlock_up_free:
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001402 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001403 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 module_put(t->me);
1405 free:
1406 vfree(paddc);
1407
1408 return ret;
1409}
1410
Dmitry Mishin27229712006-04-01 02:25:19 -08001411#ifdef CONFIG_COMPAT
1412struct compat_ipt_replace {
1413 char name[IPT_TABLE_MAXNAMELEN];
1414 u32 valid_hooks;
1415 u32 num_entries;
1416 u32 size;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001417 u32 hook_entry[NF_INET_NUMHOOKS];
1418 u32 underflow[NF_INET_NUMHOOKS];
Dmitry Mishin27229712006-04-01 02:25:19 -08001419 u32 num_counters;
1420 compat_uptr_t counters; /* struct ipt_counters * */
1421 struct compat_ipt_entry entries[0];
1422};
1423
Patrick McHardya18aa312007-12-12 10:35:16 -08001424static int
1425compat_copy_entry_to_user(struct ipt_entry *e, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001426 unsigned int *size, struct xt_counters *counters,
Patrick McHardya18aa312007-12-12 10:35:16 -08001427 unsigned int *i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001428{
Al Viro3e597c62006-09-24 23:42:20 +01001429 struct ipt_entry_target *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001430 struct compat_ipt_entry __user *ce;
1431 u_int16_t target_offset, next_offset;
1432 compat_uint_t origsize;
1433 int ret;
1434
1435 ret = -EFAULT;
1436 origsize = *size;
1437 ce = (struct compat_ipt_entry __user *)*dstptr;
Patrick McHardy78000072006-05-03 23:20:27 -07001438 if (copy_to_user(ce, e, sizeof(struct ipt_entry)))
Dmitry Mishin27229712006-04-01 02:25:19 -08001439 goto out;
1440
Patrick McHardya18aa312007-12-12 10:35:16 -08001441 if (copy_to_user(&ce->counters, &counters[*i], sizeof(counters[*i])))
1442 goto out;
1443
Dmitry Mishin27229712006-04-01 02:25:19 -08001444 *dstptr += sizeof(struct compat_ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001445 *size -= sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1446
Patrick McHardyac8e27f2007-12-17 21:45:52 -08001447 ret = IPT_MATCH_ITERATE(e, xt_compat_match_to_user, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001448 target_offset = e->target_offset - (origsize - *size);
1449 if (ret)
1450 goto out;
1451 t = ipt_get_target(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001452 ret = xt_compat_target_to_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001453 if (ret)
1454 goto out;
1455 ret = -EFAULT;
1456 next_offset = e->next_offset - (origsize - *size);
Patrick McHardy78000072006-05-03 23:20:27 -07001457 if (put_user(target_offset, &ce->target_offset))
Dmitry Mishin27229712006-04-01 02:25:19 -08001458 goto out;
Patrick McHardy78000072006-05-03 23:20:27 -07001459 if (put_user(next_offset, &ce->next_offset))
Dmitry Mishin27229712006-04-01 02:25:19 -08001460 goto out;
Patrick McHardya18aa312007-12-12 10:35:16 -08001461
1462 (*i)++;
Dmitry Mishin27229712006-04-01 02:25:19 -08001463 return 0;
1464out:
1465 return ret;
1466}
1467
Denys Vlasenko022748a2008-01-14 23:44:05 -08001468static int
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001469compat_find_calc_match(struct ipt_entry_match *m,
Patrick McHardy4b478242007-12-17 21:46:15 -08001470 const char *name,
1471 const struct ipt_ip *ip,
1472 unsigned int hookmask,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001473 int *size, unsigned int *i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001474{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001475 struct xt_match *match;
Dmitry Mishin27229712006-04-01 02:25:19 -08001476
1477 match = try_then_request_module(xt_find_match(AF_INET, m->u.user.name,
Patrick McHardy4b478242007-12-17 21:46:15 -08001478 m->u.user.revision),
Dmitry Mishin27229712006-04-01 02:25:19 -08001479 "ipt_%s", m->u.user.name);
1480 if (IS_ERR(match) || !match) {
1481 duprintf("compat_check_calc_match: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001482 m->u.user.name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001483 return match ? PTR_ERR(match) : -ENOENT;
1484 }
1485 m->u.kernel.match = match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001486 *size += xt_compat_match_offset(match);
Dmitry Mishin27229712006-04-01 02:25:19 -08001487
1488 (*i)++;
1489 return 0;
1490}
1491
Denys Vlasenko022748a2008-01-14 23:44:05 -08001492static int
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001493compat_release_match(struct ipt_entry_match *m, unsigned int *i)
1494{
1495 if (i && (*i)-- == 0)
1496 return 1;
1497
1498 module_put(m->u.kernel.match->me);
1499 return 0;
1500}
1501
Denys Vlasenko022748a2008-01-14 23:44:05 -08001502static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001503compat_release_entry(struct compat_ipt_entry *e, unsigned int *i)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001504{
1505 struct ipt_entry_target *t;
1506
1507 if (i && (*i)-- == 0)
1508 return 1;
1509
1510 /* Cleanup all matches */
Patrick McHardy73cd5982007-12-17 21:47:32 -08001511 COMPAT_IPT_MATCH_ITERATE(e, compat_release_match, NULL);
1512 t = compat_ipt_get_target(e);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001513 module_put(t->u.kernel.target->me);
1514 return 0;
1515}
1516
Denys Vlasenko022748a2008-01-14 23:44:05 -08001517static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001518check_compat_entry_size_and_hooks(struct compat_ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001519 struct xt_table_info *newinfo,
1520 unsigned int *size,
1521 unsigned char *base,
1522 unsigned char *limit,
1523 unsigned int *hook_entries,
1524 unsigned int *underflows,
1525 unsigned int *i,
1526 const char *name)
Dmitry Mishin27229712006-04-01 02:25:19 -08001527{
1528 struct ipt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001529 struct xt_target *target;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001530 unsigned int entry_offset;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001531 unsigned int j;
1532 int ret, off, h;
Dmitry Mishin27229712006-04-01 02:25:19 -08001533
1534 duprintf("check_compat_entry_size_and_hooks %p\n", e);
1535 if ((unsigned long)e % __alignof__(struct compat_ipt_entry) != 0
1536 || (unsigned char *)e + sizeof(struct compat_ipt_entry) >= limit) {
1537 duprintf("Bad offset %p, limit = %p\n", e, limit);
1538 return -EINVAL;
1539 }
1540
1541 if (e->next_offset < sizeof(struct compat_ipt_entry) +
Patrick McHardy4b478242007-12-17 21:46:15 -08001542 sizeof(struct compat_xt_entry_target)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001543 duprintf("checking: element %p size %u\n",
1544 e, e->next_offset);
1545 return -EINVAL;
1546 }
1547
Patrick McHardy73cd5982007-12-17 21:47:32 -08001548 /* For purposes of check_entry casting the compat entry is fine */
1549 ret = check_entry((struct ipt_entry *)e, name);
Dmitry Mishina96be242006-12-12 00:29:26 -08001550 if (ret)
1551 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -08001552
Patrick McHardy30c08c42007-12-17 21:47:14 -08001553 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001554 entry_offset = (void *)e - (void *)base;
1555 j = 0;
Patrick McHardy73cd5982007-12-17 21:47:32 -08001556 ret = COMPAT_IPT_MATCH_ITERATE(e, compat_find_calc_match, name,
1557 &e->ip, e->comefrom, &off, &j);
Dmitry Mishin27229712006-04-01 02:25:19 -08001558 if (ret != 0)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001559 goto release_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001560
Patrick McHardy73cd5982007-12-17 21:47:32 -08001561 t = compat_ipt_get_target(e);
Dmitry Mishin27229712006-04-01 02:25:19 -08001562 target = try_then_request_module(xt_find_target(AF_INET,
Patrick McHardy4b478242007-12-17 21:46:15 -08001563 t->u.user.name,
1564 t->u.user.revision),
Dmitry Mishin27229712006-04-01 02:25:19 -08001565 "ipt_%s", t->u.user.name);
1566 if (IS_ERR(target) || !target) {
Dmitry Mishina96be242006-12-12 00:29:26 -08001567 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001568 t->u.user.name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001569 ret = target ? PTR_ERR(target) : -ENOENT;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001570 goto release_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001571 }
1572 t->u.kernel.target = target;
1573
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001574 off += xt_compat_target_offset(target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001575 *size += off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001576 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001577 if (ret)
1578 goto out;
1579
1580 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001581 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001582 if ((unsigned char *)e - base == hook_entries[h])
1583 newinfo->hook_entry[h] = hook_entries[h];
1584 if ((unsigned char *)e - base == underflows[h])
1585 newinfo->underflow[h] = underflows[h];
1586 }
1587
1588 /* Clear counters and comefrom */
Patrick McHardy73cd5982007-12-17 21:47:32 -08001589 memset(&e->counters, 0, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001590 e->comefrom = 0;
1591
1592 (*i)++;
1593 return 0;
Patrick McHardybec71b12006-09-20 12:04:08 -07001594
Dmitry Mishin27229712006-04-01 02:25:19 -08001595out:
Patrick McHardybec71b12006-09-20 12:04:08 -07001596 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001597release_matches:
1598 IPT_MATCH_ITERATE(e, compat_release_match, &j);
Dmitry Mishin27229712006-04-01 02:25:19 -08001599 return ret;
1600}
1601
Patrick McHardy4b478242007-12-17 21:46:15 -08001602static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001603compat_copy_entry_from_user(struct compat_ipt_entry *e, void **dstptr,
Patrick McHardy4b478242007-12-17 21:46:15 -08001604 unsigned int *size, const char *name,
1605 struct xt_table_info *newinfo, unsigned char *base)
Dmitry Mishin27229712006-04-01 02:25:19 -08001606{
1607 struct ipt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001608 struct xt_target *target;
Dmitry Mishin27229712006-04-01 02:25:19 -08001609 struct ipt_entry *de;
1610 unsigned int origsize;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001611 int ret, h;
Dmitry Mishin27229712006-04-01 02:25:19 -08001612
1613 ret = 0;
1614 origsize = *size;
1615 de = (struct ipt_entry *)*dstptr;
1616 memcpy(de, e, sizeof(struct ipt_entry));
Patrick McHardy73cd5982007-12-17 21:47:32 -08001617 memcpy(&de->counters, &e->counters, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001618
Patrick McHardy73cd5982007-12-17 21:47:32 -08001619 *dstptr += sizeof(struct ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001620 *size += sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1621
Patrick McHardy73cd5982007-12-17 21:47:32 -08001622 ret = COMPAT_IPT_MATCH_ITERATE(e, xt_compat_match_from_user,
1623 dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001624 if (ret)
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001625 return ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001626 de->target_offset = e->target_offset - (origsize - *size);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001627 t = compat_ipt_get_target(e);
Dmitry Mishin27229712006-04-01 02:25:19 -08001628 target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001629 xt_compat_target_from_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001630
1631 de->next_offset = e->next_offset - (origsize - *size);
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001632 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001633 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1634 newinfo->hook_entry[h] -= origsize - *size;
1635 if ((unsigned char *)de - base < newinfo->underflow[h])
1636 newinfo->underflow[h] -= origsize - *size;
1637 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001638 return ret;
1639}
Dmitry Mishin27229712006-04-01 02:25:19 -08001640
Denys Vlasenko022748a2008-01-14 23:44:05 -08001641static int
1642compat_check_entry(struct ipt_entry *e, const char *name,
Patrick McHardy4b478242007-12-17 21:46:15 -08001643 unsigned int *i)
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001644{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001645 struct xt_mtchk_param mtpar;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001646 unsigned int j;
1647 int ret;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001648
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001649 j = 0;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001650 mtpar.table = name;
1651 mtpar.entryinfo = &e->ip;
1652 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +02001653 mtpar.family = NFPROTO_IPV4;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001654 ret = IPT_MATCH_ITERATE(e, check_match, &mtpar, &j);
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001655 if (ret)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001656 goto cleanup_matches;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001657
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001658 ret = check_target(e, name);
1659 if (ret)
1660 goto cleanup_matches;
1661
1662 (*i)++;
1663 return 0;
1664
1665 cleanup_matches:
1666 IPT_MATCH_ITERATE(e, cleanup_match, &j);
1667 return ret;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001668}
1669
Dmitry Mishin27229712006-04-01 02:25:19 -08001670static int
1671translate_compat_table(const char *name,
Patrick McHardy4b478242007-12-17 21:46:15 -08001672 unsigned int valid_hooks,
1673 struct xt_table_info **pinfo,
1674 void **pentry0,
1675 unsigned int total_size,
1676 unsigned int number,
1677 unsigned int *hook_entries,
1678 unsigned int *underflows)
Dmitry Mishin27229712006-04-01 02:25:19 -08001679{
Dmitry Mishin920b8682006-10-30 15:14:27 -08001680 unsigned int i, j;
Dmitry Mishin27229712006-04-01 02:25:19 -08001681 struct xt_table_info *newinfo, *info;
1682 void *pos, *entry0, *entry1;
1683 unsigned int size;
1684 int ret;
1685
1686 info = *pinfo;
1687 entry0 = *pentry0;
1688 size = total_size;
1689 info->number = number;
1690
1691 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001692 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001693 info->hook_entry[i] = 0xFFFFFFFF;
1694 info->underflow[i] = 0xFFFFFFFF;
1695 }
1696
1697 duprintf("translate_compat_table: size %u\n", info->size);
Dmitry Mishin920b8682006-10-30 15:14:27 -08001698 j = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001699 xt_compat_lock(AF_INET);
1700 /* Walk through entries, checking offsets. */
Patrick McHardy73cd5982007-12-17 21:47:32 -08001701 ret = COMPAT_IPT_ENTRY_ITERATE(entry0, total_size,
1702 check_compat_entry_size_and_hooks,
1703 info, &size, entry0,
1704 entry0 + total_size,
1705 hook_entries, underflows, &j, name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001706 if (ret != 0)
1707 goto out_unlock;
1708
1709 ret = -EINVAL;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001710 if (j != number) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001711 duprintf("translate_compat_table: %u not %u entries\n",
Dmitry Mishin920b8682006-10-30 15:14:27 -08001712 j, number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001713 goto out_unlock;
1714 }
1715
1716 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001717 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001718 /* Only hooks which are valid */
1719 if (!(valid_hooks & (1 << i)))
1720 continue;
1721 if (info->hook_entry[i] == 0xFFFFFFFF) {
1722 duprintf("Invalid hook entry %u %u\n",
1723 i, hook_entries[i]);
1724 goto out_unlock;
1725 }
1726 if (info->underflow[i] == 0xFFFFFFFF) {
1727 duprintf("Invalid underflow %u %u\n",
1728 i, underflows[i]);
1729 goto out_unlock;
1730 }
1731 }
1732
1733 ret = -ENOMEM;
1734 newinfo = xt_alloc_table_info(size);
1735 if (!newinfo)
1736 goto out_unlock;
1737
1738 newinfo->number = number;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001739 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001740 newinfo->hook_entry[i] = info->hook_entry[i];
1741 newinfo->underflow[i] = info->underflow[i];
1742 }
1743 entry1 = newinfo->entries[raw_smp_processor_id()];
1744 pos = entry1;
Patrick McHardy4b478242007-12-17 21:46:15 -08001745 size = total_size;
Patrick McHardy73cd5982007-12-17 21:47:32 -08001746 ret = COMPAT_IPT_ENTRY_ITERATE(entry0, total_size,
Patrick McHardy9c547952007-12-17 21:52:00 -08001747 compat_copy_entry_from_user,
1748 &pos, &size, name, newinfo, entry1);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001749 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001750 xt_compat_unlock(AF_INET);
1751 if (ret)
1752 goto free_newinfo;
1753
1754 ret = -ELOOP;
1755 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1756 goto free_newinfo;
1757
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001758 i = 0;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001759 ret = IPT_ENTRY_ITERATE(entry1, newinfo->size, compat_check_entry,
Patrick McHardy4b478242007-12-17 21:46:15 -08001760 name, &i);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001761 if (ret) {
1762 j -= i;
Patrick McHardy73cd5982007-12-17 21:47:32 -08001763 COMPAT_IPT_ENTRY_ITERATE_CONTINUE(entry0, newinfo->size, i,
1764 compat_release_entry, &j);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001765 IPT_ENTRY_ITERATE(entry1, newinfo->size, cleanup_entry, &i);
1766 xt_free_table_info(newinfo);
1767 return ret;
1768 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001769
Dmitry Mishin27229712006-04-01 02:25:19 -08001770 /* And one copy for every other CPU */
Andrew Mortonfb1bb342006-06-25 05:46:43 -07001771 for_each_possible_cpu(i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001772 if (newinfo->entries[i] && newinfo->entries[i] != entry1)
1773 memcpy(newinfo->entries[i], entry1, newinfo->size);
1774
1775 *pinfo = newinfo;
1776 *pentry0 = entry1;
1777 xt_free_table_info(info);
1778 return 0;
1779
1780free_newinfo:
1781 xt_free_table_info(newinfo);
1782out:
Patrick McHardy73cd5982007-12-17 21:47:32 -08001783 COMPAT_IPT_ENTRY_ITERATE(entry0, total_size, compat_release_entry, &j);
Dmitry Mishin27229712006-04-01 02:25:19 -08001784 return ret;
1785out_unlock:
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001786 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001787 xt_compat_unlock(AF_INET);
1788 goto out;
1789}
1790
1791static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001792compat_do_replace(struct net *net, void __user *user, unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001793{
1794 int ret;
1795 struct compat_ipt_replace tmp;
1796 struct xt_table_info *newinfo;
1797 void *loc_cpu_entry;
1798
1799 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1800 return -EFAULT;
1801
Dmitry Mishin27229712006-04-01 02:25:19 -08001802 /* overflow check */
Eric Dumazet259d4e42007-12-04 23:24:56 -08001803 if (tmp.size >= INT_MAX / num_possible_cpus())
Dmitry Mishin27229712006-04-01 02:25:19 -08001804 return -ENOMEM;
1805 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1806 return -ENOMEM;
1807
1808 newinfo = xt_alloc_table_info(tmp.size);
1809 if (!newinfo)
1810 return -ENOMEM;
1811
Patrick McHardy9c547952007-12-17 21:52:00 -08001812 /* choose the copy that is on our node/cpu */
Dmitry Mishin27229712006-04-01 02:25:19 -08001813 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1814 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1815 tmp.size) != 0) {
1816 ret = -EFAULT;
1817 goto free_newinfo;
1818 }
1819
1820 ret = translate_compat_table(tmp.name, tmp.valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001821 &newinfo, &loc_cpu_entry, tmp.size,
1822 tmp.num_entries, tmp.hook_entry,
1823 tmp.underflow);
Dmitry Mishin27229712006-04-01 02:25:19 -08001824 if (ret != 0)
1825 goto free_newinfo;
1826
1827 duprintf("compat_do_replace: Translated table\n");
1828
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001829 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001830 tmp.num_counters, compat_ptr(tmp.counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001831 if (ret)
1832 goto free_newinfo_untrans;
1833 return 0;
1834
1835 free_newinfo_untrans:
Patrick McHardy4b478242007-12-17 21:46:15 -08001836 IPT_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
Dmitry Mishin27229712006-04-01 02:25:19 -08001837 free_newinfo:
1838 xt_free_table_info(newinfo);
1839 return ret;
1840}
1841
1842static int
1843compat_do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user,
Patrick McHardy4b478242007-12-17 21:46:15 -08001844 unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001845{
1846 int ret;
1847
1848 if (!capable(CAP_NET_ADMIN))
1849 return -EPERM;
1850
1851 switch (cmd) {
1852 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001853 ret = compat_do_replace(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001854 break;
1855
1856 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001857 ret = do_add_counters(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001858 break;
1859
1860 default:
1861 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1862 ret = -EINVAL;
1863 }
1864
1865 return ret;
1866}
1867
Patrick McHardy4b478242007-12-17 21:46:15 -08001868struct compat_ipt_get_entries {
Dmitry Mishin27229712006-04-01 02:25:19 -08001869 char name[IPT_TABLE_MAXNAMELEN];
1870 compat_uint_t size;
1871 struct compat_ipt_entry entrytable[0];
1872};
1873
Patrick McHardy4b478242007-12-17 21:46:15 -08001874static int
1875compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1876 void __user *userptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001877{
Dmitry Mishin27229712006-04-01 02:25:19 -08001878 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001879 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001880 void __user *pos;
1881 unsigned int size;
1882 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001883 const void *loc_cpu_entry;
Patrick McHardya18aa312007-12-12 10:35:16 -08001884 unsigned int i = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001885
1886 counters = alloc_counters(table);
1887 if (IS_ERR(counters))
1888 return PTR_ERR(counters);
1889
1890 /* choose the copy that is on our node/cpu, ...
1891 * This choice is lazy (because current thread is
1892 * allowed to migrate to another cpu)
1893 */
1894 loc_cpu_entry = private->entries[raw_smp_processor_id()];
1895 pos = userptr;
1896 size = total_size;
1897 ret = IPT_ENTRY_ITERATE(loc_cpu_entry, total_size,
Patrick McHardya18aa312007-12-12 10:35:16 -08001898 compat_copy_entry_to_user,
1899 &pos, &size, counters, &i);
Dmitry Mishin27229712006-04-01 02:25:19 -08001900
Dmitry Mishin27229712006-04-01 02:25:19 -08001901 vfree(counters);
1902 return ret;
1903}
1904
1905static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001906compat_get_entries(struct net *net, struct compat_ipt_get_entries __user *uptr,
1907 int *len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001908{
1909 int ret;
1910 struct compat_ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001911 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001912
Dmitry Mishin27229712006-04-01 02:25:19 -08001913 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001914 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001915 return -EINVAL;
1916 }
1917
1918 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1919 return -EFAULT;
1920
1921 if (*len != sizeof(struct compat_ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001922 duprintf("compat_get_entries: %u != %zu\n",
1923 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001924 return -EINVAL;
1925 }
1926
1927 xt_compat_lock(AF_INET);
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001928 t = xt_find_table_lock(net, AF_INET, get.name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001929 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001930 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001931 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08001932 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001933 ret = compat_table_info(private, &info);
1934 if (!ret && get.size == info.size) {
1935 ret = compat_copy_entries_to_user(private->size,
Patrick McHardy4b478242007-12-17 21:46:15 -08001936 t, uptr->entrytable);
Dmitry Mishin27229712006-04-01 02:25:19 -08001937 } else if (!ret) {
1938 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001939 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001940 ret = -EAGAIN;
Dmitry Mishin27229712006-04-01 02:25:19 -08001941 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001942 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001943 module_put(t->me);
1944 xt_table_unlock(t);
1945 } else
1946 ret = t ? PTR_ERR(t) : -ENOENT;
1947
1948 xt_compat_unlock(AF_INET);
1949 return ret;
1950}
1951
Patrick McHardy79030ed2006-09-20 12:05:08 -07001952static int do_ipt_get_ctl(struct sock *, int, void __user *, int *);
1953
Dmitry Mishin27229712006-04-01 02:25:19 -08001954static int
1955compat_do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1956{
1957 int ret;
1958
Björn Steinbrink82fac052006-10-20 00:21:10 -07001959 if (!capable(CAP_NET_ADMIN))
1960 return -EPERM;
1961
Dmitry Mishin27229712006-04-01 02:25:19 -08001962 switch (cmd) {
1963 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001964 ret = get_info(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001965 break;
1966 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001967 ret = compat_get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001968 break;
1969 default:
Patrick McHardy79030ed2006-09-20 12:05:08 -07001970 ret = do_ipt_get_ctl(sk, cmd, user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001971 }
1972 return ret;
1973}
1974#endif
1975
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976static int
Patrick McHardy9c547952007-12-17 21:52:00 -08001977do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978{
1979 int ret;
1980
1981 if (!capable(CAP_NET_ADMIN))
1982 return -EPERM;
1983
1984 switch (cmd) {
1985 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001986 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 break;
1988
1989 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001990 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 break;
1992
1993 default:
1994 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1995 ret = -EINVAL;
1996 }
1997
1998 return ret;
1999}
2000
2001static int
2002do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2003{
2004 int ret;
2005
2006 if (!capable(CAP_NET_ADMIN))
2007 return -EPERM;
2008
2009 switch (cmd) {
Dmitry Mishin27229712006-04-01 02:25:19 -08002010 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002011 ret = get_info(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 break;
Dmitry Mishin27229712006-04-01 02:25:19 -08002013
2014 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002015 ret = get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08002016 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
2018 case IPT_SO_GET_REVISION_MATCH:
2019 case IPT_SO_GET_REVISION_TARGET: {
2020 struct ipt_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002021 int target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
2023 if (*len != sizeof(rev)) {
2024 ret = -EINVAL;
2025 break;
2026 }
2027 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2028 ret = -EFAULT;
2029 break;
2030 }
2031
2032 if (cmd == IPT_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08002033 target = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08002035 target = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
Harald Welte2e4e6a12006-01-12 13:30:04 -08002037 try_then_request_module(xt_find_revision(AF_INET, rev.name,
2038 rev.revision,
2039 target, &ret),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 "ipt_%s", rev.name);
2041 break;
2042 }
2043
2044 default:
2045 duprintf("do_ipt_get_ctl: unknown request %i\n", cmd);
2046 ret = -EINVAL;
2047 }
2048
2049 return ret;
2050}
2051
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002052struct xt_table *ipt_register_table(struct net *net, struct xt_table *table,
2053 const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054{
2055 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002056 struct xt_table_info *newinfo;
Eric Dumazet259d4e42007-12-04 23:24:56 -08002057 struct xt_table_info bootstrap
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 = { 0, 0, 0, { 0 }, { 0 }, { } };
Eric Dumazet31836062005-12-13 23:13:48 -08002059 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08002060 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Harald Welte2e4e6a12006-01-12 13:30:04 -08002062 newinfo = xt_alloc_table_info(repl->size);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002063 if (!newinfo) {
2064 ret = -ENOMEM;
2065 goto out;
2066 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Patrick McHardy9c547952007-12-17 21:52:00 -08002068 /* choose the copy on our node/cpu, but dont care about preemption */
Eric Dumazet31836062005-12-13 23:13:48 -08002069 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
2070 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
2072 ret = translate_table(table->name, table->valid_hooks,
Eric Dumazet31836062005-12-13 23:13:48 -08002073 newinfo, loc_cpu_entry, repl->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 repl->num_entries,
2075 repl->hook_entry,
2076 repl->underflow);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002077 if (ret != 0)
2078 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002080 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08002081 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002082 ret = PTR_ERR(new_table);
2083 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 }
2085
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002086 return new_table;
2087
2088out_free:
2089 xt_free_table_info(newinfo);
2090out:
2091 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092}
2093
Jan Engelhardte60a13e2007-02-07 15:12:33 -08002094void ipt_unregister_table(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095{
Harald Welte2e4e6a12006-01-12 13:30:04 -08002096 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08002097 void *loc_cpu_entry;
Alexey Dobriyandf200962008-01-31 04:05:34 -08002098 struct module *table_owner = table->me;
Eric Dumazet31836062005-12-13 23:13:48 -08002099
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002100 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
2102 /* Decrease module usage counts and free resources */
Harald Welte2e4e6a12006-01-12 13:30:04 -08002103 loc_cpu_entry = private->entries[raw_smp_processor_id()];
2104 IPT_ENTRY_ITERATE(loc_cpu_entry, private->size, cleanup_entry, NULL);
Alexey Dobriyandf200962008-01-31 04:05:34 -08002105 if (private->number > private->initial_entries)
2106 module_put(table_owner);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002107 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108}
2109
2110/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002111static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112icmp_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2113 u_int8_t type, u_int8_t code,
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002114 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115{
Patrick McHardy9c547952007-12-17 21:52:00 -08002116 return ((test_type == 0xFF) ||
2117 (type == test_type && code >= min_code && code <= max_code))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 ^ invert;
2119}
2120
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002121static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002122icmp_match(const struct sk_buff *skb, const struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123{
Jan Engelhardt5452e422008-04-14 11:15:35 +02002124 const struct icmphdr *ic;
2125 struct icmphdr _icmph;
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002126 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
2128 /* Must not be a fragment. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002129 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002130 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002132 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 if (ic == NULL) {
2134 /* We've been asked to examine this packet, and we
2135 * can't. Hence, no choice but to drop.
2136 */
2137 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002138 *par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002139 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 }
2141
2142 return icmp_type_code_match(icmpinfo->type,
2143 icmpinfo->code[0],
2144 icmpinfo->code[1],
2145 ic->type, ic->code,
2146 !!(icmpinfo->invflags&IPT_ICMP_INV));
2147}
2148
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002149static bool icmp_checkentry(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002151 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002153 /* Must specify no unknown invflags */
2154 return !(icmpinfo->invflags & ~IPT_ICMP_INV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155}
2156
2157/* The built-in targets: standard (NULL) and error. */
Patrick McHardy9f15c532007-07-07 22:22:02 -07002158static struct xt_target ipt_standard_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 .name = IPT_STANDARD_TARGET,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002160 .targetsize = sizeof(int),
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002161 .family = NFPROTO_IPV4,
Dmitry Mishin27229712006-04-01 02:25:19 -08002162#ifdef CONFIG_COMPAT
Patrick McHardy9fa492c2006-09-20 12:05:37 -07002163 .compatsize = sizeof(compat_int_t),
2164 .compat_from_user = compat_standard_from_user,
2165 .compat_to_user = compat_standard_to_user,
Dmitry Mishin27229712006-04-01 02:25:19 -08002166#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167};
2168
Patrick McHardy9f15c532007-07-07 22:22:02 -07002169static struct xt_target ipt_error_target __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 .name = IPT_ERROR_TARGET,
2171 .target = ipt_error,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002172 .targetsize = IPT_FUNCTION_MAXNAMELEN,
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002173 .family = NFPROTO_IPV4,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174};
2175
2176static struct nf_sockopt_ops ipt_sockopts = {
2177 .pf = PF_INET,
2178 .set_optmin = IPT_BASE_CTL,
2179 .set_optmax = IPT_SO_SET_MAX+1,
2180 .set = do_ipt_set_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002181#ifdef CONFIG_COMPAT
2182 .compat_set = compat_do_ipt_set_ctl,
2183#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 .get_optmin = IPT_BASE_CTL,
2185 .get_optmax = IPT_SO_GET_MAX+1,
2186 .get = do_ipt_get_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002187#ifdef CONFIG_COMPAT
2188 .compat_get = compat_do_ipt_get_ctl,
2189#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002190 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191};
2192
Patrick McHardy9f15c532007-07-07 22:22:02 -07002193static struct xt_match icmp_matchstruct __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 .name = "icmp",
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002195 .match = icmp_match,
2196 .matchsize = sizeof(struct ipt_icmp),
Patrick McHardy9c547952007-12-17 21:52:00 -08002197 .checkentry = icmp_checkentry,
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002198 .proto = IPPROTO_ICMP,
Jan Engelhardt4ba351c2009-04-14 14:28:48 +02002199 .family = NFPROTO_IPV4,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200};
2201
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002202static int __net_init ip_tables_net_init(struct net *net)
2203{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002204 return xt_proto_init(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002205}
2206
2207static void __net_exit ip_tables_net_exit(struct net *net)
2208{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002209 xt_proto_fini(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002210}
2211
2212static struct pernet_operations ip_tables_net_ops = {
2213 .init = ip_tables_net_init,
2214 .exit = ip_tables_net_exit,
2215};
2216
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002217static int __init ip_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218{
2219 int ret;
2220
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002221 ret = register_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002222 if (ret < 0)
2223 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002224
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 /* Noone else will be downing sem now, so we won't sleep */
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002226 ret = xt_register_target(&ipt_standard_target);
2227 if (ret < 0)
2228 goto err2;
2229 ret = xt_register_target(&ipt_error_target);
2230 if (ret < 0)
2231 goto err3;
2232 ret = xt_register_match(&icmp_matchstruct);
2233 if (ret < 0)
2234 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
2236 /* Register setsockopt */
2237 ret = nf_register_sockopt(&ipt_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002238 if (ret < 0)
2239 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Dan Aloni0236e662007-07-09 13:20:12 -07002241 printk(KERN_INFO "ip_tables: (C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002243
2244err5:
2245 xt_unregister_match(&icmp_matchstruct);
2246err4:
2247 xt_unregister_target(&ipt_error_target);
2248err3:
2249 xt_unregister_target(&ipt_standard_target);
2250err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002251 unregister_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002252err1:
2253 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254}
2255
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002256static void __exit ip_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257{
2258 nf_unregister_sockopt(&ipt_sockopts);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002259
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -08002260 xt_unregister_match(&icmp_matchstruct);
2261 xt_unregister_target(&ipt_error_target);
2262 xt_unregister_target(&ipt_standard_target);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002263
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002264 unregister_pernet_subsys(&ip_tables_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265}
2266
2267EXPORT_SYMBOL(ipt_register_table);
2268EXPORT_SYMBOL(ipt_unregister_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269EXPORT_SYMBOL(ipt_do_table);
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002270module_init(ip_tables_init);
2271module_exit(ip_tables_fini);