blob: 735d1ee8c1ab64cdcdb363ce7b47636b4388227d [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) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 /* This a jump; chase it. */
Florian Westphal98dbbfc2015-08-26 23:20:51 +0200546 duprintf("Jump rule %u -> %u\n",
547 pos, newpos);
Florian Westphal36472342016-04-01 14:17:22 +0200548 e = (struct ipt_entry *)
549 (entry0 + newpos);
550 if (!find_jump_target(newinfo, e))
551 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 } else {
553 /* ... this is a fallthru */
554 newpos = pos + e->next_offset;
Florian Westphalf24e2302016-04-01 14:17:21 +0200555 if (newpos >= newinfo->size)
556 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
558 e = (struct ipt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800559 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 e->counters.pcnt = pos;
561 pos = newpos;
562 }
563 }
Ian Morris19f0a602015-10-14 23:17:04 +0100564next:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 duprintf("Finished chain %u\n", hook);
566 }
567 return 1;
568}
569
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200570static void cleanup_match(struct xt_entry_match *m, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200572 struct xt_mtdtor_param par;
573
Alexey Dobriyanf54e9362010-01-18 08:25:47 +0100574 par.net = net;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200575 par.match = m->u.kernel.match;
576 par.matchinfo = m->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200577 par.family = NFPROTO_IPV4;
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200578 if (par.match->destroy != NULL)
579 par.match->destroy(&par);
580 module_put(par.match->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
Denys Vlasenko022748a2008-01-14 23:44:05 -0800583static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200584check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
Dmitry Mishina96be242006-12-12 00:29:26 -0800585{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200586 const struct ipt_ip *ip = par->entryinfo;
Dmitry Mishina96be242006-12-12 00:29:26 -0800587 int ret;
588
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200589 par->match = m->u.kernel.match;
590 par->matchinfo = m->data;
591
Jan Engelhardt916a9172008-10-08 11:35:20 +0200592 ret = xt_check_match(par, m->u.match_size - sizeof(*m),
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200593 ip->proto, ip->invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200594 if (ret < 0) {
Jan Engelhardtb5cad0d2010-05-02 13:55:21 +0200595 duprintf("check failed for `%s'.\n", par->match->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200596 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800597 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200598 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800599}
600
Denys Vlasenko022748a2008-01-14 23:44:05 -0800601static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200602find_check_match(struct xt_entry_match *m, struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800604 struct xt_match *match;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800605 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200607 match = xt_request_find_match(NFPROTO_IPV4, m->u.user.name,
608 m->u.user.revision);
609 if (IS_ERR(match)) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800610 duprintf("find_check_match: `%s' not found\n", m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200611 return PTR_ERR(match);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
613 m->u.kernel.match = match;
614
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100615 ret = check_match(m, par);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800616 if (ret)
617 goto err;
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800620err:
621 module_put(m->u.kernel.match->me);
622 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
Patrick McHardyadd67462010-02-03 13:45:12 +0100625static int check_target(struct ipt_entry *e, struct net *net, const char *name)
Dmitry Mishina96be242006-12-12 00:29:26 -0800626{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200627 struct xt_entry_target *t = ipt_get_target(e);
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200628 struct xt_tgchk_param par = {
Patrick McHardyadd67462010-02-03 13:45:12 +0100629 .net = net,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200630 .table = name,
631 .entryinfo = e,
632 .target = t->u.kernel.target,
633 .targinfo = t->data,
634 .hook_mask = e->comefrom,
Jan Engelhardt916a9172008-10-08 11:35:20 +0200635 .family = NFPROTO_IPV4,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200636 };
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900637 int ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800638
Jan Engelhardt916a9172008-10-08 11:35:20 +0200639 ret = xt_check_target(&par, t->u.target_size - sizeof(*t),
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200640 e->ip.proto, e->ip.invflags & IPT_INV_PROTO);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200641 if (ret < 0) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100642 duprintf("check failed for `%s'.\n",
Dmitry Mishina96be242006-12-12 00:29:26 -0800643 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200644 return ret;
Dmitry Mishina96be242006-12-12 00:29:26 -0800645 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200646 return 0;
Dmitry Mishina96be242006-12-12 00:29:26 -0800647}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Denys Vlasenko022748a2008-01-14 23:44:05 -0800649static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100650find_check_entry(struct ipt_entry *e, struct net *net, const char *name,
Jan Engelhardt05595182010-02-24 18:33:43 +0100651 unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200653 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800654 struct xt_target *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 int ret;
656 unsigned int j;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200657 struct xt_mtchk_param mtpar;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100658 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Florian Westphal71ae0df2015-06-11 01:34:54 +0200660 e->counters.pcnt = xt_percpu_counter_alloc();
661 if (IS_ERR_VALUE(e->counters.pcnt))
662 return -ENOMEM;
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 j = 0;
Alexey Dobriyana83d8e82010-01-18 08:21:13 +0100665 mtpar.net = net;
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200666 mtpar.table = name;
667 mtpar.entryinfo = &e->ip;
668 mtpar.hook_mask = e->comefrom;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200669 mtpar.family = NFPROTO_IPV4;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100670 xt_ematch_foreach(ematch, e) {
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100671 ret = find_check_match(ematch, &mtpar);
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100672 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100673 goto cleanup_matches;
674 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 t = ipt_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200678 target = xt_request_find_target(NFPROTO_IPV4, t->u.user.name,
679 t->u.user.revision);
680 if (IS_ERR(target)) {
Dmitry Mishina96be242006-12-12 00:29:26 -0800681 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200682 ret = PTR_ERR(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 goto cleanup_matches;
684 }
685 t->u.kernel.target = target;
686
Patrick McHardyadd67462010-02-03 13:45:12 +0100687 ret = check_target(e, net, name);
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800688 if (ret)
689 goto err;
Florian Westphal71ae0df2015-06-11 01:34:54 +0200690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800692 err:
693 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 cleanup_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100695 xt_ematch_foreach(ematch, e) {
696 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100697 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100698 cleanup_match(ematch, net);
699 }
Florian Westphal71ae0df2015-06-11 01:34:54 +0200700
701 xt_percpu_counter_free(e->counters.pcnt);
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return ret;
704}
705
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200706static bool check_underflow(const struct ipt_entry *e)
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200707{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200708 const struct xt_entry_target *t;
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200709 unsigned int verdict;
710
Florian Westphal54d83fc2016-03-22 18:02:52 +0100711 if (!unconditional(e))
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200712 return false;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200713 t = ipt_get_target_c(e);
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200714 if (strcmp(t->u.user.name, XT_STANDARD_TARGET) != 0)
715 return false;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200716 verdict = ((struct xt_standard_target *)t)->verdict;
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200717 verdict = -verdict - 1;
718 return verdict == NF_DROP || verdict == NF_ACCEPT;
719}
720
Denys Vlasenko022748a2008-01-14 23:44:05 -0800721static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722check_entry_size_and_hooks(struct ipt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800723 struct xt_table_info *newinfo,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200724 const unsigned char *base,
725 const unsigned char *limit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 const unsigned int *hook_entries,
727 const unsigned int *underflows,
Jan Engelhardt05595182010-02-24 18:33:43 +0100728 unsigned int valid_hooks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
730 unsigned int h;
Florian Westphalbdf533d2016-03-22 18:02:49 +0100731 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Joe Perches3666ed12009-11-23 23:17:06 +0100733 if ((unsigned long)e % __alignof__(struct ipt_entry) != 0 ||
Florian Westphal6e94e0c2016-03-22 18:02:50 +0100734 (unsigned char *)e + sizeof(struct ipt_entry) >= limit ||
735 (unsigned char *)e + e->next_offset > limit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 duprintf("Bad offset %p\n", e);
737 return -EINVAL;
738 }
739
740 if (e->next_offset
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200741 < sizeof(struct ipt_entry) + sizeof(struct xt_entry_target)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 duprintf("checking: element %p size %u\n",
743 e, e->next_offset);
744 return -EINVAL;
745 }
746
Florian Westphalaa412ba2016-04-01 14:17:24 +0200747 if (!ip_checkentry(&e->ip))
748 return -EINVAL;
749
Florian Westphalce683e52016-04-01 14:17:28 +0200750 err = xt_check_entry_offsets(e, e->elems, e->target_offset,
751 e->next_offset);
Florian Westphalbdf533d2016-03-22 18:02:49 +0100752 if (err)
753 return err;
754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 /* Check hooks & underflows */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800756 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Jan Engelhardta7d51732009-07-18 14:52:58 +0200757 if (!(valid_hooks & (1 << h)))
758 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 if ((unsigned char *)e - base == hook_entries[h])
760 newinfo->hook_entry[h] = hook_entries[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200761 if ((unsigned char *)e - base == underflows[h]) {
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200762 if (!check_underflow(e)) {
Florian Westphal54d83fc2016-03-22 18:02:52 +0100763 pr_debug("Underflows must be unconditional and "
764 "use the STANDARD target with "
765 "ACCEPT/DROP\n");
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200766 return -EINVAL;
767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 newinfo->underflow[h] = underflows[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800773 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 e->comefrom = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return 0;
776}
777
Jan Engelhardt05595182010-02-24 18:33:43 +0100778static void
779cleanup_entry(struct ipt_entry *e, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200781 struct xt_tgdtor_param par;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200782 struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100783 struct xt_entry_match *ematch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100786 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +0100787 cleanup_match(ematch, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 t = ipt_get_target(e);
Jan Engelhardta2df1642008-10-08 11:35:19 +0200789
Patrick McHardyadd67462010-02-03 13:45:12 +0100790 par.net = net;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200791 par.target = t->u.kernel.target;
792 par.targinfo = t->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200793 par.family = NFPROTO_IPV4;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200794 if (par.target->destroy != NULL)
795 par.target->destroy(&par);
796 module_put(par.target->me);
Florian Westphal71ae0df2015-06-11 01:34:54 +0200797 xt_percpu_counter_free(e->counters.pcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
799
800/* Checks and translates the user-supplied table segment (held in
801 newinfo) */
802static int
Jan Engelhardt0f234212010-02-24 18:36:04 +0100803translate_table(struct net *net, struct xt_table_info *newinfo, void *entry0,
Ian Morris6c282552015-10-14 23:17:06 +0100804 const struct ipt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100806 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 unsigned int i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100808 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Jan Engelhardt0f234212010-02-24 18:36:04 +0100810 newinfo->size = repl->size;
811 newinfo->number = repl->num_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 /* Init all hooks to impossible value. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800814 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 newinfo->hook_entry[i] = 0xFFFFFFFF;
816 newinfo->underflow[i] = 0xFFFFFFFF;
817 }
818
819 duprintf("translate_table: size %u\n", newinfo->size);
820 i = 0;
821 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100822 xt_entry_foreach(iter, entry0, newinfo->size) {
823 ret = check_entry_size_and_hooks(iter, newinfo, entry0,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +0100824 entry0 + repl->size,
825 repl->hook_entry,
826 repl->underflow,
827 repl->valid_hooks);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100828 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +0100829 return ret;
830 ++i;
Florian Westphal98dbbfc2015-08-26 23:20:51 +0200831 if (strcmp(ipt_get_target(iter)->u.user.name,
832 XT_ERROR_TARGET) == 0)
833 ++newinfo->stacksize;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Jan Engelhardt0f234212010-02-24 18:36:04 +0100836 if (i != repl->num_entries) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 duprintf("translate_table: %u not %u entries\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100838 i, repl->num_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 return -EINVAL;
840 }
841
842 /* Check hooks all assigned */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800843 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 /* Only hooks which are valid */
Jan Engelhardt0f234212010-02-24 18:36:04 +0100845 if (!(repl->valid_hooks & (1 << i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 continue;
847 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
848 duprintf("Invalid hook entry %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100849 i, repl->hook_entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 return -EINVAL;
851 }
852 if (newinfo->underflow[i] == 0xFFFFFFFF) {
853 duprintf("Invalid underflow %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100854 i, repl->underflow[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return -EINVAL;
856 }
857 }
858
Jan Engelhardt0f234212010-02-24 18:36:04 +0100859 if (!mark_source_chains(newinfo, repl->valid_hooks, entry0))
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800860 return -ELOOP;
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 /* Finally, each sanity check must pass */
863 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100864 xt_entry_foreach(iter, entry0, newinfo->size) {
Jan Engelhardt0f234212010-02-24 18:36:04 +0100865 ret = find_check_entry(iter, net, repl->name, repl->size);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100866 if (ret != 0)
867 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100868 ++i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800871 if (ret != 0) {
Jan Engelhardt05595182010-02-24 18:33:43 +0100872 xt_entry_foreach(iter, entry0, newinfo->size) {
873 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100874 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100875 cleanup_entry(iter, net);
876 }
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800877 return ret;
878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 return ret;
881}
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883static void
Harald Welte2e4e6a12006-01-12 13:30:04 -0800884get_counters(const struct xt_table_info *t,
885 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100887 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 unsigned int cpu;
889 unsigned int i;
890
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700891 for_each_possible_cpu(cpu) {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200892 seqcount_t *s = &per_cpu(xt_recseq, cpu);
Eric Dumazet83723d62011-01-10 20:11:38 +0100893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 i = 0;
Florian Westphal482cfc32015-06-11 01:34:55 +0200895 xt_entry_foreach(iter, t->entries, t->size) {
Florian Westphal71ae0df2015-06-11 01:34:54 +0200896 struct xt_counters *tmp;
Eric Dumazet83723d62011-01-10 20:11:38 +0100897 u64 bcnt, pcnt;
898 unsigned int start;
899
Florian Westphal71ae0df2015-06-11 01:34:54 +0200900 tmp = xt_get_per_cpu_counter(&iter->counters, cpu);
Eric Dumazet83723d62011-01-10 20:11:38 +0100901 do {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200902 start = read_seqcount_begin(s);
Florian Westphal71ae0df2015-06-11 01:34:54 +0200903 bcnt = tmp->bcnt;
904 pcnt = tmp->pcnt;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200905 } while (read_seqcount_retry(s, start));
Eric Dumazet83723d62011-01-10 20:11:38 +0100906
907 ADD_COUNTER(counters[i], bcnt, pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +0100908 ++i; /* macro does multi eval of i */
909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
Stephen Hemminger78454472009-02-20 10:35:32 +0100911}
912
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200913static struct xt_counters *alloc_counters(const struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Dmitry Mishin27229712006-04-01 02:25:19 -0800915 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800916 struct xt_counters *counters;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200917 const struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 /* We need atomic snapshot of counters: rest doesn't change
920 (other than comefrom, which userspace doesn't care
921 about). */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800922 countersize = sizeof(struct xt_counters) * private->number;
Eric Dumazet83723d62011-01-10 20:11:38 +0100923 counters = vzalloc(countersize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925 if (counters == NULL)
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700926 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700928 get_counters(private, counters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Dmitry Mishin27229712006-04-01 02:25:19 -0800930 return counters;
931}
932
933static int
934copy_entries_to_user(unsigned int total_size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200935 const struct xt_table *table,
Dmitry Mishin27229712006-04-01 02:25:19 -0800936 void __user *userptr)
937{
938 unsigned int off, num;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200939 const struct ipt_entry *e;
Dmitry Mishin27229712006-04-01 02:25:19 -0800940 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200941 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -0800942 int ret = 0;
Eric Dumazet711bdde2015-06-15 09:57:30 -0700943 const void *loc_cpu_entry;
Dmitry Mishin27229712006-04-01 02:25:19 -0800944
945 counters = alloc_counters(table);
946 if (IS_ERR(counters))
947 return PTR_ERR(counters);
948
Florian Westphal482cfc32015-06-11 01:34:55 +0200949 loc_cpu_entry = private->entries;
Eric Dumazet31836062005-12-13 23:13:48 -0800950 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 ret = -EFAULT;
952 goto free_counters;
953 }
954
955 /* FIXME: use iterator macros --RR */
956 /* ... then go back and fix counters and names */
957 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
958 unsigned int i;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200959 const struct xt_entry_match *m;
960 const struct xt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Eric Dumazet31836062005-12-13 23:13:48 -0800962 e = (struct ipt_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 if (copy_to_user(userptr + off
964 + offsetof(struct ipt_entry, counters),
965 &counters[num],
966 sizeof(counters[num])) != 0) {
967 ret = -EFAULT;
968 goto free_counters;
969 }
970
971 for (i = sizeof(struct ipt_entry);
972 i < e->target_offset;
973 i += m->u.match_size) {
974 m = (void *)e + i;
975
976 if (copy_to_user(userptr + off + i
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200977 + offsetof(struct xt_entry_match,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 u.user.name),
979 m->u.kernel.match->name,
980 strlen(m->u.kernel.match->name)+1)
981 != 0) {
982 ret = -EFAULT;
983 goto free_counters;
984 }
985 }
986
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200987 t = ipt_get_target_c(e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 if (copy_to_user(userptr + off + e->target_offset
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200989 + offsetof(struct xt_entry_target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 u.user.name),
991 t->u.kernel.target->name,
992 strlen(t->u.kernel.target->name)+1) != 0) {
993 ret = -EFAULT;
994 goto free_counters;
995 }
996 }
997
998 free_counters:
999 vfree(counters);
1000 return ret;
1001}
1002
Dmitry Mishin27229712006-04-01 02:25:19 -08001003#ifdef CONFIG_COMPAT
Jan Engelhardt739674f2009-06-26 08:23:19 +02001004static void compat_standard_from_user(void *dst, const void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001005{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001006 int v = *(compat_int_t *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001007
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001008 if (v > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001009 v += xt_compat_calc_jump(AF_INET, v);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001010 memcpy(dst, &v, sizeof(v));
1011}
1012
Jan Engelhardt739674f2009-06-26 08:23:19 +02001013static int compat_standard_to_user(void __user *dst, const void *src)
Dmitry Mishin27229712006-04-01 02:25:19 -08001014{
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001015 compat_int_t cv = *(int *)src;
Dmitry Mishin27229712006-04-01 02:25:19 -08001016
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001017 if (cv > 0)
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001018 cv -= xt_compat_calc_jump(AF_INET, cv);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001019 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001020}
1021
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001022static int compat_calc_entry(const struct ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001023 const struct xt_table_info *info,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001024 const void *base, struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001025{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001026 const struct xt_entry_match *ematch;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001027 const struct xt_entry_target *t;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001028 unsigned int entry_offset;
Dmitry Mishin27229712006-04-01 02:25:19 -08001029 int off, i, ret;
1030
Patrick McHardy30c08c42007-12-17 21:47:14 -08001031 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001032 entry_offset = (void *)e - base;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001033 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001034 off += xt_compat_match_offset(ematch->u.kernel.match);
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001035 t = ipt_get_target_c(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001036 off += xt_compat_target_offset(t->u.kernel.target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001037 newinfo->size -= off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001038 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001039 if (ret)
1040 return ret;
1041
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001042 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Patrick McHardy4b478242007-12-17 21:46:15 -08001043 if (info->hook_entry[i] &&
1044 (e < (struct ipt_entry *)(base + info->hook_entry[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001045 newinfo->hook_entry[i] -= off;
Patrick McHardy4b478242007-12-17 21:46:15 -08001046 if (info->underflow[i] &&
1047 (e < (struct ipt_entry *)(base + info->underflow[i])))
Dmitry Mishin27229712006-04-01 02:25:19 -08001048 newinfo->underflow[i] -= off;
1049 }
1050 return 0;
1051}
1052
Eric Dumazet259d4e42007-12-04 23:24:56 -08001053static int compat_table_info(const struct xt_table_info *info,
Patrick McHardy4b478242007-12-17 21:46:15 -08001054 struct xt_table_info *newinfo)
Dmitry Mishin27229712006-04-01 02:25:19 -08001055{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001056 struct ipt_entry *iter;
Eric Dumazet711bdde2015-06-15 09:57:30 -07001057 const void *loc_cpu_entry;
Jan Engelhardt05595182010-02-24 18:33:43 +01001058 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001059
1060 if (!newinfo || !info)
1061 return -EINVAL;
1062
Florian Westphal482cfc32015-06-11 01:34:55 +02001063 /* we dont care about newinfo->entries */
Eric Dumazet259d4e42007-12-04 23:24:56 -08001064 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
1065 newinfo->initial_entries = 0;
Florian Westphal482cfc32015-06-11 01:34:55 +02001066 loc_cpu_entry = info->entries;
Eric Dumazet255d0dc2010-12-18 18:35:15 +01001067 xt_compat_init_offsets(AF_INET, info->number);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001068 xt_entry_foreach(iter, loc_cpu_entry, info->size) {
1069 ret = compat_calc_entry(iter, info, loc_cpu_entry, newinfo);
1070 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001071 return ret;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001072 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001073 return 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001074}
1075#endif
1076
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001077static int get_info(struct net *net, void __user *user,
Ian Morris6c282552015-10-14 23:17:06 +01001078 const int *len, int compat)
Dmitry Mishin27229712006-04-01 02:25:19 -08001079{
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001080 char name[XT_TABLE_MAXNAMELEN];
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001081 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001082 int ret;
1083
1084 if (*len != sizeof(struct ipt_getinfo)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001085 duprintf("length %u != %zu\n", *len,
1086 sizeof(struct ipt_getinfo));
Dmitry Mishin27229712006-04-01 02:25:19 -08001087 return -EINVAL;
1088 }
1089
1090 if (copy_from_user(name, user, sizeof(name)) != 0)
1091 return -EFAULT;
1092
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001093 name[XT_TABLE_MAXNAMELEN-1] = '\0';
Dmitry Mishin27229712006-04-01 02:25:19 -08001094#ifdef CONFIG_COMPAT
1095 if (compat)
1096 xt_compat_lock(AF_INET);
1097#endif
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001098 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Patrick McHardy4b478242007-12-17 21:46:15 -08001099 "iptable_%s", name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001100 if (!IS_ERR_OR_NULL(t)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001101 struct ipt_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001102 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001103#ifdef CONFIG_COMPAT
Alexey Dobriyan14c7dbe2010-02-08 11:17:43 -08001104 struct xt_table_info tmp;
1105
Dmitry Mishin27229712006-04-01 02:25:19 -08001106 if (compat) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001107 ret = compat_table_info(private, &tmp);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001108 xt_compat_flush_offsets(AF_INET);
Patrick McHardy4b478242007-12-17 21:46:15 -08001109 private = &tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001110 }
1111#endif
Vasiliy Kulikovb5f15ac2010-11-03 08:45:06 +01001112 memset(&info, 0, sizeof(info));
Dmitry Mishin27229712006-04-01 02:25:19 -08001113 info.valid_hooks = t->valid_hooks;
1114 memcpy(info.hook_entry, private->hook_entry,
Patrick McHardy4b478242007-12-17 21:46:15 -08001115 sizeof(info.hook_entry));
Dmitry Mishin27229712006-04-01 02:25:19 -08001116 memcpy(info.underflow, private->underflow,
Patrick McHardy4b478242007-12-17 21:46:15 -08001117 sizeof(info.underflow));
Dmitry Mishin27229712006-04-01 02:25:19 -08001118 info.num_entries = private->number;
1119 info.size = private->size;
1120 strcpy(info.name, name);
1121
1122 if (copy_to_user(user, &info, *len) != 0)
1123 ret = -EFAULT;
1124 else
1125 ret = 0;
1126
1127 xt_table_unlock(t);
1128 module_put(t->me);
1129 } else
1130 ret = t ? PTR_ERR(t) : -ENOENT;
1131#ifdef CONFIG_COMPAT
1132 if (compat)
1133 xt_compat_unlock(AF_INET);
1134#endif
1135 return ret;
1136}
1137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001139get_entries(struct net *net, struct ipt_get_entries __user *uptr,
1140 const int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141{
1142 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001143 struct ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001144 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Dmitry Mishin27229712006-04-01 02:25:19 -08001146 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001147 duprintf("get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001148 return -EINVAL;
1149 }
1150 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1151 return -EFAULT;
1152 if (*len != sizeof(struct ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001153 duprintf("get_entries: %u != %zu\n",
1154 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001155 return -EINVAL;
1156 }
Pablo Neira Ayusob301f252016-03-24 21:29:53 +01001157 get.name[sizeof(get.name) - 1] = '\0';
Dmitry Mishin27229712006-04-01 02:25:19 -08001158
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001159 t = xt_find_table_lock(net, AF_INET, get.name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001160 if (!IS_ERR_OR_NULL(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001161 const struct xt_table_info *private = t->private;
Patrick McHardy9c547952007-12-17 21:52:00 -08001162 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001163 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001164 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 t, uptr->entrytable);
1166 else {
1167 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001168 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001169 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 }
1171 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001172 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 } else
1174 ret = t ? PTR_ERR(t) : -ENOENT;
1175
1176 return ret;
1177}
1178
1179static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001180__do_replace(struct net *net, const char *name, unsigned int valid_hooks,
Patrick McHardy4b478242007-12-17 21:46:15 -08001181 struct xt_table_info *newinfo, unsigned int num_counters,
1182 void __user *counters_ptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001183{
1184 int ret;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001185 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001186 struct xt_table_info *oldinfo;
1187 struct xt_counters *counters;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001188 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001189
1190 ret = 0;
Eric Dumazet83723d62011-01-10 20:11:38 +01001191 counters = vzalloc(num_counters * sizeof(struct xt_counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001192 if (!counters) {
1193 ret = -ENOMEM;
1194 goto out;
1195 }
1196
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001197 t = try_then_request_module(xt_find_table_lock(net, AF_INET, name),
Dmitry Mishin27229712006-04-01 02:25:19 -08001198 "iptable_%s", name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001199 if (IS_ERR_OR_NULL(t)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001200 ret = t ? PTR_ERR(t) : -ENOENT;
1201 goto free_newinfo_counters_untrans;
1202 }
1203
1204 /* You lied! */
1205 if (valid_hooks != t->valid_hooks) {
1206 duprintf("Valid hook crap: %08X vs %08X\n",
1207 valid_hooks, t->valid_hooks);
1208 ret = -EINVAL;
1209 goto put_module;
1210 }
1211
1212 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1213 if (!oldinfo)
1214 goto put_module;
1215
1216 /* Update module usage count based on number of rules */
1217 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1218 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1219 if ((oldinfo->number > oldinfo->initial_entries) ||
1220 (newinfo->number <= oldinfo->initial_entries))
1221 module_put(t->me);
1222 if ((oldinfo->number > oldinfo->initial_entries) &&
1223 (newinfo->number <= oldinfo->initial_entries))
1224 module_put(t->me);
1225
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001226 /* Get the old counters, and synchronize with replace */
Dmitry Mishin27229712006-04-01 02:25:19 -08001227 get_counters(oldinfo, counters);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001228
Dmitry Mishin27229712006-04-01 02:25:19 -08001229 /* Decrease module usage counts and free resource */
Florian Westphal482cfc32015-06-11 01:34:55 +02001230 xt_entry_foreach(iter, oldinfo->entries, oldinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001231 cleanup_entry(iter, net);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001232
Dmitry Mishin27229712006-04-01 02:25:19 -08001233 xt_free_table_info(oldinfo);
1234 if (copy_to_user(counters_ptr, counters,
Thomas Grafc58dd2d2014-04-04 17:57:45 +02001235 sizeof(struct xt_counters) * num_counters) != 0) {
1236 /* Silent error, can't fail, new table is already in place */
1237 net_warn_ratelimited("iptables: counters copy to user failed while replacing table\n");
1238 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001239 vfree(counters);
1240 xt_table_unlock(t);
1241 return ret;
1242
1243 put_module:
1244 module_put(t->me);
1245 xt_table_unlock(t);
1246 free_newinfo_counters_untrans:
1247 vfree(counters);
1248 out:
1249 return ret;
1250}
1251
1252static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001253do_replace(struct net *net, const void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
1255 int ret;
1256 struct ipt_replace tmp;
Dmitry Mishin27229712006-04-01 02:25:19 -08001257 struct xt_table_info *newinfo;
1258 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001259 struct ipt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
1261 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1262 return -EFAULT;
1263
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001264 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001265 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1266 return -ENOMEM;
Dave Jones1086bbe2015-05-19 20:55:17 -04001267 if (tmp.num_counters == 0)
1268 return -EINVAL;
1269
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01001270 tmp.name[sizeof(tmp.name)-1] = 0;
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001271
Harald Welte2e4e6a12006-01-12 13:30:04 -08001272 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (!newinfo)
1274 return -ENOMEM;
1275
Florian Westphal482cfc32015-06-11 01:34:55 +02001276 loc_cpu_entry = newinfo->entries;
Eric Dumazet31836062005-12-13 23:13:48 -08001277 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 tmp.size) != 0) {
1279 ret = -EFAULT;
1280 goto free_newinfo;
1281 }
1282
Jan Engelhardt0f234212010-02-24 18:36:04 +01001283 ret = translate_table(net, newinfo, loc_cpu_entry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 if (ret != 0)
Dmitry Mishin27229712006-04-01 02:25:19 -08001285 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01001287 duprintf("Translated table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001289 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001290 tmp.num_counters, tmp.counters);
Dmitry Mishin27229712006-04-01 02:25:19 -08001291 if (ret)
1292 goto free_newinfo_untrans;
1293 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Dmitry Mishin27229712006-04-01 02:25:19 -08001295 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001296 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001297 cleanup_entry(iter, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001299 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 return ret;
1301}
1302
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303static int
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001304do_add_counters(struct net *net, const void __user *user,
Ian Morris6c282552015-10-14 23:17:06 +01001305 unsigned int len, int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
Florian Westphal482cfc32015-06-11 01:34:55 +02001307 unsigned int i;
Dmitry Mishin27229712006-04-01 02:25:19 -08001308 struct xt_counters_info tmp;
1309 struct xt_counters *paddc;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001310 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001311 const struct xt_table_info *private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 int ret = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001313 struct ipt_entry *iter;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001314 unsigned int addend;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Florian Westphald7591f02016-04-01 15:37:59 +02001316 paddc = xt_copy_counters_from_user(user, len, &tmp, compat);
1317 if (IS_ERR(paddc))
1318 return PTR_ERR(paddc);
Dmitry Mishin27229712006-04-01 02:25:19 -08001319
Florian Westphald7591f02016-04-01 15:37:59 +02001320 t = xt_find_table_lock(net, AF_INET, tmp.name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001321 if (IS_ERR_OR_NULL(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 ret = t ? PTR_ERR(t) : -ENOENT;
1323 goto free;
1324 }
1325
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001326 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001327 private = t->private;
Florian Westphald7591f02016-04-01 15:37:59 +02001328 if (private->number != tmp.num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 ret = -EINVAL;
1330 goto unlock_up_free;
1331 }
1332
1333 i = 0;
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001334 addend = xt_write_recseq_begin();
Florian Westphal482cfc32015-06-11 01:34:55 +02001335 xt_entry_foreach(iter, private->entries, private->size) {
Florian Westphal71ae0df2015-06-11 01:34:54 +02001336 struct xt_counters *tmp;
1337
1338 tmp = xt_get_this_cpu_counter(&iter->counters);
1339 ADD_COUNTER(*tmp, paddc[i].bcnt, paddc[i].pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +01001340 ++i;
1341 }
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001342 xt_write_recseq_end(addend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 unlock_up_free:
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001344 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001345 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 module_put(t->me);
1347 free:
1348 vfree(paddc);
1349
1350 return ret;
1351}
1352
Dmitry Mishin27229712006-04-01 02:25:19 -08001353#ifdef CONFIG_COMPAT
1354struct compat_ipt_replace {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001355 char name[XT_TABLE_MAXNAMELEN];
Dmitry Mishin27229712006-04-01 02:25:19 -08001356 u32 valid_hooks;
1357 u32 num_entries;
1358 u32 size;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001359 u32 hook_entry[NF_INET_NUMHOOKS];
1360 u32 underflow[NF_INET_NUMHOOKS];
Dmitry Mishin27229712006-04-01 02:25:19 -08001361 u32 num_counters;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001362 compat_uptr_t counters; /* struct xt_counters * */
Dmitry Mishin27229712006-04-01 02:25:19 -08001363 struct compat_ipt_entry entries[0];
1364};
1365
Patrick McHardya18aa312007-12-12 10:35:16 -08001366static int
1367compat_copy_entry_to_user(struct ipt_entry *e, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -08001368 unsigned int *size, struct xt_counters *counters,
Jan Engelhardt05595182010-02-24 18:33:43 +01001369 unsigned int i)
Dmitry Mishin27229712006-04-01 02:25:19 -08001370{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001371 struct xt_entry_target *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001372 struct compat_ipt_entry __user *ce;
1373 u_int16_t target_offset, next_offset;
1374 compat_uint_t origsize;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001375 const struct xt_entry_match *ematch;
1376 int ret = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001377
Dmitry Mishin27229712006-04-01 02:25:19 -08001378 origsize = *size;
1379 ce = (struct compat_ipt_entry __user *)*dstptr;
Jan Engelhardt05595182010-02-24 18:33:43 +01001380 if (copy_to_user(ce, e, sizeof(struct ipt_entry)) != 0 ||
1381 copy_to_user(&ce->counters, &counters[i],
1382 sizeof(counters[i])) != 0)
1383 return -EFAULT;
Patrick McHardya18aa312007-12-12 10:35:16 -08001384
Dmitry Mishin27229712006-04-01 02:25:19 -08001385 *dstptr += sizeof(struct compat_ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001386 *size -= sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1387
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001388 xt_ematch_foreach(ematch, e) {
1389 ret = xt_compat_match_to_user(ematch, dstptr, size);
1390 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001391 return ret;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001392 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001393 target_offset = e->target_offset - (origsize - *size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001394 t = ipt_get_target(e);
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001395 ret = xt_compat_target_to_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001396 if (ret)
Jan Engelhardt05595182010-02-24 18:33:43 +01001397 return ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001398 next_offset = e->next_offset - (origsize - *size);
Jan Engelhardt05595182010-02-24 18:33:43 +01001399 if (put_user(target_offset, &ce->target_offset) != 0 ||
1400 put_user(next_offset, &ce->next_offset) != 0)
1401 return -EFAULT;
Dmitry Mishin27229712006-04-01 02:25:19 -08001402 return 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001403}
1404
Denys Vlasenko022748a2008-01-14 23:44:05 -08001405static int
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001406compat_find_calc_match(struct xt_entry_match *m,
Patrick McHardy4b478242007-12-17 21:46:15 -08001407 const struct ipt_ip *ip,
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001408 int *size)
Dmitry Mishin27229712006-04-01 02:25:19 -08001409{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001410 struct xt_match *match;
Dmitry Mishin27229712006-04-01 02:25:19 -08001411
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001412 match = xt_request_find_match(NFPROTO_IPV4, m->u.user.name,
1413 m->u.user.revision);
1414 if (IS_ERR(match)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001415 duprintf("compat_check_calc_match: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001416 m->u.user.name);
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +02001417 return PTR_ERR(match);
Dmitry Mishin27229712006-04-01 02:25:19 -08001418 }
1419 m->u.kernel.match = match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001420 *size += xt_compat_match_offset(match);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001421 return 0;
1422}
1423
Jan Engelhardt05595182010-02-24 18:33:43 +01001424static void compat_release_entry(struct compat_ipt_entry *e)
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001425{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001426 struct xt_entry_target *t;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001427 struct xt_entry_match *ematch;
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001428
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001429 /* Cleanup all matches */
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001430 xt_ematch_foreach(ematch, e)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001431 module_put(ematch->u.kernel.match->me);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001432 t = compat_ipt_get_target(e);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001433 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001434}
1435
Denys Vlasenko022748a2008-01-14 23:44:05 -08001436static int
Patrick McHardy73cd5982007-12-17 21:47:32 -08001437check_compat_entry_size_and_hooks(struct compat_ipt_entry *e,
Patrick McHardy4b478242007-12-17 21:46:15 -08001438 struct xt_table_info *newinfo,
1439 unsigned int *size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001440 const unsigned char *base,
Florian Westphal09d96862016-04-01 14:17:34 +02001441 const unsigned char *limit)
Dmitry Mishin27229712006-04-01 02:25:19 -08001442{
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001443 struct xt_entry_match *ematch;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001444 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001445 struct xt_target *target;
Dmitry Mishine5b5ef72007-01-04 12:14:41 -08001446 unsigned int entry_offset;
Patrick McHardyb0a63632008-01-31 04:10:18 -08001447 unsigned int j;
Florian Westphal09d96862016-04-01 14:17:34 +02001448 int ret, off;
Dmitry Mishin27229712006-04-01 02:25:19 -08001449
1450 duprintf("check_compat_entry_size_and_hooks %p\n", e);
Joe Perches3666ed12009-11-23 23:17:06 +01001451 if ((unsigned long)e % __alignof__(struct compat_ipt_entry) != 0 ||
Florian Westphal6e94e0c2016-03-22 18:02:50 +01001452 (unsigned char *)e + sizeof(struct compat_ipt_entry) >= limit ||
1453 (unsigned char *)e + e->next_offset > limit) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001454 duprintf("Bad offset %p, limit = %p\n", e, limit);
1455 return -EINVAL;
1456 }
1457
1458 if (e->next_offset < sizeof(struct compat_ipt_entry) +
Patrick McHardy4b478242007-12-17 21:46:15 -08001459 sizeof(struct compat_xt_entry_target)) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001460 duprintf("checking: element %p size %u\n",
1461 e, e->next_offset);
1462 return -EINVAL;
1463 }
1464
Florian Westphalaa412ba2016-04-01 14:17:24 +02001465 if (!ip_checkentry(&e->ip))
1466 return -EINVAL;
1467
Florian Westphalce683e52016-04-01 14:17:28 +02001468 ret = xt_compat_check_entry_offsets(e, e->elems,
Florian Westphalfc1221b2016-04-01 14:17:26 +02001469 e->target_offset, e->next_offset);
Dmitry Mishina96be242006-12-12 00:29:26 -08001470 if (ret)
1471 return ret;
Dmitry Mishin590bdf72006-10-30 15:12:55 -08001472
Patrick McHardy30c08c42007-12-17 21:47:14 -08001473 off = sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
Dmitry Mishin27229712006-04-01 02:25:19 -08001474 entry_offset = (void *)e - (void *)base;
1475 j = 0;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001476 xt_ematch_foreach(ematch, e) {
Florian Westphal7d3f8432016-04-01 14:17:30 +02001477 ret = compat_find_calc_match(ematch, &e->ip, &off);
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001478 if (ret != 0)
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001479 goto release_matches;
1480 ++j;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001481 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001482
Patrick McHardy73cd5982007-12-17 21:47:32 -08001483 t = compat_ipt_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001484 target = xt_request_find_target(NFPROTO_IPV4, t->u.user.name,
1485 t->u.user.revision);
1486 if (IS_ERR(target)) {
Dmitry Mishina96be242006-12-12 00:29:26 -08001487 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
Patrick McHardy4b478242007-12-17 21:46:15 -08001488 t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001489 ret = PTR_ERR(target);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001490 goto release_matches;
Dmitry Mishin27229712006-04-01 02:25:19 -08001491 }
1492 t->u.kernel.target = target;
1493
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001494 off += xt_compat_target_offset(target);
Dmitry Mishin27229712006-04-01 02:25:19 -08001495 *size += off;
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001496 ret = xt_compat_add_offset(AF_INET, entry_offset, off);
Dmitry Mishin27229712006-04-01 02:25:19 -08001497 if (ret)
1498 goto out;
1499
Dmitry Mishin27229712006-04-01 02:25:19 -08001500 return 0;
Patrick McHardybec71b12006-09-20 12:04:08 -07001501
Dmitry Mishin27229712006-04-01 02:25:19 -08001502out:
Patrick McHardybec71b12006-09-20 12:04:08 -07001503 module_put(t->u.kernel.target->me);
Dmitry Mishin4c1b52b2007-06-05 12:56:09 -07001504release_matches:
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001505 xt_ematch_foreach(ematch, e) {
1506 if (j-- == 0)
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001507 break;
Jan Engelhardt6bdb3312010-02-24 18:35:37 +01001508 module_put(ematch->u.kernel.match->me);
1509 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001510 return ret;
1511}
1512
Florian Westphal01883462016-04-01 14:17:33 +02001513static void
Patrick McHardy73cd5982007-12-17 21:47:32 -08001514compat_copy_entry_from_user(struct compat_ipt_entry *e, void **dstptr,
Florian Westphal7d3f8432016-04-01 14:17:30 +02001515 unsigned int *size,
Patrick McHardy4b478242007-12-17 21:46:15 -08001516 struct xt_table_info *newinfo, unsigned char *base)
Dmitry Mishin27229712006-04-01 02:25:19 -08001517{
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +02001518 struct xt_entry_target *t;
Jan Engelhardt6709dbb2007-02-07 15:11:19 -08001519 struct xt_target *target;
Dmitry Mishin27229712006-04-01 02:25:19 -08001520 struct ipt_entry *de;
1521 unsigned int origsize;
Florian Westphal01883462016-04-01 14:17:33 +02001522 int h;
Jan Engelhardtdcea9922010-02-24 18:34:48 +01001523 struct xt_entry_match *ematch;
Dmitry Mishin27229712006-04-01 02:25:19 -08001524
Dmitry Mishin27229712006-04-01 02:25:19 -08001525 origsize = *size;
1526 de = (struct ipt_entry *)*dstptr;
1527 memcpy(de, e, sizeof(struct ipt_entry));
Patrick McHardy73cd5982007-12-17 21:47:32 -08001528 memcpy(&de->counters, &e->counters, sizeof(e->counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001529
Patrick McHardy73cd5982007-12-17 21:47:32 -08001530 *dstptr += sizeof(struct ipt_entry);
Patrick McHardy30c08c42007-12-17 21:47:14 -08001531 *size += sizeof(struct ipt_entry) - sizeof(struct compat_ipt_entry);
1532
Florian Westphal01883462016-04-01 14:17:33 +02001533 xt_ematch_foreach(ematch, e)
1534 xt_compat_match_from_user(ematch, dstptr, size);
1535
Dmitry Mishin27229712006-04-01 02:25:19 -08001536 de->target_offset = e->target_offset - (origsize - *size);
Patrick McHardy73cd5982007-12-17 21:47:32 -08001537 t = compat_ipt_get_target(e);
Dmitry Mishin27229712006-04-01 02:25:19 -08001538 target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -07001539 xt_compat_target_from_user(t, dstptr, size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001540
1541 de->next_offset = e->next_offset - (origsize - *size);
Florian Westphal09d96862016-04-01 14:17:34 +02001542
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001543 for (h = 0; h < NF_INET_NUMHOOKS; h++) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001544 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1545 newinfo->hook_entry[h] -= origsize - *size;
1546 if ((unsigned char *)de - base < newinfo->underflow[h])
1547 newinfo->underflow[h] -= origsize - *size;
1548 }
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001549}
Dmitry Mishin27229712006-04-01 02:25:19 -08001550
Denys Vlasenko022748a2008-01-14 23:44:05 -08001551static int
Alexey Dobriyana83d8e82010-01-18 08:21:13 +01001552translate_compat_table(struct net *net,
Patrick McHardy4b478242007-12-17 21:46:15 -08001553 struct xt_table_info **pinfo,
1554 void **pentry0,
Florian Westphal7d3f8432016-04-01 14:17:30 +02001555 const struct compat_ipt_replace *compatr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001556{
Dmitry Mishin920b8682006-10-30 15:14:27 -08001557 unsigned int i, j;
Dmitry Mishin27229712006-04-01 02:25:19 -08001558 struct xt_table_info *newinfo, *info;
1559 void *pos, *entry0, *entry1;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001560 struct compat_ipt_entry *iter0;
Florian Westphal09d96862016-04-01 14:17:34 +02001561 struct ipt_replace repl;
Dmitry Mishin27229712006-04-01 02:25:19 -08001562 unsigned int size;
Jan Engelhardt05595182010-02-24 18:33:43 +01001563 int ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001564
1565 info = *pinfo;
1566 entry0 = *pentry0;
Florian Westphal7d3f8432016-04-01 14:17:30 +02001567 size = compatr->size;
1568 info->number = compatr->num_entries;
Dmitry Mishin27229712006-04-01 02:25:19 -08001569
Dmitry Mishin27229712006-04-01 02:25:19 -08001570 duprintf("translate_compat_table: size %u\n", info->size);
Dmitry Mishin920b8682006-10-30 15:14:27 -08001571 j = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001572 xt_compat_lock(AF_INET);
Florian Westphal7d3f8432016-04-01 14:17:30 +02001573 xt_compat_init_offsets(AF_INET, compatr->num_entries);
Dmitry Mishin27229712006-04-01 02:25:19 -08001574 /* Walk through entries, checking offsets. */
Florian Westphal7d3f8432016-04-01 14:17:30 +02001575 xt_entry_foreach(iter0, entry0, compatr->size) {
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001576 ret = check_compat_entry_size_and_hooks(iter0, info, &size,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001577 entry0,
Florian Westphal09d96862016-04-01 14:17:34 +02001578 entry0 + compatr->size);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001579 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001580 goto out_unlock;
1581 ++j;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001582 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001583
1584 ret = -EINVAL;
Florian Westphal7d3f8432016-04-01 14:17:30 +02001585 if (j != compatr->num_entries) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001586 duprintf("translate_compat_table: %u not %u entries\n",
Florian Westphal7d3f8432016-04-01 14:17:30 +02001587 j, compatr->num_entries);
Dmitry Mishin27229712006-04-01 02:25:19 -08001588 goto out_unlock;
1589 }
1590
Dmitry Mishin27229712006-04-01 02:25:19 -08001591 ret = -ENOMEM;
1592 newinfo = xt_alloc_table_info(size);
1593 if (!newinfo)
1594 goto out_unlock;
1595
Florian Westphal7d3f8432016-04-01 14:17:30 +02001596 newinfo->number = compatr->num_entries;
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001597 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
Florian Westphal09d96862016-04-01 14:17:34 +02001598 newinfo->hook_entry[i] = compatr->hook_entry[i];
1599 newinfo->underflow[i] = compatr->underflow[i];
Dmitry Mishin27229712006-04-01 02:25:19 -08001600 }
Florian Westphal482cfc32015-06-11 01:34:55 +02001601 entry1 = newinfo->entries;
Dmitry Mishin27229712006-04-01 02:25:19 -08001602 pos = entry1;
Florian Westphal7d3f8432016-04-01 14:17:30 +02001603 size = compatr->size;
Florian Westphal01883462016-04-01 14:17:33 +02001604 xt_entry_foreach(iter0, entry0, compatr->size)
1605 compat_copy_entry_from_user(iter0, &pos, &size,
1606 newinfo, entry1);
1607
Florian Westphal09d96862016-04-01 14:17:34 +02001608 /* all module references in entry0 are now gone.
1609 * entry1/newinfo contains a 64bit ruleset that looks exactly as
1610 * generated by 64bit userspace.
1611 *
1612 * Call standard translate_table() to validate all hook_entrys,
1613 * underflows, check for loops, etc.
1614 */
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001615 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001616 xt_compat_unlock(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001617
Florian Westphal09d96862016-04-01 14:17:34 +02001618 memcpy(&repl, compatr, sizeof(*compatr));
Dmitry Mishin27229712006-04-01 02:25:19 -08001619
Florian Westphal09d96862016-04-01 14:17:34 +02001620 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1621 repl.hook_entry[i] = newinfo->hook_entry[i];
1622 repl.underflow[i] = newinfo->underflow[i];
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001623 }
Florian Westphal09d96862016-04-01 14:17:34 +02001624
1625 repl.num_counters = 0;
1626 repl.counters = NULL;
1627 repl.size = newinfo->size;
1628 ret = translate_table(net, newinfo, entry1, &repl);
1629 if (ret)
1630 goto free_newinfo;
Dmitry Mishinf6677f42006-12-05 13:44:07 -08001631
Dmitry Mishin27229712006-04-01 02:25:19 -08001632 *pinfo = newinfo;
1633 *pentry0 = entry1;
1634 xt_free_table_info(info);
1635 return 0;
1636
1637free_newinfo:
1638 xt_free_table_info(newinfo);
Florian Westphal09d96862016-04-01 14:17:34 +02001639 return ret;
1640out_unlock:
1641 xt_compat_flush_offsets(AF_INET);
1642 xt_compat_unlock(AF_INET);
Florian Westphal7d3f8432016-04-01 14:17:30 +02001643 xt_entry_foreach(iter0, entry0, compatr->size) {
Jan Engelhardt05595182010-02-24 18:33:43 +01001644 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001645 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001646 compat_release_entry(iter0);
1647 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001648 return ret;
Dmitry Mishin27229712006-04-01 02:25:19 -08001649}
1650
1651static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001652compat_do_replace(struct net *net, void __user *user, unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001653{
1654 int ret;
1655 struct compat_ipt_replace tmp;
1656 struct xt_table_info *newinfo;
1657 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001658 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001659
1660 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1661 return -EFAULT;
1662
Dmitry Mishin27229712006-04-01 02:25:19 -08001663 /* overflow check */
Dmitry Mishin27229712006-04-01 02:25:19 -08001664 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1665 return -ENOMEM;
Dave Jones1086bbe2015-05-19 20:55:17 -04001666 if (tmp.num_counters == 0)
1667 return -EINVAL;
1668
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01001669 tmp.name[sizeof(tmp.name)-1] = 0;
Dmitry Mishin27229712006-04-01 02:25:19 -08001670
1671 newinfo = xt_alloc_table_info(tmp.size);
1672 if (!newinfo)
1673 return -ENOMEM;
1674
Florian Westphal482cfc32015-06-11 01:34:55 +02001675 loc_cpu_entry = newinfo->entries;
Dmitry Mishin27229712006-04-01 02:25:19 -08001676 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1677 tmp.size) != 0) {
1678 ret = -EFAULT;
1679 goto free_newinfo;
1680 }
1681
Florian Westphal7d3f8432016-04-01 14:17:30 +02001682 ret = translate_compat_table(net, &newinfo, &loc_cpu_entry, &tmp);
Dmitry Mishin27229712006-04-01 02:25:19 -08001683 if (ret != 0)
1684 goto free_newinfo;
1685
1686 duprintf("compat_do_replace: Translated table\n");
1687
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001688 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardy4b478242007-12-17 21:46:15 -08001689 tmp.num_counters, compat_ptr(tmp.counters));
Dmitry Mishin27229712006-04-01 02:25:19 -08001690 if (ret)
1691 goto free_newinfo_untrans;
1692 return 0;
1693
1694 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001695 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001696 cleanup_entry(iter, net);
Dmitry Mishin27229712006-04-01 02:25:19 -08001697 free_newinfo:
1698 xt_free_table_info(newinfo);
1699 return ret;
1700}
1701
1702static int
1703compat_do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user,
Patrick McHardy4b478242007-12-17 21:46:15 -08001704 unsigned int len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001705{
1706 int ret;
1707
Eric W. Biederman52e804c2012-11-16 03:03:05 +00001708 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Dmitry Mishin27229712006-04-01 02:25:19 -08001709 return -EPERM;
1710
1711 switch (cmd) {
1712 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001713 ret = compat_do_replace(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001714 break;
1715
1716 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001717 ret = do_add_counters(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001718 break;
1719
1720 default:
1721 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1722 ret = -EINVAL;
1723 }
1724
1725 return ret;
1726}
1727
Patrick McHardy4b478242007-12-17 21:46:15 -08001728struct compat_ipt_get_entries {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001729 char name[XT_TABLE_MAXNAMELEN];
Dmitry Mishin27229712006-04-01 02:25:19 -08001730 compat_uint_t size;
1731 struct compat_ipt_entry entrytable[0];
1732};
1733
Patrick McHardy4b478242007-12-17 21:46:15 -08001734static int
1735compat_copy_entries_to_user(unsigned int total_size, struct xt_table *table,
1736 void __user *userptr)
Dmitry Mishin27229712006-04-01 02:25:19 -08001737{
Dmitry Mishin27229712006-04-01 02:25:19 -08001738 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001739 const struct xt_table_info *private = table->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001740 void __user *pos;
1741 unsigned int size;
1742 int ret = 0;
Patrick McHardya18aa312007-12-12 10:35:16 -08001743 unsigned int i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001744 struct ipt_entry *iter;
Dmitry Mishin27229712006-04-01 02:25:19 -08001745
1746 counters = alloc_counters(table);
1747 if (IS_ERR(counters))
1748 return PTR_ERR(counters);
1749
Dmitry Mishin27229712006-04-01 02:25:19 -08001750 pos = userptr;
1751 size = total_size;
Florian Westphal482cfc32015-06-11 01:34:55 +02001752 xt_entry_foreach(iter, private->entries, total_size) {
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001753 ret = compat_copy_entry_to_user(iter, &pos,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001754 &size, counters, i++);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001755 if (ret != 0)
1756 break;
1757 }
Dmitry Mishin27229712006-04-01 02:25:19 -08001758
Dmitry Mishin27229712006-04-01 02:25:19 -08001759 vfree(counters);
1760 return ret;
1761}
1762
1763static int
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001764compat_get_entries(struct net *net, struct compat_ipt_get_entries __user *uptr,
1765 int *len)
Dmitry Mishin27229712006-04-01 02:25:19 -08001766{
1767 int ret;
1768 struct compat_ipt_get_entries get;
Jan Engelhardte60a13e2007-02-07 15:12:33 -08001769 struct xt_table *t;
Dmitry Mishin27229712006-04-01 02:25:19 -08001770
Dmitry Mishin27229712006-04-01 02:25:19 -08001771 if (*len < sizeof(get)) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001772 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
Dmitry Mishin27229712006-04-01 02:25:19 -08001773 return -EINVAL;
1774 }
1775
1776 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1777 return -EFAULT;
1778
1779 if (*len != sizeof(struct compat_ipt_get_entries) + get.size) {
Patrick McHardyc9d8fe12007-12-17 21:52:15 -08001780 duprintf("compat_get_entries: %u != %zu\n",
1781 *len, sizeof(get) + get.size);
Dmitry Mishin27229712006-04-01 02:25:19 -08001782 return -EINVAL;
1783 }
Pablo Neira Ayusob301f252016-03-24 21:29:53 +01001784 get.name[sizeof(get.name) - 1] = '\0';
Dmitry Mishin27229712006-04-01 02:25:19 -08001785
1786 xt_compat_lock(AF_INET);
Alexey Dobriyan34bd1372008-01-31 04:03:03 -08001787 t = xt_find_table_lock(net, AF_INET, get.name);
YOSHIFUJI Hideaki / 吉藤英明0cc8d8d2013-01-22 06:33:09 +00001788 if (!IS_ERR_OR_NULL(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001789 const struct xt_table_info *private = t->private;
Dmitry Mishin27229712006-04-01 02:25:19 -08001790 struct xt_table_info info;
Patrick McHardy9c547952007-12-17 21:52:00 -08001791 duprintf("t->private->number = %u\n", private->number);
Dmitry Mishin27229712006-04-01 02:25:19 -08001792 ret = compat_table_info(private, &info);
1793 if (!ret && get.size == info.size) {
1794 ret = compat_copy_entries_to_user(private->size,
Patrick McHardy4b478242007-12-17 21:46:15 -08001795 t, uptr->entrytable);
Dmitry Mishin27229712006-04-01 02:25:19 -08001796 } else if (!ret) {
1797 duprintf("compat_get_entries: I've got %u not %u!\n",
Patrick McHardy9c547952007-12-17 21:52:00 -08001798 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001799 ret = -EAGAIN;
Dmitry Mishin27229712006-04-01 02:25:19 -08001800 }
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001801 xt_compat_flush_offsets(AF_INET);
Dmitry Mishin27229712006-04-01 02:25:19 -08001802 module_put(t->me);
1803 xt_table_unlock(t);
1804 } else
1805 ret = t ? PTR_ERR(t) : -ENOENT;
1806
1807 xt_compat_unlock(AF_INET);
1808 return ret;
1809}
1810
Patrick McHardy79030ed2006-09-20 12:05:08 -07001811static int do_ipt_get_ctl(struct sock *, int, void __user *, int *);
1812
Dmitry Mishin27229712006-04-01 02:25:19 -08001813static int
1814compat_do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1815{
1816 int ret;
1817
Eric W. Biederman52e804c2012-11-16 03:03:05 +00001818 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Björn Steinbrink82fac052006-10-20 00:21:10 -07001819 return -EPERM;
1820
Dmitry Mishin27229712006-04-01 02:25:19 -08001821 switch (cmd) {
1822 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001823 ret = get_info(sock_net(sk), user, len, 1);
Dmitry Mishin27229712006-04-01 02:25:19 -08001824 break;
1825 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001826 ret = compat_get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001827 break;
1828 default:
Patrick McHardy79030ed2006-09-20 12:05:08 -07001829 ret = do_ipt_get_ctl(sk, cmd, user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001830 }
1831 return ret;
1832}
1833#endif
1834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835static int
Patrick McHardy9c547952007-12-17 21:52:00 -08001836do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
1838 int ret;
1839
Eric W. Biederman52e804c2012-11-16 03:03:05 +00001840 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 return -EPERM;
1842
1843 switch (cmd) {
1844 case IPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001845 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 break;
1847
1848 case IPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001849 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 break;
1851
1852 default:
1853 duprintf("do_ipt_set_ctl: unknown request %i\n", cmd);
1854 ret = -EINVAL;
1855 }
1856
1857 return ret;
1858}
1859
1860static int
1861do_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))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 return -EPERM;
1867
1868 switch (cmd) {
Dmitry Mishin27229712006-04-01 02:25:19 -08001869 case IPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001870 ret = get_info(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 break;
Dmitry Mishin27229712006-04-01 02:25:19 -08001872
1873 case IPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001874 ret = get_entries(sock_net(sk), user, len);
Dmitry Mishin27229712006-04-01 02:25:19 -08001875 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
1877 case IPT_SO_GET_REVISION_MATCH:
1878 case IPT_SO_GET_REVISION_TARGET: {
Jan Engelhardt12b00c22010-10-13 15:56:56 +02001879 struct xt_get_revision rev;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001880 int target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
1882 if (*len != sizeof(rev)) {
1883 ret = -EINVAL;
1884 break;
1885 }
1886 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
1887 ret = -EFAULT;
1888 break;
1889 }
Vasiliy Kulikov78b79872011-03-15 13:36:05 +01001890 rev.name[sizeof(rev.name)-1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
1892 if (cmd == IPT_SO_GET_REVISION_TARGET)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001893 target = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 else
Harald Welte2e4e6a12006-01-12 13:30:04 -08001895 target = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
Harald Welte2e4e6a12006-01-12 13:30:04 -08001897 try_then_request_module(xt_find_revision(AF_INET, rev.name,
1898 rev.revision,
1899 target, &ret),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 "ipt_%s", rev.name);
1901 break;
1902 }
1903
1904 default:
1905 duprintf("do_ipt_get_ctl: unknown request %i\n", cmd);
1906 ret = -EINVAL;
1907 }
1908
1909 return ret;
1910}
1911
Florian Westphalb9e69e12016-02-25 10:08:36 +01001912static void __ipt_unregister_table(struct net *net, struct xt_table *table)
1913{
1914 struct xt_table_info *private;
1915 void *loc_cpu_entry;
1916 struct module *table_owner = table->me;
1917 struct ipt_entry *iter;
1918
1919 private = xt_unregister_table(table);
1920
1921 /* Decrease module usage counts and free resources */
1922 loc_cpu_entry = private->entries;
1923 xt_entry_foreach(iter, loc_cpu_entry, private->size)
1924 cleanup_entry(iter, net);
1925 if (private->number > private->initial_entries)
1926 module_put(table_owner);
1927 xt_free_table_info(private);
1928}
1929
Florian Westphala67dd262016-02-25 10:08:35 +01001930int ipt_register_table(struct net *net, const struct xt_table *table,
1931 const struct ipt_replace *repl,
1932 const struct nf_hook_ops *ops, struct xt_table **res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
1934 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001935 struct xt_table_info *newinfo;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +02001936 struct xt_table_info bootstrap = {0};
Eric Dumazet31836062005-12-13 23:13:48 -08001937 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08001938 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
Harald Welte2e4e6a12006-01-12 13:30:04 -08001940 newinfo = xt_alloc_table_info(repl->size);
Florian Westphala67dd262016-02-25 10:08:35 +01001941 if (!newinfo)
1942 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Florian Westphal482cfc32015-06-11 01:34:55 +02001944 loc_cpu_entry = newinfo->entries;
Eric Dumazet31836062005-12-13 23:13:48 -08001945 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Jan Engelhardt0f234212010-02-24 18:36:04 +01001947 ret = translate_table(net, newinfo, loc_cpu_entry, repl);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08001948 if (ret != 0)
1949 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08001951 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08001952 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08001953 ret = PTR_ERR(new_table);
1954 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 }
1956
Florian Westphalb9e69e12016-02-25 10:08:36 +01001957 /* set res now, will see skbs right after nf_register_net_hooks */
Florian Westphala67dd262016-02-25 10:08:35 +01001958 WRITE_ONCE(*res, new_table);
Florian Westphalb9e69e12016-02-25 10:08:36 +01001959
1960 ret = nf_register_net_hooks(net, ops, hweight32(table->valid_hooks));
1961 if (ret != 0) {
1962 __ipt_unregister_table(net, new_table);
1963 *res = NULL;
1964 }
1965
Florian Westphala67dd262016-02-25 10:08:35 +01001966 return ret;
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08001967
1968out_free:
1969 xt_free_table_info(newinfo);
Florian Westphala67dd262016-02-25 10:08:35 +01001970 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971}
1972
Florian Westphala67dd262016-02-25 10:08:35 +01001973void ipt_unregister_table(struct net *net, struct xt_table *table,
1974 const struct nf_hook_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975{
Florian Westphalb9e69e12016-02-25 10:08:36 +01001976 nf_unregister_net_hooks(net, ops, hweight32(table->valid_hooks));
1977 __ipt_unregister_table(net, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978}
1979
1980/* Returns 1 if the type and code is matched by the range, 0 otherwise */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07001981static inline bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982icmp_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code,
1983 u_int8_t type, u_int8_t code,
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07001984 bool invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
Patrick McHardy9c547952007-12-17 21:52:00 -08001986 return ((test_type == 0xFF) ||
1987 (type == test_type && code >= min_code && code <= max_code))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 ^ invert;
1989}
1990
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07001991static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +02001992icmp_match(const struct sk_buff *skb, struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993{
Jan Engelhardt5452e422008-04-14 11:15:35 +02001994 const struct icmphdr *ic;
1995 struct icmphdr _icmph;
Jan Engelhardtf7108a22008-10-08 11:35:18 +02001996 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998 /* Must not be a fragment. */
Jan Engelhardtf7108a22008-10-08 11:35:18 +02001999 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002000 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Jan Engelhardtf7108a22008-10-08 11:35:18 +02002002 ic = skb_header_pointer(skb, par->thoff, sizeof(_icmph), &_icmph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 if (ic == NULL) {
2004 /* We've been asked to examine this packet, and we
2005 * can't. Hence, no choice but to drop.
2006 */
2007 duprintf("Dropping evil ICMP tinygram.\n");
Jan Engelhardtb4ba2612009-07-07 20:54:30 +02002008 par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -07002009 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 }
2011
2012 return icmp_type_code_match(icmpinfo->type,
2013 icmpinfo->code[0],
2014 icmpinfo->code[1],
2015 ic->type, ic->code,
2016 !!(icmpinfo->invflags&IPT_ICMP_INV));
2017}
2018
Jan Engelhardtb0f38452010-03-19 17:16:42 +01002019static int icmp_checkentry(const struct xt_mtchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +02002021 const struct ipt_icmp *icmpinfo = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
Patrick McHardy1d5cd902006-03-20 18:01:14 -08002023 /* Must specify no unknown invflags */
Jan Engelhardtbd414ee2010-03-23 16:35:56 +01002024 return (icmpinfo->invflags & ~IPT_ICMP_INV) ? -EINVAL : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025}
2026
Jan Engelhardt45385062009-07-04 12:50:00 +02002027static struct xt_target ipt_builtin_tg[] __read_mostly = {
2028 {
Jan Engelhardt243bf6e2010-10-13 16:28:00 +02002029 .name = XT_STANDARD_TARGET,
Jan Engelhardt45385062009-07-04 12:50:00 +02002030 .targetsize = sizeof(int),
2031 .family = NFPROTO_IPV4,
Dmitry Mishin27229712006-04-01 02:25:19 -08002032#ifdef CONFIG_COMPAT
Jan Engelhardt45385062009-07-04 12:50:00 +02002033 .compatsize = sizeof(compat_int_t),
2034 .compat_from_user = compat_standard_from_user,
2035 .compat_to_user = compat_standard_to_user,
Dmitry Mishin27229712006-04-01 02:25:19 -08002036#endif
Jan Engelhardt45385062009-07-04 12:50:00 +02002037 },
2038 {
Jan Engelhardt243bf6e2010-10-13 16:28:00 +02002039 .name = XT_ERROR_TARGET,
Jan Engelhardt45385062009-07-04 12:50:00 +02002040 .target = ipt_error,
Jan Engelhardt12b00c22010-10-13 15:56:56 +02002041 .targetsize = XT_FUNCTION_MAXNAMELEN,
Jan Engelhardt45385062009-07-04 12:50:00 +02002042 .family = NFPROTO_IPV4,
2043 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044};
2045
2046static struct nf_sockopt_ops ipt_sockopts = {
2047 .pf = PF_INET,
2048 .set_optmin = IPT_BASE_CTL,
2049 .set_optmax = IPT_SO_SET_MAX+1,
2050 .set = do_ipt_set_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002051#ifdef CONFIG_COMPAT
2052 .compat_set = compat_do_ipt_set_ctl,
2053#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 .get_optmin = IPT_BASE_CTL,
2055 .get_optmax = IPT_SO_GET_MAX+1,
2056 .get = do_ipt_get_ctl,
Dmitry Mishin27229712006-04-01 02:25:19 -08002057#ifdef CONFIG_COMPAT
2058 .compat_get = compat_do_ipt_get_ctl,
2059#endif
Neil Horman16fcec32007-09-11 11:28:26 +02002060 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061};
2062
Jan Engelhardt45385062009-07-04 12:50:00 +02002063static struct xt_match ipt_builtin_mt[] __read_mostly = {
2064 {
2065 .name = "icmp",
2066 .match = icmp_match,
2067 .matchsize = sizeof(struct ipt_icmp),
2068 .checkentry = icmp_checkentry,
2069 .proto = IPPROTO_ICMP,
2070 .family = NFPROTO_IPV4,
2071 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072};
2073
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002074static int __net_init ip_tables_net_init(struct net *net)
2075{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002076 return xt_proto_init(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002077}
2078
2079static void __net_exit ip_tables_net_exit(struct net *net)
2080{
Jan Engelhardt383ca5b2009-04-14 14:24:21 +02002081 xt_proto_fini(net, NFPROTO_IPV4);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002082}
2083
2084static struct pernet_operations ip_tables_net_ops = {
2085 .init = ip_tables_net_init,
2086 .exit = ip_tables_net_exit,
2087};
2088
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002089static int __init ip_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090{
2091 int ret;
2092
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002093 ret = register_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002094 if (ret < 0)
2095 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08002096
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002097 /* No one else will be downing sem now, so we won't sleep */
Jan Engelhardt45385062009-07-04 12:50:00 +02002098 ret = xt_register_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002099 if (ret < 0)
2100 goto err2;
Jan Engelhardt45385062009-07-04 12:50:00 +02002101 ret = xt_register_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002102 if (ret < 0)
2103 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105 /* Register setsockopt */
2106 ret = nf_register_sockopt(&ipt_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002107 if (ret < 0)
2108 goto err5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Jan Engelhardtff67e4e2010-03-19 21:08:16 +01002110 pr_info("(C) 2000-2006 Netfilter Core Team\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002112
2113err5:
Jan Engelhardt45385062009-07-04 12:50:00 +02002114 xt_unregister_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002115err4:
Jan Engelhardt45385062009-07-04 12:50:00 +02002116 xt_unregister_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002117err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002118 unregister_pernet_subsys(&ip_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07002119err1:
2120 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121}
2122
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002123static void __exit ip_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124{
2125 nf_unregister_sockopt(&ipt_sockopts);
Harald Welte2e4e6a12006-01-12 13:30:04 -08002126
Jan Engelhardt45385062009-07-04 12:50:00 +02002127 xt_unregister_matches(ipt_builtin_mt, ARRAY_SIZE(ipt_builtin_mt));
2128 xt_unregister_targets(ipt_builtin_tg, ARRAY_SIZE(ipt_builtin_tg));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08002129 unregister_pernet_subsys(&ip_tables_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130}
2131
2132EXPORT_SYMBOL(ipt_register_table);
2133EXPORT_SYMBOL(ipt_unregister_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134EXPORT_SYMBOL(ipt_do_table);
Andrew Morton65b4b4e2006-03-28 16:37:06 -08002135module_init(ip_tables_init);
2136module_exit(ip_tables_fini);