blob: ff585bdbf850ad42d9ecd955b0263188d1e78901 [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 Engelhardt5452e422008-04-14 11:15:35 +0200257 const struct ipt_entry *root;
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200258 const char *hookname, *chainname, *comment;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100259 const struct ipt_entry *iter;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700260 unsigned int rulenum = 0;
Gao feng30e0c6a2013-03-24 23:50:40 +0000261 struct net *net = dev_net(in ? in : out);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700262
Florian Westphal482cfc32015-06-11 01:34:55 +0200263 root = get_entry(private->entries, private->hook_entry[hook]);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700264
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200265 hookname = chainname = hooknames[hook];
266 comment = comments[NF_IP_TRACE_COMMENT_RULE];
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700267
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100268 xt_entry_foreach(iter, root, private->size - private->hook_entry[hook])
269 if (get_chainname_rulenum(iter, e, hookname,
270 &chainname, &comment, &rulenum) != 0)
271 break;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700272
Pablo Neira Ayuso4017a7e2015-03-02 01:10:28 +0100273 nf_log_trace(net, AF_INET, hook, skb, in, out, &trace_loginfo,
274 "TRACE: %s:%s:%s:%u ",
275 tablename, chainname, comment, rulenum);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700276}
277#endif
278
Jan Engelhardt98e86402009-04-15 21:06:05 +0200279static inline __pure
280struct ipt_entry *ipt_next_entry(const struct ipt_entry *entry)
281{
282 return (void *)entry + entry->next_offset;
283}
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285/* Returns one of the generic firewall policies, like NF_ACCEPT. */
286unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700287ipt_do_table(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 unsigned int hook,
David S. Miller1c491ba2015-04-03 20:56:08 -0400289 const struct nf_hook_state *state,
Jan Engelhardte60a13e2007-02-07 15:12:33 -0800290 struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
292 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
Jan Engelhardt5452e422008-04-14 11:15:35 +0200293 const struct iphdr *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 /* Initializing verdict to NF_DROP keeps gcc happy. */
295 unsigned int verdict = NF_DROP;
296 const char *indev, *outdev;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200297 const void *table_base;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200298 struct ipt_entry *e, **jumpstack;
Florian Westphal7814b6e2015-07-14 17:51:08 +0200299 unsigned int stackidx, cpu;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200300 const struct xt_table_info *private;
Jan Engelhardtde74c162009-07-05 18:26:37 +0200301 struct xt_action_param acpar;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200302 unsigned int addend;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 /* Initialization */
Florian Westphal7814b6e2015-07-14 17:51:08 +0200305 stackidx = 0;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700306 ip = ip_hdr(skb);
David S. Miller1c491ba2015-04-03 20:56:08 -0400307 indev = state->in ? state->in->name : nulldevname;
308 outdev = state->out ? state->out->name : nulldevname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 /* We handle fragments by dealing with the first fragment as
310 * if it was a normal packet. All other fragments are treated
311 * normally, except that they will NEVER match rules that ask
312 * things we don't know, ie. tcp syn flag or ports). If the
313 * rule is also a fragment-specific rule, non-fragments won't
314 * match it. */
Jan Engelhardtde74c162009-07-05 18:26:37 +0200315 acpar.fragoff = ntohs(ip->frag_off) & IP_OFFSET;
316 acpar.thoff = ip_hdrlen(skb);
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200317 acpar.hotdrop = false;
David S. Miller1c491ba2015-04-03 20:56:08 -0400318 acpar.in = state->in;
319 acpar.out = state->out;
Jan Engelhardtde74c162009-07-05 18:26:37 +0200320 acpar.family = NFPROTO_IPV4;
321 acpar.hooknum = hook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 IP_NF_ASSERT(table->valid_hooks & (1 << hook));
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200324 local_bh_disable();
325 addend = xt_write_recseq_begin();
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700326 private = table->private;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200327 cpu = smp_processor_id();
Will Deaconb416c142013-10-21 13:14:53 +0100328 /*
329 * Ensure we load private-> members after we've fetched the base
330 * pointer.
331 */
332 smp_read_barrier_depends();
Florian Westphal482cfc32015-06-11 01:34:55 +0200333 table_base = private->entries;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200334 jumpstack = (struct ipt_entry **)private->jumpstack[cpu];
Florian Westphal7814b6e2015-07-14 17:51:08 +0200335
336 /* Switch to alternate jumpstack if we're being invoked via TEE.
337 * TEE issues XT_CONTINUE verdict on original skb so we must not
338 * clobber the jumpstack.
339 *
340 * For recursion via REJECT or SYNPROXY the stack will be clobbered
341 * but it is no problem since absolute verdict is issued by these.
342 */
Florian Westphaldcebd312015-07-14 17:51:09 +0200343 if (static_key_false(&xt_tee_enabled))
344 jumpstack += private->stacksize * __this_cpu_read(nf_skb_duplicated);
Stephen Hemminger78454472009-02-20 10:35:32 +0100345
Harald Welte2e4e6a12006-01-12 13:30:04 -0800346 e = get_entry(table_base, private->hook_entry[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Florian Westphal7814b6e2015-07-14 17:51:08 +0200348 pr_debug("Entering %s(hook %u), UF %p\n",
349 table->name, hook,
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200350 get_entry(table_base, private->underflow[hook]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 do {
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200353 const struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100354 const struct xt_entry_match *ematch;
Florian Westphal71ae0df2015-06-11 01:34:54 +0200355 struct xt_counters *counter;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 IP_NF_ASSERT(e);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200358 if (!ip_packet_match(ip, indev, outdev,
Jan Engelhardtde74c162009-07-05 18:26:37 +0200359 &e->ip, acpar.fragoff)) {
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100360 no_match:
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200361 e = ipt_next_entry(e);
362 continue;
363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Jan Engelhardtef53d702009-07-09 19:14:18 +0200365 xt_ematch_foreach(ematch, e) {
Jan Engelhardtde74c162009-07-05 18:26:37 +0200366 acpar.match = ematch->u.kernel.match;
367 acpar.matchinfo = ematch->data;
368 if (!acpar.match->match(skb, &acpar))
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100369 goto no_match;
Jan Engelhardtef53d702009-07-09 19:14:18 +0200370 }
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100371
Florian Westphal71ae0df2015-06-11 01:34:54 +0200372 counter = xt_get_this_cpu_counter(&e->counters);
373 ADD_COUNTER(*counter, skb->len, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200375 t = ipt_get_target(e);
376 IP_NF_ASSERT(t->u.kernel.target);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700377
Gao fengf0165882013-03-21 19:48:42 +0000378#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200379 /* The packet is traced: log it */
380 if (unlikely(skb->nf_trace))
David S. Miller1c491ba2015-04-03 20:56:08 -0400381 trace_packet(skb, hook, state->in, state->out,
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200382 table->name, private, e);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700383#endif
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200384 /* Standard target? */
385 if (!t->u.kernel.target->target) {
386 int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200388 v = ((struct xt_standard_target *)t)->verdict;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200389 if (v < 0) {
390 /* Pop from stack? */
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200391 if (v != XT_RETURN) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000392 verdict = (unsigned int)(-v) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 break;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200394 }
Florian Westphal7814b6e2015-07-14 17:51:08 +0200395 if (stackidx == 0) {
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200396 e = get_entry(table_base,
397 private->underflow[hook]);
Patrick McHardycecc74d2010-04-22 13:03:24 +0200398 pr_debug("Underflow (this is normal) "
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200399 "to %p\n", e);
400 } else {
Florian Westphal7814b6e2015-07-14 17:51:08 +0200401 e = jumpstack[--stackidx];
Patrick McHardycecc74d2010-04-22 13:03:24 +0200402 pr_debug("Pulled %p out from pos %u\n",
Florian Westphal7814b6e2015-07-14 17:51:08 +0200403 e, stackidx);
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200404 e = ipt_next_entry(e);
405 }
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200406 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
Joe Perches3666ed12009-11-23 23:17:06 +0100408 if (table_base + v != ipt_next_entry(e) &&
409 !(e->ip.flags & IPT_F_GOTO)) {
Florian Westphal7814b6e2015-07-14 17:51:08 +0200410 jumpstack[stackidx++] = e;
Patrick McHardycecc74d2010-04-22 13:03:24 +0200411 pr_debug("Pushed %p into pos %u\n",
Florian Westphal7814b6e2015-07-14 17:51:08 +0200412 e, stackidx - 1);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200415 e = get_entry(table_base, v);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200416 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200418
Jan Engelhardtde74c162009-07-05 18:26:37 +0200419 acpar.target = t->u.kernel.target;
420 acpar.targinfo = t->data;
Jan Engelhardtbb70dfa2009-04-15 21:40:13 +0200421
Jan Engelhardtde74c162009-07-05 18:26:37 +0200422 verdict = t->u.kernel.target->target(skb, &acpar);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200423 /* Target might have changed stuff. */
424 ip = ip_hdr(skb);
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200425 if (verdict == XT_CONTINUE)
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200426 e = ipt_next_entry(e);
427 else
428 /* Verdict */
429 break;
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200430 } while (!acpar.hotdrop);
Florian Westphal7814b6e2015-07-14 17:51:08 +0200431 pr_debug("Exiting %s; sp at %u\n", __func__, stackidx);
432
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200433 xt_write_recseq_end(addend);
434 local_bh_enable();
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436#ifdef DEBUG_ALLOW_ALL
437 return NF_ACCEPT;
438#else
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200439 if (acpar.hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return NF_DROP;
441 else return verdict;
442#endif
443}
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445/* Figures out from what hook each rule can be called: returns 0 if
Florian Westphal98d1bd82015-07-14 17:51:06 +0200446 * there are loops. Puts hook bitmask in comefrom.
447 *
448 * Keeps track of largest call depth seen and stores it in newinfo->stacksize.
449 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450static int
Florian Westphal98d1bd82015-07-14 17:51:06 +0200451mark_source_chains(struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800452 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Florian Westphal98d1bd82015-07-14 17:51:06 +0200454 unsigned int calldepth, max_calldepth = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 unsigned int hook;
456
457 /* No recursion; use packet counter to save back ptrs (reset
458 to 0 as we leave), and comefrom to save source hook bitmask */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800459 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 unsigned int pos = newinfo->hook_entry[hook];
Patrick McHardy9c547952007-12-17 21:52:00 -0800461 struct ipt_entry *e = (struct ipt_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 if (!(valid_hooks & (1 << hook)))
464 continue;
465
466 /* Set initial back pointer. */
467 e->counters.pcnt = pos;
Florian Westphal98d1bd82015-07-14 17:51:06 +0200468 calldepth = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 for (;;) {
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200471 const struct xt_standard_target *t
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200472 = (void *)ipt_get_target_c(e);
Al Viroe1b4b9f2006-12-12 00:29:52 -0800473 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800475 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200476 pr_err("iptables: loop hook %u pos %u %08X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 hook, pos, e->comefrom);
478 return 0;
479 }
Patrick McHardy9c547952007-12-17 21:52:00 -0800480 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 /* Unconditional return/END. */
Joe Perches3666ed12009-11-23 23:17:06 +0100483 if ((e->target_offset == sizeof(struct ipt_entry) &&
484 (strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200485 XT_STANDARD_TARGET) == 0) &&
Joe Perches3666ed12009-11-23 23:17:06 +0100486 t->verdict < 0 && unconditional(&e->ip)) ||
487 visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 unsigned int oldpos, size;
489
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100490 if ((strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200491 XT_STANDARD_TARGET) == 0) &&
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100492 t->verdict < -NF_MAX_VERDICT - 1) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800493 duprintf("mark_source_chains: bad "
494 "negative verdict (%i)\n",
495 t->verdict);
496 return 0;
497 }
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 /* Return: backtrack through the last
500 big jump. */
501 do {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800502 e->comefrom ^= (1<<NF_INET_NUMHOOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503#ifdef DEBUG_IP_FIREWALL_USER
504 if (e->comefrom
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800505 & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 duprintf("Back unset "
507 "on hook %u "
508 "rule %u\n",
509 hook, pos);
510 }
511#endif
512 oldpos = pos;
513 pos = e->counters.pcnt;
514 e->counters.pcnt = 0;
515
516 /* We're at the start. */
517 if (pos == oldpos)
518 goto next;
519
520 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800521 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 } while (oldpos == pos + e->next_offset);
523
524 /* Move along one */
525 size = e->next_offset;
526 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800527 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 e->counters.pcnt = pos;
529 pos += size;
Florian Westphal98d1bd82015-07-14 17:51:06 +0200530 WARN_ON_ONCE(calldepth == 0);
531 if (calldepth > 0)
532 --calldepth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 } else {
534 int newpos = t->verdict;
535
536 if (strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200537 XT_STANDARD_TARGET) == 0 &&
Joe Perches3666ed12009-11-23 23:17:06 +0100538 newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800539 if (newpos > newinfo->size -
540 sizeof(struct ipt_entry)) {
541 duprintf("mark_source_chains: "
542 "bad verdict (%i)\n",
543 newpos);
544 return 0;
545 }
Florian Westphal98d1bd82015-07-14 17:51:06 +0200546 if (entry0 + newpos != ipt_next_entry(e) &&
547 !(e->ip.flags & IPT_F_GOTO) &&
548 ++calldepth > max_calldepth)
549 max_calldepth = calldepth;
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 /* This a jump; chase it. */
Florian Westphal98d1bd82015-07-14 17:51:06 +0200552 duprintf("Jump rule %u -> %u, calldepth %d\n",
553 pos, newpos, calldepth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 } else {
555 /* ... this is a fallthru */
556 newpos = pos + e->next_offset;
557 }
558 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800559 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 e->counters.pcnt = pos;
561 pos = newpos;
562 }
563 }
564 next:
565 duprintf("Finished chain %u\n", hook);
566 }
Florian Westphal98d1bd82015-07-14 17:51:06 +0200567 newinfo->stacksize = max_calldepth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return 1;
569}
570
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200571static void cleanup_match(struct xt_entry_match *m, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200573 struct xt_mtdtor_param par;
574
Alexey Dobriyanf54e9362010-01-18 08:25:47 +0100575 par.net = net;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200576 par.match = m->u.kernel.match;
577 par.matchinfo = m->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200578 par.family = NFPROTO_IPV4;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200579 if (par.match->destroy != NULL)
580 par.match->destroy(&par);
581 module_put(par.match->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
Denys Vlasenko022748a2008-01-14 23:44:05 -0800584static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200585check_entry(const struct ipt_entry *e, const char *name)
Dmitry Mishina96be242006-12-12 00:29:26 -0800586{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200587 const struct xt_entry_target *t;
Dmitry Mishina96be242006-12-12 00:29:26 -0800588
589 if (!ip_checkentry(&e->ip)) {
Sebastian Andrzej Siewior63f6fe92011-06-16 17:16:37 +0200590 duprintf("ip check failed %p %s.\n", e, name);
Dmitry Mishina96be242006-12-12 00:29:26 -0800591 return -EINVAL;
592 }
593
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200594 if (e->target_offset + sizeof(struct xt_entry_target) >
Patrick McHardy9c547952007-12-17 21:52:00 -0800595 e->next_offset)
Dmitry Mishina96be242006-12-12 00:29:26 -0800596 return -EINVAL;
597
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200598 t = ipt_get_target_c(e);
Dmitry Mishina96be242006-12-12 00:29:26 -0800599 if (e->target_offset + t->u.target_size > e->next_offset)
600 return -EINVAL;
601
602 return 0;
603}
604
Denys Vlasenko022748a2008-01-14 23:44:05 -0800605static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200606check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
Dmitry Mishina96be242006-12-12 00:29:26 -0800607{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200608 const struct ipt_ip *ip = par->entryinfo;
Dmitry Mishina96be242006-12-12 00:29:26 -0800609 int ret;
610
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200611 par->match = m->u.kernel.match;
612 par->matchinfo = m->data;
613
Jan Engelhardt916a9172008-10-08 11:35:20 +0200614 ret = xt_check_match(par, m->u.match_size - sizeof(*m),
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200615 ip->proto, ip->invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200616 if (ret < 0) {
Jan Engelhardtb5cad0d2010-05-02 13:55:21 +0200617 duprintf("check failed for `%s'.\n", par->match->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200618 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800619 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200620 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800621}
622
Denys Vlasenko022748a2008-01-14 23:44:05 -0800623static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200624find_check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800626 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800627 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200629 match = xt_request_find_match(NFPROTO_IPV4, m->u.user.name,
630 m->u.user.revision);
631 if (IS_ERR(match)) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800632 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200633 return PTR_ERR(match);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
635 m->u.kernel.match = match;
636
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100637 ret = check_match(m, par);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800638 if (ret)
639 goto err;
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800642err:
643 module_put(m->u.kernel.match->me);
644 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
Patrick McHardyadd67462010-02-03 13:45:12 +0100647static int check_target(struct ipt_entry *e, struct net *net, const char *name)
Dmitry Mishina96be242006-12-12 00:29:26 -0800648{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200649 struct xt_entry_target *t = ipt_get_target(e);
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200650 struct xt_tgchk_param par = {
Patrick McHardyadd67462010-02-03 13:45:12 +0100651 .net = net,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200652 .table = name,
653 .entryinfo = e,
654 .target = t->u.kernel.target,
655 .targinfo = t->data,
656 .hook_mask = e->comefrom,
Jan Engelhardt916a9172008-10-08 11:35:20 +0200657 .family = NFPROTO_IPV4,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200658 };
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900659 int ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800660
Jan Engelhardt916a9172008-10-08 11:35:20 +0200661 ret = xt_check_target(&par, t->u.target_size - sizeof(*t),
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200662 e->ip.proto, e->ip.invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200663 if (ret < 0) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100664 duprintf("check failed for `%s'.\n",
Dmitry Mishina96be242006-12-12 00:29:26 -0800665 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200666 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800667 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200668 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800669}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Denys Vlasenko022748a2008-01-14 23:44:05 -0800671static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100672find_check_entry(struct ipt_entry *e, struct net *net, const char *name,
Jan Engelhardt05595182010-02-24 18:33:43 +0100673 unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200675 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800676 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 int ret;
678 unsigned int j;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200679 struct xt_mtchk_param mtpar;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100680 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Dmitry Mishina96be242006-12-12 00:29:26 -0800682 ret = check_entry(e, name);
683 if (ret)
684 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800685
Florian Westphal71ae0df2015-06-11 01:34:54 +0200686 e->counters.pcnt = xt_percpu_counter_alloc();
687 if (IS_ERR_VALUE(e->counters.pcnt))
688 return -ENOMEM;
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 j = 0;
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100691 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200692 mtpar.table = name;
693 mtpar.entryinfo = &e->ip;
694 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200695 mtpar.family = NFPROTO_IPV4;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100696 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100697 ret = find_check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100698 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100699 goto cleanup_matches;
700 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 t = ipt_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200704 target = xt_request_find_target(NFPROTO_IPV4, t->u.user.name,
705 t->u.user.revision);
706 if (IS_ERR(target)) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800707 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200708 ret = PTR_ERR(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 goto cleanup_matches;
710 }
711 t->u.kernel.target = target;
712
Patrick McHardyadd67462010-02-03 13:45:12 +0100713 ret = check_target(e, net, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800714 if (ret)
715 goto err;
Florian Westphal71ae0df2015-06-11 01:34:54 +0200716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800718 err:
719 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100721 xt_ematch_foreach(ematch, e) {
722 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100723 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100724 cleanup_match(ematch, net);
725 }
Florian Westphal71ae0df2015-06-11 01:34:54 +0200726
727 xt_percpu_counter_free(e->counters.pcnt);
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return ret;
730}
731
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200732static bool check_underflow(const struct ipt_entry *e)
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200733{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200734 const struct xt_entry_target *t;
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200735 unsigned int verdict;
736
737 if (!unconditional(&e->ip))
738 return false;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200739 t = ipt_get_target_c(e);
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200740 if (strcmp(t->u.user.name, XT_STANDARD_TARGET) != 0)
741 return false;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200742 verdict = ((struct xt_standard_target *)t)->verdict;
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200743 verdict = -verdict - 1;
744 return verdict == NF_DROP || verdict == NF_ACCEPT;
745}
746
Denys Vlasenko022748a2008-01-14 23:44:05 -0800747static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748check_entry_size_and_hooks(struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800749 struct xt_table_info *newinfo,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200750 const unsigned char *base,
751 const unsigned char *limit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 const unsigned int *hook_entries,
753 const unsigned int *underflows,
Jan Engelhardt05595182010-02-24 18:33:43 +0100754 unsigned int valid_hooks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
756 unsigned int h;
757
Joe Perches3666ed12009-11-23 23:17:06 +0100758 if ((unsigned long)e % __alignof__(struct ipt_entry) != 0 ||
759 (unsigned char *)e + sizeof(struct ipt_entry) >= limit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 duprintf("Bad offset %p\n", e);
761 return -EINVAL;
762 }
763
764 if (e->next_offset
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200765 < sizeof(struct ipt_entry) + sizeof(struct xt_entry_target)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 duprintf("checking: element %p size %u\n",
767 e, e->next_offset);
768 return -EINVAL;
769 }
770
771 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800772 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Jan Engelhardta7d51732009-07-18 14:52:58 +0200773 if (!(valid_hooks & (1 << h)))
774 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if ((unsigned char *)e - base == hook_entries[h])
776 newinfo->hook_entry[h] = hook_entries[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200777 if ((unsigned char *)e - base == underflows[h]) {
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200778 if (!check_underflow(e)) {
779 pr_err("Underflows must be unconditional and "
780 "use the STANDARD target with "
781 "ACCEPT/DROP\n");
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200782 return -EINVAL;
783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 newinfo->underflow[h] = underflows[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800789 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 e->comefrom = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 return 0;
792}
793
Jan Engelhardt05595182010-02-24 18:33:43 +0100794static void
795cleanup_entry(struct ipt_entry *e, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200797 struct xt_tgdtor_param par;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200798 struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100799 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100802 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100803 cleanup_match(ematch, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 t = ipt_get_target(e);
Jan Engelhardta2df1642008-10-08 11:35:19 +0200805
Patrick McHardyadd67462010-02-03 13:45:12 +0100806 par.net = net;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200807 par.target = t->u.kernel.target;
808 par.targinfo = t->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200809 par.family = NFPROTO_IPV4;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200810 if (par.target->destroy != NULL)
811 par.target->destroy(&par);
812 module_put(par.target->me);
Florian Westphal71ae0df2015-06-11 01:34:54 +0200813 xt_percpu_counter_free(e->counters.pcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814}
815
816/* Checks and translates the user-supplied table segment (held in
817 newinfo) */
818static int
Jan Engelhardt0f234212010-02-24 18:36:04 +0100819translate_table(struct net *net, struct xt_table_info *newinfo, void *entry0,
820 const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100822 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 unsigned int i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100824 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Jan Engelhardt0f234212010-02-24 18:36:04 +0100826 newinfo->size = repl->size;
827 newinfo->number = repl->num_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800830 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 newinfo->hook_entry[i] = 0xFFFFFFFF;
832 newinfo->underflow[i] = 0xFFFFFFFF;
833 }
834
835 duprintf("translate_table: size %u\n", newinfo->size);
836 i = 0;
837 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100838 xt_entry_foreach(iter, entry0, newinfo->size) {
839 ret = check_entry_size_and_hooks(iter, newinfo, entry0,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +0100840 entry0 + repl->size,
841 repl->hook_entry,
842 repl->underflow,
843 repl->valid_hooks);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100844 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +0100845 return ret;
846 ++i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Jan Engelhardt0f234212010-02-24 18:36:04 +0100849 if (i != repl->num_entries) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 duprintf("translate_table: %u not %u entries\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100851 i, repl->num_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 return -EINVAL;
853 }
854
855 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800856 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 /* Only hooks which are valid */
Jan Engelhardt0f234212010-02-24 18:36:04 +0100858 if (!(repl->valid_hooks & (1 << i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 continue;
860 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
861 duprintf("Invalid hook entry %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100862 i, repl->hook_entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 return -EINVAL;
864 }
865 if (newinfo->underflow[i] == 0xFFFFFFFF) {
866 duprintf("Invalid underflow %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100867 i, repl->underflow[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return -EINVAL;
869 }
870 }
871
Jan Engelhardt0f234212010-02-24 18:36:04 +0100872 if (!mark_source_chains(newinfo, repl->valid_hooks, entry0))
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800873 return -ELOOP;
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 /* Finally, each sanity check must pass */
876 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100877 xt_entry_foreach(iter, entry0, newinfo->size) {
Jan Engelhardt0f234212010-02-24 18:36:04 +0100878 ret = find_check_entry(iter, net, repl->name, repl->size);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100879 if (ret != 0)
880 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100881 ++i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800884 if (ret != 0) {
Jan Engelhardt05595182010-02-24 18:33:43 +0100885 xt_entry_foreach(iter, entry0, newinfo->size) {
886 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100887 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100888 cleanup_entry(iter, net);
889 }
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800890 return ret;
891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return ret;
894}
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800897get_counters(const struct xt_table_info *t,
898 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100900 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 unsigned int cpu;
902 unsigned int i;
903
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700904 for_each_possible_cpu(cpu) {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200905 seqcount_t *s = &per_cpu(xt_recseq, cpu);
Eric Dumazet83723d62011-01-10 20:11:38 +0100906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 i = 0;
Florian Westphal482cfc32015-06-11 01:34:55 +0200908 xt_entry_foreach(iter, t->entries, t->size) {
Florian Westphal71ae0df2015-06-11 01:34:54 +0200909 struct xt_counters *tmp;
Eric Dumazet83723d62011-01-10 20:11:38 +0100910 u64 bcnt, pcnt;
911 unsigned int start;
912
Florian Westphal71ae0df2015-06-11 01:34:54 +0200913 tmp = xt_get_per_cpu_counter(&iter->counters, cpu);
Eric Dumazet83723d62011-01-10 20:11:38 +0100914 do {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200915 start = read_seqcount_begin(s);
Florian Westphal71ae0df2015-06-11 01:34:54 +0200916 bcnt = tmp->bcnt;
917 pcnt = tmp->pcnt;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200918 } while (read_seqcount_retry(s, start));
Eric Dumazet83723d62011-01-10 20:11:38 +0100919
920 ADD_COUNTER(counters[i], bcnt, pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +0100921 ++i; /* macro does multi eval of i */
922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 }
Stephen Hemminger78454472009-02-20 10:35:32 +0100924}
925
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200926static struct xt_counters *alloc_counters(const struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Dmitry Mishin27229712006-04-01 02:25:19 -0800928 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800929 struct xt_counters *counters;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200930 const struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 /* We need atomic snapshot of counters: rest doesn't change
933 (other than comefrom, which userspace doesn't care
934 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800935 countersize = sizeof(struct xt_counters) * private->number;
Eric Dumazet83723d62011-01-10 20:11:38 +0100936 counters = vzalloc(countersize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 if (counters == NULL)
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700939 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700941 get_counters(private, counters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Dmitry Mishin27229712006-04-01 02:25:19 -0800943 return counters;
944}
945
946static int
947copy_entries_to_user(unsigned int total_size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200948 const struct xt_table *table,
Dmitry Mishin27229712006-04-01 02:25:19 -0800949 void __user *userptr)
950{
951 unsigned int off, num;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200952 const struct ipt_entry *e;
Dmitry Mishin27229712006-04-01 02:25:19 -0800953 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200954 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -0800955 int ret = 0;
Eric Dumazet711bdde2015-06-15 09:57:30 -0700956 const void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -0800957
958 counters = alloc_counters(table);
959 if (IS_ERR(counters))
960 return PTR_ERR(counters);
961
Florian Westphal482cfc32015-06-11 01:34:55 +0200962 loc_cpu_entry = private->entries;
Eric Dumazet31836062005-12-13 23:13:48 -0800963 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 ret = -EFAULT;
965 goto free_counters;
966 }
967
968 /* FIXME: use iterator macros --RR */
969 /* ... then go back and fix counters and names */
970 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
971 unsigned int i;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200972 const struct xt_entry_match *m;
973 const struct xt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Eric Dumazet31836062005-12-13 23:13:48 -0800975 e = (struct ipt_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if (copy_to_user(userptr + off
977 + offsetof(struct ipt_entry, counters),
978 &counters[num],
979 sizeof(counters[num])) != 0) {
980 ret = -EFAULT;
981 goto free_counters;
982 }
983
984 for (i = sizeof(struct ipt_entry);
985 i < e->target_offset;
986 i += m->u.match_size) {
987 m = (void *)e + i;
988
989 if (copy_to_user(userptr + off + i
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200990 + offsetof(struct xt_entry_match,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 u.user.name),
992 m->u.kernel.match->name,
993 strlen(m->u.kernel.match->name)+1)
994 != 0) {
995 ret = -EFAULT;
996 goto free_counters;
997 }
998 }
999
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001000 t = ipt_get_target_c(e);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 if (copy_to_user(userptr + off + e->target_offset
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001002 + offsetof(struct xt_entry_target,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 u.user.name),
1004 t->u.kernel.target->name,
1005 strlen(t->u.kernel.target->name)+1) != 0) {
1006 ret = -EFAULT;
1007 goto free_counters;
1008 }
1009 }
1010
1011 free_counters:
1012 vfree(counters);
1013 return ret;
1014}
1015
Dmitry Mishin27229712006-04-01 02:25:19 -08001016#ifdef CONFIG_COMPAT
Jan Engelhardt739674f2009-06-26 08:23:19 +02001017static void compat_standard_from_user(void *dst, const void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001018{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001019 int v = *(compat_int_t *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001020
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001021 if (v > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001022 v += xt_compat_calc_jump(AF_INET, v);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001023 memcpy(dst, &v, sizeof(v));
1024}
1025
Jan Engelhardt739674f2009-06-26 08:23:19 +02001026static int compat_standard_to_user(void __user *dst, const void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001027{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001028 compat_int_t cv = *(int *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001029
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001030 if (cv > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001031 cv -= xt_compat_calc_jump(AF_INET, cv);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001032 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001033}
1034
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001035static int compat_calc_entry(const struct ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001036 const struct xt_table_info *info,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001037 const void *base, struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001038{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001039 const struct xt_entry_match *ematch;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001040 const struct xt_entry_target *t;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001041 unsigned int entry_offset;
Dmitry Mishin27229712006-04-01 02:25:19 -08001042 int off, i, ret;
1043
Patrick McHardy30c08c42007-12-17 21:47:14 -08001044 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001045 entry_offset = (void *)e - base;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001046 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001047 off += xt_compat_match_offset(ematch->u.kernel.match);
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001048 t = ipt_get_target_c(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001049 off += xt_compat_target_offset(t->u.kernel.target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001050 newinfo->size -= off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001051 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001052 if (ret)
1053 return ret;
1054
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001055 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Patrick McHardy4b478242007-12-17 21:46:15 -08001056 if (info->hook_entry[i] &&
1057 (e < (struct ipt_entry *)(base + info->hook_entry[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001058 newinfo->hook_entry[i] -= off;
Patrick McHardy4b478242007-12-17 21:46:15 -08001059 if (info->underflow[i] &&
1060 (e < (struct ipt_entry *)(base + info->underflow[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001061 newinfo->underflow[i] -= off;
1062 }
1063 return 0;
1064}
1065
Eric Dumazet259d4e42007-12-04 23:24:56 -08001066static int compat_table_info(const struct xt_table_info *info,
Patrick McHardy4b478242007-12-17 21:46:15 -08001067 struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001068{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001069 struct ipt_entry *iter;
Eric Dumazet711bdde2015-06-15 09:57:30 -07001070 const void *loc_cpu_entry;
Jan Engelhardt05595182010-02-24 18:33:43 +01001071 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001072
1073 if (!newinfo || !info)
1074 return -EINVAL;
1075
Florian Westphal482cfc32015-06-11 01:34:55 +02001076 /* we dont care about newinfo->entries */
Eric Dumazet259d4e42007-12-04 23:24:56 -08001077 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1078 newinfo->initial_entries = 0;
Florian Westphal482cfc32015-06-11 01:34:55 +02001079 loc_cpu_entry = info->entries;
Eric Dumazet255d0dc2010-12-18 18:35:15 +01001080 xt_compat_init_offsets(AF_INET, info->number);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001081 xt_entry_foreach(iter, loc_cpu_entry, info->size) {
1082 ret = compat_calc_entry(iter, info, loc_cpu_entry, newinfo);
1083 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001084 return ret;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001085 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001086 return 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001087}
1088#endif
1089
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001090static int get_info(struct net *net, void __user *user,
1091 const int *len, int compat)
Dmitry Mishin27229712006-04-01 02:25:19 -08001092{
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001093 char name[XT_TABLE_MAXNAMELEN];
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001094 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001095 int ret;
1096
1097 if (*len != sizeof(struct ipt_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001098 duprintf("length %u != %zu\n", *len,
1099 sizeof(struct ipt_getinfo));
Dmitry Mishin27229712006-04-01 02:25:19 -08001100 return -EINVAL;
1101 }
1102
1103 if (copy_from_user(name, user, sizeof(name)) != 0)
1104 return -EFAULT;
1105
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001106 name[XT_TABLE_MAXNAMELEN-1] = '\0';
Dmitry Mishin27229712006-04-01 02:25:19 -08001107#ifdef CONFIG_COMPAT
1108 if (compat)
1109 xt_compat_lock(AF_INET);
1110#endif
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001111 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Patrick McHardy4b478242007-12-17 21:46:15 -08001112 "iptable_%s", name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001113 if (!IS_ERR_OR_NULL(t)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001114 struct ipt_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001115 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001116#ifdef CONFIG_COMPAT
Alexey Dobriyan14c7dbe2010-02-08 11:17:43 -08001117 struct xt_table_info tmp;
1118
Dmitry Mishin27229712006-04-01 02:25:19 -08001119 if (compat) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001120 ret = compat_table_info(private, &tmp);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001121 xt_compat_flush_offsets(AF_INET);
Patrick McHardy4b478242007-12-17 21:46:15 -08001122 private = &tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001123 }
1124#endif
Vasiliy Kulikovb5f15ac2010-11-03 08:45:06 +01001125 memset(&info, 0, sizeof(info));
Dmitry Mishin27229712006-04-01 02:25:19 -08001126 info.valid_hooks = t->valid_hooks;
1127 memcpy(info.hook_entry, private->hook_entry,
Patrick McHardy4b478242007-12-17 21:46:15 -08001128 sizeof(info.hook_entry));
Dmitry Mishin27229712006-04-01 02:25:19 -08001129 memcpy(info.underflow, private->underflow,
Patrick McHardy4b478242007-12-17 21:46:15 -08001130 sizeof(info.underflow));
Dmitry Mishin27229712006-04-01 02:25:19 -08001131 info.num_entries = private->number;
1132 info.size = private->size;
1133 strcpy(info.name, name);
1134
1135 if (copy_to_user(user, &info, *len) != 0)
1136 ret = -EFAULT;
1137 else
1138 ret = 0;
1139
1140 xt_table_unlock(t);
1141 module_put(t->me);
1142 } else
1143 ret = t ? PTR_ERR(t) : -ENOENT;
1144#ifdef CONFIG_COMPAT
1145 if (compat)
1146 xt_compat_unlock(AF_INET);
1147#endif
1148 return ret;
1149}
1150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001152get_entries(struct net *net, struct ipt_get_entries __user *uptr,
1153 const int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
1155 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001156 struct ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001157 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Dmitry Mishin27229712006-04-01 02:25:19 -08001159 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001160 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001161 return -EINVAL;
1162 }
1163 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1164 return -EFAULT;
1165 if (*len != sizeof(struct ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001166 duprintf("get_entries: %u != %zu\n",
1167 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001168 return -EINVAL;
1169 }
1170
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001171 t = xt_find_table_lock(net, AF_INET, get.name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001172 if (!IS_ERR_OR_NULL(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001173 const struct xt_table_info *private = t->private;
Patrick McHardy9c547952007-12-17 21:52:00 -08001174 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001175 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001176 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 t, uptr->entrytable);
1178 else {
1179 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001180 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001181 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
1183 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001184 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 } else
1186 ret = t ? PTR_ERR(t) : -ENOENT;
1187
1188 return ret;
1189}
1190
1191static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001192__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001193 struct xt_table_info *newinfo, unsigned int num_counters,
1194 void __user *counters_ptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001195{
1196 int ret;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001197 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001198 struct xt_table_info *oldinfo;
1199 struct xt_counters *counters;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001200 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001201
1202 ret = 0;
Eric Dumazet83723d62011-01-10 20:11:38 +01001203 counters = vzalloc(num_counters * sizeof(struct xt_counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001204 if (!counters) {
1205 ret = -ENOMEM;
1206 goto out;
1207 }
1208
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001209 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Dmitry Mishin27229712006-04-01 02:25:19 -08001210 "iptable_%s", name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001211 if (IS_ERR_OR_NULL(t)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001212 ret = t ? PTR_ERR(t) : -ENOENT;
1213 goto free_newinfo_counters_untrans;
1214 }
1215
1216 /* You lied! */
1217 if (valid_hooks != t->valid_hooks) {
1218 duprintf("Valid hook crap: %08X vs %08X\n",
1219 valid_hooks, t->valid_hooks);
1220 ret = -EINVAL;
1221 goto put_module;
1222 }
1223
1224 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1225 if (!oldinfo)
1226 goto put_module;
1227
1228 /* Update module usage count based on number of rules */
1229 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1230 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1231 if ((oldinfo->number > oldinfo->initial_entries) ||
1232 (newinfo->number <= oldinfo->initial_entries))
1233 module_put(t->me);
1234 if ((oldinfo->number > oldinfo->initial_entries) &&
1235 (newinfo->number <= oldinfo->initial_entries))
1236 module_put(t->me);
1237
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001238 /* Get the old counters, and synchronize with replace */
Dmitry Mishin27229712006-04-01 02:25:19 -08001239 get_counters(oldinfo, counters);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001240
Dmitry Mishin27229712006-04-01 02:25:19 -08001241 /* Decrease module usage counts and free resource */
Florian Westphal482cfc32015-06-11 01:34:55 +02001242 xt_entry_foreach(iter, oldinfo->entries, oldinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001243 cleanup_entry(iter, net);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001244
Dmitry Mishin27229712006-04-01 02:25:19 -08001245 xt_free_table_info(oldinfo);
1246 if (copy_to_user(counters_ptr, counters,
Thomas Grafc58dd2d2014-04-04 17:57:45 +02001247 sizeof(struct xt_counters) * num_counters) != 0) {
1248 /* Silent error, can't fail, new table is already in place */
1249 net_warn_ratelimited("iptables: counters copy to user failed while replacing table\n");
1250 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001251 vfree(counters);
1252 xt_table_unlock(t);
1253 return ret;
1254
1255 put_module:
1256 module_put(t->me);
1257 xt_table_unlock(t);
1258 free_newinfo_counters_untrans:
1259 vfree(counters);
1260 out:
1261 return ret;
1262}
1263
1264static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001265do_replace(struct net *net, const void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266{
1267 int ret;
1268 struct ipt_replace tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001269 struct xt_table_info *newinfo;
1270 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001271 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1274 return -EFAULT;
1275
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001276 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001277 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1278 return -ENOMEM;
Dave Jones1086bbe2015-05-19 20:55:17 -04001279 if (tmp.num_counters == 0)
1280 return -EINVAL;
1281
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01001282 tmp.name[sizeof(tmp.name)-1] = 0;
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001283
Harald Welte2e4e6a12006-01-12 13:30:04 -08001284 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 if (!newinfo)
1286 return -ENOMEM;
1287
Florian Westphal482cfc32015-06-11 01:34:55 +02001288 loc_cpu_entry = newinfo->entries;
Eric Dumazet31836062005-12-13 23:13:48 -08001289 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 tmp.size) != 0) {
1291 ret = -EFAULT;
1292 goto free_newinfo;
1293 }
1294
Jan Engelhardt0f234212010-02-24 18:36:04 +01001295 ret = translate_table(net, newinfo, loc_cpu_entry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 if (ret != 0)
Dmitry Mishin27229712006-04-01 02:25:19 -08001297 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01001299 duprintf("Translated table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001301 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001302 tmp.num_counters, tmp.counters);
Dmitry Mishin27229712006-04-01 02:25:19 -08001303 if (ret)
1304 goto free_newinfo_untrans;
1305 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Dmitry Mishin27229712006-04-01 02:25:19 -08001307 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001308 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001309 cleanup_entry(iter, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001311 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 return ret;
1313}
1314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001316do_add_counters(struct net *net, const void __user *user,
1317 unsigned int len, int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
Florian Westphal482cfc32015-06-11 01:34:55 +02001319 unsigned int i;
Dmitry Mishin27229712006-04-01 02:25:19 -08001320 struct xt_counters_info tmp;
1321 struct xt_counters *paddc;
1322 unsigned int num_counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001323 const char *name;
Dmitry Mishin27229712006-04-01 02:25:19 -08001324 int size;
1325 void *ptmp;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001326 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001327 const struct xt_table_info *private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 int ret = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001329 struct ipt_entry *iter;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001330 unsigned int addend;
Dmitry Mishin27229712006-04-01 02:25:19 -08001331#ifdef CONFIG_COMPAT
1332 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Dmitry Mishin27229712006-04-01 02:25:19 -08001334 if (compat) {
1335 ptmp = &compat_tmp;
1336 size = sizeof(struct compat_xt_counters_info);
1337 } else
1338#endif
1339 {
1340 ptmp = &tmp;
1341 size = sizeof(struct xt_counters_info);
1342 }
1343
1344 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 return -EFAULT;
1346
Dmitry Mishin27229712006-04-01 02:25:19 -08001347#ifdef CONFIG_COMPAT
1348 if (compat) {
1349 num_counters = compat_tmp.num_counters;
1350 name = compat_tmp.name;
1351 } else
1352#endif
1353 {
1354 num_counters = tmp.num_counters;
1355 name = tmp.name;
1356 }
1357
1358 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 return -EINVAL;
1360
Eric Dumazete12f8e22010-06-04 13:31:29 +02001361 paddc = vmalloc(len - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 if (!paddc)
1363 return -ENOMEM;
1364
Dmitry Mishin27229712006-04-01 02:25:19 -08001365 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 ret = -EFAULT;
1367 goto free;
1368 }
1369
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001370 t = xt_find_table_lock(net, AF_INET, name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001371 if (IS_ERR_OR_NULL(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 ret = t ? PTR_ERR(t) : -ENOENT;
1373 goto free;
1374 }
1375
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001376 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001377 private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001378 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 ret = -EINVAL;
1380 goto unlock_up_free;
1381 }
1382
1383 i = 0;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001384 addend = xt_write_recseq_begin();
Florian Westphal482cfc32015-06-11 01:34:55 +02001385 xt_entry_foreach(iter, private->entries, private->size) {
Florian Westphal71ae0df2015-06-11 01:34:54 +02001386 struct xt_counters *tmp;
1387
1388 tmp = xt_get_this_cpu_counter(&iter->counters);
1389 ADD_COUNTER(*tmp, paddc[i].bcnt, paddc[i].pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +01001390 ++i;
1391 }
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001392 xt_write_recseq_end(addend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 unlock_up_free:
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001394 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001395 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 module_put(t->me);
1397 free:
1398 vfree(paddc);
1399
1400 return ret;
1401}
1402
Dmitry Mishin27229712006-04-01 02:25:19 -08001403#ifdef CONFIG_COMPAT
1404struct compat_ipt_replace {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001405 char name[XT_TABLE_MAXNAMELEN];
Dmitry Mishin27229712006-04-01 02:25:19 -08001406 u32 valid_hooks;
1407 u32 num_entries;
1408 u32 size;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001409 u32 hook_entry[NF_INET_NUMHOOKS];
1410 u32 underflow[NF_INET_NUMHOOKS];
Dmitry Mishin27229712006-04-01 02:25:19 -08001411 u32 num_counters;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001412 compat_uptr_t counters; /* struct xt_counters * */
Dmitry Mishin27229712006-04-01 02:25:19 -08001413 struct compat_ipt_entry entries[0];
1414};
1415
Patrick McHardya18aa312007-12-12 10:35:16 -08001416static int
1417compat_copy_entry_to_user(struct ipt_entry *e, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001418 unsigned int *size, struct xt_counters *counters,
Jan Engelhardt05595182010-02-24 18:33:43 +01001419 unsigned int i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001420{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001421 struct xt_entry_target *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001422 struct compat_ipt_entry __user *ce;
1423 u_int16_t target_offset, next_offset;
1424 compat_uint_t origsize;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001425 const struct xt_entry_match *ematch;
1426 int ret = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001427
Dmitry Mishin27229712006-04-01 02:25:19 -08001428 origsize = *size;
1429 ce = (struct compat_ipt_entry __user *)*dstptr;
Jan Engelhardt05595182010-02-24 18:33:43 +01001430 if (copy_to_user(ce, e, sizeof(struct ipt_entry)) != 0 ||
1431 copy_to_user(&ce->counters, &counters[i],
1432 sizeof(counters[i])) != 0)
1433 return -EFAULT;
Patrick McHardya18aa312007-12-12 10:35:16 -08001434
Dmitry Mishin27229712006-04-01 02:25:19 -08001435 *dstptr += sizeof(struct compat_ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001436 *size -= sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1437
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001438 xt_ematch_foreach(ematch, e) {
1439 ret = xt_compat_match_to_user(ematch, dstptr, size);
1440 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001441 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001442 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001443 target_offset = e->target_offset - (origsize - *size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001444 t = ipt_get_target(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001445 ret = xt_compat_target_to_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001446 if (ret)
Jan Engelhardt05595182010-02-24 18:33:43 +01001447 return ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001448 next_offset = e->next_offset - (origsize - *size);
Jan Engelhardt05595182010-02-24 18:33:43 +01001449 if (put_user(target_offset, &ce->target_offset) != 0 ||
1450 put_user(next_offset, &ce->next_offset) != 0)
1451 return -EFAULT;
Dmitry Mishin27229712006-04-01 02:25:19 -08001452 return 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001453}
1454
Denys Vlasenko022748a2008-01-14 23:44:05 -08001455static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001456compat_find_calc_match(struct xt_entry_match *m,
Patrick McHardy4b478242007-12-17 21:46:15 -08001457 const char *name,
1458 const struct ipt_ip *ip,
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001459 int *size)
Dmitry Mishin27229712006-04-01 02:25:19 -08001460{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001461 struct xt_match *match;
Dmitry Mishin27229712006-04-01 02:25:19 -08001462
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001463 match = xt_request_find_match(NFPROTO_IPV4, m->u.user.name,
1464 m->u.user.revision);
1465 if (IS_ERR(match)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001466 duprintf("compat_check_calc_match: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001467 m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001468 return PTR_ERR(match);
Dmitry Mishin27229712006-04-01 02:25:19 -08001469 }
1470 m->u.kernel.match = match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001471 *size += xt_compat_match_offset(match);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001472 return 0;
1473}
1474
Jan Engelhardt05595182010-02-24 18:33:43 +01001475static void compat_release_entry(struct compat_ipt_entry *e)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001476{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001477 struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001478 struct xt_entry_match *ematch;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001479
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001480 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001481 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001482 module_put(ematch->u.kernel.match->me);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001483 t = compat_ipt_get_target(e);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001484 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001485}
1486
Denys Vlasenko022748a2008-01-14 23:44:05 -08001487static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001488check_compat_entry_size_and_hooks(struct compat_ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001489 struct xt_table_info *newinfo,
1490 unsigned int *size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001491 const unsigned char *base,
1492 const unsigned char *limit,
1493 const unsigned int *hook_entries,
1494 const unsigned int *underflows,
Patrick McHardy4b478242007-12-17 21:46:15 -08001495 const char *name)
Dmitry Mishin27229712006-04-01 02:25:19 -08001496{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001497 struct xt_entry_match *ematch;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001498 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001499 struct xt_target *target;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001500 unsigned int entry_offset;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001501 unsigned int j;
1502 int ret, off, h;
Dmitry Mishin27229712006-04-01 02:25:19 -08001503
1504 duprintf("check_compat_entry_size_and_hooks %p\n", e);
Joe Perches3666ed12009-11-23 23:17:06 +01001505 if ((unsigned long)e % __alignof__(struct compat_ipt_entry) != 0 ||
1506 (unsigned char *)e + sizeof(struct compat_ipt_entry) >= limit) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001507 duprintf("Bad offset %p, limit = %p\n", e, limit);
1508 return -EINVAL;
1509 }
1510
1511 if (e->next_offset < sizeof(struct compat_ipt_entry) +
Patrick McHardy4b478242007-12-17 21:46:15 -08001512 sizeof(struct compat_xt_entry_target)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001513 duprintf("checking: element %p size %u\n",
1514 e, e->next_offset);
1515 return -EINVAL;
1516 }
1517
Patrick McHardy73cd5982007-12-17 21:47:32 -08001518 /* For purposes of check_entry casting the compat entry is fine */
1519 ret = check_entry((struct ipt_entry *)e, name);
Dmitry Mishina96be242006-12-12 00:29:26 -08001520 if (ret)
1521 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -08001522
Patrick McHardy30c08c42007-12-17 21:47:14 -08001523 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001524 entry_offset = (void *)e - (void *)base;
1525 j = 0;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001526 xt_ematch_foreach(ematch, e) {
Florian Westphal2f065502015-05-24 01:00:41 +02001527 ret = compat_find_calc_match(ematch, name, &e->ip, &off);
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001528 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001529 goto release_matches;
1530 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001531 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001532
Patrick McHardy73cd5982007-12-17 21:47:32 -08001533 t = compat_ipt_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001534 target = xt_request_find_target(NFPROTO_IPV4, t->u.user.name,
1535 t->u.user.revision);
1536 if (IS_ERR(target)) {
Dmitry Mishina96be242006-12-12 00:29:26 -08001537 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001538 t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001539 ret = PTR_ERR(target);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001540 goto release_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001541 }
1542 t->u.kernel.target = target;
1543
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001544 off += xt_compat_target_offset(target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001545 *size += off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001546 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001547 if (ret)
1548 goto out;
1549
1550 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001551 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001552 if ((unsigned char *)e - base == hook_entries[h])
1553 newinfo->hook_entry[h] = hook_entries[h];
1554 if ((unsigned char *)e - base == underflows[h])
1555 newinfo->underflow[h] = underflows[h];
1556 }
1557
1558 /* Clear counters and comefrom */
Patrick McHardy73cd5982007-12-17 21:47:32 -08001559 memset(&e->counters, 0, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001560 e->comefrom = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001561 return 0;
Patrick McHardybec71b12006-09-20 12:04:08 -07001562
Dmitry Mishin27229712006-04-01 02:25:19 -08001563out:
Patrick McHardybec71b12006-09-20 12:04:08 -07001564 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001565release_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001566 xt_ematch_foreach(ematch, e) {
1567 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001568 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001569 module_put(ematch->u.kernel.match->me);
1570 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001571 return ret;
1572}
1573
Patrick McHardy4b478242007-12-17 21:46:15 -08001574static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001575compat_copy_entry_from_user(struct compat_ipt_entry *e, void **dstptr,
Patrick McHardy4b478242007-12-17 21:46:15 -08001576 unsigned int *size, const char *name,
1577 struct xt_table_info *newinfo, unsigned char *base)
Dmitry Mishin27229712006-04-01 02:25:19 -08001578{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001579 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001580 struct xt_target *target;
Dmitry Mishin27229712006-04-01 02:25:19 -08001581 struct ipt_entry *de;
1582 unsigned int origsize;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001583 int ret, h;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001584 struct xt_entry_match *ematch;
Dmitry Mishin27229712006-04-01 02:25:19 -08001585
1586 ret = 0;
1587 origsize = *size;
1588 de = (struct ipt_entry *)*dstptr;
1589 memcpy(de, e, sizeof(struct ipt_entry));
Patrick McHardy73cd5982007-12-17 21:47:32 -08001590 memcpy(&de->counters, &e->counters, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001591
Patrick McHardy73cd5982007-12-17 21:47:32 -08001592 *dstptr += sizeof(struct ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001593 *size += sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1594
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001595 xt_ematch_foreach(ematch, e) {
1596 ret = xt_compat_match_from_user(ematch, dstptr, size);
1597 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001598 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001599 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001600 de->target_offset = e->target_offset - (origsize - *size);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001601 t = compat_ipt_get_target(e);
Dmitry Mishin27229712006-04-01 02:25:19 -08001602 target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001603 xt_compat_target_from_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001604
1605 de->next_offset = e->next_offset - (origsize - *size);
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001606 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001607 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1608 newinfo->hook_entry[h] -= origsize - *size;
1609 if ((unsigned char *)de - base < newinfo->underflow[h])
1610 newinfo->underflow[h] -= origsize - *size;
1611 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001612 return ret;
1613}
Dmitry Mishin27229712006-04-01 02:25:19 -08001614
Denys Vlasenko022748a2008-01-14 23:44:05 -08001615static int
Jan Engelhardt05595182010-02-24 18:33:43 +01001616compat_check_entry(struct ipt_entry *e, struct net *net, const char *name)
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001617{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001618 struct xt_entry_match *ematch;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001619 struct xt_mtchk_param mtpar;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001620 unsigned int j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001621 int ret = 0;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001622
Florian Westphal71ae0df2015-06-11 01:34:54 +02001623 e->counters.pcnt = xt_percpu_counter_alloc();
1624 if (IS_ERR_VALUE(e->counters.pcnt))
1625 return -ENOMEM;
1626
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001627 j = 0;
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001628 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001629 mtpar.table = name;
1630 mtpar.entryinfo = &e->ip;
1631 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +02001632 mtpar.family = NFPROTO_IPV4;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001633 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001634 ret = check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001635 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001636 goto cleanup_matches;
1637 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001638 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001639
Patrick McHardyadd67462010-02-03 13:45:12 +01001640 ret = check_target(e, net, name);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001641 if (ret)
1642 goto cleanup_matches;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001643 return 0;
1644
1645 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001646 xt_ematch_foreach(ematch, e) {
1647 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001648 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001649 cleanup_match(ematch, net);
1650 }
Florian Westphal71ae0df2015-06-11 01:34:54 +02001651
1652 xt_percpu_counter_free(e->counters.pcnt);
1653
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001654 return ret;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001655}
1656
Dmitry Mishin27229712006-04-01 02:25:19 -08001657static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001658translate_compat_table(struct net *net,
1659 const char *name,
Patrick McHardy4b478242007-12-17 21:46:15 -08001660 unsigned int valid_hooks,
1661 struct xt_table_info **pinfo,
1662 void **pentry0,
1663 unsigned int total_size,
1664 unsigned int number,
1665 unsigned int *hook_entries,
1666 unsigned int *underflows)
Dmitry Mishin27229712006-04-01 02:25:19 -08001667{
Dmitry Mishin920b8682006-10-30 15:14:27 -08001668 unsigned int i, j;
Dmitry Mishin27229712006-04-01 02:25:19 -08001669 struct xt_table_info *newinfo, *info;
1670 void *pos, *entry0, *entry1;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001671 struct compat_ipt_entry *iter0;
1672 struct ipt_entry *iter1;
Dmitry Mishin27229712006-04-01 02:25:19 -08001673 unsigned int size;
Jan Engelhardt05595182010-02-24 18:33:43 +01001674 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001675
1676 info = *pinfo;
1677 entry0 = *pentry0;
1678 size = total_size;
1679 info->number = number;
1680
1681 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001682 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001683 info->hook_entry[i] = 0xFFFFFFFF;
1684 info->underflow[i] = 0xFFFFFFFF;
1685 }
1686
1687 duprintf("translate_compat_table: size %u\n", info->size);
Dmitry Mishin920b8682006-10-30 15:14:27 -08001688 j = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001689 xt_compat_lock(AF_INET);
Eric Dumazet255d0dc2010-12-18 18:35:15 +01001690 xt_compat_init_offsets(AF_INET, number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001691 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001692 xt_entry_foreach(iter0, entry0, total_size) {
1693 ret = check_compat_entry_size_and_hooks(iter0, info, &size,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001694 entry0,
1695 entry0 + total_size,
1696 hook_entries,
1697 underflows,
1698 name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001699 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001700 goto out_unlock;
1701 ++j;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001702 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001703
1704 ret = -EINVAL;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001705 if (j != number) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001706 duprintf("translate_compat_table: %u not %u entries\n",
Dmitry Mishin920b8682006-10-30 15:14:27 -08001707 j, number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001708 goto out_unlock;
1709 }
1710
1711 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001712 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001713 /* Only hooks which are valid */
1714 if (!(valid_hooks & (1 << i)))
1715 continue;
1716 if (info->hook_entry[i] == 0xFFFFFFFF) {
1717 duprintf("Invalid hook entry %u %u\n",
1718 i, hook_entries[i]);
1719 goto out_unlock;
1720 }
1721 if (info->underflow[i] == 0xFFFFFFFF) {
1722 duprintf("Invalid underflow %u %u\n",
1723 i, underflows[i]);
1724 goto out_unlock;
1725 }
1726 }
1727
1728 ret = -ENOMEM;
1729 newinfo = xt_alloc_table_info(size);
1730 if (!newinfo)
1731 goto out_unlock;
1732
1733 newinfo->number = number;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001734 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001735 newinfo->hook_entry[i] = info->hook_entry[i];
1736 newinfo->underflow[i] = info->underflow[i];
1737 }
Florian Westphal482cfc32015-06-11 01:34:55 +02001738 entry1 = newinfo->entries;
Dmitry Mishin27229712006-04-01 02:25:19 -08001739 pos = entry1;
Patrick McHardy4b478242007-12-17 21:46:15 -08001740 size = total_size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001741 xt_entry_foreach(iter0, entry0, total_size) {
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001742 ret = compat_copy_entry_from_user(iter0, &pos, &size,
1743 name, newinfo, entry1);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001744 if (ret != 0)
1745 break;
1746 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001747 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001748 xt_compat_unlock(AF_INET);
1749 if (ret)
1750 goto free_newinfo;
1751
1752 ret = -ELOOP;
1753 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1754 goto free_newinfo;
1755
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001756 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001757 xt_entry_foreach(iter1, entry1, newinfo->size) {
Jan Engelhardt05595182010-02-24 18:33:43 +01001758 ret = compat_check_entry(iter1, net, name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001759 if (ret != 0)
1760 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001761 ++i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001762 }
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001763 if (ret) {
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001764 /*
1765 * The first i matches need cleanup_entry (calls ->destroy)
1766 * because they had called ->check already. The other j-i
1767 * entries need only release.
1768 */
1769 int skip = i;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001770 j -= i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001771 xt_entry_foreach(iter0, entry0, newinfo->size) {
1772 if (skip-- > 0)
1773 continue;
Jan Engelhardt05595182010-02-24 18:33:43 +01001774 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001775 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001776 compat_release_entry(iter0);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001777 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001778 xt_entry_foreach(iter1, entry1, newinfo->size) {
1779 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001780 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001781 cleanup_entry(iter1, net);
1782 }
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001783 xt_free_table_info(newinfo);
1784 return ret;
1785 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001786
Dmitry Mishin27229712006-04-01 02:25:19 -08001787 *pinfo = newinfo;
1788 *pentry0 = entry1;
1789 xt_free_table_info(info);
1790 return 0;
1791
1792free_newinfo:
1793 xt_free_table_info(newinfo);
1794out:
Jan Engelhardt05595182010-02-24 18:33:43 +01001795 xt_entry_foreach(iter0, entry0, total_size) {
1796 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001797 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001798 compat_release_entry(iter0);
1799 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001800 return ret;
1801out_unlock:
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001802 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001803 xt_compat_unlock(AF_INET);
1804 goto out;
1805}
1806
1807static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001808compat_do_replace(struct net *net, void __user *user, unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001809{
1810 int ret;
1811 struct compat_ipt_replace tmp;
1812 struct xt_table_info *newinfo;
1813 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001814 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001815
1816 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1817 return -EFAULT;
1818
Dmitry Mishin27229712006-04-01 02:25:19 -08001819 /* overflow check */
Eric Dumazet259d4e42007-12-04 23:24:56 -08001820 if (tmp.size >= INT_MAX / num_possible_cpus())
Dmitry Mishin27229712006-04-01 02:25:19 -08001821 return -ENOMEM;
1822 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1823 return -ENOMEM;
Dave Jones1086bbe2015-05-19 20:55:17 -04001824 if (tmp.num_counters == 0)
1825 return -EINVAL;
1826
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01001827 tmp.name[sizeof(tmp.name)-1] = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001828
1829 newinfo = xt_alloc_table_info(tmp.size);
1830 if (!newinfo)
1831 return -ENOMEM;
1832
Florian Westphal482cfc32015-06-11 01:34:55 +02001833 loc_cpu_entry = newinfo->entries;
Dmitry Mishin27229712006-04-01 02:25:19 -08001834 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1835 tmp.size) != 0) {
1836 ret = -EFAULT;
1837 goto free_newinfo;
1838 }
1839
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001840 ret = translate_compat_table(net, tmp.name, tmp.valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001841 &newinfo, &loc_cpu_entry, tmp.size,
1842 tmp.num_entries, tmp.hook_entry,
1843 tmp.underflow);
Dmitry Mishin27229712006-04-01 02:25:19 -08001844 if (ret != 0)
1845 goto free_newinfo;
1846
1847 duprintf("compat_do_replace: Translated table\n");
1848
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001849 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001850 tmp.num_counters, compat_ptr(tmp.counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001851 if (ret)
1852 goto free_newinfo_untrans;
1853 return 0;
1854
1855 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001856 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001857 cleanup_entry(iter, net);
Dmitry Mishin27229712006-04-01 02:25:19 -08001858 free_newinfo:
1859 xt_free_table_info(newinfo);
1860 return ret;
1861}
1862
1863static int
1864compat_do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user,
Patrick McHardy4b478242007-12-17 21:46:15 -08001865 unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001866{
1867 int ret;
1868
Eric W. Biederman52e804c2012-11-16 03:03:05 +00001869 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Dmitry Mishin27229712006-04-01 02:25:19 -08001870 return -EPERM;
1871
1872 switch (cmd) {
1873 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001874 ret = compat_do_replace(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001875 break;
1876
1877 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001878 ret = do_add_counters(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001879 break;
1880
1881 default:
1882 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1883 ret = -EINVAL;
1884 }
1885
1886 return ret;
1887}
1888
Patrick McHardy4b478242007-12-17 21:46:15 -08001889struct compat_ipt_get_entries {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001890 char name[XT_TABLE_MAXNAMELEN];
Dmitry Mishin27229712006-04-01 02:25:19 -08001891 compat_uint_t size;
1892 struct compat_ipt_entry entrytable[0];
1893};
1894
Patrick McHardy4b478242007-12-17 21:46:15 -08001895static int
1896compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1897 void __user *userptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001898{
Dmitry Mishin27229712006-04-01 02:25:19 -08001899 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001900 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001901 void __user *pos;
1902 unsigned int size;
1903 int ret = 0;
Patrick McHardya18aa312007-12-12 10:35:16 -08001904 unsigned int i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001905 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001906
1907 counters = alloc_counters(table);
1908 if (IS_ERR(counters))
1909 return PTR_ERR(counters);
1910
Dmitry Mishin27229712006-04-01 02:25:19 -08001911 pos = userptr;
1912 size = total_size;
Florian Westphal482cfc32015-06-11 01:34:55 +02001913 xt_entry_foreach(iter, private->entries, total_size) {
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001914 ret = compat_copy_entry_to_user(iter, &pos,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001915 &size, counters, i++);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001916 if (ret != 0)
1917 break;
1918 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001919
Dmitry Mishin27229712006-04-01 02:25:19 -08001920 vfree(counters);
1921 return ret;
1922}
1923
1924static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001925compat_get_entries(struct net *net, struct compat_ipt_get_entries __user *uptr,
1926 int *len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001927{
1928 int ret;
1929 struct compat_ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001930 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001931
Dmitry Mishin27229712006-04-01 02:25:19 -08001932 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001933 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001934 return -EINVAL;
1935 }
1936
1937 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1938 return -EFAULT;
1939
1940 if (*len != sizeof(struct compat_ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001941 duprintf("compat_get_entries: %u != %zu\n",
1942 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001943 return -EINVAL;
1944 }
1945
1946 xt_compat_lock(AF_INET);
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001947 t = xt_find_table_lock(net, AF_INET, get.name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001948 if (!IS_ERR_OR_NULL(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001949 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001950 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08001951 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001952 ret = compat_table_info(private, &info);
1953 if (!ret && get.size == info.size) {
1954 ret = compat_copy_entries_to_user(private->size,
Patrick McHardy4b478242007-12-17 21:46:15 -08001955 t, uptr->entrytable);
Dmitry Mishin27229712006-04-01 02:25:19 -08001956 } else if (!ret) {
1957 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001958 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001959 ret = -EAGAIN;
Dmitry Mishin27229712006-04-01 02:25:19 -08001960 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001961 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001962 module_put(t->me);
1963 xt_table_unlock(t);
1964 } else
1965 ret = t ? PTR_ERR(t) : -ENOENT;
1966
1967 xt_compat_unlock(AF_INET);
1968 return ret;
1969}
1970
Patrick McHardy79030ed2006-09-20 12:05:08 -07001971static int do_ipt_get_ctl(struct sock *, int, void __user *, int *);
1972
Dmitry Mishin27229712006-04-01 02:25:19 -08001973static int
1974compat_do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1975{
1976 int ret;
1977
Eric W. Biederman52e804c2012-11-16 03:03:05 +00001978 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Björn Steinbrink82fac052006-10-20 00:21:10 -07001979 return -EPERM;
1980
Dmitry Mishin27229712006-04-01 02:25:19 -08001981 switch (cmd) {
1982 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001983 ret = get_info(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001984 break;
1985 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001986 ret = compat_get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001987 break;
1988 default:
Patrick McHardy79030ed2006-09-20 12:05:08 -07001989 ret = do_ipt_get_ctl(sk, cmd, user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001990 }
1991 return ret;
1992}
1993#endif
1994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995static int
Patrick McHardy9c547952007-12-17 21:52:00 -08001996do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997{
1998 int ret;
1999
Eric W. Biederman52e804c2012-11-16 03:03:05 +00002000 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 return -EPERM;
2002
2003 switch (cmd) {
2004 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002005 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 break;
2007
2008 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002009 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 break;
2011
2012 default:
2013 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
2014 ret = -EINVAL;
2015 }
2016
2017 return ret;
2018}
2019
2020static int
2021do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2022{
2023 int ret;
2024
Eric W. Biederman52e804c2012-11-16 03:03:05 +00002025 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 return -EPERM;
2027
2028 switch (cmd) {
Dmitry Mishin27229712006-04-01 02:25:19 -08002029 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002030 ret = get_info(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 break;
Dmitry Mishin27229712006-04-01 02:25:19 -08002032
2033 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002034 ret = get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08002035 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
2037 case IPT_SO_GET_REVISION_MATCH:
2038 case IPT_SO_GET_REVISION_TARGET: {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02002039 struct xt_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002040 int target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
2042 if (*len != sizeof(rev)) {
2043 ret = -EINVAL;
2044 break;
2045 }
2046 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2047 ret = -EFAULT;
2048 break;
2049 }
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01002050 rev.name[sizeof(rev.name)-1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
2052 if (cmd == IPT_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08002053 target = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08002055 target = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Harald Welte2e4e6a12006-01-12 13:30:04 -08002057 try_then_request_module(xt_find_revision(AF_INET, rev.name,
2058 rev.revision,
2059 target, &ret),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 "ipt_%s", rev.name);
2061 break;
2062 }
2063
2064 default:
2065 duprintf("do_ipt_get_ctl: unknown request %i\n", cmd);
2066 ret = -EINVAL;
2067 }
2068
2069 return ret;
2070}
2071
Jan Engelhardt35aad0f2009-08-24 14:56:30 +02002072struct xt_table *ipt_register_table(struct net *net,
2073 const struct xt_table *table,
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002074 const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075{
2076 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002077 struct xt_table_info *newinfo;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +02002078 struct xt_table_info bootstrap = {0};
Eric Dumazet31836062005-12-13 23:13:48 -08002079 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08002080 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Harald Welte2e4e6a12006-01-12 13:30:04 -08002082 newinfo = xt_alloc_table_info(repl->size);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002083 if (!newinfo) {
2084 ret = -ENOMEM;
2085 goto out;
2086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Florian Westphal482cfc32015-06-11 01:34:55 +02002088 loc_cpu_entry = newinfo->entries;
Eric Dumazet31836062005-12-13 23:13:48 -08002089 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Jan Engelhardt0f234212010-02-24 18:36:04 +01002091 ret = translate_table(net, newinfo, loc_cpu_entry, repl);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002092 if (ret != 0)
2093 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002095 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08002096 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002097 ret = PTR_ERR(new_table);
2098 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 }
2100
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002101 return new_table;
2102
2103out_free:
2104 xt_free_table_info(newinfo);
2105out:
2106 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107}
2108
Alexey Dobriyanf54e9362010-01-18 08:25:47 +01002109void ipt_unregister_table(struct net *net, struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110{
Harald Welte2e4e6a12006-01-12 13:30:04 -08002111 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08002112 void *loc_cpu_entry;
Alexey Dobriyandf200962008-01-31 04:05:34 -08002113 struct module *table_owner = table->me;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01002114 struct ipt_entry *iter;
Eric Dumazet31836062005-12-13 23:13:48 -08002115
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002116 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118 /* Decrease module usage counts and free resources */
Florian Westphal482cfc32015-06-11 01:34:55 +02002119 loc_cpu_entry = private->entries;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01002120 xt_entry_foreach(iter, loc_cpu_entry, private->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01002121 cleanup_entry(iter, net);
Alexey Dobriyandf200962008-01-31 04:05:34 -08002122 if (private->number > private->initial_entries)
2123 module_put(table_owner);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002124 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125}
2126
2127/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002128static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129icmp_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2130 u_int8_t type, u_int8_t code,
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002131 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
Patrick McHardy9c547952007-12-17 21:52:00 -08002133 return ((test_type == 0xFF) ||
2134 (type == test_type && code >= min_code && code <= max_code))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 ^ invert;
2136}
2137
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002138static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +02002139icmp_match(const struct sk_buff *skb, struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140{
Jan Engelhardt5452e422008-04-14 11:15:35 +02002141 const struct icmphdr *ic;
2142 struct icmphdr _icmph;
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002143 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
2145 /* Must not be a fragment. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002146 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002147 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002149 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 if (ic == NULL) {
2151 /* We've been asked to examine this packet, and we
2152 * can't. Hence, no choice but to drop.
2153 */
2154 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtb4ba2612009-07-07 20:54:30 +02002155 par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002156 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 }
2158
2159 return icmp_type_code_match(icmpinfo->type,
2160 icmpinfo->code[0],
2161 icmpinfo->code[1],
2162 ic->type, ic->code,
2163 !!(icmpinfo->invflags&IPT_ICMP_INV));
2164}
2165
Jan Engelhardtb0f38452010-03-19 17:16:42 +01002166static int icmp_checkentry(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002168 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002170 /* Must specify no unknown invflags */
Jan Engelhardtbd414ee2010-03-23 16:35:56 +01002171 return (icmpinfo->invflags & ~IPT_ICMP_INV) ? -EINVAL : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172}
2173
Jan Engelhardt45385062009-07-04 12:50:00 +02002174static struct xt_target ipt_builtin_tg[] __read_mostly = {
2175 {
Jan Engelhardt243bf6e2010-10-13 16:28:00 +02002176 .name = XT_STANDARD_TARGET,
Jan Engelhardt45385062009-07-04 12:50:00 +02002177 .targetsize = sizeof(int),
2178 .family = NFPROTO_IPV4,
Dmitry Mishin27229712006-04-01 02:25:19 -08002179#ifdef CONFIG_COMPAT
Jan Engelhardt45385062009-07-04 12:50:00 +02002180 .compatsize = sizeof(compat_int_t),
2181 .compat_from_user = compat_standard_from_user,
2182 .compat_to_user = compat_standard_to_user,
Dmitry Mishin27229712006-04-01 02:25:19 -08002183#endif
Jan Engelhardt45385062009-07-04 12:50:00 +02002184 },
2185 {
Jan Engelhardt243bf6e2010-10-13 16:28:00 +02002186 .name = XT_ERROR_TARGET,
Jan Engelhardt45385062009-07-04 12:50:00 +02002187 .target = ipt_error,
Jan Engelhardt12b00c22010-10-13 15:56:56 +02002188 .targetsize = XT_FUNCTION_MAXNAMELEN,
Jan Engelhardt45385062009-07-04 12:50:00 +02002189 .family = NFPROTO_IPV4,
2190 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191};
2192
2193static struct nf_sockopt_ops ipt_sockopts = {
2194 .pf = PF_INET,
2195 .set_optmin = IPT_BASE_CTL,
2196 .set_optmax = IPT_SO_SET_MAX+1,
2197 .set = do_ipt_set_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002198#ifdef CONFIG_COMPAT
2199 .compat_set = compat_do_ipt_set_ctl,
2200#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 .get_optmin = IPT_BASE_CTL,
2202 .get_optmax = IPT_SO_GET_MAX+1,
2203 .get = do_ipt_get_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002204#ifdef CONFIG_COMPAT
2205 .compat_get = compat_do_ipt_get_ctl,
2206#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002207 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208};
2209
Jan Engelhardt45385062009-07-04 12:50:00 +02002210static struct xt_match ipt_builtin_mt[] __read_mostly = {
2211 {
2212 .name = "icmp",
2213 .match = icmp_match,
2214 .matchsize = sizeof(struct ipt_icmp),
2215 .checkentry = icmp_checkentry,
2216 .proto = IPPROTO_ICMP,
2217 .family = NFPROTO_IPV4,
2218 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219};
2220
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002221static int __net_init ip_tables_net_init(struct net *net)
2222{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002223 return xt_proto_init(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002224}
2225
2226static void __net_exit ip_tables_net_exit(struct net *net)
2227{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002228 xt_proto_fini(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002229}
2230
2231static struct pernet_operations ip_tables_net_ops = {
2232 .init = ip_tables_net_init,
2233 .exit = ip_tables_net_exit,
2234};
2235
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002236static int __init ip_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237{
2238 int ret;
2239
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002240 ret = register_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002241 if (ret < 0)
2242 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002243
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002244 /* No one else will be downing sem now, so we won't sleep */
Jan Engelhardt45385062009-07-04 12:50:00 +02002245 ret = xt_register_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002246 if (ret < 0)
2247 goto err2;
Jan Engelhardt45385062009-07-04 12:50:00 +02002248 ret = xt_register_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002249 if (ret < 0)
2250 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
2252 /* Register setsockopt */
2253 ret = nf_register_sockopt(&ipt_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002254 if (ret < 0)
2255 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01002257 pr_info("(C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002259
2260err5:
Jan Engelhardt45385062009-07-04 12:50:00 +02002261 xt_unregister_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002262err4:
Jan Engelhardt45385062009-07-04 12:50:00 +02002263 xt_unregister_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002264err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002265 unregister_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002266err1:
2267 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268}
2269
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002270static void __exit ip_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271{
2272 nf_unregister_sockopt(&ipt_sockopts);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002273
Jan Engelhardt45385062009-07-04 12:50:00 +02002274 xt_unregister_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
2275 xt_unregister_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002276 unregister_pernet_subsys(&ip_tables_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277}
2278
2279EXPORT_SYMBOL(ipt_register_table);
2280EXPORT_SYMBOL(ipt_unregister_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281EXPORT_SYMBOL(ipt_do_table);
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002282module_init(ip_tables_init);
2283module_exit(ip_tables_fini);