blob: cf5e82f39d3b87d7f8163320bffbc26af38d6f98 [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>
Patrick McHardyf229f6c2013-04-06 15:24:29 +02006 * Copyright (C) 2006-2010 Patrick McHardy <kaber@trash.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +020012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/cache.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080014#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/skbuff.h>
16#include <linux/kmod.h>
17#include <linux/vmalloc.h>
18#include <linux/netdevice.h>
19#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/icmp.h>
21#include <net/ip.h>
Dmitry Mishin27229712006-04-01 02:25:19 -080022#include <net/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/uaccess.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -080024#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/proc_fs.h>
26#include <linux/err.h>
David S. Millerc8923c62005-10-13 14:41:23 -070027#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Harald Welte2e4e6a12006-01-12 13:30:04 -080029#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/netfilter_ipv4/ip_tables.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080031#include <net/netfilter/nf_log.h>
Jan Engelhardte3eaa992009-06-17 22:14:54 +020032#include "../../netfilter/xt_repldata.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34MODULE_LICENSE("GPL");
35MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
36MODULE_DESCRIPTION("IPv4 packet filter");
37
38/*#define DEBUG_IP_FIREWALL*/
39/*#define DEBUG_ALLOW_ALL*/ /* Useful for remote debugging */
40/*#define DEBUG_IP_FIREWALL_USER*/
41
42#ifdef DEBUG_IP_FIREWALL
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010043#define dprintf(format, args...) pr_info(format , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#else
45#define dprintf(format, args...)
46#endif
47
48#ifdef DEBUG_IP_FIREWALL_USER
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010049#define duprintf(format, args...) pr_info(format , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#else
51#define duprintf(format, args...)
52#endif
53
54#ifdef CONFIG_NETFILTER_DEBUG
Stephen Hemmingeraf567602010-05-13 15:00:20 +020055#define IP_NF_ASSERT(x) WARN_ON(!(x))
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#else
57#define IP_NF_ASSERT(x)
58#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#if 0
61/* All the better to debug you with... */
62#define static
63#define inline
64#endif
65
Jan Engelhardte3eaa992009-06-17 22:14:54 +020066void *ipt_alloc_initial_table(const struct xt_table *info)
67{
68 return xt_alloc_initial_table(ipt, IPT);
69}
70EXPORT_SYMBOL_GPL(ipt_alloc_initial_table);
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/* Returns whether matches rule or not. */
Denys Vlasenko022748a2008-01-14 23:44:05 -080073/* Performance critical - called for every packet */
Patrick McHardy9c547952007-12-17 21:52:00 -080074static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -070075ip_packet_match(const struct iphdr *ip,
76 const char *indev,
77 const char *outdev,
78 const struct ipt_ip *ipinfo,
79 int isfrag)
80{
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 unsigned long ret;
82
Jan Engelhardte79ec502007-12-17 22:44:06 -080083#define FWINV(bool, invflg) ((bool) ^ !!(ipinfo->invflags & (invflg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 if (FWINV((ip->saddr&ipinfo->smsk.s_addr) != ipinfo->src.s_addr,
Joe Perches3666ed12009-11-23 23:17:06 +010086 IPT_INV_SRCIP) ||
87 FWINV((ip->daddr&ipinfo->dmsk.s_addr) != ipinfo->dst.s_addr,
88 IPT_INV_DSTIP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 dprintf("Source or dest mismatch.\n");
90
Harvey Harrisoncffee382008-10-31 00:53:08 -070091 dprintf("SRC: %pI4. Mask: %pI4. Target: %pI4.%s\n",
92 &ip->saddr, &ipinfo->smsk.s_addr, &ipinfo->src.s_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 ipinfo->invflags & IPT_INV_SRCIP ? " (INV)" : "");
Harvey Harrisoncffee382008-10-31 00:53:08 -070094 dprintf("DST: %pI4 Mask: %pI4 Target: %pI4.%s\n",
95 &ip->daddr, &ipinfo->dmsk.s_addr, &ipinfo->dst.s_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 ipinfo->invflags & IPT_INV_DSTIP ? " (INV)" : "");
Patrick McHardy9c547952007-12-17 21:52:00 -080097 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 }
99
Eric Dumazetb8dfe492009-03-25 17:31:52 +0100100 ret = ifname_compare_aligned(indev, ipinfo->iniface, ipinfo->iniface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 if (FWINV(ret != 0, IPT_INV_VIA_IN)) {
103 dprintf("VIA in mismatch (%s vs %s).%s\n",
104 indev, ipinfo->iniface,
105 ipinfo->invflags&IPT_INV_VIA_IN ?" (INV)":"");
Patrick McHardy9c547952007-12-17 21:52:00 -0800106 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
108
Eric Dumazetb8dfe492009-03-25 17:31:52 +0100109 ret = ifname_compare_aligned(outdev, ipinfo->outiface, ipinfo->outiface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 if (FWINV(ret != 0, IPT_INV_VIA_OUT)) {
112 dprintf("VIA out mismatch (%s vs %s).%s\n",
113 outdev, ipinfo->outiface,
114 ipinfo->invflags&IPT_INV_VIA_OUT ?" (INV)":"");
Patrick McHardy9c547952007-12-17 21:52:00 -0800115 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
117
118 /* Check specific protocol */
Joe Perches3666ed12009-11-23 23:17:06 +0100119 if (ipinfo->proto &&
120 FWINV(ip->protocol != ipinfo->proto, IPT_INV_PROTO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 dprintf("Packet protocol %hi does not match %hi.%s\n",
122 ip->protocol, ipinfo->proto,
123 ipinfo->invflags&IPT_INV_PROTO ? " (INV)":"");
Patrick McHardy9c547952007-12-17 21:52:00 -0800124 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
126
127 /* If we have a fragment rule but the packet is not a fragment
128 * then we return zero */
129 if (FWINV((ipinfo->flags&IPT_F_FRAG) && !isfrag, IPT_INV_FRAG)) {
130 dprintf("Fragment rule but not fragment.%s\n",
131 ipinfo->invflags & IPT_INV_FRAG ? " (INV)" : "");
Patrick McHardy9c547952007-12-17 21:52:00 -0800132 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
134
Patrick McHardy9c547952007-12-17 21:52:00 -0800135 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Denys Vlasenko022748a2008-01-14 23:44:05 -0800138static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139ip_checkentry(const struct ipt_ip *ip)
140{
141 if (ip->flags & ~IPT_F_MASK) {
142 duprintf("Unknown flag bits set: %08X\n",
143 ip->flags & ~IPT_F_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700144 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 }
146 if (ip->invflags & ~IPT_INV_MASK) {
147 duprintf("Unknown invflag bits set: %08X\n",
148 ip->invflags & ~IPT_INV_MASK);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700149 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700151 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
154static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200155ipt_error(struct sk_buff *skb, const struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Joe Perchese87cc472012-05-13 21:56:26 +0000157 net_info_ratelimited("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
Gao fengf0165882013-03-21 19:48:42 +0000186#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
Denys Vlasenko022748a2008-01-14 23:44:05 -0800187static const char *const hooknames[] = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800188 [NF_INET_PRE_ROUTING] = "PREROUTING",
189 [NF_INET_LOCAL_IN] = "INPUT",
Patrick McHardy9c547952007-12-17 21:52:00 -0800190 [NF_INET_FORWARD] = "FORWARD",
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800191 [NF_INET_LOCAL_OUT] = "OUTPUT",
192 [NF_INET_POST_ROUTING] = "POSTROUTING",
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700193};
194
195enum nf_ip_trace_comments {
196 NF_IP_TRACE_COMMENT_RULE,
197 NF_IP_TRACE_COMMENT_RETURN,
198 NF_IP_TRACE_COMMENT_POLICY,
199};
200
Denys Vlasenko022748a2008-01-14 23:44:05 -0800201static const char *const comments[] = {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700202 [NF_IP_TRACE_COMMENT_RULE] = "rule",
203 [NF_IP_TRACE_COMMENT_RETURN] = "return",
204 [NF_IP_TRACE_COMMENT_POLICY] = "policy",
205};
206
207static struct nf_loginfo trace_loginfo = {
208 .type = NF_LOG_TYPE_LOG,
209 .u = {
210 .log = {
211 .level = 4,
212 .logflags = NF_LOG_MASK,
213 },
214 },
215};
216
Denys Vlasenko022748a2008-01-14 23:44:05 -0800217/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700218static inline int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200219get_chainname_rulenum(const struct ipt_entry *s, const struct ipt_entry *e,
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200220 const char *hookname, const char **chainname,
221 const char **comment, unsigned int *rulenum)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700222{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200223 const struct xt_standard_target *t = (void *)ipt_get_target_c(s);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700224
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200225 if (strcmp(t->target.u.kernel.target->name, XT_ERROR_TARGET) == 0) {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700226 /* Head of user chain: ERROR target with chainname */
227 *chainname = t->target.data;
228 (*rulenum) = 0;
229 } else if (s == e) {
230 (*rulenum)++;
231
Joe Perches3666ed12009-11-23 23:17:06 +0100232 if (s->target_offset == sizeof(struct ipt_entry) &&
233 strcmp(t->target.u.kernel.target->name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200234 XT_STANDARD_TARGET) == 0 &&
Joe Perches3666ed12009-11-23 23:17:06 +0100235 t->verdict < 0 &&
236 unconditional(&s->ip)) {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700237 /* Tail of chains: STANDARD target (return/policy) */
238 *comment = *chainname == hookname
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200239 ? comments[NF_IP_TRACE_COMMENT_POLICY]
240 : comments[NF_IP_TRACE_COMMENT_RETURN];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700241 }
242 return 1;
243 } else
244 (*rulenum)++;
245
246 return 0;
247}
248
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200249static void trace_packet(const struct sk_buff *skb,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700250 unsigned int hook,
251 const struct net_device *in,
252 const struct net_device *out,
Jan Engelhardtecb6f852008-01-31 03:54:47 -0800253 const char *tablename,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200254 const struct xt_table_info *private,
255 const struct ipt_entry *e)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700256{
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200257 const void *table_base;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200258 const struct ipt_entry *root;
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200259 const char *hookname, *chainname, *comment;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100260 const struct ipt_entry *iter;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700261 unsigned int rulenum = 0;
Gao feng30e0c6a2013-03-24 23:50:40 +0000262 struct net *net = dev_net(in ? in : out);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700263
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
Pablo Neira Ayuso4017a7e2015-03-02 01:10:28 +0100275 nf_log_trace(net, AF_INET, hook, skb, in, out, &trace_loginfo,
276 "TRACE: %s:%s:%s:%u ",
277 tablename, chainname, comment, rulenum);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700278}
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();
Will Deaconb416c142013-10-21 13:14:53 +0100330 /*
331 * Ensure we load private-> members after we've fetched the base
332 * pointer.
333 */
334 smp_read_barrier_depends();
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200335 table_base = private->entries[cpu];
336 jumpstack = (struct ipt_entry **)private->jumpstack[cpu];
Eric Dumazet7489aec2010-05-31 16:41:35 +0200337 stackptr = per_cpu_ptr(private->stackptr, cpu);
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200338 origptr = *stackptr;
Stephen Hemminger78454472009-02-20 10:35:32 +0100339
Harald Welte2e4e6a12006-01-12 13:30:04 -0800340 e = get_entry(table_base, private->hook_entry[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Patrick McHardycecc74d2010-04-22 13:03:24 +0200342 pr_debug("Entering %s(hook %u); sp at %u (UF %p)\n",
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200343 table->name, hook, origptr,
344 get_entry(table_base, private->underflow[hook]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 do {
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200347 const struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100348 const struct xt_entry_match *ematch;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 IP_NF_ASSERT(e);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200351 if (!ip_packet_match(ip, indev, outdev,
Jan Engelhardtde74c162009-07-05 18:26:37 +0200352 &e->ip, acpar.fragoff)) {
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100353 no_match:
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200354 e = ipt_next_entry(e);
355 continue;
356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Jan Engelhardtef53d702009-07-09 19:14:18 +0200358 xt_ematch_foreach(ematch, e) {
Jan Engelhardtde74c162009-07-05 18:26:37 +0200359 acpar.match = ematch->u.kernel.match;
360 acpar.matchinfo = ematch->data;
361 if (!acpar.match->match(skb, &acpar))
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100362 goto no_match;
Jan Engelhardtef53d702009-07-09 19:14:18 +0200363 }
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100364
Changli Gao7df08842010-07-23 16:25:11 +0200365 ADD_COUNTER(e->counters, skb->len, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200367 t = ipt_get_target(e);
368 IP_NF_ASSERT(t->u.kernel.target);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700369
Gao fengf0165882013-03-21 19:48:42 +0000370#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200371 /* The packet is traced: log it */
372 if (unlikely(skb->nf_trace))
373 trace_packet(skb, hook, in, out,
374 table->name, private, e);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700375#endif
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200376 /* Standard target? */
377 if (!t->u.kernel.target->target) {
378 int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200380 v = ((struct xt_standard_target *)t)->verdict;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200381 if (v < 0) {
382 /* Pop from stack? */
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200383 if (v != XT_RETURN) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000384 verdict = (unsigned int)(-v) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 break;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200386 }
Eric Dumazetdb856672011-03-20 15:40:06 +0100387 if (*stackptr <= origptr) {
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200388 e = get_entry(table_base,
389 private->underflow[hook]);
Patrick McHardycecc74d2010-04-22 13:03:24 +0200390 pr_debug("Underflow (this is normal) "
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200391 "to %p\n", e);
392 } else {
393 e = jumpstack[--*stackptr];
Patrick McHardycecc74d2010-04-22 13:03:24 +0200394 pr_debug("Pulled %p out from pos %u\n",
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200395 e, *stackptr);
396 e = ipt_next_entry(e);
397 }
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200398 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
Joe Perches3666ed12009-11-23 23:17:06 +0100400 if (table_base + v != ipt_next_entry(e) &&
401 !(e->ip.flags & IPT_F_GOTO)) {
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200402 if (*stackptr >= private->stacksize) {
403 verdict = NF_DROP;
404 break;
405 }
406 jumpstack[(*stackptr)++] = e;
Patrick McHardycecc74d2010-04-22 13:03:24 +0200407 pr_debug("Pushed %p into pos %u\n",
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200408 e, *stackptr - 1);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200411 e = get_entry(table_base, v);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200412 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200414
Jan Engelhardtde74c162009-07-05 18:26:37 +0200415 acpar.target = t->u.kernel.target;
416 acpar.targinfo = t->data;
Jan Engelhardtbb70dfa2009-04-15 21:40:13 +0200417
Jan Engelhardtde74c162009-07-05 18:26:37 +0200418 verdict = t->u.kernel.target->target(skb, &acpar);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200419 /* Target might have changed stuff. */
420 ip = ip_hdr(skb);
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200421 if (verdict == XT_CONTINUE)
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200422 e = ipt_next_entry(e);
423 else
424 /* Verdict */
425 break;
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200426 } while (!acpar.hotdrop);
Patrick McHardycecc74d2010-04-22 13:03:24 +0200427 pr_debug("Exiting %s; resetting sp from %u to %u\n",
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200428 __func__, *stackptr, origptr);
429 *stackptr = origptr;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200430 xt_write_recseq_end(addend);
431 local_bh_enable();
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433#ifdef DEBUG_ALLOW_ALL
434 return NF_ACCEPT;
435#else
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200436 if (acpar.hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return NF_DROP;
438 else return verdict;
439#endif
440}
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442/* Figures out from what hook each rule can be called: returns 0 if
443 there are loops. Puts hook bitmask in comefrom. */
444static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200445mark_source_chains(const struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800446 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 unsigned int hook;
449
450 /* No recursion; use packet counter to save back ptrs (reset
451 to 0 as we leave), and comefrom to save source hook bitmask */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800452 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 unsigned int pos = newinfo->hook_entry[hook];
Patrick McHardy9c547952007-12-17 21:52:00 -0800454 struct ipt_entry *e = (struct ipt_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 if (!(valid_hooks & (1 << hook)))
457 continue;
458
459 /* Set initial back pointer. */
460 e->counters.pcnt = pos;
461
462 for (;;) {
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200463 const struct xt_standard_target *t
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200464 = (void *)ipt_get_target_c(e);
Al Viroe1b4b9f2006-12-12 00:29:52 -0800465 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800467 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200468 pr_err("iptables: loop hook %u pos %u %08X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 hook, pos, e->comefrom);
470 return 0;
471 }
Patrick McHardy9c547952007-12-17 21:52:00 -0800472 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 /* Unconditional return/END. */
Joe Perches3666ed12009-11-23 23:17:06 +0100475 if ((e->target_offset == sizeof(struct ipt_entry) &&
476 (strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200477 XT_STANDARD_TARGET) == 0) &&
Joe Perches3666ed12009-11-23 23:17:06 +0100478 t->verdict < 0 && unconditional(&e->ip)) ||
479 visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 unsigned int oldpos, size;
481
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100482 if ((strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200483 XT_STANDARD_TARGET) == 0) &&
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100484 t->verdict < -NF_MAX_VERDICT - 1) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800485 duprintf("mark_source_chains: bad "
486 "negative verdict (%i)\n",
487 t->verdict);
488 return 0;
489 }
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 /* Return: backtrack through the last
492 big jump. */
493 do {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800494 e->comefrom ^= (1<<NF_INET_NUMHOOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495#ifdef DEBUG_IP_FIREWALL_USER
496 if (e->comefrom
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800497 & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 duprintf("Back unset "
499 "on hook %u "
500 "rule %u\n",
501 hook, pos);
502 }
503#endif
504 oldpos = pos;
505 pos = e->counters.pcnt;
506 e->counters.pcnt = 0;
507
508 /* We're at the start. */
509 if (pos == oldpos)
510 goto next;
511
512 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800513 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 } while (oldpos == pos + e->next_offset);
515
516 /* Move along one */
517 size = e->next_offset;
518 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800519 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 e->counters.pcnt = pos;
521 pos += size;
522 } else {
523 int newpos = t->verdict;
524
525 if (strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200526 XT_STANDARD_TARGET) == 0 &&
Joe Perches3666ed12009-11-23 23:17:06 +0100527 newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800528 if (newpos > newinfo->size -
529 sizeof(struct ipt_entry)) {
530 duprintf("mark_source_chains: "
531 "bad verdict (%i)\n",
532 newpos);
533 return 0;
534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 /* This a jump; chase it. */
536 duprintf("Jump rule %u -> %u\n",
537 pos, newpos);
538 } else {
539 /* ... this is a fallthru */
540 newpos = pos + e->next_offset;
541 }
542 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800543 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 e->counters.pcnt = pos;
545 pos = newpos;
546 }
547 }
548 next:
549 duprintf("Finished chain %u\n", hook);
550 }
551 return 1;
552}
553
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200554static void cleanup_match(struct xt_entry_match *m, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200556 struct xt_mtdtor_param par;
557
Alexey Dobriyanf54e9362010-01-18 08:25:47 +0100558 par.net = net;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200559 par.match = m->u.kernel.match;
560 par.matchinfo = m->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200561 par.family = NFPROTO_IPV4;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200562 if (par.match->destroy != NULL)
563 par.match->destroy(&par);
564 module_put(par.match->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
Denys Vlasenko022748a2008-01-14 23:44:05 -0800567static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200568check_entry(const struct ipt_entry *e, const char *name)
Dmitry Mishina96be242006-12-12 00:29:26 -0800569{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200570 const struct xt_entry_target *t;
Dmitry Mishina96be242006-12-12 00:29:26 -0800571
572 if (!ip_checkentry(&e->ip)) {
Sebastian Andrzej Siewior63f6fe92011-06-16 17:16:37 +0200573 duprintf("ip check failed %p %s.\n", e, name);
Dmitry Mishina96be242006-12-12 00:29:26 -0800574 return -EINVAL;
575 }
576
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200577 if (e->target_offset + sizeof(struct xt_entry_target) >
Patrick McHardy9c547952007-12-17 21:52:00 -0800578 e->next_offset)
Dmitry Mishina96be242006-12-12 00:29:26 -0800579 return -EINVAL;
580
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200581 t = ipt_get_target_c(e);
Dmitry Mishina96be242006-12-12 00:29:26 -0800582 if (e->target_offset + t->u.target_size > e->next_offset)
583 return -EINVAL;
584
585 return 0;
586}
587
Denys Vlasenko022748a2008-01-14 23:44:05 -0800588static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200589check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
Dmitry Mishina96be242006-12-12 00:29:26 -0800590{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200591 const struct ipt_ip *ip = par->entryinfo;
Dmitry Mishina96be242006-12-12 00:29:26 -0800592 int ret;
593
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200594 par->match = m->u.kernel.match;
595 par->matchinfo = m->data;
596
Jan Engelhardt916a9172008-10-08 11:35:20 +0200597 ret = xt_check_match(par, m->u.match_size - sizeof(*m),
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200598 ip->proto, ip->invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200599 if (ret < 0) {
Jan Engelhardtb5cad0d2010-05-02 13:55:21 +0200600 duprintf("check failed for `%s'.\n", par->match->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200601 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800602 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200603 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800604}
605
Denys Vlasenko022748a2008-01-14 23:44:05 -0800606static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200607find_check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800609 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800610 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200612 match = xt_request_find_match(NFPROTO_IPV4, m->u.user.name,
613 m->u.user.revision);
614 if (IS_ERR(match)) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800615 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200616 return PTR_ERR(match);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
618 m->u.kernel.match = match;
619
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100620 ret = check_match(m, par);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800621 if (ret)
622 goto err;
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800625err:
626 module_put(m->u.kernel.match->me);
627 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
Patrick McHardyadd67462010-02-03 13:45:12 +0100630static int check_target(struct ipt_entry *e, struct net *net, const char *name)
Dmitry Mishina96be242006-12-12 00:29:26 -0800631{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200632 struct xt_entry_target *t = ipt_get_target(e);
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200633 struct xt_tgchk_param par = {
Patrick McHardyadd67462010-02-03 13:45:12 +0100634 .net = net,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200635 .table = name,
636 .entryinfo = e,
637 .target = t->u.kernel.target,
638 .targinfo = t->data,
639 .hook_mask = e->comefrom,
Jan Engelhardt916a9172008-10-08 11:35:20 +0200640 .family = NFPROTO_IPV4,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200641 };
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900642 int ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800643
Jan Engelhardt916a9172008-10-08 11:35:20 +0200644 ret = xt_check_target(&par, t->u.target_size - sizeof(*t),
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200645 e->ip.proto, e->ip.invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200646 if (ret < 0) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100647 duprintf("check failed for `%s'.\n",
Dmitry Mishina96be242006-12-12 00:29:26 -0800648 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200649 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800650 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200651 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800652}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Denys Vlasenko022748a2008-01-14 23:44:05 -0800654static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100655find_check_entry(struct ipt_entry *e, struct net *net, const char *name,
Jan Engelhardt05595182010-02-24 18:33:43 +0100656 unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200658 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800659 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 int ret;
661 unsigned int j;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200662 struct xt_mtchk_param mtpar;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100663 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Dmitry Mishina96be242006-12-12 00:29:26 -0800665 ret = check_entry(e, name);
666 if (ret)
667 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 j = 0;
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100670 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200671 mtpar.table = name;
672 mtpar.entryinfo = &e->ip;
673 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200674 mtpar.family = NFPROTO_IPV4;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100675 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100676 ret = find_check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100677 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100678 goto cleanup_matches;
679 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 t = ipt_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200683 target = xt_request_find_target(NFPROTO_IPV4, t->u.user.name,
684 t->u.user.revision);
685 if (IS_ERR(target)) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800686 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200687 ret = PTR_ERR(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 goto cleanup_matches;
689 }
690 t->u.kernel.target = target;
691
Patrick McHardyadd67462010-02-03 13:45:12 +0100692 ret = check_target(e, net, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800693 if (ret)
694 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800696 err:
697 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100699 xt_ematch_foreach(ematch, e) {
700 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100701 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100702 cleanup_match(ematch, net);
703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return ret;
705}
706
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200707static bool check_underflow(const struct ipt_entry *e)
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200708{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200709 const struct xt_entry_target *t;
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200710 unsigned int verdict;
711
712 if (!unconditional(&e->ip))
713 return false;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200714 t = ipt_get_target_c(e);
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200715 if (strcmp(t->u.user.name, XT_STANDARD_TARGET) != 0)
716 return false;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200717 verdict = ((struct xt_standard_target *)t)->verdict;
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200718 verdict = -verdict - 1;
719 return verdict == NF_DROP || verdict == NF_ACCEPT;
720}
721
Denys Vlasenko022748a2008-01-14 23:44:05 -0800722static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723check_entry_size_and_hooks(struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800724 struct xt_table_info *newinfo,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200725 const unsigned char *base,
726 const unsigned char *limit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 const unsigned int *hook_entries,
728 const unsigned int *underflows,
Jan Engelhardt05595182010-02-24 18:33:43 +0100729 unsigned int valid_hooks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
731 unsigned int h;
732
Joe Perches3666ed12009-11-23 23:17:06 +0100733 if ((unsigned long)e % __alignof__(struct ipt_entry) != 0 ||
734 (unsigned char *)e + sizeof(struct ipt_entry) >= limit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 duprintf("Bad offset %p\n", e);
736 return -EINVAL;
737 }
738
739 if (e->next_offset
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200740 < sizeof(struct ipt_entry) + sizeof(struct xt_entry_target)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 duprintf("checking: element %p size %u\n",
742 e, e->next_offset);
743 return -EINVAL;
744 }
745
746 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800747 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Jan Engelhardta7d51732009-07-18 14:52:58 +0200748 if (!(valid_hooks & (1 << h)))
749 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if ((unsigned char *)e - base == hook_entries[h])
751 newinfo->hook_entry[h] = hook_entries[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200752 if ((unsigned char *)e - base == underflows[h]) {
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200753 if (!check_underflow(e)) {
754 pr_err("Underflows must be unconditional and "
755 "use the STANDARD target with "
756 "ACCEPT/DROP\n");
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200757 return -EINVAL;
758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 newinfo->underflow[h] = underflows[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800764 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 e->comefrom = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return 0;
767}
768
Jan Engelhardt05595182010-02-24 18:33:43 +0100769static void
770cleanup_entry(struct ipt_entry *e, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200772 struct xt_tgdtor_param par;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200773 struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100774 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100777 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100778 cleanup_match(ematch, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 t = ipt_get_target(e);
Jan Engelhardta2df1642008-10-08 11:35:19 +0200780
Patrick McHardyadd67462010-02-03 13:45:12 +0100781 par.net = net;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200782 par.target = t->u.kernel.target;
783 par.targinfo = t->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200784 par.family = NFPROTO_IPV4;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200785 if (par.target->destroy != NULL)
786 par.target->destroy(&par);
787 module_put(par.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
790/* Checks and translates the user-supplied table segment (held in
791 newinfo) */
792static int
Jan Engelhardt0f234212010-02-24 18:36:04 +0100793translate_table(struct net *net, struct xt_table_info *newinfo, void *entry0,
794 const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100796 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 unsigned int i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100798 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Jan Engelhardt0f234212010-02-24 18:36:04 +0100800 newinfo->size = repl->size;
801 newinfo->number = repl->num_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800804 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 newinfo->hook_entry[i] = 0xFFFFFFFF;
806 newinfo->underflow[i] = 0xFFFFFFFF;
807 }
808
809 duprintf("translate_table: size %u\n", newinfo->size);
810 i = 0;
811 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100812 xt_entry_foreach(iter, entry0, newinfo->size) {
813 ret = check_entry_size_and_hooks(iter, newinfo, entry0,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +0100814 entry0 + repl->size,
815 repl->hook_entry,
816 repl->underflow,
817 repl->valid_hooks);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100818 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +0100819 return ret;
820 ++i;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200821 if (strcmp(ipt_get_target(iter)->u.user.name,
822 XT_ERROR_TARGET) == 0)
823 ++newinfo->stacksize;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Jan Engelhardt0f234212010-02-24 18:36:04 +0100826 if (i != repl->num_entries) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 duprintf("translate_table: %u not %u entries\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100828 i, repl->num_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return -EINVAL;
830 }
831
832 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800833 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 /* Only hooks which are valid */
Jan Engelhardt0f234212010-02-24 18:36:04 +0100835 if (!(repl->valid_hooks & (1 << i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 continue;
837 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
838 duprintf("Invalid hook entry %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100839 i, repl->hook_entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 return -EINVAL;
841 }
842 if (newinfo->underflow[i] == 0xFFFFFFFF) {
843 duprintf("Invalid underflow %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100844 i, repl->underflow[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 return -EINVAL;
846 }
847 }
848
Jan Engelhardt0f234212010-02-24 18:36:04 +0100849 if (!mark_source_chains(newinfo, repl->valid_hooks, entry0))
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800850 return -ELOOP;
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 /* Finally, each sanity check must pass */
853 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100854 xt_entry_foreach(iter, entry0, newinfo->size) {
Jan Engelhardt0f234212010-02-24 18:36:04 +0100855 ret = find_check_entry(iter, net, repl->name, repl->size);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100856 if (ret != 0)
857 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100858 ++i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800861 if (ret != 0) {
Jan Engelhardt05595182010-02-24 18:33:43 +0100862 xt_entry_foreach(iter, entry0, newinfo->size) {
863 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100864 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100865 cleanup_entry(iter, net);
866 }
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800867 return ret;
868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 /* And one copy for every other CPU */
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700871 for_each_possible_cpu(i) {
Eric Dumazet31836062005-12-13 23:13:48 -0800872 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
873 memcpy(newinfo->entries[i], entry0, newinfo->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
875
876 return ret;
877}
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800880get_counters(const struct xt_table_info *t,
881 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100883 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 unsigned int cpu;
885 unsigned int i;
886
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700887 for_each_possible_cpu(cpu) {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200888 seqcount_t *s = &per_cpu(xt_recseq, cpu);
Eric Dumazet83723d62011-01-10 20:11:38 +0100889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 i = 0;
Jan Engelhardt05595182010-02-24 18:33:43 +0100891 xt_entry_foreach(iter, t->entries[cpu], t->size) {
Eric Dumazet83723d62011-01-10 20:11:38 +0100892 u64 bcnt, pcnt;
893 unsigned int start;
894
895 do {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200896 start = read_seqcount_begin(s);
Eric Dumazet83723d62011-01-10 20:11:38 +0100897 bcnt = iter->counters.bcnt;
898 pcnt = iter->counters.pcnt;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200899 } while (read_seqcount_retry(s, start));
Eric Dumazet83723d62011-01-10 20:11:38 +0100900
901 ADD_COUNTER(counters[i], bcnt, pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +0100902 ++i; /* macro does multi eval of i */
903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 }
Stephen Hemminger78454472009-02-20 10:35:32 +0100905}
906
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200907static struct xt_counters *alloc_counters(const struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Dmitry Mishin27229712006-04-01 02:25:19 -0800909 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800910 struct xt_counters *counters;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200911 const struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 /* We need atomic snapshot of counters: rest doesn't change
914 (other than comefrom, which userspace doesn't care
915 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800916 countersize = sizeof(struct xt_counters) * private->number;
Eric Dumazet83723d62011-01-10 20:11:38 +0100917 counters = vzalloc(countersize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 if (counters == NULL)
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700920 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700922 get_counters(private, counters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Dmitry Mishin27229712006-04-01 02:25:19 -0800924 return counters;
925}
926
927static int
928copy_entries_to_user(unsigned int total_size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200929 const struct xt_table *table,
Dmitry Mishin27229712006-04-01 02:25:19 -0800930 void __user *userptr)
931{
932 unsigned int off, num;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200933 const struct ipt_entry *e;
Dmitry Mishin27229712006-04-01 02:25:19 -0800934 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200935 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -0800936 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200937 const void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -0800938
939 counters = alloc_counters(table);
940 if (IS_ERR(counters))
941 return PTR_ERR(counters);
942
Eric Dumazet31836062005-12-13 23:13:48 -0800943 /* choose the copy that is on our node/cpu, ...
944 * This choice is lazy (because current thread is
945 * allowed to migrate to another cpu)
946 */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800947 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -0800948 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 ret = -EFAULT;
950 goto free_counters;
951 }
952
953 /* FIXME: use iterator macros --RR */
954 /* ... then go back and fix counters and names */
955 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
956 unsigned int i;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200957 const struct xt_entry_match *m;
958 const struct xt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Eric Dumazet31836062005-12-13 23:13:48 -0800960 e = (struct ipt_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 if (copy_to_user(userptr + off
962 + offsetof(struct ipt_entry, counters),
963 &counters[num],
964 sizeof(counters[num])) != 0) {
965 ret = -EFAULT;
966 goto free_counters;
967 }
968
969 for (i = sizeof(struct ipt_entry);
970 i < e->target_offset;
971 i += m->u.match_size) {
972 m = (void *)e + i;
973
974 if (copy_to_user(userptr + off + i
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200975 + offsetof(struct xt_entry_match,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 u.user.name),
977 m->u.kernel.match->name,
978 strlen(m->u.kernel.match->name)+1)
979 != 0) {
980 ret = -EFAULT;
981 goto free_counters;
982 }
983 }
984
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200985 t = ipt_get_target_c(e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 if (copy_to_user(userptr + off + e->target_offset
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200987 + offsetof(struct xt_entry_target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 u.user.name),
989 t->u.kernel.target->name,
990 strlen(t->u.kernel.target->name)+1) != 0) {
991 ret = -EFAULT;
992 goto free_counters;
993 }
994 }
995
996 free_counters:
997 vfree(counters);
998 return ret;
999}
1000
Dmitry Mishin27229712006-04-01 02:25:19 -08001001#ifdef CONFIG_COMPAT
Jan Engelhardt739674f2009-06-26 08:23:19 +02001002static void compat_standard_from_user(void *dst, const void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001003{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001004 int v = *(compat_int_t *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001005
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001006 if (v > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001007 v += xt_compat_calc_jump(AF_INET, v);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001008 memcpy(dst, &v, sizeof(v));
1009}
1010
Jan Engelhardt739674f2009-06-26 08:23:19 +02001011static int compat_standard_to_user(void __user *dst, const void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001012{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001013 compat_int_t cv = *(int *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001014
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001015 if (cv > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001016 cv -= xt_compat_calc_jump(AF_INET, cv);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001017 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001018}
1019
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001020static int compat_calc_entry(const struct ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001021 const struct xt_table_info *info,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001022 const void *base, struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001023{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001024 const struct xt_entry_match *ematch;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001025 const struct xt_entry_target *t;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001026 unsigned int entry_offset;
Dmitry Mishin27229712006-04-01 02:25:19 -08001027 int off, i, ret;
1028
Patrick McHardy30c08c42007-12-17 21:47:14 -08001029 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001030 entry_offset = (void *)e - base;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001031 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001032 off += xt_compat_match_offset(ematch->u.kernel.match);
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001033 t = ipt_get_target_c(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001034 off += xt_compat_target_offset(t->u.kernel.target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001035 newinfo->size -= off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001036 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001037 if (ret)
1038 return ret;
1039
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001040 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Patrick McHardy4b478242007-12-17 21:46:15 -08001041 if (info->hook_entry[i] &&
1042 (e < (struct ipt_entry *)(base + info->hook_entry[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001043 newinfo->hook_entry[i] -= off;
Patrick McHardy4b478242007-12-17 21:46:15 -08001044 if (info->underflow[i] &&
1045 (e < (struct ipt_entry *)(base + info->underflow[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001046 newinfo->underflow[i] -= off;
1047 }
1048 return 0;
1049}
1050
Eric Dumazet259d4e42007-12-04 23:24:56 -08001051static int compat_table_info(const struct xt_table_info *info,
Patrick McHardy4b478242007-12-17 21:46:15 -08001052 struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001053{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001054 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001055 void *loc_cpu_entry;
Jan Engelhardt05595182010-02-24 18:33:43 +01001056 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001057
1058 if (!newinfo || !info)
1059 return -EINVAL;
1060
Eric Dumazet259d4e42007-12-04 23:24:56 -08001061 /* we dont care about newinfo->entries[] */
1062 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1063 newinfo->initial_entries = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001064 loc_cpu_entry = info->entries[raw_smp_processor_id()];
Eric Dumazet255d0dc2010-12-18 18:35:15 +01001065 xt_compat_init_offsets(AF_INET, info->number);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001066 xt_entry_foreach(iter, loc_cpu_entry, info->size) {
1067 ret = compat_calc_entry(iter, info, loc_cpu_entry, newinfo);
1068 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001069 return ret;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001070 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001071 return 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001072}
1073#endif
1074
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001075static int get_info(struct net *net, void __user *user,
1076 const int *len, int compat)
Dmitry Mishin27229712006-04-01 02:25:19 -08001077{
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001078 char name[XT_TABLE_MAXNAMELEN];
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001079 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001080 int ret;
1081
1082 if (*len != sizeof(struct ipt_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001083 duprintf("length %u != %zu\n", *len,
1084 sizeof(struct ipt_getinfo));
Dmitry Mishin27229712006-04-01 02:25:19 -08001085 return -EINVAL;
1086 }
1087
1088 if (copy_from_user(name, user, sizeof(name)) != 0)
1089 return -EFAULT;
1090
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001091 name[XT_TABLE_MAXNAMELEN-1] = '\0';
Dmitry Mishin27229712006-04-01 02:25:19 -08001092#ifdef CONFIG_COMPAT
1093 if (compat)
1094 xt_compat_lock(AF_INET);
1095#endif
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001096 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Patrick McHardy4b478242007-12-17 21:46:15 -08001097 "iptable_%s", name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001098 if (!IS_ERR_OR_NULL(t)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001099 struct ipt_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001100 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001101#ifdef CONFIG_COMPAT
Alexey Dobriyan14c7dbe2010-02-08 11:17:43 -08001102 struct xt_table_info tmp;
1103
Dmitry Mishin27229712006-04-01 02:25:19 -08001104 if (compat) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001105 ret = compat_table_info(private, &tmp);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001106 xt_compat_flush_offsets(AF_INET);
Patrick McHardy4b478242007-12-17 21:46:15 -08001107 private = &tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001108 }
1109#endif
Vasiliy Kulikovb5f15ac2010-11-03 08:45:06 +01001110 memset(&info, 0, sizeof(info));
Dmitry Mishin27229712006-04-01 02:25:19 -08001111 info.valid_hooks = t->valid_hooks;
1112 memcpy(info.hook_entry, private->hook_entry,
Patrick McHardy4b478242007-12-17 21:46:15 -08001113 sizeof(info.hook_entry));
Dmitry Mishin27229712006-04-01 02:25:19 -08001114 memcpy(info.underflow, private->underflow,
Patrick McHardy4b478242007-12-17 21:46:15 -08001115 sizeof(info.underflow));
Dmitry Mishin27229712006-04-01 02:25:19 -08001116 info.num_entries = private->number;
1117 info.size = private->size;
1118 strcpy(info.name, name);
1119
1120 if (copy_to_user(user, &info, *len) != 0)
1121 ret = -EFAULT;
1122 else
1123 ret = 0;
1124
1125 xt_table_unlock(t);
1126 module_put(t->me);
1127 } else
1128 ret = t ? PTR_ERR(t) : -ENOENT;
1129#ifdef CONFIG_COMPAT
1130 if (compat)
1131 xt_compat_unlock(AF_INET);
1132#endif
1133 return ret;
1134}
1135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001137get_entries(struct net *net, struct ipt_get_entries __user *uptr,
1138 const int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
1140 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001141 struct ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001142 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Dmitry Mishin27229712006-04-01 02:25:19 -08001144 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001145 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001146 return -EINVAL;
1147 }
1148 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1149 return -EFAULT;
1150 if (*len != sizeof(struct ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001151 duprintf("get_entries: %u != %zu\n",
1152 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001153 return -EINVAL;
1154 }
1155
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001156 t = xt_find_table_lock(net, AF_INET, get.name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001157 if (!IS_ERR_OR_NULL(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001158 const struct xt_table_info *private = t->private;
Patrick McHardy9c547952007-12-17 21:52:00 -08001159 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001160 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001161 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 t, uptr->entrytable);
1163 else {
1164 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001165 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001166 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 }
1168 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001169 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 } else
1171 ret = t ? PTR_ERR(t) : -ENOENT;
1172
1173 return ret;
1174}
1175
1176static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001177__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001178 struct xt_table_info *newinfo, unsigned int num_counters,
1179 void __user *counters_ptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001180{
1181 int ret;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001182 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001183 struct xt_table_info *oldinfo;
1184 struct xt_counters *counters;
1185 void *loc_cpu_old_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001186 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001187
1188 ret = 0;
Eric Dumazet83723d62011-01-10 20:11:38 +01001189 counters = vzalloc(num_counters * sizeof(struct xt_counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001190 if (!counters) {
1191 ret = -ENOMEM;
1192 goto out;
1193 }
1194
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001195 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Dmitry Mishin27229712006-04-01 02:25:19 -08001196 "iptable_%s", name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001197 if (IS_ERR_OR_NULL(t)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001198 ret = t ? PTR_ERR(t) : -ENOENT;
1199 goto free_newinfo_counters_untrans;
1200 }
1201
1202 /* You lied! */
1203 if (valid_hooks != t->valid_hooks) {
1204 duprintf("Valid hook crap: %08X vs %08X\n",
1205 valid_hooks, t->valid_hooks);
1206 ret = -EINVAL;
1207 goto put_module;
1208 }
1209
1210 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1211 if (!oldinfo)
1212 goto put_module;
1213
1214 /* Update module usage count based on number of rules */
1215 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1216 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1217 if ((oldinfo->number > oldinfo->initial_entries) ||
1218 (newinfo->number <= oldinfo->initial_entries))
1219 module_put(t->me);
1220 if ((oldinfo->number > oldinfo->initial_entries) &&
1221 (newinfo->number <= oldinfo->initial_entries))
1222 module_put(t->me);
1223
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001224 /* Get the old counters, and synchronize with replace */
Dmitry Mishin27229712006-04-01 02:25:19 -08001225 get_counters(oldinfo, counters);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001226
Dmitry Mishin27229712006-04-01 02:25:19 -08001227 /* Decrease module usage counts and free resource */
1228 loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001229 xt_entry_foreach(iter, loc_cpu_old_entry, oldinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001230 cleanup_entry(iter, net);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001231
Dmitry Mishin27229712006-04-01 02:25:19 -08001232 xt_free_table_info(oldinfo);
1233 if (copy_to_user(counters_ptr, counters,
Thomas Grafc58dd2d2014-04-04 17:57:45 +02001234 sizeof(struct xt_counters) * num_counters) != 0) {
1235 /* Silent error, can't fail, new table is already in place */
1236 net_warn_ratelimited("iptables: counters copy to user failed while replacing table\n");
1237 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001238 vfree(counters);
1239 xt_table_unlock(t);
1240 return ret;
1241
1242 put_module:
1243 module_put(t->me);
1244 xt_table_unlock(t);
1245 free_newinfo_counters_untrans:
1246 vfree(counters);
1247 out:
1248 return ret;
1249}
1250
1251static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001252do_replace(struct net *net, const void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253{
1254 int ret;
1255 struct ipt_replace tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001256 struct xt_table_info *newinfo;
1257 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001258 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
1260 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1261 return -EFAULT;
1262
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001263 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001264 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1265 return -ENOMEM;
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01001266 tmp.name[sizeof(tmp.name)-1] = 0;
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001267
Harald Welte2e4e6a12006-01-12 13:30:04 -08001268 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 if (!newinfo)
1270 return -ENOMEM;
1271
Patrick McHardy9c547952007-12-17 21:52:00 -08001272 /* choose the copy that is on our node/cpu */
Eric Dumazet31836062005-12-13 23:13:48 -08001273 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1274 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 tmp.size) != 0) {
1276 ret = -EFAULT;
1277 goto free_newinfo;
1278 }
1279
Jan Engelhardt0f234212010-02-24 18:36:04 +01001280 ret = translate_table(net, newinfo, loc_cpu_entry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 if (ret != 0)
Dmitry Mishin27229712006-04-01 02:25:19 -08001282 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01001284 duprintf("Translated table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001286 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001287 tmp.num_counters, tmp.counters);
Dmitry Mishin27229712006-04-01 02:25:19 -08001288 if (ret)
1289 goto free_newinfo_untrans;
1290 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Dmitry Mishin27229712006-04-01 02:25:19 -08001292 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001293 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001294 cleanup_entry(iter, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001296 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 return ret;
1298}
1299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001301do_add_counters(struct net *net, const void __user *user,
1302 unsigned int len, int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001304 unsigned int i, curcpu;
Dmitry Mishin27229712006-04-01 02:25:19 -08001305 struct xt_counters_info tmp;
1306 struct xt_counters *paddc;
1307 unsigned int num_counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001308 const char *name;
Dmitry Mishin27229712006-04-01 02:25:19 -08001309 int size;
1310 void *ptmp;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001311 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001312 const struct xt_table_info *private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 int ret = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001314 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001315 struct ipt_entry *iter;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001316 unsigned int addend;
Dmitry Mishin27229712006-04-01 02:25:19 -08001317#ifdef CONFIG_COMPAT
1318 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Dmitry Mishin27229712006-04-01 02:25:19 -08001320 if (compat) {
1321 ptmp = &compat_tmp;
1322 size = sizeof(struct compat_xt_counters_info);
1323 } else
1324#endif
1325 {
1326 ptmp = &tmp;
1327 size = sizeof(struct xt_counters_info);
1328 }
1329
1330 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 return -EFAULT;
1332
Dmitry Mishin27229712006-04-01 02:25:19 -08001333#ifdef CONFIG_COMPAT
1334 if (compat) {
1335 num_counters = compat_tmp.num_counters;
1336 name = compat_tmp.name;
1337 } else
1338#endif
1339 {
1340 num_counters = tmp.num_counters;
1341 name = tmp.name;
1342 }
1343
1344 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 return -EINVAL;
1346
Eric Dumazete12f8e22010-06-04 13:31:29 +02001347 paddc = vmalloc(len - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 if (!paddc)
1349 return -ENOMEM;
1350
Dmitry Mishin27229712006-04-01 02:25:19 -08001351 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 ret = -EFAULT;
1353 goto free;
1354 }
1355
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001356 t = xt_find_table_lock(net, AF_INET, name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001357 if (IS_ERR_OR_NULL(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 ret = t ? PTR_ERR(t) : -ENOENT;
1359 goto free;
1360 }
1361
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001362 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001363 private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001364 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 ret = -EINVAL;
1366 goto unlock_up_free;
1367 }
1368
1369 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001370 /* Choose the copy that is on our node */
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001371 curcpu = smp_processor_id();
1372 loc_cpu_entry = private->entries[curcpu];
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001373 addend = xt_write_recseq_begin();
Jan Engelhardt05595182010-02-24 18:33:43 +01001374 xt_entry_foreach(iter, loc_cpu_entry, private->size) {
1375 ADD_COUNTER(iter->counters, paddc[i].bcnt, paddc[i].pcnt);
1376 ++i;
1377 }
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001378 xt_write_recseq_end(addend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 unlock_up_free:
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001380 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001381 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 module_put(t->me);
1383 free:
1384 vfree(paddc);
1385
1386 return ret;
1387}
1388
Dmitry Mishin27229712006-04-01 02:25:19 -08001389#ifdef CONFIG_COMPAT
1390struct compat_ipt_replace {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001391 char name[XT_TABLE_MAXNAMELEN];
Dmitry Mishin27229712006-04-01 02:25:19 -08001392 u32 valid_hooks;
1393 u32 num_entries;
1394 u32 size;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001395 u32 hook_entry[NF_INET_NUMHOOKS];
1396 u32 underflow[NF_INET_NUMHOOKS];
Dmitry Mishin27229712006-04-01 02:25:19 -08001397 u32 num_counters;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001398 compat_uptr_t counters; /* struct xt_counters * */
Dmitry Mishin27229712006-04-01 02:25:19 -08001399 struct compat_ipt_entry entries[0];
1400};
1401
Patrick McHardya18aa312007-12-12 10:35:16 -08001402static int
1403compat_copy_entry_to_user(struct ipt_entry *e, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001404 unsigned int *size, struct xt_counters *counters,
Jan Engelhardt05595182010-02-24 18:33:43 +01001405 unsigned int i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001406{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001407 struct xt_entry_target *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001408 struct compat_ipt_entry __user *ce;
1409 u_int16_t target_offset, next_offset;
1410 compat_uint_t origsize;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001411 const struct xt_entry_match *ematch;
1412 int ret = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001413
Dmitry Mishin27229712006-04-01 02:25:19 -08001414 origsize = *size;
1415 ce = (struct compat_ipt_entry __user *)*dstptr;
Jan Engelhardt05595182010-02-24 18:33:43 +01001416 if (copy_to_user(ce, e, sizeof(struct ipt_entry)) != 0 ||
1417 copy_to_user(&ce->counters, &counters[i],
1418 sizeof(counters[i])) != 0)
1419 return -EFAULT;
Patrick McHardya18aa312007-12-12 10:35:16 -08001420
Dmitry Mishin27229712006-04-01 02:25:19 -08001421 *dstptr += sizeof(struct compat_ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001422 *size -= sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1423
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001424 xt_ematch_foreach(ematch, e) {
1425 ret = xt_compat_match_to_user(ematch, dstptr, size);
1426 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001427 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001428 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001429 target_offset = e->target_offset - (origsize - *size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001430 t = ipt_get_target(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001431 ret = xt_compat_target_to_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001432 if (ret)
Jan Engelhardt05595182010-02-24 18:33:43 +01001433 return ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001434 next_offset = e->next_offset - (origsize - *size);
Jan Engelhardt05595182010-02-24 18:33:43 +01001435 if (put_user(target_offset, &ce->target_offset) != 0 ||
1436 put_user(next_offset, &ce->next_offset) != 0)
1437 return -EFAULT;
Dmitry Mishin27229712006-04-01 02:25:19 -08001438 return 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001439}
1440
Denys Vlasenko022748a2008-01-14 23:44:05 -08001441static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001442compat_find_calc_match(struct xt_entry_match *m,
Patrick McHardy4b478242007-12-17 21:46:15 -08001443 const char *name,
1444 const struct ipt_ip *ip,
1445 unsigned int hookmask,
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001446 int *size)
Dmitry Mishin27229712006-04-01 02:25:19 -08001447{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001448 struct xt_match *match;
Dmitry Mishin27229712006-04-01 02:25:19 -08001449
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001450 match = xt_request_find_match(NFPROTO_IPV4, m->u.user.name,
1451 m->u.user.revision);
1452 if (IS_ERR(match)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001453 duprintf("compat_check_calc_match: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001454 m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001455 return PTR_ERR(match);
Dmitry Mishin27229712006-04-01 02:25:19 -08001456 }
1457 m->u.kernel.match = match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001458 *size += xt_compat_match_offset(match);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001459 return 0;
1460}
1461
Jan Engelhardt05595182010-02-24 18:33:43 +01001462static void compat_release_entry(struct compat_ipt_entry *e)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001463{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001464 struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001465 struct xt_entry_match *ematch;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001466
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001467 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001468 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001469 module_put(ematch->u.kernel.match->me);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001470 t = compat_ipt_get_target(e);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001471 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001472}
1473
Denys Vlasenko022748a2008-01-14 23:44:05 -08001474static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001475check_compat_entry_size_and_hooks(struct compat_ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001476 struct xt_table_info *newinfo,
1477 unsigned int *size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001478 const unsigned char *base,
1479 const unsigned char *limit,
1480 const unsigned int *hook_entries,
1481 const unsigned int *underflows,
Patrick McHardy4b478242007-12-17 21:46:15 -08001482 const char *name)
Dmitry Mishin27229712006-04-01 02:25:19 -08001483{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001484 struct xt_entry_match *ematch;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001485 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001486 struct xt_target *target;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001487 unsigned int entry_offset;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001488 unsigned int j;
1489 int ret, off, h;
Dmitry Mishin27229712006-04-01 02:25:19 -08001490
1491 duprintf("check_compat_entry_size_and_hooks %p\n", e);
Joe Perches3666ed12009-11-23 23:17:06 +01001492 if ((unsigned long)e % __alignof__(struct compat_ipt_entry) != 0 ||
1493 (unsigned char *)e + sizeof(struct compat_ipt_entry) >= limit) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001494 duprintf("Bad offset %p, limit = %p\n", e, limit);
1495 return -EINVAL;
1496 }
1497
1498 if (e->next_offset < sizeof(struct compat_ipt_entry) +
Patrick McHardy4b478242007-12-17 21:46:15 -08001499 sizeof(struct compat_xt_entry_target)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001500 duprintf("checking: element %p size %u\n",
1501 e, e->next_offset);
1502 return -EINVAL;
1503 }
1504
Patrick McHardy73cd5982007-12-17 21:47:32 -08001505 /* For purposes of check_entry casting the compat entry is fine */
1506 ret = check_entry((struct ipt_entry *)e, name);
Dmitry Mishina96be242006-12-12 00:29:26 -08001507 if (ret)
1508 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -08001509
Patrick McHardy30c08c42007-12-17 21:47:14 -08001510 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001511 entry_offset = (void *)e - (void *)base;
1512 j = 0;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001513 xt_ematch_foreach(ematch, e) {
1514 ret = compat_find_calc_match(ematch, name,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001515 &e->ip, e->comefrom, &off);
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001516 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001517 goto release_matches;
1518 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001519 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001520
Patrick McHardy73cd5982007-12-17 21:47:32 -08001521 t = compat_ipt_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001522 target = xt_request_find_target(NFPROTO_IPV4, t->u.user.name,
1523 t->u.user.revision);
1524 if (IS_ERR(target)) {
Dmitry Mishina96be242006-12-12 00:29:26 -08001525 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001526 t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001527 ret = PTR_ERR(target);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001528 goto release_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001529 }
1530 t->u.kernel.target = target;
1531
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001532 off += xt_compat_target_offset(target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001533 *size += off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001534 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001535 if (ret)
1536 goto out;
1537
1538 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001539 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001540 if ((unsigned char *)e - base == hook_entries[h])
1541 newinfo->hook_entry[h] = hook_entries[h];
1542 if ((unsigned char *)e - base == underflows[h])
1543 newinfo->underflow[h] = underflows[h];
1544 }
1545
1546 /* Clear counters and comefrom */
Patrick McHardy73cd5982007-12-17 21:47:32 -08001547 memset(&e->counters, 0, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001548 e->comefrom = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001549 return 0;
Patrick McHardybec71b12006-09-20 12:04:08 -07001550
Dmitry Mishin27229712006-04-01 02:25:19 -08001551out:
Patrick McHardybec71b12006-09-20 12:04:08 -07001552 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001553release_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001554 xt_ematch_foreach(ematch, e) {
1555 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001556 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001557 module_put(ematch->u.kernel.match->me);
1558 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001559 return ret;
1560}
1561
Patrick McHardy4b478242007-12-17 21:46:15 -08001562static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001563compat_copy_entry_from_user(struct compat_ipt_entry *e, void **dstptr,
Patrick McHardy4b478242007-12-17 21:46:15 -08001564 unsigned int *size, const char *name,
1565 struct xt_table_info *newinfo, unsigned char *base)
Dmitry Mishin27229712006-04-01 02:25:19 -08001566{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001567 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001568 struct xt_target *target;
Dmitry Mishin27229712006-04-01 02:25:19 -08001569 struct ipt_entry *de;
1570 unsigned int origsize;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001571 int ret, h;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001572 struct xt_entry_match *ematch;
Dmitry Mishin27229712006-04-01 02:25:19 -08001573
1574 ret = 0;
1575 origsize = *size;
1576 de = (struct ipt_entry *)*dstptr;
1577 memcpy(de, e, sizeof(struct ipt_entry));
Patrick McHardy73cd5982007-12-17 21:47:32 -08001578 memcpy(&de->counters, &e->counters, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001579
Patrick McHardy73cd5982007-12-17 21:47:32 -08001580 *dstptr += sizeof(struct ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001581 *size += sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1582
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001583 xt_ematch_foreach(ematch, e) {
1584 ret = xt_compat_match_from_user(ematch, dstptr, size);
1585 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001586 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001587 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001588 de->target_offset = e->target_offset - (origsize - *size);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001589 t = compat_ipt_get_target(e);
Dmitry Mishin27229712006-04-01 02:25:19 -08001590 target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001591 xt_compat_target_from_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001592
1593 de->next_offset = e->next_offset - (origsize - *size);
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001594 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001595 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1596 newinfo->hook_entry[h] -= origsize - *size;
1597 if ((unsigned char *)de - base < newinfo->underflow[h])
1598 newinfo->underflow[h] -= origsize - *size;
1599 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001600 return ret;
1601}
Dmitry Mishin27229712006-04-01 02:25:19 -08001602
Denys Vlasenko022748a2008-01-14 23:44:05 -08001603static int
Jan Engelhardt05595182010-02-24 18:33:43 +01001604compat_check_entry(struct ipt_entry *e, struct net *net, const char *name)
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001605{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001606 struct xt_entry_match *ematch;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001607 struct xt_mtchk_param mtpar;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001608 unsigned int j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001609 int ret = 0;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001610
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001611 j = 0;
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001612 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001613 mtpar.table = name;
1614 mtpar.entryinfo = &e->ip;
1615 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +02001616 mtpar.family = NFPROTO_IPV4;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001617 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001618 ret = check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001619 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001620 goto cleanup_matches;
1621 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001622 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001623
Patrick McHardyadd67462010-02-03 13:45:12 +01001624 ret = check_target(e, net, name);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001625 if (ret)
1626 goto cleanup_matches;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001627 return 0;
1628
1629 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001630 xt_ematch_foreach(ematch, e) {
1631 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001632 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001633 cleanup_match(ematch, net);
1634 }
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001635 return ret;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001636}
1637
Dmitry Mishin27229712006-04-01 02:25:19 -08001638static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001639translate_compat_table(struct net *net,
1640 const char *name,
Patrick McHardy4b478242007-12-17 21:46:15 -08001641 unsigned int valid_hooks,
1642 struct xt_table_info **pinfo,
1643 void **pentry0,
1644 unsigned int total_size,
1645 unsigned int number,
1646 unsigned int *hook_entries,
1647 unsigned int *underflows)
Dmitry Mishin27229712006-04-01 02:25:19 -08001648{
Dmitry Mishin920b8682006-10-30 15:14:27 -08001649 unsigned int i, j;
Dmitry Mishin27229712006-04-01 02:25:19 -08001650 struct xt_table_info *newinfo, *info;
1651 void *pos, *entry0, *entry1;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001652 struct compat_ipt_entry *iter0;
1653 struct ipt_entry *iter1;
Dmitry Mishin27229712006-04-01 02:25:19 -08001654 unsigned int size;
Jan Engelhardt05595182010-02-24 18:33:43 +01001655 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001656
1657 info = *pinfo;
1658 entry0 = *pentry0;
1659 size = total_size;
1660 info->number = number;
1661
1662 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001663 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001664 info->hook_entry[i] = 0xFFFFFFFF;
1665 info->underflow[i] = 0xFFFFFFFF;
1666 }
1667
1668 duprintf("translate_compat_table: size %u\n", info->size);
Dmitry Mishin920b8682006-10-30 15:14:27 -08001669 j = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001670 xt_compat_lock(AF_INET);
Eric Dumazet255d0dc2010-12-18 18:35:15 +01001671 xt_compat_init_offsets(AF_INET, number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001672 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001673 xt_entry_foreach(iter0, entry0, total_size) {
1674 ret = check_compat_entry_size_and_hooks(iter0, info, &size,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001675 entry0,
1676 entry0 + total_size,
1677 hook_entries,
1678 underflows,
1679 name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001680 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001681 goto out_unlock;
1682 ++j;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001683 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001684
1685 ret = -EINVAL;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001686 if (j != number) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001687 duprintf("translate_compat_table: %u not %u entries\n",
Dmitry Mishin920b8682006-10-30 15:14:27 -08001688 j, number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001689 goto out_unlock;
1690 }
1691
1692 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001693 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001694 /* Only hooks which are valid */
1695 if (!(valid_hooks & (1 << i)))
1696 continue;
1697 if (info->hook_entry[i] == 0xFFFFFFFF) {
1698 duprintf("Invalid hook entry %u %u\n",
1699 i, hook_entries[i]);
1700 goto out_unlock;
1701 }
1702 if (info->underflow[i] == 0xFFFFFFFF) {
1703 duprintf("Invalid underflow %u %u\n",
1704 i, underflows[i]);
1705 goto out_unlock;
1706 }
1707 }
1708
1709 ret = -ENOMEM;
1710 newinfo = xt_alloc_table_info(size);
1711 if (!newinfo)
1712 goto out_unlock;
1713
1714 newinfo->number = number;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001715 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001716 newinfo->hook_entry[i] = info->hook_entry[i];
1717 newinfo->underflow[i] = info->underflow[i];
1718 }
1719 entry1 = newinfo->entries[raw_smp_processor_id()];
1720 pos = entry1;
Patrick McHardy4b478242007-12-17 21:46:15 -08001721 size = total_size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001722 xt_entry_foreach(iter0, entry0, total_size) {
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001723 ret = compat_copy_entry_from_user(iter0, &pos, &size,
1724 name, newinfo, entry1);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001725 if (ret != 0)
1726 break;
1727 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001728 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001729 xt_compat_unlock(AF_INET);
1730 if (ret)
1731 goto free_newinfo;
1732
1733 ret = -ELOOP;
1734 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1735 goto free_newinfo;
1736
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001737 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001738 xt_entry_foreach(iter1, entry1, newinfo->size) {
Jan Engelhardt05595182010-02-24 18:33:43 +01001739 ret = compat_check_entry(iter1, net, name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001740 if (ret != 0)
1741 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001742 ++i;
Florian Westphalcca77b72010-08-23 14:41:22 -07001743 if (strcmp(ipt_get_target(iter1)->u.user.name,
1744 XT_ERROR_TARGET) == 0)
1745 ++newinfo->stacksize;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001746 }
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001747 if (ret) {
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001748 /*
1749 * The first i matches need cleanup_entry (calls ->destroy)
1750 * because they had called ->check already. The other j-i
1751 * entries need only release.
1752 */
1753 int skip = i;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001754 j -= i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001755 xt_entry_foreach(iter0, entry0, newinfo->size) {
1756 if (skip-- > 0)
1757 continue;
Jan Engelhardt05595182010-02-24 18:33:43 +01001758 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001759 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001760 compat_release_entry(iter0);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001761 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001762 xt_entry_foreach(iter1, entry1, newinfo->size) {
1763 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001764 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001765 cleanup_entry(iter1, net);
1766 }
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001767 xt_free_table_info(newinfo);
1768 return ret;
1769 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001770
Dmitry Mishin27229712006-04-01 02:25:19 -08001771 /* And one copy for every other CPU */
Andrew Mortonfb1bb342006-06-25 05:46:43 -07001772 for_each_possible_cpu(i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001773 if (newinfo->entries[i] && newinfo->entries[i] != entry1)
1774 memcpy(newinfo->entries[i], entry1, newinfo->size);
1775
1776 *pinfo = newinfo;
1777 *pentry0 = entry1;
1778 xt_free_table_info(info);
1779 return 0;
1780
1781free_newinfo:
1782 xt_free_table_info(newinfo);
1783out:
Jan Engelhardt05595182010-02-24 18:33:43 +01001784 xt_entry_foreach(iter0, entry0, total_size) {
1785 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001786 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001787 compat_release_entry(iter0);
1788 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001789 return ret;
1790out_unlock:
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001791 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001792 xt_compat_unlock(AF_INET);
1793 goto out;
1794}
1795
1796static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001797compat_do_replace(struct net *net, void __user *user, unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001798{
1799 int ret;
1800 struct compat_ipt_replace tmp;
1801 struct xt_table_info *newinfo;
1802 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001803 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001804
1805 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1806 return -EFAULT;
1807
Dmitry Mishin27229712006-04-01 02:25:19 -08001808 /* overflow check */
Eric Dumazet259d4e42007-12-04 23:24:56 -08001809 if (tmp.size >= INT_MAX / num_possible_cpus())
Dmitry Mishin27229712006-04-01 02:25:19 -08001810 return -ENOMEM;
1811 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1812 return -ENOMEM;
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01001813 tmp.name[sizeof(tmp.name)-1] = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001814
1815 newinfo = xt_alloc_table_info(tmp.size);
1816 if (!newinfo)
1817 return -ENOMEM;
1818
Patrick McHardy9c547952007-12-17 21:52:00 -08001819 /* choose the copy that is on our node/cpu */
Dmitry Mishin27229712006-04-01 02:25:19 -08001820 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1821 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1822 tmp.size) != 0) {
1823 ret = -EFAULT;
1824 goto free_newinfo;
1825 }
1826
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001827 ret = translate_compat_table(net, tmp.name, tmp.valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001828 &newinfo, &loc_cpu_entry, tmp.size,
1829 tmp.num_entries, tmp.hook_entry,
1830 tmp.underflow);
Dmitry Mishin27229712006-04-01 02:25:19 -08001831 if (ret != 0)
1832 goto free_newinfo;
1833
1834 duprintf("compat_do_replace: Translated table\n");
1835
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001836 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001837 tmp.num_counters, compat_ptr(tmp.counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001838 if (ret)
1839 goto free_newinfo_untrans;
1840 return 0;
1841
1842 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001843 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001844 cleanup_entry(iter, net);
Dmitry Mishin27229712006-04-01 02:25:19 -08001845 free_newinfo:
1846 xt_free_table_info(newinfo);
1847 return ret;
1848}
1849
1850static int
1851compat_do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user,
Patrick McHardy4b478242007-12-17 21:46:15 -08001852 unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001853{
1854 int ret;
1855
Eric W. Biederman52e804c2012-11-16 03:03:05 +00001856 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Dmitry Mishin27229712006-04-01 02:25:19 -08001857 return -EPERM;
1858
1859 switch (cmd) {
1860 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001861 ret = compat_do_replace(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001862 break;
1863
1864 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001865 ret = do_add_counters(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001866 break;
1867
1868 default:
1869 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1870 ret = -EINVAL;
1871 }
1872
1873 return ret;
1874}
1875
Patrick McHardy4b478242007-12-17 21:46:15 -08001876struct compat_ipt_get_entries {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001877 char name[XT_TABLE_MAXNAMELEN];
Dmitry Mishin27229712006-04-01 02:25:19 -08001878 compat_uint_t size;
1879 struct compat_ipt_entry entrytable[0];
1880};
1881
Patrick McHardy4b478242007-12-17 21:46:15 -08001882static int
1883compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1884 void __user *userptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001885{
Dmitry Mishin27229712006-04-01 02:25:19 -08001886 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001887 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001888 void __user *pos;
1889 unsigned int size;
1890 int ret = 0;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001891 const void *loc_cpu_entry;
Patrick McHardya18aa312007-12-12 10:35:16 -08001892 unsigned int i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001893 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001894
1895 counters = alloc_counters(table);
1896 if (IS_ERR(counters))
1897 return PTR_ERR(counters);
1898
1899 /* choose the copy that is on our node/cpu, ...
1900 * This choice is lazy (because current thread is
1901 * allowed to migrate to another cpu)
1902 */
1903 loc_cpu_entry = private->entries[raw_smp_processor_id()];
1904 pos = userptr;
1905 size = total_size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001906 xt_entry_foreach(iter, loc_cpu_entry, total_size) {
1907 ret = compat_copy_entry_to_user(iter, &pos,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001908 &size, counters, i++);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001909 if (ret != 0)
1910 break;
1911 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001912
Dmitry Mishin27229712006-04-01 02:25:19 -08001913 vfree(counters);
1914 return ret;
1915}
1916
1917static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001918compat_get_entries(struct net *net, struct compat_ipt_get_entries __user *uptr,
1919 int *len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001920{
1921 int ret;
1922 struct compat_ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001923 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001924
Dmitry Mishin27229712006-04-01 02:25:19 -08001925 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001926 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001927 return -EINVAL;
1928 }
1929
1930 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1931 return -EFAULT;
1932
1933 if (*len != sizeof(struct compat_ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001934 duprintf("compat_get_entries: %u != %zu\n",
1935 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001936 return -EINVAL;
1937 }
1938
1939 xt_compat_lock(AF_INET);
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001940 t = xt_find_table_lock(net, AF_INET, get.name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001941 if (!IS_ERR_OR_NULL(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001942 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001943 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08001944 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001945 ret = compat_table_info(private, &info);
1946 if (!ret && get.size == info.size) {
1947 ret = compat_copy_entries_to_user(private->size,
Patrick McHardy4b478242007-12-17 21:46:15 -08001948 t, uptr->entrytable);
Dmitry Mishin27229712006-04-01 02:25:19 -08001949 } else if (!ret) {
1950 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001951 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001952 ret = -EAGAIN;
Dmitry Mishin27229712006-04-01 02:25:19 -08001953 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001954 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001955 module_put(t->me);
1956 xt_table_unlock(t);
1957 } else
1958 ret = t ? PTR_ERR(t) : -ENOENT;
1959
1960 xt_compat_unlock(AF_INET);
1961 return ret;
1962}
1963
Patrick McHardy79030ed2006-09-20 12:05:08 -07001964static int do_ipt_get_ctl(struct sock *, int, void __user *, int *);
1965
Dmitry Mishin27229712006-04-01 02:25:19 -08001966static int
1967compat_do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1968{
1969 int ret;
1970
Eric W. Biederman52e804c2012-11-16 03:03:05 +00001971 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Björn Steinbrink82fac052006-10-20 00:21:10 -07001972 return -EPERM;
1973
Dmitry Mishin27229712006-04-01 02:25:19 -08001974 switch (cmd) {
1975 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001976 ret = get_info(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001977 break;
1978 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001979 ret = compat_get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001980 break;
1981 default:
Patrick McHardy79030ed2006-09-20 12:05:08 -07001982 ret = do_ipt_get_ctl(sk, cmd, user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001983 }
1984 return ret;
1985}
1986#endif
1987
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988static int
Patrick McHardy9c547952007-12-17 21:52:00 -08001989do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990{
1991 int ret;
1992
Eric W. Biederman52e804c2012-11-16 03:03:05 +00001993 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 return -EPERM;
1995
1996 switch (cmd) {
1997 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001998 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 break;
2000
2001 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002002 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 break;
2004
2005 default:
2006 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
2007 ret = -EINVAL;
2008 }
2009
2010 return ret;
2011}
2012
2013static int
2014do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2015{
2016 int ret;
2017
Eric W. Biederman52e804c2012-11-16 03:03:05 +00002018 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 return -EPERM;
2020
2021 switch (cmd) {
Dmitry Mishin27229712006-04-01 02:25:19 -08002022 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002023 ret = get_info(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 break;
Dmitry Mishin27229712006-04-01 02:25:19 -08002025
2026 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002027 ret = get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08002028 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
2030 case IPT_SO_GET_REVISION_MATCH:
2031 case IPT_SO_GET_REVISION_TARGET: {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02002032 struct xt_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002033 int target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
2035 if (*len != sizeof(rev)) {
2036 ret = -EINVAL;
2037 break;
2038 }
2039 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2040 ret = -EFAULT;
2041 break;
2042 }
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01002043 rev.name[sizeof(rev.name)-1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
2045 if (cmd == IPT_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08002046 target = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08002048 target = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Harald Welte2e4e6a12006-01-12 13:30:04 -08002050 try_then_request_module(xt_find_revision(AF_INET, rev.name,
2051 rev.revision,
2052 target, &ret),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 "ipt_%s", rev.name);
2054 break;
2055 }
2056
2057 default:
2058 duprintf("do_ipt_get_ctl: unknown request %i\n", cmd);
2059 ret = -EINVAL;
2060 }
2061
2062 return ret;
2063}
2064
Jan Engelhardt35aad0f2009-08-24 14:56:30 +02002065struct xt_table *ipt_register_table(struct net *net,
2066 const struct xt_table *table,
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002067 const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068{
2069 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002070 struct xt_table_info *newinfo;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +02002071 struct xt_table_info bootstrap = {0};
Eric Dumazet31836062005-12-13 23:13:48 -08002072 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08002073 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Harald Welte2e4e6a12006-01-12 13:30:04 -08002075 newinfo = xt_alloc_table_info(repl->size);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002076 if (!newinfo) {
2077 ret = -ENOMEM;
2078 goto out;
2079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
Patrick McHardy9c547952007-12-17 21:52:00 -08002081 /* choose the copy on our node/cpu, but dont care about preemption */
Eric Dumazet31836062005-12-13 23:13:48 -08002082 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
2083 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Jan Engelhardt0f234212010-02-24 18:36:04 +01002085 ret = translate_table(net, newinfo, loc_cpu_entry, repl);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002086 if (ret != 0)
2087 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002089 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08002090 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002091 ret = PTR_ERR(new_table);
2092 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 }
2094
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002095 return new_table;
2096
2097out_free:
2098 xt_free_table_info(newinfo);
2099out:
2100 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101}
2102
Alexey Dobriyanf54e9362010-01-18 08:25:47 +01002103void ipt_unregister_table(struct net *net, struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104{
Harald Welte2e4e6a12006-01-12 13:30:04 -08002105 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08002106 void *loc_cpu_entry;
Alexey Dobriyandf200962008-01-31 04:05:34 -08002107 struct module *table_owner = table->me;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01002108 struct ipt_entry *iter;
Eric Dumazet31836062005-12-13 23:13:48 -08002109
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002110 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
2112 /* Decrease module usage counts and free resources */
Harald Welte2e4e6a12006-01-12 13:30:04 -08002113 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01002114 xt_entry_foreach(iter, loc_cpu_entry, private->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01002115 cleanup_entry(iter, net);
Alexey Dobriyandf200962008-01-31 04:05:34 -08002116 if (private->number > private->initial_entries)
2117 module_put(table_owner);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002118 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119}
2120
2121/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002122static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123icmp_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2124 u_int8_t type, u_int8_t code,
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002125 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126{
Patrick McHardy9c547952007-12-17 21:52:00 -08002127 return ((test_type == 0xFF) ||
2128 (type == test_type && code >= min_code && code <= max_code))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 ^ invert;
2130}
2131
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002132static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +02002133icmp_match(const struct sk_buff *skb, struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134{
Jan Engelhardt5452e422008-04-14 11:15:35 +02002135 const struct icmphdr *ic;
2136 struct icmphdr _icmph;
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002137 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
2139 /* Must not be a fragment. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002140 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002141 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002143 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 if (ic == NULL) {
2145 /* We've been asked to examine this packet, and we
2146 * can't. Hence, no choice but to drop.
2147 */
2148 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtb4ba2612009-07-07 20:54:30 +02002149 par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002150 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 }
2152
2153 return icmp_type_code_match(icmpinfo->type,
2154 icmpinfo->code[0],
2155 icmpinfo->code[1],
2156 ic->type, ic->code,
2157 !!(icmpinfo->invflags&IPT_ICMP_INV));
2158}
2159
Jan Engelhardtb0f38452010-03-19 17:16:42 +01002160static int icmp_checkentry(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002162 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002164 /* Must specify no unknown invflags */
Jan Engelhardtbd414ee2010-03-23 16:35:56 +01002165 return (icmpinfo->invflags & ~IPT_ICMP_INV) ? -EINVAL : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166}
2167
Jan Engelhardt45385062009-07-04 12:50:00 +02002168static struct xt_target ipt_builtin_tg[] __read_mostly = {
2169 {
Jan Engelhardt243bf6e2010-10-13 16:28:00 +02002170 .name = XT_STANDARD_TARGET,
Jan Engelhardt45385062009-07-04 12:50:00 +02002171 .targetsize = sizeof(int),
2172 .family = NFPROTO_IPV4,
Dmitry Mishin27229712006-04-01 02:25:19 -08002173#ifdef CONFIG_COMPAT
Jan Engelhardt45385062009-07-04 12:50:00 +02002174 .compatsize = sizeof(compat_int_t),
2175 .compat_from_user = compat_standard_from_user,
2176 .compat_to_user = compat_standard_to_user,
Dmitry Mishin27229712006-04-01 02:25:19 -08002177#endif
Jan Engelhardt45385062009-07-04 12:50:00 +02002178 },
2179 {
Jan Engelhardt243bf6e2010-10-13 16:28:00 +02002180 .name = XT_ERROR_TARGET,
Jan Engelhardt45385062009-07-04 12:50:00 +02002181 .target = ipt_error,
Jan Engelhardt12b00c22010-10-13 15:56:56 +02002182 .targetsize = XT_FUNCTION_MAXNAMELEN,
Jan Engelhardt45385062009-07-04 12:50:00 +02002183 .family = NFPROTO_IPV4,
2184 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185};
2186
2187static struct nf_sockopt_ops ipt_sockopts = {
2188 .pf = PF_INET,
2189 .set_optmin = IPT_BASE_CTL,
2190 .set_optmax = IPT_SO_SET_MAX+1,
2191 .set = do_ipt_set_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002192#ifdef CONFIG_COMPAT
2193 .compat_set = compat_do_ipt_set_ctl,
2194#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 .get_optmin = IPT_BASE_CTL,
2196 .get_optmax = IPT_SO_GET_MAX+1,
2197 .get = do_ipt_get_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002198#ifdef CONFIG_COMPAT
2199 .compat_get = compat_do_ipt_get_ctl,
2200#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002201 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202};
2203
Jan Engelhardt45385062009-07-04 12:50:00 +02002204static struct xt_match ipt_builtin_mt[] __read_mostly = {
2205 {
2206 .name = "icmp",
2207 .match = icmp_match,
2208 .matchsize = sizeof(struct ipt_icmp),
2209 .checkentry = icmp_checkentry,
2210 .proto = IPPROTO_ICMP,
2211 .family = NFPROTO_IPV4,
2212 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213};
2214
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002215static int __net_init ip_tables_net_init(struct net *net)
2216{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002217 return xt_proto_init(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002218}
2219
2220static void __net_exit ip_tables_net_exit(struct net *net)
2221{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002222 xt_proto_fini(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002223}
2224
2225static struct pernet_operations ip_tables_net_ops = {
2226 .init = ip_tables_net_init,
2227 .exit = ip_tables_net_exit,
2228};
2229
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002230static int __init ip_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231{
2232 int ret;
2233
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002234 ret = register_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002235 if (ret < 0)
2236 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002237
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002238 /* No one else will be downing sem now, so we won't sleep */
Jan Engelhardt45385062009-07-04 12:50:00 +02002239 ret = xt_register_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002240 if (ret < 0)
2241 goto err2;
Jan Engelhardt45385062009-07-04 12:50:00 +02002242 ret = xt_register_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002243 if (ret < 0)
2244 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
2246 /* Register setsockopt */
2247 ret = nf_register_sockopt(&ipt_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002248 if (ret < 0)
2249 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01002251 pr_info("(C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002253
2254err5:
Jan Engelhardt45385062009-07-04 12:50:00 +02002255 xt_unregister_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002256err4:
Jan Engelhardt45385062009-07-04 12:50:00 +02002257 xt_unregister_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002258err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002259 unregister_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002260err1:
2261 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262}
2263
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002264static void __exit ip_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265{
2266 nf_unregister_sockopt(&ipt_sockopts);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002267
Jan Engelhardt45385062009-07-04 12:50:00 +02002268 xt_unregister_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
2269 xt_unregister_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002270 unregister_pernet_subsys(&ip_tables_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271}
2272
2273EXPORT_SYMBOL(ipt_register_table);
2274EXPORT_SYMBOL(ipt_unregister_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275EXPORT_SYMBOL(ipt_do_table);
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002276module_init(ip_tables_init);
2277module_exit(ip_tables_fini);