blob: 585b80f3cc687c4a55314e0162e49a544f1a6fd2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Packet matching code.
3 *
4 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
Harald Welte2e4e6a12006-01-12 13:30:04 -08005 * Copyright (C) 2000-2005 Netfilter Core Team <coreteam@netfilter.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +020011#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/cache.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080013#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/skbuff.h>
15#include <linux/kmod.h>
16#include <linux/vmalloc.h>
17#include <linux/netdevice.h>
18#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/icmp.h>
20#include <net/ip.h>
Dmitry Mishin27229712006-04-01 02:25:19 -080021#include <net/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/uaccess.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -080023#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/proc_fs.h>
25#include <linux/err.h>
David S. Millerc8923c62005-10-13 14:41:23 -070026#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Harald Welte2e4e6a12006-01-12 13:30:04 -080028#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/netfilter_ipv4/ip_tables.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080030#include <net/netfilter/nf_log.h>
Jan Engelhardte3eaa992009-06-17 22:14:54 +020031#include "../../netfilter/xt_repldata.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33MODULE_LICENSE("GPL");
34MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
35MODULE_DESCRIPTION("IPv4 packet filter");
36
37/*#define DEBUG_IP_FIREWALL*/
38/*#define DEBUG_ALLOW_ALL*/ /* Useful for remote debugging */
39/*#define DEBUG_IP_FIREWALL_USER*/
40
41#ifdef DEBUG_IP_FIREWALL
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010042#define dprintf(format, args...) pr_info(format , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#else
44#define dprintf(format, args...)
45#endif
46
47#ifdef DEBUG_IP_FIREWALL_USER
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010048#define duprintf(format, args...) pr_info(format , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#else
50#define duprintf(format, args...)
51#endif
52
53#ifdef CONFIG_NETFILTER_DEBUG
Stephen Hemmingeraf567602010-05-13 15:00:20 +020054#define IP_NF_ASSERT(x) WARN_ON(!(x))
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#else
56#define IP_NF_ASSERT(x)
57#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#if 0
60/* All the better to debug you with... */
61#define static
62#define inline
63#endif
64
Jan Engelhardte3eaa992009-06-17 22:14:54 +020065void *ipt_alloc_initial_table(const struct xt_table *info)
66{
67 return xt_alloc_initial_table(ipt, IPT);
68}
69EXPORT_SYMBOL_GPL(ipt_alloc_initial_table);
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/* Returns whether matches rule or not. */
Denys Vlasenko022748a2008-01-14 23:44:05 -080072/* Performance critical - called for every packet */
Patrick McHardy9c547952007-12-17 21:52:00 -080073static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -070074ip_packet_match(const struct iphdr *ip,
75 const char *indev,
76 const char *outdev,
77 const struct ipt_ip *ipinfo,
78 int isfrag)
79{
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 unsigned long ret;
81
Jan Engelhardte79ec502007-12-17 22:44:06 -080082#define FWINV(bool, invflg) ((bool) ^ !!(ipinfo->invflags & (invflg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 if (FWINV((ip->saddr&ipinfo->smsk.s_addr) != ipinfo->src.s_addr,
Joe Perches3666ed12009-11-23 23:17:06 +010085 IPT_INV_SRCIP) ||
86 FWINV((ip->daddr&ipinfo->dmsk.s_addr) != ipinfo->dst.s_addr,
87 IPT_INV_DSTIP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 dprintf("Source or dest mismatch.\n");
89
Harvey Harrisoncffee382008-10-31 00:53:08 -070090 dprintf("SRC: %pI4. Mask: %pI4. Target: %pI4.%s\n",
91 &ip->saddr, &ipinfo->smsk.s_addr, &ipinfo->src.s_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 ipinfo->invflags & IPT_INV_SRCIP ? " (INV)" : "");
Harvey Harrisoncffee382008-10-31 00:53:08 -070093 dprintf("DST: %pI4 Mask: %pI4 Target: %pI4.%s\n",
94 &ip->daddr, &ipinfo->dmsk.s_addr, &ipinfo->dst.s_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 ipinfo->invflags & IPT_INV_DSTIP ? " (INV)" : "");
Patrick McHardy9c547952007-12-17 21:52:00 -080096 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 }
98
Eric Dumazetb8dfe492009-03-25 17:31:52 +010099 ret = ifname_compare_aligned(indev, ipinfo->iniface, ipinfo->iniface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101 if (FWINV(ret != 0, IPT_INV_VIA_IN)) {
102 dprintf("VIA in mismatch (%s vs %s).%s\n",
103 indev, ipinfo->iniface,
104 ipinfo->invflags&IPT_INV_VIA_IN ?" (INV)":"");
Patrick McHardy9c547952007-12-17 21:52:00 -0800105 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 }
107
Eric Dumazetb8dfe492009-03-25 17:31:52 +0100108 ret = ifname_compare_aligned(outdev, ipinfo->outiface, ipinfo->outiface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 if (FWINV(ret != 0, IPT_INV_VIA_OUT)) {
111 dprintf("VIA out mismatch (%s vs %s).%s\n",
112 outdev, ipinfo->outiface,
113 ipinfo->invflags&IPT_INV_VIA_OUT ?" (INV)":"");
Patrick McHardy9c547952007-12-17 21:52:00 -0800114 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 }
116
117 /* Check specific protocol */
Joe Perches3666ed12009-11-23 23:17:06 +0100118 if (ipinfo->proto &&
119 FWINV(ip->protocol != ipinfo->proto, IPT_INV_PROTO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 dprintf("Packet protocol %hi does not match %hi.%s\n",
121 ip->protocol, ipinfo->proto,
122 ipinfo->invflags&IPT_INV_PROTO ? " (INV)":"");
Patrick McHardy9c547952007-12-17 21:52:00 -0800123 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 }
125
126 /* If we have a fragment rule but the packet is not a fragment
127 * then we return zero */
128 if (FWINV((ipinfo->flags&IPT_F_FRAG) && !isfrag, IPT_INV_FRAG)) {
129 dprintf("Fragment rule but not fragment.%s\n",
130 ipinfo->invflags & IPT_INV_FRAG ? " (INV)" : "");
Patrick McHardy9c547952007-12-17 21:52:00 -0800131 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 }
133
Patrick McHardy9c547952007-12-17 21:52:00 -0800134 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
Denys Vlasenko022748a2008-01-14 23:44:05 -0800137static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138ip_checkentry(const struct ipt_ip *ip)
139{
140 if (ip->flags & ~IPT_F_MASK) {
141 duprintf("Unknown flag bits set: %08X\n",
142 ip->flags & ~IPT_F_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700143 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
145 if (ip->invflags & ~IPT_INV_MASK) {
146 duprintf("Unknown invflag bits set: %08X\n",
147 ip->invflags & ~IPT_INV_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700148 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700150 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
153static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200154ipt_error(struct sk_buff *skb, const struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 if (net_ratelimit())
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100157 pr_info("error: `%s'\n", (const char *)par->targinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 return NF_DROP;
160}
161
Denys Vlasenko022748a2008-01-14 23:44:05 -0800162/* Performance critical */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163static inline struct ipt_entry *
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200164get_entry(const void *base, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 return (struct ipt_entry *)(base + offset);
167}
168
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700169/* All zeroes == unconditional rule. */
Denys Vlasenko022748a2008-01-14 23:44:05 -0800170/* Mildly perf critical (only if packet tracing is on) */
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200171static inline bool unconditional(const struct ipt_ip *ip)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700172{
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200173 static const struct ipt_ip uncond;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700174
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200175 return memcmp(ip, &uncond, sizeof(uncond)) == 0;
Jan Engelhardte79ec502007-12-17 22:44:06 -0800176#undef FWINV
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700177}
178
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200179/* for const-correctness */
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200180static inline const struct xt_entry_target *
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200181ipt_get_target_c(const struct ipt_entry *e)
182{
183 return ipt_get_target((struct ipt_entry *)e);
184}
185
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700186#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
187 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
Denys Vlasenko022748a2008-01-14 23:44:05 -0800188static const char *const hooknames[] = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800189 [NF_INET_PRE_ROUTING] = "PREROUTING",
190 [NF_INET_LOCAL_IN] = "INPUT",
Patrick McHardy9c547952007-12-17 21:52:00 -0800191 [NF_INET_FORWARD] = "FORWARD",
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800192 [NF_INET_LOCAL_OUT] = "OUTPUT",
193 [NF_INET_POST_ROUTING] = "POSTROUTING",
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700194};
195
196enum nf_ip_trace_comments {
197 NF_IP_TRACE_COMMENT_RULE,
198 NF_IP_TRACE_COMMENT_RETURN,
199 NF_IP_TRACE_COMMENT_POLICY,
200};
201
Denys Vlasenko022748a2008-01-14 23:44:05 -0800202static const char *const comments[] = {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700203 [NF_IP_TRACE_COMMENT_RULE] = "rule",
204 [NF_IP_TRACE_COMMENT_RETURN] = "return",
205 [NF_IP_TRACE_COMMENT_POLICY] = "policy",
206};
207
208static struct nf_loginfo trace_loginfo = {
209 .type = NF_LOG_TYPE_LOG,
210 .u = {
211 .log = {
212 .level = 4,
213 .logflags = NF_LOG_MASK,
214 },
215 },
216};
217
Denys Vlasenko022748a2008-01-14 23:44:05 -0800218/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700219static inline int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200220get_chainname_rulenum(const struct ipt_entry *s, const struct ipt_entry *e,
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200221 const char *hookname, const char **chainname,
222 const char **comment, unsigned int *rulenum)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700223{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200224 const struct xt_standard_target *t = (void *)ipt_get_target_c(s);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700225
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200226 if (strcmp(t->target.u.kernel.target->name, XT_ERROR_TARGET) == 0) {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700227 /* Head of user chain: ERROR target with chainname */
228 *chainname = t->target.data;
229 (*rulenum) = 0;
230 } else if (s == e) {
231 (*rulenum)++;
232
Joe Perches3666ed12009-11-23 23:17:06 +0100233 if (s->target_offset == sizeof(struct ipt_entry) &&
234 strcmp(t->target.u.kernel.target->name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200235 XT_STANDARD_TARGET) == 0 &&
Joe Perches3666ed12009-11-23 23:17:06 +0100236 t->verdict < 0 &&
237 unconditional(&s->ip)) {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700238 /* Tail of chains: STANDARD target (return/policy) */
239 *comment = *chainname == hookname
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200240 ? comments[NF_IP_TRACE_COMMENT_POLICY]
241 : comments[NF_IP_TRACE_COMMENT_RETURN];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700242 }
243 return 1;
244 } else
245 (*rulenum)++;
246
247 return 0;
248}
249
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200250static void trace_packet(const struct sk_buff *skb,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700251 unsigned int hook,
252 const struct net_device *in,
253 const struct net_device *out,
Jan Engelhardtecb6f852008-01-31 03:54:47 -0800254 const char *tablename,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200255 const struct xt_table_info *private,
256 const struct ipt_entry *e)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700257{
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200258 const void *table_base;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200259 const struct ipt_entry *root;
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200260 const char *hookname, *chainname, *comment;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100261 const struct ipt_entry *iter;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700262 unsigned int rulenum = 0;
263
Jan Engelhardtccf5bd82009-04-15 20:27:03 +0200264 table_base = private->entries[smp_processor_id()];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700265 root = get_entry(table_base, private->hook_entry[hook]);
266
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200267 hookname = chainname = hooknames[hook];
268 comment = comments[NF_IP_TRACE_COMMENT_RULE];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700269
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100270 xt_entry_foreach(iter, root, private->size - private->hook_entry[hook])
271 if (get_chainname_rulenum(iter, e, hookname,
272 &chainname, &comment, &rulenum) != 0)
273 break;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700274
275 nf_log_packet(AF_INET, hook, skb, in, out, &trace_loginfo,
276 "TRACE: %s:%s:%s:%u ",
277 tablename, chainname, comment, rulenum);
278}
279#endif
280
Jan Engelhardt98e86402009-04-15 21:06:05 +0200281static inline __pure
282struct ipt_entry *ipt_next_entry(const struct ipt_entry *entry)
283{
284 return (void *)entry + entry->next_offset;
285}
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287/* Returns one of the generic firewall policies, like NF_ACCEPT. */
288unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700289ipt_do_table(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 unsigned int hook,
291 const struct net_device *in,
292 const struct net_device *out,
Jan Engelhardte60a13e2007-02-07 15:12:33 -0800293 struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
295 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
Jan Engelhardt5452e422008-04-14 11:15:35 +0200296 const struct iphdr *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 /* Initializing verdict to NF_DROP keeps gcc happy. */
298 unsigned int verdict = NF_DROP;
299 const char *indev, *outdev;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200300 const void *table_base;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200301 struct ipt_entry *e, **jumpstack;
302 unsigned int *stackptr, origptr, cpu;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200303 const struct xt_table_info *private;
Jan Engelhardtde74c162009-07-05 18:26:37 +0200304 struct xt_action_param acpar;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200305 unsigned int addend;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 /* Initialization */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700308 ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 indev = in ? in->name : nulldevname;
310 outdev = out ? out->name : nulldevname;
311 /* We handle fragments by dealing with the first fragment as
312 * if it was a normal packet. All other fragments are treated
313 * normally, except that they will NEVER match rules that ask
314 * things we don't know, ie. tcp syn flag or ports). If the
315 * rule is also a fragment-specific rule, non-fragments won't
316 * match it. */
Jan Engelhardtde74c162009-07-05 18:26:37 +0200317 acpar.fragoff = ntohs(ip->frag_off) & IP_OFFSET;
318 acpar.thoff = ip_hdrlen(skb);
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200319 acpar.hotdrop = false;
Jan Engelhardtde74c162009-07-05 18:26:37 +0200320 acpar.in = in;
321 acpar.out = out;
322 acpar.family = NFPROTO_IPV4;
323 acpar.hooknum = hook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 IP_NF_ASSERT(table->valid_hooks & (1 << hook));
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200326 local_bh_disable();
327 addend = xt_write_recseq_begin();
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700328 private = table->private;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200329 cpu = smp_processor_id();
330 table_base = private->entries[cpu];
331 jumpstack = (struct ipt_entry **)private->jumpstack[cpu];
Eric Dumazet7489aec2010-05-31 16:41:35 +0200332 stackptr = per_cpu_ptr(private->stackptr, cpu);
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200333 origptr = *stackptr;
Stephen Hemminger78454472009-02-20 10:35:32 +0100334
Harald Welte2e4e6a12006-01-12 13:30:04 -0800335 e = get_entry(table_base, private->hook_entry[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Patrick McHardycecc74d2010-04-22 13:03:24 +0200337 pr_debug("Entering %s(hook %u); sp at %u (UF %p)\n",
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200338 table->name, hook, origptr,
339 get_entry(table_base, private->underflow[hook]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 do {
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200342 const struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100343 const struct xt_entry_match *ematch;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 IP_NF_ASSERT(e);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200346 if (!ip_packet_match(ip, indev, outdev,
Jan Engelhardtde74c162009-07-05 18:26:37 +0200347 &e->ip, acpar.fragoff)) {
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100348 no_match:
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200349 e = ipt_next_entry(e);
350 continue;
351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Jan Engelhardtef53d702009-07-09 19:14:18 +0200353 xt_ematch_foreach(ematch, e) {
Jan Engelhardtde74c162009-07-05 18:26:37 +0200354 acpar.match = ematch->u.kernel.match;
355 acpar.matchinfo = ematch->data;
356 if (!acpar.match->match(skb, &acpar))
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100357 goto no_match;
Jan Engelhardtef53d702009-07-09 19:14:18 +0200358 }
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100359
Changli Gao7df08842010-07-23 16:25:11 +0200360 ADD_COUNTER(e->counters, skb->len, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200362 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)
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200367 /* The packet is traced: log it */
368 if (unlikely(skb->nf_trace))
369 trace_packet(skb, hook, in, out,
370 table->name, private, e);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700371#endif
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200372 /* Standard target? */
373 if (!t->u.kernel.target->target) {
374 int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200376 v = ((struct xt_standard_target *)t)->verdict;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200377 if (v < 0) {
378 /* Pop from stack? */
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200379 if (v != XT_RETURN) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000380 verdict = (unsigned int)(-v) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 break;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200382 }
Eric Dumazetdb856672011-03-20 15:40:06 +0100383 if (*stackptr <= origptr) {
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200384 e = get_entry(table_base,
385 private->underflow[hook]);
Patrick McHardycecc74d2010-04-22 13:03:24 +0200386 pr_debug("Underflow (this is normal) "
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200387 "to %p\n", e);
388 } else {
389 e = jumpstack[--*stackptr];
Patrick McHardycecc74d2010-04-22 13:03:24 +0200390 pr_debug("Pulled %p out from pos %u\n",
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200391 e, *stackptr);
392 e = ipt_next_entry(e);
393 }
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200394 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
Joe Perches3666ed12009-11-23 23:17:06 +0100396 if (table_base + v != ipt_next_entry(e) &&
397 !(e->ip.flags & IPT_F_GOTO)) {
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200398 if (*stackptr >= private->stacksize) {
399 verdict = NF_DROP;
400 break;
401 }
402 jumpstack[(*stackptr)++] = e;
Patrick McHardycecc74d2010-04-22 13:03:24 +0200403 pr_debug("Pushed %p into pos %u\n",
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200404 e, *stackptr - 1);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200407 e = get_entry(table_base, v);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200408 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200410
Jan Engelhardtde74c162009-07-05 18:26:37 +0200411 acpar.target = t->u.kernel.target;
412 acpar.targinfo = t->data;
Jan Engelhardtbb70dfa2009-04-15 21:40:13 +0200413
Jan Engelhardtde74c162009-07-05 18:26:37 +0200414 verdict = t->u.kernel.target->target(skb, &acpar);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200415 /* Target might have changed stuff. */
416 ip = ip_hdr(skb);
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200417 if (verdict == XT_CONTINUE)
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200418 e = ipt_next_entry(e);
419 else
420 /* Verdict */
421 break;
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200422 } while (!acpar.hotdrop);
Patrick McHardycecc74d2010-04-22 13:03:24 +0200423 pr_debug("Exiting %s; resetting sp from %u to %u\n",
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200424 __func__, *stackptr, origptr);
425 *stackptr = origptr;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200426 xt_write_recseq_end(addend);
427 local_bh_enable();
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429#ifdef DEBUG_ALLOW_ALL
430 return NF_ACCEPT;
431#else
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200432 if (acpar.hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return NF_DROP;
434 else return verdict;
435#endif
436}
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438/* Figures out from what hook each rule can be called: returns 0 if
439 there are loops. Puts hook bitmask in comefrom. */
440static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200441mark_source_chains(const struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800442 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
444 unsigned int hook;
445
446 /* No recursion; use packet counter to save back ptrs (reset
447 to 0 as we leave), and comefrom to save source hook bitmask */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800448 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 unsigned int pos = newinfo->hook_entry[hook];
Patrick McHardy9c547952007-12-17 21:52:00 -0800450 struct ipt_entry *e = (struct ipt_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 if (!(valid_hooks & (1 << hook)))
453 continue;
454
455 /* Set initial back pointer. */
456 e->counters.pcnt = pos;
457
458 for (;;) {
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200459 const struct xt_standard_target *t
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200460 = (void *)ipt_get_target_c(e);
Al Viroe1b4b9f2006-12-12 00:29:52 -0800461 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800463 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200464 pr_err("iptables: loop hook %u pos %u %08X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 hook, pos, e->comefrom);
466 return 0;
467 }
Patrick McHardy9c547952007-12-17 21:52:00 -0800468 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 /* Unconditional return/END. */
Joe Perches3666ed12009-11-23 23:17:06 +0100471 if ((e->target_offset == sizeof(struct ipt_entry) &&
472 (strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200473 XT_STANDARD_TARGET) == 0) &&
Joe Perches3666ed12009-11-23 23:17:06 +0100474 t->verdict < 0 && unconditional(&e->ip)) ||
475 visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 unsigned int oldpos, size;
477
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100478 if ((strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200479 XT_STANDARD_TARGET) == 0) &&
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100480 t->verdict < -NF_MAX_VERDICT - 1) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800481 duprintf("mark_source_chains: bad "
482 "negative verdict (%i)\n",
483 t->verdict);
484 return 0;
485 }
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 /* Return: backtrack through the last
488 big jump. */
489 do {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800490 e->comefrom ^= (1<<NF_INET_NUMHOOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491#ifdef DEBUG_IP_FIREWALL_USER
492 if (e->comefrom
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800493 & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 duprintf("Back unset "
495 "on hook %u "
496 "rule %u\n",
497 hook, pos);
498 }
499#endif
500 oldpos = pos;
501 pos = e->counters.pcnt;
502 e->counters.pcnt = 0;
503
504 /* We're at the start. */
505 if (pos == oldpos)
506 goto next;
507
508 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800509 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 } while (oldpos == pos + e->next_offset);
511
512 /* Move along one */
513 size = e->next_offset;
514 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800515 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 e->counters.pcnt = pos;
517 pos += size;
518 } else {
519 int newpos = t->verdict;
520
521 if (strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200522 XT_STANDARD_TARGET) == 0 &&
Joe Perches3666ed12009-11-23 23:17:06 +0100523 newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800524 if (newpos > newinfo->size -
525 sizeof(struct ipt_entry)) {
526 duprintf("mark_source_chains: "
527 "bad verdict (%i)\n",
528 newpos);
529 return 0;
530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 /* This a jump; chase it. */
532 duprintf("Jump rule %u -> %u\n",
533 pos, newpos);
534 } else {
535 /* ... this is a fallthru */
536 newpos = pos + e->next_offset;
537 }
538 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800539 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 e->counters.pcnt = pos;
541 pos = newpos;
542 }
543 }
544 next:
545 duprintf("Finished chain %u\n", hook);
546 }
547 return 1;
548}
549
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200550static void cleanup_match(struct xt_entry_match *m, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200552 struct xt_mtdtor_param par;
553
Alexey Dobriyanf54e9362010-01-18 08:25:47 +0100554 par.net = net;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200555 par.match = m->u.kernel.match;
556 par.matchinfo = m->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200557 par.family = NFPROTO_IPV4;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200558 if (par.match->destroy != NULL)
559 par.match->destroy(&par);
560 module_put(par.match->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
Denys Vlasenko022748a2008-01-14 23:44:05 -0800563static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200564check_entry(const struct ipt_entry *e, const char *name)
Dmitry Mishina96be242006-12-12 00:29:26 -0800565{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200566 const struct xt_entry_target *t;
Dmitry Mishina96be242006-12-12 00:29:26 -0800567
568 if (!ip_checkentry(&e->ip)) {
Sebastian Andrzej Siewior63f6fe92011-06-16 17:16:37 +0200569 duprintf("ip check failed %p %s.\n", e, name);
Dmitry Mishina96be242006-12-12 00:29:26 -0800570 return -EINVAL;
571 }
572
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200573 if (e->target_offset + sizeof(struct xt_entry_target) >
Patrick McHardy9c547952007-12-17 21:52:00 -0800574 e->next_offset)
Dmitry Mishina96be242006-12-12 00:29:26 -0800575 return -EINVAL;
576
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200577 t = ipt_get_target_c(e);
Dmitry Mishina96be242006-12-12 00:29:26 -0800578 if (e->target_offset + t->u.target_size > e->next_offset)
579 return -EINVAL;
580
581 return 0;
582}
583
Denys Vlasenko022748a2008-01-14 23:44:05 -0800584static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200585check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
Dmitry Mishina96be242006-12-12 00:29:26 -0800586{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200587 const struct ipt_ip *ip = par->entryinfo;
Dmitry Mishina96be242006-12-12 00:29:26 -0800588 int ret;
589
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200590 par->match = m->u.kernel.match;
591 par->matchinfo = m->data;
592
Jan Engelhardt916a9172008-10-08 11:35:20 +0200593 ret = xt_check_match(par, m->u.match_size - sizeof(*m),
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200594 ip->proto, ip->invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200595 if (ret < 0) {
Jan Engelhardtb5cad0d2010-05-02 13:55:21 +0200596 duprintf("check failed for `%s'.\n", par->match->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200597 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800598 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200599 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800600}
601
Denys Vlasenko022748a2008-01-14 23:44:05 -0800602static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200603find_check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800605 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800606 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200608 match = xt_request_find_match(NFPROTO_IPV4, m->u.user.name,
609 m->u.user.revision);
610 if (IS_ERR(match)) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800611 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200612 return PTR_ERR(match);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
614 m->u.kernel.match = match;
615
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100616 ret = check_match(m, par);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800617 if (ret)
618 goto err;
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800621err:
622 module_put(m->u.kernel.match->me);
623 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
Patrick McHardyadd67462010-02-03 13:45:12 +0100626static int check_target(struct ipt_entry *e, struct net *net, const char *name)
Dmitry Mishina96be242006-12-12 00:29:26 -0800627{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200628 struct xt_entry_target *t = ipt_get_target(e);
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200629 struct xt_tgchk_param par = {
Patrick McHardyadd67462010-02-03 13:45:12 +0100630 .net = net,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200631 .table = name,
632 .entryinfo = e,
633 .target = t->u.kernel.target,
634 .targinfo = t->data,
635 .hook_mask = e->comefrom,
Jan Engelhardt916a9172008-10-08 11:35:20 +0200636 .family = NFPROTO_IPV4,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200637 };
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900638 int ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800639
Jan Engelhardt916a9172008-10-08 11:35:20 +0200640 ret = xt_check_target(&par, t->u.target_size - sizeof(*t),
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200641 e->ip.proto, e->ip.invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200642 if (ret < 0) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100643 duprintf("check failed for `%s'.\n",
Dmitry Mishina96be242006-12-12 00:29:26 -0800644 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200645 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800646 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200647 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800648}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Denys Vlasenko022748a2008-01-14 23:44:05 -0800650static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100651find_check_entry(struct ipt_entry *e, struct net *net, const char *name,
Jan Engelhardt05595182010-02-24 18:33:43 +0100652 unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200654 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800655 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 int ret;
657 unsigned int j;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200658 struct xt_mtchk_param mtpar;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100659 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Dmitry Mishina96be242006-12-12 00:29:26 -0800661 ret = check_entry(e, name);
662 if (ret)
663 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 j = 0;
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100666 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200667 mtpar.table = name;
668 mtpar.entryinfo = &e->ip;
669 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200670 mtpar.family = NFPROTO_IPV4;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100671 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100672 ret = find_check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100673 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100674 goto cleanup_matches;
675 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678 t = ipt_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200679 target = xt_request_find_target(NFPROTO_IPV4, t->u.user.name,
680 t->u.user.revision);
681 if (IS_ERR(target)) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800682 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200683 ret = PTR_ERR(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 goto cleanup_matches;
685 }
686 t->u.kernel.target = target;
687
Patrick McHardyadd67462010-02-03 13:45:12 +0100688 ret = check_target(e, net, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800689 if (ret)
690 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800692 err:
693 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100695 xt_ematch_foreach(ematch, e) {
696 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100697 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100698 cleanup_match(ematch, net);
699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return ret;
701}
702
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200703static bool check_underflow(const struct ipt_entry *e)
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200704{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200705 const struct xt_entry_target *t;
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200706 unsigned int verdict;
707
708 if (!unconditional(&e->ip))
709 return false;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200710 t = ipt_get_target_c(e);
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200711 if (strcmp(t->u.user.name, XT_STANDARD_TARGET) != 0)
712 return false;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200713 verdict = ((struct xt_standard_target *)t)->verdict;
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200714 verdict = -verdict - 1;
715 return verdict == NF_DROP || verdict == NF_ACCEPT;
716}
717
Denys Vlasenko022748a2008-01-14 23:44:05 -0800718static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719check_entry_size_and_hooks(struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800720 struct xt_table_info *newinfo,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200721 const unsigned char *base,
722 const unsigned char *limit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 const unsigned int *hook_entries,
724 const unsigned int *underflows,
Jan Engelhardt05595182010-02-24 18:33:43 +0100725 unsigned int valid_hooks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
727 unsigned int h;
728
Joe Perches3666ed12009-11-23 23:17:06 +0100729 if ((unsigned long)e % __alignof__(struct ipt_entry) != 0 ||
730 (unsigned char *)e + sizeof(struct ipt_entry) >= limit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 duprintf("Bad offset %p\n", e);
732 return -EINVAL;
733 }
734
735 if (e->next_offset
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200736 < sizeof(struct ipt_entry) + sizeof(struct xt_entry_target)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 duprintf("checking: element %p size %u\n",
738 e, e->next_offset);
739 return -EINVAL;
740 }
741
742 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800743 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Jan Engelhardta7d51732009-07-18 14:52:58 +0200744 if (!(valid_hooks & (1 << h)))
745 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if ((unsigned char *)e - base == hook_entries[h])
747 newinfo->hook_entry[h] = hook_entries[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200748 if ((unsigned char *)e - base == underflows[h]) {
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200749 if (!check_underflow(e)) {
750 pr_err("Underflows must be unconditional and "
751 "use the STANDARD target with "
752 "ACCEPT/DROP\n");
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200753 return -EINVAL;
754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 newinfo->underflow[h] = underflows[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800760 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 e->comefrom = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return 0;
763}
764
Jan Engelhardt05595182010-02-24 18:33:43 +0100765static void
766cleanup_entry(struct ipt_entry *e, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200768 struct xt_tgdtor_param par;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200769 struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100770 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100773 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100774 cleanup_match(ematch, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 t = ipt_get_target(e);
Jan Engelhardta2df1642008-10-08 11:35:19 +0200776
Patrick McHardyadd67462010-02-03 13:45:12 +0100777 par.net = net;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200778 par.target = t->u.kernel.target;
779 par.targinfo = t->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200780 par.family = NFPROTO_IPV4;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200781 if (par.target->destroy != NULL)
782 par.target->destroy(&par);
783 module_put(par.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784}
785
786/* Checks and translates the user-supplied table segment (held in
787 newinfo) */
788static int
Jan Engelhardt0f234212010-02-24 18:36:04 +0100789translate_table(struct net *net, struct xt_table_info *newinfo, void *entry0,
790 const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100792 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 unsigned int i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100794 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Jan Engelhardt0f234212010-02-24 18:36:04 +0100796 newinfo->size = repl->size;
797 newinfo->number = repl->num_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800800 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 newinfo->hook_entry[i] = 0xFFFFFFFF;
802 newinfo->underflow[i] = 0xFFFFFFFF;
803 }
804
805 duprintf("translate_table: size %u\n", newinfo->size);
806 i = 0;
807 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100808 xt_entry_foreach(iter, entry0, newinfo->size) {
809 ret = check_entry_size_and_hooks(iter, newinfo, entry0,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +0100810 entry0 + repl->size,
811 repl->hook_entry,
812 repl->underflow,
813 repl->valid_hooks);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100814 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +0100815 return ret;
816 ++i;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200817 if (strcmp(ipt_get_target(iter)->u.user.name,
818 XT_ERROR_TARGET) == 0)
819 ++newinfo->stacksize;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Jan Engelhardt0f234212010-02-24 18:36:04 +0100822 if (i != repl->num_entries) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 duprintf("translate_table: %u not %u entries\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100824 i, repl->num_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 return -EINVAL;
826 }
827
828 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800829 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 /* Only hooks which are valid */
Jan Engelhardt0f234212010-02-24 18:36:04 +0100831 if (!(repl->valid_hooks & (1 << i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 continue;
833 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
834 duprintf("Invalid hook entry %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100835 i, repl->hook_entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 return -EINVAL;
837 }
838 if (newinfo->underflow[i] == 0xFFFFFFFF) {
839 duprintf("Invalid underflow %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100840 i, repl->underflow[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 return -EINVAL;
842 }
843 }
844
Jan Engelhardt0f234212010-02-24 18:36:04 +0100845 if (!mark_source_chains(newinfo, repl->valid_hooks, entry0))
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800846 return -ELOOP;
847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 /* Finally, each sanity check must pass */
849 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100850 xt_entry_foreach(iter, entry0, newinfo->size) {
Jan Engelhardt0f234212010-02-24 18:36:04 +0100851 ret = find_check_entry(iter, net, repl->name, repl->size);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100852 if (ret != 0)
853 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100854 ++i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800857 if (ret != 0) {
Jan Engelhardt05595182010-02-24 18:33:43 +0100858 xt_entry_foreach(iter, entry0, newinfo->size) {
859 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100860 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100861 cleanup_entry(iter, net);
862 }
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800863 return ret;
864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 /* And one copy for every other CPU */
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700867 for_each_possible_cpu(i) {
Eric Dumazet31836062005-12-13 23:13:48 -0800868 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
869 memcpy(newinfo->entries[i], entry0, newinfo->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 }
871
872 return ret;
873}
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800876get_counters(const struct xt_table_info *t,
877 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100879 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 unsigned int cpu;
881 unsigned int i;
882
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700883 for_each_possible_cpu(cpu) {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200884 seqcount_t *s = &per_cpu(xt_recseq, cpu);
Eric Dumazet83723d62011-01-10 20:11:38 +0100885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 i = 0;
Jan Engelhardt05595182010-02-24 18:33:43 +0100887 xt_entry_foreach(iter, t->entries[cpu], t->size) {
Eric Dumazet83723d62011-01-10 20:11:38 +0100888 u64 bcnt, pcnt;
889 unsigned int start;
890
891 do {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200892 start = read_seqcount_begin(s);
Eric Dumazet83723d62011-01-10 20:11:38 +0100893 bcnt = iter->counters.bcnt;
894 pcnt = iter->counters.pcnt;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200895 } while (read_seqcount_retry(s, start));
Eric Dumazet83723d62011-01-10 20:11:38 +0100896
897 ADD_COUNTER(counters[i], bcnt, pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +0100898 ++i; /* macro does multi eval of i */
899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
Stephen Hemminger78454472009-02-20 10:35:32 +0100901}
902
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200903static struct xt_counters *alloc_counters(const struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
Dmitry Mishin27229712006-04-01 02:25:19 -0800905 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800906 struct xt_counters *counters;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200907 const struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 /* We need atomic snapshot of counters: rest doesn't change
910 (other than comefrom, which userspace doesn't care
911 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800912 countersize = sizeof(struct xt_counters) * private->number;
Eric Dumazet83723d62011-01-10 20:11:38 +0100913 counters = vzalloc(countersize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915 if (counters == NULL)
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700916 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700918 get_counters(private, counters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Dmitry Mishin27229712006-04-01 02:25:19 -0800920 return counters;
921}
922
923static int
924copy_entries_to_user(unsigned int total_size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200925 const struct xt_table *table,
Dmitry Mishin27229712006-04-01 02:25:19 -0800926 void __user *userptr)
927{
928 unsigned int off, num;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200929 const struct ipt_entry *e;
Dmitry Mishin27229712006-04-01 02:25:19 -0800930 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200931 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -0800932 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200933 const void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -0800934
935 counters = alloc_counters(table);
936 if (IS_ERR(counters))
937 return PTR_ERR(counters);
938
Eric Dumazet31836062005-12-13 23:13:48 -0800939 /* choose the copy that is on our node/cpu, ...
940 * This choice is lazy (because current thread is
941 * allowed to migrate to another cpu)
942 */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800943 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -0800944 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 ret = -EFAULT;
946 goto free_counters;
947 }
948
949 /* FIXME: use iterator macros --RR */
950 /* ... then go back and fix counters and names */
951 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
952 unsigned int i;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200953 const struct xt_entry_match *m;
954 const struct xt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Eric Dumazet31836062005-12-13 23:13:48 -0800956 e = (struct ipt_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (copy_to_user(userptr + off
958 + offsetof(struct ipt_entry, counters),
959 &counters[num],
960 sizeof(counters[num])) != 0) {
961 ret = -EFAULT;
962 goto free_counters;
963 }
964
965 for (i = sizeof(struct ipt_entry);
966 i < e->target_offset;
967 i += m->u.match_size) {
968 m = (void *)e + i;
969
970 if (copy_to_user(userptr + off + i
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200971 + offsetof(struct xt_entry_match,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 u.user.name),
973 m->u.kernel.match->name,
974 strlen(m->u.kernel.match->name)+1)
975 != 0) {
976 ret = -EFAULT;
977 goto free_counters;
978 }
979 }
980
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200981 t = ipt_get_target_c(e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 if (copy_to_user(userptr + off + e->target_offset
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200983 + offsetof(struct xt_entry_target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 u.user.name),
985 t->u.kernel.target->name,
986 strlen(t->u.kernel.target->name)+1) != 0) {
987 ret = -EFAULT;
988 goto free_counters;
989 }
990 }
991
992 free_counters:
993 vfree(counters);
994 return ret;
995}
996
Dmitry Mishin27229712006-04-01 02:25:19 -0800997#ifdef CONFIG_COMPAT
Jan Engelhardt739674f2009-06-26 08:23:19 +0200998static void compat_standard_from_user(void *dst, const void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -0800999{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001000 int v = *(compat_int_t *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001001
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001002 if (v > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001003 v += xt_compat_calc_jump(AF_INET, v);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001004 memcpy(dst, &v, sizeof(v));
1005}
1006
Jan Engelhardt739674f2009-06-26 08:23:19 +02001007static int compat_standard_to_user(void __user *dst, const void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001008{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001009 compat_int_t cv = *(int *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001010
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001011 if (cv > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001012 cv -= xt_compat_calc_jump(AF_INET, cv);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001013 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001014}
1015
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001016static int compat_calc_entry(const struct ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001017 const struct xt_table_info *info,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001018 const void *base, struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001019{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001020 const struct xt_entry_match *ematch;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001021 const struct xt_entry_target *t;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001022 unsigned int entry_offset;
Dmitry Mishin27229712006-04-01 02:25:19 -08001023 int off, i, ret;
1024
Patrick McHardy30c08c42007-12-17 21:47:14 -08001025 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001026 entry_offset = (void *)e - base;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001027 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001028 off += xt_compat_match_offset(ematch->u.kernel.match);
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001029 t = ipt_get_target_c(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001030 off += xt_compat_target_offset(t->u.kernel.target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001031 newinfo->size -= off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001032 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001033 if (ret)
1034 return ret;
1035
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001036 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Patrick McHardy4b478242007-12-17 21:46:15 -08001037 if (info->hook_entry[i] &&
1038 (e < (struct ipt_entry *)(base + info->hook_entry[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001039 newinfo->hook_entry[i] -= off;
Patrick McHardy4b478242007-12-17 21:46:15 -08001040 if (info->underflow[i] &&
1041 (e < (struct ipt_entry *)(base + info->underflow[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001042 newinfo->underflow[i] -= off;
1043 }
1044 return 0;
1045}
1046
Eric Dumazet259d4e42007-12-04 23:24:56 -08001047static int compat_table_info(const struct xt_table_info *info,
Patrick McHardy4b478242007-12-17 21:46:15 -08001048 struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001049{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001050 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001051 void *loc_cpu_entry;
Jan Engelhardt05595182010-02-24 18:33:43 +01001052 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001053
1054 if (!newinfo || !info)
1055 return -EINVAL;
1056
Eric Dumazet259d4e42007-12-04 23:24:56 -08001057 /* we dont care about newinfo->entries[] */
1058 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1059 newinfo->initial_entries = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001060 loc_cpu_entry = info->entries[raw_smp_processor_id()];
Eric Dumazet255d0dc2010-12-18 18:35:15 +01001061 xt_compat_init_offsets(AF_INET, info->number);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001062 xt_entry_foreach(iter, loc_cpu_entry, info->size) {
1063 ret = compat_calc_entry(iter, info, loc_cpu_entry, newinfo);
1064 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001065 return ret;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001066 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001067 return 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001068}
1069#endif
1070
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001071static int get_info(struct net *net, void __user *user,
1072 const int *len, int compat)
Dmitry Mishin27229712006-04-01 02:25:19 -08001073{
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001074 char name[XT_TABLE_MAXNAMELEN];
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001075 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001076 int ret;
1077
1078 if (*len != sizeof(struct ipt_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001079 duprintf("length %u != %zu\n", *len,
1080 sizeof(struct ipt_getinfo));
Dmitry Mishin27229712006-04-01 02:25:19 -08001081 return -EINVAL;
1082 }
1083
1084 if (copy_from_user(name, user, sizeof(name)) != 0)
1085 return -EFAULT;
1086
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001087 name[XT_TABLE_MAXNAMELEN-1] = '\0';
Dmitry Mishin27229712006-04-01 02:25:19 -08001088#ifdef CONFIG_COMPAT
1089 if (compat)
1090 xt_compat_lock(AF_INET);
1091#endif
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001092 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Patrick McHardy4b478242007-12-17 21:46:15 -08001093 "iptable_%s", name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001094 if (t && !IS_ERR(t)) {
1095 struct ipt_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001096 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001097#ifdef CONFIG_COMPAT
Alexey Dobriyan14c7dbe2010-02-08 11:17:43 -08001098 struct xt_table_info tmp;
1099
Dmitry Mishin27229712006-04-01 02:25:19 -08001100 if (compat) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001101 ret = compat_table_info(private, &tmp);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001102 xt_compat_flush_offsets(AF_INET);
Patrick McHardy4b478242007-12-17 21:46:15 -08001103 private = &tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001104 }
1105#endif
Vasiliy Kulikovb5f15ac2010-11-03 08:45:06 +01001106 memset(&info, 0, sizeof(info));
Dmitry Mishin27229712006-04-01 02:25:19 -08001107 info.valid_hooks = t->valid_hooks;
1108 memcpy(info.hook_entry, private->hook_entry,
Patrick McHardy4b478242007-12-17 21:46:15 -08001109 sizeof(info.hook_entry));
Dmitry Mishin27229712006-04-01 02:25:19 -08001110 memcpy(info.underflow, private->underflow,
Patrick McHardy4b478242007-12-17 21:46:15 -08001111 sizeof(info.underflow));
Dmitry Mishin27229712006-04-01 02:25:19 -08001112 info.num_entries = private->number;
1113 info.size = private->size;
1114 strcpy(info.name, name);
1115
1116 if (copy_to_user(user, &info, *len) != 0)
1117 ret = -EFAULT;
1118 else
1119 ret = 0;
1120
1121 xt_table_unlock(t);
1122 module_put(t->me);
1123 } else
1124 ret = t ? PTR_ERR(t) : -ENOENT;
1125#ifdef CONFIG_COMPAT
1126 if (compat)
1127 xt_compat_unlock(AF_INET);
1128#endif
1129 return ret;
1130}
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001133get_entries(struct net *net, struct ipt_get_entries __user *uptr,
1134 const int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
1136 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001137 struct ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001138 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Dmitry Mishin27229712006-04-01 02:25:19 -08001140 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001141 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001142 return -EINVAL;
1143 }
1144 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1145 return -EFAULT;
1146 if (*len != sizeof(struct ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001147 duprintf("get_entries: %u != %zu\n",
1148 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001149 return -EINVAL;
1150 }
1151
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001152 t = xt_find_table_lock(net, AF_INET, get.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001154 const struct xt_table_info *private = t->private;
Patrick McHardy9c547952007-12-17 21:52:00 -08001155 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001156 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001157 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 t, uptr->entrytable);
1159 else {
1160 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001161 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001162 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
1164 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001165 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 } else
1167 ret = t ? PTR_ERR(t) : -ENOENT;
1168
1169 return ret;
1170}
1171
1172static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001173__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001174 struct xt_table_info *newinfo, unsigned int num_counters,
1175 void __user *counters_ptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001176{
1177 int ret;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001178 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001179 struct xt_table_info *oldinfo;
1180 struct xt_counters *counters;
1181 void *loc_cpu_old_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001182 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001183
1184 ret = 0;
Eric Dumazet83723d62011-01-10 20:11:38 +01001185 counters = vzalloc(num_counters * sizeof(struct xt_counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001186 if (!counters) {
1187 ret = -ENOMEM;
1188 goto out;
1189 }
1190
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001191 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Dmitry Mishin27229712006-04-01 02:25:19 -08001192 "iptable_%s", name);
1193 if (!t || IS_ERR(t)) {
1194 ret = t ? PTR_ERR(t) : -ENOENT;
1195 goto free_newinfo_counters_untrans;
1196 }
1197
1198 /* You lied! */
1199 if (valid_hooks != t->valid_hooks) {
1200 duprintf("Valid hook crap: %08X vs %08X\n",
1201 valid_hooks, t->valid_hooks);
1202 ret = -EINVAL;
1203 goto put_module;
1204 }
1205
1206 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1207 if (!oldinfo)
1208 goto put_module;
1209
1210 /* Update module usage count based on number of rules */
1211 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1212 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1213 if ((oldinfo->number > oldinfo->initial_entries) ||
1214 (newinfo->number <= oldinfo->initial_entries))
1215 module_put(t->me);
1216 if ((oldinfo->number > oldinfo->initial_entries) &&
1217 (newinfo->number <= oldinfo->initial_entries))
1218 module_put(t->me);
1219
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001220 /* Get the old counters, and synchronize with replace */
Dmitry Mishin27229712006-04-01 02:25:19 -08001221 get_counters(oldinfo, counters);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001222
Dmitry Mishin27229712006-04-01 02:25:19 -08001223 /* Decrease module usage counts and free resource */
1224 loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001225 xt_entry_foreach(iter, loc_cpu_old_entry, oldinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001226 cleanup_entry(iter, net);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001227
Dmitry Mishin27229712006-04-01 02:25:19 -08001228 xt_free_table_info(oldinfo);
1229 if (copy_to_user(counters_ptr, counters,
1230 sizeof(struct xt_counters) * num_counters) != 0)
1231 ret = -EFAULT;
1232 vfree(counters);
1233 xt_table_unlock(t);
1234 return ret;
1235
1236 put_module:
1237 module_put(t->me);
1238 xt_table_unlock(t);
1239 free_newinfo_counters_untrans:
1240 vfree(counters);
1241 out:
1242 return ret;
1243}
1244
1245static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001246do_replace(struct net *net, const void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
1248 int ret;
1249 struct ipt_replace tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001250 struct xt_table_info *newinfo;
1251 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001252 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
1254 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1255 return -EFAULT;
1256
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001257 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001258 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1259 return -ENOMEM;
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01001260 tmp.name[sizeof(tmp.name)-1] = 0;
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001261
Harald Welte2e4e6a12006-01-12 13:30:04 -08001262 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 if (!newinfo)
1264 return -ENOMEM;
1265
Patrick McHardy9c547952007-12-17 21:52:00 -08001266 /* choose the copy that is on our node/cpu */
Eric Dumazet31836062005-12-13 23:13:48 -08001267 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1268 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 tmp.size) != 0) {
1270 ret = -EFAULT;
1271 goto free_newinfo;
1272 }
1273
Jan Engelhardt0f234212010-02-24 18:36:04 +01001274 ret = translate_table(net, newinfo, loc_cpu_entry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 if (ret != 0)
Dmitry Mishin27229712006-04-01 02:25:19 -08001276 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01001278 duprintf("Translated table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001280 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001281 tmp.num_counters, tmp.counters);
Dmitry Mishin27229712006-04-01 02:25:19 -08001282 if (ret)
1283 goto free_newinfo_untrans;
1284 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Dmitry Mishin27229712006-04-01 02:25:19 -08001286 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001287 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001288 cleanup_entry(iter, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001290 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 return ret;
1292}
1293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001295do_add_counters(struct net *net, const void __user *user,
1296 unsigned int len, int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297{
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001298 unsigned int i, curcpu;
Dmitry Mishin27229712006-04-01 02:25:19 -08001299 struct xt_counters_info tmp;
1300 struct xt_counters *paddc;
1301 unsigned int num_counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001302 const char *name;
Dmitry Mishin27229712006-04-01 02:25:19 -08001303 int size;
1304 void *ptmp;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001305 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001306 const struct xt_table_info *private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 int ret = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001308 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001309 struct ipt_entry *iter;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001310 unsigned int addend;
Dmitry Mishin27229712006-04-01 02:25:19 -08001311#ifdef CONFIG_COMPAT
1312 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Dmitry Mishin27229712006-04-01 02:25:19 -08001314 if (compat) {
1315 ptmp = &compat_tmp;
1316 size = sizeof(struct compat_xt_counters_info);
1317 } else
1318#endif
1319 {
1320 ptmp = &tmp;
1321 size = sizeof(struct xt_counters_info);
1322 }
1323
1324 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 return -EFAULT;
1326
Dmitry Mishin27229712006-04-01 02:25:19 -08001327#ifdef CONFIG_COMPAT
1328 if (compat) {
1329 num_counters = compat_tmp.num_counters;
1330 name = compat_tmp.name;
1331 } else
1332#endif
1333 {
1334 num_counters = tmp.num_counters;
1335 name = tmp.name;
1336 }
1337
1338 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 return -EINVAL;
1340
Eric Dumazete12f8e22010-06-04 13:31:29 +02001341 paddc = vmalloc(len - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 if (!paddc)
1343 return -ENOMEM;
1344
Dmitry Mishin27229712006-04-01 02:25:19 -08001345 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 ret = -EFAULT;
1347 goto free;
1348 }
1349
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001350 t = xt_find_table_lock(net, AF_INET, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 if (!t || IS_ERR(t)) {
1352 ret = t ? PTR_ERR(t) : -ENOENT;
1353 goto free;
1354 }
1355
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001356 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001357 private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001358 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 ret = -EINVAL;
1360 goto unlock_up_free;
1361 }
1362
1363 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001364 /* Choose the copy that is on our node */
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001365 curcpu = smp_processor_id();
1366 loc_cpu_entry = private->entries[curcpu];
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001367 addend = xt_write_recseq_begin();
Jan Engelhardt05595182010-02-24 18:33:43 +01001368 xt_entry_foreach(iter, loc_cpu_entry, private->size) {
1369 ADD_COUNTER(iter->counters, paddc[i].bcnt, paddc[i].pcnt);
1370 ++i;
1371 }
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001372 xt_write_recseq_end(addend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 unlock_up_free:
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001374 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001375 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 module_put(t->me);
1377 free:
1378 vfree(paddc);
1379
1380 return ret;
1381}
1382
Dmitry Mishin27229712006-04-01 02:25:19 -08001383#ifdef CONFIG_COMPAT
1384struct compat_ipt_replace {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001385 char name[XT_TABLE_MAXNAMELEN];
Dmitry Mishin27229712006-04-01 02:25:19 -08001386 u32 valid_hooks;
1387 u32 num_entries;
1388 u32 size;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001389 u32 hook_entry[NF_INET_NUMHOOKS];
1390 u32 underflow[NF_INET_NUMHOOKS];
Dmitry Mishin27229712006-04-01 02:25:19 -08001391 u32 num_counters;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001392 compat_uptr_t counters; /* struct xt_counters * */
Dmitry Mishin27229712006-04-01 02:25:19 -08001393 struct compat_ipt_entry entries[0];
1394};
1395
Patrick McHardya18aa312007-12-12 10:35:16 -08001396static int
1397compat_copy_entry_to_user(struct ipt_entry *e, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001398 unsigned int *size, struct xt_counters *counters,
Jan Engelhardt05595182010-02-24 18:33:43 +01001399 unsigned int i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001400{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001401 struct xt_entry_target *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001402 struct compat_ipt_entry __user *ce;
1403 u_int16_t target_offset, next_offset;
1404 compat_uint_t origsize;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001405 const struct xt_entry_match *ematch;
1406 int ret = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001407
Dmitry Mishin27229712006-04-01 02:25:19 -08001408 origsize = *size;
1409 ce = (struct compat_ipt_entry __user *)*dstptr;
Jan Engelhardt05595182010-02-24 18:33:43 +01001410 if (copy_to_user(ce, e, sizeof(struct ipt_entry)) != 0 ||
1411 copy_to_user(&ce->counters, &counters[i],
1412 sizeof(counters[i])) != 0)
1413 return -EFAULT;
Patrick McHardya18aa312007-12-12 10:35:16 -08001414
Dmitry Mishin27229712006-04-01 02:25:19 -08001415 *dstptr += sizeof(struct compat_ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001416 *size -= sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1417
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001418 xt_ematch_foreach(ematch, e) {
1419 ret = xt_compat_match_to_user(ematch, dstptr, size);
1420 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001421 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001422 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001423 target_offset = e->target_offset - (origsize - *size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001424 t = ipt_get_target(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001425 ret = xt_compat_target_to_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001426 if (ret)
Jan Engelhardt05595182010-02-24 18:33:43 +01001427 return ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001428 next_offset = e->next_offset - (origsize - *size);
Jan Engelhardt05595182010-02-24 18:33:43 +01001429 if (put_user(target_offset, &ce->target_offset) != 0 ||
1430 put_user(next_offset, &ce->next_offset) != 0)
1431 return -EFAULT;
Dmitry Mishin27229712006-04-01 02:25:19 -08001432 return 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001433}
1434
Denys Vlasenko022748a2008-01-14 23:44:05 -08001435static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001436compat_find_calc_match(struct xt_entry_match *m,
Patrick McHardy4b478242007-12-17 21:46:15 -08001437 const char *name,
1438 const struct ipt_ip *ip,
1439 unsigned int hookmask,
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001440 int *size)
Dmitry Mishin27229712006-04-01 02:25:19 -08001441{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001442 struct xt_match *match;
Dmitry Mishin27229712006-04-01 02:25:19 -08001443
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001444 match = xt_request_find_match(NFPROTO_IPV4, m->u.user.name,
1445 m->u.user.revision);
1446 if (IS_ERR(match)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001447 duprintf("compat_check_calc_match: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001448 m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001449 return PTR_ERR(match);
Dmitry Mishin27229712006-04-01 02:25:19 -08001450 }
1451 m->u.kernel.match = match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001452 *size += xt_compat_match_offset(match);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001453 return 0;
1454}
1455
Jan Engelhardt05595182010-02-24 18:33:43 +01001456static void compat_release_entry(struct compat_ipt_entry *e)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001457{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001458 struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001459 struct xt_entry_match *ematch;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001460
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001461 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001462 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001463 module_put(ematch->u.kernel.match->me);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001464 t = compat_ipt_get_target(e);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001465 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001466}
1467
Denys Vlasenko022748a2008-01-14 23:44:05 -08001468static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001469check_compat_entry_size_and_hooks(struct compat_ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001470 struct xt_table_info *newinfo,
1471 unsigned int *size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001472 const unsigned char *base,
1473 const unsigned char *limit,
1474 const unsigned int *hook_entries,
1475 const unsigned int *underflows,
Patrick McHardy4b478242007-12-17 21:46:15 -08001476 const char *name)
Dmitry Mishin27229712006-04-01 02:25:19 -08001477{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001478 struct xt_entry_match *ematch;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001479 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001480 struct xt_target *target;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001481 unsigned int entry_offset;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001482 unsigned int j;
1483 int ret, off, h;
Dmitry Mishin27229712006-04-01 02:25:19 -08001484
1485 duprintf("check_compat_entry_size_and_hooks %p\n", e);
Joe Perches3666ed12009-11-23 23:17:06 +01001486 if ((unsigned long)e % __alignof__(struct compat_ipt_entry) != 0 ||
1487 (unsigned char *)e + sizeof(struct compat_ipt_entry) >= limit) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001488 duprintf("Bad offset %p, limit = %p\n", e, limit);
1489 return -EINVAL;
1490 }
1491
1492 if (e->next_offset < sizeof(struct compat_ipt_entry) +
Patrick McHardy4b478242007-12-17 21:46:15 -08001493 sizeof(struct compat_xt_entry_target)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001494 duprintf("checking: element %p size %u\n",
1495 e, e->next_offset);
1496 return -EINVAL;
1497 }
1498
Patrick McHardy73cd5982007-12-17 21:47:32 -08001499 /* For purposes of check_entry casting the compat entry is fine */
1500 ret = check_entry((struct ipt_entry *)e, name);
Dmitry Mishina96be242006-12-12 00:29:26 -08001501 if (ret)
1502 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -08001503
Patrick McHardy30c08c42007-12-17 21:47:14 -08001504 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001505 entry_offset = (void *)e - (void *)base;
1506 j = 0;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001507 xt_ematch_foreach(ematch, e) {
1508 ret = compat_find_calc_match(ematch, name,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001509 &e->ip, e->comefrom, &off);
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001510 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001511 goto release_matches;
1512 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001513 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001514
Patrick McHardy73cd5982007-12-17 21:47:32 -08001515 t = compat_ipt_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001516 target = xt_request_find_target(NFPROTO_IPV4, t->u.user.name,
1517 t->u.user.revision);
1518 if (IS_ERR(target)) {
Dmitry Mishina96be242006-12-12 00:29:26 -08001519 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001520 t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001521 ret = PTR_ERR(target);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001522 goto release_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001523 }
1524 t->u.kernel.target = target;
1525
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001526 off += xt_compat_target_offset(target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001527 *size += off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001528 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001529 if (ret)
1530 goto out;
1531
1532 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001533 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001534 if ((unsigned char *)e - base == hook_entries[h])
1535 newinfo->hook_entry[h] = hook_entries[h];
1536 if ((unsigned char *)e - base == underflows[h])
1537 newinfo->underflow[h] = underflows[h];
1538 }
1539
1540 /* Clear counters and comefrom */
Patrick McHardy73cd5982007-12-17 21:47:32 -08001541 memset(&e->counters, 0, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001542 e->comefrom = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001543 return 0;
Patrick McHardybec71b12006-09-20 12:04:08 -07001544
Dmitry Mishin27229712006-04-01 02:25:19 -08001545out:
Patrick McHardybec71b12006-09-20 12:04:08 -07001546 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001547release_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001548 xt_ematch_foreach(ematch, e) {
1549 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001550 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001551 module_put(ematch->u.kernel.match->me);
1552 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001553 return ret;
1554}
1555
Patrick McHardy4b478242007-12-17 21:46:15 -08001556static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001557compat_copy_entry_from_user(struct compat_ipt_entry *e, void **dstptr,
Patrick McHardy4b478242007-12-17 21:46:15 -08001558 unsigned int *size, const char *name,
1559 struct xt_table_info *newinfo, unsigned char *base)
Dmitry Mishin27229712006-04-01 02:25:19 -08001560{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001561 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001562 struct xt_target *target;
Dmitry Mishin27229712006-04-01 02:25:19 -08001563 struct ipt_entry *de;
1564 unsigned int origsize;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001565 int ret, h;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001566 struct xt_entry_match *ematch;
Dmitry Mishin27229712006-04-01 02:25:19 -08001567
1568 ret = 0;
1569 origsize = *size;
1570 de = (struct ipt_entry *)*dstptr;
1571 memcpy(de, e, sizeof(struct ipt_entry));
Patrick McHardy73cd5982007-12-17 21:47:32 -08001572 memcpy(&de->counters, &e->counters, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001573
Patrick McHardy73cd5982007-12-17 21:47:32 -08001574 *dstptr += sizeof(struct ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001575 *size += sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1576
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001577 xt_ematch_foreach(ematch, e) {
1578 ret = xt_compat_match_from_user(ematch, dstptr, size);
1579 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001580 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001581 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001582 de->target_offset = e->target_offset - (origsize - *size);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001583 t = compat_ipt_get_target(e);
Dmitry Mishin27229712006-04-01 02:25:19 -08001584 target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001585 xt_compat_target_from_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001586
1587 de->next_offset = e->next_offset - (origsize - *size);
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001588 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001589 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1590 newinfo->hook_entry[h] -= origsize - *size;
1591 if ((unsigned char *)de - base < newinfo->underflow[h])
1592 newinfo->underflow[h] -= origsize - *size;
1593 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001594 return ret;
1595}
Dmitry Mishin27229712006-04-01 02:25:19 -08001596
Denys Vlasenko022748a2008-01-14 23:44:05 -08001597static int
Jan Engelhardt05595182010-02-24 18:33:43 +01001598compat_check_entry(struct ipt_entry *e, struct net *net, const char *name)
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001599{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001600 struct xt_entry_match *ematch;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001601 struct xt_mtchk_param mtpar;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001602 unsigned int j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001603 int ret = 0;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001604
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001605 j = 0;
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001606 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001607 mtpar.table = name;
1608 mtpar.entryinfo = &e->ip;
1609 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +02001610 mtpar.family = NFPROTO_IPV4;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001611 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001612 ret = check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001613 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001614 goto cleanup_matches;
1615 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001616 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001617
Patrick McHardyadd67462010-02-03 13:45:12 +01001618 ret = check_target(e, net, name);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001619 if (ret)
1620 goto cleanup_matches;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001621 return 0;
1622
1623 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001624 xt_ematch_foreach(ematch, e) {
1625 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001626 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001627 cleanup_match(ematch, net);
1628 }
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001629 return ret;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001630}
1631
Dmitry Mishin27229712006-04-01 02:25:19 -08001632static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001633translate_compat_table(struct net *net,
1634 const char *name,
Patrick McHardy4b478242007-12-17 21:46:15 -08001635 unsigned int valid_hooks,
1636 struct xt_table_info **pinfo,
1637 void **pentry0,
1638 unsigned int total_size,
1639 unsigned int number,
1640 unsigned int *hook_entries,
1641 unsigned int *underflows)
Dmitry Mishin27229712006-04-01 02:25:19 -08001642{
Dmitry Mishin920b8682006-10-30 15:14:27 -08001643 unsigned int i, j;
Dmitry Mishin27229712006-04-01 02:25:19 -08001644 struct xt_table_info *newinfo, *info;
1645 void *pos, *entry0, *entry1;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001646 struct compat_ipt_entry *iter0;
1647 struct ipt_entry *iter1;
Dmitry Mishin27229712006-04-01 02:25:19 -08001648 unsigned int size;
Jan Engelhardt05595182010-02-24 18:33:43 +01001649 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001650
1651 info = *pinfo;
1652 entry0 = *pentry0;
1653 size = total_size;
1654 info->number = number;
1655
1656 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001657 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001658 info->hook_entry[i] = 0xFFFFFFFF;
1659 info->underflow[i] = 0xFFFFFFFF;
1660 }
1661
1662 duprintf("translate_compat_table: size %u\n", info->size);
Dmitry Mishin920b8682006-10-30 15:14:27 -08001663 j = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001664 xt_compat_lock(AF_INET);
Eric Dumazet255d0dc2010-12-18 18:35:15 +01001665 xt_compat_init_offsets(AF_INET, number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001666 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001667 xt_entry_foreach(iter0, entry0, total_size) {
1668 ret = check_compat_entry_size_and_hooks(iter0, info, &size,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001669 entry0,
1670 entry0 + total_size,
1671 hook_entries,
1672 underflows,
1673 name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001674 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001675 goto out_unlock;
1676 ++j;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001677 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001678
1679 ret = -EINVAL;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001680 if (j != number) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001681 duprintf("translate_compat_table: %u not %u entries\n",
Dmitry Mishin920b8682006-10-30 15:14:27 -08001682 j, number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001683 goto out_unlock;
1684 }
1685
1686 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001687 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001688 /* Only hooks which are valid */
1689 if (!(valid_hooks & (1 << i)))
1690 continue;
1691 if (info->hook_entry[i] == 0xFFFFFFFF) {
1692 duprintf("Invalid hook entry %u %u\n",
1693 i, hook_entries[i]);
1694 goto out_unlock;
1695 }
1696 if (info->underflow[i] == 0xFFFFFFFF) {
1697 duprintf("Invalid underflow %u %u\n",
1698 i, underflows[i]);
1699 goto out_unlock;
1700 }
1701 }
1702
1703 ret = -ENOMEM;
1704 newinfo = xt_alloc_table_info(size);
1705 if (!newinfo)
1706 goto out_unlock;
1707
1708 newinfo->number = number;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001709 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001710 newinfo->hook_entry[i] = info->hook_entry[i];
1711 newinfo->underflow[i] = info->underflow[i];
1712 }
1713 entry1 = newinfo->entries[raw_smp_processor_id()];
1714 pos = entry1;
Patrick McHardy4b478242007-12-17 21:46:15 -08001715 size = total_size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001716 xt_entry_foreach(iter0, entry0, total_size) {
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001717 ret = compat_copy_entry_from_user(iter0, &pos, &size,
1718 name, newinfo, entry1);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001719 if (ret != 0)
1720 break;
1721 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001722 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001723 xt_compat_unlock(AF_INET);
1724 if (ret)
1725 goto free_newinfo;
1726
1727 ret = -ELOOP;
1728 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1729 goto free_newinfo;
1730
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001731 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001732 xt_entry_foreach(iter1, entry1, newinfo->size) {
Jan Engelhardt05595182010-02-24 18:33:43 +01001733 ret = compat_check_entry(iter1, net, name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001734 if (ret != 0)
1735 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001736 ++i;
Florian Westphalcca77b72010-08-23 14:41:22 -07001737 if (strcmp(ipt_get_target(iter1)->u.user.name,
1738 XT_ERROR_TARGET) == 0)
1739 ++newinfo->stacksize;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001740 }
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001741 if (ret) {
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001742 /*
1743 * The first i matches need cleanup_entry (calls ->destroy)
1744 * because they had called ->check already. The other j-i
1745 * entries need only release.
1746 */
1747 int skip = i;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001748 j -= i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001749 xt_entry_foreach(iter0, entry0, newinfo->size) {
1750 if (skip-- > 0)
1751 continue;
Jan Engelhardt05595182010-02-24 18:33:43 +01001752 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001753 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001754 compat_release_entry(iter0);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001755 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001756 xt_entry_foreach(iter1, entry1, newinfo->size) {
1757 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001758 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001759 cleanup_entry(iter1, net);
1760 }
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001761 xt_free_table_info(newinfo);
1762 return ret;
1763 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001764
Dmitry Mishin27229712006-04-01 02:25:19 -08001765 /* And one copy for every other CPU */
Andrew Mortonfb1bb342006-06-25 05:46:43 -07001766 for_each_possible_cpu(i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001767 if (newinfo->entries[i] && newinfo->entries[i] != entry1)
1768 memcpy(newinfo->entries[i], entry1, newinfo->size);
1769
1770 *pinfo = newinfo;
1771 *pentry0 = entry1;
1772 xt_free_table_info(info);
1773 return 0;
1774
1775free_newinfo:
1776 xt_free_table_info(newinfo);
1777out:
Jan Engelhardt05595182010-02-24 18:33:43 +01001778 xt_entry_foreach(iter0, entry0, total_size) {
1779 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001780 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001781 compat_release_entry(iter0);
1782 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001783 return ret;
1784out_unlock:
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001785 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001786 xt_compat_unlock(AF_INET);
1787 goto out;
1788}
1789
1790static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001791compat_do_replace(struct net *net, void __user *user, unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001792{
1793 int ret;
1794 struct compat_ipt_replace tmp;
1795 struct xt_table_info *newinfo;
1796 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001797 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001798
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;
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01001807 tmp.name[sizeof(tmp.name)-1] = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001808
1809 newinfo = xt_alloc_table_info(tmp.size);
1810 if (!newinfo)
1811 return -ENOMEM;
1812
Patrick McHardy9c547952007-12-17 21:52:00 -08001813 /* choose the copy that is on our node/cpu */
Dmitry Mishin27229712006-04-01 02:25:19 -08001814 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1815 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1816 tmp.size) != 0) {
1817 ret = -EFAULT;
1818 goto free_newinfo;
1819 }
1820
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001821 ret = translate_compat_table(net, tmp.name, tmp.valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001822 &newinfo, &loc_cpu_entry, tmp.size,
1823 tmp.num_entries, tmp.hook_entry,
1824 tmp.underflow);
Dmitry Mishin27229712006-04-01 02:25:19 -08001825 if (ret != 0)
1826 goto free_newinfo;
1827
1828 duprintf("compat_do_replace: Translated table\n");
1829
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001830 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001831 tmp.num_counters, compat_ptr(tmp.counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001832 if (ret)
1833 goto free_newinfo_untrans;
1834 return 0;
1835
1836 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001837 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001838 cleanup_entry(iter, net);
Dmitry Mishin27229712006-04-01 02:25:19 -08001839 free_newinfo:
1840 xt_free_table_info(newinfo);
1841 return ret;
1842}
1843
1844static int
1845compat_do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user,
Patrick McHardy4b478242007-12-17 21:46:15 -08001846 unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001847{
1848 int ret;
1849
1850 if (!capable(CAP_NET_ADMIN))
1851 return -EPERM;
1852
1853 switch (cmd) {
1854 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001855 ret = compat_do_replace(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001856 break;
1857
1858 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001859 ret = do_add_counters(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001860 break;
1861
1862 default:
1863 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1864 ret = -EINVAL;
1865 }
1866
1867 return ret;
1868}
1869
Patrick McHardy4b478242007-12-17 21:46:15 -08001870struct compat_ipt_get_entries {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001871 char name[XT_TABLE_MAXNAMELEN];
Dmitry Mishin27229712006-04-01 02:25:19 -08001872 compat_uint_t size;
1873 struct compat_ipt_entry entrytable[0];
1874};
1875
Patrick McHardy4b478242007-12-17 21:46:15 -08001876static int
1877compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1878 void __user *userptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001879{
Dmitry Mishin27229712006-04-01 02:25:19 -08001880 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001881 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001882 void __user *pos;
1883 unsigned int size;
1884 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001885 const void *loc_cpu_entry;
Patrick McHardya18aa312007-12-12 10:35:16 -08001886 unsigned int i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001887 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001888
1889 counters = alloc_counters(table);
1890 if (IS_ERR(counters))
1891 return PTR_ERR(counters);
1892
1893 /* choose the copy that is on our node/cpu, ...
1894 * This choice is lazy (because current thread is
1895 * allowed to migrate to another cpu)
1896 */
1897 loc_cpu_entry = private->entries[raw_smp_processor_id()];
1898 pos = userptr;
1899 size = total_size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001900 xt_entry_foreach(iter, loc_cpu_entry, total_size) {
1901 ret = compat_copy_entry_to_user(iter, &pos,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001902 &size, counters, i++);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001903 if (ret != 0)
1904 break;
1905 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001906
Dmitry Mishin27229712006-04-01 02:25:19 -08001907 vfree(counters);
1908 return ret;
1909}
1910
1911static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001912compat_get_entries(struct net *net, struct compat_ipt_get_entries __user *uptr,
1913 int *len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001914{
1915 int ret;
1916 struct compat_ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001917 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001918
Dmitry Mishin27229712006-04-01 02:25:19 -08001919 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001920 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001921 return -EINVAL;
1922 }
1923
1924 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1925 return -EFAULT;
1926
1927 if (*len != sizeof(struct compat_ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001928 duprintf("compat_get_entries: %u != %zu\n",
1929 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001930 return -EINVAL;
1931 }
1932
1933 xt_compat_lock(AF_INET);
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001934 t = xt_find_table_lock(net, AF_INET, get.name);
Dmitry Mishin27229712006-04-01 02:25:19 -08001935 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001936 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001937 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08001938 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001939 ret = compat_table_info(private, &info);
1940 if (!ret && get.size == info.size) {
1941 ret = compat_copy_entries_to_user(private->size,
Patrick McHardy4b478242007-12-17 21:46:15 -08001942 t, uptr->entrytable);
Dmitry Mishin27229712006-04-01 02:25:19 -08001943 } else if (!ret) {
1944 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001945 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001946 ret = -EAGAIN;
Dmitry Mishin27229712006-04-01 02:25:19 -08001947 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001948 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001949 module_put(t->me);
1950 xt_table_unlock(t);
1951 } else
1952 ret = t ? PTR_ERR(t) : -ENOENT;
1953
1954 xt_compat_unlock(AF_INET);
1955 return ret;
1956}
1957
Patrick McHardy79030ed2006-09-20 12:05:08 -07001958static int do_ipt_get_ctl(struct sock *, int, void __user *, int *);
1959
Dmitry Mishin27229712006-04-01 02:25:19 -08001960static int
1961compat_do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1962{
1963 int ret;
1964
Björn Steinbrink82fac052006-10-20 00:21:10 -07001965 if (!capable(CAP_NET_ADMIN))
1966 return -EPERM;
1967
Dmitry Mishin27229712006-04-01 02:25:19 -08001968 switch (cmd) {
1969 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001970 ret = get_info(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001971 break;
1972 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001973 ret = compat_get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001974 break;
1975 default:
Patrick McHardy79030ed2006-09-20 12:05:08 -07001976 ret = do_ipt_get_ctl(sk, cmd, user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001977 }
1978 return ret;
1979}
1980#endif
1981
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982static int
Patrick McHardy9c547952007-12-17 21:52:00 -08001983do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984{
1985 int ret;
1986
1987 if (!capable(CAP_NET_ADMIN))
1988 return -EPERM;
1989
1990 switch (cmd) {
1991 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001992 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 break;
1994
1995 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001996 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 break;
1998
1999 default:
2000 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
2001 ret = -EINVAL;
2002 }
2003
2004 return ret;
2005}
2006
2007static int
2008do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2009{
2010 int ret;
2011
2012 if (!capable(CAP_NET_ADMIN))
2013 return -EPERM;
2014
2015 switch (cmd) {
Dmitry Mishin27229712006-04-01 02:25:19 -08002016 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002017 ret = get_info(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 break;
Dmitry Mishin27229712006-04-01 02:25:19 -08002019
2020 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002021 ret = get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08002022 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
2024 case IPT_SO_GET_REVISION_MATCH:
2025 case IPT_SO_GET_REVISION_TARGET: {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02002026 struct xt_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002027 int target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
2029 if (*len != sizeof(rev)) {
2030 ret = -EINVAL;
2031 break;
2032 }
2033 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2034 ret = -EFAULT;
2035 break;
2036 }
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01002037 rev.name[sizeof(rev.name)-1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
2039 if (cmd == IPT_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08002040 target = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08002042 target = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
Harald Welte2e4e6a12006-01-12 13:30:04 -08002044 try_then_request_module(xt_find_revision(AF_INET, rev.name,
2045 rev.revision,
2046 target, &ret),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 "ipt_%s", rev.name);
2048 break;
2049 }
2050
2051 default:
2052 duprintf("do_ipt_get_ctl: unknown request %i\n", cmd);
2053 ret = -EINVAL;
2054 }
2055
2056 return ret;
2057}
2058
Jan Engelhardt35aad0f2009-08-24 14:56:30 +02002059struct xt_table *ipt_register_table(struct net *net,
2060 const struct xt_table *table,
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002061 const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062{
2063 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002064 struct xt_table_info *newinfo;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +02002065 struct xt_table_info bootstrap = {0};
Eric Dumazet31836062005-12-13 23:13:48 -08002066 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08002067 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Harald Welte2e4e6a12006-01-12 13:30:04 -08002069 newinfo = xt_alloc_table_info(repl->size);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002070 if (!newinfo) {
2071 ret = -ENOMEM;
2072 goto out;
2073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Patrick McHardy9c547952007-12-17 21:52:00 -08002075 /* choose the copy on our node/cpu, but dont care about preemption */
Eric Dumazet31836062005-12-13 23:13:48 -08002076 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
2077 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Jan Engelhardt0f234212010-02-24 18:36:04 +01002079 ret = translate_table(net, newinfo, loc_cpu_entry, repl);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002080 if (ret != 0)
2081 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002083 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08002084 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002085 ret = PTR_ERR(new_table);
2086 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 }
2088
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002089 return new_table;
2090
2091out_free:
2092 xt_free_table_info(newinfo);
2093out:
2094 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095}
2096
Alexey Dobriyanf54e9362010-01-18 08:25:47 +01002097void ipt_unregister_table(struct net *net, struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098{
Harald Welte2e4e6a12006-01-12 13:30:04 -08002099 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08002100 void *loc_cpu_entry;
Alexey Dobriyandf200962008-01-31 04:05:34 -08002101 struct module *table_owner = table->me;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01002102 struct ipt_entry *iter;
Eric Dumazet31836062005-12-13 23:13:48 -08002103
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002104 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
2106 /* Decrease module usage counts and free resources */
Harald Welte2e4e6a12006-01-12 13:30:04 -08002107 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01002108 xt_entry_foreach(iter, loc_cpu_entry, private->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01002109 cleanup_entry(iter, net);
Alexey Dobriyandf200962008-01-31 04:05:34 -08002110 if (private->number > private->initial_entries)
2111 module_put(table_owner);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002112 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113}
2114
2115/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002116static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117icmp_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2118 u_int8_t type, u_int8_t code,
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002119 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120{
Patrick McHardy9c547952007-12-17 21:52:00 -08002121 return ((test_type == 0xFF) ||
2122 (type == test_type && code >= min_code && code <= max_code))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 ^ invert;
2124}
2125
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002126static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +02002127icmp_match(const struct sk_buff *skb, struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
Jan Engelhardt5452e422008-04-14 11:15:35 +02002129 const struct icmphdr *ic;
2130 struct icmphdr _icmph;
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002131 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133 /* Must not be a fragment. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002134 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002135 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002137 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 if (ic == NULL) {
2139 /* We've been asked to examine this packet, and we
2140 * can't. Hence, no choice but to drop.
2141 */
2142 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtb4ba2612009-07-07 20:54:30 +02002143 par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002144 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 }
2146
2147 return icmp_type_code_match(icmpinfo->type,
2148 icmpinfo->code[0],
2149 icmpinfo->code[1],
2150 ic->type, ic->code,
2151 !!(icmpinfo->invflags&IPT_ICMP_INV));
2152}
2153
Jan Engelhardtb0f38452010-03-19 17:16:42 +01002154static int icmp_checkentry(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002156 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002158 /* Must specify no unknown invflags */
Jan Engelhardtbd414ee2010-03-23 16:35:56 +01002159 return (icmpinfo->invflags & ~IPT_ICMP_INV) ? -EINVAL : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160}
2161
Jan Engelhardt45385062009-07-04 12:50:00 +02002162static struct xt_target ipt_builtin_tg[] __read_mostly = {
2163 {
Jan Engelhardt243bf6e2010-10-13 16:28:00 +02002164 .name = XT_STANDARD_TARGET,
Jan Engelhardt45385062009-07-04 12:50:00 +02002165 .targetsize = sizeof(int),
2166 .family = NFPROTO_IPV4,
Dmitry Mishin27229712006-04-01 02:25:19 -08002167#ifdef CONFIG_COMPAT
Jan Engelhardt45385062009-07-04 12:50:00 +02002168 .compatsize = sizeof(compat_int_t),
2169 .compat_from_user = compat_standard_from_user,
2170 .compat_to_user = compat_standard_to_user,
Dmitry Mishin27229712006-04-01 02:25:19 -08002171#endif
Jan Engelhardt45385062009-07-04 12:50:00 +02002172 },
2173 {
Jan Engelhardt243bf6e2010-10-13 16:28:00 +02002174 .name = XT_ERROR_TARGET,
Jan Engelhardt45385062009-07-04 12:50:00 +02002175 .target = ipt_error,
Jan Engelhardt12b00c22010-10-13 15:56:56 +02002176 .targetsize = XT_FUNCTION_MAXNAMELEN,
Jan Engelhardt45385062009-07-04 12:50:00 +02002177 .family = NFPROTO_IPV4,
2178 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179};
2180
2181static struct nf_sockopt_ops ipt_sockopts = {
2182 .pf = PF_INET,
2183 .set_optmin = IPT_BASE_CTL,
2184 .set_optmax = IPT_SO_SET_MAX+1,
2185 .set = do_ipt_set_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002186#ifdef CONFIG_COMPAT
2187 .compat_set = compat_do_ipt_set_ctl,
2188#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 .get_optmin = IPT_BASE_CTL,
2190 .get_optmax = IPT_SO_GET_MAX+1,
2191 .get = do_ipt_get_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002192#ifdef CONFIG_COMPAT
2193 .compat_get = compat_do_ipt_get_ctl,
2194#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002195 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196};
2197
Jan Engelhardt45385062009-07-04 12:50:00 +02002198static struct xt_match ipt_builtin_mt[] __read_mostly = {
2199 {
2200 .name = "icmp",
2201 .match = icmp_match,
2202 .matchsize = sizeof(struct ipt_icmp),
2203 .checkentry = icmp_checkentry,
2204 .proto = IPPROTO_ICMP,
2205 .family = NFPROTO_IPV4,
2206 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207};
2208
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002209static int __net_init ip_tables_net_init(struct net *net)
2210{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002211 return xt_proto_init(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002212}
2213
2214static void __net_exit ip_tables_net_exit(struct net *net)
2215{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002216 xt_proto_fini(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002217}
2218
2219static struct pernet_operations ip_tables_net_ops = {
2220 .init = ip_tables_net_init,
2221 .exit = ip_tables_net_exit,
2222};
2223
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002224static int __init ip_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225{
2226 int ret;
2227
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002228 ret = register_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002229 if (ret < 0)
2230 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002231
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002232 /* No one else will be downing sem now, so we won't sleep */
Jan Engelhardt45385062009-07-04 12:50:00 +02002233 ret = xt_register_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002234 if (ret < 0)
2235 goto err2;
Jan Engelhardt45385062009-07-04 12:50:00 +02002236 ret = xt_register_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002237 if (ret < 0)
2238 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
2240 /* Register setsockopt */
2241 ret = nf_register_sockopt(&ipt_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002242 if (ret < 0)
2243 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01002245 pr_info("(C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002247
2248err5:
Jan Engelhardt45385062009-07-04 12:50:00 +02002249 xt_unregister_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002250err4:
Jan Engelhardt45385062009-07-04 12:50:00 +02002251 xt_unregister_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002252err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002253 unregister_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002254err1:
2255 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256}
2257
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002258static void __exit ip_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259{
2260 nf_unregister_sockopt(&ipt_sockopts);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002261
Jan Engelhardt45385062009-07-04 12:50:00 +02002262 xt_unregister_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
2263 xt_unregister_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
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);