blob: c26ccd818e8f46e095e789e2b16a828fa36434a0 [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
Florian Westphal36472342016-04-01 14:17:22 +0200446static bool find_jump_target(const struct xt_table_info *t,
447 const struct ipt_entry *target)
448{
449 struct ipt_entry *iter;
450
451 xt_entry_foreach(iter, t->entries, t->size) {
452 if (iter == target)
453 return true;
454 }
455 return false;
456}
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458/* Figures out from what hook each rule can be called: returns 0 if
Florian Westphal98dbbfc2015-08-26 23:20:51 +0200459 there are loops. Puts hook bitmask in comefrom. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460static int
Florian Westphal98dbbfc2015-08-26 23:20:51 +0200461mark_source_chains(const struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800462 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 unsigned int hook;
465
466 /* No recursion; use packet counter to save back ptrs (reset
467 to 0 as we leave), and comefrom to save source hook bitmask */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800468 for (hook = 0; hook < NF_INET_NUMHOOKS; hook++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 unsigned int pos = newinfo->hook_entry[hook];
Patrick McHardy9c547952007-12-17 21:52:00 -0800470 struct ipt_entry *e = (struct ipt_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472 if (!(valid_hooks & (1 << hook)))
473 continue;
474
475 /* Set initial back pointer. */
476 e->counters.pcnt = pos;
477
478 for (;;) {
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200479 const struct xt_standard_target *t
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200480 = (void *)ipt_get_target_c(e);
Al Viroe1b4b9f2006-12-12 00:29:52 -0800481 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800483 if (e->comefrom & (1 << NF_INET_NUMHOOKS)) {
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200484 pr_err("iptables: loop hook %u pos %u %08X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 hook, pos, e->comefrom);
486 return 0;
487 }
Patrick McHardy9c547952007-12-17 21:52:00 -0800488 e->comefrom |= ((1 << hook) | (1 << NF_INET_NUMHOOKS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 /* Unconditional return/END. */
Florian Westphal54d83fc2016-03-22 18:02:52 +0100491 if ((unconditional(e) &&
Joe Perches3666ed12009-11-23 23:17:06 +0100492 (strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200493 XT_STANDARD_TARGET) == 0) &&
Florian Westphal54d83fc2016-03-22 18:02:52 +0100494 t->verdict < 0) || visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 unsigned int oldpos, size;
496
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100497 if ((strcmp(t->target.u.user.name,
Ian Morris24cebe32015-10-14 23:17:07 +0100498 XT_STANDARD_TARGET) == 0) &&
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100499 t->verdict < -NF_MAX_VERDICT - 1) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800500 duprintf("mark_source_chains: bad "
501 "negative verdict (%i)\n",
502 t->verdict);
503 return 0;
504 }
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 /* Return: backtrack through the last
507 big jump. */
508 do {
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800509 e->comefrom ^= (1<<NF_INET_NUMHOOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510#ifdef DEBUG_IP_FIREWALL_USER
511 if (e->comefrom
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800512 & (1 << NF_INET_NUMHOOKS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 duprintf("Back unset "
514 "on hook %u "
515 "rule %u\n",
516 hook, pos);
517 }
518#endif
519 oldpos = pos;
520 pos = e->counters.pcnt;
521 e->counters.pcnt = 0;
522
523 /* We're at the start. */
524 if (pos == oldpos)
525 goto next;
526
527 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800528 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 } while (oldpos == pos + e->next_offset);
530
531 /* Move along one */
532 size = e->next_offset;
533 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800534 (entry0 + pos + size);
Florian Westphalf24e2302016-04-01 14:17:21 +0200535 if (pos + size >= newinfo->size)
536 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 e->counters.pcnt = pos;
538 pos += size;
539 } else {
540 int newpos = t->verdict;
541
542 if (strcmp(t->target.u.user.name,
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200543 XT_STANDARD_TARGET) == 0 &&
Joe Perches3666ed12009-11-23 23:17:06 +0100544 newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800545 if (newpos > newinfo->size -
546 sizeof(struct ipt_entry)) {
547 duprintf("mark_source_chains: "
548 "bad verdict (%i)\n",
549 newpos);
550 return 0;
551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 /* This a jump; chase it. */
Florian Westphal98dbbfc2015-08-26 23:20:51 +0200553 duprintf("Jump rule %u -> %u\n",
554 pos, newpos);
Florian Westphal36472342016-04-01 14:17:22 +0200555 e = (struct ipt_entry *)
556 (entry0 + newpos);
557 if (!find_jump_target(newinfo, e))
558 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 } else {
560 /* ... this is a fallthru */
561 newpos = pos + e->next_offset;
Florian Westphalf24e2302016-04-01 14:17:21 +0200562 if (newpos >= newinfo->size)
563 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
565 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800566 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 e->counters.pcnt = pos;
568 pos = newpos;
569 }
570 }
Ian Morris19f0a602015-10-14 23:17:04 +0100571next:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 duprintf("Finished chain %u\n", hook);
573 }
574 return 1;
575}
576
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200577static void cleanup_match(struct xt_entry_match *m, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200579 struct xt_mtdtor_param par;
580
Alexey Dobriyanf54e9362010-01-18 08:25:47 +0100581 par.net = net;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200582 par.match = m->u.kernel.match;
583 par.matchinfo = m->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200584 par.family = NFPROTO_IPV4;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200585 if (par.match->destroy != NULL)
586 par.match->destroy(&par);
587 module_put(par.match->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
Denys Vlasenko022748a2008-01-14 23:44:05 -0800590static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200591check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
Dmitry Mishina96be242006-12-12 00:29:26 -0800592{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200593 const struct ipt_ip *ip = par->entryinfo;
Dmitry Mishina96be242006-12-12 00:29:26 -0800594 int ret;
595
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200596 par->match = m->u.kernel.match;
597 par->matchinfo = m->data;
598
Jan Engelhardt916a9172008-10-08 11:35:20 +0200599 ret = xt_check_match(par, m->u.match_size - sizeof(*m),
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200600 ip->proto, ip->invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200601 if (ret < 0) {
Jan Engelhardtb5cad0d2010-05-02 13:55:21 +0200602 duprintf("check failed for `%s'.\n", par->match->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200603 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800604 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200605 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800606}
607
Denys Vlasenko022748a2008-01-14 23:44:05 -0800608static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200609find_check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800611 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800612 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200614 match = xt_request_find_match(NFPROTO_IPV4, m->u.user.name,
615 m->u.user.revision);
616 if (IS_ERR(match)) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800617 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200618 return PTR_ERR(match);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
620 m->u.kernel.match = match;
621
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100622 ret = check_match(m, par);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800623 if (ret)
624 goto err;
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800627err:
628 module_put(m->u.kernel.match->me);
629 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
Patrick McHardyadd67462010-02-03 13:45:12 +0100632static int check_target(struct ipt_entry *e, struct net *net, const char *name)
Dmitry Mishina96be242006-12-12 00:29:26 -0800633{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200634 struct xt_entry_target *t = ipt_get_target(e);
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200635 struct xt_tgchk_param par = {
Patrick McHardyadd67462010-02-03 13:45:12 +0100636 .net = net,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200637 .table = name,
638 .entryinfo = e,
639 .target = t->u.kernel.target,
640 .targinfo = t->data,
641 .hook_mask = e->comefrom,
Jan Engelhardt916a9172008-10-08 11:35:20 +0200642 .family = NFPROTO_IPV4,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200643 };
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900644 int ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800645
Jan Engelhardt916a9172008-10-08 11:35:20 +0200646 ret = xt_check_target(&par, t->u.target_size - sizeof(*t),
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200647 e->ip.proto, e->ip.invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200648 if (ret < 0) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100649 duprintf("check failed for `%s'.\n",
Dmitry Mishina96be242006-12-12 00:29:26 -0800650 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200651 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800652 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200653 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800654}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Denys Vlasenko022748a2008-01-14 23:44:05 -0800656static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100657find_check_entry(struct ipt_entry *e, struct net *net, const char *name,
Jan Engelhardt05595182010-02-24 18:33:43 +0100658 unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200660 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800661 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 int ret;
663 unsigned int j;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200664 struct xt_mtchk_param mtpar;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100665 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Florian Westphal71ae0df2015-06-11 01:34:54 +0200667 e->counters.pcnt = xt_percpu_counter_alloc();
668 if (IS_ERR_VALUE(e->counters.pcnt))
669 return -ENOMEM;
670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 j = 0;
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100672 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200673 mtpar.table = name;
674 mtpar.entryinfo = &e->ip;
675 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200676 mtpar.family = NFPROTO_IPV4;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100677 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100678 ret = find_check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100679 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100680 goto cleanup_matches;
681 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 t = ipt_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200685 target = xt_request_find_target(NFPROTO_IPV4, t->u.user.name,
686 t->u.user.revision);
687 if (IS_ERR(target)) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800688 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200689 ret = PTR_ERR(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 goto cleanup_matches;
691 }
692 t->u.kernel.target = target;
693
Patrick McHardyadd67462010-02-03 13:45:12 +0100694 ret = check_target(e, net, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800695 if (ret)
696 goto err;
Florian Westphal71ae0df2015-06-11 01:34:54 +0200697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800699 err:
700 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100702 xt_ematch_foreach(ematch, e) {
703 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100704 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100705 cleanup_match(ematch, net);
706 }
Florian Westphal71ae0df2015-06-11 01:34:54 +0200707
708 xt_percpu_counter_free(e->counters.pcnt);
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return ret;
711}
712
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200713static bool check_underflow(const struct ipt_entry *e)
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200714{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200715 const struct xt_entry_target *t;
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200716 unsigned int verdict;
717
Florian Westphal54d83fc2016-03-22 18:02:52 +0100718 if (!unconditional(e))
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200719 return false;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200720 t = ipt_get_target_c(e);
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200721 if (strcmp(t->u.user.name, XT_STANDARD_TARGET) != 0)
722 return false;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200723 verdict = ((struct xt_standard_target *)t)->verdict;
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200724 verdict = -verdict - 1;
725 return verdict == NF_DROP || verdict == NF_ACCEPT;
726}
727
Denys Vlasenko022748a2008-01-14 23:44:05 -0800728static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729check_entry_size_and_hooks(struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800730 struct xt_table_info *newinfo,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200731 const unsigned char *base,
732 const unsigned char *limit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 const unsigned int *hook_entries,
734 const unsigned int *underflows,
Jan Engelhardt05595182010-02-24 18:33:43 +0100735 unsigned int valid_hooks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
737 unsigned int h;
Florian Westphalbdf533d2016-03-22 18:02:49 +0100738 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Joe Perches3666ed12009-11-23 23:17:06 +0100740 if ((unsigned long)e % __alignof__(struct ipt_entry) != 0 ||
Florian Westphal6e94e0c2016-03-22 18:02:50 +0100741 (unsigned char *)e + sizeof(struct ipt_entry) >= limit ||
742 (unsigned char *)e + e->next_offset > limit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 duprintf("Bad offset %p\n", e);
744 return -EINVAL;
745 }
746
747 if (e->next_offset
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200748 < sizeof(struct ipt_entry) + sizeof(struct xt_entry_target)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 duprintf("checking: element %p size %u\n",
750 e, e->next_offset);
751 return -EINVAL;
752 }
753
Florian Westphalaa412ba2016-04-01 14:17:24 +0200754 if (!ip_checkentry(&e->ip))
755 return -EINVAL;
756
Florian Westphalce683e52016-04-01 14:17:28 +0200757 err = xt_check_entry_offsets(e, e->elems, e->target_offset,
758 e->next_offset);
Florian Westphalbdf533d2016-03-22 18:02:49 +0100759 if (err)
760 return err;
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800763 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Jan Engelhardta7d51732009-07-18 14:52:58 +0200764 if (!(valid_hooks & (1 << h)))
765 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if ((unsigned char *)e - base == hook_entries[h])
767 newinfo->hook_entry[h] = hook_entries[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200768 if ((unsigned char *)e - base == underflows[h]) {
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200769 if (!check_underflow(e)) {
Florian Westphal54d83fc2016-03-22 18:02:52 +0100770 pr_debug("Underflows must be unconditional and "
771 "use the STANDARD target with "
772 "ACCEPT/DROP\n");
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200773 return -EINVAL;
774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 newinfo->underflow[h] = underflows[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800780 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 e->comefrom = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return 0;
783}
784
Jan Engelhardt05595182010-02-24 18:33:43 +0100785static void
786cleanup_entry(struct ipt_entry *e, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200788 struct xt_tgdtor_param par;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200789 struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100790 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100793 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100794 cleanup_match(ematch, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 t = ipt_get_target(e);
Jan Engelhardta2df1642008-10-08 11:35:19 +0200796
Patrick McHardyadd67462010-02-03 13:45:12 +0100797 par.net = net;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200798 par.target = t->u.kernel.target;
799 par.targinfo = t->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200800 par.family = NFPROTO_IPV4;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200801 if (par.target->destroy != NULL)
802 par.target->destroy(&par);
803 module_put(par.target->me);
Florian Westphal71ae0df2015-06-11 01:34:54 +0200804 xt_percpu_counter_free(e->counters.pcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
807/* Checks and translates the user-supplied table segment (held in
808 newinfo) */
809static int
Jan Engelhardt0f234212010-02-24 18:36:04 +0100810translate_table(struct net *net, struct xt_table_info *newinfo, void *entry0,
Ian Morris6c282552015-10-14 23:17:06 +0100811 const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100813 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 unsigned int i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100815 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Jan Engelhardt0f234212010-02-24 18:36:04 +0100817 newinfo->size = repl->size;
818 newinfo->number = repl->num_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800821 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 newinfo->hook_entry[i] = 0xFFFFFFFF;
823 newinfo->underflow[i] = 0xFFFFFFFF;
824 }
825
826 duprintf("translate_table: size %u\n", newinfo->size);
827 i = 0;
828 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100829 xt_entry_foreach(iter, entry0, newinfo->size) {
830 ret = check_entry_size_and_hooks(iter, newinfo, entry0,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +0100831 entry0 + repl->size,
832 repl->hook_entry,
833 repl->underflow,
834 repl->valid_hooks);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100835 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +0100836 return ret;
837 ++i;
Florian Westphal98dbbfc2015-08-26 23:20:51 +0200838 if (strcmp(ipt_get_target(iter)->u.user.name,
839 XT_ERROR_TARGET) == 0)
840 ++newinfo->stacksize;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Jan Engelhardt0f234212010-02-24 18:36:04 +0100843 if (i != repl->num_entries) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 duprintf("translate_table: %u not %u entries\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100845 i, repl->num_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return -EINVAL;
847 }
848
849 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800850 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 /* Only hooks which are valid */
Jan Engelhardt0f234212010-02-24 18:36:04 +0100852 if (!(repl->valid_hooks & (1 << i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 continue;
854 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
855 duprintf("Invalid hook entry %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100856 i, repl->hook_entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 return -EINVAL;
858 }
859 if (newinfo->underflow[i] == 0xFFFFFFFF) {
860 duprintf("Invalid underflow %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100861 i, repl->underflow[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return -EINVAL;
863 }
864 }
865
Jan Engelhardt0f234212010-02-24 18:36:04 +0100866 if (!mark_source_chains(newinfo, repl->valid_hooks, entry0))
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800867 return -ELOOP;
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 /* Finally, each sanity check must pass */
870 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100871 xt_entry_foreach(iter, entry0, newinfo->size) {
Jan Engelhardt0f234212010-02-24 18:36:04 +0100872 ret = find_check_entry(iter, net, repl->name, repl->size);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100873 if (ret != 0)
874 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100875 ++i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800878 if (ret != 0) {
Jan Engelhardt05595182010-02-24 18:33:43 +0100879 xt_entry_foreach(iter, entry0, newinfo->size) {
880 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100881 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100882 cleanup_entry(iter, net);
883 }
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800884 return ret;
885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 return ret;
888}
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800891get_counters(const struct xt_table_info *t,
892 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100894 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 unsigned int cpu;
896 unsigned int i;
897
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700898 for_each_possible_cpu(cpu) {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200899 seqcount_t *s = &per_cpu(xt_recseq, cpu);
Eric Dumazet83723d62011-01-10 20:11:38 +0100900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 i = 0;
Florian Westphal482cfc32015-06-11 01:34:55 +0200902 xt_entry_foreach(iter, t->entries, t->size) {
Florian Westphal71ae0df2015-06-11 01:34:54 +0200903 struct xt_counters *tmp;
Eric Dumazet83723d62011-01-10 20:11:38 +0100904 u64 bcnt, pcnt;
905 unsigned int start;
906
Florian Westphal71ae0df2015-06-11 01:34:54 +0200907 tmp = xt_get_per_cpu_counter(&iter->counters, cpu);
Eric Dumazet83723d62011-01-10 20:11:38 +0100908 do {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200909 start = read_seqcount_begin(s);
Florian Westphal71ae0df2015-06-11 01:34:54 +0200910 bcnt = tmp->bcnt;
911 pcnt = tmp->pcnt;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200912 } while (read_seqcount_retry(s, start));
Eric Dumazet83723d62011-01-10 20:11:38 +0100913
914 ADD_COUNTER(counters[i], bcnt, pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +0100915 ++i; /* macro does multi eval of i */
916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
Stephen Hemminger78454472009-02-20 10:35:32 +0100918}
919
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200920static struct xt_counters *alloc_counters(const struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
Dmitry Mishin27229712006-04-01 02:25:19 -0800922 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800923 struct xt_counters *counters;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200924 const struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 /* We need atomic snapshot of counters: rest doesn't change
927 (other than comefrom, which userspace doesn't care
928 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800929 countersize = sizeof(struct xt_counters) * private->number;
Eric Dumazet83723d62011-01-10 20:11:38 +0100930 counters = vzalloc(countersize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 if (counters == NULL)
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700933 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700935 get_counters(private, counters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Dmitry Mishin27229712006-04-01 02:25:19 -0800937 return counters;
938}
939
940static int
941copy_entries_to_user(unsigned int total_size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200942 const struct xt_table *table,
Dmitry Mishin27229712006-04-01 02:25:19 -0800943 void __user *userptr)
944{
945 unsigned int off, num;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200946 const struct ipt_entry *e;
Dmitry Mishin27229712006-04-01 02:25:19 -0800947 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200948 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -0800949 int ret = 0;
Eric Dumazet711bdde2015-06-15 09:57:30 -0700950 const void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -0800951
952 counters = alloc_counters(table);
953 if (IS_ERR(counters))
954 return PTR_ERR(counters);
955
Florian Westphal482cfc32015-06-11 01:34:55 +0200956 loc_cpu_entry = private->entries;
Eric Dumazet31836062005-12-13 23:13:48 -0800957 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 ret = -EFAULT;
959 goto free_counters;
960 }
961
962 /* FIXME: use iterator macros --RR */
963 /* ... then go back and fix counters and names */
964 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
965 unsigned int i;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200966 const struct xt_entry_match *m;
967 const struct xt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Eric Dumazet31836062005-12-13 23:13:48 -0800969 e = (struct ipt_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (copy_to_user(userptr + off
971 + offsetof(struct ipt_entry, counters),
972 &counters[num],
973 sizeof(counters[num])) != 0) {
974 ret = -EFAULT;
975 goto free_counters;
976 }
977
978 for (i = sizeof(struct ipt_entry);
979 i < e->target_offset;
980 i += m->u.match_size) {
981 m = (void *)e + i;
982
983 if (copy_to_user(userptr + off + i
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200984 + offsetof(struct xt_entry_match,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 u.user.name),
986 m->u.kernel.match->name,
987 strlen(m->u.kernel.match->name)+1)
988 != 0) {
989 ret = -EFAULT;
990 goto free_counters;
991 }
992 }
993
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200994 t = ipt_get_target_c(e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 if (copy_to_user(userptr + off + e->target_offset
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200996 + offsetof(struct xt_entry_target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 u.user.name),
998 t->u.kernel.target->name,
999 strlen(t->u.kernel.target->name)+1) != 0) {
1000 ret = -EFAULT;
1001 goto free_counters;
1002 }
1003 }
1004
1005 free_counters:
1006 vfree(counters);
1007 return ret;
1008}
1009
Dmitry Mishin27229712006-04-01 02:25:19 -08001010#ifdef CONFIG_COMPAT
Jan Engelhardt739674f2009-06-26 08:23:19 +02001011static void compat_standard_from_user(void *dst, const void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001012{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001013 int v = *(compat_int_t *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001014
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001015 if (v > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001016 v += xt_compat_calc_jump(AF_INET, v);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001017 memcpy(dst, &v, sizeof(v));
1018}
1019
Jan Engelhardt739674f2009-06-26 08:23:19 +02001020static int compat_standard_to_user(void __user *dst, const void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001021{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001022 compat_int_t cv = *(int *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001023
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001024 if (cv > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001025 cv -= xt_compat_calc_jump(AF_INET, cv);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001026 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001027}
1028
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001029static int compat_calc_entry(const struct ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001030 const struct xt_table_info *info,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001031 const void *base, struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001032{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001033 const struct xt_entry_match *ematch;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001034 const struct xt_entry_target *t;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001035 unsigned int entry_offset;
Dmitry Mishin27229712006-04-01 02:25:19 -08001036 int off, i, ret;
1037
Patrick McHardy30c08c42007-12-17 21:47:14 -08001038 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001039 entry_offset = (void *)e - base;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001040 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001041 off += xt_compat_match_offset(ematch->u.kernel.match);
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001042 t = ipt_get_target_c(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001043 off += xt_compat_target_offset(t->u.kernel.target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001044 newinfo->size -= off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001045 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001046 if (ret)
1047 return ret;
1048
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001049 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Patrick McHardy4b478242007-12-17 21:46:15 -08001050 if (info->hook_entry[i] &&
1051 (e < (struct ipt_entry *)(base + info->hook_entry[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001052 newinfo->hook_entry[i] -= off;
Patrick McHardy4b478242007-12-17 21:46:15 -08001053 if (info->underflow[i] &&
1054 (e < (struct ipt_entry *)(base + info->underflow[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001055 newinfo->underflow[i] -= off;
1056 }
1057 return 0;
1058}
1059
Eric Dumazet259d4e42007-12-04 23:24:56 -08001060static int compat_table_info(const struct xt_table_info *info,
Patrick McHardy4b478242007-12-17 21:46:15 -08001061 struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001062{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001063 struct ipt_entry *iter;
Eric Dumazet711bdde2015-06-15 09:57:30 -07001064 const void *loc_cpu_entry;
Jan Engelhardt05595182010-02-24 18:33:43 +01001065 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001066
1067 if (!newinfo || !info)
1068 return -EINVAL;
1069
Florian Westphal482cfc32015-06-11 01:34:55 +02001070 /* we dont care about newinfo->entries */
Eric Dumazet259d4e42007-12-04 23:24:56 -08001071 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1072 newinfo->initial_entries = 0;
Florian Westphal482cfc32015-06-11 01:34:55 +02001073 loc_cpu_entry = info->entries;
Eric Dumazet255d0dc2010-12-18 18:35:15 +01001074 xt_compat_init_offsets(AF_INET, info->number);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001075 xt_entry_foreach(iter, loc_cpu_entry, info->size) {
1076 ret = compat_calc_entry(iter, info, loc_cpu_entry, newinfo);
1077 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001078 return ret;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001079 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001080 return 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001081}
1082#endif
1083
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001084static int get_info(struct net *net, void __user *user,
Ian Morris6c282552015-10-14 23:17:06 +01001085 const int *len, int compat)
Dmitry Mishin27229712006-04-01 02:25:19 -08001086{
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001087 char name[XT_TABLE_MAXNAMELEN];
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001088 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001089 int ret;
1090
1091 if (*len != sizeof(struct ipt_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001092 duprintf("length %u != %zu\n", *len,
1093 sizeof(struct ipt_getinfo));
Dmitry Mishin27229712006-04-01 02:25:19 -08001094 return -EINVAL;
1095 }
1096
1097 if (copy_from_user(name, user, sizeof(name)) != 0)
1098 return -EFAULT;
1099
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001100 name[XT_TABLE_MAXNAMELEN-1] = '\0';
Dmitry Mishin27229712006-04-01 02:25:19 -08001101#ifdef CONFIG_COMPAT
1102 if (compat)
1103 xt_compat_lock(AF_INET);
1104#endif
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001105 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Patrick McHardy4b478242007-12-17 21:46:15 -08001106 "iptable_%s", name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001107 if (!IS_ERR_OR_NULL(t)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001108 struct ipt_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001109 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001110#ifdef CONFIG_COMPAT
Alexey Dobriyan14c7dbe2010-02-08 11:17:43 -08001111 struct xt_table_info tmp;
1112
Dmitry Mishin27229712006-04-01 02:25:19 -08001113 if (compat) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001114 ret = compat_table_info(private, &tmp);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001115 xt_compat_flush_offsets(AF_INET);
Patrick McHardy4b478242007-12-17 21:46:15 -08001116 private = &tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001117 }
1118#endif
Vasiliy Kulikovb5f15ac2010-11-03 08:45:06 +01001119 memset(&info, 0, sizeof(info));
Dmitry Mishin27229712006-04-01 02:25:19 -08001120 info.valid_hooks = t->valid_hooks;
1121 memcpy(info.hook_entry, private->hook_entry,
Patrick McHardy4b478242007-12-17 21:46:15 -08001122 sizeof(info.hook_entry));
Dmitry Mishin27229712006-04-01 02:25:19 -08001123 memcpy(info.underflow, private->underflow,
Patrick McHardy4b478242007-12-17 21:46:15 -08001124 sizeof(info.underflow));
Dmitry Mishin27229712006-04-01 02:25:19 -08001125 info.num_entries = private->number;
1126 info.size = private->size;
1127 strcpy(info.name, name);
1128
1129 if (copy_to_user(user, &info, *len) != 0)
1130 ret = -EFAULT;
1131 else
1132 ret = 0;
1133
1134 xt_table_unlock(t);
1135 module_put(t->me);
1136 } else
1137 ret = t ? PTR_ERR(t) : -ENOENT;
1138#ifdef CONFIG_COMPAT
1139 if (compat)
1140 xt_compat_unlock(AF_INET);
1141#endif
1142 return ret;
1143}
1144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001146get_entries(struct net *net, struct ipt_get_entries __user *uptr,
1147 const int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
1149 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001150 struct ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001151 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Dmitry Mishin27229712006-04-01 02:25:19 -08001153 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001154 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001155 return -EINVAL;
1156 }
1157 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1158 return -EFAULT;
1159 if (*len != sizeof(struct ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001160 duprintf("get_entries: %u != %zu\n",
1161 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001162 return -EINVAL;
1163 }
Pablo Neira Ayusob301f252016-03-24 21:29:53 +01001164 get.name[sizeof(get.name) - 1] = '\0';
Dmitry Mishin27229712006-04-01 02:25:19 -08001165
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001166 t = xt_find_table_lock(net, AF_INET, get.name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001167 if (!IS_ERR_OR_NULL(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001168 const struct xt_table_info *private = t->private;
Patrick McHardy9c547952007-12-17 21:52:00 -08001169 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001170 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001171 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 t, uptr->entrytable);
1173 else {
1174 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001175 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001176 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
1178 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001179 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 } else
1181 ret = t ? PTR_ERR(t) : -ENOENT;
1182
1183 return ret;
1184}
1185
1186static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001187__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001188 struct xt_table_info *newinfo, unsigned int num_counters,
1189 void __user *counters_ptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001190{
1191 int ret;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001192 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001193 struct xt_table_info *oldinfo;
1194 struct xt_counters *counters;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001195 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001196
1197 ret = 0;
Eric Dumazet83723d62011-01-10 20:11:38 +01001198 counters = vzalloc(num_counters * sizeof(struct xt_counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001199 if (!counters) {
1200 ret = -ENOMEM;
1201 goto out;
1202 }
1203
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001204 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Dmitry Mishin27229712006-04-01 02:25:19 -08001205 "iptable_%s", name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001206 if (IS_ERR_OR_NULL(t)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001207 ret = t ? PTR_ERR(t) : -ENOENT;
1208 goto free_newinfo_counters_untrans;
1209 }
1210
1211 /* You lied! */
1212 if (valid_hooks != t->valid_hooks) {
1213 duprintf("Valid hook crap: %08X vs %08X\n",
1214 valid_hooks, t->valid_hooks);
1215 ret = -EINVAL;
1216 goto put_module;
1217 }
1218
1219 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1220 if (!oldinfo)
1221 goto put_module;
1222
1223 /* Update module usage count based on number of rules */
1224 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1225 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1226 if ((oldinfo->number > oldinfo->initial_entries) ||
1227 (newinfo->number <= oldinfo->initial_entries))
1228 module_put(t->me);
1229 if ((oldinfo->number > oldinfo->initial_entries) &&
1230 (newinfo->number <= oldinfo->initial_entries))
1231 module_put(t->me);
1232
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001233 /* Get the old counters, and synchronize with replace */
Dmitry Mishin27229712006-04-01 02:25:19 -08001234 get_counters(oldinfo, counters);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001235
Dmitry Mishin27229712006-04-01 02:25:19 -08001236 /* Decrease module usage counts and free resource */
Florian Westphal482cfc32015-06-11 01:34:55 +02001237 xt_entry_foreach(iter, oldinfo->entries, oldinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001238 cleanup_entry(iter, net);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001239
Dmitry Mishin27229712006-04-01 02:25:19 -08001240 xt_free_table_info(oldinfo);
1241 if (copy_to_user(counters_ptr, counters,
Thomas Grafc58dd2d2014-04-04 17:57:45 +02001242 sizeof(struct xt_counters) * num_counters) != 0) {
1243 /* Silent error, can't fail, new table is already in place */
1244 net_warn_ratelimited("iptables: counters copy to user failed while replacing table\n");
1245 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001246 vfree(counters);
1247 xt_table_unlock(t);
1248 return ret;
1249
1250 put_module:
1251 module_put(t->me);
1252 xt_table_unlock(t);
1253 free_newinfo_counters_untrans:
1254 vfree(counters);
1255 out:
1256 return ret;
1257}
1258
1259static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001260do_replace(struct net *net, const void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261{
1262 int ret;
1263 struct ipt_replace tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001264 struct xt_table_info *newinfo;
1265 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001266 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1269 return -EFAULT;
1270
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001271 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001272 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1273 return -ENOMEM;
Dave Jones1086bbe2015-05-19 20:55:17 -04001274 if (tmp.num_counters == 0)
1275 return -EINVAL;
1276
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01001277 tmp.name[sizeof(tmp.name)-1] = 0;
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001278
Harald Welte2e4e6a12006-01-12 13:30:04 -08001279 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 if (!newinfo)
1281 return -ENOMEM;
1282
Florian Westphal482cfc32015-06-11 01:34:55 +02001283 loc_cpu_entry = newinfo->entries;
Eric Dumazet31836062005-12-13 23:13:48 -08001284 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 tmp.size) != 0) {
1286 ret = -EFAULT;
1287 goto free_newinfo;
1288 }
1289
Jan Engelhardt0f234212010-02-24 18:36:04 +01001290 ret = translate_table(net, newinfo, loc_cpu_entry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 if (ret != 0)
Dmitry Mishin27229712006-04-01 02:25:19 -08001292 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01001294 duprintf("Translated table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001296 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001297 tmp.num_counters, tmp.counters);
Dmitry Mishin27229712006-04-01 02:25:19 -08001298 if (ret)
1299 goto free_newinfo_untrans;
1300 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Dmitry Mishin27229712006-04-01 02:25:19 -08001302 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001303 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001304 cleanup_entry(iter, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001306 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 return ret;
1308}
1309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001311do_add_counters(struct net *net, const void __user *user,
Ian Morris6c282552015-10-14 23:17:06 +01001312 unsigned int len, int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313{
Florian Westphal482cfc32015-06-11 01:34:55 +02001314 unsigned int i;
Dmitry Mishin27229712006-04-01 02:25:19 -08001315 struct xt_counters_info tmp;
1316 struct xt_counters *paddc;
1317 unsigned int num_counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001318 const char *name;
Dmitry Mishin27229712006-04-01 02:25:19 -08001319 int size;
1320 void *ptmp;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001321 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001322 const struct xt_table_info *private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 int ret = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001324 struct ipt_entry *iter;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001325 unsigned int addend;
Dmitry Mishin27229712006-04-01 02:25:19 -08001326#ifdef CONFIG_COMPAT
1327 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Dmitry Mishin27229712006-04-01 02:25:19 -08001329 if (compat) {
1330 ptmp = &compat_tmp;
1331 size = sizeof(struct compat_xt_counters_info);
1332 } else
1333#endif
1334 {
1335 ptmp = &tmp;
1336 size = sizeof(struct xt_counters_info);
1337 }
1338
1339 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 return -EFAULT;
1341
Dmitry Mishin27229712006-04-01 02:25:19 -08001342#ifdef CONFIG_COMPAT
1343 if (compat) {
1344 num_counters = compat_tmp.num_counters;
1345 name = compat_tmp.name;
1346 } else
1347#endif
1348 {
1349 num_counters = tmp.num_counters;
1350 name = tmp.name;
1351 }
1352
1353 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 return -EINVAL;
1355
Eric Dumazete12f8e22010-06-04 13:31:29 +02001356 paddc = vmalloc(len - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 if (!paddc)
1358 return -ENOMEM;
1359
Dmitry Mishin27229712006-04-01 02:25:19 -08001360 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 ret = -EFAULT;
1362 goto free;
1363 }
1364
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001365 t = xt_find_table_lock(net, AF_INET, name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001366 if (IS_ERR_OR_NULL(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 ret = t ? PTR_ERR(t) : -ENOENT;
1368 goto free;
1369 }
1370
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001371 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001372 private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001373 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 ret = -EINVAL;
1375 goto unlock_up_free;
1376 }
1377
1378 i = 0;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001379 addend = xt_write_recseq_begin();
Florian Westphal482cfc32015-06-11 01:34:55 +02001380 xt_entry_foreach(iter, private->entries, private->size) {
Florian Westphal71ae0df2015-06-11 01:34:54 +02001381 struct xt_counters *tmp;
1382
1383 tmp = xt_get_this_cpu_counter(&iter->counters);
1384 ADD_COUNTER(*tmp, paddc[i].bcnt, paddc[i].pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +01001385 ++i;
1386 }
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001387 xt_write_recseq_end(addend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 unlock_up_free:
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001389 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001390 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 module_put(t->me);
1392 free:
1393 vfree(paddc);
1394
1395 return ret;
1396}
1397
Dmitry Mishin27229712006-04-01 02:25:19 -08001398#ifdef CONFIG_COMPAT
1399struct compat_ipt_replace {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001400 char name[XT_TABLE_MAXNAMELEN];
Dmitry Mishin27229712006-04-01 02:25:19 -08001401 u32 valid_hooks;
1402 u32 num_entries;
1403 u32 size;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001404 u32 hook_entry[NF_INET_NUMHOOKS];
1405 u32 underflow[NF_INET_NUMHOOKS];
Dmitry Mishin27229712006-04-01 02:25:19 -08001406 u32 num_counters;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001407 compat_uptr_t counters; /* struct xt_counters * */
Dmitry Mishin27229712006-04-01 02:25:19 -08001408 struct compat_ipt_entry entries[0];
1409};
1410
Patrick McHardya18aa312007-12-12 10:35:16 -08001411static int
1412compat_copy_entry_to_user(struct ipt_entry *e, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001413 unsigned int *size, struct xt_counters *counters,
Jan Engelhardt05595182010-02-24 18:33:43 +01001414 unsigned int i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001415{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001416 struct xt_entry_target *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001417 struct compat_ipt_entry __user *ce;
1418 u_int16_t target_offset, next_offset;
1419 compat_uint_t origsize;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001420 const struct xt_entry_match *ematch;
1421 int ret = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001422
Dmitry Mishin27229712006-04-01 02:25:19 -08001423 origsize = *size;
1424 ce = (struct compat_ipt_entry __user *)*dstptr;
Jan Engelhardt05595182010-02-24 18:33:43 +01001425 if (copy_to_user(ce, e, sizeof(struct ipt_entry)) != 0 ||
1426 copy_to_user(&ce->counters, &counters[i],
1427 sizeof(counters[i])) != 0)
1428 return -EFAULT;
Patrick McHardya18aa312007-12-12 10:35:16 -08001429
Dmitry Mishin27229712006-04-01 02:25:19 -08001430 *dstptr += sizeof(struct compat_ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001431 *size -= sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1432
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001433 xt_ematch_foreach(ematch, e) {
1434 ret = xt_compat_match_to_user(ematch, dstptr, size);
1435 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001436 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001437 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001438 target_offset = e->target_offset - (origsize - *size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001439 t = ipt_get_target(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001440 ret = xt_compat_target_to_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001441 if (ret)
Jan Engelhardt05595182010-02-24 18:33:43 +01001442 return ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001443 next_offset = e->next_offset - (origsize - *size);
Jan Engelhardt05595182010-02-24 18:33:43 +01001444 if (put_user(target_offset, &ce->target_offset) != 0 ||
1445 put_user(next_offset, &ce->next_offset) != 0)
1446 return -EFAULT;
Dmitry Mishin27229712006-04-01 02:25:19 -08001447 return 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001448}
1449
Denys Vlasenko022748a2008-01-14 23:44:05 -08001450static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001451compat_find_calc_match(struct xt_entry_match *m,
Patrick McHardy4b478242007-12-17 21:46:15 -08001452 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,
Florian Westphal09d96862016-04-01 14:17:34 +02001486 const unsigned char *limit)
Dmitry Mishin27229712006-04-01 02:25:19 -08001487{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001488 struct xt_entry_match *ematch;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001489 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001490 struct xt_target *target;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001491 unsigned int entry_offset;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001492 unsigned int j;
Florian Westphal09d96862016-04-01 14:17:34 +02001493 int ret, off;
Dmitry Mishin27229712006-04-01 02:25:19 -08001494
1495 duprintf("check_compat_entry_size_and_hooks %p\n", e);
Joe Perches3666ed12009-11-23 23:17:06 +01001496 if ((unsigned long)e % __alignof__(struct compat_ipt_entry) != 0 ||
Florian Westphal6e94e0c2016-03-22 18:02:50 +01001497 (unsigned char *)e + sizeof(struct compat_ipt_entry) >= limit ||
1498 (unsigned char *)e + e->next_offset > limit) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001499 duprintf("Bad offset %p, limit = %p\n", e, limit);
1500 return -EINVAL;
1501 }
1502
1503 if (e->next_offset < sizeof(struct compat_ipt_entry) +
Patrick McHardy4b478242007-12-17 21:46:15 -08001504 sizeof(struct compat_xt_entry_target)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001505 duprintf("checking: element %p size %u\n",
1506 e, e->next_offset);
1507 return -EINVAL;
1508 }
1509
Florian Westphalaa412ba2016-04-01 14:17:24 +02001510 if (!ip_checkentry(&e->ip))
1511 return -EINVAL;
1512
Florian Westphalce683e52016-04-01 14:17:28 +02001513 ret = xt_compat_check_entry_offsets(e, e->elems,
Florian Westphalfc1221b2016-04-01 14:17:26 +02001514 e->target_offset, e->next_offset);
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 Westphal7d3f8432016-04-01 14:17:30 +02001522 ret = compat_find_calc_match(ematch, &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
Dmitry Mishin27229712006-04-01 02:25:19 -08001545 return 0;
Patrick McHardybec71b12006-09-20 12:04:08 -07001546
Dmitry Mishin27229712006-04-01 02:25:19 -08001547out:
Patrick McHardybec71b12006-09-20 12:04:08 -07001548 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001549release_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001550 xt_ematch_foreach(ematch, e) {
1551 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001552 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001553 module_put(ematch->u.kernel.match->me);
1554 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001555 return ret;
1556}
1557
Florian Westphal01883462016-04-01 14:17:33 +02001558static void
Patrick McHardy73cd5982007-12-17 21:47:32 -08001559compat_copy_entry_from_user(struct compat_ipt_entry *e, void **dstptr,
Florian Westphal7d3f8432016-04-01 14:17:30 +02001560 unsigned int *size,
Patrick McHardy4b478242007-12-17 21:46:15 -08001561 struct xt_table_info *newinfo, unsigned char *base)
Dmitry Mishin27229712006-04-01 02:25:19 -08001562{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001563 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001564 struct xt_target *target;
Dmitry Mishin27229712006-04-01 02:25:19 -08001565 struct ipt_entry *de;
1566 unsigned int origsize;
Florian Westphal01883462016-04-01 14:17:33 +02001567 int h;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001568 struct xt_entry_match *ematch;
Dmitry Mishin27229712006-04-01 02:25:19 -08001569
Dmitry Mishin27229712006-04-01 02:25:19 -08001570 origsize = *size;
1571 de = (struct ipt_entry *)*dstptr;
1572 memcpy(de, e, sizeof(struct ipt_entry));
Patrick McHardy73cd5982007-12-17 21:47:32 -08001573 memcpy(&de->counters, &e->counters, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001574
Patrick McHardy73cd5982007-12-17 21:47:32 -08001575 *dstptr += sizeof(struct ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001576 *size += sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1577
Florian Westphal01883462016-04-01 14:17:33 +02001578 xt_ematch_foreach(ematch, e)
1579 xt_compat_match_from_user(ematch, dstptr, size);
1580
Dmitry Mishin27229712006-04-01 02:25:19 -08001581 de->target_offset = e->target_offset - (origsize - *size);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001582 t = compat_ipt_get_target(e);
Dmitry Mishin27229712006-04-01 02:25:19 -08001583 target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001584 xt_compat_target_from_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001585
1586 de->next_offset = e->next_offset - (origsize - *size);
Florian Westphal09d96862016-04-01 14:17:34 +02001587
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001588 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001589 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1590 newinfo->hook_entry[h] -= origsize - *size;
1591 if ((unsigned char *)de - base < newinfo->underflow[h])
1592 newinfo->underflow[h] -= origsize - *size;
1593 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001594}
Dmitry Mishin27229712006-04-01 02:25:19 -08001595
Denys Vlasenko022748a2008-01-14 23:44:05 -08001596static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001597translate_compat_table(struct net *net,
Patrick McHardy4b478242007-12-17 21:46:15 -08001598 struct xt_table_info **pinfo,
1599 void **pentry0,
Florian Westphal7d3f8432016-04-01 14:17:30 +02001600 const struct compat_ipt_replace *compatr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001601{
Dmitry Mishin920b8682006-10-30 15:14:27 -08001602 unsigned int i, j;
Dmitry Mishin27229712006-04-01 02:25:19 -08001603 struct xt_table_info *newinfo, *info;
1604 void *pos, *entry0, *entry1;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001605 struct compat_ipt_entry *iter0;
Florian Westphal09d96862016-04-01 14:17:34 +02001606 struct ipt_replace repl;
Dmitry Mishin27229712006-04-01 02:25:19 -08001607 unsigned int size;
Jan Engelhardt05595182010-02-24 18:33:43 +01001608 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001609
1610 info = *pinfo;
1611 entry0 = *pentry0;
Florian Westphal7d3f8432016-04-01 14:17:30 +02001612 size = compatr->size;
1613 info->number = compatr->num_entries;
Dmitry Mishin27229712006-04-01 02:25:19 -08001614
Dmitry Mishin27229712006-04-01 02:25:19 -08001615 duprintf("translate_compat_table: size %u\n", info->size);
Dmitry Mishin920b8682006-10-30 15:14:27 -08001616 j = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001617 xt_compat_lock(AF_INET);
Florian Westphal7d3f8432016-04-01 14:17:30 +02001618 xt_compat_init_offsets(AF_INET, compatr->num_entries);
Dmitry Mishin27229712006-04-01 02:25:19 -08001619 /* Walk through entries, checking offsets. */
Florian Westphal7d3f8432016-04-01 14:17:30 +02001620 xt_entry_foreach(iter0, entry0, compatr->size) {
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001621 ret = check_compat_entry_size_and_hooks(iter0, info, &size,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001622 entry0,
Florian Westphal09d96862016-04-01 14:17:34 +02001623 entry0 + compatr->size);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001624 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001625 goto out_unlock;
1626 ++j;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001627 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001628
1629 ret = -EINVAL;
Florian Westphal7d3f8432016-04-01 14:17:30 +02001630 if (j != compatr->num_entries) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001631 duprintf("translate_compat_table: %u not %u entries\n",
Florian Westphal7d3f8432016-04-01 14:17:30 +02001632 j, compatr->num_entries);
Dmitry Mishin27229712006-04-01 02:25:19 -08001633 goto out_unlock;
1634 }
1635
Dmitry Mishin27229712006-04-01 02:25:19 -08001636 ret = -ENOMEM;
1637 newinfo = xt_alloc_table_info(size);
1638 if (!newinfo)
1639 goto out_unlock;
1640
Florian Westphal7d3f8432016-04-01 14:17:30 +02001641 newinfo->number = compatr->num_entries;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001642 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Florian Westphal09d96862016-04-01 14:17:34 +02001643 newinfo->hook_entry[i] = compatr->hook_entry[i];
1644 newinfo->underflow[i] = compatr->underflow[i];
Dmitry Mishin27229712006-04-01 02:25:19 -08001645 }
Florian Westphal482cfc32015-06-11 01:34:55 +02001646 entry1 = newinfo->entries;
Dmitry Mishin27229712006-04-01 02:25:19 -08001647 pos = entry1;
Florian Westphal7d3f8432016-04-01 14:17:30 +02001648 size = compatr->size;
Florian Westphal01883462016-04-01 14:17:33 +02001649 xt_entry_foreach(iter0, entry0, compatr->size)
1650 compat_copy_entry_from_user(iter0, &pos, &size,
1651 newinfo, entry1);
1652
Florian Westphal09d96862016-04-01 14:17:34 +02001653 /* all module references in entry0 are now gone.
1654 * entry1/newinfo contains a 64bit ruleset that looks exactly as
1655 * generated by 64bit userspace.
1656 *
1657 * Call standard translate_table() to validate all hook_entrys,
1658 * underflows, check for loops, etc.
1659 */
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001660 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001661 xt_compat_unlock(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001662
Florian Westphal09d96862016-04-01 14:17:34 +02001663 memcpy(&repl, compatr, sizeof(*compatr));
Dmitry Mishin27229712006-04-01 02:25:19 -08001664
Florian Westphal09d96862016-04-01 14:17:34 +02001665 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1666 repl.hook_entry[i] = newinfo->hook_entry[i];
1667 repl.underflow[i] = newinfo->underflow[i];
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001668 }
Florian Westphal09d96862016-04-01 14:17:34 +02001669
1670 repl.num_counters = 0;
1671 repl.counters = NULL;
1672 repl.size = newinfo->size;
1673 ret = translate_table(net, newinfo, entry1, &repl);
1674 if (ret)
1675 goto free_newinfo;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001676
Dmitry Mishin27229712006-04-01 02:25:19 -08001677 *pinfo = newinfo;
1678 *pentry0 = entry1;
1679 xt_free_table_info(info);
1680 return 0;
1681
1682free_newinfo:
1683 xt_free_table_info(newinfo);
Florian Westphal09d96862016-04-01 14:17:34 +02001684 return ret;
1685out_unlock:
1686 xt_compat_flush_offsets(AF_INET);
1687 xt_compat_unlock(AF_INET);
Florian Westphal7d3f8432016-04-01 14:17:30 +02001688 xt_entry_foreach(iter0, entry0, compatr->size) {
Jan Engelhardt05595182010-02-24 18:33:43 +01001689 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001690 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001691 compat_release_entry(iter0);
1692 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001693 return ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001694}
1695
1696static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001697compat_do_replace(struct net *net, void __user *user, unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001698{
1699 int ret;
1700 struct compat_ipt_replace tmp;
1701 struct xt_table_info *newinfo;
1702 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001703 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001704
1705 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1706 return -EFAULT;
1707
Dmitry Mishin27229712006-04-01 02:25:19 -08001708 /* overflow check */
Eric Dumazet259d4e42007-12-04 23:24:56 -08001709 if (tmp.size >= INT_MAX / num_possible_cpus())
Dmitry Mishin27229712006-04-01 02:25:19 -08001710 return -ENOMEM;
1711 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1712 return -ENOMEM;
Dave Jones1086bbe2015-05-19 20:55:17 -04001713 if (tmp.num_counters == 0)
1714 return -EINVAL;
1715
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01001716 tmp.name[sizeof(tmp.name)-1] = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001717
1718 newinfo = xt_alloc_table_info(tmp.size);
1719 if (!newinfo)
1720 return -ENOMEM;
1721
Florian Westphal482cfc32015-06-11 01:34:55 +02001722 loc_cpu_entry = newinfo->entries;
Dmitry Mishin27229712006-04-01 02:25:19 -08001723 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1724 tmp.size) != 0) {
1725 ret = -EFAULT;
1726 goto free_newinfo;
1727 }
1728
Florian Westphal7d3f8432016-04-01 14:17:30 +02001729 ret = translate_compat_table(net, &newinfo, &loc_cpu_entry, &tmp);
Dmitry Mishin27229712006-04-01 02:25:19 -08001730 if (ret != 0)
1731 goto free_newinfo;
1732
1733 duprintf("compat_do_replace: Translated table\n");
1734
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001735 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001736 tmp.num_counters, compat_ptr(tmp.counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001737 if (ret)
1738 goto free_newinfo_untrans;
1739 return 0;
1740
1741 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001742 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001743 cleanup_entry(iter, net);
Dmitry Mishin27229712006-04-01 02:25:19 -08001744 free_newinfo:
1745 xt_free_table_info(newinfo);
1746 return ret;
1747}
1748
1749static int
1750compat_do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user,
Patrick McHardy4b478242007-12-17 21:46:15 -08001751 unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001752{
1753 int ret;
1754
Eric W. Biederman52e804c2012-11-16 03:03:05 +00001755 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Dmitry Mishin27229712006-04-01 02:25:19 -08001756 return -EPERM;
1757
1758 switch (cmd) {
1759 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001760 ret = compat_do_replace(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001761 break;
1762
1763 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001764 ret = do_add_counters(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001765 break;
1766
1767 default:
1768 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1769 ret = -EINVAL;
1770 }
1771
1772 return ret;
1773}
1774
Patrick McHardy4b478242007-12-17 21:46:15 -08001775struct compat_ipt_get_entries {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001776 char name[XT_TABLE_MAXNAMELEN];
Dmitry Mishin27229712006-04-01 02:25:19 -08001777 compat_uint_t size;
1778 struct compat_ipt_entry entrytable[0];
1779};
1780
Patrick McHardy4b478242007-12-17 21:46:15 -08001781static int
1782compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1783 void __user *userptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001784{
Dmitry Mishin27229712006-04-01 02:25:19 -08001785 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001786 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001787 void __user *pos;
1788 unsigned int size;
1789 int ret = 0;
Patrick McHardya18aa312007-12-12 10:35:16 -08001790 unsigned int i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001791 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001792
1793 counters = alloc_counters(table);
1794 if (IS_ERR(counters))
1795 return PTR_ERR(counters);
1796
Dmitry Mishin27229712006-04-01 02:25:19 -08001797 pos = userptr;
1798 size = total_size;
Florian Westphal482cfc32015-06-11 01:34:55 +02001799 xt_entry_foreach(iter, private->entries, total_size) {
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001800 ret = compat_copy_entry_to_user(iter, &pos,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001801 &size, counters, i++);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001802 if (ret != 0)
1803 break;
1804 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001805
Dmitry Mishin27229712006-04-01 02:25:19 -08001806 vfree(counters);
1807 return ret;
1808}
1809
1810static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001811compat_get_entries(struct net *net, struct compat_ipt_get_entries __user *uptr,
1812 int *len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001813{
1814 int ret;
1815 struct compat_ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001816 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001817
Dmitry Mishin27229712006-04-01 02:25:19 -08001818 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001819 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001820 return -EINVAL;
1821 }
1822
1823 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1824 return -EFAULT;
1825
1826 if (*len != sizeof(struct compat_ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001827 duprintf("compat_get_entries: %u != %zu\n",
1828 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001829 return -EINVAL;
1830 }
Pablo Neira Ayusob301f252016-03-24 21:29:53 +01001831 get.name[sizeof(get.name) - 1] = '\0';
Dmitry Mishin27229712006-04-01 02:25:19 -08001832
1833 xt_compat_lock(AF_INET);
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001834 t = xt_find_table_lock(net, AF_INET, get.name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001835 if (!IS_ERR_OR_NULL(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001836 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001837 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08001838 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001839 ret = compat_table_info(private, &info);
1840 if (!ret && get.size == info.size) {
1841 ret = compat_copy_entries_to_user(private->size,
Patrick McHardy4b478242007-12-17 21:46:15 -08001842 t, uptr->entrytable);
Dmitry Mishin27229712006-04-01 02:25:19 -08001843 } else if (!ret) {
1844 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001845 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001846 ret = -EAGAIN;
Dmitry Mishin27229712006-04-01 02:25:19 -08001847 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001848 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001849 module_put(t->me);
1850 xt_table_unlock(t);
1851 } else
1852 ret = t ? PTR_ERR(t) : -ENOENT;
1853
1854 xt_compat_unlock(AF_INET);
1855 return ret;
1856}
1857
Patrick McHardy79030ed2006-09-20 12:05:08 -07001858static int do_ipt_get_ctl(struct sock *, int, void __user *, int *);
1859
Dmitry Mishin27229712006-04-01 02:25:19 -08001860static int
1861compat_do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1862{
1863 int ret;
1864
Eric W. Biederman52e804c2012-11-16 03:03:05 +00001865 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Björn Steinbrink82fac052006-10-20 00:21:10 -07001866 return -EPERM;
1867
Dmitry Mishin27229712006-04-01 02:25:19 -08001868 switch (cmd) {
1869 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001870 ret = get_info(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001871 break;
1872 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001873 ret = compat_get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001874 break;
1875 default:
Patrick McHardy79030ed2006-09-20 12:05:08 -07001876 ret = do_ipt_get_ctl(sk, cmd, user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001877 }
1878 return ret;
1879}
1880#endif
1881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882static int
Patrick McHardy9c547952007-12-17 21:52:00 -08001883do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884{
1885 int ret;
1886
Eric W. Biederman52e804c2012-11-16 03:03:05 +00001887 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 return -EPERM;
1889
1890 switch (cmd) {
1891 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001892 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 break;
1894
1895 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001896 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 break;
1898
1899 default:
1900 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1901 ret = -EINVAL;
1902 }
1903
1904 return ret;
1905}
1906
1907static int
1908do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1909{
1910 int ret;
1911
Eric W. Biederman52e804c2012-11-16 03:03:05 +00001912 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 return -EPERM;
1914
1915 switch (cmd) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001916 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001917 ret = get_info(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 break;
Dmitry Mishin27229712006-04-01 02:25:19 -08001919
1920 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001921 ret = get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001922 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
1924 case IPT_SO_GET_REVISION_MATCH:
1925 case IPT_SO_GET_REVISION_TARGET: {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001926 struct xt_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001927 int target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
1929 if (*len != sizeof(rev)) {
1930 ret = -EINVAL;
1931 break;
1932 }
1933 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
1934 ret = -EFAULT;
1935 break;
1936 }
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01001937 rev.name[sizeof(rev.name)-1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
1939 if (cmd == IPT_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001940 target = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08001942 target = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Harald Welte2e4e6a12006-01-12 13:30:04 -08001944 try_then_request_module(xt_find_revision(AF_INET, rev.name,
1945 rev.revision,
1946 target, &ret),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 "ipt_%s", rev.name);
1948 break;
1949 }
1950
1951 default:
1952 duprintf("do_ipt_get_ctl: unknown request %i\n", cmd);
1953 ret = -EINVAL;
1954 }
1955
1956 return ret;
1957}
1958
Florian Westphalb9e69e12016-02-25 10:08:36 +01001959static void __ipt_unregister_table(struct net *net, struct xt_table *table)
1960{
1961 struct xt_table_info *private;
1962 void *loc_cpu_entry;
1963 struct module *table_owner = table->me;
1964 struct ipt_entry *iter;
1965
1966 private = xt_unregister_table(table);
1967
1968 /* Decrease module usage counts and free resources */
1969 loc_cpu_entry = private->entries;
1970 xt_entry_foreach(iter, loc_cpu_entry, private->size)
1971 cleanup_entry(iter, net);
1972 if (private->number > private->initial_entries)
1973 module_put(table_owner);
1974 xt_free_table_info(private);
1975}
1976
Florian Westphala67dd262016-02-25 10:08:35 +01001977int ipt_register_table(struct net *net, const struct xt_table *table,
1978 const struct ipt_replace *repl,
1979 const struct nf_hook_ops *ops, struct xt_table **res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980{
1981 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001982 struct xt_table_info *newinfo;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +02001983 struct xt_table_info bootstrap = {0};
Eric Dumazet31836062005-12-13 23:13:48 -08001984 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08001985 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
Harald Welte2e4e6a12006-01-12 13:30:04 -08001987 newinfo = xt_alloc_table_info(repl->size);
Florian Westphala67dd262016-02-25 10:08:35 +01001988 if (!newinfo)
1989 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Florian Westphal482cfc32015-06-11 01:34:55 +02001991 loc_cpu_entry = newinfo->entries;
Eric Dumazet31836062005-12-13 23:13:48 -08001992 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
Jan Engelhardt0f234212010-02-24 18:36:04 +01001994 ret = translate_table(net, newinfo, loc_cpu_entry, repl);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08001995 if (ret != 0)
1996 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08001998 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08001999 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002000 ret = PTR_ERR(new_table);
2001 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 }
2003
Florian Westphalb9e69e12016-02-25 10:08:36 +01002004 /* set res now, will see skbs right after nf_register_net_hooks */
Florian Westphala67dd262016-02-25 10:08:35 +01002005 WRITE_ONCE(*res, new_table);
Florian Westphalb9e69e12016-02-25 10:08:36 +01002006
2007 ret = nf_register_net_hooks(net, ops, hweight32(table->valid_hooks));
2008 if (ret != 0) {
2009 __ipt_unregister_table(net, new_table);
2010 *res = NULL;
2011 }
2012
Florian Westphala67dd262016-02-25 10:08:35 +01002013 return ret;
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08002014
2015out_free:
2016 xt_free_table_info(newinfo);
Florian Westphala67dd262016-02-25 10:08:35 +01002017 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018}
2019
Florian Westphala67dd262016-02-25 10:08:35 +01002020void ipt_unregister_table(struct net *net, struct xt_table *table,
2021 const struct nf_hook_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022{
Florian Westphalb9e69e12016-02-25 10:08:36 +01002023 nf_unregister_net_hooks(net, ops, hweight32(table->valid_hooks));
2024 __ipt_unregister_table(net, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025}
2026
2027/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002028static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029icmp_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
2030 u_int8_t type, u_int8_t code,
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002031 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032{
Patrick McHardy9c547952007-12-17 21:52:00 -08002033 return ((test_type == 0xFF) ||
2034 (type == test_type && code >= min_code && code <= max_code))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 ^ invert;
2036}
2037
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002038static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +02002039icmp_match(const struct sk_buff *skb, struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040{
Jan Engelhardt5452e422008-04-14 11:15:35 +02002041 const struct icmphdr *ic;
2042 struct icmphdr _icmph;
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002043 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
2045 /* Must not be a fragment. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002046 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002047 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002049 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 if (ic == NULL) {
2051 /* We've been asked to examine this packet, and we
2052 * can't. Hence, no choice but to drop.
2053 */
2054 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtb4ba2612009-07-07 20:54:30 +02002055 par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002056 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 }
2058
2059 return icmp_type_code_match(icmpinfo->type,
2060 icmpinfo->code[0],
2061 icmpinfo->code[1],
2062 ic->type, ic->code,
2063 !!(icmpinfo->invflags&IPT_ICMP_INV));
2064}
2065
Jan Engelhardtb0f38452010-03-19 17:16:42 +01002066static int icmp_checkentry(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002068 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002070 /* Must specify no unknown invflags */
Jan Engelhardtbd414ee2010-03-23 16:35:56 +01002071 return (icmpinfo->invflags & ~IPT_ICMP_INV) ? -EINVAL : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072}
2073
Jan Engelhardt45385062009-07-04 12:50:00 +02002074static struct xt_target ipt_builtin_tg[] __read_mostly = {
2075 {
Jan Engelhardt243bf6e2010-10-13 16:28:00 +02002076 .name = XT_STANDARD_TARGET,
Jan Engelhardt45385062009-07-04 12:50:00 +02002077 .targetsize = sizeof(int),
2078 .family = NFPROTO_IPV4,
Dmitry Mishin27229712006-04-01 02:25:19 -08002079#ifdef CONFIG_COMPAT
Jan Engelhardt45385062009-07-04 12:50:00 +02002080 .compatsize = sizeof(compat_int_t),
2081 .compat_from_user = compat_standard_from_user,
2082 .compat_to_user = compat_standard_to_user,
Dmitry Mishin27229712006-04-01 02:25:19 -08002083#endif
Jan Engelhardt45385062009-07-04 12:50:00 +02002084 },
2085 {
Jan Engelhardt243bf6e2010-10-13 16:28:00 +02002086 .name = XT_ERROR_TARGET,
Jan Engelhardt45385062009-07-04 12:50:00 +02002087 .target = ipt_error,
Jan Engelhardt12b00c22010-10-13 15:56:56 +02002088 .targetsize = XT_FUNCTION_MAXNAMELEN,
Jan Engelhardt45385062009-07-04 12:50:00 +02002089 .family = NFPROTO_IPV4,
2090 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091};
2092
2093static struct nf_sockopt_ops ipt_sockopts = {
2094 .pf = PF_INET,
2095 .set_optmin = IPT_BASE_CTL,
2096 .set_optmax = IPT_SO_SET_MAX+1,
2097 .set = do_ipt_set_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002098#ifdef CONFIG_COMPAT
2099 .compat_set = compat_do_ipt_set_ctl,
2100#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 .get_optmin = IPT_BASE_CTL,
2102 .get_optmax = IPT_SO_GET_MAX+1,
2103 .get = do_ipt_get_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002104#ifdef CONFIG_COMPAT
2105 .compat_get = compat_do_ipt_get_ctl,
2106#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002107 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108};
2109
Jan Engelhardt45385062009-07-04 12:50:00 +02002110static struct xt_match ipt_builtin_mt[] __read_mostly = {
2111 {
2112 .name = "icmp",
2113 .match = icmp_match,
2114 .matchsize = sizeof(struct ipt_icmp),
2115 .checkentry = icmp_checkentry,
2116 .proto = IPPROTO_ICMP,
2117 .family = NFPROTO_IPV4,
2118 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119};
2120
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002121static int __net_init ip_tables_net_init(struct net *net)
2122{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002123 return xt_proto_init(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002124}
2125
2126static void __net_exit ip_tables_net_exit(struct net *net)
2127{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002128 xt_proto_fini(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002129}
2130
2131static struct pernet_operations ip_tables_net_ops = {
2132 .init = ip_tables_net_init,
2133 .exit = ip_tables_net_exit,
2134};
2135
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002136static int __init ip_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137{
2138 int ret;
2139
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002140 ret = register_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002141 if (ret < 0)
2142 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002143
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002144 /* No one else will be downing sem now, so we won't sleep */
Jan Engelhardt45385062009-07-04 12:50:00 +02002145 ret = xt_register_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002146 if (ret < 0)
2147 goto err2;
Jan Engelhardt45385062009-07-04 12:50:00 +02002148 ret = xt_register_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002149 if (ret < 0)
2150 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
2152 /* Register setsockopt */
2153 ret = nf_register_sockopt(&ipt_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002154 if (ret < 0)
2155 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01002157 pr_info("(C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002159
2160err5:
Jan Engelhardt45385062009-07-04 12:50:00 +02002161 xt_unregister_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002162err4:
Jan Engelhardt45385062009-07-04 12:50:00 +02002163 xt_unregister_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002164err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002165 unregister_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002166err1:
2167 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168}
2169
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002170static void __exit ip_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171{
2172 nf_unregister_sockopt(&ipt_sockopts);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002173
Jan Engelhardt45385062009-07-04 12:50:00 +02002174 xt_unregister_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
2175 xt_unregister_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002176 unregister_pernet_subsys(&ip_tables_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177}
2178
2179EXPORT_SYMBOL(ipt_register_table);
2180EXPORT_SYMBOL(ipt_unregister_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181EXPORT_SYMBOL(ipt_do_table);
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002182module_init(ip_tables_init);
2183module_exit(ip_tables_fini);