blob: b0a86e73451c1f2ee99e209eb8a6556414b02e46 [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
Florian Westphal6c7941d2015-07-14 17:51:10 +0200279static inline
Jan Engelhardt98e86402009-04-15 21:06:05 +0200280struct 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 Westphal98dbbfc2015-08-26 23:20:51 +0200446 there are loops. Puts hook bitmask in comefrom. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447static int
Florian Westphal98dbbfc2015-08-26 23:20:51 +0200448mark_source_chains(const struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800449 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 unsigned int hook;
452
453 /* No recursion; use packet counter to save back ptrs (reset
454 to 0 as we leave), and comefrom to save source hook bitmask */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800455 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 unsigned int pos = newinfo->hook_entry[hook];
Patrick McHardy9c547952007-12-17 21:52:00 -0800457 struct ipt_entry *e = (struct ipt_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 if (!(valid_hooks & (1 << hook)))
460 continue;
461
462 /* Set initial back pointer. */
463 e->counters.pcnt = pos;
464
465 for (;;) {
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200466 const struct xt_standard_target *t
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200467 = (void *)ipt_get_target_c(e);
Al Viroe1b4b9f2006-12-12 00:29:52 -0800468 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800470 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200471 pr_err("iptables: loop hook %u pos %u %08X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 hook, pos, e->comefrom);
473 return 0;
474 }
Patrick McHardy9c547952007-12-17 21:52:00 -0800475 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 /* Unconditional return/END. */
Joe Perches3666ed12009-11-23 23:17:06 +0100478 if ((e->target_offset == sizeof(struct ipt_entry) &&
479 (strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200480 XT_STANDARD_TARGET) == 0) &&
Joe Perches3666ed12009-11-23 23:17:06 +0100481 t->verdict < 0 && unconditional(&e->ip)) ||
482 visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 unsigned int oldpos, size;
484
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100485 if ((strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200486 XT_STANDARD_TARGET) == 0) &&
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100487 t->verdict < -NF_MAX_VERDICT - 1) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800488 duprintf("mark_source_chains: bad "
489 "negative verdict (%i)\n",
490 t->verdict);
491 return 0;
492 }
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 /* Return: backtrack through the last
495 big jump. */
496 do {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800497 e->comefrom ^= (1<<NF_INET_NUMHOOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498#ifdef DEBUG_IP_FIREWALL_USER
499 if (e->comefrom
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800500 & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 duprintf("Back unset "
502 "on hook %u "
503 "rule %u\n",
504 hook, pos);
505 }
506#endif
507 oldpos = pos;
508 pos = e->counters.pcnt;
509 e->counters.pcnt = 0;
510
511 /* We're at the start. */
512 if (pos == oldpos)
513 goto next;
514
515 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800516 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 } while (oldpos == pos + e->next_offset);
518
519 /* Move along one */
520 size = e->next_offset;
521 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800522 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 e->counters.pcnt = pos;
524 pos += size;
525 } else {
526 int newpos = t->verdict;
527
528 if (strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200529 XT_STANDARD_TARGET) == 0 &&
Joe Perches3666ed12009-11-23 23:17:06 +0100530 newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800531 if (newpos > newinfo->size -
532 sizeof(struct ipt_entry)) {
533 duprintf("mark_source_chains: "
534 "bad verdict (%i)\n",
535 newpos);
536 return 0;
537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 /* This a jump; chase it. */
Florian Westphal98dbbfc2015-08-26 23:20:51 +0200539 duprintf("Jump rule %u -> %u\n",
540 pos, newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 } else {
542 /* ... this is a fallthru */
543 newpos = pos + e->next_offset;
544 }
545 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800546 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 e->counters.pcnt = pos;
548 pos = newpos;
549 }
550 }
551 next:
552 duprintf("Finished chain %u\n", hook);
553 }
554 return 1;
555}
556
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200557static void cleanup_match(struct xt_entry_match *m, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200559 struct xt_mtdtor_param par;
560
Alexey Dobriyanf54e9362010-01-18 08:25:47 +0100561 par.net = net;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200562 par.match = m->u.kernel.match;
563 par.matchinfo = m->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200564 par.family = NFPROTO_IPV4;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200565 if (par.match->destroy != NULL)
566 par.match->destroy(&par);
567 module_put(par.match->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
Denys Vlasenko022748a2008-01-14 23:44:05 -0800570static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200571check_entry(const struct ipt_entry *e, const char *name)
Dmitry Mishina96be242006-12-12 00:29:26 -0800572{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200573 const struct xt_entry_target *t;
Dmitry Mishina96be242006-12-12 00:29:26 -0800574
575 if (!ip_checkentry(&e->ip)) {
Sebastian Andrzej Siewior63f6fe92011-06-16 17:16:37 +0200576 duprintf("ip check failed %p %s.\n", e, name);
Dmitry Mishina96be242006-12-12 00:29:26 -0800577 return -EINVAL;
578 }
579
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200580 if (e->target_offset + sizeof(struct xt_entry_target) >
Patrick McHardy9c547952007-12-17 21:52:00 -0800581 e->next_offset)
Dmitry Mishina96be242006-12-12 00:29:26 -0800582 return -EINVAL;
583
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200584 t = ipt_get_target_c(e);
Dmitry Mishina96be242006-12-12 00:29:26 -0800585 if (e->target_offset + t->u.target_size > e->next_offset)
586 return -EINVAL;
587
588 return 0;
589}
590
Denys Vlasenko022748a2008-01-14 23:44:05 -0800591static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200592check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
Dmitry Mishina96be242006-12-12 00:29:26 -0800593{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200594 const struct ipt_ip *ip = par->entryinfo;
Dmitry Mishina96be242006-12-12 00:29:26 -0800595 int ret;
596
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200597 par->match = m->u.kernel.match;
598 par->matchinfo = m->data;
599
Jan Engelhardt916a9172008-10-08 11:35:20 +0200600 ret = xt_check_match(par, m->u.match_size - sizeof(*m),
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200601 ip->proto, ip->invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200602 if (ret < 0) {
Jan Engelhardtb5cad0d2010-05-02 13:55:21 +0200603 duprintf("check failed for `%s'.\n", par->match->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200604 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800605 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200606 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800607}
608
Denys Vlasenko022748a2008-01-14 23:44:05 -0800609static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200610find_check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800612 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800613 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200615 match = xt_request_find_match(NFPROTO_IPV4, m->u.user.name,
616 m->u.user.revision);
617 if (IS_ERR(match)) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800618 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200619 return PTR_ERR(match);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
621 m->u.kernel.match = match;
622
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100623 ret = check_match(m, par);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800624 if (ret)
625 goto err;
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800628err:
629 module_put(m->u.kernel.match->me);
630 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
632
Patrick McHardyadd67462010-02-03 13:45:12 +0100633static int check_target(struct ipt_entry *e, struct net *net, const char *name)
Dmitry Mishina96be242006-12-12 00:29:26 -0800634{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200635 struct xt_entry_target *t = ipt_get_target(e);
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200636 struct xt_tgchk_param par = {
Patrick McHardyadd67462010-02-03 13:45:12 +0100637 .net = net,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200638 .table = name,
639 .entryinfo = e,
640 .target = t->u.kernel.target,
641 .targinfo = t->data,
642 .hook_mask = e->comefrom,
Jan Engelhardt916a9172008-10-08 11:35:20 +0200643 .family = NFPROTO_IPV4,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200644 };
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900645 int ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800646
Jan Engelhardt916a9172008-10-08 11:35:20 +0200647 ret = xt_check_target(&par, t->u.target_size - sizeof(*t),
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200648 e->ip.proto, e->ip.invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200649 if (ret < 0) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100650 duprintf("check failed for `%s'.\n",
Dmitry Mishina96be242006-12-12 00:29:26 -0800651 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200652 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800653 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200654 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800655}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Denys Vlasenko022748a2008-01-14 23:44:05 -0800657static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100658find_check_entry(struct ipt_entry *e, struct net *net, const char *name,
Jan Engelhardt05595182010-02-24 18:33:43 +0100659 unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200661 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800662 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 int ret;
664 unsigned int j;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200665 struct xt_mtchk_param mtpar;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100666 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Dmitry Mishina96be242006-12-12 00:29:26 -0800668 ret = check_entry(e, name);
669 if (ret)
670 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800671
Florian Westphal71ae0df2015-06-11 01:34:54 +0200672 e->counters.pcnt = xt_percpu_counter_alloc();
673 if (IS_ERR_VALUE(e->counters.pcnt))
674 return -ENOMEM;
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 j = 0;
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100677 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200678 mtpar.table = name;
679 mtpar.entryinfo = &e->ip;
680 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200681 mtpar.family = NFPROTO_IPV4;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100682 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100683 ret = find_check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100684 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100685 goto cleanup_matches;
686 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 t = ipt_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200690 target = xt_request_find_target(NFPROTO_IPV4, t->u.user.name,
691 t->u.user.revision);
692 if (IS_ERR(target)) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800693 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200694 ret = PTR_ERR(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 goto cleanup_matches;
696 }
697 t->u.kernel.target = target;
698
Patrick McHardyadd67462010-02-03 13:45:12 +0100699 ret = check_target(e, net, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800700 if (ret)
701 goto err;
Florian Westphal71ae0df2015-06-11 01:34:54 +0200702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800704 err:
705 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100707 xt_ematch_foreach(ematch, e) {
708 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100709 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100710 cleanup_match(ematch, net);
711 }
Florian Westphal71ae0df2015-06-11 01:34:54 +0200712
713 xt_percpu_counter_free(e->counters.pcnt);
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return ret;
716}
717
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200718static bool check_underflow(const struct ipt_entry *e)
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200719{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200720 const struct xt_entry_target *t;
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200721 unsigned int verdict;
722
723 if (!unconditional(&e->ip))
724 return false;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200725 t = ipt_get_target_c(e);
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200726 if (strcmp(t->u.user.name, XT_STANDARD_TARGET) != 0)
727 return false;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200728 verdict = ((struct xt_standard_target *)t)->verdict;
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200729 verdict = -verdict - 1;
730 return verdict == NF_DROP || verdict == NF_ACCEPT;
731}
732
Denys Vlasenko022748a2008-01-14 23:44:05 -0800733static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734check_entry_size_and_hooks(struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800735 struct xt_table_info *newinfo,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200736 const unsigned char *base,
737 const unsigned char *limit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 const unsigned int *hook_entries,
739 const unsigned int *underflows,
Jan Engelhardt05595182010-02-24 18:33:43 +0100740 unsigned int valid_hooks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
742 unsigned int h;
743
Joe Perches3666ed12009-11-23 23:17:06 +0100744 if ((unsigned long)e % __alignof__(struct ipt_entry) != 0 ||
745 (unsigned char *)e + sizeof(struct ipt_entry) >= limit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 duprintf("Bad offset %p\n", e);
747 return -EINVAL;
748 }
749
750 if (e->next_offset
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200751 < sizeof(struct ipt_entry) + sizeof(struct xt_entry_target)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 duprintf("checking: element %p size %u\n",
753 e, e->next_offset);
754 return -EINVAL;
755 }
756
757 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800758 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Jan Engelhardta7d51732009-07-18 14:52:58 +0200759 if (!(valid_hooks & (1 << h)))
760 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 if ((unsigned char *)e - base == hook_entries[h])
762 newinfo->hook_entry[h] = hook_entries[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200763 if ((unsigned char *)e - base == underflows[h]) {
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200764 if (!check_underflow(e)) {
765 pr_err("Underflows must be unconditional and "
766 "use the STANDARD target with "
767 "ACCEPT/DROP\n");
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200768 return -EINVAL;
769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 newinfo->underflow[h] = underflows[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800775 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 e->comefrom = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 return 0;
778}
779
Jan Engelhardt05595182010-02-24 18:33:43 +0100780static void
781cleanup_entry(struct ipt_entry *e, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200783 struct xt_tgdtor_param par;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200784 struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100785 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100788 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100789 cleanup_match(ematch, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 t = ipt_get_target(e);
Jan Engelhardta2df1642008-10-08 11:35:19 +0200791
Patrick McHardyadd67462010-02-03 13:45:12 +0100792 par.net = net;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200793 par.target = t->u.kernel.target;
794 par.targinfo = t->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200795 par.family = NFPROTO_IPV4;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200796 if (par.target->destroy != NULL)
797 par.target->destroy(&par);
798 module_put(par.target->me);
Florian Westphal71ae0df2015-06-11 01:34:54 +0200799 xt_percpu_counter_free(e->counters.pcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
801
802/* Checks and translates the user-supplied table segment (held in
803 newinfo) */
804static int
Jan Engelhardt0f234212010-02-24 18:36:04 +0100805translate_table(struct net *net, struct xt_table_info *newinfo, void *entry0,
806 const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100808 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 unsigned int i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100810 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Jan Engelhardt0f234212010-02-24 18:36:04 +0100812 newinfo->size = repl->size;
813 newinfo->number = repl->num_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800816 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 newinfo->hook_entry[i] = 0xFFFFFFFF;
818 newinfo->underflow[i] = 0xFFFFFFFF;
819 }
820
821 duprintf("translate_table: size %u\n", newinfo->size);
822 i = 0;
823 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100824 xt_entry_foreach(iter, entry0, newinfo->size) {
825 ret = check_entry_size_and_hooks(iter, newinfo, entry0,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +0100826 entry0 + repl->size,
827 repl->hook_entry,
828 repl->underflow,
829 repl->valid_hooks);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100830 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +0100831 return ret;
832 ++i;
Florian Westphal98dbbfc2015-08-26 23:20:51 +0200833 if (strcmp(ipt_get_target(iter)->u.user.name,
834 XT_ERROR_TARGET) == 0)
835 ++newinfo->stacksize;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Jan Engelhardt0f234212010-02-24 18:36:04 +0100838 if (i != repl->num_entries) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 duprintf("translate_table: %u not %u entries\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100840 i, repl->num_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 return -EINVAL;
842 }
843
844 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800845 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 /* Only hooks which are valid */
Jan Engelhardt0f234212010-02-24 18:36:04 +0100847 if (!(repl->valid_hooks & (1 << i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 continue;
849 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
850 duprintf("Invalid hook entry %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100851 i, repl->hook_entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 return -EINVAL;
853 }
854 if (newinfo->underflow[i] == 0xFFFFFFFF) {
855 duprintf("Invalid underflow %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100856 i, repl->underflow[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 return -EINVAL;
858 }
859 }
860
Jan Engelhardt0f234212010-02-24 18:36:04 +0100861 if (!mark_source_chains(newinfo, repl->valid_hooks, entry0))
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800862 return -ELOOP;
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 /* Finally, each sanity check must pass */
865 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100866 xt_entry_foreach(iter, entry0, newinfo->size) {
Jan Engelhardt0f234212010-02-24 18:36:04 +0100867 ret = find_check_entry(iter, net, repl->name, repl->size);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100868 if (ret != 0)
869 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100870 ++i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800873 if (ret != 0) {
Jan Engelhardt05595182010-02-24 18:33:43 +0100874 xt_entry_foreach(iter, entry0, newinfo->size) {
875 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100876 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100877 cleanup_entry(iter, net);
878 }
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800879 return ret;
880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 return ret;
883}
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800886get_counters(const struct xt_table_info *t,
887 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100889 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 unsigned int cpu;
891 unsigned int i;
892
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700893 for_each_possible_cpu(cpu) {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200894 seqcount_t *s = &per_cpu(xt_recseq, cpu);
Eric Dumazet83723d62011-01-10 20:11:38 +0100895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 i = 0;
Florian Westphal482cfc32015-06-11 01:34:55 +0200897 xt_entry_foreach(iter, t->entries, t->size) {
Florian Westphal71ae0df2015-06-11 01:34:54 +0200898 struct xt_counters *tmp;
Eric Dumazet83723d62011-01-10 20:11:38 +0100899 u64 bcnt, pcnt;
900 unsigned int start;
901
Florian Westphal71ae0df2015-06-11 01:34:54 +0200902 tmp = xt_get_per_cpu_counter(&iter->counters, cpu);
Eric Dumazet83723d62011-01-10 20:11:38 +0100903 do {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200904 start = read_seqcount_begin(s);
Florian Westphal71ae0df2015-06-11 01:34:54 +0200905 bcnt = tmp->bcnt;
906 pcnt = tmp->pcnt;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200907 } while (read_seqcount_retry(s, start));
Eric Dumazet83723d62011-01-10 20:11:38 +0100908
909 ADD_COUNTER(counters[i], bcnt, pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +0100910 ++i; /* macro does multi eval of i */
911 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 }
Stephen Hemminger78454472009-02-20 10:35:32 +0100913}
914
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200915static struct xt_counters *alloc_counters(const struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
Dmitry Mishin27229712006-04-01 02:25:19 -0800917 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800918 struct xt_counters *counters;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200919 const struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 /* We need atomic snapshot of counters: rest doesn't change
922 (other than comefrom, which userspace doesn't care
923 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800924 countersize = sizeof(struct xt_counters) * private->number;
Eric Dumazet83723d62011-01-10 20:11:38 +0100925 counters = vzalloc(countersize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 if (counters == NULL)
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700928 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700930 get_counters(private, counters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Dmitry Mishin27229712006-04-01 02:25:19 -0800932 return counters;
933}
934
935static int
936copy_entries_to_user(unsigned int total_size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200937 const struct xt_table *table,
Dmitry Mishin27229712006-04-01 02:25:19 -0800938 void __user *userptr)
939{
940 unsigned int off, num;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200941 const struct ipt_entry *e;
Dmitry Mishin27229712006-04-01 02:25:19 -0800942 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200943 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -0800944 int ret = 0;
Eric Dumazet711bdde2015-06-15 09:57:30 -0700945 const void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -0800946
947 counters = alloc_counters(table);
948 if (IS_ERR(counters))
949 return PTR_ERR(counters);
950
Florian Westphal482cfc32015-06-11 01:34:55 +0200951 loc_cpu_entry = private->entries;
Eric Dumazet31836062005-12-13 23:13:48 -0800952 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 ret = -EFAULT;
954 goto free_counters;
955 }
956
957 /* FIXME: use iterator macros --RR */
958 /* ... then go back and fix counters and names */
959 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
960 unsigned int i;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200961 const struct xt_entry_match *m;
962 const struct xt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Eric Dumazet31836062005-12-13 23:13:48 -0800964 e = (struct ipt_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 if (copy_to_user(userptr + off
966 + offsetof(struct ipt_entry, counters),
967 &counters[num],
968 sizeof(counters[num])) != 0) {
969 ret = -EFAULT;
970 goto free_counters;
971 }
972
973 for (i = sizeof(struct ipt_entry);
974 i < e->target_offset;
975 i += m->u.match_size) {
976 m = (void *)e + i;
977
978 if (copy_to_user(userptr + off + i
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200979 + offsetof(struct xt_entry_match,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 u.user.name),
981 m->u.kernel.match->name,
982 strlen(m->u.kernel.match->name)+1)
983 != 0) {
984 ret = -EFAULT;
985 goto free_counters;
986 }
987 }
988
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200989 t = ipt_get_target_c(e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (copy_to_user(userptr + off + e->target_offset
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200991 + offsetof(struct xt_entry_target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 u.user.name),
993 t->u.kernel.target->name,
994 strlen(t->u.kernel.target->name)+1) != 0) {
995 ret = -EFAULT;
996 goto free_counters;
997 }
998 }
999
1000 free_counters:
1001 vfree(counters);
1002 return ret;
1003}
1004
Dmitry Mishin27229712006-04-01 02:25:19 -08001005#ifdef CONFIG_COMPAT
Jan Engelhardt739674f2009-06-26 08:23:19 +02001006static void compat_standard_from_user(void *dst, const void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001007{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001008 int v = *(compat_int_t *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001009
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001010 if (v > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001011 v += xt_compat_calc_jump(AF_INET, v);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001012 memcpy(dst, &v, sizeof(v));
1013}
1014
Jan Engelhardt739674f2009-06-26 08:23:19 +02001015static int compat_standard_to_user(void __user *dst, const void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001016{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001017 compat_int_t cv = *(int *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001018
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001019 if (cv > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001020 cv -= xt_compat_calc_jump(AF_INET, cv);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001021 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001022}
1023
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001024static int compat_calc_entry(const struct ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001025 const struct xt_table_info *info,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001026 const void *base, struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001027{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001028 const struct xt_entry_match *ematch;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001029 const struct xt_entry_target *t;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001030 unsigned int entry_offset;
Dmitry Mishin27229712006-04-01 02:25:19 -08001031 int off, i, ret;
1032
Patrick McHardy30c08c42007-12-17 21:47:14 -08001033 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001034 entry_offset = (void *)e - base;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001035 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001036 off += xt_compat_match_offset(ematch->u.kernel.match);
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001037 t = ipt_get_target_c(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001038 off += xt_compat_target_offset(t->u.kernel.target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001039 newinfo->size -= off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001040 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001041 if (ret)
1042 return ret;
1043
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001044 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Patrick McHardy4b478242007-12-17 21:46:15 -08001045 if (info->hook_entry[i] &&
1046 (e < (struct ipt_entry *)(base + info->hook_entry[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001047 newinfo->hook_entry[i] -= off;
Patrick McHardy4b478242007-12-17 21:46:15 -08001048 if (info->underflow[i] &&
1049 (e < (struct ipt_entry *)(base + info->underflow[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001050 newinfo->underflow[i] -= off;
1051 }
1052 return 0;
1053}
1054
Eric Dumazet259d4e42007-12-04 23:24:56 -08001055static int compat_table_info(const struct xt_table_info *info,
Patrick McHardy4b478242007-12-17 21:46:15 -08001056 struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001057{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001058 struct ipt_entry *iter;
Eric Dumazet711bdde2015-06-15 09:57:30 -07001059 const void *loc_cpu_entry;
Jan Engelhardt05595182010-02-24 18:33:43 +01001060 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001061
1062 if (!newinfo || !info)
1063 return -EINVAL;
1064
Florian Westphal482cfc32015-06-11 01:34:55 +02001065 /* we dont care about newinfo->entries */
Eric Dumazet259d4e42007-12-04 23:24:56 -08001066 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1067 newinfo->initial_entries = 0;
Florian Westphal482cfc32015-06-11 01:34:55 +02001068 loc_cpu_entry = info->entries;
Eric Dumazet255d0dc2010-12-18 18:35:15 +01001069 xt_compat_init_offsets(AF_INET, info->number);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001070 xt_entry_foreach(iter, loc_cpu_entry, info->size) {
1071 ret = compat_calc_entry(iter, info, loc_cpu_entry, newinfo);
1072 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001073 return ret;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001074 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001075 return 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001076}
1077#endif
1078
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001079static int get_info(struct net *net, void __user *user,
1080 const int *len, int compat)
Dmitry Mishin27229712006-04-01 02:25:19 -08001081{
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001082 char name[XT_TABLE_MAXNAMELEN];
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001083 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001084 int ret;
1085
1086 if (*len != sizeof(struct ipt_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001087 duprintf("length %u != %zu\n", *len,
1088 sizeof(struct ipt_getinfo));
Dmitry Mishin27229712006-04-01 02:25:19 -08001089 return -EINVAL;
1090 }
1091
1092 if (copy_from_user(name, user, sizeof(name)) != 0)
1093 return -EFAULT;
1094
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001095 name[XT_TABLE_MAXNAMELEN-1] = '\0';
Dmitry Mishin27229712006-04-01 02:25:19 -08001096#ifdef CONFIG_COMPAT
1097 if (compat)
1098 xt_compat_lock(AF_INET);
1099#endif
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001100 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Patrick McHardy4b478242007-12-17 21:46:15 -08001101 "iptable_%s", name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001102 if (!IS_ERR_OR_NULL(t)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001103 struct ipt_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001104 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001105#ifdef CONFIG_COMPAT
Alexey Dobriyan14c7dbe2010-02-08 11:17:43 -08001106 struct xt_table_info tmp;
1107
Dmitry Mishin27229712006-04-01 02:25:19 -08001108 if (compat) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001109 ret = compat_table_info(private, &tmp);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001110 xt_compat_flush_offsets(AF_INET);
Patrick McHardy4b478242007-12-17 21:46:15 -08001111 private = &tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001112 }
1113#endif
Vasiliy Kulikovb5f15ac2010-11-03 08:45:06 +01001114 memset(&info, 0, sizeof(info));
Dmitry Mishin27229712006-04-01 02:25:19 -08001115 info.valid_hooks = t->valid_hooks;
1116 memcpy(info.hook_entry, private->hook_entry,
Patrick McHardy4b478242007-12-17 21:46:15 -08001117 sizeof(info.hook_entry));
Dmitry Mishin27229712006-04-01 02:25:19 -08001118 memcpy(info.underflow, private->underflow,
Patrick McHardy4b478242007-12-17 21:46:15 -08001119 sizeof(info.underflow));
Dmitry Mishin27229712006-04-01 02:25:19 -08001120 info.num_entries = private->number;
1121 info.size = private->size;
1122 strcpy(info.name, name);
1123
1124 if (copy_to_user(user, &info, *len) != 0)
1125 ret = -EFAULT;
1126 else
1127 ret = 0;
1128
1129 xt_table_unlock(t);
1130 module_put(t->me);
1131 } else
1132 ret = t ? PTR_ERR(t) : -ENOENT;
1133#ifdef CONFIG_COMPAT
1134 if (compat)
1135 xt_compat_unlock(AF_INET);
1136#endif
1137 return ret;
1138}
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001141get_entries(struct net *net, struct ipt_get_entries __user *uptr,
1142 const int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
1144 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001145 struct ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001146 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Dmitry Mishin27229712006-04-01 02:25:19 -08001148 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001149 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001150 return -EINVAL;
1151 }
1152 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1153 return -EFAULT;
1154 if (*len != sizeof(struct ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001155 duprintf("get_entries: %u != %zu\n",
1156 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001157 return -EINVAL;
1158 }
1159
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001160 t = xt_find_table_lock(net, AF_INET, get.name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001161 if (!IS_ERR_OR_NULL(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001162 const struct xt_table_info *private = t->private;
Patrick McHardy9c547952007-12-17 21:52:00 -08001163 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001164 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001165 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 t, uptr->entrytable);
1167 else {
1168 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001169 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001170 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 }
1172 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001173 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 } else
1175 ret = t ? PTR_ERR(t) : -ENOENT;
1176
1177 return ret;
1178}
1179
1180static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001181__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001182 struct xt_table_info *newinfo, unsigned int num_counters,
1183 void __user *counters_ptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001184{
1185 int ret;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001186 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001187 struct xt_table_info *oldinfo;
1188 struct xt_counters *counters;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001189 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001190
1191 ret = 0;
Eric Dumazet83723d62011-01-10 20:11:38 +01001192 counters = vzalloc(num_counters * sizeof(struct xt_counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001193 if (!counters) {
1194 ret = -ENOMEM;
1195 goto out;
1196 }
1197
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001198 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Dmitry Mishin27229712006-04-01 02:25:19 -08001199 "iptable_%s", name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001200 if (IS_ERR_OR_NULL(t)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001201 ret = t ? PTR_ERR(t) : -ENOENT;
1202 goto free_newinfo_counters_untrans;
1203 }
1204
1205 /* You lied! */
1206 if (valid_hooks != t->valid_hooks) {
1207 duprintf("Valid hook crap: %08X vs %08X\n",
1208 valid_hooks, t->valid_hooks);
1209 ret = -EINVAL;
1210 goto put_module;
1211 }
1212
1213 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1214 if (!oldinfo)
1215 goto put_module;
1216
1217 /* Update module usage count based on number of rules */
1218 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1219 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1220 if ((oldinfo->number > oldinfo->initial_entries) ||
1221 (newinfo->number <= oldinfo->initial_entries))
1222 module_put(t->me);
1223 if ((oldinfo->number > oldinfo->initial_entries) &&
1224 (newinfo->number <= oldinfo->initial_entries))
1225 module_put(t->me);
1226
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001227 /* Get the old counters, and synchronize with replace */
Dmitry Mishin27229712006-04-01 02:25:19 -08001228 get_counters(oldinfo, counters);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001229
Dmitry Mishin27229712006-04-01 02:25:19 -08001230 /* Decrease module usage counts and free resource */
Florian Westphal482cfc32015-06-11 01:34:55 +02001231 xt_entry_foreach(iter, oldinfo->entries, oldinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001232 cleanup_entry(iter, net);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001233
Dmitry Mishin27229712006-04-01 02:25:19 -08001234 xt_free_table_info(oldinfo);
1235 if (copy_to_user(counters_ptr, counters,
Thomas Grafc58dd2d2014-04-04 17:57:45 +02001236 sizeof(struct xt_counters) * num_counters) != 0) {
1237 /* Silent error, can't fail, new table is already in place */
1238 net_warn_ratelimited("iptables: counters copy to user failed while replacing table\n");
1239 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001240 vfree(counters);
1241 xt_table_unlock(t);
1242 return ret;
1243
1244 put_module:
1245 module_put(t->me);
1246 xt_table_unlock(t);
1247 free_newinfo_counters_untrans:
1248 vfree(counters);
1249 out:
1250 return ret;
1251}
1252
1253static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001254do_replace(struct net *net, const void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
1256 int ret;
1257 struct ipt_replace tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001258 struct xt_table_info *newinfo;
1259 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001260 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1263 return -EFAULT;
1264
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001265 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001266 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1267 return -ENOMEM;
Dave Jones1086bbe2015-05-19 20:55:17 -04001268 if (tmp.num_counters == 0)
1269 return -EINVAL;
1270
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01001271 tmp.name[sizeof(tmp.name)-1] = 0;
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001272
Harald Welte2e4e6a12006-01-12 13:30:04 -08001273 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 if (!newinfo)
1275 return -ENOMEM;
1276
Florian Westphal482cfc32015-06-11 01:34:55 +02001277 loc_cpu_entry = newinfo->entries;
Eric Dumazet31836062005-12-13 23:13:48 -08001278 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 tmp.size) != 0) {
1280 ret = -EFAULT;
1281 goto free_newinfo;
1282 }
1283
Jan Engelhardt0f234212010-02-24 18:36:04 +01001284 ret = translate_table(net, newinfo, loc_cpu_entry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 if (ret != 0)
Dmitry Mishin27229712006-04-01 02:25:19 -08001286 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01001288 duprintf("Translated table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001290 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001291 tmp.num_counters, tmp.counters);
Dmitry Mishin27229712006-04-01 02:25:19 -08001292 if (ret)
1293 goto free_newinfo_untrans;
1294 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Dmitry Mishin27229712006-04-01 02:25:19 -08001296 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001297 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001298 cleanup_entry(iter, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001300 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 return ret;
1302}
1303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001305do_add_counters(struct net *net, const void __user *user,
1306 unsigned int len, int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
Florian Westphal482cfc32015-06-11 01:34:55 +02001308 unsigned int i;
Dmitry Mishin27229712006-04-01 02:25:19 -08001309 struct xt_counters_info tmp;
1310 struct xt_counters *paddc;
1311 unsigned int num_counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001312 const char *name;
Dmitry Mishin27229712006-04-01 02:25:19 -08001313 int size;
1314 void *ptmp;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001315 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001316 const struct xt_table_info *private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 int ret = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001318 struct ipt_entry *iter;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001319 unsigned int addend;
Dmitry Mishin27229712006-04-01 02:25:19 -08001320#ifdef CONFIG_COMPAT
1321 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Dmitry Mishin27229712006-04-01 02:25:19 -08001323 if (compat) {
1324 ptmp = &compat_tmp;
1325 size = sizeof(struct compat_xt_counters_info);
1326 } else
1327#endif
1328 {
1329 ptmp = &tmp;
1330 size = sizeof(struct xt_counters_info);
1331 }
1332
1333 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 return -EFAULT;
1335
Dmitry Mishin27229712006-04-01 02:25:19 -08001336#ifdef CONFIG_COMPAT
1337 if (compat) {
1338 num_counters = compat_tmp.num_counters;
1339 name = compat_tmp.name;
1340 } else
1341#endif
1342 {
1343 num_counters = tmp.num_counters;
1344 name = tmp.name;
1345 }
1346
1347 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 return -EINVAL;
1349
Eric Dumazete12f8e22010-06-04 13:31:29 +02001350 paddc = vmalloc(len - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 if (!paddc)
1352 return -ENOMEM;
1353
Dmitry Mishin27229712006-04-01 02:25:19 -08001354 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 ret = -EFAULT;
1356 goto free;
1357 }
1358
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001359 t = xt_find_table_lock(net, AF_INET, name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001360 if (IS_ERR_OR_NULL(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 ret = t ? PTR_ERR(t) : -ENOENT;
1362 goto free;
1363 }
1364
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001365 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001366 private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001367 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 ret = -EINVAL;
1369 goto unlock_up_free;
1370 }
1371
1372 i = 0;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001373 addend = xt_write_recseq_begin();
Florian Westphal482cfc32015-06-11 01:34:55 +02001374 xt_entry_foreach(iter, private->entries, private->size) {
Florian Westphal71ae0df2015-06-11 01:34:54 +02001375 struct xt_counters *tmp;
1376
1377 tmp = xt_get_this_cpu_counter(&iter->counters);
1378 ADD_COUNTER(*tmp, paddc[i].bcnt, paddc[i].pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +01001379 ++i;
1380 }
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001381 xt_write_recseq_end(addend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 unlock_up_free:
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001383 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001384 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 module_put(t->me);
1386 free:
1387 vfree(paddc);
1388
1389 return ret;
1390}
1391
Dmitry Mishin27229712006-04-01 02:25:19 -08001392#ifdef CONFIG_COMPAT
1393struct compat_ipt_replace {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001394 char name[XT_TABLE_MAXNAMELEN];
Dmitry Mishin27229712006-04-01 02:25:19 -08001395 u32 valid_hooks;
1396 u32 num_entries;
1397 u32 size;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001398 u32 hook_entry[NF_INET_NUMHOOKS];
1399 u32 underflow[NF_INET_NUMHOOKS];
Dmitry Mishin27229712006-04-01 02:25:19 -08001400 u32 num_counters;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001401 compat_uptr_t counters; /* struct xt_counters * */
Dmitry Mishin27229712006-04-01 02:25:19 -08001402 struct compat_ipt_entry entries[0];
1403};
1404
Patrick McHardya18aa312007-12-12 10:35:16 -08001405static int
1406compat_copy_entry_to_user(struct ipt_entry *e, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001407 unsigned int *size, struct xt_counters *counters,
Jan Engelhardt05595182010-02-24 18:33:43 +01001408 unsigned int i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001409{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001410 struct xt_entry_target *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001411 struct compat_ipt_entry __user *ce;
1412 u_int16_t target_offset, next_offset;
1413 compat_uint_t origsize;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001414 const struct xt_entry_match *ematch;
1415 int ret = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001416
Dmitry Mishin27229712006-04-01 02:25:19 -08001417 origsize = *size;
1418 ce = (struct compat_ipt_entry __user *)*dstptr;
Jan Engelhardt05595182010-02-24 18:33:43 +01001419 if (copy_to_user(ce, e, sizeof(struct ipt_entry)) != 0 ||
1420 copy_to_user(&ce->counters, &counters[i],
1421 sizeof(counters[i])) != 0)
1422 return -EFAULT;
Patrick McHardya18aa312007-12-12 10:35:16 -08001423
Dmitry Mishin27229712006-04-01 02:25:19 -08001424 *dstptr += sizeof(struct compat_ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001425 *size -= sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1426
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001427 xt_ematch_foreach(ematch, e) {
1428 ret = xt_compat_match_to_user(ematch, dstptr, size);
1429 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001430 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001431 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001432 target_offset = e->target_offset - (origsize - *size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001433 t = ipt_get_target(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001434 ret = xt_compat_target_to_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001435 if (ret)
Jan Engelhardt05595182010-02-24 18:33:43 +01001436 return ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001437 next_offset = e->next_offset - (origsize - *size);
Jan Engelhardt05595182010-02-24 18:33:43 +01001438 if (put_user(target_offset, &ce->target_offset) != 0 ||
1439 put_user(next_offset, &ce->next_offset) != 0)
1440 return -EFAULT;
Dmitry Mishin27229712006-04-01 02:25:19 -08001441 return 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001442}
1443
Denys Vlasenko022748a2008-01-14 23:44:05 -08001444static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001445compat_find_calc_match(struct xt_entry_match *m,
Patrick McHardy4b478242007-12-17 21:46:15 -08001446 const char *name,
1447 const struct ipt_ip *ip,
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001448 int *size)
Dmitry Mishin27229712006-04-01 02:25:19 -08001449{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001450 struct xt_match *match;
Dmitry Mishin27229712006-04-01 02:25:19 -08001451
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001452 match = xt_request_find_match(NFPROTO_IPV4, m->u.user.name,
1453 m->u.user.revision);
1454 if (IS_ERR(match)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001455 duprintf("compat_check_calc_match: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001456 m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001457 return PTR_ERR(match);
Dmitry Mishin27229712006-04-01 02:25:19 -08001458 }
1459 m->u.kernel.match = match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001460 *size += xt_compat_match_offset(match);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001461 return 0;
1462}
1463
Jan Engelhardt05595182010-02-24 18:33:43 +01001464static void compat_release_entry(struct compat_ipt_entry *e)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001465{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001466 struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001467 struct xt_entry_match *ematch;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001468
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001469 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001470 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001471 module_put(ematch->u.kernel.match->me);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001472 t = compat_ipt_get_target(e);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001473 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001474}
1475
Denys Vlasenko022748a2008-01-14 23:44:05 -08001476static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001477check_compat_entry_size_and_hooks(struct compat_ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001478 struct xt_table_info *newinfo,
1479 unsigned int *size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001480 const unsigned char *base,
1481 const unsigned char *limit,
1482 const unsigned int *hook_entries,
1483 const unsigned int *underflows,
Patrick McHardy4b478242007-12-17 21:46:15 -08001484 const char *name)
Dmitry Mishin27229712006-04-01 02:25:19 -08001485{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001486 struct xt_entry_match *ematch;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001487 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001488 struct xt_target *target;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001489 unsigned int entry_offset;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001490 unsigned int j;
1491 int ret, off, h;
Dmitry Mishin27229712006-04-01 02:25:19 -08001492
1493 duprintf("check_compat_entry_size_and_hooks %p\n", e);
Joe Perches3666ed12009-11-23 23:17:06 +01001494 if ((unsigned long)e % __alignof__(struct compat_ipt_entry) != 0 ||
1495 (unsigned char *)e + sizeof(struct compat_ipt_entry) >= limit) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001496 duprintf("Bad offset %p, limit = %p\n", e, limit);
1497 return -EINVAL;
1498 }
1499
1500 if (e->next_offset < sizeof(struct compat_ipt_entry) +
Patrick McHardy4b478242007-12-17 21:46:15 -08001501 sizeof(struct compat_xt_entry_target)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001502 duprintf("checking: element %p size %u\n",
1503 e, e->next_offset);
1504 return -EINVAL;
1505 }
1506
Patrick McHardy73cd5982007-12-17 21:47:32 -08001507 /* For purposes of check_entry casting the compat entry is fine */
1508 ret = check_entry((struct ipt_entry *)e, name);
Dmitry Mishina96be242006-12-12 00:29:26 -08001509 if (ret)
1510 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -08001511
Patrick McHardy30c08c42007-12-17 21:47:14 -08001512 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001513 entry_offset = (void *)e - (void *)base;
1514 j = 0;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001515 xt_ematch_foreach(ematch, e) {
Florian Westphal2f065502015-05-24 01:00:41 +02001516 ret = compat_find_calc_match(ematch, name, &e->ip, &off);
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001517 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001518 goto release_matches;
1519 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001520 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001521
Patrick McHardy73cd5982007-12-17 21:47:32 -08001522 t = compat_ipt_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001523 target = xt_request_find_target(NFPROTO_IPV4, t->u.user.name,
1524 t->u.user.revision);
1525 if (IS_ERR(target)) {
Dmitry Mishina96be242006-12-12 00:29:26 -08001526 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001527 t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001528 ret = PTR_ERR(target);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001529 goto release_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001530 }
1531 t->u.kernel.target = target;
1532
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001533 off += xt_compat_target_offset(target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001534 *size += off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001535 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001536 if (ret)
1537 goto out;
1538
1539 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001540 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001541 if ((unsigned char *)e - base == hook_entries[h])
1542 newinfo->hook_entry[h] = hook_entries[h];
1543 if ((unsigned char *)e - base == underflows[h])
1544 newinfo->underflow[h] = underflows[h];
1545 }
1546
1547 /* Clear counters and comefrom */
Patrick McHardy73cd5982007-12-17 21:47:32 -08001548 memset(&e->counters, 0, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001549 e->comefrom = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001550 return 0;
Patrick McHardybec71b12006-09-20 12:04:08 -07001551
Dmitry Mishin27229712006-04-01 02:25:19 -08001552out:
Patrick McHardybec71b12006-09-20 12:04:08 -07001553 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001554release_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001555 xt_ematch_foreach(ematch, e) {
1556 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001557 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001558 module_put(ematch->u.kernel.match->me);
1559 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001560 return ret;
1561}
1562
Patrick McHardy4b478242007-12-17 21:46:15 -08001563static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001564compat_copy_entry_from_user(struct compat_ipt_entry *e, void **dstptr,
Patrick McHardy4b478242007-12-17 21:46:15 -08001565 unsigned int *size, const char *name,
1566 struct xt_table_info *newinfo, unsigned char *base)
Dmitry Mishin27229712006-04-01 02:25:19 -08001567{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001568 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001569 struct xt_target *target;
Dmitry Mishin27229712006-04-01 02:25:19 -08001570 struct ipt_entry *de;
1571 unsigned int origsize;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001572 int ret, h;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001573 struct xt_entry_match *ematch;
Dmitry Mishin27229712006-04-01 02:25:19 -08001574
1575 ret = 0;
1576 origsize = *size;
1577 de = (struct ipt_entry *)*dstptr;
1578 memcpy(de, e, sizeof(struct ipt_entry));
Patrick McHardy73cd5982007-12-17 21:47:32 -08001579 memcpy(&de->counters, &e->counters, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001580
Patrick McHardy73cd5982007-12-17 21:47:32 -08001581 *dstptr += sizeof(struct ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001582 *size += sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1583
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001584 xt_ematch_foreach(ematch, e) {
1585 ret = xt_compat_match_from_user(ematch, dstptr, size);
1586 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001587 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001588 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001589 de->target_offset = e->target_offset - (origsize - *size);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001590 t = compat_ipt_get_target(e);
Dmitry Mishin27229712006-04-01 02:25:19 -08001591 target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001592 xt_compat_target_from_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001593
1594 de->next_offset = e->next_offset - (origsize - *size);
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001595 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001596 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1597 newinfo->hook_entry[h] -= origsize - *size;
1598 if ((unsigned char *)de - base < newinfo->underflow[h])
1599 newinfo->underflow[h] -= origsize - *size;
1600 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001601 return ret;
1602}
Dmitry Mishin27229712006-04-01 02:25:19 -08001603
Denys Vlasenko022748a2008-01-14 23:44:05 -08001604static int
Jan Engelhardt05595182010-02-24 18:33:43 +01001605compat_check_entry(struct ipt_entry *e, struct net *net, const char *name)
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001606{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001607 struct xt_entry_match *ematch;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001608 struct xt_mtchk_param mtpar;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001609 unsigned int j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001610 int ret = 0;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001611
Florian Westphal71ae0df2015-06-11 01:34:54 +02001612 e->counters.pcnt = xt_percpu_counter_alloc();
1613 if (IS_ERR_VALUE(e->counters.pcnt))
1614 return -ENOMEM;
1615
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001616 j = 0;
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001617 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001618 mtpar.table = name;
1619 mtpar.entryinfo = &e->ip;
1620 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +02001621 mtpar.family = NFPROTO_IPV4;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001622 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001623 ret = check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001624 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001625 goto cleanup_matches;
1626 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001627 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001628
Patrick McHardyadd67462010-02-03 13:45:12 +01001629 ret = check_target(e, net, name);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001630 if (ret)
1631 goto cleanup_matches;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001632 return 0;
1633
1634 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001635 xt_ematch_foreach(ematch, e) {
1636 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001637 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001638 cleanup_match(ematch, net);
1639 }
Florian Westphal71ae0df2015-06-11 01:34:54 +02001640
1641 xt_percpu_counter_free(e->counters.pcnt);
1642
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001643 return ret;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001644}
1645
Dmitry Mishin27229712006-04-01 02:25:19 -08001646static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001647translate_compat_table(struct net *net,
1648 const char *name,
Patrick McHardy4b478242007-12-17 21:46:15 -08001649 unsigned int valid_hooks,
1650 struct xt_table_info **pinfo,
1651 void **pentry0,
1652 unsigned int total_size,
1653 unsigned int number,
1654 unsigned int *hook_entries,
1655 unsigned int *underflows)
Dmitry Mishin27229712006-04-01 02:25:19 -08001656{
Dmitry Mishin920b8682006-10-30 15:14:27 -08001657 unsigned int i, j;
Dmitry Mishin27229712006-04-01 02:25:19 -08001658 struct xt_table_info *newinfo, *info;
1659 void *pos, *entry0, *entry1;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001660 struct compat_ipt_entry *iter0;
1661 struct ipt_entry *iter1;
Dmitry Mishin27229712006-04-01 02:25:19 -08001662 unsigned int size;
Jan Engelhardt05595182010-02-24 18:33:43 +01001663 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001664
1665 info = *pinfo;
1666 entry0 = *pentry0;
1667 size = total_size;
1668 info->number = number;
1669
1670 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001671 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001672 info->hook_entry[i] = 0xFFFFFFFF;
1673 info->underflow[i] = 0xFFFFFFFF;
1674 }
1675
1676 duprintf("translate_compat_table: size %u\n", info->size);
Dmitry Mishin920b8682006-10-30 15:14:27 -08001677 j = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001678 xt_compat_lock(AF_INET);
Eric Dumazet255d0dc2010-12-18 18:35:15 +01001679 xt_compat_init_offsets(AF_INET, number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001680 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001681 xt_entry_foreach(iter0, entry0, total_size) {
1682 ret = check_compat_entry_size_and_hooks(iter0, info, &size,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001683 entry0,
1684 entry0 + total_size,
1685 hook_entries,
1686 underflows,
1687 name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001688 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001689 goto out_unlock;
1690 ++j;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001691 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001692
1693 ret = -EINVAL;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001694 if (j != number) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001695 duprintf("translate_compat_table: %u not %u entries\n",
Dmitry Mishin920b8682006-10-30 15:14:27 -08001696 j, number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001697 goto out_unlock;
1698 }
1699
1700 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001701 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001702 /* Only hooks which are valid */
1703 if (!(valid_hooks & (1 << i)))
1704 continue;
1705 if (info->hook_entry[i] == 0xFFFFFFFF) {
1706 duprintf("Invalid hook entry %u %u\n",
1707 i, hook_entries[i]);
1708 goto out_unlock;
1709 }
1710 if (info->underflow[i] == 0xFFFFFFFF) {
1711 duprintf("Invalid underflow %u %u\n",
1712 i, underflows[i]);
1713 goto out_unlock;
1714 }
1715 }
1716
1717 ret = -ENOMEM;
1718 newinfo = xt_alloc_table_info(size);
1719 if (!newinfo)
1720 goto out_unlock;
1721
1722 newinfo->number = number;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001723 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001724 newinfo->hook_entry[i] = info->hook_entry[i];
1725 newinfo->underflow[i] = info->underflow[i];
1726 }
Florian Westphal482cfc32015-06-11 01:34:55 +02001727 entry1 = newinfo->entries;
Dmitry Mishin27229712006-04-01 02:25:19 -08001728 pos = entry1;
Patrick McHardy4b478242007-12-17 21:46:15 -08001729 size = total_size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001730 xt_entry_foreach(iter0, entry0, total_size) {
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001731 ret = compat_copy_entry_from_user(iter0, &pos, &size,
1732 name, newinfo, entry1);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001733 if (ret != 0)
1734 break;
1735 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001736 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001737 xt_compat_unlock(AF_INET);
1738 if (ret)
1739 goto free_newinfo;
1740
1741 ret = -ELOOP;
1742 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1743 goto free_newinfo;
1744
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001745 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001746 xt_entry_foreach(iter1, entry1, newinfo->size) {
Jan Engelhardt05595182010-02-24 18:33:43 +01001747 ret = compat_check_entry(iter1, net, name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001748 if (ret != 0)
1749 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001750 ++i;
Florian Westphal98dbbfc2015-08-26 23:20:51 +02001751 if (strcmp(ipt_get_target(iter1)->u.user.name,
1752 XT_ERROR_TARGET) == 0)
1753 ++newinfo->stacksize;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001754 }
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001755 if (ret) {
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001756 /*
1757 * The first i matches need cleanup_entry (calls ->destroy)
1758 * because they had called ->check already. The other j-i
1759 * entries need only release.
1760 */
1761 int skip = i;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001762 j -= i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001763 xt_entry_foreach(iter0, entry0, newinfo->size) {
1764 if (skip-- > 0)
1765 continue;
Jan Engelhardt05595182010-02-24 18:33:43 +01001766 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001767 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001768 compat_release_entry(iter0);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001769 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001770 xt_entry_foreach(iter1, entry1, newinfo->size) {
1771 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001772 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001773 cleanup_entry(iter1, net);
1774 }
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001775 xt_free_table_info(newinfo);
1776 return ret;
1777 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001778
Dmitry Mishin27229712006-04-01 02:25:19 -08001779 *pinfo = newinfo;
1780 *pentry0 = entry1;
1781 xt_free_table_info(info);
1782 return 0;
1783
1784free_newinfo:
1785 xt_free_table_info(newinfo);
1786out:
Jan Engelhardt05595182010-02-24 18:33:43 +01001787 xt_entry_foreach(iter0, entry0, total_size) {
1788 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001789 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001790 compat_release_entry(iter0);
1791 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001792 return ret;
1793out_unlock:
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001794 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001795 xt_compat_unlock(AF_INET);
1796 goto out;
1797}
1798
1799static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001800compat_do_replace(struct net *net, void __user *user, unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001801{
1802 int ret;
1803 struct compat_ipt_replace tmp;
1804 struct xt_table_info *newinfo;
1805 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001806 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001807
1808 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1809 return -EFAULT;
1810
Dmitry Mishin27229712006-04-01 02:25:19 -08001811 /* overflow check */
Eric Dumazet259d4e42007-12-04 23:24:56 -08001812 if (tmp.size >= INT_MAX / num_possible_cpus())
Dmitry Mishin27229712006-04-01 02:25:19 -08001813 return -ENOMEM;
1814 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1815 return -ENOMEM;
Dave Jones1086bbe2015-05-19 20:55:17 -04001816 if (tmp.num_counters == 0)
1817 return -EINVAL;
1818
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01001819 tmp.name[sizeof(tmp.name)-1] = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001820
1821 newinfo = xt_alloc_table_info(tmp.size);
1822 if (!newinfo)
1823 return -ENOMEM;
1824
Florian Westphal482cfc32015-06-11 01:34:55 +02001825 loc_cpu_entry = newinfo->entries;
Dmitry Mishin27229712006-04-01 02:25:19 -08001826 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1827 tmp.size) != 0) {
1828 ret = -EFAULT;
1829 goto free_newinfo;
1830 }
1831
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001832 ret = translate_compat_table(net, tmp.name, tmp.valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001833 &newinfo, &loc_cpu_entry, tmp.size,
1834 tmp.num_entries, tmp.hook_entry,
1835 tmp.underflow);
Dmitry Mishin27229712006-04-01 02:25:19 -08001836 if (ret != 0)
1837 goto free_newinfo;
1838
1839 duprintf("compat_do_replace: Translated table\n");
1840
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001841 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001842 tmp.num_counters, compat_ptr(tmp.counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001843 if (ret)
1844 goto free_newinfo_untrans;
1845 return 0;
1846
1847 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001848 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001849 cleanup_entry(iter, net);
Dmitry Mishin27229712006-04-01 02:25:19 -08001850 free_newinfo:
1851 xt_free_table_info(newinfo);
1852 return ret;
1853}
1854
1855static int
1856compat_do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user,
Patrick McHardy4b478242007-12-17 21:46:15 -08001857 unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001858{
1859 int ret;
1860
Eric W. Biederman52e804c2012-11-16 03:03:05 +00001861 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Dmitry Mishin27229712006-04-01 02:25:19 -08001862 return -EPERM;
1863
1864 switch (cmd) {
1865 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001866 ret = compat_do_replace(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001867 break;
1868
1869 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001870 ret = do_add_counters(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001871 break;
1872
1873 default:
1874 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1875 ret = -EINVAL;
1876 }
1877
1878 return ret;
1879}
1880
Patrick McHardy4b478242007-12-17 21:46:15 -08001881struct compat_ipt_get_entries {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001882 char name[XT_TABLE_MAXNAMELEN];
Dmitry Mishin27229712006-04-01 02:25:19 -08001883 compat_uint_t size;
1884 struct compat_ipt_entry entrytable[0];
1885};
1886
Patrick McHardy4b478242007-12-17 21:46:15 -08001887static int
1888compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1889 void __user *userptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001890{
Dmitry Mishin27229712006-04-01 02:25:19 -08001891 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001892 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001893 void __user *pos;
1894 unsigned int size;
1895 int ret = 0;
Patrick McHardya18aa312007-12-12 10:35:16 -08001896 unsigned int i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001897 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001898
1899 counters = alloc_counters(table);
1900 if (IS_ERR(counters))
1901 return PTR_ERR(counters);
1902
Dmitry Mishin27229712006-04-01 02:25:19 -08001903 pos = userptr;
1904 size = total_size;
Florian Westphal482cfc32015-06-11 01:34:55 +02001905 xt_entry_foreach(iter, private->entries, total_size) {
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001906 ret = compat_copy_entry_to_user(iter, &pos,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001907 &size, counters, i++);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001908 if (ret != 0)
1909 break;
1910 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001911
Dmitry Mishin27229712006-04-01 02:25:19 -08001912 vfree(counters);
1913 return ret;
1914}
1915
1916static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001917compat_get_entries(struct net *net, struct compat_ipt_get_entries __user *uptr,
1918 int *len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001919{
1920 int ret;
1921 struct compat_ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001922 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001923
Dmitry Mishin27229712006-04-01 02:25:19 -08001924 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001925 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001926 return -EINVAL;
1927 }
1928
1929 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1930 return -EFAULT;
1931
1932 if (*len != sizeof(struct compat_ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001933 duprintf("compat_get_entries: %u != %zu\n",
1934 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001935 return -EINVAL;
1936 }
1937
1938 xt_compat_lock(AF_INET);
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001939 t = xt_find_table_lock(net, AF_INET, get.name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001940 if (!IS_ERR_OR_NULL(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001941 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001942 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08001943 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001944 ret = compat_table_info(private, &info);
1945 if (!ret && get.size == info.size) {
1946 ret = compat_copy_entries_to_user(private->size,
Patrick McHardy4b478242007-12-17 21:46:15 -08001947 t, uptr->entrytable);
Dmitry Mishin27229712006-04-01 02:25:19 -08001948 } else if (!ret) {
1949 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001950 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001951 ret = -EAGAIN;
Dmitry Mishin27229712006-04-01 02:25:19 -08001952 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001953 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001954 module_put(t->me);
1955 xt_table_unlock(t);
1956 } else
1957 ret = t ? PTR_ERR(t) : -ENOENT;
1958
1959 xt_compat_unlock(AF_INET);
1960 return ret;
1961}
1962
Patrick McHardy79030ed2006-09-20 12:05:08 -07001963static int do_ipt_get_ctl(struct sock *, int, void __user *, int *);
1964
Dmitry Mishin27229712006-04-01 02:25:19 -08001965static int
1966compat_do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1967{
1968 int ret;
1969
Eric W. Biederman52e804c2012-11-16 03:03:05 +00001970 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Björn Steinbrink82fac052006-10-20 00:21:10 -07001971 return -EPERM;
1972
Dmitry Mishin27229712006-04-01 02:25:19 -08001973 switch (cmd) {
1974 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001975 ret = get_info(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001976 break;
1977 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001978 ret = compat_get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001979 break;
1980 default:
Patrick McHardy79030ed2006-09-20 12:05:08 -07001981 ret = do_ipt_get_ctl(sk, cmd, user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001982 }
1983 return ret;
1984}
1985#endif
1986
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987static int
Patrick McHardy9c547952007-12-17 21:52:00 -08001988do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989{
1990 int ret;
1991
Eric W. Biederman52e804c2012-11-16 03:03:05 +00001992 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 return -EPERM;
1994
1995 switch (cmd) {
1996 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001997 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 break;
1999
2000 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002001 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 break;
2003
2004 default:
2005 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
2006 ret = -EINVAL;
2007 }
2008
2009 return ret;
2010}
2011
2012static int
2013do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2014{
2015 int ret;
2016
Eric W. Biederman52e804c2012-11-16 03:03:05 +00002017 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 return -EPERM;
2019
2020 switch (cmd) {
Dmitry Mishin27229712006-04-01 02:25:19 -08002021 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002022 ret = get_info(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 break;
Dmitry Mishin27229712006-04-01 02:25:19 -08002024
2025 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002026 ret = get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08002027 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
2029 case IPT_SO_GET_REVISION_MATCH:
2030 case IPT_SO_GET_REVISION_TARGET: {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02002031 struct xt_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002032 int target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
2034 if (*len != sizeof(rev)) {
2035 ret = -EINVAL;
2036 break;
2037 }
2038 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2039 ret = -EFAULT;
2040 break;
2041 }
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01002042 rev.name[sizeof(rev.name)-1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
2044 if (cmd == IPT_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08002045 target = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08002047 target = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
Harald Welte2e4e6a12006-01-12 13:30:04 -08002049 try_then_request_module(xt_find_revision(AF_INET, rev.name,
2050 rev.revision,
2051 target, &ret),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 "ipt_%s", rev.name);
2053 break;
2054 }
2055
2056 default:
2057 duprintf("do_ipt_get_ctl: unknown request %i\n", cmd);
2058 ret = -EINVAL;
2059 }
2060
2061 return ret;
2062}
2063
Jan Engelhardt35aad0f2009-08-24 14:56:30 +02002064struct xt_table *ipt_register_table(struct net *net,
2065 const struct xt_table *table,
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002066 const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067{
2068 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002069 struct xt_table_info *newinfo;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +02002070 struct xt_table_info bootstrap = {0};
Eric Dumazet31836062005-12-13 23:13:48 -08002071 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08002072 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
Harald Welte2e4e6a12006-01-12 13:30:04 -08002074 newinfo = xt_alloc_table_info(repl->size);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002075 if (!newinfo) {
2076 ret = -ENOMEM;
2077 goto out;
2078 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Florian Westphal482cfc32015-06-11 01:34:55 +02002080 loc_cpu_entry = newinfo->entries;
Eric Dumazet31836062005-12-13 23:13:48 -08002081 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Jan Engelhardt0f234212010-02-24 18:36:04 +01002083 ret = translate_table(net, newinfo, loc_cpu_entry, repl);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002084 if (ret != 0)
2085 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002087 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08002088 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002089 ret = PTR_ERR(new_table);
2090 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 }
2092
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002093 return new_table;
2094
2095out_free:
2096 xt_free_table_info(newinfo);
2097out:
2098 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099}
2100
Alexey Dobriyanf54e9362010-01-18 08:25:47 +01002101void ipt_unregister_table(struct net *net, struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
Harald Welte2e4e6a12006-01-12 13:30:04 -08002103 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08002104 void *loc_cpu_entry;
Alexey Dobriyandf200962008-01-31 04:05:34 -08002105 struct module *table_owner = table->me;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01002106 struct ipt_entry *iter;
Eric Dumazet31836062005-12-13 23:13:48 -08002107
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002108 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
2110 /* Decrease module usage counts and free resources */
Florian Westphal482cfc32015-06-11 01:34:55 +02002111 loc_cpu_entry = private->entries;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01002112 xt_entry_foreach(iter, loc_cpu_entry, private->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01002113 cleanup_entry(iter, net);
Alexey Dobriyandf200962008-01-31 04:05:34 -08002114 if (private->number > private->initial_entries)
2115 module_put(table_owner);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002116 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117}
2118
2119/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002120static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121icmp_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2122 u_int8_t type, u_int8_t code,
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002123 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124{
Patrick McHardy9c547952007-12-17 21:52:00 -08002125 return ((test_type == 0xFF) ||
2126 (type == test_type && code >= min_code && code <= max_code))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 ^ invert;
2128}
2129
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002130static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +02002131icmp_match(const struct sk_buff *skb, struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
Jan Engelhardt5452e422008-04-14 11:15:35 +02002133 const struct icmphdr *ic;
2134 struct icmphdr _icmph;
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002135 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
2137 /* Must not be a fragment. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002138 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002139 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002141 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 if (ic == NULL) {
2143 /* We've been asked to examine this packet, and we
2144 * can't. Hence, no choice but to drop.
2145 */
2146 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtb4ba2612009-07-07 20:54:30 +02002147 par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002148 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 }
2150
2151 return icmp_type_code_match(icmpinfo->type,
2152 icmpinfo->code[0],
2153 icmpinfo->code[1],
2154 ic->type, ic->code,
2155 !!(icmpinfo->invflags&IPT_ICMP_INV));
2156}
2157
Jan Engelhardtb0f38452010-03-19 17:16:42 +01002158static int icmp_checkentry(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002160 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002162 /* Must specify no unknown invflags */
Jan Engelhardtbd414ee2010-03-23 16:35:56 +01002163 return (icmpinfo->invflags & ~IPT_ICMP_INV) ? -EINVAL : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164}
2165
Jan Engelhardt45385062009-07-04 12:50:00 +02002166static struct xt_target ipt_builtin_tg[] __read_mostly = {
2167 {
Jan Engelhardt243bf6e2010-10-13 16:28:00 +02002168 .name = XT_STANDARD_TARGET,
Jan Engelhardt45385062009-07-04 12:50:00 +02002169 .targetsize = sizeof(int),
2170 .family = NFPROTO_IPV4,
Dmitry Mishin27229712006-04-01 02:25:19 -08002171#ifdef CONFIG_COMPAT
Jan Engelhardt45385062009-07-04 12:50:00 +02002172 .compatsize = sizeof(compat_int_t),
2173 .compat_from_user = compat_standard_from_user,
2174 .compat_to_user = compat_standard_to_user,
Dmitry Mishin27229712006-04-01 02:25:19 -08002175#endif
Jan Engelhardt45385062009-07-04 12:50:00 +02002176 },
2177 {
Jan Engelhardt243bf6e2010-10-13 16:28:00 +02002178 .name = XT_ERROR_TARGET,
Jan Engelhardt45385062009-07-04 12:50:00 +02002179 .target = ipt_error,
Jan Engelhardt12b00c22010-10-13 15:56:56 +02002180 .targetsize = XT_FUNCTION_MAXNAMELEN,
Jan Engelhardt45385062009-07-04 12:50:00 +02002181 .family = NFPROTO_IPV4,
2182 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183};
2184
2185static struct nf_sockopt_ops ipt_sockopts = {
2186 .pf = PF_INET,
2187 .set_optmin = IPT_BASE_CTL,
2188 .set_optmax = IPT_SO_SET_MAX+1,
2189 .set = do_ipt_set_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002190#ifdef CONFIG_COMPAT
2191 .compat_set = compat_do_ipt_set_ctl,
2192#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 .get_optmin = IPT_BASE_CTL,
2194 .get_optmax = IPT_SO_GET_MAX+1,
2195 .get = do_ipt_get_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002196#ifdef CONFIG_COMPAT
2197 .compat_get = compat_do_ipt_get_ctl,
2198#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002199 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200};
2201
Jan Engelhardt45385062009-07-04 12:50:00 +02002202static struct xt_match ipt_builtin_mt[] __read_mostly = {
2203 {
2204 .name = "icmp",
2205 .match = icmp_match,
2206 .matchsize = sizeof(struct ipt_icmp),
2207 .checkentry = icmp_checkentry,
2208 .proto = IPPROTO_ICMP,
2209 .family = NFPROTO_IPV4,
2210 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211};
2212
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002213static int __net_init ip_tables_net_init(struct net *net)
2214{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002215 return xt_proto_init(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002216}
2217
2218static void __net_exit ip_tables_net_exit(struct net *net)
2219{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002220 xt_proto_fini(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002221}
2222
2223static struct pernet_operations ip_tables_net_ops = {
2224 .init = ip_tables_net_init,
2225 .exit = ip_tables_net_exit,
2226};
2227
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002228static int __init ip_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229{
2230 int ret;
2231
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002232 ret = register_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002233 if (ret < 0)
2234 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002235
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002236 /* No one else will be downing sem now, so we won't sleep */
Jan Engelhardt45385062009-07-04 12:50:00 +02002237 ret = xt_register_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002238 if (ret < 0)
2239 goto err2;
Jan Engelhardt45385062009-07-04 12:50:00 +02002240 ret = xt_register_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002241 if (ret < 0)
2242 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
2244 /* Register setsockopt */
2245 ret = nf_register_sockopt(&ipt_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002246 if (ret < 0)
2247 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01002249 pr_info("(C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002251
2252err5:
Jan Engelhardt45385062009-07-04 12:50:00 +02002253 xt_unregister_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002254err4:
Jan Engelhardt45385062009-07-04 12:50:00 +02002255 xt_unregister_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002256err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002257 unregister_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002258err1:
2259 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260}
2261
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002262static void __exit ip_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263{
2264 nf_unregister_sockopt(&ipt_sockopts);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002265
Jan Engelhardt45385062009-07-04 12:50:00 +02002266 xt_unregister_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
2267 xt_unregister_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002268 unregister_pernet_subsys(&ip_tables_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269}
2270
2271EXPORT_SYMBOL(ipt_register_table);
2272EXPORT_SYMBOL(ipt_unregister_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273EXPORT_SYMBOL(ipt_do_table);
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002274module_init(ip_tables_init);
2275module_exit(ip_tables_fini);