blob: 9b42b5ea6dcd68c8398c501aa5af81b6dfa83ae8 [file] [log] [blame]
Harald Welte2e4e6a12006-01-12 13:30:04 -08001/*
2 * x_tables core - Backend for {ip,ip6,arp}_tables
3 *
4 * Copyright (C) 2006-2006 Harald Welte <laforge@netfilter.org>
Patrick McHardyf229f6c2013-04-06 15:24:29 +02005 * Copyright (C) 2006-2012 Patrick McHardy <kaber@trash.net>
Harald Welte2e4e6a12006-01-12 13:30:04 -08006 *
7 * Based on existing ip_tables code which is
8 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
9 * Copyright (C) 2000-2005 Netfilter Core Team <coreteam@netfilter.org>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 *
15 */
Jan Engelhardtbe91fd52010-03-18 02:22:32 +010016#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Harald Welte2e4e6a12006-01-12 13:30:04 -080017#include <linux/kernel.h>
Paul Gortmaker3a9a2312011-05-27 09:12:25 -040018#include <linux/module.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -080019#include <linux/socket.h>
20#include <linux/net.h>
21#include <linux/proc_fs.h>
22#include <linux/seq_file.h>
23#include <linux/string.h>
24#include <linux/vmalloc.h>
Ingo Molnar9e19bb62006-03-25 01:41:10 -080025#include <linux/mutex.h>
Al Virod7fe0f22006-12-03 23:15:30 -050026#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Thomas Graffbabf312011-01-16 18:12:59 +010028#include <linux/audit.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020029#include <net/net_namespace.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -080030
31#include <linux/netfilter/x_tables.h>
32#include <linux/netfilter_arp.h>
Jan Engelhardte3eaa992009-06-17 22:14:54 +020033#include <linux/netfilter_ipv4/ip_tables.h>
34#include <linux/netfilter_ipv6/ip6_tables.h>
35#include <linux/netfilter_arp/arp_tables.h>
Ingo Molnar9e19bb62006-03-25 01:41:10 -080036
Harald Welte2e4e6a12006-01-12 13:30:04 -080037MODULE_LICENSE("GPL");
38MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
Jan Engelhardt043ef462008-10-08 11:35:15 +020039MODULE_DESCRIPTION("{ip,ip6,arp,eb}_tables backend module");
Harald Welte2e4e6a12006-01-12 13:30:04 -080040
41#define SMP_ALIGN(x) (((x) + SMP_CACHE_BYTES-1) & ~(SMP_CACHE_BYTES-1))
42
Patrick McHardyb386d9f2007-12-17 21:47:48 -080043struct compat_delta {
Eric Dumazet255d0dc2010-12-18 18:35:15 +010044 unsigned int offset; /* offset in kernel */
45 int delta; /* delta in 32bit user land */
Patrick McHardyb386d9f2007-12-17 21:47:48 -080046};
47
Harald Welte2e4e6a12006-01-12 13:30:04 -080048struct xt_af {
Ingo Molnar9e19bb62006-03-25 01:41:10 -080049 struct mutex mutex;
Harald Welte2e4e6a12006-01-12 13:30:04 -080050 struct list_head match;
51 struct list_head target;
Patrick McHardyb386d9f2007-12-17 21:47:48 -080052#ifdef CONFIG_COMPAT
Dmitry Mishin27229712006-04-01 02:25:19 -080053 struct mutex compat_mutex;
Eric Dumazet255d0dc2010-12-18 18:35:15 +010054 struct compat_delta *compat_tab;
55 unsigned int number; /* number of slots in compat_tab[] */
56 unsigned int cur; /* number of used slots in compat_tab[] */
Patrick McHardyb386d9f2007-12-17 21:47:48 -080057#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -080058};
59
60static struct xt_af *xt;
61
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +020062static const char *const xt_prefix[NFPROTO_NUMPROTO] = {
63 [NFPROTO_UNSPEC] = "x",
64 [NFPROTO_IPV4] = "ip",
65 [NFPROTO_ARP] = "arp",
66 [NFPROTO_BRIDGE] = "eb",
67 [NFPROTO_IPV6] = "ip6",
Patrick McHardy37f9f732006-03-20 17:59:06 -080068};
69
Harald Welte2e4e6a12006-01-12 13:30:04 -080070/* Registration hooks for targets. */
Pablo Neira Ayuso7926dbf2014-07-31 20:38:46 +020071int xt_register_target(struct xt_target *target)
Harald Welte2e4e6a12006-01-12 13:30:04 -080072{
Jan Engelhardt76108ce2008-10-08 11:35:00 +020073 u_int8_t af = target->family;
Harald Welte2e4e6a12006-01-12 13:30:04 -080074
Pablo Neira Ayuso7926dbf2014-07-31 20:38:46 +020075 mutex_lock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -080076 list_add(&target->list, &xt[af].target);
Ingo Molnar9e19bb62006-03-25 01:41:10 -080077 mutex_unlock(&xt[af].mutex);
Pablo Neira Ayuso7926dbf2014-07-31 20:38:46 +020078 return 0;
Harald Welte2e4e6a12006-01-12 13:30:04 -080079}
80EXPORT_SYMBOL(xt_register_target);
81
82void
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080083xt_unregister_target(struct xt_target *target)
Harald Welte2e4e6a12006-01-12 13:30:04 -080084{
Jan Engelhardt76108ce2008-10-08 11:35:00 +020085 u_int8_t af = target->family;
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080086
Ingo Molnar9e19bb62006-03-25 01:41:10 -080087 mutex_lock(&xt[af].mutex);
Patrick McHardydf0933d2006-09-20 11:57:53 -070088 list_del(&target->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -080089 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -080090}
91EXPORT_SYMBOL(xt_unregister_target);
92
93int
Patrick McHardy52d9c422006-08-22 00:33:45 -070094xt_register_targets(struct xt_target *target, unsigned int n)
95{
96 unsigned int i;
97 int err = 0;
98
99 for (i = 0; i < n; i++) {
100 err = xt_register_target(&target[i]);
101 if (err)
102 goto err;
103 }
104 return err;
105
106err:
107 if (i > 0)
108 xt_unregister_targets(target, i);
109 return err;
110}
111EXPORT_SYMBOL(xt_register_targets);
112
113void
114xt_unregister_targets(struct xt_target *target, unsigned int n)
115{
Changli Gaof68c5302010-10-04 22:24:12 +0200116 while (n-- > 0)
117 xt_unregister_target(&target[n]);
Patrick McHardy52d9c422006-08-22 00:33:45 -0700118}
119EXPORT_SYMBOL(xt_unregister_targets);
120
Pablo Neira Ayuso7926dbf2014-07-31 20:38:46 +0200121int xt_register_match(struct xt_match *match)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800122{
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200123 u_int8_t af = match->family;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800124
Pablo Neira Ayuso7926dbf2014-07-31 20:38:46 +0200125 mutex_lock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800126 list_add(&match->list, &xt[af].match);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800127 mutex_unlock(&xt[af].mutex);
Pablo Neira Ayuso7926dbf2014-07-31 20:38:46 +0200128 return 0;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800129}
130EXPORT_SYMBOL(xt_register_match);
131
132void
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800133xt_unregister_match(struct xt_match *match)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800134{
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200135 u_int8_t af = match->family;
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800136
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800137 mutex_lock(&xt[af].mutex);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700138 list_del(&match->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800139 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800140}
141EXPORT_SYMBOL(xt_unregister_match);
142
Patrick McHardy52d9c422006-08-22 00:33:45 -0700143int
144xt_register_matches(struct xt_match *match, unsigned int n)
145{
146 unsigned int i;
147 int err = 0;
148
149 for (i = 0; i < n; i++) {
150 err = xt_register_match(&match[i]);
151 if (err)
152 goto err;
153 }
154 return err;
155
156err:
157 if (i > 0)
158 xt_unregister_matches(match, i);
159 return err;
160}
161EXPORT_SYMBOL(xt_register_matches);
162
163void
164xt_unregister_matches(struct xt_match *match, unsigned int n)
165{
Changli Gaof68c5302010-10-04 22:24:12 +0200166 while (n-- > 0)
167 xt_unregister_match(&match[n]);
Patrick McHardy52d9c422006-08-22 00:33:45 -0700168}
169EXPORT_SYMBOL(xt_unregister_matches);
170
Harald Welte2e4e6a12006-01-12 13:30:04 -0800171
172/*
173 * These are weird, but module loading must not be done with mutex
174 * held (since they will register), and we have to have a single
Stephen Hemmingeradb00ae2011-03-09 14:14:26 +0100175 * function to use.
Harald Welte2e4e6a12006-01-12 13:30:04 -0800176 */
177
178/* Find match, grabs ref. Returns ERR_PTR() on error. */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200179struct xt_match *xt_find_match(u8 af, const char *name, u8 revision)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800180{
181 struct xt_match *m;
Patrick McHardy42046e22011-03-14 19:11:44 +0100182 int err = -ENOENT;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800183
Pablo Neira Ayuso7926dbf2014-07-31 20:38:46 +0200184 mutex_lock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800185 list_for_each_entry(m, &xt[af].match, list) {
186 if (strcmp(m->name, name) == 0) {
187 if (m->revision == revision) {
188 if (try_module_get(m->me)) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800189 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800190 return m;
191 }
192 } else
193 err = -EPROTOTYPE; /* Found something. */
194 }
195 }
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800196 mutex_unlock(&xt[af].mutex);
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200197
198 if (af != NFPROTO_UNSPEC)
199 /* Try searching again in the family-independent list */
200 return xt_find_match(NFPROTO_UNSPEC, name, revision);
201
Harald Welte2e4e6a12006-01-12 13:30:04 -0800202 return ERR_PTR(err);
203}
204EXPORT_SYMBOL(xt_find_match);
205
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200206struct xt_match *
207xt_request_find_match(uint8_t nfproto, const char *name, uint8_t revision)
208{
209 struct xt_match *match;
210
Stephen Hemmingeradb00ae2011-03-09 14:14:26 +0100211 match = xt_find_match(nfproto, name, revision);
212 if (IS_ERR(match)) {
213 request_module("%st_%s", xt_prefix[nfproto], name);
214 match = xt_find_match(nfproto, name, revision);
215 }
216
217 return match;
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200218}
219EXPORT_SYMBOL_GPL(xt_request_find_match);
220
Harald Welte2e4e6a12006-01-12 13:30:04 -0800221/* Find target, grabs ref. Returns ERR_PTR() on error. */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200222struct xt_target *xt_find_target(u8 af, const char *name, u8 revision)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800223{
224 struct xt_target *t;
Patrick McHardy42046e22011-03-14 19:11:44 +0100225 int err = -ENOENT;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800226
Pablo Neira Ayuso7926dbf2014-07-31 20:38:46 +0200227 mutex_lock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800228 list_for_each_entry(t, &xt[af].target, list) {
229 if (strcmp(t->name, name) == 0) {
230 if (t->revision == revision) {
231 if (try_module_get(t->me)) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800232 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800233 return t;
234 }
235 } else
236 err = -EPROTOTYPE; /* Found something. */
237 }
238 }
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800239 mutex_unlock(&xt[af].mutex);
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200240
241 if (af != NFPROTO_UNSPEC)
242 /* Try searching again in the family-independent list */
243 return xt_find_target(NFPROTO_UNSPEC, name, revision);
244
Harald Welte2e4e6a12006-01-12 13:30:04 -0800245 return ERR_PTR(err);
246}
247EXPORT_SYMBOL(xt_find_target);
248
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200249struct xt_target *xt_request_find_target(u8 af, const char *name, u8 revision)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800250{
251 struct xt_target *target;
252
Stephen Hemmingeradb00ae2011-03-09 14:14:26 +0100253 target = xt_find_target(af, name, revision);
254 if (IS_ERR(target)) {
255 request_module("%st_%s", xt_prefix[af], name);
256 target = xt_find_target(af, name, revision);
257 }
258
259 return target;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800260}
261EXPORT_SYMBOL_GPL(xt_request_find_target);
262
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200263static int match_revfn(u8 af, const char *name, u8 revision, int *bestp)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800264{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200265 const struct xt_match *m;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800266 int have_rev = 0;
267
268 list_for_each_entry(m, &xt[af].match, list) {
269 if (strcmp(m->name, name) == 0) {
270 if (m->revision > *bestp)
271 *bestp = m->revision;
272 if (m->revision == revision)
273 have_rev = 1;
274 }
275 }
Patrick McHardy656caff2009-01-12 00:06:04 +0000276
277 if (af != NFPROTO_UNSPEC && !have_rev)
278 return match_revfn(NFPROTO_UNSPEC, name, revision, bestp);
279
Harald Welte2e4e6a12006-01-12 13:30:04 -0800280 return have_rev;
281}
282
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200283static int target_revfn(u8 af, const char *name, u8 revision, int *bestp)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800284{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200285 const struct xt_target *t;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800286 int have_rev = 0;
287
288 list_for_each_entry(t, &xt[af].target, list) {
289 if (strcmp(t->name, name) == 0) {
290 if (t->revision > *bestp)
291 *bestp = t->revision;
292 if (t->revision == revision)
293 have_rev = 1;
294 }
295 }
Patrick McHardy656caff2009-01-12 00:06:04 +0000296
297 if (af != NFPROTO_UNSPEC && !have_rev)
298 return target_revfn(NFPROTO_UNSPEC, name, revision, bestp);
299
Harald Welte2e4e6a12006-01-12 13:30:04 -0800300 return have_rev;
301}
302
303/* Returns true or false (if no such extension at all) */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200304int xt_find_revision(u8 af, const char *name, u8 revision, int target,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800305 int *err)
306{
307 int have_rev, best = -1;
308
Pablo Neira Ayuso7926dbf2014-07-31 20:38:46 +0200309 mutex_lock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800310 if (target == 1)
311 have_rev = target_revfn(af, name, revision, &best);
312 else
313 have_rev = match_revfn(af, name, revision, &best);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800314 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800315
316 /* Nothing at all? Return 0 to try loading module. */
317 if (best == -1) {
318 *err = -ENOENT;
319 return 0;
320 }
321
322 *err = best;
323 if (!have_rev)
324 *err = -EPROTONOSUPPORT;
325 return 1;
326}
327EXPORT_SYMBOL_GPL(xt_find_revision);
328
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000329static char *
330textify_hooks(char *buf, size_t size, unsigned int mask, uint8_t nfproto)
Jan Engelhardt45185362009-04-05 10:43:09 +0200331{
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000332 static const char *const inetbr_names[] = {
Jan Engelhardt45185362009-04-05 10:43:09 +0200333 "PREROUTING", "INPUT", "FORWARD",
334 "OUTPUT", "POSTROUTING", "BROUTING",
335 };
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000336 static const char *const arp_names[] = {
337 "INPUT", "FORWARD", "OUTPUT",
338 };
339 const char *const *names;
340 unsigned int i, max;
Jan Engelhardt45185362009-04-05 10:43:09 +0200341 char *p = buf;
342 bool np = false;
343 int res;
344
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000345 names = (nfproto == NFPROTO_ARP) ? arp_names : inetbr_names;
346 max = (nfproto == NFPROTO_ARP) ? ARRAY_SIZE(arp_names) :
347 ARRAY_SIZE(inetbr_names);
Jan Engelhardt45185362009-04-05 10:43:09 +0200348 *p = '\0';
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000349 for (i = 0; i < max; ++i) {
Jan Engelhardt45185362009-04-05 10:43:09 +0200350 if (!(mask & (1 << i)))
351 continue;
352 res = snprintf(p, size, "%s%s", np ? "/" : "", names[i]);
353 if (res > 0) {
354 size -= res;
355 p += res;
356 }
357 np = true;
358 }
359
360 return buf;
361}
362
Jan Engelhardt916a9172008-10-08 11:35:20 +0200363int xt_check_match(struct xt_mtchk_param *par,
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200364 unsigned int size, u_int8_t proto, bool inv_proto)
Patrick McHardy37f9f732006-03-20 17:59:06 -0800365{
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100366 int ret;
367
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200368 if (XT_ALIGN(par->match->matchsize) != size &&
369 par->match->matchsize != -1) {
Jan Engelhardt043ef462008-10-08 11:35:15 +0200370 /*
371 * ebt_among is exempt from centralized matchsize checking
372 * because it uses a dynamic-size data set.
373 */
Jan Engelhardtb4024052009-06-25 18:32:12 +0200374 pr_err("%s_tables: %s.%u match: invalid size "
375 "%u (kernel) != (user) %u\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200376 xt_prefix[par->family], par->match->name,
Jan Engelhardtb4024052009-06-25 18:32:12 +0200377 par->match->revision,
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200378 XT_ALIGN(par->match->matchsize), size);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800379 return -EINVAL;
380 }
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200381 if (par->match->table != NULL &&
382 strcmp(par->match->table, par->table) != 0) {
Joe Perches3dd5d7e2009-06-13 12:32:39 +0200383 pr_err("%s_tables: %s match: only valid in %s table, not %s\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200384 xt_prefix[par->family], par->match->name,
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200385 par->match->table, par->table);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800386 return -EINVAL;
387 }
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200388 if (par->match->hooks && (par->hook_mask & ~par->match->hooks) != 0) {
Jan Engelhardt45185362009-04-05 10:43:09 +0200389 char used[64], allow[64];
390
Joe Perches3dd5d7e2009-06-13 12:32:39 +0200391 pr_err("%s_tables: %s match: used from hooks %s, but only "
Jan Engelhardt45185362009-04-05 10:43:09 +0200392 "valid from %s\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200393 xt_prefix[par->family], par->match->name,
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000394 textify_hooks(used, sizeof(used), par->hook_mask,
395 par->family),
396 textify_hooks(allow, sizeof(allow), par->match->hooks,
397 par->family));
Patrick McHardy37f9f732006-03-20 17:59:06 -0800398 return -EINVAL;
399 }
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200400 if (par->match->proto && (par->match->proto != proto || inv_proto)) {
Joe Perches3dd5d7e2009-06-13 12:32:39 +0200401 pr_err("%s_tables: %s match: only valid for protocol %u\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200402 xt_prefix[par->family], par->match->name,
403 par->match->proto);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800404 return -EINVAL;
405 }
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100406 if (par->match->checkentry != NULL) {
407 ret = par->match->checkentry(par);
408 if (ret < 0)
409 return ret;
410 else if (ret > 0)
411 /* Flag up potential errors. */
412 return -EIO;
413 }
Patrick McHardy37f9f732006-03-20 17:59:06 -0800414 return 0;
415}
416EXPORT_SYMBOL_GPL(xt_check_match);
417
Dmitry Mishin27229712006-04-01 02:25:19 -0800418#ifdef CONFIG_COMPAT
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100419int xt_compat_add_offset(u_int8_t af, unsigned int offset, int delta)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800420{
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100421 struct xt_af *xp = &xt[af];
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800422
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100423 if (!xp->compat_tab) {
424 if (!xp->number)
425 return -EINVAL;
426 xp->compat_tab = vmalloc(sizeof(struct compat_delta) * xp->number);
427 if (!xp->compat_tab)
428 return -ENOMEM;
429 xp->cur = 0;
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800430 }
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100431
432 if (xp->cur >= xp->number)
433 return -EINVAL;
434
435 if (xp->cur)
436 delta += xp->compat_tab[xp->cur - 1].delta;
437 xp->compat_tab[xp->cur].offset = offset;
438 xp->compat_tab[xp->cur].delta = delta;
439 xp->cur++;
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800440 return 0;
441}
442EXPORT_SYMBOL_GPL(xt_compat_add_offset);
443
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200444void xt_compat_flush_offsets(u_int8_t af)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800445{
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100446 if (xt[af].compat_tab) {
447 vfree(xt[af].compat_tab);
448 xt[af].compat_tab = NULL;
449 xt[af].number = 0;
Eric Dumazet5a6351e2011-04-21 10:57:21 +0200450 xt[af].cur = 0;
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800451 }
452}
453EXPORT_SYMBOL_GPL(xt_compat_flush_offsets);
454
Florian Westphal3e5e5242010-02-15 18:17:10 +0100455int xt_compat_calc_jump(u_int8_t af, unsigned int offset)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800456{
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100457 struct compat_delta *tmp = xt[af].compat_tab;
458 int mid, left = 0, right = xt[af].cur - 1;
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800459
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100460 while (left <= right) {
461 mid = (left + right) >> 1;
462 if (offset > tmp[mid].offset)
463 left = mid + 1;
464 else if (offset < tmp[mid].offset)
465 right = mid - 1;
466 else
467 return mid ? tmp[mid - 1].delta : 0;
468 }
Eric Dumazet5a6351e2011-04-21 10:57:21 +0200469 return left ? tmp[left - 1].delta : 0;
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800470}
471EXPORT_SYMBOL_GPL(xt_compat_calc_jump);
472
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100473void xt_compat_init_offsets(u_int8_t af, unsigned int number)
474{
475 xt[af].number = number;
476 xt[af].cur = 0;
477}
478EXPORT_SYMBOL(xt_compat_init_offsets);
479
Jan Engelhardt5452e422008-04-14 11:15:35 +0200480int xt_compat_match_offset(const struct xt_match *match)
Dmitry Mishin27229712006-04-01 02:25:19 -0800481{
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700482 u_int16_t csize = match->compatsize ? : match->matchsize;
483 return XT_ALIGN(match->matchsize) - COMPAT_XT_ALIGN(csize);
Dmitry Mishin27229712006-04-01 02:25:19 -0800484}
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700485EXPORT_SYMBOL_GPL(xt_compat_match_offset);
486
Patrick McHardy89566952007-12-17 21:46:40 -0800487int xt_compat_match_from_user(struct xt_entry_match *m, void **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800488 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700489{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200490 const struct xt_match *match = m->u.kernel.match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700491 struct compat_xt_entry_match *cm = (struct compat_xt_entry_match *)m;
492 int pad, off = xt_compat_match_offset(match);
493 u_int16_t msize = cm->u.user.match_size;
494
495 m = *dstptr;
496 memcpy(m, cm, sizeof(*cm));
497 if (match->compat_from_user)
498 match->compat_from_user(m->data, cm->data);
499 else
500 memcpy(m->data, cm->data, msize - sizeof(*cm));
501 pad = XT_ALIGN(match->matchsize) - match->matchsize;
502 if (pad > 0)
503 memset(m->data + match->matchsize, 0, pad);
504
505 msize += off;
506 m->u.user.match_size = msize;
507
508 *size += off;
509 *dstptr += msize;
Patrick McHardy89566952007-12-17 21:46:40 -0800510 return 0;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700511}
512EXPORT_SYMBOL_GPL(xt_compat_match_from_user);
513
Jan Engelhardt739674f2009-06-26 08:23:19 +0200514int xt_compat_match_to_user(const struct xt_entry_match *m,
515 void __user **dstptr, unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700516{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200517 const struct xt_match *match = m->u.kernel.match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700518 struct compat_xt_entry_match __user *cm = *dstptr;
519 int off = xt_compat_match_offset(match);
520 u_int16_t msize = m->u.user.match_size - off;
521
522 if (copy_to_user(cm, m, sizeof(*cm)) ||
Patrick McHardya18aa312007-12-12 10:35:16 -0800523 put_user(msize, &cm->u.user.match_size) ||
524 copy_to_user(cm->u.user.name, m->u.kernel.match->name,
525 strlen(m->u.kernel.match->name) + 1))
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800526 return -EFAULT;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700527
528 if (match->compat_to_user) {
529 if (match->compat_to_user((void __user *)cm->data, m->data))
530 return -EFAULT;
531 } else {
532 if (copy_to_user(cm->data, m->data, msize - sizeof(*cm)))
533 return -EFAULT;
534 }
535
536 *size -= off;
537 *dstptr += msize;
538 return 0;
539}
540EXPORT_SYMBOL_GPL(xt_compat_match_to_user);
541#endif /* CONFIG_COMPAT */
Dmitry Mishin27229712006-04-01 02:25:19 -0800542
Jan Engelhardt916a9172008-10-08 11:35:20 +0200543int xt_check_target(struct xt_tgchk_param *par,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200544 unsigned int size, u_int8_t proto, bool inv_proto)
Patrick McHardy37f9f732006-03-20 17:59:06 -0800545{
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100546 int ret;
547
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200548 if (XT_ALIGN(par->target->targetsize) != size) {
Jan Engelhardtb4024052009-06-25 18:32:12 +0200549 pr_err("%s_tables: %s.%u target: invalid size "
550 "%u (kernel) != (user) %u\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200551 xt_prefix[par->family], par->target->name,
Jan Engelhardtb4024052009-06-25 18:32:12 +0200552 par->target->revision,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200553 XT_ALIGN(par->target->targetsize), size);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800554 return -EINVAL;
555 }
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200556 if (par->target->table != NULL &&
557 strcmp(par->target->table, par->table) != 0) {
Joe Perches3dd5d7e2009-06-13 12:32:39 +0200558 pr_err("%s_tables: %s target: only valid in %s table, not %s\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200559 xt_prefix[par->family], par->target->name,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200560 par->target->table, par->table);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800561 return -EINVAL;
562 }
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200563 if (par->target->hooks && (par->hook_mask & ~par->target->hooks) != 0) {
Jan Engelhardt45185362009-04-05 10:43:09 +0200564 char used[64], allow[64];
565
Joe Perches3dd5d7e2009-06-13 12:32:39 +0200566 pr_err("%s_tables: %s target: used from hooks %s, but only "
Jan Engelhardt45185362009-04-05 10:43:09 +0200567 "usable from %s\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200568 xt_prefix[par->family], par->target->name,
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000569 textify_hooks(used, sizeof(used), par->hook_mask,
570 par->family),
571 textify_hooks(allow, sizeof(allow), par->target->hooks,
572 par->family));
Patrick McHardy37f9f732006-03-20 17:59:06 -0800573 return -EINVAL;
574 }
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200575 if (par->target->proto && (par->target->proto != proto || inv_proto)) {
Joe Perches3dd5d7e2009-06-13 12:32:39 +0200576 pr_err("%s_tables: %s target: only valid for protocol %u\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200577 xt_prefix[par->family], par->target->name,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200578 par->target->proto);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800579 return -EINVAL;
580 }
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100581 if (par->target->checkentry != NULL) {
582 ret = par->target->checkentry(par);
583 if (ret < 0)
584 return ret;
585 else if (ret > 0)
586 /* Flag up potential errors. */
587 return -EIO;
588 }
Patrick McHardy37f9f732006-03-20 17:59:06 -0800589 return 0;
590}
591EXPORT_SYMBOL_GPL(xt_check_target);
592
Dmitry Mishin27229712006-04-01 02:25:19 -0800593#ifdef CONFIG_COMPAT
Jan Engelhardt5452e422008-04-14 11:15:35 +0200594int xt_compat_target_offset(const struct xt_target *target)
Dmitry Mishin27229712006-04-01 02:25:19 -0800595{
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700596 u_int16_t csize = target->compatsize ? : target->targetsize;
597 return XT_ALIGN(target->targetsize) - COMPAT_XT_ALIGN(csize);
Dmitry Mishin27229712006-04-01 02:25:19 -0800598}
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700599EXPORT_SYMBOL_GPL(xt_compat_target_offset);
600
601void xt_compat_target_from_user(struct xt_entry_target *t, void **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800602 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700603{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200604 const struct xt_target *target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700605 struct compat_xt_entry_target *ct = (struct compat_xt_entry_target *)t;
606 int pad, off = xt_compat_target_offset(target);
607 u_int16_t tsize = ct->u.user.target_size;
608
609 t = *dstptr;
610 memcpy(t, ct, sizeof(*ct));
611 if (target->compat_from_user)
612 target->compat_from_user(t->data, ct->data);
613 else
614 memcpy(t->data, ct->data, tsize - sizeof(*ct));
615 pad = XT_ALIGN(target->targetsize) - target->targetsize;
616 if (pad > 0)
617 memset(t->data + target->targetsize, 0, pad);
618
619 tsize += off;
620 t->u.user.target_size = tsize;
621
622 *size += off;
623 *dstptr += tsize;
624}
625EXPORT_SYMBOL_GPL(xt_compat_target_from_user);
626
Jan Engelhardt739674f2009-06-26 08:23:19 +0200627int xt_compat_target_to_user(const struct xt_entry_target *t,
628 void __user **dstptr, unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700629{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200630 const struct xt_target *target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700631 struct compat_xt_entry_target __user *ct = *dstptr;
632 int off = xt_compat_target_offset(target);
633 u_int16_t tsize = t->u.user.target_size - off;
634
635 if (copy_to_user(ct, t, sizeof(*ct)) ||
Patrick McHardya18aa312007-12-12 10:35:16 -0800636 put_user(tsize, &ct->u.user.target_size) ||
637 copy_to_user(ct->u.user.name, t->u.kernel.target->name,
638 strlen(t->u.kernel.target->name) + 1))
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800639 return -EFAULT;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700640
641 if (target->compat_to_user) {
642 if (target->compat_to_user((void __user *)ct->data, t->data))
643 return -EFAULT;
644 } else {
645 if (copy_to_user(ct->data, t->data, tsize - sizeof(*ct)))
646 return -EFAULT;
647 }
648
649 *size -= off;
650 *dstptr += tsize;
651 return 0;
652}
653EXPORT_SYMBOL_GPL(xt_compat_target_to_user);
Dmitry Mishin27229712006-04-01 02:25:19 -0800654#endif
655
Harald Welte2e4e6a12006-01-12 13:30:04 -0800656struct xt_table_info *xt_alloc_table_info(unsigned int size)
657{
Eric Dumazet711bdde2015-06-15 09:57:30 -0700658 struct xt_table_info *info = NULL;
659 size_t sz = sizeof(*info) + size;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800660
661 /* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */
Jan Beulich44813742009-09-21 17:03:05 -0700662 if ((SMP_ALIGN(size) >> PAGE_SHIFT) + 2 > totalram_pages)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800663 return NULL;
664
Eric Dumazet711bdde2015-06-15 09:57:30 -0700665 if (sz <= (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER))
666 info = kmalloc(sz, GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY);
667 if (!info) {
668 info = vmalloc(sz);
669 if (!info)
670 return NULL;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800671 }
Eric Dumazet711bdde2015-06-15 09:57:30 -0700672 memset(info, 0, sizeof(*info));
673 info->size = size;
674 return info;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800675}
676EXPORT_SYMBOL(xt_alloc_table_info);
677
678void xt_free_table_info(struct xt_table_info *info)
679{
680 int cpu;
681
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200682 if (info->jumpstack != NULL) {
Eric Dumazetf6b50822014-06-24 02:15:35 -0700683 for_each_possible_cpu(cpu)
684 kvfree(info->jumpstack[cpu]);
685 kvfree(info->jumpstack);
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200686 }
687
Eric Dumazet711bdde2015-06-15 09:57:30 -0700688 kvfree(info);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800689}
690EXPORT_SYMBOL(xt_free_table_info);
691
692/* Find table by name, grabs mutex & ref. Returns ERR_PTR() on error. */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200693struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af,
694 const char *name)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800695{
696 struct xt_table *t;
697
Pablo Neira Ayuso7926dbf2014-07-31 20:38:46 +0200698 mutex_lock(&xt[af].mutex);
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800699 list_for_each_entry(t, &net->xt.tables[af], list)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800700 if (strcmp(t->name, name) == 0 && try_module_get(t->me))
701 return t;
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800702 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800703 return NULL;
704}
705EXPORT_SYMBOL_GPL(xt_find_table_lock);
706
707void xt_table_unlock(struct xt_table *table)
708{
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800709 mutex_unlock(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800710}
711EXPORT_SYMBOL_GPL(xt_table_unlock);
712
Dmitry Mishin27229712006-04-01 02:25:19 -0800713#ifdef CONFIG_COMPAT
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200714void xt_compat_lock(u_int8_t af)
Dmitry Mishin27229712006-04-01 02:25:19 -0800715{
716 mutex_lock(&xt[af].compat_mutex);
717}
718EXPORT_SYMBOL_GPL(xt_compat_lock);
719
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200720void xt_compat_unlock(u_int8_t af)
Dmitry Mishin27229712006-04-01 02:25:19 -0800721{
722 mutex_unlock(&xt[af].compat_mutex);
723}
724EXPORT_SYMBOL_GPL(xt_compat_unlock);
725#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -0800726
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200727DEFINE_PER_CPU(seqcount_t, xt_recseq);
728EXPORT_PER_CPU_SYMBOL_GPL(xt_recseq);
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700729
Florian Westphaldcebd312015-07-14 17:51:09 +0200730struct static_key xt_tee_enabled __read_mostly;
731EXPORT_SYMBOL_GPL(xt_tee_enabled);
732
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200733static int xt_jumpstack_alloc(struct xt_table_info *i)
734{
735 unsigned int size;
736 int cpu;
737
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200738 size = sizeof(void **) * nr_cpu_ids;
739 if (size > PAGE_SIZE)
Joe Perches3dbd4432011-05-28 10:36:35 -0700740 i->jumpstack = vzalloc(size);
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200741 else
Joe Perches3dbd4432011-05-28 10:36:35 -0700742 i->jumpstack = kzalloc(size, GFP_KERNEL);
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200743 if (i->jumpstack == NULL)
744 return -ENOMEM;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200745
Florian Westphal98d1bd82015-07-14 17:51:06 +0200746 /* ruleset without jumps -- no stack needed */
747 if (i->stacksize == 0)
748 return 0;
749
Florian Westphal7814b6e2015-07-14 17:51:08 +0200750 /* Jumpstack needs to be able to record two full callchains, one
751 * from the first rule set traversal, plus one table reentrancy
752 * via -j TEE without clobbering the callchain that brought us to
753 * TEE target.
754 *
755 * This is done by allocating two jumpstacks per cpu, on reentry
756 * the upper half of the stack is used.
757 *
758 * see the jumpstack setup in ipt_do_table() for more details.
759 */
760 size = sizeof(void *) * i->stacksize * 2u;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200761 for_each_possible_cpu(cpu) {
762 if (size > PAGE_SIZE)
763 i->jumpstack[cpu] = vmalloc_node(size,
764 cpu_to_node(cpu));
765 else
766 i->jumpstack[cpu] = kmalloc_node(size,
767 GFP_KERNEL, cpu_to_node(cpu));
768 if (i->jumpstack[cpu] == NULL)
769 /*
770 * Freeing will be done later on by the callers. The
771 * chain is: xt_replace_table -> __do_replace ->
772 * do_replace -> xt_free_table_info.
773 */
774 return -ENOMEM;
775 }
776
777 return 0;
778}
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700779
Harald Welte2e4e6a12006-01-12 13:30:04 -0800780struct xt_table_info *
781xt_replace_table(struct xt_table *table,
782 unsigned int num_counters,
783 struct xt_table_info *newinfo,
784 int *error)
785{
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700786 struct xt_table_info *private;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200787 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800788
Jan Engelhardtd97a9e42010-04-21 14:45:51 +0200789 ret = xt_jumpstack_alloc(newinfo);
790 if (ret < 0) {
791 *error = ret;
792 return NULL;
793 }
794
Harald Welte2e4e6a12006-01-12 13:30:04 -0800795 /* Do the substitution. */
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700796 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -0800797 private = table->private;
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700798
Harald Welte2e4e6a12006-01-12 13:30:04 -0800799 /* Check inside lock: is the old number correct? */
800 if (num_counters != private->number) {
Jan Engelhardtbe91fd52010-03-18 02:22:32 +0100801 pr_debug("num_counters != table->private->number (%u/%u)\n",
Harald Welte2e4e6a12006-01-12 13:30:04 -0800802 num_counters, private->number);
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700803 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -0800804 *error = -EAGAIN;
805 return NULL;
806 }
Harald Welte2e4e6a12006-01-12 13:30:04 -0800807
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700808 newinfo->initial_entries = private->initial_entries;
Will Deaconb416c142013-10-21 13:14:53 +0100809 /*
810 * Ensure contents of newinfo are visible before assigning to
811 * private.
812 */
813 smp_wmb();
814 table->private = newinfo;
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700815
816 /*
817 * Even though table entries have now been swapped, other CPU's
818 * may still be using the old entries. This is okay, because
819 * resynchronization happens because of the locking done
820 * during the get_counters() routine.
821 */
822 local_bh_enable();
823
Thomas Graffbabf312011-01-16 18:12:59 +0100824#ifdef CONFIG_AUDIT
825 if (audit_enabled) {
826 struct audit_buffer *ab;
827
828 ab = audit_log_start(current->audit_context, GFP_KERNEL,
829 AUDIT_NETFILTER_CFG);
830 if (ab) {
831 audit_log_format(ab, "table=%s family=%u entries=%u",
832 table->name, table->af,
833 private->number);
834 audit_log_end(ab);
835 }
836 }
837#endif
838
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700839 return private;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800840}
841EXPORT_SYMBOL_GPL(xt_replace_table);
842
Jan Engelhardt35aad0f2009-08-24 14:56:30 +0200843struct xt_table *xt_register_table(struct net *net,
844 const struct xt_table *input_table,
Alexey Dobriyana98da112008-01-31 04:01:49 -0800845 struct xt_table_info *bootstrap,
846 struct xt_table_info *newinfo)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800847{
848 int ret;
849 struct xt_table_info *private;
Jan Engelhardt35aad0f2009-08-24 14:56:30 +0200850 struct xt_table *t, *table;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800851
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800852 /* Don't add one object to multiple lists. */
Jan Engelhardt35aad0f2009-08-24 14:56:30 +0200853 table = kmemdup(input_table, sizeof(struct xt_table), GFP_KERNEL);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800854 if (!table) {
855 ret = -ENOMEM;
856 goto out;
857 }
858
Pablo Neira Ayuso7926dbf2014-07-31 20:38:46 +0200859 mutex_lock(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800860 /* Don't autoload: we'd eat our tail... */
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800861 list_for_each_entry(t, &net->xt.tables[table->af], list) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700862 if (strcmp(t->name, table->name) == 0) {
863 ret = -EEXIST;
864 goto unlock;
865 }
Harald Welte2e4e6a12006-01-12 13:30:04 -0800866 }
867
868 /* Simplifies replace_table code. */
869 table->private = bootstrap;
Stephen Hemminger78454472009-02-20 10:35:32 +0100870
Harald Welte2e4e6a12006-01-12 13:30:04 -0800871 if (!xt_replace_table(table, 0, newinfo, &ret))
872 goto unlock;
873
874 private = table->private;
Jan Engelhardtbe91fd52010-03-18 02:22:32 +0100875 pr_debug("table->private->number = %u\n", private->number);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800876
877 /* save number of initial entries */
878 private->initial_entries = private->number;
879
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800880 list_add(&table->list, &net->xt.tables[table->af]);
Alexey Dobriyana98da112008-01-31 04:01:49 -0800881 mutex_unlock(&xt[table->af].mutex);
882 return table;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800883
Pablo Neira Ayuso7926dbf2014-07-31 20:38:46 +0200884unlock:
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800885 mutex_unlock(&xt[table->af].mutex);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800886 kfree(table);
Alexey Dobriyana98da112008-01-31 04:01:49 -0800887out:
888 return ERR_PTR(ret);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800889}
890EXPORT_SYMBOL_GPL(xt_register_table);
891
892void *xt_unregister_table(struct xt_table *table)
893{
894 struct xt_table_info *private;
895
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800896 mutex_lock(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800897 private = table->private;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700898 list_del(&table->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800899 mutex_unlock(&xt[table->af].mutex);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800900 kfree(table);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800901
902 return private;
903}
904EXPORT_SYMBOL_GPL(xt_unregister_table);
905
906#ifdef CONFIG_PROC_FS
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800907struct xt_names_priv {
908 struct seq_net_private p;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200909 u_int8_t af;
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800910};
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800911static void *xt_table_seq_start(struct seq_file *seq, loff_t *pos)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800912{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800913 struct xt_names_priv *priv = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900914 struct net *net = seq_file_net(seq);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200915 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800916
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800917 mutex_lock(&xt[af].mutex);
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800918 return seq_list_start(&net->xt.tables[af], *pos);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800919}
920
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800921static void *xt_table_seq_next(struct seq_file *seq, void *v, loff_t *pos)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800922{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800923 struct xt_names_priv *priv = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900924 struct net *net = seq_file_net(seq);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200925 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800926
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800927 return seq_list_next(v, &net->xt.tables[af], pos);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800928}
929
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800930static void xt_table_seq_stop(struct seq_file *seq, void *v)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800931{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800932 struct xt_names_priv *priv = seq->private;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200933 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800934
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800935 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800936}
937
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800938static int xt_table_seq_show(struct seq_file *seq, void *v)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800939{
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800940 struct xt_table *table = list_entry(v, struct xt_table, list);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800941
Joe Perches861fb102015-05-12 18:28:23 -0700942 if (*table->name)
Steven Rostedt (Red Hat)e71456a2014-10-27 17:43:45 -0400943 seq_printf(seq, "%s\n", table->name);
Joe Perches861fb102015-05-12 18:28:23 -0700944 return 0;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800945}
946
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800947static const struct seq_operations xt_table_seq_ops = {
948 .start = xt_table_seq_start,
949 .next = xt_table_seq_next,
950 .stop = xt_table_seq_stop,
951 .show = xt_table_seq_show,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800952};
953
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800954static int xt_table_open(struct inode *inode, struct file *file)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800955{
956 int ret;
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800957 struct xt_names_priv *priv;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800958
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800959 ret = seq_open_net(inode, file, &xt_table_seq_ops,
960 sizeof(struct xt_names_priv));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800961 if (!ret) {
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800962 priv = ((struct seq_file *)file->private_data)->private;
Al Virod9dda782013-03-31 18:16:14 -0400963 priv->af = (unsigned long)PDE_DATA(inode);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800964 }
Harald Welte2e4e6a12006-01-12 13:30:04 -0800965 return ret;
966}
967
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800968static const struct file_operations xt_table_ops = {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800969 .owner = THIS_MODULE,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800970 .open = xt_table_open,
971 .read = seq_read,
972 .llseek = seq_lseek,
Pavel Emelyanov0e93bb92008-04-29 03:15:35 -0700973 .release = seq_release_net,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800974};
975
Jan Engelhardteb132202009-02-18 16:42:19 +0100976/*
977 * Traverse state for ip{,6}_{tables,matches} for helping crossing
978 * the multi-AF mutexes.
979 */
980struct nf_mttg_trav {
981 struct list_head *head, *curr;
982 uint8_t class, nfproto;
983};
984
985enum {
986 MTTG_TRAV_INIT,
987 MTTG_TRAV_NFP_UNSPEC,
988 MTTG_TRAV_NFP_SPEC,
989 MTTG_TRAV_DONE,
990};
991
992static void *xt_mttg_seq_next(struct seq_file *seq, void *v, loff_t *ppos,
993 bool is_target)
994{
995 static const uint8_t next_class[] = {
996 [MTTG_TRAV_NFP_UNSPEC] = MTTG_TRAV_NFP_SPEC,
997 [MTTG_TRAV_NFP_SPEC] = MTTG_TRAV_DONE,
998 };
999 struct nf_mttg_trav *trav = seq->private;
1000
1001 switch (trav->class) {
1002 case MTTG_TRAV_INIT:
1003 trav->class = MTTG_TRAV_NFP_UNSPEC;
1004 mutex_lock(&xt[NFPROTO_UNSPEC].mutex);
1005 trav->head = trav->curr = is_target ?
1006 &xt[NFPROTO_UNSPEC].target : &xt[NFPROTO_UNSPEC].match;
1007 break;
1008 case MTTG_TRAV_NFP_UNSPEC:
1009 trav->curr = trav->curr->next;
1010 if (trav->curr != trav->head)
1011 break;
1012 mutex_unlock(&xt[NFPROTO_UNSPEC].mutex);
1013 mutex_lock(&xt[trav->nfproto].mutex);
1014 trav->head = trav->curr = is_target ?
1015 &xt[trav->nfproto].target : &xt[trav->nfproto].match;
1016 trav->class = next_class[trav->class];
1017 break;
1018 case MTTG_TRAV_NFP_SPEC:
1019 trav->curr = trav->curr->next;
1020 if (trav->curr != trav->head)
1021 break;
1022 /* fallthru, _stop will unlock */
1023 default:
1024 return NULL;
1025 }
1026
1027 if (ppos != NULL)
1028 ++*ppos;
1029 return trav;
1030}
1031
1032static void *xt_mttg_seq_start(struct seq_file *seq, loff_t *pos,
1033 bool is_target)
1034{
1035 struct nf_mttg_trav *trav = seq->private;
1036 unsigned int j;
1037
1038 trav->class = MTTG_TRAV_INIT;
1039 for (j = 0; j < *pos; ++j)
1040 if (xt_mttg_seq_next(seq, NULL, NULL, is_target) == NULL)
1041 return NULL;
1042 return trav;
1043}
1044
1045static void xt_mttg_seq_stop(struct seq_file *seq, void *v)
1046{
1047 struct nf_mttg_trav *trav = seq->private;
1048
1049 switch (trav->class) {
1050 case MTTG_TRAV_NFP_UNSPEC:
1051 mutex_unlock(&xt[NFPROTO_UNSPEC].mutex);
1052 break;
1053 case MTTG_TRAV_NFP_SPEC:
1054 mutex_unlock(&xt[trav->nfproto].mutex);
1055 break;
1056 }
1057}
1058
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001059static void *xt_match_seq_start(struct seq_file *seq, loff_t *pos)
1060{
Jan Engelhardteb132202009-02-18 16:42:19 +01001061 return xt_mttg_seq_start(seq, pos, false);
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001062}
1063
Jan Engelhardteb132202009-02-18 16:42:19 +01001064static void *xt_match_seq_next(struct seq_file *seq, void *v, loff_t *ppos)
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001065{
Jan Engelhardteb132202009-02-18 16:42:19 +01001066 return xt_mttg_seq_next(seq, v, ppos, false);
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001067}
1068
1069static int xt_match_seq_show(struct seq_file *seq, void *v)
1070{
Jan Engelhardteb132202009-02-18 16:42:19 +01001071 const struct nf_mttg_trav *trav = seq->private;
1072 const struct xt_match *match;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001073
Jan Engelhardteb132202009-02-18 16:42:19 +01001074 switch (trav->class) {
1075 case MTTG_TRAV_NFP_UNSPEC:
1076 case MTTG_TRAV_NFP_SPEC:
1077 if (trav->curr == trav->head)
1078 return 0;
1079 match = list_entry(trav->curr, struct xt_match, list);
Joe Perches861fb102015-05-12 18:28:23 -07001080 if (*match->name)
1081 seq_printf(seq, "%s\n", match->name);
Jan Engelhardteb132202009-02-18 16:42:19 +01001082 }
1083 return 0;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001084}
1085
1086static const struct seq_operations xt_match_seq_ops = {
1087 .start = xt_match_seq_start,
1088 .next = xt_match_seq_next,
Jan Engelhardteb132202009-02-18 16:42:19 +01001089 .stop = xt_mttg_seq_stop,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001090 .show = xt_match_seq_show,
1091};
1092
1093static int xt_match_open(struct inode *inode, struct file *file)
1094{
Jan Engelhardteb132202009-02-18 16:42:19 +01001095 struct nf_mttg_trav *trav;
Rob Jones772476d2014-09-19 11:27:51 +01001096 trav = __seq_open_private(file, &xt_match_seq_ops, sizeof(*trav));
1097 if (!trav)
Jan Engelhardteb132202009-02-18 16:42:19 +01001098 return -ENOMEM;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001099
Al Virod9dda782013-03-31 18:16:14 -04001100 trav->nfproto = (unsigned long)PDE_DATA(inode);
Jan Engelhardteb132202009-02-18 16:42:19 +01001101 return 0;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001102}
1103
1104static const struct file_operations xt_match_ops = {
1105 .owner = THIS_MODULE,
1106 .open = xt_match_open,
1107 .read = seq_read,
1108 .llseek = seq_lseek,
Jan Engelhardteb132202009-02-18 16:42:19 +01001109 .release = seq_release_private,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001110};
1111
1112static void *xt_target_seq_start(struct seq_file *seq, loff_t *pos)
1113{
Jan Engelhardteb132202009-02-18 16:42:19 +01001114 return xt_mttg_seq_start(seq, pos, true);
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001115}
1116
Jan Engelhardteb132202009-02-18 16:42:19 +01001117static void *xt_target_seq_next(struct seq_file *seq, void *v, loff_t *ppos)
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001118{
Jan Engelhardteb132202009-02-18 16:42:19 +01001119 return xt_mttg_seq_next(seq, v, ppos, true);
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001120}
1121
1122static int xt_target_seq_show(struct seq_file *seq, void *v)
1123{
Jan Engelhardteb132202009-02-18 16:42:19 +01001124 const struct nf_mttg_trav *trav = seq->private;
1125 const struct xt_target *target;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001126
Jan Engelhardteb132202009-02-18 16:42:19 +01001127 switch (trav->class) {
1128 case MTTG_TRAV_NFP_UNSPEC:
1129 case MTTG_TRAV_NFP_SPEC:
1130 if (trav->curr == trav->head)
1131 return 0;
1132 target = list_entry(trav->curr, struct xt_target, list);
Joe Perches861fb102015-05-12 18:28:23 -07001133 if (*target->name)
1134 seq_printf(seq, "%s\n", target->name);
Jan Engelhardteb132202009-02-18 16:42:19 +01001135 }
1136 return 0;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001137}
1138
1139static const struct seq_operations xt_target_seq_ops = {
1140 .start = xt_target_seq_start,
1141 .next = xt_target_seq_next,
Jan Engelhardteb132202009-02-18 16:42:19 +01001142 .stop = xt_mttg_seq_stop,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001143 .show = xt_target_seq_show,
1144};
1145
1146static int xt_target_open(struct inode *inode, struct file *file)
1147{
Jan Engelhardteb132202009-02-18 16:42:19 +01001148 struct nf_mttg_trav *trav;
Rob Jones772476d2014-09-19 11:27:51 +01001149 trav = __seq_open_private(file, &xt_target_seq_ops, sizeof(*trav));
1150 if (!trav)
Jan Engelhardteb132202009-02-18 16:42:19 +01001151 return -ENOMEM;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001152
Al Virod9dda782013-03-31 18:16:14 -04001153 trav->nfproto = (unsigned long)PDE_DATA(inode);
Jan Engelhardteb132202009-02-18 16:42:19 +01001154 return 0;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001155}
1156
1157static const struct file_operations xt_target_ops = {
1158 .owner = THIS_MODULE,
1159 .open = xt_target_open,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001160 .read = seq_read,
1161 .llseek = seq_lseek,
Jan Engelhardteb132202009-02-18 16:42:19 +01001162 .release = seq_release_private,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001163};
1164
1165#define FORMAT_TABLES "_tables_names"
1166#define FORMAT_MATCHES "_tables_matches"
1167#define FORMAT_TARGETS "_tables_targets"
1168
1169#endif /* CONFIG_PROC_FS */
1170
Jan Engelhardt2b95efe2009-06-17 13:57:48 +02001171/**
1172 * xt_hook_link - set up hooks for a new table
1173 * @table: table with metadata needed to set up hooks
1174 * @fn: Hook function
1175 *
1176 * This function will take care of creating and registering the necessary
1177 * Netfilter hooks for XT tables.
1178 */
1179struct nf_hook_ops *xt_hook_link(const struct xt_table *table, nf_hookfn *fn)
1180{
1181 unsigned int hook_mask = table->valid_hooks;
1182 uint8_t i, num_hooks = hweight32(hook_mask);
1183 uint8_t hooknum;
1184 struct nf_hook_ops *ops;
1185 int ret;
1186
1187 ops = kmalloc(sizeof(*ops) * num_hooks, GFP_KERNEL);
1188 if (ops == NULL)
1189 return ERR_PTR(-ENOMEM);
1190
1191 for (i = 0, hooknum = 0; i < num_hooks && hook_mask != 0;
1192 hook_mask >>= 1, ++hooknum) {
1193 if (!(hook_mask & 1))
1194 continue;
1195 ops[i].hook = fn;
1196 ops[i].owner = table->me;
1197 ops[i].pf = table->af;
1198 ops[i].hooknum = hooknum;
1199 ops[i].priority = table->priority;
1200 ++i;
1201 }
1202
1203 ret = nf_register_hooks(ops, num_hooks);
1204 if (ret < 0) {
1205 kfree(ops);
1206 return ERR_PTR(ret);
1207 }
1208
1209 return ops;
1210}
1211EXPORT_SYMBOL_GPL(xt_hook_link);
1212
1213/**
1214 * xt_hook_unlink - remove hooks for a table
1215 * @ops: nf_hook_ops array as returned by nf_hook_link
1216 * @hook_mask: the very same mask that was passed to nf_hook_link
1217 */
1218void xt_hook_unlink(const struct xt_table *table, struct nf_hook_ops *ops)
1219{
1220 nf_unregister_hooks(ops, hweight32(table->valid_hooks));
1221 kfree(ops);
1222}
1223EXPORT_SYMBOL_GPL(xt_hook_unlink);
1224
Jan Engelhardt76108ce2008-10-08 11:35:00 +02001225int xt_proto_init(struct net *net, u_int8_t af)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001226{
1227#ifdef CONFIG_PROC_FS
1228 char buf[XT_FUNCTION_MAXNAMELEN];
1229 struct proc_dir_entry *proc;
1230#endif
1231
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001232 if (af >= ARRAY_SIZE(xt_prefix))
Harald Welte2e4e6a12006-01-12 13:30:04 -08001233 return -EINVAL;
1234
1235
1236#ifdef CONFIG_PROC_FS
Tobias Klauserce18afe2007-03-14 16:36:16 -07001237 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001238 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -07001239 proc = proc_create_data(buf, 0440, net->proc_net, &xt_table_ops,
1240 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001241 if (!proc)
1242 goto out;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001243
Tobias Klauserce18afe2007-03-14 16:36:16 -07001244 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001245 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -07001246 proc = proc_create_data(buf, 0440, net->proc_net, &xt_match_ops,
1247 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001248 if (!proc)
1249 goto out_remove_tables;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001250
Tobias Klauserce18afe2007-03-14 16:36:16 -07001251 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001252 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -07001253 proc = proc_create_data(buf, 0440, net->proc_net, &xt_target_ops,
1254 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001255 if (!proc)
1256 goto out_remove_matches;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001257#endif
1258
1259 return 0;
1260
1261#ifdef CONFIG_PROC_FS
1262out_remove_matches:
Tobias Klauserce18afe2007-03-14 16:36:16 -07001263 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001264 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Gao fengece31ff2013-02-18 01:34:56 +00001265 remove_proc_entry(buf, net->proc_net);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001266
1267out_remove_tables:
Tobias Klauserce18afe2007-03-14 16:36:16 -07001268 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001269 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Gao fengece31ff2013-02-18 01:34:56 +00001270 remove_proc_entry(buf, net->proc_net);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001271out:
1272 return -1;
1273#endif
1274}
1275EXPORT_SYMBOL_GPL(xt_proto_init);
1276
Jan Engelhardt76108ce2008-10-08 11:35:00 +02001277void xt_proto_fini(struct net *net, u_int8_t af)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001278{
1279#ifdef CONFIG_PROC_FS
1280 char buf[XT_FUNCTION_MAXNAMELEN];
1281
Tobias Klauserce18afe2007-03-14 16:36:16 -07001282 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001283 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Gao fengece31ff2013-02-18 01:34:56 +00001284 remove_proc_entry(buf, net->proc_net);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001285
Tobias Klauserce18afe2007-03-14 16:36:16 -07001286 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001287 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
Gao fengece31ff2013-02-18 01:34:56 +00001288 remove_proc_entry(buf, net->proc_net);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001289
Tobias Klauserce18afe2007-03-14 16:36:16 -07001290 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001291 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Gao fengece31ff2013-02-18 01:34:56 +00001292 remove_proc_entry(buf, net->proc_net);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001293#endif /*CONFIG_PROC_FS*/
1294}
1295EXPORT_SYMBOL_GPL(xt_proto_fini);
1296
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001297static int __net_init xt_net_init(struct net *net)
1298{
1299 int i;
1300
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001301 for (i = 0; i < NFPROTO_NUMPROTO; i++)
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001302 INIT_LIST_HEAD(&net->xt.tables[i]);
1303 return 0;
1304}
1305
1306static struct pernet_operations xt_net_ops = {
1307 .init = xt_net_init,
1308};
Harald Welte2e4e6a12006-01-12 13:30:04 -08001309
1310static int __init xt_init(void)
1311{
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001312 unsigned int i;
1313 int rv;
1314
1315 for_each_possible_cpu(i) {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001316 seqcount_init(&per_cpu(xt_recseq, i));
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001317 }
Harald Welte2e4e6a12006-01-12 13:30:04 -08001318
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001319 xt = kmalloc(sizeof(struct xt_af) * NFPROTO_NUMPROTO, GFP_KERNEL);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001320 if (!xt)
1321 return -ENOMEM;
1322
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001323 for (i = 0; i < NFPROTO_NUMPROTO; i++) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -08001324 mutex_init(&xt[i].mutex);
Dmitry Mishin27229712006-04-01 02:25:19 -08001325#ifdef CONFIG_COMPAT
1326 mutex_init(&xt[i].compat_mutex);
Eric Dumazet255d0dc2010-12-18 18:35:15 +01001327 xt[i].compat_tab = NULL;
Dmitry Mishin27229712006-04-01 02:25:19 -08001328#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -08001329 INIT_LIST_HEAD(&xt[i].target);
1330 INIT_LIST_HEAD(&xt[i].match);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001331 }
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001332 rv = register_pernet_subsys(&xt_net_ops);
1333 if (rv < 0)
1334 kfree(xt);
1335 return rv;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001336}
1337
1338static void __exit xt_fini(void)
1339{
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001340 unregister_pernet_subsys(&xt_net_ops);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001341 kfree(xt);
1342}
1343
1344module_init(xt_init);
1345module_exit(xt_fini);
1346