blob: e301a3db4717ab8d6e161525ba8350343d64103a [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,
Ian Morris27951a02015-10-14 23:17:05 +0100105 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,
Ian Morris27951a02015-10-14 23:17:05 +0100114 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,
Ian Morris27951a02015-10-14 23:17:05 +0100123 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) */
Florian Westphal54d83fc2016-03-22 18:02:52 +0100171static inline bool unconditional(const struct ipt_entry *e)
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
Florian Westphal54d83fc2016-03-22 18:02:52 +0100175 return e->target_offset == sizeof(struct ipt_entry) &&
176 memcmp(&e->ip, &uncond, sizeof(uncond)) == 0;
Jan Engelhardte79ec502007-12-17 22:44:06 -0800177#undef FWINV
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700178}
179
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200180/* for const-correctness */
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200181static inline const struct xt_entry_target *
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200182ipt_get_target_c(const struct ipt_entry *e)
183{
184 return ipt_get_target((struct ipt_entry *)e);
185}
186
Gao fengf0165882013-03-21 19:48:42 +0000187#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
Denys Vlasenko022748a2008-01-14 23:44:05 -0800188static const char *const hooknames[] = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800189 [NF_INET_PRE_ROUTING] = "PREROUTING",
190 [NF_INET_LOCAL_IN] = "INPUT",
Patrick McHardy9c547952007-12-17 21:52:00 -0800191 [NF_INET_FORWARD] = "FORWARD",
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800192 [NF_INET_LOCAL_OUT] = "OUTPUT",
193 [NF_INET_POST_ROUTING] = "POSTROUTING",
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700194};
195
196enum nf_ip_trace_comments {
197 NF_IP_TRACE_COMMENT_RULE,
198 NF_IP_TRACE_COMMENT_RETURN,
199 NF_IP_TRACE_COMMENT_POLICY,
200};
201
Denys Vlasenko022748a2008-01-14 23:44:05 -0800202static const char *const comments[] = {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700203 [NF_IP_TRACE_COMMENT_RULE] = "rule",
204 [NF_IP_TRACE_COMMENT_RETURN] = "return",
205 [NF_IP_TRACE_COMMENT_POLICY] = "policy",
206};
207
208static struct nf_loginfo trace_loginfo = {
209 .type = NF_LOG_TYPE_LOG,
210 .u = {
211 .log = {
212 .level = 4,
213 .logflags = NF_LOG_MASK,
214 },
215 },
216};
217
Denys Vlasenko022748a2008-01-14 23:44:05 -0800218/* Mildly perf critical (only if packet tracing is on) */
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700219static inline int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200220get_chainname_rulenum(const struct ipt_entry *s, const struct ipt_entry *e,
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200221 const char *hookname, const char **chainname,
222 const char **comment, unsigned int *rulenum)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700223{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200224 const struct xt_standard_target *t = (void *)ipt_get_target_c(s);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700225
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200226 if (strcmp(t->target.u.kernel.target->name, XT_ERROR_TARGET) == 0) {
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700227 /* Head of user chain: ERROR target with chainname */
228 *chainname = t->target.data;
229 (*rulenum) = 0;
230 } else if (s == e) {
231 (*rulenum)++;
232
Florian Westphal54d83fc2016-03-22 18:02:52 +0100233 if (unconditional(s) &&
Joe Perches3666ed12009-11-23 23:17:06 +0100234 strcmp(t->target.u.kernel.target->name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200235 XT_STANDARD_TARGET) == 0 &&
Florian Westphal54d83fc2016-03-22 18:02:52 +0100236 t->verdict < 0) {
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
Eric W. Biederman9dff2c92015-09-15 20:04:17 -0500249static void trace_packet(struct net *net,
250 const struct sk_buff *skb,
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700251 unsigned int hook,
252 const struct net_device *in,
253 const struct net_device *out,
Jan Engelhardtecb6f852008-01-31 03:54:47 -0800254 const char *tablename,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200255 const struct xt_table_info *private,
256 const struct ipt_entry *e)
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700257{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200258 const struct ipt_entry *root;
Jan Engelhardt4f2f6f22009-04-15 20:31:13 +0200259 const char *hookname, *chainname, *comment;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100260 const struct ipt_entry *iter;
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700261 unsigned int rulenum = 0;
262
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,
David S. Miller1c491ba2015-04-03 20:56:08 -0400288 const struct nf_hook_state *state,
Jan Engelhardte60a13e2007-02-07 15:12:33 -0800289 struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Eric W. Biederman6cb8ff3f12015-09-18 14:32:55 -0500291 unsigned int hook = state->hook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 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;
Eric W. Biederman156c1962015-09-18 14:32:58 -0500318 acpar.net = state->net;
David S. Miller1c491ba2015-04-03 20:56:08 -0400319 acpar.in = state->in;
320 acpar.out = state->out;
Jan Engelhardtde74c162009-07-05 18:26:37 +0200321 acpar.family = NFPROTO_IPV4;
322 acpar.hooknum = hook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 IP_NF_ASSERT(table->valid_hooks & (1 << hook));
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200325 local_bh_disable();
326 addend = xt_write_recseq_begin();
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700327 private = table->private;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200328 cpu = smp_processor_id();
Will Deaconb416c142013-10-21 13:14:53 +0100329 /*
330 * Ensure we load private-> members after we've fetched the base
331 * pointer.
332 */
333 smp_read_barrier_depends();
Florian Westphal482cfc32015-06-11 01:34:55 +0200334 table_base = private->entries;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200335 jumpstack = (struct ipt_entry **)private->jumpstack[cpu];
Florian Westphal7814b6e2015-07-14 17:51:08 +0200336
337 /* Switch to alternate jumpstack if we're being invoked via TEE.
338 * TEE issues XT_CONTINUE verdict on original skb so we must not
339 * clobber the jumpstack.
340 *
341 * For recursion via REJECT or SYNPROXY the stack will be clobbered
342 * but it is no problem since absolute verdict is issued by these.
343 */
Florian Westphaldcebd312015-07-14 17:51:09 +0200344 if (static_key_false(&xt_tee_enabled))
345 jumpstack += private->stacksize * __this_cpu_read(nf_skb_duplicated);
Stephen Hemminger78454472009-02-20 10:35:32 +0100346
Harald Welte2e4e6a12006-01-12 13:30:04 -0800347 e = get_entry(table_base, private->hook_entry[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Florian Westphal7814b6e2015-07-14 17:51:08 +0200349 pr_debug("Entering %s(hook %u), UF %p\n",
350 table->name, hook,
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200351 get_entry(table_base, private->underflow[hook]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 do {
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200354 const struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100355 const struct xt_entry_match *ematch;
Florian Westphal71ae0df2015-06-11 01:34:54 +0200356 struct xt_counters *counter;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 IP_NF_ASSERT(e);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200359 if (!ip_packet_match(ip, indev, outdev,
Jan Engelhardtde74c162009-07-05 18:26:37 +0200360 &e->ip, acpar.fragoff)) {
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100361 no_match:
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200362 e = ipt_next_entry(e);
363 continue;
364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Jan Engelhardtef53d702009-07-09 19:14:18 +0200366 xt_ematch_foreach(ematch, e) {
Jan Engelhardtde74c162009-07-05 18:26:37 +0200367 acpar.match = ematch->u.kernel.match;
368 acpar.matchinfo = ematch->data;
369 if (!acpar.match->match(skb, &acpar))
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100370 goto no_match;
Jan Engelhardtef53d702009-07-09 19:14:18 +0200371 }
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100372
Florian Westphal71ae0df2015-06-11 01:34:54 +0200373 counter = xt_get_this_cpu_counter(&e->counters);
374 ADD_COUNTER(*counter, skb->len, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200376 t = ipt_get_target(e);
377 IP_NF_ASSERT(t->u.kernel.target);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700378
Gao fengf0165882013-03-21 19:48:42 +0000379#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200380 /* The packet is traced: log it */
381 if (unlikely(skb->nf_trace))
Eric W. Biederman9dff2c92015-09-15 20:04:17 -0500382 trace_packet(state->net, skb, hook, state->in,
383 state->out, table->name, private, e);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700384#endif
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200385 /* Standard target? */
386 if (!t->u.kernel.target->target) {
387 int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200389 v = ((struct xt_standard_target *)t)->verdict;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200390 if (v < 0) {
391 /* Pop from stack? */
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200392 if (v != XT_RETURN) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000393 verdict = (unsigned int)(-v) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 break;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200395 }
Florian Westphal7814b6e2015-07-14 17:51:08 +0200396 if (stackidx == 0) {
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200397 e = get_entry(table_base,
398 private->underflow[hook]);
Patrick McHardycecc74d2010-04-22 13:03:24 +0200399 pr_debug("Underflow (this is normal) "
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200400 "to %p\n", e);
401 } else {
Florian Westphal7814b6e2015-07-14 17:51:08 +0200402 e = jumpstack[--stackidx];
Patrick McHardycecc74d2010-04-22 13:03:24 +0200403 pr_debug("Pulled %p out from pos %u\n",
Florian Westphal7814b6e2015-07-14 17:51:08 +0200404 e, stackidx);
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200405 e = ipt_next_entry(e);
406 }
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200407 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 }
Joe Perches3666ed12009-11-23 23:17:06 +0100409 if (table_base + v != ipt_next_entry(e) &&
410 !(e->ip.flags & IPT_F_GOTO)) {
Florian Westphal7814b6e2015-07-14 17:51:08 +0200411 jumpstack[stackidx++] = e;
Patrick McHardycecc74d2010-04-22 13:03:24 +0200412 pr_debug("Pushed %p into pos %u\n",
Florian Westphal7814b6e2015-07-14 17:51:08 +0200413 e, stackidx - 1);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200416 e = get_entry(table_base, v);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200417 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200419
Jan Engelhardtde74c162009-07-05 18:26:37 +0200420 acpar.target = t->u.kernel.target;
421 acpar.targinfo = t->data;
Jan Engelhardtbb70dfa2009-04-15 21:40:13 +0200422
Jan Engelhardtde74c162009-07-05 18:26:37 +0200423 verdict = t->u.kernel.target->target(skb, &acpar);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200424 /* Target might have changed stuff. */
425 ip = ip_hdr(skb);
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200426 if (verdict == XT_CONTINUE)
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200427 e = ipt_next_entry(e);
428 else
429 /* Verdict */
430 break;
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200431 } while (!acpar.hotdrop);
Florian Westphal7814b6e2015-07-14 17:51:08 +0200432 pr_debug("Exiting %s; sp at %u\n", __func__, stackidx);
433
Ian Morris24cebe32015-10-14 23:17:07 +0100434 xt_write_recseq_end(addend);
435 local_bh_enable();
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437#ifdef DEBUG_ALLOW_ALL
438 return NF_ACCEPT;
439#else
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200440 if (acpar.hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return NF_DROP;
442 else return verdict;
443#endif
444}
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446/* Figures out from what hook each rule can be called: returns 0 if
Florian Westphal98dbbfc2015-08-26 23:20:51 +0200447 there are loops. Puts hook bitmask in comefrom. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448static int
Florian Westphal98dbbfc2015-08-26 23:20:51 +0200449mark_source_chains(const struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800450 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
452 unsigned int hook;
453
454 /* No recursion; use packet counter to save back ptrs (reset
455 to 0 as we leave), and comefrom to save source hook bitmask */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800456 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 unsigned int pos = newinfo->hook_entry[hook];
Patrick McHardy9c547952007-12-17 21:52:00 -0800458 struct ipt_entry *e = (struct ipt_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460 if (!(valid_hooks & (1 << hook)))
461 continue;
462
463 /* Set initial back pointer. */
464 e->counters.pcnt = pos;
465
466 for (;;) {
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200467 const struct xt_standard_target *t
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200468 = (void *)ipt_get_target_c(e);
Al Viroe1b4b9f2006-12-12 00:29:52 -0800469 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800471 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200472 pr_err("iptables: loop hook %u pos %u %08X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 hook, pos, e->comefrom);
474 return 0;
475 }
Patrick McHardy9c547952007-12-17 21:52:00 -0800476 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 /* Unconditional return/END. */
Florian Westphal54d83fc2016-03-22 18:02:52 +0100479 if ((unconditional(e) &&
Joe Perches3666ed12009-11-23 23:17:06 +0100480 (strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200481 XT_STANDARD_TARGET) == 0) &&
Florian Westphal54d83fc2016-03-22 18:02:52 +0100482 t->verdict < 0) || 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,
Ian Morris24cebe32015-10-14 23:17:07 +0100486 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);
Florian Westphalf24e2302016-04-01 14:17:21 +0200523 if (pos + size >= newinfo->size)
524 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 e->counters.pcnt = pos;
526 pos += size;
527 } else {
528 int newpos = t->verdict;
529
530 if (strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200531 XT_STANDARD_TARGET) == 0 &&
Joe Perches3666ed12009-11-23 23:17:06 +0100532 newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800533 if (newpos > newinfo->size -
534 sizeof(struct ipt_entry)) {
535 duprintf("mark_source_chains: "
536 "bad verdict (%i)\n",
537 newpos);
538 return 0;
539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 /* This a jump; chase it. */
Florian Westphal98dbbfc2015-08-26 23:20:51 +0200541 duprintf("Jump rule %u -> %u\n",
542 pos, newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 } else {
544 /* ... this is a fallthru */
545 newpos = pos + e->next_offset;
Florian Westphalf24e2302016-04-01 14:17:21 +0200546 if (newpos >= newinfo->size)
547 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800550 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 e->counters.pcnt = pos;
552 pos = newpos;
553 }
554 }
Ian Morris19f0a602015-10-14 23:17:04 +0100555next:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 duprintf("Finished chain %u\n", hook);
557 }
558 return 1;
559}
560
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200561static void cleanup_match(struct xt_entry_match *m, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200563 struct xt_mtdtor_param par;
564
Alexey Dobriyanf54e9362010-01-18 08:25:47 +0100565 par.net = net;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200566 par.match = m->u.kernel.match;
567 par.matchinfo = m->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200568 par.family = NFPROTO_IPV4;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200569 if (par.match->destroy != NULL)
570 par.match->destroy(&par);
571 module_put(par.match->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
573
Denys Vlasenko022748a2008-01-14 23:44:05 -0800574static int
Florian Westphalbdf533d2016-03-22 18:02:49 +0100575check_entry(const struct ipt_entry *e)
Dmitry Mishina96be242006-12-12 00:29:26 -0800576{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200577 const struct xt_entry_target *t;
Dmitry Mishina96be242006-12-12 00:29:26 -0800578
Florian Westphalbdf533d2016-03-22 18:02:49 +0100579 if (!ip_checkentry(&e->ip))
Dmitry Mishina96be242006-12-12 00:29:26 -0800580 return -EINVAL;
Dmitry Mishina96be242006-12-12 00:29:26 -0800581
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200582 if (e->target_offset + sizeof(struct xt_entry_target) >
Patrick McHardy9c547952007-12-17 21:52:00 -0800583 e->next_offset)
Dmitry Mishina96be242006-12-12 00:29:26 -0800584 return -EINVAL;
585
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200586 t = ipt_get_target_c(e);
Dmitry Mishina96be242006-12-12 00:29:26 -0800587 if (e->target_offset + t->u.target_size > e->next_offset)
588 return -EINVAL;
589
590 return 0;
591}
592
Denys Vlasenko022748a2008-01-14 23:44:05 -0800593static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200594check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
Dmitry Mishina96be242006-12-12 00:29:26 -0800595{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200596 const struct ipt_ip *ip = par->entryinfo;
Dmitry Mishina96be242006-12-12 00:29:26 -0800597 int ret;
598
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200599 par->match = m->u.kernel.match;
600 par->matchinfo = m->data;
601
Jan Engelhardt916a9172008-10-08 11:35:20 +0200602 ret = xt_check_match(par, m->u.match_size - sizeof(*m),
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200603 ip->proto, ip->invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200604 if (ret < 0) {
Jan Engelhardtb5cad0d2010-05-02 13:55:21 +0200605 duprintf("check failed for `%s'.\n", par->match->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200606 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800607 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200608 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800609}
610
Denys Vlasenko022748a2008-01-14 23:44:05 -0800611static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200612find_check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800614 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800615 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200617 match = xt_request_find_match(NFPROTO_IPV4, m->u.user.name,
618 m->u.user.revision);
619 if (IS_ERR(match)) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800620 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200621 return PTR_ERR(match);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
623 m->u.kernel.match = match;
624
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100625 ret = check_match(m, par);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800626 if (ret)
627 goto err;
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800630err:
631 module_put(m->u.kernel.match->me);
632 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
Patrick McHardyadd67462010-02-03 13:45:12 +0100635static int check_target(struct ipt_entry *e, struct net *net, const char *name)
Dmitry Mishina96be242006-12-12 00:29:26 -0800636{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200637 struct xt_entry_target *t = ipt_get_target(e);
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200638 struct xt_tgchk_param par = {
Patrick McHardyadd67462010-02-03 13:45:12 +0100639 .net = net,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200640 .table = name,
641 .entryinfo = e,
642 .target = t->u.kernel.target,
643 .targinfo = t->data,
644 .hook_mask = e->comefrom,
Jan Engelhardt916a9172008-10-08 11:35:20 +0200645 .family = NFPROTO_IPV4,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200646 };
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900647 int ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800648
Jan Engelhardt916a9172008-10-08 11:35:20 +0200649 ret = xt_check_target(&par, t->u.target_size - sizeof(*t),
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200650 e->ip.proto, e->ip.invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200651 if (ret < 0) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100652 duprintf("check failed for `%s'.\n",
Dmitry Mishina96be242006-12-12 00:29:26 -0800653 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200654 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800655 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200656 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800657}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Denys Vlasenko022748a2008-01-14 23:44:05 -0800659static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100660find_check_entry(struct ipt_entry *e, struct net *net, const char *name,
Jan Engelhardt05595182010-02-24 18:33:43 +0100661 unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200663 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800664 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 int ret;
666 unsigned int j;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200667 struct xt_mtchk_param mtpar;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100668 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Florian Westphal71ae0df2015-06-11 01:34:54 +0200670 e->counters.pcnt = xt_percpu_counter_alloc();
671 if (IS_ERR_VALUE(e->counters.pcnt))
672 return -ENOMEM;
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 j = 0;
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100675 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200676 mtpar.table = name;
677 mtpar.entryinfo = &e->ip;
678 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200679 mtpar.family = NFPROTO_IPV4;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100680 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100681 ret = find_check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100682 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100683 goto cleanup_matches;
684 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 t = ipt_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200688 target = xt_request_find_target(NFPROTO_IPV4, t->u.user.name,
689 t->u.user.revision);
690 if (IS_ERR(target)) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800691 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200692 ret = PTR_ERR(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 goto cleanup_matches;
694 }
695 t->u.kernel.target = target;
696
Patrick McHardyadd67462010-02-03 13:45:12 +0100697 ret = check_target(e, net, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800698 if (ret)
699 goto err;
Florian Westphal71ae0df2015-06-11 01:34:54 +0200700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800702 err:
703 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100705 xt_ematch_foreach(ematch, e) {
706 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100707 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100708 cleanup_match(ematch, net);
709 }
Florian Westphal71ae0df2015-06-11 01:34:54 +0200710
711 xt_percpu_counter_free(e->counters.pcnt);
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return ret;
714}
715
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200716static bool check_underflow(const struct ipt_entry *e)
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200717{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200718 const struct xt_entry_target *t;
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200719 unsigned int verdict;
720
Florian Westphal54d83fc2016-03-22 18:02:52 +0100721 if (!unconditional(e))
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200722 return false;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200723 t = ipt_get_target_c(e);
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200724 if (strcmp(t->u.user.name, XT_STANDARD_TARGET) != 0)
725 return false;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200726 verdict = ((struct xt_standard_target *)t)->verdict;
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200727 verdict = -verdict - 1;
728 return verdict == NF_DROP || verdict == NF_ACCEPT;
729}
730
Denys Vlasenko022748a2008-01-14 23:44:05 -0800731static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732check_entry_size_and_hooks(struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800733 struct xt_table_info *newinfo,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200734 const unsigned char *base,
735 const unsigned char *limit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 const unsigned int *hook_entries,
737 const unsigned int *underflows,
Jan Engelhardt05595182010-02-24 18:33:43 +0100738 unsigned int valid_hooks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
740 unsigned int h;
Florian Westphalbdf533d2016-03-22 18:02:49 +0100741 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Joe Perches3666ed12009-11-23 23:17:06 +0100743 if ((unsigned long)e % __alignof__(struct ipt_entry) != 0 ||
Florian Westphal6e94e0c2016-03-22 18:02:50 +0100744 (unsigned char *)e + sizeof(struct ipt_entry) >= limit ||
745 (unsigned char *)e + e->next_offset > 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
Florian Westphalbdf533d2016-03-22 18:02:49 +0100757 err = check_entry(e);
758 if (err)
759 return err;
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800762 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Jan Engelhardta7d51732009-07-18 14:52:58 +0200763 if (!(valid_hooks & (1 << h)))
764 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if ((unsigned char *)e - base == hook_entries[h])
766 newinfo->hook_entry[h] = hook_entries[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200767 if ((unsigned char *)e - base == underflows[h]) {
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200768 if (!check_underflow(e)) {
Florian Westphal54d83fc2016-03-22 18:02:52 +0100769 pr_debug("Underflows must be unconditional and "
770 "use the STANDARD target with "
771 "ACCEPT/DROP\n");
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200772 return -EINVAL;
773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 newinfo->underflow[h] = underflows[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800779 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 e->comefrom = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return 0;
782}
783
Jan Engelhardt05595182010-02-24 18:33:43 +0100784static void
785cleanup_entry(struct ipt_entry *e, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200787 struct xt_tgdtor_param par;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200788 struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100789 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100792 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100793 cleanup_match(ematch, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 t = ipt_get_target(e);
Jan Engelhardta2df1642008-10-08 11:35:19 +0200795
Patrick McHardyadd67462010-02-03 13:45:12 +0100796 par.net = net;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200797 par.target = t->u.kernel.target;
798 par.targinfo = t->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200799 par.family = NFPROTO_IPV4;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200800 if (par.target->destroy != NULL)
801 par.target->destroy(&par);
802 module_put(par.target->me);
Florian Westphal71ae0df2015-06-11 01:34:54 +0200803 xt_percpu_counter_free(e->counters.pcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
806/* Checks and translates the user-supplied table segment (held in
807 newinfo) */
808static int
Jan Engelhardt0f234212010-02-24 18:36:04 +0100809translate_table(struct net *net, struct xt_table_info *newinfo, void *entry0,
Ian Morris6c282552015-10-14 23:17:06 +0100810 const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100812 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 unsigned int i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100814 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Jan Engelhardt0f234212010-02-24 18:36:04 +0100816 newinfo->size = repl->size;
817 newinfo->number = repl->num_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800820 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 newinfo->hook_entry[i] = 0xFFFFFFFF;
822 newinfo->underflow[i] = 0xFFFFFFFF;
823 }
824
825 duprintf("translate_table: size %u\n", newinfo->size);
826 i = 0;
827 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100828 xt_entry_foreach(iter, entry0, newinfo->size) {
829 ret = check_entry_size_and_hooks(iter, newinfo, entry0,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +0100830 entry0 + repl->size,
831 repl->hook_entry,
832 repl->underflow,
833 repl->valid_hooks);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100834 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +0100835 return ret;
836 ++i;
Florian Westphal98dbbfc2015-08-26 23:20:51 +0200837 if (strcmp(ipt_get_target(iter)->u.user.name,
838 XT_ERROR_TARGET) == 0)
839 ++newinfo->stacksize;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Jan Engelhardt0f234212010-02-24 18:36:04 +0100842 if (i != repl->num_entries) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 duprintf("translate_table: %u not %u entries\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100844 i, repl->num_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 return -EINVAL;
846 }
847
848 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800849 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 /* Only hooks which are valid */
Jan Engelhardt0f234212010-02-24 18:36:04 +0100851 if (!(repl->valid_hooks & (1 << i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 continue;
853 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
854 duprintf("Invalid hook entry %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100855 i, repl->hook_entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 return -EINVAL;
857 }
858 if (newinfo->underflow[i] == 0xFFFFFFFF) {
859 duprintf("Invalid underflow %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100860 i, repl->underflow[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 return -EINVAL;
862 }
863 }
864
Jan Engelhardt0f234212010-02-24 18:36:04 +0100865 if (!mark_source_chains(newinfo, repl->valid_hooks, entry0))
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800866 return -ELOOP;
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 /* Finally, each sanity check must pass */
869 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100870 xt_entry_foreach(iter, entry0, newinfo->size) {
Jan Engelhardt0f234212010-02-24 18:36:04 +0100871 ret = find_check_entry(iter, net, repl->name, repl->size);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100872 if (ret != 0)
873 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100874 ++i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800877 if (ret != 0) {
Jan Engelhardt05595182010-02-24 18:33:43 +0100878 xt_entry_foreach(iter, entry0, newinfo->size) {
879 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100880 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100881 cleanup_entry(iter, net);
882 }
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800883 return ret;
884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 return ret;
887}
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800890get_counters(const struct xt_table_info *t,
891 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100893 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 unsigned int cpu;
895 unsigned int i;
896
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700897 for_each_possible_cpu(cpu) {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200898 seqcount_t *s = &per_cpu(xt_recseq, cpu);
Eric Dumazet83723d62011-01-10 20:11:38 +0100899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 i = 0;
Florian Westphal482cfc32015-06-11 01:34:55 +0200901 xt_entry_foreach(iter, t->entries, t->size) {
Florian Westphal71ae0df2015-06-11 01:34:54 +0200902 struct xt_counters *tmp;
Eric Dumazet83723d62011-01-10 20:11:38 +0100903 u64 bcnt, pcnt;
904 unsigned int start;
905
Florian Westphal71ae0df2015-06-11 01:34:54 +0200906 tmp = xt_get_per_cpu_counter(&iter->counters, cpu);
Eric Dumazet83723d62011-01-10 20:11:38 +0100907 do {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200908 start = read_seqcount_begin(s);
Florian Westphal71ae0df2015-06-11 01:34:54 +0200909 bcnt = tmp->bcnt;
910 pcnt = tmp->pcnt;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200911 } while (read_seqcount_retry(s, start));
Eric Dumazet83723d62011-01-10 20:11:38 +0100912
913 ADD_COUNTER(counters[i], bcnt, pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +0100914 ++i; /* macro does multi eval of i */
915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 }
Stephen Hemminger78454472009-02-20 10:35:32 +0100917}
918
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200919static struct xt_counters *alloc_counters(const struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Dmitry Mishin27229712006-04-01 02:25:19 -0800921 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800922 struct xt_counters *counters;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200923 const struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925 /* We need atomic snapshot of counters: rest doesn't change
926 (other than comefrom, which userspace doesn't care
927 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800928 countersize = sizeof(struct xt_counters) * private->number;
Eric Dumazet83723d62011-01-10 20:11:38 +0100929 counters = vzalloc(countersize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 if (counters == NULL)
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700932 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700934 get_counters(private, counters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Dmitry Mishin27229712006-04-01 02:25:19 -0800936 return counters;
937}
938
939static int
940copy_entries_to_user(unsigned int total_size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200941 const struct xt_table *table,
Dmitry Mishin27229712006-04-01 02:25:19 -0800942 void __user *userptr)
943{
944 unsigned int off, num;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200945 const struct ipt_entry *e;
Dmitry Mishin27229712006-04-01 02:25:19 -0800946 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200947 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -0800948 int ret = 0;
Eric Dumazet711bdde2015-06-15 09:57:30 -0700949 const void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -0800950
951 counters = alloc_counters(table);
952 if (IS_ERR(counters))
953 return PTR_ERR(counters);
954
Florian Westphal482cfc32015-06-11 01:34:55 +0200955 loc_cpu_entry = private->entries;
Eric Dumazet31836062005-12-13 23:13:48 -0800956 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 ret = -EFAULT;
958 goto free_counters;
959 }
960
961 /* FIXME: use iterator macros --RR */
962 /* ... then go back and fix counters and names */
963 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
964 unsigned int i;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200965 const struct xt_entry_match *m;
966 const struct xt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Eric Dumazet31836062005-12-13 23:13:48 -0800968 e = (struct ipt_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (copy_to_user(userptr + off
970 + offsetof(struct ipt_entry, counters),
971 &counters[num],
972 sizeof(counters[num])) != 0) {
973 ret = -EFAULT;
974 goto free_counters;
975 }
976
977 for (i = sizeof(struct ipt_entry);
978 i < e->target_offset;
979 i += m->u.match_size) {
980 m = (void *)e + i;
981
982 if (copy_to_user(userptr + off + i
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200983 + offsetof(struct xt_entry_match,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 u.user.name),
985 m->u.kernel.match->name,
986 strlen(m->u.kernel.match->name)+1)
987 != 0) {
988 ret = -EFAULT;
989 goto free_counters;
990 }
991 }
992
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200993 t = ipt_get_target_c(e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 if (copy_to_user(userptr + off + e->target_offset
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200995 + offsetof(struct xt_entry_target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 u.user.name),
997 t->u.kernel.target->name,
998 strlen(t->u.kernel.target->name)+1) != 0) {
999 ret = -EFAULT;
1000 goto free_counters;
1001 }
1002 }
1003
1004 free_counters:
1005 vfree(counters);
1006 return ret;
1007}
1008
Dmitry Mishin27229712006-04-01 02:25:19 -08001009#ifdef CONFIG_COMPAT
Jan Engelhardt739674f2009-06-26 08:23:19 +02001010static void compat_standard_from_user(void *dst, const void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001011{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001012 int v = *(compat_int_t *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001013
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001014 if (v > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001015 v += xt_compat_calc_jump(AF_INET, v);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001016 memcpy(dst, &v, sizeof(v));
1017}
1018
Jan Engelhardt739674f2009-06-26 08:23:19 +02001019static int compat_standard_to_user(void __user *dst, const void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001020{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001021 compat_int_t cv = *(int *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001022
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001023 if (cv > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001024 cv -= xt_compat_calc_jump(AF_INET, cv);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001025 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001026}
1027
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001028static int compat_calc_entry(const struct ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001029 const struct xt_table_info *info,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001030 const void *base, struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001031{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001032 const struct xt_entry_match *ematch;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001033 const struct xt_entry_target *t;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001034 unsigned int entry_offset;
Dmitry Mishin27229712006-04-01 02:25:19 -08001035 int off, i, ret;
1036
Patrick McHardy30c08c42007-12-17 21:47:14 -08001037 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001038 entry_offset = (void *)e - base;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001039 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001040 off += xt_compat_match_offset(ematch->u.kernel.match);
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001041 t = ipt_get_target_c(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001042 off += xt_compat_target_offset(t->u.kernel.target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001043 newinfo->size -= off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001044 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001045 if (ret)
1046 return ret;
1047
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001048 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Patrick McHardy4b478242007-12-17 21:46:15 -08001049 if (info->hook_entry[i] &&
1050 (e < (struct ipt_entry *)(base + info->hook_entry[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001051 newinfo->hook_entry[i] -= off;
Patrick McHardy4b478242007-12-17 21:46:15 -08001052 if (info->underflow[i] &&
1053 (e < (struct ipt_entry *)(base + info->underflow[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001054 newinfo->underflow[i] -= off;
1055 }
1056 return 0;
1057}
1058
Eric Dumazet259d4e42007-12-04 23:24:56 -08001059static int compat_table_info(const struct xt_table_info *info,
Patrick McHardy4b478242007-12-17 21:46:15 -08001060 struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001061{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001062 struct ipt_entry *iter;
Eric Dumazet711bdde2015-06-15 09:57:30 -07001063 const void *loc_cpu_entry;
Jan Engelhardt05595182010-02-24 18:33:43 +01001064 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001065
1066 if (!newinfo || !info)
1067 return -EINVAL;
1068
Florian Westphal482cfc32015-06-11 01:34:55 +02001069 /* we dont care about newinfo->entries */
Eric Dumazet259d4e42007-12-04 23:24:56 -08001070 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1071 newinfo->initial_entries = 0;
Florian Westphal482cfc32015-06-11 01:34:55 +02001072 loc_cpu_entry = info->entries;
Eric Dumazet255d0dc2010-12-18 18:35:15 +01001073 xt_compat_init_offsets(AF_INET, info->number);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001074 xt_entry_foreach(iter, loc_cpu_entry, info->size) {
1075 ret = compat_calc_entry(iter, info, loc_cpu_entry, newinfo);
1076 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001077 return ret;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001078 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001079 return 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001080}
1081#endif
1082
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001083static int get_info(struct net *net, void __user *user,
Ian Morris6c282552015-10-14 23:17:06 +01001084 const int *len, int compat)
Dmitry Mishin27229712006-04-01 02:25:19 -08001085{
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001086 char name[XT_TABLE_MAXNAMELEN];
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001087 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001088 int ret;
1089
1090 if (*len != sizeof(struct ipt_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001091 duprintf("length %u != %zu\n", *len,
1092 sizeof(struct ipt_getinfo));
Dmitry Mishin27229712006-04-01 02:25:19 -08001093 return -EINVAL;
1094 }
1095
1096 if (copy_from_user(name, user, sizeof(name)) != 0)
1097 return -EFAULT;
1098
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001099 name[XT_TABLE_MAXNAMELEN-1] = '\0';
Dmitry Mishin27229712006-04-01 02:25:19 -08001100#ifdef CONFIG_COMPAT
1101 if (compat)
1102 xt_compat_lock(AF_INET);
1103#endif
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001104 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Patrick McHardy4b478242007-12-17 21:46:15 -08001105 "iptable_%s", name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001106 if (!IS_ERR_OR_NULL(t)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001107 struct ipt_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001108 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001109#ifdef CONFIG_COMPAT
Alexey Dobriyan14c7dbe2010-02-08 11:17:43 -08001110 struct xt_table_info tmp;
1111
Dmitry Mishin27229712006-04-01 02:25:19 -08001112 if (compat) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001113 ret = compat_table_info(private, &tmp);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001114 xt_compat_flush_offsets(AF_INET);
Patrick McHardy4b478242007-12-17 21:46:15 -08001115 private = &tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001116 }
1117#endif
Vasiliy Kulikovb5f15ac2010-11-03 08:45:06 +01001118 memset(&info, 0, sizeof(info));
Dmitry Mishin27229712006-04-01 02:25:19 -08001119 info.valid_hooks = t->valid_hooks;
1120 memcpy(info.hook_entry, private->hook_entry,
Patrick McHardy4b478242007-12-17 21:46:15 -08001121 sizeof(info.hook_entry));
Dmitry Mishin27229712006-04-01 02:25:19 -08001122 memcpy(info.underflow, private->underflow,
Patrick McHardy4b478242007-12-17 21:46:15 -08001123 sizeof(info.underflow));
Dmitry Mishin27229712006-04-01 02:25:19 -08001124 info.num_entries = private->number;
1125 info.size = private->size;
1126 strcpy(info.name, name);
1127
1128 if (copy_to_user(user, &info, *len) != 0)
1129 ret = -EFAULT;
1130 else
1131 ret = 0;
1132
1133 xt_table_unlock(t);
1134 module_put(t->me);
1135 } else
1136 ret = t ? PTR_ERR(t) : -ENOENT;
1137#ifdef CONFIG_COMPAT
1138 if (compat)
1139 xt_compat_unlock(AF_INET);
1140#endif
1141 return ret;
1142}
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001145get_entries(struct net *net, struct ipt_get_entries __user *uptr,
1146 const int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147{
1148 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001149 struct ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001150 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
Dmitry Mishin27229712006-04-01 02:25:19 -08001152 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001153 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001154 return -EINVAL;
1155 }
1156 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1157 return -EFAULT;
1158 if (*len != sizeof(struct ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001159 duprintf("get_entries: %u != %zu\n",
1160 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001161 return -EINVAL;
1162 }
Pablo Neira Ayusob301f252016-03-24 21:29:53 +01001163 get.name[sizeof(get.name) - 1] = '\0';
Dmitry Mishin27229712006-04-01 02:25:19 -08001164
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001165 t = xt_find_table_lock(net, AF_INET, get.name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001166 if (!IS_ERR_OR_NULL(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001167 const struct xt_table_info *private = t->private;
Patrick McHardy9c547952007-12-17 21:52:00 -08001168 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001169 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001170 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 t, uptr->entrytable);
1172 else {
1173 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001174 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001175 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 }
1177 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001178 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 } else
1180 ret = t ? PTR_ERR(t) : -ENOENT;
1181
1182 return ret;
1183}
1184
1185static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001186__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001187 struct xt_table_info *newinfo, unsigned int num_counters,
1188 void __user *counters_ptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001189{
1190 int ret;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001191 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001192 struct xt_table_info *oldinfo;
1193 struct xt_counters *counters;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001194 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001195
1196 ret = 0;
Eric Dumazet83723d62011-01-10 20:11:38 +01001197 counters = vzalloc(num_counters * sizeof(struct xt_counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001198 if (!counters) {
1199 ret = -ENOMEM;
1200 goto out;
1201 }
1202
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001203 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Dmitry Mishin27229712006-04-01 02:25:19 -08001204 "iptable_%s", name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001205 if (IS_ERR_OR_NULL(t)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001206 ret = t ? PTR_ERR(t) : -ENOENT;
1207 goto free_newinfo_counters_untrans;
1208 }
1209
1210 /* You lied! */
1211 if (valid_hooks != t->valid_hooks) {
1212 duprintf("Valid hook crap: %08X vs %08X\n",
1213 valid_hooks, t->valid_hooks);
1214 ret = -EINVAL;
1215 goto put_module;
1216 }
1217
1218 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1219 if (!oldinfo)
1220 goto put_module;
1221
1222 /* Update module usage count based on number of rules */
1223 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1224 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1225 if ((oldinfo->number > oldinfo->initial_entries) ||
1226 (newinfo->number <= oldinfo->initial_entries))
1227 module_put(t->me);
1228 if ((oldinfo->number > oldinfo->initial_entries) &&
1229 (newinfo->number <= oldinfo->initial_entries))
1230 module_put(t->me);
1231
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001232 /* Get the old counters, and synchronize with replace */
Dmitry Mishin27229712006-04-01 02:25:19 -08001233 get_counters(oldinfo, counters);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001234
Dmitry Mishin27229712006-04-01 02:25:19 -08001235 /* Decrease module usage counts and free resource */
Florian Westphal482cfc32015-06-11 01:34:55 +02001236 xt_entry_foreach(iter, oldinfo->entries, oldinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001237 cleanup_entry(iter, net);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001238
Dmitry Mishin27229712006-04-01 02:25:19 -08001239 xt_free_table_info(oldinfo);
1240 if (copy_to_user(counters_ptr, counters,
Thomas Grafc58dd2d2014-04-04 17:57:45 +02001241 sizeof(struct xt_counters) * num_counters) != 0) {
1242 /* Silent error, can't fail, new table is already in place */
1243 net_warn_ratelimited("iptables: counters copy to user failed while replacing table\n");
1244 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001245 vfree(counters);
1246 xt_table_unlock(t);
1247 return ret;
1248
1249 put_module:
1250 module_put(t->me);
1251 xt_table_unlock(t);
1252 free_newinfo_counters_untrans:
1253 vfree(counters);
1254 out:
1255 return ret;
1256}
1257
1258static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001259do_replace(struct net *net, const void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
1261 int ret;
1262 struct ipt_replace tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001263 struct xt_table_info *newinfo;
1264 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001265 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1268 return -EFAULT;
1269
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001270 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001271 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1272 return -ENOMEM;
Dave Jones1086bbe2015-05-19 20:55:17 -04001273 if (tmp.num_counters == 0)
1274 return -EINVAL;
1275
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01001276 tmp.name[sizeof(tmp.name)-1] = 0;
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001277
Harald Welte2e4e6a12006-01-12 13:30:04 -08001278 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 if (!newinfo)
1280 return -ENOMEM;
1281
Florian Westphal482cfc32015-06-11 01:34:55 +02001282 loc_cpu_entry = newinfo->entries;
Eric Dumazet31836062005-12-13 23:13:48 -08001283 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 tmp.size) != 0) {
1285 ret = -EFAULT;
1286 goto free_newinfo;
1287 }
1288
Jan Engelhardt0f234212010-02-24 18:36:04 +01001289 ret = translate_table(net, newinfo, loc_cpu_entry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 if (ret != 0)
Dmitry Mishin27229712006-04-01 02:25:19 -08001291 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01001293 duprintf("Translated table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001295 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001296 tmp.num_counters, tmp.counters);
Dmitry Mishin27229712006-04-01 02:25:19 -08001297 if (ret)
1298 goto free_newinfo_untrans;
1299 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Dmitry Mishin27229712006-04-01 02:25:19 -08001301 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001302 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001303 cleanup_entry(iter, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001305 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 return ret;
1307}
1308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001310do_add_counters(struct net *net, const void __user *user,
Ian Morris6c282552015-10-14 23:17:06 +01001311 unsigned int len, int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
Florian Westphal482cfc32015-06-11 01:34:55 +02001313 unsigned int i;
Dmitry Mishin27229712006-04-01 02:25:19 -08001314 struct xt_counters_info tmp;
1315 struct xt_counters *paddc;
1316 unsigned int num_counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001317 const char *name;
Dmitry Mishin27229712006-04-01 02:25:19 -08001318 int size;
1319 void *ptmp;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001320 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001321 const struct xt_table_info *private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 int ret = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001323 struct ipt_entry *iter;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001324 unsigned int addend;
Dmitry Mishin27229712006-04-01 02:25:19 -08001325#ifdef CONFIG_COMPAT
1326 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Dmitry Mishin27229712006-04-01 02:25:19 -08001328 if (compat) {
1329 ptmp = &compat_tmp;
1330 size = sizeof(struct compat_xt_counters_info);
1331 } else
1332#endif
1333 {
1334 ptmp = &tmp;
1335 size = sizeof(struct xt_counters_info);
1336 }
1337
1338 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 return -EFAULT;
1340
Dmitry Mishin27229712006-04-01 02:25:19 -08001341#ifdef CONFIG_COMPAT
1342 if (compat) {
1343 num_counters = compat_tmp.num_counters;
1344 name = compat_tmp.name;
1345 } else
1346#endif
1347 {
1348 num_counters = tmp.num_counters;
1349 name = tmp.name;
1350 }
1351
1352 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 return -EINVAL;
1354
Eric Dumazete12f8e22010-06-04 13:31:29 +02001355 paddc = vmalloc(len - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (!paddc)
1357 return -ENOMEM;
1358
Dmitry Mishin27229712006-04-01 02:25:19 -08001359 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 ret = -EFAULT;
1361 goto free;
1362 }
1363
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001364 t = xt_find_table_lock(net, AF_INET, name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001365 if (IS_ERR_OR_NULL(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 ret = t ? PTR_ERR(t) : -ENOENT;
1367 goto free;
1368 }
1369
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001370 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001371 private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001372 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 ret = -EINVAL;
1374 goto unlock_up_free;
1375 }
1376
1377 i = 0;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001378 addend = xt_write_recseq_begin();
Florian Westphal482cfc32015-06-11 01:34:55 +02001379 xt_entry_foreach(iter, private->entries, private->size) {
Florian Westphal71ae0df2015-06-11 01:34:54 +02001380 struct xt_counters *tmp;
1381
1382 tmp = xt_get_this_cpu_counter(&iter->counters);
1383 ADD_COUNTER(*tmp, paddc[i].bcnt, paddc[i].pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +01001384 ++i;
1385 }
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001386 xt_write_recseq_end(addend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 unlock_up_free:
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001388 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001389 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 module_put(t->me);
1391 free:
1392 vfree(paddc);
1393
1394 return ret;
1395}
1396
Dmitry Mishin27229712006-04-01 02:25:19 -08001397#ifdef CONFIG_COMPAT
1398struct compat_ipt_replace {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001399 char name[XT_TABLE_MAXNAMELEN];
Dmitry Mishin27229712006-04-01 02:25:19 -08001400 u32 valid_hooks;
1401 u32 num_entries;
1402 u32 size;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001403 u32 hook_entry[NF_INET_NUMHOOKS];
1404 u32 underflow[NF_INET_NUMHOOKS];
Dmitry Mishin27229712006-04-01 02:25:19 -08001405 u32 num_counters;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001406 compat_uptr_t counters; /* struct xt_counters * */
Dmitry Mishin27229712006-04-01 02:25:19 -08001407 struct compat_ipt_entry entries[0];
1408};
1409
Patrick McHardya18aa312007-12-12 10:35:16 -08001410static int
1411compat_copy_entry_to_user(struct ipt_entry *e, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001412 unsigned int *size, struct xt_counters *counters,
Jan Engelhardt05595182010-02-24 18:33:43 +01001413 unsigned int i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001414{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001415 struct xt_entry_target *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001416 struct compat_ipt_entry __user *ce;
1417 u_int16_t target_offset, next_offset;
1418 compat_uint_t origsize;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001419 const struct xt_entry_match *ematch;
1420 int ret = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001421
Dmitry Mishin27229712006-04-01 02:25:19 -08001422 origsize = *size;
1423 ce = (struct compat_ipt_entry __user *)*dstptr;
Jan Engelhardt05595182010-02-24 18:33:43 +01001424 if (copy_to_user(ce, e, sizeof(struct ipt_entry)) != 0 ||
1425 copy_to_user(&ce->counters, &counters[i],
1426 sizeof(counters[i])) != 0)
1427 return -EFAULT;
Patrick McHardya18aa312007-12-12 10:35:16 -08001428
Dmitry Mishin27229712006-04-01 02:25:19 -08001429 *dstptr += sizeof(struct compat_ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001430 *size -= sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1431
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001432 xt_ematch_foreach(ematch, e) {
1433 ret = xt_compat_match_to_user(ematch, dstptr, size);
1434 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001435 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001436 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001437 target_offset = e->target_offset - (origsize - *size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001438 t = ipt_get_target(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001439 ret = xt_compat_target_to_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001440 if (ret)
Jan Engelhardt05595182010-02-24 18:33:43 +01001441 return ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001442 next_offset = e->next_offset - (origsize - *size);
Jan Engelhardt05595182010-02-24 18:33:43 +01001443 if (put_user(target_offset, &ce->target_offset) != 0 ||
1444 put_user(next_offset, &ce->next_offset) != 0)
1445 return -EFAULT;
Dmitry Mishin27229712006-04-01 02:25:19 -08001446 return 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001447}
1448
Denys Vlasenko022748a2008-01-14 23:44:05 -08001449static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001450compat_find_calc_match(struct xt_entry_match *m,
Patrick McHardy4b478242007-12-17 21:46:15 -08001451 const char *name,
1452 const struct ipt_ip *ip,
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001453 int *size)
Dmitry Mishin27229712006-04-01 02:25:19 -08001454{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001455 struct xt_match *match;
Dmitry Mishin27229712006-04-01 02:25:19 -08001456
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001457 match = xt_request_find_match(NFPROTO_IPV4, m->u.user.name,
1458 m->u.user.revision);
1459 if (IS_ERR(match)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001460 duprintf("compat_check_calc_match: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001461 m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001462 return PTR_ERR(match);
Dmitry Mishin27229712006-04-01 02:25:19 -08001463 }
1464 m->u.kernel.match = match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001465 *size += xt_compat_match_offset(match);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001466 return 0;
1467}
1468
Jan Engelhardt05595182010-02-24 18:33:43 +01001469static void compat_release_entry(struct compat_ipt_entry *e)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001470{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001471 struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001472 struct xt_entry_match *ematch;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001473
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001474 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001475 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001476 module_put(ematch->u.kernel.match->me);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001477 t = compat_ipt_get_target(e);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001478 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001479}
1480
Denys Vlasenko022748a2008-01-14 23:44:05 -08001481static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001482check_compat_entry_size_and_hooks(struct compat_ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001483 struct xt_table_info *newinfo,
1484 unsigned int *size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001485 const unsigned char *base,
1486 const unsigned char *limit,
1487 const unsigned int *hook_entries,
1488 const unsigned int *underflows,
Patrick McHardy4b478242007-12-17 21:46:15 -08001489 const char *name)
Dmitry Mishin27229712006-04-01 02:25:19 -08001490{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001491 struct xt_entry_match *ematch;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001492 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001493 struct xt_target *target;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001494 unsigned int entry_offset;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001495 unsigned int j;
1496 int ret, off, h;
Dmitry Mishin27229712006-04-01 02:25:19 -08001497
1498 duprintf("check_compat_entry_size_and_hooks %p\n", e);
Joe Perches3666ed12009-11-23 23:17:06 +01001499 if ((unsigned long)e % __alignof__(struct compat_ipt_entry) != 0 ||
Florian Westphal6e94e0c2016-03-22 18:02:50 +01001500 (unsigned char *)e + sizeof(struct compat_ipt_entry) >= limit ||
1501 (unsigned char *)e + e->next_offset > limit) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001502 duprintf("Bad offset %p, limit = %p\n", e, limit);
1503 return -EINVAL;
1504 }
1505
1506 if (e->next_offset < sizeof(struct compat_ipt_entry) +
Patrick McHardy4b478242007-12-17 21:46:15 -08001507 sizeof(struct compat_xt_entry_target)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001508 duprintf("checking: element %p size %u\n",
1509 e, e->next_offset);
1510 return -EINVAL;
1511 }
1512
Patrick McHardy73cd5982007-12-17 21:47:32 -08001513 /* For purposes of check_entry casting the compat entry is fine */
Florian Westphalbdf533d2016-03-22 18:02:49 +01001514 ret = check_entry((struct ipt_entry *)e);
Dmitry Mishina96be242006-12-12 00:29:26 -08001515 if (ret)
1516 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -08001517
Patrick McHardy30c08c42007-12-17 21:47:14 -08001518 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001519 entry_offset = (void *)e - (void *)base;
1520 j = 0;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001521 xt_ematch_foreach(ematch, e) {
Florian Westphal2f065502015-05-24 01:00:41 +02001522 ret = compat_find_calc_match(ematch, name, &e->ip, &off);
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001523 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001524 goto release_matches;
1525 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001526 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001527
Patrick McHardy73cd5982007-12-17 21:47:32 -08001528 t = compat_ipt_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001529 target = xt_request_find_target(NFPROTO_IPV4, t->u.user.name,
1530 t->u.user.revision);
1531 if (IS_ERR(target)) {
Dmitry Mishina96be242006-12-12 00:29:26 -08001532 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001533 t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001534 ret = PTR_ERR(target);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001535 goto release_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001536 }
1537 t->u.kernel.target = target;
1538
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001539 off += xt_compat_target_offset(target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001540 *size += off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001541 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001542 if (ret)
1543 goto out;
1544
1545 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001546 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001547 if ((unsigned char *)e - base == hook_entries[h])
1548 newinfo->hook_entry[h] = hook_entries[h];
1549 if ((unsigned char *)e - base == underflows[h])
1550 newinfo->underflow[h] = underflows[h];
1551 }
1552
1553 /* Clear counters and comefrom */
Patrick McHardy73cd5982007-12-17 21:47:32 -08001554 memset(&e->counters, 0, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001555 e->comefrom = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001556 return 0;
Patrick McHardybec71b12006-09-20 12:04:08 -07001557
Dmitry Mishin27229712006-04-01 02:25:19 -08001558out:
Patrick McHardybec71b12006-09-20 12:04:08 -07001559 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001560release_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001561 xt_ematch_foreach(ematch, e) {
1562 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001563 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001564 module_put(ematch->u.kernel.match->me);
1565 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001566 return ret;
1567}
1568
Patrick McHardy4b478242007-12-17 21:46:15 -08001569static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001570compat_copy_entry_from_user(struct compat_ipt_entry *e, void **dstptr,
Patrick McHardy4b478242007-12-17 21:46:15 -08001571 unsigned int *size, const char *name,
1572 struct xt_table_info *newinfo, unsigned char *base)
Dmitry Mishin27229712006-04-01 02:25:19 -08001573{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001574 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001575 struct xt_target *target;
Dmitry Mishin27229712006-04-01 02:25:19 -08001576 struct ipt_entry *de;
1577 unsigned int origsize;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001578 int ret, h;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001579 struct xt_entry_match *ematch;
Dmitry Mishin27229712006-04-01 02:25:19 -08001580
1581 ret = 0;
1582 origsize = *size;
1583 de = (struct ipt_entry *)*dstptr;
1584 memcpy(de, e, sizeof(struct ipt_entry));
Patrick McHardy73cd5982007-12-17 21:47:32 -08001585 memcpy(&de->counters, &e->counters, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001586
Patrick McHardy73cd5982007-12-17 21:47:32 -08001587 *dstptr += sizeof(struct ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001588 *size += sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1589
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001590 xt_ematch_foreach(ematch, e) {
1591 ret = xt_compat_match_from_user(ematch, dstptr, size);
1592 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001593 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001594 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001595 de->target_offset = e->target_offset - (origsize - *size);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001596 t = compat_ipt_get_target(e);
Dmitry Mishin27229712006-04-01 02:25:19 -08001597 target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001598 xt_compat_target_from_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001599
1600 de->next_offset = e->next_offset - (origsize - *size);
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001601 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001602 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1603 newinfo->hook_entry[h] -= origsize - *size;
1604 if ((unsigned char *)de - base < newinfo->underflow[h])
1605 newinfo->underflow[h] -= origsize - *size;
1606 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001607 return ret;
1608}
Dmitry Mishin27229712006-04-01 02:25:19 -08001609
Denys Vlasenko022748a2008-01-14 23:44:05 -08001610static int
Jan Engelhardt05595182010-02-24 18:33:43 +01001611compat_check_entry(struct ipt_entry *e, struct net *net, const char *name)
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001612{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001613 struct xt_entry_match *ematch;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001614 struct xt_mtchk_param mtpar;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001615 unsigned int j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001616 int ret = 0;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001617
Florian Westphal71ae0df2015-06-11 01:34:54 +02001618 e->counters.pcnt = xt_percpu_counter_alloc();
1619 if (IS_ERR_VALUE(e->counters.pcnt))
1620 return -ENOMEM;
1621
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001622 j = 0;
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001623 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02001624 mtpar.table = name;
1625 mtpar.entryinfo = &e->ip;
1626 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +02001627 mtpar.family = NFPROTO_IPV4;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001628 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001629 ret = check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001630 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001631 goto cleanup_matches;
1632 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001633 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001634
Patrick McHardyadd67462010-02-03 13:45:12 +01001635 ret = check_target(e, net, name);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001636 if (ret)
1637 goto cleanup_matches;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001638 return 0;
1639
1640 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001641 xt_ematch_foreach(ematch, e) {
1642 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001643 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001644 cleanup_match(ematch, net);
1645 }
Florian Westphal71ae0df2015-06-11 01:34:54 +02001646
1647 xt_percpu_counter_free(e->counters.pcnt);
1648
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001649 return ret;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001650}
1651
Dmitry Mishin27229712006-04-01 02:25:19 -08001652static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001653translate_compat_table(struct net *net,
1654 const char *name,
Patrick McHardy4b478242007-12-17 21:46:15 -08001655 unsigned int valid_hooks,
1656 struct xt_table_info **pinfo,
1657 void **pentry0,
1658 unsigned int total_size,
1659 unsigned int number,
1660 unsigned int *hook_entries,
1661 unsigned int *underflows)
Dmitry Mishin27229712006-04-01 02:25:19 -08001662{
Dmitry Mishin920b8682006-10-30 15:14:27 -08001663 unsigned int i, j;
Dmitry Mishin27229712006-04-01 02:25:19 -08001664 struct xt_table_info *newinfo, *info;
1665 void *pos, *entry0, *entry1;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001666 struct compat_ipt_entry *iter0;
1667 struct ipt_entry *iter1;
Dmitry Mishin27229712006-04-01 02:25:19 -08001668 unsigned int size;
Jan Engelhardt05595182010-02-24 18:33:43 +01001669 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001670
1671 info = *pinfo;
1672 entry0 = *pentry0;
1673 size = total_size;
1674 info->number = number;
1675
1676 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001677 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001678 info->hook_entry[i] = 0xFFFFFFFF;
1679 info->underflow[i] = 0xFFFFFFFF;
1680 }
1681
1682 duprintf("translate_compat_table: size %u\n", info->size);
Dmitry Mishin920b8682006-10-30 15:14:27 -08001683 j = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001684 xt_compat_lock(AF_INET);
Eric Dumazet255d0dc2010-12-18 18:35:15 +01001685 xt_compat_init_offsets(AF_INET, number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001686 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001687 xt_entry_foreach(iter0, entry0, total_size) {
1688 ret = check_compat_entry_size_and_hooks(iter0, info, &size,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001689 entry0,
1690 entry0 + total_size,
1691 hook_entries,
1692 underflows,
1693 name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001694 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001695 goto out_unlock;
1696 ++j;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001697 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001698
1699 ret = -EINVAL;
Dmitry Mishin920b8682006-10-30 15:14:27 -08001700 if (j != number) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001701 duprintf("translate_compat_table: %u not %u entries\n",
Dmitry Mishin920b8682006-10-30 15:14:27 -08001702 j, number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001703 goto out_unlock;
1704 }
1705
1706 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001707 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001708 /* Only hooks which are valid */
1709 if (!(valid_hooks & (1 << i)))
1710 continue;
1711 if (info->hook_entry[i] == 0xFFFFFFFF) {
1712 duprintf("Invalid hook entry %u %u\n",
1713 i, hook_entries[i]);
1714 goto out_unlock;
1715 }
1716 if (info->underflow[i] == 0xFFFFFFFF) {
1717 duprintf("Invalid underflow %u %u\n",
1718 i, underflows[i]);
1719 goto out_unlock;
1720 }
1721 }
1722
1723 ret = -ENOMEM;
1724 newinfo = xt_alloc_table_info(size);
1725 if (!newinfo)
1726 goto out_unlock;
1727
1728 newinfo->number = number;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001729 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001730 newinfo->hook_entry[i] = info->hook_entry[i];
1731 newinfo->underflow[i] = info->underflow[i];
1732 }
Florian Westphal482cfc32015-06-11 01:34:55 +02001733 entry1 = newinfo->entries;
Dmitry Mishin27229712006-04-01 02:25:19 -08001734 pos = entry1;
Patrick McHardy4b478242007-12-17 21:46:15 -08001735 size = total_size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001736 xt_entry_foreach(iter0, entry0, total_size) {
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001737 ret = compat_copy_entry_from_user(iter0, &pos, &size,
1738 name, newinfo, entry1);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001739 if (ret != 0)
1740 break;
1741 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001742 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001743 xt_compat_unlock(AF_INET);
1744 if (ret)
1745 goto free_newinfo;
1746
1747 ret = -ELOOP;
1748 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1749 goto free_newinfo;
1750
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001751 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001752 xt_entry_foreach(iter1, entry1, newinfo->size) {
Jan Engelhardt05595182010-02-24 18:33:43 +01001753 ret = compat_check_entry(iter1, net, name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001754 if (ret != 0)
1755 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001756 ++i;
Florian Westphal98dbbfc2015-08-26 23:20:51 +02001757 if (strcmp(ipt_get_target(iter1)->u.user.name,
1758 XT_ERROR_TARGET) == 0)
1759 ++newinfo->stacksize;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001760 }
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001761 if (ret) {
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001762 /*
1763 * The first i matches need cleanup_entry (calls ->destroy)
1764 * because they had called ->check already. The other j-i
1765 * entries need only release.
1766 */
1767 int skip = i;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001768 j -= i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001769 xt_entry_foreach(iter0, entry0, newinfo->size) {
1770 if (skip-- > 0)
1771 continue;
Jan Engelhardt05595182010-02-24 18:33:43 +01001772 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001773 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001774 compat_release_entry(iter0);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001775 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001776 xt_entry_foreach(iter1, entry1, newinfo->size) {
1777 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001778 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001779 cleanup_entry(iter1, net);
1780 }
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001781 xt_free_table_info(newinfo);
1782 return ret;
1783 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001784
Dmitry Mishin27229712006-04-01 02:25:19 -08001785 *pinfo = newinfo;
1786 *pentry0 = entry1;
1787 xt_free_table_info(info);
1788 return 0;
1789
1790free_newinfo:
1791 xt_free_table_info(newinfo);
1792out:
Jan Engelhardt05595182010-02-24 18:33:43 +01001793 xt_entry_foreach(iter0, entry0, total_size) {
1794 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001795 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001796 compat_release_entry(iter0);
1797 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001798 return ret;
1799out_unlock:
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001800 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001801 xt_compat_unlock(AF_INET);
1802 goto out;
1803}
1804
1805static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001806compat_do_replace(struct net *net, void __user *user, unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001807{
1808 int ret;
1809 struct compat_ipt_replace tmp;
1810 struct xt_table_info *newinfo;
1811 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001812 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001813
1814 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1815 return -EFAULT;
1816
Dmitry Mishin27229712006-04-01 02:25:19 -08001817 /* overflow check */
Eric Dumazet259d4e42007-12-04 23:24:56 -08001818 if (tmp.size >= INT_MAX / num_possible_cpus())
Dmitry Mishin27229712006-04-01 02:25:19 -08001819 return -ENOMEM;
1820 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1821 return -ENOMEM;
Dave Jones1086bbe2015-05-19 20:55:17 -04001822 if (tmp.num_counters == 0)
1823 return -EINVAL;
1824
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01001825 tmp.name[sizeof(tmp.name)-1] = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001826
1827 newinfo = xt_alloc_table_info(tmp.size);
1828 if (!newinfo)
1829 return -ENOMEM;
1830
Florian Westphal482cfc32015-06-11 01:34:55 +02001831 loc_cpu_entry = newinfo->entries;
Dmitry Mishin27229712006-04-01 02:25:19 -08001832 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1833 tmp.size) != 0) {
1834 ret = -EFAULT;
1835 goto free_newinfo;
1836 }
1837
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001838 ret = translate_compat_table(net, tmp.name, tmp.valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001839 &newinfo, &loc_cpu_entry, tmp.size,
1840 tmp.num_entries, tmp.hook_entry,
1841 tmp.underflow);
Dmitry Mishin27229712006-04-01 02:25:19 -08001842 if (ret != 0)
1843 goto free_newinfo;
1844
1845 duprintf("compat_do_replace: Translated table\n");
1846
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001847 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001848 tmp.num_counters, compat_ptr(tmp.counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001849 if (ret)
1850 goto free_newinfo_untrans;
1851 return 0;
1852
1853 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001854 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001855 cleanup_entry(iter, net);
Dmitry Mishin27229712006-04-01 02:25:19 -08001856 free_newinfo:
1857 xt_free_table_info(newinfo);
1858 return ret;
1859}
1860
1861static int
1862compat_do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user,
Patrick McHardy4b478242007-12-17 21:46:15 -08001863 unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001864{
1865 int ret;
1866
Eric W. Biederman52e804c2012-11-16 03:03:05 +00001867 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Dmitry Mishin27229712006-04-01 02:25:19 -08001868 return -EPERM;
1869
1870 switch (cmd) {
1871 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001872 ret = compat_do_replace(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001873 break;
1874
1875 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001876 ret = do_add_counters(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001877 break;
1878
1879 default:
1880 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1881 ret = -EINVAL;
1882 }
1883
1884 return ret;
1885}
1886
Patrick McHardy4b478242007-12-17 21:46:15 -08001887struct compat_ipt_get_entries {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001888 char name[XT_TABLE_MAXNAMELEN];
Dmitry Mishin27229712006-04-01 02:25:19 -08001889 compat_uint_t size;
1890 struct compat_ipt_entry entrytable[0];
1891};
1892
Patrick McHardy4b478242007-12-17 21:46:15 -08001893static int
1894compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1895 void __user *userptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001896{
Dmitry Mishin27229712006-04-01 02:25:19 -08001897 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001898 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001899 void __user *pos;
1900 unsigned int size;
1901 int ret = 0;
Patrick McHardya18aa312007-12-12 10:35:16 -08001902 unsigned int i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001903 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001904
1905 counters = alloc_counters(table);
1906 if (IS_ERR(counters))
1907 return PTR_ERR(counters);
1908
Dmitry Mishin27229712006-04-01 02:25:19 -08001909 pos = userptr;
1910 size = total_size;
Florian Westphal482cfc32015-06-11 01:34:55 +02001911 xt_entry_foreach(iter, private->entries, total_size) {
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001912 ret = compat_copy_entry_to_user(iter, &pos,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001913 &size, counters, i++);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001914 if (ret != 0)
1915 break;
1916 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001917
Dmitry Mishin27229712006-04-01 02:25:19 -08001918 vfree(counters);
1919 return ret;
1920}
1921
1922static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001923compat_get_entries(struct net *net, struct compat_ipt_get_entries __user *uptr,
1924 int *len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001925{
1926 int ret;
1927 struct compat_ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001928 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001929
Dmitry Mishin27229712006-04-01 02:25:19 -08001930 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001931 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001932 return -EINVAL;
1933 }
1934
1935 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1936 return -EFAULT;
1937
1938 if (*len != sizeof(struct compat_ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001939 duprintf("compat_get_entries: %u != %zu\n",
1940 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001941 return -EINVAL;
1942 }
Pablo Neira Ayusob301f252016-03-24 21:29:53 +01001943 get.name[sizeof(get.name) - 1] = '\0';
Dmitry Mishin27229712006-04-01 02:25:19 -08001944
1945 xt_compat_lock(AF_INET);
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001946 t = xt_find_table_lock(net, AF_INET, get.name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001947 if (!IS_ERR_OR_NULL(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001948 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001949 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08001950 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001951 ret = compat_table_info(private, &info);
1952 if (!ret && get.size == info.size) {
1953 ret = compat_copy_entries_to_user(private->size,
Patrick McHardy4b478242007-12-17 21:46:15 -08001954 t, uptr->entrytable);
Dmitry Mishin27229712006-04-01 02:25:19 -08001955 } else if (!ret) {
1956 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001957 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001958 ret = -EAGAIN;
Dmitry Mishin27229712006-04-01 02:25:19 -08001959 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001960 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001961 module_put(t->me);
1962 xt_table_unlock(t);
1963 } else
1964 ret = t ? PTR_ERR(t) : -ENOENT;
1965
1966 xt_compat_unlock(AF_INET);
1967 return ret;
1968}
1969
Patrick McHardy79030ed2006-09-20 12:05:08 -07001970static int do_ipt_get_ctl(struct sock *, int, void __user *, int *);
1971
Dmitry Mishin27229712006-04-01 02:25:19 -08001972static int
1973compat_do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1974{
1975 int ret;
1976
Eric W. Biederman52e804c2012-11-16 03:03:05 +00001977 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Björn Steinbrink82fac052006-10-20 00:21:10 -07001978 return -EPERM;
1979
Dmitry Mishin27229712006-04-01 02:25:19 -08001980 switch (cmd) {
1981 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001982 ret = get_info(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001983 break;
1984 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001985 ret = compat_get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001986 break;
1987 default:
Patrick McHardy79030ed2006-09-20 12:05:08 -07001988 ret = do_ipt_get_ctl(sk, cmd, user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001989 }
1990 return ret;
1991}
1992#endif
1993
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994static int
Patrick McHardy9c547952007-12-17 21:52:00 -08001995do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996{
1997 int ret;
1998
Eric W. Biederman52e804c2012-11-16 03:03:05 +00001999 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 return -EPERM;
2001
2002 switch (cmd) {
2003 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002004 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 break;
2006
2007 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002008 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 break;
2010
2011 default:
2012 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
2013 ret = -EINVAL;
2014 }
2015
2016 return ret;
2017}
2018
2019static int
2020do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2021{
2022 int ret;
2023
Eric W. Biederman52e804c2012-11-16 03:03:05 +00002024 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 return -EPERM;
2026
2027 switch (cmd) {
Dmitry Mishin27229712006-04-01 02:25:19 -08002028 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002029 ret = get_info(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 break;
Dmitry Mishin27229712006-04-01 02:25:19 -08002031
2032 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002033 ret = get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08002034 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
2036 case IPT_SO_GET_REVISION_MATCH:
2037 case IPT_SO_GET_REVISION_TARGET: {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02002038 struct xt_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002039 int target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
2041 if (*len != sizeof(rev)) {
2042 ret = -EINVAL;
2043 break;
2044 }
2045 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
2046 ret = -EFAULT;
2047 break;
2048 }
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01002049 rev.name[sizeof(rev.name)-1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
2051 if (cmd == IPT_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08002052 target = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08002054 target = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
Harald Welte2e4e6a12006-01-12 13:30:04 -08002056 try_then_request_module(xt_find_revision(AF_INET, rev.name,
2057 rev.revision,
2058 target, &ret),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 "ipt_%s", rev.name);
2060 break;
2061 }
2062
2063 default:
2064 duprintf("do_ipt_get_ctl: unknown request %i\n", cmd);
2065 ret = -EINVAL;
2066 }
2067
2068 return ret;
2069}
2070
Florian Westphalb9e69e12016-02-25 10:08:36 +01002071static void __ipt_unregister_table(struct net *net, struct xt_table *table)
2072{
2073 struct xt_table_info *private;
2074 void *loc_cpu_entry;
2075 struct module *table_owner = table->me;
2076 struct ipt_entry *iter;
2077
2078 private = xt_unregister_table(table);
2079
2080 /* Decrease module usage counts and free resources */
2081 loc_cpu_entry = private->entries;
2082 xt_entry_foreach(iter, loc_cpu_entry, private->size)
2083 cleanup_entry(iter, net);
2084 if (private->number > private->initial_entries)
2085 module_put(table_owner);
2086 xt_free_table_info(private);
2087}
2088
Florian Westphala67dd262016-02-25 10:08:35 +01002089int ipt_register_table(struct net *net, const struct xt_table *table,
2090 const struct ipt_replace *repl,
2091 const struct nf_hook_ops *ops, struct xt_table **res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092{
2093 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002094 struct xt_table_info *newinfo;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +02002095 struct xt_table_info bootstrap = {0};
Eric Dumazet31836062005-12-13 23:13:48 -08002096 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08002097 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Harald Welte2e4e6a12006-01-12 13:30:04 -08002099 newinfo = xt_alloc_table_info(repl->size);
Florian Westphala67dd262016-02-25 10:08:35 +01002100 if (!newinfo)
2101 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Florian Westphal482cfc32015-06-11 01:34:55 +02002103 loc_cpu_entry = newinfo->entries;
Eric Dumazet31836062005-12-13 23:13:48 -08002104 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
Jan Engelhardt0f234212010-02-24 18:36:04 +01002106 ret = translate_table(net, newinfo, loc_cpu_entry, repl);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002107 if (ret != 0)
2108 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002110 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08002111 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002112 ret = PTR_ERR(new_table);
2113 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 }
2115
Florian Westphalb9e69e12016-02-25 10:08:36 +01002116 /* set res now, will see skbs right after nf_register_net_hooks */
Florian Westphala67dd262016-02-25 10:08:35 +01002117 WRITE_ONCE(*res, new_table);
Florian Westphalb9e69e12016-02-25 10:08:36 +01002118
2119 ret = nf_register_net_hooks(net, ops, hweight32(table->valid_hooks));
2120 if (ret != 0) {
2121 __ipt_unregister_table(net, new_table);
2122 *res = NULL;
2123 }
2124
Florian Westphala67dd262016-02-25 10:08:35 +01002125 return ret;
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002126
2127out_free:
2128 xt_free_table_info(newinfo);
Florian Westphala67dd262016-02-25 10:08:35 +01002129 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130}
2131
Florian Westphala67dd262016-02-25 10:08:35 +01002132void ipt_unregister_table(struct net *net, struct xt_table *table,
2133 const struct nf_hook_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134{
Florian Westphalb9e69e12016-02-25 10:08:36 +01002135 nf_unregister_net_hooks(net, ops, hweight32(table->valid_hooks));
2136 __ipt_unregister_table(net, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137}
2138
2139/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002140static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141icmp_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2142 u_int8_t type, u_int8_t code,
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002143 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144{
Patrick McHardy9c547952007-12-17 21:52:00 -08002145 return ((test_type == 0xFF) ||
2146 (type == test_type && code >= min_code && code <= max_code))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 ^ invert;
2148}
2149
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002150static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +02002151icmp_match(const struct sk_buff *skb, struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152{
Jan Engelhardt5452e422008-04-14 11:15:35 +02002153 const struct icmphdr *ic;
2154 struct icmphdr _icmph;
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002155 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
2157 /* Must not be a fragment. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002158 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002159 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002161 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 if (ic == NULL) {
2163 /* We've been asked to examine this packet, and we
2164 * can't. Hence, no choice but to drop.
2165 */
2166 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtb4ba2612009-07-07 20:54:30 +02002167 par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002168 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 }
2170
2171 return icmp_type_code_match(icmpinfo->type,
2172 icmpinfo->code[0],
2173 icmpinfo->code[1],
2174 ic->type, ic->code,
2175 !!(icmpinfo->invflags&IPT_ICMP_INV));
2176}
2177
Jan Engelhardtb0f38452010-03-19 17:16:42 +01002178static int icmp_checkentry(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002180 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002182 /* Must specify no unknown invflags */
Jan Engelhardtbd414ee2010-03-23 16:35:56 +01002183 return (icmpinfo->invflags & ~IPT_ICMP_INV) ? -EINVAL : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184}
2185
Jan Engelhardt45385062009-07-04 12:50:00 +02002186static struct xt_target ipt_builtin_tg[] __read_mostly = {
2187 {
Jan Engelhardt243bf6e2010-10-13 16:28:00 +02002188 .name = XT_STANDARD_TARGET,
Jan Engelhardt45385062009-07-04 12:50:00 +02002189 .targetsize = sizeof(int),
2190 .family = NFPROTO_IPV4,
Dmitry Mishin27229712006-04-01 02:25:19 -08002191#ifdef CONFIG_COMPAT
Jan Engelhardt45385062009-07-04 12:50:00 +02002192 .compatsize = sizeof(compat_int_t),
2193 .compat_from_user = compat_standard_from_user,
2194 .compat_to_user = compat_standard_to_user,
Dmitry Mishin27229712006-04-01 02:25:19 -08002195#endif
Jan Engelhardt45385062009-07-04 12:50:00 +02002196 },
2197 {
Jan Engelhardt243bf6e2010-10-13 16:28:00 +02002198 .name = XT_ERROR_TARGET,
Jan Engelhardt45385062009-07-04 12:50:00 +02002199 .target = ipt_error,
Jan Engelhardt12b00c22010-10-13 15:56:56 +02002200 .targetsize = XT_FUNCTION_MAXNAMELEN,
Jan Engelhardt45385062009-07-04 12:50:00 +02002201 .family = NFPROTO_IPV4,
2202 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203};
2204
2205static struct nf_sockopt_ops ipt_sockopts = {
2206 .pf = PF_INET,
2207 .set_optmin = IPT_BASE_CTL,
2208 .set_optmax = IPT_SO_SET_MAX+1,
2209 .set = do_ipt_set_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002210#ifdef CONFIG_COMPAT
2211 .compat_set = compat_do_ipt_set_ctl,
2212#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 .get_optmin = IPT_BASE_CTL,
2214 .get_optmax = IPT_SO_GET_MAX+1,
2215 .get = do_ipt_get_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002216#ifdef CONFIG_COMPAT
2217 .compat_get = compat_do_ipt_get_ctl,
2218#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002219 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220};
2221
Jan Engelhardt45385062009-07-04 12:50:00 +02002222static struct xt_match ipt_builtin_mt[] __read_mostly = {
2223 {
2224 .name = "icmp",
2225 .match = icmp_match,
2226 .matchsize = sizeof(struct ipt_icmp),
2227 .checkentry = icmp_checkentry,
2228 .proto = IPPROTO_ICMP,
2229 .family = NFPROTO_IPV4,
2230 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231};
2232
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002233static int __net_init ip_tables_net_init(struct net *net)
2234{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002235 return xt_proto_init(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002236}
2237
2238static void __net_exit ip_tables_net_exit(struct net *net)
2239{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002240 xt_proto_fini(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002241}
2242
2243static struct pernet_operations ip_tables_net_ops = {
2244 .init = ip_tables_net_init,
2245 .exit = ip_tables_net_exit,
2246};
2247
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002248static int __init ip_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249{
2250 int ret;
2251
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002252 ret = register_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002253 if (ret < 0)
2254 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002255
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002256 /* No one else will be downing sem now, so we won't sleep */
Jan Engelhardt45385062009-07-04 12:50:00 +02002257 ret = xt_register_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002258 if (ret < 0)
2259 goto err2;
Jan Engelhardt45385062009-07-04 12:50:00 +02002260 ret = xt_register_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002261 if (ret < 0)
2262 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
2264 /* Register setsockopt */
2265 ret = nf_register_sockopt(&ipt_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002266 if (ret < 0)
2267 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01002269 pr_info("(C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002271
2272err5:
Jan Engelhardt45385062009-07-04 12:50:00 +02002273 xt_unregister_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002274err4:
Jan Engelhardt45385062009-07-04 12:50:00 +02002275 xt_unregister_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002276err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002277 unregister_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002278err1:
2279 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280}
2281
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002282static void __exit ip_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283{
2284 nf_unregister_sockopt(&ipt_sockopts);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002285
Jan Engelhardt45385062009-07-04 12:50:00 +02002286 xt_unregister_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
2287 xt_unregister_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002288 unregister_pernet_subsys(&ip_tables_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289}
2290
2291EXPORT_SYMBOL(ipt_register_table);
2292EXPORT_SYMBOL(ipt_unregister_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293EXPORT_SYMBOL(ipt_do_table);
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002294module_init(ip_tables_init);
2295module_exit(ip_tables_fini);