blob: 227aa11e8409bb18be93c0c432a4d71cfb6e8f38 [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
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +020070/* Allow this many total (re)entries. */
71static const unsigned int xt_jumpstack_multiplier = 2;
72
Harald Welte2e4e6a12006-01-12 13:30:04 -080073/* Registration hooks for targets. */
74int
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080075xt_register_target(struct xt_target *target)
Harald Welte2e4e6a12006-01-12 13:30:04 -080076{
Jan Engelhardt76108ce2008-10-08 11:35:00 +020077 u_int8_t af = target->family;
78 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -080079
Ingo Molnar9e19bb62006-03-25 01:41:10 -080080 ret = mutex_lock_interruptible(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -080081 if (ret != 0)
82 return ret;
83 list_add(&target->list, &xt[af].target);
Ingo Molnar9e19bb62006-03-25 01:41:10 -080084 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -080085 return ret;
86}
87EXPORT_SYMBOL(xt_register_target);
88
89void
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080090xt_unregister_target(struct xt_target *target)
Harald Welte2e4e6a12006-01-12 13:30:04 -080091{
Jan Engelhardt76108ce2008-10-08 11:35:00 +020092 u_int8_t af = target->family;
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080093
Ingo Molnar9e19bb62006-03-25 01:41:10 -080094 mutex_lock(&xt[af].mutex);
Patrick McHardydf0933d2006-09-20 11:57:53 -070095 list_del(&target->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -080096 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -080097}
98EXPORT_SYMBOL(xt_unregister_target);
99
100int
Patrick McHardy52d9c422006-08-22 00:33:45 -0700101xt_register_targets(struct xt_target *target, unsigned int n)
102{
103 unsigned int i;
104 int err = 0;
105
106 for (i = 0; i < n; i++) {
107 err = xt_register_target(&target[i]);
108 if (err)
109 goto err;
110 }
111 return err;
112
113err:
114 if (i > 0)
115 xt_unregister_targets(target, i);
116 return err;
117}
118EXPORT_SYMBOL(xt_register_targets);
119
120void
121xt_unregister_targets(struct xt_target *target, unsigned int n)
122{
Changli Gaof68c5302010-10-04 22:24:12 +0200123 while (n-- > 0)
124 xt_unregister_target(&target[n]);
Patrick McHardy52d9c422006-08-22 00:33:45 -0700125}
126EXPORT_SYMBOL(xt_unregister_targets);
127
128int
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800129xt_register_match(struct xt_match *match)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800130{
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200131 u_int8_t af = match->family;
132 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800133
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800134 ret = mutex_lock_interruptible(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800135 if (ret != 0)
136 return ret;
137
138 list_add(&match->list, &xt[af].match);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800139 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800140
141 return ret;
142}
143EXPORT_SYMBOL(xt_register_match);
144
145void
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800146xt_unregister_match(struct xt_match *match)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800147{
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200148 u_int8_t af = match->family;
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800149
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800150 mutex_lock(&xt[af].mutex);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700151 list_del(&match->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800152 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800153}
154EXPORT_SYMBOL(xt_unregister_match);
155
Patrick McHardy52d9c422006-08-22 00:33:45 -0700156int
157xt_register_matches(struct xt_match *match, unsigned int n)
158{
159 unsigned int i;
160 int err = 0;
161
162 for (i = 0; i < n; i++) {
163 err = xt_register_match(&match[i]);
164 if (err)
165 goto err;
166 }
167 return err;
168
169err:
170 if (i > 0)
171 xt_unregister_matches(match, i);
172 return err;
173}
174EXPORT_SYMBOL(xt_register_matches);
175
176void
177xt_unregister_matches(struct xt_match *match, unsigned int n)
178{
Changli Gaof68c5302010-10-04 22:24:12 +0200179 while (n-- > 0)
180 xt_unregister_match(&match[n]);
Patrick McHardy52d9c422006-08-22 00:33:45 -0700181}
182EXPORT_SYMBOL(xt_unregister_matches);
183
Harald Welte2e4e6a12006-01-12 13:30:04 -0800184
185/*
186 * These are weird, but module loading must not be done with mutex
187 * held (since they will register), and we have to have a single
Stephen Hemmingeradb00ae2011-03-09 14:14:26 +0100188 * function to use.
Harald Welte2e4e6a12006-01-12 13:30:04 -0800189 */
190
191/* Find match, grabs ref. Returns ERR_PTR() on error. */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200192struct xt_match *xt_find_match(u8 af, const char *name, u8 revision)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800193{
194 struct xt_match *m;
Patrick McHardy42046e22011-03-14 19:11:44 +0100195 int err = -ENOENT;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800196
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800197 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800198 return ERR_PTR(-EINTR);
199
200 list_for_each_entry(m, &xt[af].match, list) {
201 if (strcmp(m->name, name) == 0) {
202 if (m->revision == revision) {
203 if (try_module_get(m->me)) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800204 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800205 return m;
206 }
207 } else
208 err = -EPROTOTYPE; /* Found something. */
209 }
210 }
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800211 mutex_unlock(&xt[af].mutex);
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200212
213 if (af != NFPROTO_UNSPEC)
214 /* Try searching again in the family-independent list */
215 return xt_find_match(NFPROTO_UNSPEC, name, revision);
216
Harald Welte2e4e6a12006-01-12 13:30:04 -0800217 return ERR_PTR(err);
218}
219EXPORT_SYMBOL(xt_find_match);
220
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200221struct xt_match *
222xt_request_find_match(uint8_t nfproto, const char *name, uint8_t revision)
223{
224 struct xt_match *match;
225
Stephen Hemmingeradb00ae2011-03-09 14:14:26 +0100226 match = xt_find_match(nfproto, name, revision);
227 if (IS_ERR(match)) {
228 request_module("%st_%s", xt_prefix[nfproto], name);
229 match = xt_find_match(nfproto, name, revision);
230 }
231
232 return match;
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200233}
234EXPORT_SYMBOL_GPL(xt_request_find_match);
235
Harald Welte2e4e6a12006-01-12 13:30:04 -0800236/* Find target, grabs ref. Returns ERR_PTR() on error. */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200237struct xt_target *xt_find_target(u8 af, const char *name, u8 revision)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800238{
239 struct xt_target *t;
Patrick McHardy42046e22011-03-14 19:11:44 +0100240 int err = -ENOENT;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800241
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800242 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800243 return ERR_PTR(-EINTR);
244
245 list_for_each_entry(t, &xt[af].target, list) {
246 if (strcmp(t->name, name) == 0) {
247 if (t->revision == revision) {
248 if (try_module_get(t->me)) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800249 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800250 return t;
251 }
252 } else
253 err = -EPROTOTYPE; /* Found something. */
254 }
255 }
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800256 mutex_unlock(&xt[af].mutex);
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200257
258 if (af != NFPROTO_UNSPEC)
259 /* Try searching again in the family-independent list */
260 return xt_find_target(NFPROTO_UNSPEC, name, revision);
261
Harald Welte2e4e6a12006-01-12 13:30:04 -0800262 return ERR_PTR(err);
263}
264EXPORT_SYMBOL(xt_find_target);
265
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200266struct xt_target *xt_request_find_target(u8 af, const char *name, u8 revision)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800267{
268 struct xt_target *target;
269
Stephen Hemmingeradb00ae2011-03-09 14:14:26 +0100270 target = xt_find_target(af, name, revision);
271 if (IS_ERR(target)) {
272 request_module("%st_%s", xt_prefix[af], name);
273 target = xt_find_target(af, name, revision);
274 }
275
276 return target;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800277}
278EXPORT_SYMBOL_GPL(xt_request_find_target);
279
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200280static int match_revfn(u8 af, const char *name, u8 revision, int *bestp)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800281{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200282 const struct xt_match *m;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800283 int have_rev = 0;
284
285 list_for_each_entry(m, &xt[af].match, list) {
286 if (strcmp(m->name, name) == 0) {
287 if (m->revision > *bestp)
288 *bestp = m->revision;
289 if (m->revision == revision)
290 have_rev = 1;
291 }
292 }
Patrick McHardy656caff2009-01-12 00:06:04 +0000293
294 if (af != NFPROTO_UNSPEC && !have_rev)
295 return match_revfn(NFPROTO_UNSPEC, name, revision, bestp);
296
Harald Welte2e4e6a12006-01-12 13:30:04 -0800297 return have_rev;
298}
299
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200300static int target_revfn(u8 af, const char *name, u8 revision, int *bestp)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800301{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200302 const struct xt_target *t;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800303 int have_rev = 0;
304
305 list_for_each_entry(t, &xt[af].target, list) {
306 if (strcmp(t->name, name) == 0) {
307 if (t->revision > *bestp)
308 *bestp = t->revision;
309 if (t->revision == revision)
310 have_rev = 1;
311 }
312 }
Patrick McHardy656caff2009-01-12 00:06:04 +0000313
314 if (af != NFPROTO_UNSPEC && !have_rev)
315 return target_revfn(NFPROTO_UNSPEC, name, revision, bestp);
316
Harald Welte2e4e6a12006-01-12 13:30:04 -0800317 return have_rev;
318}
319
320/* Returns true or false (if no such extension at all) */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200321int xt_find_revision(u8 af, const char *name, u8 revision, int target,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800322 int *err)
323{
324 int have_rev, best = -1;
325
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800326 if (mutex_lock_interruptible(&xt[af].mutex) != 0) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800327 *err = -EINTR;
328 return 1;
329 }
330 if (target == 1)
331 have_rev = target_revfn(af, name, revision, &best);
332 else
333 have_rev = match_revfn(af, name, revision, &best);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800334 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800335
336 /* Nothing at all? Return 0 to try loading module. */
337 if (best == -1) {
338 *err = -ENOENT;
339 return 0;
340 }
341
342 *err = best;
343 if (!have_rev)
344 *err = -EPROTONOSUPPORT;
345 return 1;
346}
347EXPORT_SYMBOL_GPL(xt_find_revision);
348
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000349static char *
350textify_hooks(char *buf, size_t size, unsigned int mask, uint8_t nfproto)
Jan Engelhardt45185362009-04-05 10:43:09 +0200351{
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000352 static const char *const inetbr_names[] = {
Jan Engelhardt45185362009-04-05 10:43:09 +0200353 "PREROUTING", "INPUT", "FORWARD",
354 "OUTPUT", "POSTROUTING", "BROUTING",
355 };
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000356 static const char *const arp_names[] = {
357 "INPUT", "FORWARD", "OUTPUT",
358 };
359 const char *const *names;
360 unsigned int i, max;
Jan Engelhardt45185362009-04-05 10:43:09 +0200361 char *p = buf;
362 bool np = false;
363 int res;
364
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000365 names = (nfproto == NFPROTO_ARP) ? arp_names : inetbr_names;
366 max = (nfproto == NFPROTO_ARP) ? ARRAY_SIZE(arp_names) :
367 ARRAY_SIZE(inetbr_names);
Jan Engelhardt45185362009-04-05 10:43:09 +0200368 *p = '\0';
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000369 for (i = 0; i < max; ++i) {
Jan Engelhardt45185362009-04-05 10:43:09 +0200370 if (!(mask & (1 << i)))
371 continue;
372 res = snprintf(p, size, "%s%s", np ? "/" : "", names[i]);
373 if (res > 0) {
374 size -= res;
375 p += res;
376 }
377 np = true;
378 }
379
380 return buf;
381}
382
Jan Engelhardt916a9172008-10-08 11:35:20 +0200383int xt_check_match(struct xt_mtchk_param *par,
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200384 unsigned int size, u_int8_t proto, bool inv_proto)
Patrick McHardy37f9f732006-03-20 17:59:06 -0800385{
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100386 int ret;
387
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200388 if (XT_ALIGN(par->match->matchsize) != size &&
389 par->match->matchsize != -1) {
Jan Engelhardt043ef462008-10-08 11:35:15 +0200390 /*
391 * ebt_among is exempt from centralized matchsize checking
392 * because it uses a dynamic-size data set.
393 */
Jan Engelhardtb4024052009-06-25 18:32:12 +0200394 pr_err("%s_tables: %s.%u match: invalid size "
395 "%u (kernel) != (user) %u\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200396 xt_prefix[par->family], par->match->name,
Jan Engelhardtb4024052009-06-25 18:32:12 +0200397 par->match->revision,
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200398 XT_ALIGN(par->match->matchsize), size);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800399 return -EINVAL;
400 }
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200401 if (par->match->table != NULL &&
402 strcmp(par->match->table, par->table) != 0) {
Joe Perches3dd5d7e2009-06-13 12:32:39 +0200403 pr_err("%s_tables: %s match: only valid in %s table, not %s\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200404 xt_prefix[par->family], par->match->name,
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200405 par->match->table, par->table);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800406 return -EINVAL;
407 }
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200408 if (par->match->hooks && (par->hook_mask & ~par->match->hooks) != 0) {
Jan Engelhardt45185362009-04-05 10:43:09 +0200409 char used[64], allow[64];
410
Joe Perches3dd5d7e2009-06-13 12:32:39 +0200411 pr_err("%s_tables: %s match: used from hooks %s, but only "
Jan Engelhardt45185362009-04-05 10:43:09 +0200412 "valid from %s\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200413 xt_prefix[par->family], par->match->name,
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000414 textify_hooks(used, sizeof(used), par->hook_mask,
415 par->family),
416 textify_hooks(allow, sizeof(allow), par->match->hooks,
417 par->family));
Patrick McHardy37f9f732006-03-20 17:59:06 -0800418 return -EINVAL;
419 }
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200420 if (par->match->proto && (par->match->proto != proto || inv_proto)) {
Joe Perches3dd5d7e2009-06-13 12:32:39 +0200421 pr_err("%s_tables: %s match: only valid for protocol %u\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200422 xt_prefix[par->family], par->match->name,
423 par->match->proto);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800424 return -EINVAL;
425 }
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100426 if (par->match->checkentry != NULL) {
427 ret = par->match->checkentry(par);
428 if (ret < 0)
429 return ret;
430 else if (ret > 0)
431 /* Flag up potential errors. */
432 return -EIO;
433 }
Patrick McHardy37f9f732006-03-20 17:59:06 -0800434 return 0;
435}
436EXPORT_SYMBOL_GPL(xt_check_match);
437
Dmitry Mishin27229712006-04-01 02:25:19 -0800438#ifdef CONFIG_COMPAT
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100439int xt_compat_add_offset(u_int8_t af, unsigned int offset, int delta)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800440{
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100441 struct xt_af *xp = &xt[af];
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800442
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100443 if (!xp->compat_tab) {
444 if (!xp->number)
445 return -EINVAL;
446 xp->compat_tab = vmalloc(sizeof(struct compat_delta) * xp->number);
447 if (!xp->compat_tab)
448 return -ENOMEM;
449 xp->cur = 0;
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800450 }
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100451
452 if (xp->cur >= xp->number)
453 return -EINVAL;
454
455 if (xp->cur)
456 delta += xp->compat_tab[xp->cur - 1].delta;
457 xp->compat_tab[xp->cur].offset = offset;
458 xp->compat_tab[xp->cur].delta = delta;
459 xp->cur++;
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800460 return 0;
461}
462EXPORT_SYMBOL_GPL(xt_compat_add_offset);
463
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200464void xt_compat_flush_offsets(u_int8_t af)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800465{
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100466 if (xt[af].compat_tab) {
467 vfree(xt[af].compat_tab);
468 xt[af].compat_tab = NULL;
469 xt[af].number = 0;
Eric Dumazet5a6351e2011-04-21 10:57:21 +0200470 xt[af].cur = 0;
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800471 }
472}
473EXPORT_SYMBOL_GPL(xt_compat_flush_offsets);
474
Florian Westphal3e5e5242010-02-15 18:17:10 +0100475int xt_compat_calc_jump(u_int8_t af, unsigned int offset)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800476{
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100477 struct compat_delta *tmp = xt[af].compat_tab;
478 int mid, left = 0, right = xt[af].cur - 1;
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800479
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100480 while (left <= right) {
481 mid = (left + right) >> 1;
482 if (offset > tmp[mid].offset)
483 left = mid + 1;
484 else if (offset < tmp[mid].offset)
485 right = mid - 1;
486 else
487 return mid ? tmp[mid - 1].delta : 0;
488 }
Eric Dumazet5a6351e2011-04-21 10:57:21 +0200489 return left ? tmp[left - 1].delta : 0;
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800490}
491EXPORT_SYMBOL_GPL(xt_compat_calc_jump);
492
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100493void xt_compat_init_offsets(u_int8_t af, unsigned int number)
494{
495 xt[af].number = number;
496 xt[af].cur = 0;
497}
498EXPORT_SYMBOL(xt_compat_init_offsets);
499
Jan Engelhardt5452e422008-04-14 11:15:35 +0200500int xt_compat_match_offset(const struct xt_match *match)
Dmitry Mishin27229712006-04-01 02:25:19 -0800501{
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700502 u_int16_t csize = match->compatsize ? : match->matchsize;
503 return XT_ALIGN(match->matchsize) - COMPAT_XT_ALIGN(csize);
Dmitry Mishin27229712006-04-01 02:25:19 -0800504}
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700505EXPORT_SYMBOL_GPL(xt_compat_match_offset);
506
Patrick McHardy89566952007-12-17 21:46:40 -0800507int xt_compat_match_from_user(struct xt_entry_match *m, void **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800508 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700509{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200510 const struct xt_match *match = m->u.kernel.match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700511 struct compat_xt_entry_match *cm = (struct compat_xt_entry_match *)m;
512 int pad, off = xt_compat_match_offset(match);
513 u_int16_t msize = cm->u.user.match_size;
514
515 m = *dstptr;
516 memcpy(m, cm, sizeof(*cm));
517 if (match->compat_from_user)
518 match->compat_from_user(m->data, cm->data);
519 else
520 memcpy(m->data, cm->data, msize - sizeof(*cm));
521 pad = XT_ALIGN(match->matchsize) - match->matchsize;
522 if (pad > 0)
523 memset(m->data + match->matchsize, 0, pad);
524
525 msize += off;
526 m->u.user.match_size = msize;
527
528 *size += off;
529 *dstptr += msize;
Patrick McHardy89566952007-12-17 21:46:40 -0800530 return 0;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700531}
532EXPORT_SYMBOL_GPL(xt_compat_match_from_user);
533
Jan Engelhardt739674f2009-06-26 08:23:19 +0200534int xt_compat_match_to_user(const struct xt_entry_match *m,
535 void __user **dstptr, unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700536{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200537 const struct xt_match *match = m->u.kernel.match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700538 struct compat_xt_entry_match __user *cm = *dstptr;
539 int off = xt_compat_match_offset(match);
540 u_int16_t msize = m->u.user.match_size - off;
541
542 if (copy_to_user(cm, m, sizeof(*cm)) ||
Patrick McHardya18aa312007-12-12 10:35:16 -0800543 put_user(msize, &cm->u.user.match_size) ||
544 copy_to_user(cm->u.user.name, m->u.kernel.match->name,
545 strlen(m->u.kernel.match->name) + 1))
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800546 return -EFAULT;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700547
548 if (match->compat_to_user) {
549 if (match->compat_to_user((void __user *)cm->data, m->data))
550 return -EFAULT;
551 } else {
552 if (copy_to_user(cm->data, m->data, msize - sizeof(*cm)))
553 return -EFAULT;
554 }
555
556 *size -= off;
557 *dstptr += msize;
558 return 0;
559}
560EXPORT_SYMBOL_GPL(xt_compat_match_to_user);
561#endif /* CONFIG_COMPAT */
Dmitry Mishin27229712006-04-01 02:25:19 -0800562
Jan Engelhardt916a9172008-10-08 11:35:20 +0200563int xt_check_target(struct xt_tgchk_param *par,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200564 unsigned int size, u_int8_t proto, bool inv_proto)
Patrick McHardy37f9f732006-03-20 17:59:06 -0800565{
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100566 int ret;
567
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200568 if (XT_ALIGN(par->target->targetsize) != size) {
Jan Engelhardtb4024052009-06-25 18:32:12 +0200569 pr_err("%s_tables: %s.%u target: invalid size "
570 "%u (kernel) != (user) %u\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200571 xt_prefix[par->family], par->target->name,
Jan Engelhardtb4024052009-06-25 18:32:12 +0200572 par->target->revision,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200573 XT_ALIGN(par->target->targetsize), size);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800574 return -EINVAL;
575 }
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200576 if (par->target->table != NULL &&
577 strcmp(par->target->table, par->table) != 0) {
Joe Perches3dd5d7e2009-06-13 12:32:39 +0200578 pr_err("%s_tables: %s target: only valid in %s table, not %s\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200579 xt_prefix[par->family], par->target->name,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200580 par->target->table, par->table);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800581 return -EINVAL;
582 }
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200583 if (par->target->hooks && (par->hook_mask & ~par->target->hooks) != 0) {
Jan Engelhardt45185362009-04-05 10:43:09 +0200584 char used[64], allow[64];
585
Joe Perches3dd5d7e2009-06-13 12:32:39 +0200586 pr_err("%s_tables: %s target: used from hooks %s, but only "
Jan Engelhardt45185362009-04-05 10:43:09 +0200587 "usable from %s\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200588 xt_prefix[par->family], par->target->name,
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000589 textify_hooks(used, sizeof(used), par->hook_mask,
590 par->family),
591 textify_hooks(allow, sizeof(allow), par->target->hooks,
592 par->family));
Patrick McHardy37f9f732006-03-20 17:59:06 -0800593 return -EINVAL;
594 }
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200595 if (par->target->proto && (par->target->proto != proto || inv_proto)) {
Joe Perches3dd5d7e2009-06-13 12:32:39 +0200596 pr_err("%s_tables: %s target: only valid for protocol %u\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200597 xt_prefix[par->family], par->target->name,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200598 par->target->proto);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800599 return -EINVAL;
600 }
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100601 if (par->target->checkentry != NULL) {
602 ret = par->target->checkentry(par);
603 if (ret < 0)
604 return ret;
605 else if (ret > 0)
606 /* Flag up potential errors. */
607 return -EIO;
608 }
Patrick McHardy37f9f732006-03-20 17:59:06 -0800609 return 0;
610}
611EXPORT_SYMBOL_GPL(xt_check_target);
612
Dmitry Mishin27229712006-04-01 02:25:19 -0800613#ifdef CONFIG_COMPAT
Jan Engelhardt5452e422008-04-14 11:15:35 +0200614int xt_compat_target_offset(const struct xt_target *target)
Dmitry Mishin27229712006-04-01 02:25:19 -0800615{
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700616 u_int16_t csize = target->compatsize ? : target->targetsize;
617 return XT_ALIGN(target->targetsize) - COMPAT_XT_ALIGN(csize);
Dmitry Mishin27229712006-04-01 02:25:19 -0800618}
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700619EXPORT_SYMBOL_GPL(xt_compat_target_offset);
620
621void xt_compat_target_from_user(struct xt_entry_target *t, void **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800622 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700623{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200624 const struct xt_target *target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700625 struct compat_xt_entry_target *ct = (struct compat_xt_entry_target *)t;
626 int pad, off = xt_compat_target_offset(target);
627 u_int16_t tsize = ct->u.user.target_size;
628
629 t = *dstptr;
630 memcpy(t, ct, sizeof(*ct));
631 if (target->compat_from_user)
632 target->compat_from_user(t->data, ct->data);
633 else
634 memcpy(t->data, ct->data, tsize - sizeof(*ct));
635 pad = XT_ALIGN(target->targetsize) - target->targetsize;
636 if (pad > 0)
637 memset(t->data + target->targetsize, 0, pad);
638
639 tsize += off;
640 t->u.user.target_size = tsize;
641
642 *size += off;
643 *dstptr += tsize;
644}
645EXPORT_SYMBOL_GPL(xt_compat_target_from_user);
646
Jan Engelhardt739674f2009-06-26 08:23:19 +0200647int xt_compat_target_to_user(const struct xt_entry_target *t,
648 void __user **dstptr, unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700649{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200650 const struct xt_target *target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700651 struct compat_xt_entry_target __user *ct = *dstptr;
652 int off = xt_compat_target_offset(target);
653 u_int16_t tsize = t->u.user.target_size - off;
654
655 if (copy_to_user(ct, t, sizeof(*ct)) ||
Patrick McHardya18aa312007-12-12 10:35:16 -0800656 put_user(tsize, &ct->u.user.target_size) ||
657 copy_to_user(ct->u.user.name, t->u.kernel.target->name,
658 strlen(t->u.kernel.target->name) + 1))
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800659 return -EFAULT;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700660
661 if (target->compat_to_user) {
662 if (target->compat_to_user((void __user *)ct->data, t->data))
663 return -EFAULT;
664 } else {
665 if (copy_to_user(ct->data, t->data, tsize - sizeof(*ct)))
666 return -EFAULT;
667 }
668
669 *size -= off;
670 *dstptr += tsize;
671 return 0;
672}
673EXPORT_SYMBOL_GPL(xt_compat_target_to_user);
Dmitry Mishin27229712006-04-01 02:25:19 -0800674#endif
675
Harald Welte2e4e6a12006-01-12 13:30:04 -0800676struct xt_table_info *xt_alloc_table_info(unsigned int size)
677{
678 struct xt_table_info *newinfo;
679 int cpu;
680
681 /* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */
Jan Beulich44813742009-09-21 17:03:05 -0700682 if ((SMP_ALIGN(size) >> PAGE_SHIFT) + 2 > totalram_pages)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800683 return NULL;
684
Eric Dumazet259d4e42007-12-04 23:24:56 -0800685 newinfo = kzalloc(XT_TABLE_INFO_SZ, GFP_KERNEL);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800686 if (!newinfo)
687 return NULL;
688
689 newinfo->size = size;
690
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700691 for_each_possible_cpu(cpu) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800692 if (size <= PAGE_SIZE)
693 newinfo->entries[cpu] = kmalloc_node(size,
694 GFP_KERNEL,
695 cpu_to_node(cpu));
696 else
697 newinfo->entries[cpu] = vmalloc_node(size,
698 cpu_to_node(cpu));
699
700 if (newinfo->entries[cpu] == NULL) {
701 xt_free_table_info(newinfo);
702 return NULL;
703 }
704 }
705
706 return newinfo;
707}
708EXPORT_SYMBOL(xt_alloc_table_info);
709
710void xt_free_table_info(struct xt_table_info *info)
711{
712 int cpu;
713
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700714 for_each_possible_cpu(cpu) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800715 if (info->size <= PAGE_SIZE)
716 kfree(info->entries[cpu]);
717 else
718 vfree(info->entries[cpu]);
719 }
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200720
721 if (info->jumpstack != NULL) {
722 if (sizeof(void *) * info->stacksize > PAGE_SIZE) {
723 for_each_possible_cpu(cpu)
724 vfree(info->jumpstack[cpu]);
725 } else {
726 for_each_possible_cpu(cpu)
727 kfree(info->jumpstack[cpu]);
728 }
729 }
730
731 if (sizeof(void **) * nr_cpu_ids > PAGE_SIZE)
732 vfree(info->jumpstack);
733 else
734 kfree(info->jumpstack);
Eric Dumazet7489aec2010-05-31 16:41:35 +0200735
736 free_percpu(info->stackptr);
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200737
Harald Welte2e4e6a12006-01-12 13:30:04 -0800738 kfree(info);
739}
740EXPORT_SYMBOL(xt_free_table_info);
741
742/* Find table by name, grabs mutex & ref. Returns ERR_PTR() on error. */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200743struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af,
744 const char *name)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800745{
746 struct xt_table *t;
747
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800748 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800749 return ERR_PTR(-EINTR);
750
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800751 list_for_each_entry(t, &net->xt.tables[af], list)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800752 if (strcmp(t->name, name) == 0 && try_module_get(t->me))
753 return t;
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800754 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800755 return NULL;
756}
757EXPORT_SYMBOL_GPL(xt_find_table_lock);
758
759void xt_table_unlock(struct xt_table *table)
760{
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800761 mutex_unlock(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800762}
763EXPORT_SYMBOL_GPL(xt_table_unlock);
764
Dmitry Mishin27229712006-04-01 02:25:19 -0800765#ifdef CONFIG_COMPAT
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200766void xt_compat_lock(u_int8_t af)
Dmitry Mishin27229712006-04-01 02:25:19 -0800767{
768 mutex_lock(&xt[af].compat_mutex);
769}
770EXPORT_SYMBOL_GPL(xt_compat_lock);
771
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200772void xt_compat_unlock(u_int8_t af)
Dmitry Mishin27229712006-04-01 02:25:19 -0800773{
774 mutex_unlock(&xt[af].compat_mutex);
775}
776EXPORT_SYMBOL_GPL(xt_compat_unlock);
777#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -0800778
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200779DEFINE_PER_CPU(seqcount_t, xt_recseq);
780EXPORT_PER_CPU_SYMBOL_GPL(xt_recseq);
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700781
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200782static int xt_jumpstack_alloc(struct xt_table_info *i)
783{
784 unsigned int size;
785 int cpu;
786
Eric Dumazet7489aec2010-05-31 16:41:35 +0200787 i->stackptr = alloc_percpu(unsigned int);
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200788 if (i->stackptr == NULL)
789 return -ENOMEM;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200790
791 size = sizeof(void **) * nr_cpu_ids;
792 if (size > PAGE_SIZE)
Joe Perches3dbd4432011-05-28 10:36:35 -0700793 i->jumpstack = vzalloc(size);
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200794 else
Joe Perches3dbd4432011-05-28 10:36:35 -0700795 i->jumpstack = kzalloc(size, GFP_KERNEL);
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200796 if (i->jumpstack == NULL)
797 return -ENOMEM;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200798
799 i->stacksize *= xt_jumpstack_multiplier;
800 size = sizeof(void *) * i->stacksize;
801 for_each_possible_cpu(cpu) {
802 if (size > PAGE_SIZE)
803 i->jumpstack[cpu] = vmalloc_node(size,
804 cpu_to_node(cpu));
805 else
806 i->jumpstack[cpu] = kmalloc_node(size,
807 GFP_KERNEL, cpu_to_node(cpu));
808 if (i->jumpstack[cpu] == NULL)
809 /*
810 * Freeing will be done later on by the callers. The
811 * chain is: xt_replace_table -> __do_replace ->
812 * do_replace -> xt_free_table_info.
813 */
814 return -ENOMEM;
815 }
816
817 return 0;
818}
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700819
Harald Welte2e4e6a12006-01-12 13:30:04 -0800820struct xt_table_info *
821xt_replace_table(struct xt_table *table,
822 unsigned int num_counters,
823 struct xt_table_info *newinfo,
824 int *error)
825{
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700826 struct xt_table_info *private;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200827 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800828
Jan Engelhardtd97a9e42010-04-21 14:45:51 +0200829 ret = xt_jumpstack_alloc(newinfo);
830 if (ret < 0) {
831 *error = ret;
832 return NULL;
833 }
834
Harald Welte2e4e6a12006-01-12 13:30:04 -0800835 /* Do the substitution. */
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700836 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -0800837 private = table->private;
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700838
Harald Welte2e4e6a12006-01-12 13:30:04 -0800839 /* Check inside lock: is the old number correct? */
840 if (num_counters != private->number) {
Jan Engelhardtbe91fd52010-03-18 02:22:32 +0100841 pr_debug("num_counters != table->private->number (%u/%u)\n",
Harald Welte2e4e6a12006-01-12 13:30:04 -0800842 num_counters, private->number);
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700843 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -0800844 *error = -EAGAIN;
845 return NULL;
846 }
Harald Welte2e4e6a12006-01-12 13:30:04 -0800847
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700848 newinfo->initial_entries = private->initial_entries;
Will Deaconb416c142013-10-21 13:14:53 +0100849 /*
850 * Ensure contents of newinfo are visible before assigning to
851 * private.
852 */
853 smp_wmb();
854 table->private = newinfo;
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700855
856 /*
857 * Even though table entries have now been swapped, other CPU's
858 * may still be using the old entries. This is okay, because
859 * resynchronization happens because of the locking done
860 * during the get_counters() routine.
861 */
862 local_bh_enable();
863
Thomas Graffbabf312011-01-16 18:12:59 +0100864#ifdef CONFIG_AUDIT
865 if (audit_enabled) {
866 struct audit_buffer *ab;
867
868 ab = audit_log_start(current->audit_context, GFP_KERNEL,
869 AUDIT_NETFILTER_CFG);
870 if (ab) {
871 audit_log_format(ab, "table=%s family=%u entries=%u",
872 table->name, table->af,
873 private->number);
874 audit_log_end(ab);
875 }
876 }
877#endif
878
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700879 return private;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800880}
881EXPORT_SYMBOL_GPL(xt_replace_table);
882
Jan Engelhardt35aad0f2009-08-24 14:56:30 +0200883struct xt_table *xt_register_table(struct net *net,
884 const struct xt_table *input_table,
Alexey Dobriyana98da112008-01-31 04:01:49 -0800885 struct xt_table_info *bootstrap,
886 struct xt_table_info *newinfo)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800887{
888 int ret;
889 struct xt_table_info *private;
Jan Engelhardt35aad0f2009-08-24 14:56:30 +0200890 struct xt_table *t, *table;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800891
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800892 /* Don't add one object to multiple lists. */
Jan Engelhardt35aad0f2009-08-24 14:56:30 +0200893 table = kmemdup(input_table, sizeof(struct xt_table), GFP_KERNEL);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800894 if (!table) {
895 ret = -ENOMEM;
896 goto out;
897 }
898
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800899 ret = mutex_lock_interruptible(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800900 if (ret != 0)
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800901 goto out_free;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800902
903 /* Don't autoload: we'd eat our tail... */
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800904 list_for_each_entry(t, &net->xt.tables[table->af], list) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700905 if (strcmp(t->name, table->name) == 0) {
906 ret = -EEXIST;
907 goto unlock;
908 }
Harald Welte2e4e6a12006-01-12 13:30:04 -0800909 }
910
911 /* Simplifies replace_table code. */
912 table->private = bootstrap;
Stephen Hemminger78454472009-02-20 10:35:32 +0100913
Harald Welte2e4e6a12006-01-12 13:30:04 -0800914 if (!xt_replace_table(table, 0, newinfo, &ret))
915 goto unlock;
916
917 private = table->private;
Jan Engelhardtbe91fd52010-03-18 02:22:32 +0100918 pr_debug("table->private->number = %u\n", private->number);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800919
920 /* save number of initial entries */
921 private->initial_entries = private->number;
922
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800923 list_add(&table->list, &net->xt.tables[table->af]);
Alexey Dobriyana98da112008-01-31 04:01:49 -0800924 mutex_unlock(&xt[table->af].mutex);
925 return table;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800926
Harald Welte2e4e6a12006-01-12 13:30:04 -0800927 unlock:
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800928 mutex_unlock(&xt[table->af].mutex);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800929out_free:
930 kfree(table);
Alexey Dobriyana98da112008-01-31 04:01:49 -0800931out:
932 return ERR_PTR(ret);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800933}
934EXPORT_SYMBOL_GPL(xt_register_table);
935
936void *xt_unregister_table(struct xt_table *table)
937{
938 struct xt_table_info *private;
939
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800940 mutex_lock(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800941 private = table->private;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700942 list_del(&table->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800943 mutex_unlock(&xt[table->af].mutex);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800944 kfree(table);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800945
946 return private;
947}
948EXPORT_SYMBOL_GPL(xt_unregister_table);
949
950#ifdef CONFIG_PROC_FS
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800951struct xt_names_priv {
952 struct seq_net_private p;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200953 u_int8_t af;
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800954};
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800955static void *xt_table_seq_start(struct seq_file *seq, loff_t *pos)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800956{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800957 struct xt_names_priv *priv = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900958 struct net *net = seq_file_net(seq);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200959 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800960
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800961 mutex_lock(&xt[af].mutex);
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800962 return seq_list_start(&net->xt.tables[af], *pos);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800963}
964
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800965static void *xt_table_seq_next(struct seq_file *seq, void *v, loff_t *pos)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800966{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800967 struct xt_names_priv *priv = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900968 struct net *net = seq_file_net(seq);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200969 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800970
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800971 return seq_list_next(v, &net->xt.tables[af], pos);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800972}
973
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800974static void xt_table_seq_stop(struct seq_file *seq, void *v)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800975{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800976 struct xt_names_priv *priv = seq->private;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200977 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800978
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800979 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800980}
981
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800982static int xt_table_seq_show(struct seq_file *seq, void *v)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800983{
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800984 struct xt_table *table = list_entry(v, struct xt_table, list);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800985
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800986 if (strlen(table->name))
987 return seq_printf(seq, "%s\n", table->name);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800988 else
989 return 0;
990}
991
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800992static const struct seq_operations xt_table_seq_ops = {
993 .start = xt_table_seq_start,
994 .next = xt_table_seq_next,
995 .stop = xt_table_seq_stop,
996 .show = xt_table_seq_show,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800997};
998
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800999static int xt_table_open(struct inode *inode, struct file *file)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001000{
1001 int ret;
Alexey Dobriyan715cf352008-01-31 04:49:16 -08001002 struct xt_names_priv *priv;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001003
Alexey Dobriyan715cf352008-01-31 04:49:16 -08001004 ret = seq_open_net(inode, file, &xt_table_seq_ops,
1005 sizeof(struct xt_names_priv));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001006 if (!ret) {
Alexey Dobriyan715cf352008-01-31 04:49:16 -08001007 priv = ((struct seq_file *)file->private_data)->private;
Al Virod9dda782013-03-31 18:16:14 -04001008 priv->af = (unsigned long)PDE_DATA(inode);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001009 }
Harald Welte2e4e6a12006-01-12 13:30:04 -08001010 return ret;
1011}
1012
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001013static const struct file_operations xt_table_ops = {
Harald Welte2e4e6a12006-01-12 13:30:04 -08001014 .owner = THIS_MODULE,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001015 .open = xt_table_open,
1016 .read = seq_read,
1017 .llseek = seq_lseek,
Pavel Emelyanov0e93bb92008-04-29 03:15:35 -07001018 .release = seq_release_net,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001019};
1020
Jan Engelhardteb132202009-02-18 16:42:19 +01001021/*
1022 * Traverse state for ip{,6}_{tables,matches} for helping crossing
1023 * the multi-AF mutexes.
1024 */
1025struct nf_mttg_trav {
1026 struct list_head *head, *curr;
1027 uint8_t class, nfproto;
1028};
1029
1030enum {
1031 MTTG_TRAV_INIT,
1032 MTTG_TRAV_NFP_UNSPEC,
1033 MTTG_TRAV_NFP_SPEC,
1034 MTTG_TRAV_DONE,
1035};
1036
1037static void *xt_mttg_seq_next(struct seq_file *seq, void *v, loff_t *ppos,
1038 bool is_target)
1039{
1040 static const uint8_t next_class[] = {
1041 [MTTG_TRAV_NFP_UNSPEC] = MTTG_TRAV_NFP_SPEC,
1042 [MTTG_TRAV_NFP_SPEC] = MTTG_TRAV_DONE,
1043 };
1044 struct nf_mttg_trav *trav = seq->private;
1045
1046 switch (trav->class) {
1047 case MTTG_TRAV_INIT:
1048 trav->class = MTTG_TRAV_NFP_UNSPEC;
1049 mutex_lock(&xt[NFPROTO_UNSPEC].mutex);
1050 trav->head = trav->curr = is_target ?
1051 &xt[NFPROTO_UNSPEC].target : &xt[NFPROTO_UNSPEC].match;
1052 break;
1053 case MTTG_TRAV_NFP_UNSPEC:
1054 trav->curr = trav->curr->next;
1055 if (trav->curr != trav->head)
1056 break;
1057 mutex_unlock(&xt[NFPROTO_UNSPEC].mutex);
1058 mutex_lock(&xt[trav->nfproto].mutex);
1059 trav->head = trav->curr = is_target ?
1060 &xt[trav->nfproto].target : &xt[trav->nfproto].match;
1061 trav->class = next_class[trav->class];
1062 break;
1063 case MTTG_TRAV_NFP_SPEC:
1064 trav->curr = trav->curr->next;
1065 if (trav->curr != trav->head)
1066 break;
1067 /* fallthru, _stop will unlock */
1068 default:
1069 return NULL;
1070 }
1071
1072 if (ppos != NULL)
1073 ++*ppos;
1074 return trav;
1075}
1076
1077static void *xt_mttg_seq_start(struct seq_file *seq, loff_t *pos,
1078 bool is_target)
1079{
1080 struct nf_mttg_trav *trav = seq->private;
1081 unsigned int j;
1082
1083 trav->class = MTTG_TRAV_INIT;
1084 for (j = 0; j < *pos; ++j)
1085 if (xt_mttg_seq_next(seq, NULL, NULL, is_target) == NULL)
1086 return NULL;
1087 return trav;
1088}
1089
1090static void xt_mttg_seq_stop(struct seq_file *seq, void *v)
1091{
1092 struct nf_mttg_trav *trav = seq->private;
1093
1094 switch (trav->class) {
1095 case MTTG_TRAV_NFP_UNSPEC:
1096 mutex_unlock(&xt[NFPROTO_UNSPEC].mutex);
1097 break;
1098 case MTTG_TRAV_NFP_SPEC:
1099 mutex_unlock(&xt[trav->nfproto].mutex);
1100 break;
1101 }
1102}
1103
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001104static void *xt_match_seq_start(struct seq_file *seq, loff_t *pos)
1105{
Jan Engelhardteb132202009-02-18 16:42:19 +01001106 return xt_mttg_seq_start(seq, pos, false);
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001107}
1108
Jan Engelhardteb132202009-02-18 16:42:19 +01001109static void *xt_match_seq_next(struct seq_file *seq, void *v, loff_t *ppos)
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001110{
Jan Engelhardteb132202009-02-18 16:42:19 +01001111 return xt_mttg_seq_next(seq, v, ppos, false);
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001112}
1113
1114static int xt_match_seq_show(struct seq_file *seq, void *v)
1115{
Jan Engelhardteb132202009-02-18 16:42:19 +01001116 const struct nf_mttg_trav *trav = seq->private;
1117 const struct xt_match *match;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001118
Jan Engelhardteb132202009-02-18 16:42:19 +01001119 switch (trav->class) {
1120 case MTTG_TRAV_NFP_UNSPEC:
1121 case MTTG_TRAV_NFP_SPEC:
1122 if (trav->curr == trav->head)
1123 return 0;
1124 match = list_entry(trav->curr, struct xt_match, list);
1125 return (*match->name == '\0') ? 0 :
1126 seq_printf(seq, "%s\n", match->name);
1127 }
1128 return 0;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001129}
1130
1131static const struct seq_operations xt_match_seq_ops = {
1132 .start = xt_match_seq_start,
1133 .next = xt_match_seq_next,
Jan Engelhardteb132202009-02-18 16:42:19 +01001134 .stop = xt_mttg_seq_stop,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001135 .show = xt_match_seq_show,
1136};
1137
1138static int xt_match_open(struct inode *inode, struct file *file)
1139{
Jan Engelhardteb132202009-02-18 16:42:19 +01001140 struct seq_file *seq;
1141 struct nf_mttg_trav *trav;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001142 int ret;
1143
Jan Engelhardteb132202009-02-18 16:42:19 +01001144 trav = kmalloc(sizeof(*trav), GFP_KERNEL);
1145 if (trav == NULL)
1146 return -ENOMEM;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001147
Jan Engelhardteb132202009-02-18 16:42:19 +01001148 ret = seq_open(file, &xt_match_seq_ops);
1149 if (ret < 0) {
1150 kfree(trav);
1151 return ret;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001152 }
Jan Engelhardteb132202009-02-18 16:42:19 +01001153
1154 seq = file->private_data;
1155 seq->private = trav;
Al Virod9dda782013-03-31 18:16:14 -04001156 trav->nfproto = (unsigned long)PDE_DATA(inode);
Jan Engelhardteb132202009-02-18 16:42:19 +01001157 return 0;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001158}
1159
1160static const struct file_operations xt_match_ops = {
1161 .owner = THIS_MODULE,
1162 .open = xt_match_open,
1163 .read = seq_read,
1164 .llseek = seq_lseek,
Jan Engelhardteb132202009-02-18 16:42:19 +01001165 .release = seq_release_private,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001166};
1167
1168static void *xt_target_seq_start(struct seq_file *seq, loff_t *pos)
1169{
Jan Engelhardteb132202009-02-18 16:42:19 +01001170 return xt_mttg_seq_start(seq, pos, true);
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001171}
1172
Jan Engelhardteb132202009-02-18 16:42:19 +01001173static void *xt_target_seq_next(struct seq_file *seq, void *v, loff_t *ppos)
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001174{
Jan Engelhardteb132202009-02-18 16:42:19 +01001175 return xt_mttg_seq_next(seq, v, ppos, true);
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001176}
1177
1178static int xt_target_seq_show(struct seq_file *seq, void *v)
1179{
Jan Engelhardteb132202009-02-18 16:42:19 +01001180 const struct nf_mttg_trav *trav = seq->private;
1181 const struct xt_target *target;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001182
Jan Engelhardteb132202009-02-18 16:42:19 +01001183 switch (trav->class) {
1184 case MTTG_TRAV_NFP_UNSPEC:
1185 case MTTG_TRAV_NFP_SPEC:
1186 if (trav->curr == trav->head)
1187 return 0;
1188 target = list_entry(trav->curr, struct xt_target, list);
1189 return (*target->name == '\0') ? 0 :
1190 seq_printf(seq, "%s\n", target->name);
1191 }
1192 return 0;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001193}
1194
1195static const struct seq_operations xt_target_seq_ops = {
1196 .start = xt_target_seq_start,
1197 .next = xt_target_seq_next,
Jan Engelhardteb132202009-02-18 16:42:19 +01001198 .stop = xt_mttg_seq_stop,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001199 .show = xt_target_seq_show,
1200};
1201
1202static int xt_target_open(struct inode *inode, struct file *file)
1203{
Jan Engelhardteb132202009-02-18 16:42:19 +01001204 struct seq_file *seq;
1205 struct nf_mttg_trav *trav;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001206 int ret;
1207
Jan Engelhardteb132202009-02-18 16:42:19 +01001208 trav = kmalloc(sizeof(*trav), GFP_KERNEL);
1209 if (trav == NULL)
1210 return -ENOMEM;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001211
Jan Engelhardteb132202009-02-18 16:42:19 +01001212 ret = seq_open(file, &xt_target_seq_ops);
1213 if (ret < 0) {
1214 kfree(trav);
1215 return ret;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001216 }
Jan Engelhardteb132202009-02-18 16:42:19 +01001217
1218 seq = file->private_data;
1219 seq->private = trav;
Al Virod9dda782013-03-31 18:16:14 -04001220 trav->nfproto = (unsigned long)PDE_DATA(inode);
Jan Engelhardteb132202009-02-18 16:42:19 +01001221 return 0;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001222}
1223
1224static const struct file_operations xt_target_ops = {
1225 .owner = THIS_MODULE,
1226 .open = xt_target_open,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001227 .read = seq_read,
1228 .llseek = seq_lseek,
Jan Engelhardteb132202009-02-18 16:42:19 +01001229 .release = seq_release_private,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001230};
1231
1232#define FORMAT_TABLES "_tables_names"
1233#define FORMAT_MATCHES "_tables_matches"
1234#define FORMAT_TARGETS "_tables_targets"
1235
1236#endif /* CONFIG_PROC_FS */
1237
Jan Engelhardt2b95efe2009-06-17 13:57:48 +02001238/**
1239 * xt_hook_link - set up hooks for a new table
1240 * @table: table with metadata needed to set up hooks
1241 * @fn: Hook function
1242 *
1243 * This function will take care of creating and registering the necessary
1244 * Netfilter hooks for XT tables.
1245 */
1246struct nf_hook_ops *xt_hook_link(const struct xt_table *table, nf_hookfn *fn)
1247{
1248 unsigned int hook_mask = table->valid_hooks;
1249 uint8_t i, num_hooks = hweight32(hook_mask);
1250 uint8_t hooknum;
1251 struct nf_hook_ops *ops;
1252 int ret;
1253
1254 ops = kmalloc(sizeof(*ops) * num_hooks, GFP_KERNEL);
1255 if (ops == NULL)
1256 return ERR_PTR(-ENOMEM);
1257
1258 for (i = 0, hooknum = 0; i < num_hooks && hook_mask != 0;
1259 hook_mask >>= 1, ++hooknum) {
1260 if (!(hook_mask & 1))
1261 continue;
1262 ops[i].hook = fn;
1263 ops[i].owner = table->me;
1264 ops[i].pf = table->af;
1265 ops[i].hooknum = hooknum;
1266 ops[i].priority = table->priority;
1267 ++i;
1268 }
1269
1270 ret = nf_register_hooks(ops, num_hooks);
1271 if (ret < 0) {
1272 kfree(ops);
1273 return ERR_PTR(ret);
1274 }
1275
1276 return ops;
1277}
1278EXPORT_SYMBOL_GPL(xt_hook_link);
1279
1280/**
1281 * xt_hook_unlink - remove hooks for a table
1282 * @ops: nf_hook_ops array as returned by nf_hook_link
1283 * @hook_mask: the very same mask that was passed to nf_hook_link
1284 */
1285void xt_hook_unlink(const struct xt_table *table, struct nf_hook_ops *ops)
1286{
1287 nf_unregister_hooks(ops, hweight32(table->valid_hooks));
1288 kfree(ops);
1289}
1290EXPORT_SYMBOL_GPL(xt_hook_unlink);
1291
Jan Engelhardt76108ce2008-10-08 11:35:00 +02001292int xt_proto_init(struct net *net, u_int8_t af)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001293{
1294#ifdef CONFIG_PROC_FS
1295 char buf[XT_FUNCTION_MAXNAMELEN];
1296 struct proc_dir_entry *proc;
1297#endif
1298
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001299 if (af >= ARRAY_SIZE(xt_prefix))
Harald Welte2e4e6a12006-01-12 13:30:04 -08001300 return -EINVAL;
1301
1302
1303#ifdef CONFIG_PROC_FS
Tobias Klauserce18afe2007-03-14 16:36:16 -07001304 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001305 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -07001306 proc = proc_create_data(buf, 0440, net->proc_net, &xt_table_ops,
1307 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001308 if (!proc)
1309 goto out;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001310
Tobias Klauserce18afe2007-03-14 16:36:16 -07001311 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001312 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -07001313 proc = proc_create_data(buf, 0440, net->proc_net, &xt_match_ops,
1314 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001315 if (!proc)
1316 goto out_remove_tables;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001317
Tobias Klauserce18afe2007-03-14 16:36:16 -07001318 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001319 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -07001320 proc = proc_create_data(buf, 0440, net->proc_net, &xt_target_ops,
1321 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001322 if (!proc)
1323 goto out_remove_matches;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001324#endif
1325
1326 return 0;
1327
1328#ifdef CONFIG_PROC_FS
1329out_remove_matches:
Tobias Klauserce18afe2007-03-14 16:36:16 -07001330 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001331 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Gao fengece31ff2013-02-18 01:34:56 +00001332 remove_proc_entry(buf, net->proc_net);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001333
1334out_remove_tables:
Tobias Klauserce18afe2007-03-14 16:36:16 -07001335 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001336 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Gao fengece31ff2013-02-18 01:34:56 +00001337 remove_proc_entry(buf, net->proc_net);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001338out:
1339 return -1;
1340#endif
1341}
1342EXPORT_SYMBOL_GPL(xt_proto_init);
1343
Jan Engelhardt76108ce2008-10-08 11:35:00 +02001344void xt_proto_fini(struct net *net, u_int8_t af)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001345{
1346#ifdef CONFIG_PROC_FS
1347 char buf[XT_FUNCTION_MAXNAMELEN];
1348
Tobias Klauserce18afe2007-03-14 16:36:16 -07001349 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001350 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Gao fengece31ff2013-02-18 01:34:56 +00001351 remove_proc_entry(buf, net->proc_net);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001352
Tobias Klauserce18afe2007-03-14 16:36:16 -07001353 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001354 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
Gao fengece31ff2013-02-18 01:34:56 +00001355 remove_proc_entry(buf, net->proc_net);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001356
Tobias Klauserce18afe2007-03-14 16:36:16 -07001357 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001358 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Gao fengece31ff2013-02-18 01:34:56 +00001359 remove_proc_entry(buf, net->proc_net);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001360#endif /*CONFIG_PROC_FS*/
1361}
1362EXPORT_SYMBOL_GPL(xt_proto_fini);
1363
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001364static int __net_init xt_net_init(struct net *net)
1365{
1366 int i;
1367
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001368 for (i = 0; i < NFPROTO_NUMPROTO; i++)
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001369 INIT_LIST_HEAD(&net->xt.tables[i]);
1370 return 0;
1371}
1372
1373static struct pernet_operations xt_net_ops = {
1374 .init = xt_net_init,
1375};
Harald Welte2e4e6a12006-01-12 13:30:04 -08001376
1377static int __init xt_init(void)
1378{
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001379 unsigned int i;
1380 int rv;
1381
1382 for_each_possible_cpu(i) {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001383 seqcount_init(&per_cpu(xt_recseq, i));
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001384 }
Harald Welte2e4e6a12006-01-12 13:30:04 -08001385
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001386 xt = kmalloc(sizeof(struct xt_af) * NFPROTO_NUMPROTO, GFP_KERNEL);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001387 if (!xt)
1388 return -ENOMEM;
1389
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001390 for (i = 0; i < NFPROTO_NUMPROTO; i++) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -08001391 mutex_init(&xt[i].mutex);
Dmitry Mishin27229712006-04-01 02:25:19 -08001392#ifdef CONFIG_COMPAT
1393 mutex_init(&xt[i].compat_mutex);
Eric Dumazet255d0dc2010-12-18 18:35:15 +01001394 xt[i].compat_tab = NULL;
Dmitry Mishin27229712006-04-01 02:25:19 -08001395#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -08001396 INIT_LIST_HEAD(&xt[i].target);
1397 INIT_LIST_HEAD(&xt[i].match);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001398 }
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001399 rv = register_pernet_subsys(&xt_net_ops);
1400 if (rv < 0)
1401 kfree(xt);
1402 return rv;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001403}
1404
1405static void __exit xt_fini(void)
1406{
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001407 unregister_pernet_subsys(&xt_net_ops);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001408 kfree(xt);
1409}
1410
1411module_init(xt_init);
1412module_exit(xt_fini);
1413