blob: 686c7715d777ba2b6792641b644b2ed7f51c1f9e [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>
5 *
6 * Based on existing ip_tables code which is
7 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
8 * Copyright (C) 2000-2005 Netfilter Core Team <coreteam@netfilter.org>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 */
Jan Engelhardtbe91fd52010-03-18 02:22:32 +010015#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Harald Welte2e4e6a12006-01-12 13:30:04 -080016#include <linux/kernel.h>
Paul Gortmaker3a9a2312011-05-27 09:12:25 -040017#include <linux/module.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -080018#include <linux/socket.h>
19#include <linux/net.h>
20#include <linux/proc_fs.h>
21#include <linux/seq_file.h>
22#include <linux/string.h>
23#include <linux/vmalloc.h>
Ingo Molnar9e19bb62006-03-25 01:41:10 -080024#include <linux/mutex.h>
Al Virod7fe0f22006-12-03 23:15:30 -050025#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Thomas Graffbabf312011-01-16 18:12:59 +010027#include <linux/audit.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020028#include <net/net_namespace.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -080029
30#include <linux/netfilter/x_tables.h>
31#include <linux/netfilter_arp.h>
Jan Engelhardte3eaa992009-06-17 22:14:54 +020032#include <linux/netfilter_ipv4/ip_tables.h>
33#include <linux/netfilter_ipv6/ip6_tables.h>
34#include <linux/netfilter_arp/arp_tables.h>
Ingo Molnar9e19bb62006-03-25 01:41:10 -080035
Harald Welte2e4e6a12006-01-12 13:30:04 -080036MODULE_LICENSE("GPL");
37MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
Jan Engelhardt043ef462008-10-08 11:35:15 +020038MODULE_DESCRIPTION("{ip,ip6,arp,eb}_tables backend module");
Harald Welte2e4e6a12006-01-12 13:30:04 -080039
40#define SMP_ALIGN(x) (((x) + SMP_CACHE_BYTES-1) & ~(SMP_CACHE_BYTES-1))
41
Patrick McHardyb386d9f2007-12-17 21:47:48 -080042struct compat_delta {
Eric Dumazet255d0dc2010-12-18 18:35:15 +010043 unsigned int offset; /* offset in kernel */
44 int delta; /* delta in 32bit user land */
Patrick McHardyb386d9f2007-12-17 21:47:48 -080045};
46
Harald Welte2e4e6a12006-01-12 13:30:04 -080047struct xt_af {
Ingo Molnar9e19bb62006-03-25 01:41:10 -080048 struct mutex mutex;
Harald Welte2e4e6a12006-01-12 13:30:04 -080049 struct list_head match;
50 struct list_head target;
Patrick McHardyb386d9f2007-12-17 21:47:48 -080051#ifdef CONFIG_COMPAT
Dmitry Mishin27229712006-04-01 02:25:19 -080052 struct mutex compat_mutex;
Eric Dumazet255d0dc2010-12-18 18:35:15 +010053 struct compat_delta *compat_tab;
54 unsigned int number; /* number of slots in compat_tab[] */
55 unsigned int cur; /* number of used slots in compat_tab[] */
Patrick McHardyb386d9f2007-12-17 21:47:48 -080056#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -080057};
58
59static struct xt_af *xt;
60
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +020061static const char *const xt_prefix[NFPROTO_NUMPROTO] = {
62 [NFPROTO_UNSPEC] = "x",
63 [NFPROTO_IPV4] = "ip",
64 [NFPROTO_ARP] = "arp",
65 [NFPROTO_BRIDGE] = "eb",
66 [NFPROTO_IPV6] = "ip6",
Patrick McHardy37f9f732006-03-20 17:59:06 -080067};
68
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +020069/* Allow this many total (re)entries. */
70static const unsigned int xt_jumpstack_multiplier = 2;
71
Harald Welte2e4e6a12006-01-12 13:30:04 -080072/* Registration hooks for targets. */
73int
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080074xt_register_target(struct xt_target *target)
Harald Welte2e4e6a12006-01-12 13:30:04 -080075{
Jan Engelhardt76108ce2008-10-08 11:35:00 +020076 u_int8_t af = target->family;
77 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -080078
Ingo Molnar9e19bb62006-03-25 01:41:10 -080079 ret = mutex_lock_interruptible(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -080080 if (ret != 0)
81 return ret;
82 list_add(&target->list, &xt[af].target);
Ingo Molnar9e19bb62006-03-25 01:41:10 -080083 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -080084 return ret;
85}
86EXPORT_SYMBOL(xt_register_target);
87
88void
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080089xt_unregister_target(struct xt_target *target)
Harald Welte2e4e6a12006-01-12 13:30:04 -080090{
Jan Engelhardt76108ce2008-10-08 11:35:00 +020091 u_int8_t af = target->family;
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080092
Ingo Molnar9e19bb62006-03-25 01:41:10 -080093 mutex_lock(&xt[af].mutex);
Patrick McHardydf0933d2006-09-20 11:57:53 -070094 list_del(&target->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -080095 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -080096}
97EXPORT_SYMBOL(xt_unregister_target);
98
99int
Patrick McHardy52d9c422006-08-22 00:33:45 -0700100xt_register_targets(struct xt_target *target, unsigned int n)
101{
102 unsigned int i;
103 int err = 0;
104
105 for (i = 0; i < n; i++) {
106 err = xt_register_target(&target[i]);
107 if (err)
108 goto err;
109 }
110 return err;
111
112err:
113 if (i > 0)
114 xt_unregister_targets(target, i);
115 return err;
116}
117EXPORT_SYMBOL(xt_register_targets);
118
119void
120xt_unregister_targets(struct xt_target *target, unsigned int n)
121{
Changli Gaof68c5302010-10-04 22:24:12 +0200122 while (n-- > 0)
123 xt_unregister_target(&target[n]);
Patrick McHardy52d9c422006-08-22 00:33:45 -0700124}
125EXPORT_SYMBOL(xt_unregister_targets);
126
127int
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800128xt_register_match(struct xt_match *match)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800129{
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200130 u_int8_t af = match->family;
131 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800132
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800133 ret = mutex_lock_interruptible(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800134 if (ret != 0)
135 return ret;
136
137 list_add(&match->list, &xt[af].match);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800138 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800139
140 return ret;
141}
142EXPORT_SYMBOL(xt_register_match);
143
144void
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800145xt_unregister_match(struct xt_match *match)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800146{
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200147 u_int8_t af = match->family;
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800148
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800149 mutex_lock(&xt[af].mutex);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700150 list_del(&match->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800151 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800152}
153EXPORT_SYMBOL(xt_unregister_match);
154
Patrick McHardy52d9c422006-08-22 00:33:45 -0700155int
156xt_register_matches(struct xt_match *match, unsigned int n)
157{
158 unsigned int i;
159 int err = 0;
160
161 for (i = 0; i < n; i++) {
162 err = xt_register_match(&match[i]);
163 if (err)
164 goto err;
165 }
166 return err;
167
168err:
169 if (i > 0)
170 xt_unregister_matches(match, i);
171 return err;
172}
173EXPORT_SYMBOL(xt_register_matches);
174
175void
176xt_unregister_matches(struct xt_match *match, unsigned int n)
177{
Changli Gaof68c5302010-10-04 22:24:12 +0200178 while (n-- > 0)
179 xt_unregister_match(&match[n]);
Patrick McHardy52d9c422006-08-22 00:33:45 -0700180}
181EXPORT_SYMBOL(xt_unregister_matches);
182
Harald Welte2e4e6a12006-01-12 13:30:04 -0800183
184/*
185 * These are weird, but module loading must not be done with mutex
186 * held (since they will register), and we have to have a single
Stephen Hemmingeradb00ae2011-03-09 14:14:26 +0100187 * function to use.
Harald Welte2e4e6a12006-01-12 13:30:04 -0800188 */
189
190/* Find match, grabs ref. Returns ERR_PTR() on error. */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200191struct xt_match *xt_find_match(u8 af, const char *name, u8 revision)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800192{
193 struct xt_match *m;
Patrick McHardy42046e22011-03-14 19:11:44 +0100194 int err = -ENOENT;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800195
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800196 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800197 return ERR_PTR(-EINTR);
198
199 list_for_each_entry(m, &xt[af].match, list) {
200 if (strcmp(m->name, name) == 0) {
201 if (m->revision == revision) {
202 if (try_module_get(m->me)) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800203 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800204 return m;
205 }
206 } else
207 err = -EPROTOTYPE; /* Found something. */
208 }
209 }
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800210 mutex_unlock(&xt[af].mutex);
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200211
212 if (af != NFPROTO_UNSPEC)
213 /* Try searching again in the family-independent list */
214 return xt_find_match(NFPROTO_UNSPEC, name, revision);
215
Harald Welte2e4e6a12006-01-12 13:30:04 -0800216 return ERR_PTR(err);
217}
218EXPORT_SYMBOL(xt_find_match);
219
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200220struct xt_match *
221xt_request_find_match(uint8_t nfproto, const char *name, uint8_t revision)
222{
223 struct xt_match *match;
224
Stephen Hemmingeradb00ae2011-03-09 14:14:26 +0100225 match = xt_find_match(nfproto, name, revision);
226 if (IS_ERR(match)) {
227 request_module("%st_%s", xt_prefix[nfproto], name);
228 match = xt_find_match(nfproto, name, revision);
229 }
230
231 return match;
Jan Engelhardtfd0ec0e2009-07-10 19:27:47 +0200232}
233EXPORT_SYMBOL_GPL(xt_request_find_match);
234
Harald Welte2e4e6a12006-01-12 13:30:04 -0800235/* Find target, grabs ref. Returns ERR_PTR() on error. */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200236struct xt_target *xt_find_target(u8 af, const char *name, u8 revision)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800237{
238 struct xt_target *t;
Patrick McHardy42046e22011-03-14 19:11:44 +0100239 int err = -ENOENT;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800240
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800241 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800242 return ERR_PTR(-EINTR);
243
244 list_for_each_entry(t, &xt[af].target, list) {
245 if (strcmp(t->name, name) == 0) {
246 if (t->revision == revision) {
247 if (try_module_get(t->me)) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800248 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800249 return t;
250 }
251 } else
252 err = -EPROTOTYPE; /* Found something. */
253 }
254 }
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800255 mutex_unlock(&xt[af].mutex);
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200256
257 if (af != NFPROTO_UNSPEC)
258 /* Try searching again in the family-independent list */
259 return xt_find_target(NFPROTO_UNSPEC, name, revision);
260
Harald Welte2e4e6a12006-01-12 13:30:04 -0800261 return ERR_PTR(err);
262}
263EXPORT_SYMBOL(xt_find_target);
264
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200265struct xt_target *xt_request_find_target(u8 af, const char *name, u8 revision)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800266{
267 struct xt_target *target;
268
Stephen Hemmingeradb00ae2011-03-09 14:14:26 +0100269 target = xt_find_target(af, name, revision);
270 if (IS_ERR(target)) {
271 request_module("%st_%s", xt_prefix[af], name);
272 target = xt_find_target(af, name, revision);
273 }
274
275 return target;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800276}
277EXPORT_SYMBOL_GPL(xt_request_find_target);
278
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200279static int match_revfn(u8 af, const char *name, u8 revision, int *bestp)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800280{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200281 const struct xt_match *m;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800282 int have_rev = 0;
283
284 list_for_each_entry(m, &xt[af].match, list) {
285 if (strcmp(m->name, name) == 0) {
286 if (m->revision > *bestp)
287 *bestp = m->revision;
288 if (m->revision == revision)
289 have_rev = 1;
290 }
291 }
Patrick McHardy656caff2009-01-12 00:06:04 +0000292
293 if (af != NFPROTO_UNSPEC && !have_rev)
294 return match_revfn(NFPROTO_UNSPEC, name, revision, bestp);
295
Harald Welte2e4e6a12006-01-12 13:30:04 -0800296 return have_rev;
297}
298
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200299static int target_revfn(u8 af, const char *name, u8 revision, int *bestp)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800300{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200301 const struct xt_target *t;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800302 int have_rev = 0;
303
304 list_for_each_entry(t, &xt[af].target, list) {
305 if (strcmp(t->name, name) == 0) {
306 if (t->revision > *bestp)
307 *bestp = t->revision;
308 if (t->revision == revision)
309 have_rev = 1;
310 }
311 }
Patrick McHardy656caff2009-01-12 00:06:04 +0000312
313 if (af != NFPROTO_UNSPEC && !have_rev)
314 return target_revfn(NFPROTO_UNSPEC, name, revision, bestp);
315
Harald Welte2e4e6a12006-01-12 13:30:04 -0800316 return have_rev;
317}
318
319/* Returns true or false (if no such extension at all) */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200320int xt_find_revision(u8 af, const char *name, u8 revision, int target,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800321 int *err)
322{
323 int have_rev, best = -1;
324
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800325 if (mutex_lock_interruptible(&xt[af].mutex) != 0) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800326 *err = -EINTR;
327 return 1;
328 }
329 if (target == 1)
330 have_rev = target_revfn(af, name, revision, &best);
331 else
332 have_rev = match_revfn(af, name, revision, &best);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800333 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800334
335 /* Nothing at all? Return 0 to try loading module. */
336 if (best == -1) {
337 *err = -ENOENT;
338 return 0;
339 }
340
341 *err = best;
342 if (!have_rev)
343 *err = -EPROTONOSUPPORT;
344 return 1;
345}
346EXPORT_SYMBOL_GPL(xt_find_revision);
347
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000348static char *
349textify_hooks(char *buf, size_t size, unsigned int mask, uint8_t nfproto)
Jan Engelhardt45185362009-04-05 10:43:09 +0200350{
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000351 static const char *const inetbr_names[] = {
Jan Engelhardt45185362009-04-05 10:43:09 +0200352 "PREROUTING", "INPUT", "FORWARD",
353 "OUTPUT", "POSTROUTING", "BROUTING",
354 };
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000355 static const char *const arp_names[] = {
356 "INPUT", "FORWARD", "OUTPUT",
357 };
358 const char *const *names;
359 unsigned int i, max;
Jan Engelhardt45185362009-04-05 10:43:09 +0200360 char *p = buf;
361 bool np = false;
362 int res;
363
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000364 names = (nfproto == NFPROTO_ARP) ? arp_names : inetbr_names;
365 max = (nfproto == NFPROTO_ARP) ? ARRAY_SIZE(arp_names) :
366 ARRAY_SIZE(inetbr_names);
Jan Engelhardt45185362009-04-05 10:43:09 +0200367 *p = '\0';
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000368 for (i = 0; i < max; ++i) {
Jan Engelhardt45185362009-04-05 10:43:09 +0200369 if (!(mask & (1 << i)))
370 continue;
371 res = snprintf(p, size, "%s%s", np ? "/" : "", names[i]);
372 if (res > 0) {
373 size -= res;
374 p += res;
375 }
376 np = true;
377 }
378
379 return buf;
380}
381
Jan Engelhardt916a9172008-10-08 11:35:20 +0200382int xt_check_match(struct xt_mtchk_param *par,
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200383 unsigned int size, u_int8_t proto, bool inv_proto)
Patrick McHardy37f9f732006-03-20 17:59:06 -0800384{
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100385 int ret;
386
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200387 if (XT_ALIGN(par->match->matchsize) != size &&
388 par->match->matchsize != -1) {
Jan Engelhardt043ef462008-10-08 11:35:15 +0200389 /*
390 * ebt_among is exempt from centralized matchsize checking
391 * because it uses a dynamic-size data set.
392 */
Jan Engelhardtb4024052009-06-25 18:32:12 +0200393 pr_err("%s_tables: %s.%u match: invalid size "
394 "%u (kernel) != (user) %u\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200395 xt_prefix[par->family], par->match->name,
Jan Engelhardtb4024052009-06-25 18:32:12 +0200396 par->match->revision,
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200397 XT_ALIGN(par->match->matchsize), size);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800398 return -EINVAL;
399 }
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200400 if (par->match->table != NULL &&
401 strcmp(par->match->table, par->table) != 0) {
Joe Perches3dd5d7e2009-06-13 12:32:39 +0200402 pr_err("%s_tables: %s match: only valid in %s table, not %s\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200403 xt_prefix[par->family], par->match->name,
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200404 par->match->table, par->table);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800405 return -EINVAL;
406 }
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200407 if (par->match->hooks && (par->hook_mask & ~par->match->hooks) != 0) {
Jan Engelhardt45185362009-04-05 10:43:09 +0200408 char used[64], allow[64];
409
Joe Perches3dd5d7e2009-06-13 12:32:39 +0200410 pr_err("%s_tables: %s match: used from hooks %s, but only "
Jan Engelhardt45185362009-04-05 10:43:09 +0200411 "valid from %s\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200412 xt_prefix[par->family], par->match->name,
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000413 textify_hooks(used, sizeof(used), par->hook_mask,
414 par->family),
415 textify_hooks(allow, sizeof(allow), par->match->hooks,
416 par->family));
Patrick McHardy37f9f732006-03-20 17:59:06 -0800417 return -EINVAL;
418 }
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200419 if (par->match->proto && (par->match->proto != proto || inv_proto)) {
Joe Perches3dd5d7e2009-06-13 12:32:39 +0200420 pr_err("%s_tables: %s match: only valid for protocol %u\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200421 xt_prefix[par->family], par->match->name,
422 par->match->proto);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800423 return -EINVAL;
424 }
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100425 if (par->match->checkentry != NULL) {
426 ret = par->match->checkentry(par);
427 if (ret < 0)
428 return ret;
429 else if (ret > 0)
430 /* Flag up potential errors. */
431 return -EIO;
432 }
Patrick McHardy37f9f732006-03-20 17:59:06 -0800433 return 0;
434}
435EXPORT_SYMBOL_GPL(xt_check_match);
436
Dmitry Mishin27229712006-04-01 02:25:19 -0800437#ifdef CONFIG_COMPAT
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100438int xt_compat_add_offset(u_int8_t af, unsigned int offset, int delta)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800439{
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100440 struct xt_af *xp = &xt[af];
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800441
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100442 if (!xp->compat_tab) {
443 if (!xp->number)
444 return -EINVAL;
445 xp->compat_tab = vmalloc(sizeof(struct compat_delta) * xp->number);
446 if (!xp->compat_tab)
447 return -ENOMEM;
448 xp->cur = 0;
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800449 }
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100450
451 if (xp->cur >= xp->number)
452 return -EINVAL;
453
454 if (xp->cur)
455 delta += xp->compat_tab[xp->cur - 1].delta;
456 xp->compat_tab[xp->cur].offset = offset;
457 xp->compat_tab[xp->cur].delta = delta;
458 xp->cur++;
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800459 return 0;
460}
461EXPORT_SYMBOL_GPL(xt_compat_add_offset);
462
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200463void xt_compat_flush_offsets(u_int8_t af)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800464{
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100465 if (xt[af].compat_tab) {
466 vfree(xt[af].compat_tab);
467 xt[af].compat_tab = NULL;
468 xt[af].number = 0;
Eric Dumazet5a6351e2011-04-21 10:57:21 +0200469 xt[af].cur = 0;
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800470 }
471}
472EXPORT_SYMBOL_GPL(xt_compat_flush_offsets);
473
Florian Westphal3e5e5242010-02-15 18:17:10 +0100474int xt_compat_calc_jump(u_int8_t af, unsigned int offset)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800475{
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100476 struct compat_delta *tmp = xt[af].compat_tab;
477 int mid, left = 0, right = xt[af].cur - 1;
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800478
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100479 while (left <= right) {
480 mid = (left + right) >> 1;
481 if (offset > tmp[mid].offset)
482 left = mid + 1;
483 else if (offset < tmp[mid].offset)
484 right = mid - 1;
485 else
486 return mid ? tmp[mid - 1].delta : 0;
487 }
Eric Dumazet5a6351e2011-04-21 10:57:21 +0200488 return left ? tmp[left - 1].delta : 0;
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800489}
490EXPORT_SYMBOL_GPL(xt_compat_calc_jump);
491
Eric Dumazet255d0dc2010-12-18 18:35:15 +0100492void xt_compat_init_offsets(u_int8_t af, unsigned int number)
493{
494 xt[af].number = number;
495 xt[af].cur = 0;
496}
497EXPORT_SYMBOL(xt_compat_init_offsets);
498
Jan Engelhardt5452e422008-04-14 11:15:35 +0200499int xt_compat_match_offset(const struct xt_match *match)
Dmitry Mishin27229712006-04-01 02:25:19 -0800500{
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700501 u_int16_t csize = match->compatsize ? : match->matchsize;
502 return XT_ALIGN(match->matchsize) - COMPAT_XT_ALIGN(csize);
Dmitry Mishin27229712006-04-01 02:25:19 -0800503}
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700504EXPORT_SYMBOL_GPL(xt_compat_match_offset);
505
Patrick McHardy89566952007-12-17 21:46:40 -0800506int xt_compat_match_from_user(struct xt_entry_match *m, void **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800507 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700508{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200509 const struct xt_match *match = m->u.kernel.match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700510 struct compat_xt_entry_match *cm = (struct compat_xt_entry_match *)m;
511 int pad, off = xt_compat_match_offset(match);
512 u_int16_t msize = cm->u.user.match_size;
513
514 m = *dstptr;
515 memcpy(m, cm, sizeof(*cm));
516 if (match->compat_from_user)
517 match->compat_from_user(m->data, cm->data);
518 else
519 memcpy(m->data, cm->data, msize - sizeof(*cm));
520 pad = XT_ALIGN(match->matchsize) - match->matchsize;
521 if (pad > 0)
522 memset(m->data + match->matchsize, 0, pad);
523
524 msize += off;
525 m->u.user.match_size = msize;
526
527 *size += off;
528 *dstptr += msize;
Patrick McHardy89566952007-12-17 21:46:40 -0800529 return 0;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700530}
531EXPORT_SYMBOL_GPL(xt_compat_match_from_user);
532
Jan Engelhardt739674f2009-06-26 08:23:19 +0200533int xt_compat_match_to_user(const struct xt_entry_match *m,
534 void __user **dstptr, unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700535{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200536 const struct xt_match *match = m->u.kernel.match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700537 struct compat_xt_entry_match __user *cm = *dstptr;
538 int off = xt_compat_match_offset(match);
539 u_int16_t msize = m->u.user.match_size - off;
540
541 if (copy_to_user(cm, m, sizeof(*cm)) ||
Patrick McHardya18aa312007-12-12 10:35:16 -0800542 put_user(msize, &cm->u.user.match_size) ||
543 copy_to_user(cm->u.user.name, m->u.kernel.match->name,
544 strlen(m->u.kernel.match->name) + 1))
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800545 return -EFAULT;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700546
547 if (match->compat_to_user) {
548 if (match->compat_to_user((void __user *)cm->data, m->data))
549 return -EFAULT;
550 } else {
551 if (copy_to_user(cm->data, m->data, msize - sizeof(*cm)))
552 return -EFAULT;
553 }
554
555 *size -= off;
556 *dstptr += msize;
557 return 0;
558}
559EXPORT_SYMBOL_GPL(xt_compat_match_to_user);
560#endif /* CONFIG_COMPAT */
Dmitry Mishin27229712006-04-01 02:25:19 -0800561
Jan Engelhardt916a9172008-10-08 11:35:20 +0200562int xt_check_target(struct xt_tgchk_param *par,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200563 unsigned int size, u_int8_t proto, bool inv_proto)
Patrick McHardy37f9f732006-03-20 17:59:06 -0800564{
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100565 int ret;
566
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200567 if (XT_ALIGN(par->target->targetsize) != size) {
Jan Engelhardtb4024052009-06-25 18:32:12 +0200568 pr_err("%s_tables: %s.%u target: invalid size "
569 "%u (kernel) != (user) %u\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200570 xt_prefix[par->family], par->target->name,
Jan Engelhardtb4024052009-06-25 18:32:12 +0200571 par->target->revision,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200572 XT_ALIGN(par->target->targetsize), size);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800573 return -EINVAL;
574 }
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200575 if (par->target->table != NULL &&
576 strcmp(par->target->table, par->table) != 0) {
Joe Perches3dd5d7e2009-06-13 12:32:39 +0200577 pr_err("%s_tables: %s target: only valid in %s table, not %s\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200578 xt_prefix[par->family], par->target->name,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200579 par->target->table, par->table);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800580 return -EINVAL;
581 }
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200582 if (par->target->hooks && (par->hook_mask & ~par->target->hooks) != 0) {
Jan Engelhardt45185362009-04-05 10:43:09 +0200583 char used[64], allow[64];
584
Joe Perches3dd5d7e2009-06-13 12:32:39 +0200585 pr_err("%s_tables: %s target: used from hooks %s, but only "
Jan Engelhardt45185362009-04-05 10:43:09 +0200586 "usable from %s\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200587 xt_prefix[par->family], par->target->name,
Jan Engelhardt5b76c492013-01-10 12:30:05 +0000588 textify_hooks(used, sizeof(used), par->hook_mask,
589 par->family),
590 textify_hooks(allow, sizeof(allow), par->target->hooks,
591 par->family));
Patrick McHardy37f9f732006-03-20 17:59:06 -0800592 return -EINVAL;
593 }
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200594 if (par->target->proto && (par->target->proto != proto || inv_proto)) {
Joe Perches3dd5d7e2009-06-13 12:32:39 +0200595 pr_err("%s_tables: %s target: only valid for protocol %u\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200596 xt_prefix[par->family], par->target->name,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200597 par->target->proto);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800598 return -EINVAL;
599 }
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100600 if (par->target->checkentry != NULL) {
601 ret = par->target->checkentry(par);
602 if (ret < 0)
603 return ret;
604 else if (ret > 0)
605 /* Flag up potential errors. */
606 return -EIO;
607 }
Patrick McHardy37f9f732006-03-20 17:59:06 -0800608 return 0;
609}
610EXPORT_SYMBOL_GPL(xt_check_target);
611
Dmitry Mishin27229712006-04-01 02:25:19 -0800612#ifdef CONFIG_COMPAT
Jan Engelhardt5452e422008-04-14 11:15:35 +0200613int xt_compat_target_offset(const struct xt_target *target)
Dmitry Mishin27229712006-04-01 02:25:19 -0800614{
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700615 u_int16_t csize = target->compatsize ? : target->targetsize;
616 return XT_ALIGN(target->targetsize) - COMPAT_XT_ALIGN(csize);
Dmitry Mishin27229712006-04-01 02:25:19 -0800617}
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700618EXPORT_SYMBOL_GPL(xt_compat_target_offset);
619
620void xt_compat_target_from_user(struct xt_entry_target *t, void **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800621 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700622{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200623 const struct xt_target *target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700624 struct compat_xt_entry_target *ct = (struct compat_xt_entry_target *)t;
625 int pad, off = xt_compat_target_offset(target);
626 u_int16_t tsize = ct->u.user.target_size;
627
628 t = *dstptr;
629 memcpy(t, ct, sizeof(*ct));
630 if (target->compat_from_user)
631 target->compat_from_user(t->data, ct->data);
632 else
633 memcpy(t->data, ct->data, tsize - sizeof(*ct));
634 pad = XT_ALIGN(target->targetsize) - target->targetsize;
635 if (pad > 0)
636 memset(t->data + target->targetsize, 0, pad);
637
638 tsize += off;
639 t->u.user.target_size = tsize;
640
641 *size += off;
642 *dstptr += tsize;
643}
644EXPORT_SYMBOL_GPL(xt_compat_target_from_user);
645
Jan Engelhardt739674f2009-06-26 08:23:19 +0200646int xt_compat_target_to_user(const struct xt_entry_target *t,
647 void __user **dstptr, unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700648{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200649 const struct xt_target *target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700650 struct compat_xt_entry_target __user *ct = *dstptr;
651 int off = xt_compat_target_offset(target);
652 u_int16_t tsize = t->u.user.target_size - off;
653
654 if (copy_to_user(ct, t, sizeof(*ct)) ||
Patrick McHardya18aa312007-12-12 10:35:16 -0800655 put_user(tsize, &ct->u.user.target_size) ||
656 copy_to_user(ct->u.user.name, t->u.kernel.target->name,
657 strlen(t->u.kernel.target->name) + 1))
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800658 return -EFAULT;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700659
660 if (target->compat_to_user) {
661 if (target->compat_to_user((void __user *)ct->data, t->data))
662 return -EFAULT;
663 } else {
664 if (copy_to_user(ct->data, t->data, tsize - sizeof(*ct)))
665 return -EFAULT;
666 }
667
668 *size -= off;
669 *dstptr += tsize;
670 return 0;
671}
672EXPORT_SYMBOL_GPL(xt_compat_target_to_user);
Dmitry Mishin27229712006-04-01 02:25:19 -0800673#endif
674
Harald Welte2e4e6a12006-01-12 13:30:04 -0800675struct xt_table_info *xt_alloc_table_info(unsigned int size)
676{
677 struct xt_table_info *newinfo;
678 int cpu;
679
680 /* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */
Jan Beulich44813742009-09-21 17:03:05 -0700681 if ((SMP_ALIGN(size) >> PAGE_SHIFT) + 2 > totalram_pages)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800682 return NULL;
683
Eric Dumazet259d4e42007-12-04 23:24:56 -0800684 newinfo = kzalloc(XT_TABLE_INFO_SZ, GFP_KERNEL);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800685 if (!newinfo)
686 return NULL;
687
688 newinfo->size = size;
689
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700690 for_each_possible_cpu(cpu) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800691 if (size <= PAGE_SIZE)
692 newinfo->entries[cpu] = kmalloc_node(size,
693 GFP_KERNEL,
694 cpu_to_node(cpu));
695 else
696 newinfo->entries[cpu] = vmalloc_node(size,
697 cpu_to_node(cpu));
698
699 if (newinfo->entries[cpu] == NULL) {
700 xt_free_table_info(newinfo);
701 return NULL;
702 }
703 }
704
705 return newinfo;
706}
707EXPORT_SYMBOL(xt_alloc_table_info);
708
709void xt_free_table_info(struct xt_table_info *info)
710{
711 int cpu;
712
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700713 for_each_possible_cpu(cpu) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800714 if (info->size <= PAGE_SIZE)
715 kfree(info->entries[cpu]);
716 else
717 vfree(info->entries[cpu]);
718 }
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200719
720 if (info->jumpstack != NULL) {
721 if (sizeof(void *) * info->stacksize > PAGE_SIZE) {
722 for_each_possible_cpu(cpu)
723 vfree(info->jumpstack[cpu]);
724 } else {
725 for_each_possible_cpu(cpu)
726 kfree(info->jumpstack[cpu]);
727 }
728 }
729
730 if (sizeof(void **) * nr_cpu_ids > PAGE_SIZE)
731 vfree(info->jumpstack);
732 else
733 kfree(info->jumpstack);
Eric Dumazet7489aec2010-05-31 16:41:35 +0200734
735 free_percpu(info->stackptr);
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200736
Harald Welte2e4e6a12006-01-12 13:30:04 -0800737 kfree(info);
738}
739EXPORT_SYMBOL(xt_free_table_info);
740
741/* Find table by name, grabs mutex & ref. Returns ERR_PTR() on error. */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200742struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af,
743 const char *name)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800744{
745 struct xt_table *t;
746
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800747 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800748 return ERR_PTR(-EINTR);
749
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800750 list_for_each_entry(t, &net->xt.tables[af], list)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800751 if (strcmp(t->name, name) == 0 && try_module_get(t->me))
752 return t;
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800753 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800754 return NULL;
755}
756EXPORT_SYMBOL_GPL(xt_find_table_lock);
757
758void xt_table_unlock(struct xt_table *table)
759{
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800760 mutex_unlock(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800761}
762EXPORT_SYMBOL_GPL(xt_table_unlock);
763
Dmitry Mishin27229712006-04-01 02:25:19 -0800764#ifdef CONFIG_COMPAT
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200765void xt_compat_lock(u_int8_t af)
Dmitry Mishin27229712006-04-01 02:25:19 -0800766{
767 mutex_lock(&xt[af].compat_mutex);
768}
769EXPORT_SYMBOL_GPL(xt_compat_lock);
770
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200771void xt_compat_unlock(u_int8_t af)
Dmitry Mishin27229712006-04-01 02:25:19 -0800772{
773 mutex_unlock(&xt[af].compat_mutex);
774}
775EXPORT_SYMBOL_GPL(xt_compat_unlock);
776#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -0800777
Eric Dumazet7f5c6d42011-04-04 17:04:03 +0200778DEFINE_PER_CPU(seqcount_t, xt_recseq);
779EXPORT_PER_CPU_SYMBOL_GPL(xt_recseq);
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700780
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200781static int xt_jumpstack_alloc(struct xt_table_info *i)
782{
783 unsigned int size;
784 int cpu;
785
Eric Dumazet7489aec2010-05-31 16:41:35 +0200786 i->stackptr = alloc_percpu(unsigned int);
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200787 if (i->stackptr == NULL)
788 return -ENOMEM;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200789
790 size = sizeof(void **) * nr_cpu_ids;
791 if (size > PAGE_SIZE)
Joe Perches3dbd4432011-05-28 10:36:35 -0700792 i->jumpstack = vzalloc(size);
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200793 else
Joe Perches3dbd4432011-05-28 10:36:35 -0700794 i->jumpstack = kzalloc(size, GFP_KERNEL);
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200795 if (i->jumpstack == NULL)
796 return -ENOMEM;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200797
798 i->stacksize *= xt_jumpstack_multiplier;
799 size = sizeof(void *) * i->stacksize;
800 for_each_possible_cpu(cpu) {
801 if (size > PAGE_SIZE)
802 i->jumpstack[cpu] = vmalloc_node(size,
803 cpu_to_node(cpu));
804 else
805 i->jumpstack[cpu] = kmalloc_node(size,
806 GFP_KERNEL, cpu_to_node(cpu));
807 if (i->jumpstack[cpu] == NULL)
808 /*
809 * Freeing will be done later on by the callers. The
810 * chain is: xt_replace_table -> __do_replace ->
811 * do_replace -> xt_free_table_info.
812 */
813 return -ENOMEM;
814 }
815
816 return 0;
817}
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700818
Harald Welte2e4e6a12006-01-12 13:30:04 -0800819struct xt_table_info *
820xt_replace_table(struct xt_table *table,
821 unsigned int num_counters,
822 struct xt_table_info *newinfo,
823 int *error)
824{
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700825 struct xt_table_info *private;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200826 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800827
Jan Engelhardtd97a9e42010-04-21 14:45:51 +0200828 ret = xt_jumpstack_alloc(newinfo);
829 if (ret < 0) {
830 *error = ret;
831 return NULL;
832 }
833
Harald Welte2e4e6a12006-01-12 13:30:04 -0800834 /* Do the substitution. */
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700835 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -0800836 private = table->private;
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700837
Harald Welte2e4e6a12006-01-12 13:30:04 -0800838 /* Check inside lock: is the old number correct? */
839 if (num_counters != private->number) {
Jan Engelhardtbe91fd52010-03-18 02:22:32 +0100840 pr_debug("num_counters != table->private->number (%u/%u)\n",
Harald Welte2e4e6a12006-01-12 13:30:04 -0800841 num_counters, private->number);
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700842 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -0800843 *error = -EAGAIN;
844 return NULL;
845 }
Harald Welte2e4e6a12006-01-12 13:30:04 -0800846
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700847 table->private = newinfo;
848 newinfo->initial_entries = private->initial_entries;
849
850 /*
851 * Even though table entries have now been swapped, other CPU's
852 * may still be using the old entries. This is okay, because
853 * resynchronization happens because of the locking done
854 * during the get_counters() routine.
855 */
856 local_bh_enable();
857
Thomas Graffbabf312011-01-16 18:12:59 +0100858#ifdef CONFIG_AUDIT
859 if (audit_enabled) {
860 struct audit_buffer *ab;
861
862 ab = audit_log_start(current->audit_context, GFP_KERNEL,
863 AUDIT_NETFILTER_CFG);
864 if (ab) {
865 audit_log_format(ab, "table=%s family=%u entries=%u",
866 table->name, table->af,
867 private->number);
868 audit_log_end(ab);
869 }
870 }
871#endif
872
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700873 return private;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800874}
875EXPORT_SYMBOL_GPL(xt_replace_table);
876
Jan Engelhardt35aad0f2009-08-24 14:56:30 +0200877struct xt_table *xt_register_table(struct net *net,
878 const struct xt_table *input_table,
Alexey Dobriyana98da112008-01-31 04:01:49 -0800879 struct xt_table_info *bootstrap,
880 struct xt_table_info *newinfo)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800881{
882 int ret;
883 struct xt_table_info *private;
Jan Engelhardt35aad0f2009-08-24 14:56:30 +0200884 struct xt_table *t, *table;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800885
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800886 /* Don't add one object to multiple lists. */
Jan Engelhardt35aad0f2009-08-24 14:56:30 +0200887 table = kmemdup(input_table, sizeof(struct xt_table), GFP_KERNEL);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800888 if (!table) {
889 ret = -ENOMEM;
890 goto out;
891 }
892
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800893 ret = mutex_lock_interruptible(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800894 if (ret != 0)
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800895 goto out_free;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800896
897 /* Don't autoload: we'd eat our tail... */
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800898 list_for_each_entry(t, &net->xt.tables[table->af], list) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700899 if (strcmp(t->name, table->name) == 0) {
900 ret = -EEXIST;
901 goto unlock;
902 }
Harald Welte2e4e6a12006-01-12 13:30:04 -0800903 }
904
905 /* Simplifies replace_table code. */
906 table->private = bootstrap;
Stephen Hemminger78454472009-02-20 10:35:32 +0100907
Harald Welte2e4e6a12006-01-12 13:30:04 -0800908 if (!xt_replace_table(table, 0, newinfo, &ret))
909 goto unlock;
910
911 private = table->private;
Jan Engelhardtbe91fd52010-03-18 02:22:32 +0100912 pr_debug("table->private->number = %u\n", private->number);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800913
914 /* save number of initial entries */
915 private->initial_entries = private->number;
916
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800917 list_add(&table->list, &net->xt.tables[table->af]);
Alexey Dobriyana98da112008-01-31 04:01:49 -0800918 mutex_unlock(&xt[table->af].mutex);
919 return table;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800920
Harald Welte2e4e6a12006-01-12 13:30:04 -0800921 unlock:
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800922 mutex_unlock(&xt[table->af].mutex);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800923out_free:
924 kfree(table);
Alexey Dobriyana98da112008-01-31 04:01:49 -0800925out:
926 return ERR_PTR(ret);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800927}
928EXPORT_SYMBOL_GPL(xt_register_table);
929
930void *xt_unregister_table(struct xt_table *table)
931{
932 struct xt_table_info *private;
933
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800934 mutex_lock(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800935 private = table->private;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700936 list_del(&table->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800937 mutex_unlock(&xt[table->af].mutex);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800938 kfree(table);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800939
940 return private;
941}
942EXPORT_SYMBOL_GPL(xt_unregister_table);
943
944#ifdef CONFIG_PROC_FS
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800945struct xt_names_priv {
946 struct seq_net_private p;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200947 u_int8_t af;
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800948};
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800949static void *xt_table_seq_start(struct seq_file *seq, loff_t *pos)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800950{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800951 struct xt_names_priv *priv = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900952 struct net *net = seq_file_net(seq);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200953 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800954
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800955 mutex_lock(&xt[af].mutex);
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800956 return seq_list_start(&net->xt.tables[af], *pos);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800957}
958
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800959static void *xt_table_seq_next(struct seq_file *seq, void *v, loff_t *pos)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800960{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800961 struct xt_names_priv *priv = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900962 struct net *net = seq_file_net(seq);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200963 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800964
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800965 return seq_list_next(v, &net->xt.tables[af], pos);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800966}
967
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800968static void xt_table_seq_stop(struct seq_file *seq, void *v)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800969{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800970 struct xt_names_priv *priv = seq->private;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200971 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800972
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800973 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800974}
975
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800976static int xt_table_seq_show(struct seq_file *seq, void *v)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800977{
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800978 struct xt_table *table = list_entry(v, struct xt_table, list);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800979
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800980 if (strlen(table->name))
981 return seq_printf(seq, "%s\n", table->name);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800982 else
983 return 0;
984}
985
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800986static const struct seq_operations xt_table_seq_ops = {
987 .start = xt_table_seq_start,
988 .next = xt_table_seq_next,
989 .stop = xt_table_seq_stop,
990 .show = xt_table_seq_show,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800991};
992
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800993static int xt_table_open(struct inode *inode, struct file *file)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800994{
995 int ret;
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800996 struct xt_names_priv *priv;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800997
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800998 ret = seq_open_net(inode, file, &xt_table_seq_ops,
999 sizeof(struct xt_names_priv));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001000 if (!ret) {
Alexey Dobriyan715cf352008-01-31 04:49:16 -08001001 priv = ((struct seq_file *)file->private_data)->private;
1002 priv->af = (unsigned long)PDE(inode)->data;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001003 }
Harald Welte2e4e6a12006-01-12 13:30:04 -08001004 return ret;
1005}
1006
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001007static const struct file_operations xt_table_ops = {
Harald Welte2e4e6a12006-01-12 13:30:04 -08001008 .owner = THIS_MODULE,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001009 .open = xt_table_open,
1010 .read = seq_read,
1011 .llseek = seq_lseek,
Pavel Emelyanov0e93bb92008-04-29 03:15:35 -07001012 .release = seq_release_net,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001013};
1014
Jan Engelhardteb132202009-02-18 16:42:19 +01001015/*
1016 * Traverse state for ip{,6}_{tables,matches} for helping crossing
1017 * the multi-AF mutexes.
1018 */
1019struct nf_mttg_trav {
1020 struct list_head *head, *curr;
1021 uint8_t class, nfproto;
1022};
1023
1024enum {
1025 MTTG_TRAV_INIT,
1026 MTTG_TRAV_NFP_UNSPEC,
1027 MTTG_TRAV_NFP_SPEC,
1028 MTTG_TRAV_DONE,
1029};
1030
1031static void *xt_mttg_seq_next(struct seq_file *seq, void *v, loff_t *ppos,
1032 bool is_target)
1033{
1034 static const uint8_t next_class[] = {
1035 [MTTG_TRAV_NFP_UNSPEC] = MTTG_TRAV_NFP_SPEC,
1036 [MTTG_TRAV_NFP_SPEC] = MTTG_TRAV_DONE,
1037 };
1038 struct nf_mttg_trav *trav = seq->private;
1039
1040 switch (trav->class) {
1041 case MTTG_TRAV_INIT:
1042 trav->class = MTTG_TRAV_NFP_UNSPEC;
1043 mutex_lock(&xt[NFPROTO_UNSPEC].mutex);
1044 trav->head = trav->curr = is_target ?
1045 &xt[NFPROTO_UNSPEC].target : &xt[NFPROTO_UNSPEC].match;
1046 break;
1047 case MTTG_TRAV_NFP_UNSPEC:
1048 trav->curr = trav->curr->next;
1049 if (trav->curr != trav->head)
1050 break;
1051 mutex_unlock(&xt[NFPROTO_UNSPEC].mutex);
1052 mutex_lock(&xt[trav->nfproto].mutex);
1053 trav->head = trav->curr = is_target ?
1054 &xt[trav->nfproto].target : &xt[trav->nfproto].match;
1055 trav->class = next_class[trav->class];
1056 break;
1057 case MTTG_TRAV_NFP_SPEC:
1058 trav->curr = trav->curr->next;
1059 if (trav->curr != trav->head)
1060 break;
1061 /* fallthru, _stop will unlock */
1062 default:
1063 return NULL;
1064 }
1065
1066 if (ppos != NULL)
1067 ++*ppos;
1068 return trav;
1069}
1070
1071static void *xt_mttg_seq_start(struct seq_file *seq, loff_t *pos,
1072 bool is_target)
1073{
1074 struct nf_mttg_trav *trav = seq->private;
1075 unsigned int j;
1076
1077 trav->class = MTTG_TRAV_INIT;
1078 for (j = 0; j < *pos; ++j)
1079 if (xt_mttg_seq_next(seq, NULL, NULL, is_target) == NULL)
1080 return NULL;
1081 return trav;
1082}
1083
1084static void xt_mttg_seq_stop(struct seq_file *seq, void *v)
1085{
1086 struct nf_mttg_trav *trav = seq->private;
1087
1088 switch (trav->class) {
1089 case MTTG_TRAV_NFP_UNSPEC:
1090 mutex_unlock(&xt[NFPROTO_UNSPEC].mutex);
1091 break;
1092 case MTTG_TRAV_NFP_SPEC:
1093 mutex_unlock(&xt[trav->nfproto].mutex);
1094 break;
1095 }
1096}
1097
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001098static void *xt_match_seq_start(struct seq_file *seq, loff_t *pos)
1099{
Jan Engelhardteb132202009-02-18 16:42:19 +01001100 return xt_mttg_seq_start(seq, pos, false);
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001101}
1102
Jan Engelhardteb132202009-02-18 16:42:19 +01001103static void *xt_match_seq_next(struct seq_file *seq, void *v, loff_t *ppos)
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001104{
Jan Engelhardteb132202009-02-18 16:42:19 +01001105 return xt_mttg_seq_next(seq, v, ppos, false);
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001106}
1107
1108static int xt_match_seq_show(struct seq_file *seq, void *v)
1109{
Jan Engelhardteb132202009-02-18 16:42:19 +01001110 const struct nf_mttg_trav *trav = seq->private;
1111 const struct xt_match *match;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001112
Jan Engelhardteb132202009-02-18 16:42:19 +01001113 switch (trav->class) {
1114 case MTTG_TRAV_NFP_UNSPEC:
1115 case MTTG_TRAV_NFP_SPEC:
1116 if (trav->curr == trav->head)
1117 return 0;
1118 match = list_entry(trav->curr, struct xt_match, list);
1119 return (*match->name == '\0') ? 0 :
1120 seq_printf(seq, "%s\n", match->name);
1121 }
1122 return 0;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001123}
1124
1125static const struct seq_operations xt_match_seq_ops = {
1126 .start = xt_match_seq_start,
1127 .next = xt_match_seq_next,
Jan Engelhardteb132202009-02-18 16:42:19 +01001128 .stop = xt_mttg_seq_stop,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001129 .show = xt_match_seq_show,
1130};
1131
1132static int xt_match_open(struct inode *inode, struct file *file)
1133{
Jan Engelhardteb132202009-02-18 16:42:19 +01001134 struct seq_file *seq;
1135 struct nf_mttg_trav *trav;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001136 int ret;
1137
Jan Engelhardteb132202009-02-18 16:42:19 +01001138 trav = kmalloc(sizeof(*trav), GFP_KERNEL);
1139 if (trav == NULL)
1140 return -ENOMEM;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001141
Jan Engelhardteb132202009-02-18 16:42:19 +01001142 ret = seq_open(file, &xt_match_seq_ops);
1143 if (ret < 0) {
1144 kfree(trav);
1145 return ret;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001146 }
Jan Engelhardteb132202009-02-18 16:42:19 +01001147
1148 seq = file->private_data;
1149 seq->private = trav;
1150 trav->nfproto = (unsigned long)PDE(inode)->data;
1151 return 0;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001152}
1153
1154static const struct file_operations xt_match_ops = {
1155 .owner = THIS_MODULE,
1156 .open = xt_match_open,
1157 .read = seq_read,
1158 .llseek = seq_lseek,
Jan Engelhardteb132202009-02-18 16:42:19 +01001159 .release = seq_release_private,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001160};
1161
1162static void *xt_target_seq_start(struct seq_file *seq, loff_t *pos)
1163{
Jan Engelhardteb132202009-02-18 16:42:19 +01001164 return xt_mttg_seq_start(seq, pos, true);
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001165}
1166
Jan Engelhardteb132202009-02-18 16:42:19 +01001167static void *xt_target_seq_next(struct seq_file *seq, void *v, loff_t *ppos)
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001168{
Jan Engelhardteb132202009-02-18 16:42:19 +01001169 return xt_mttg_seq_next(seq, v, ppos, true);
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001170}
1171
1172static int xt_target_seq_show(struct seq_file *seq, void *v)
1173{
Jan Engelhardteb132202009-02-18 16:42:19 +01001174 const struct nf_mttg_trav *trav = seq->private;
1175 const struct xt_target *target;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001176
Jan Engelhardteb132202009-02-18 16:42:19 +01001177 switch (trav->class) {
1178 case MTTG_TRAV_NFP_UNSPEC:
1179 case MTTG_TRAV_NFP_SPEC:
1180 if (trav->curr == trav->head)
1181 return 0;
1182 target = list_entry(trav->curr, struct xt_target, list);
1183 return (*target->name == '\0') ? 0 :
1184 seq_printf(seq, "%s\n", target->name);
1185 }
1186 return 0;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001187}
1188
1189static const struct seq_operations xt_target_seq_ops = {
1190 .start = xt_target_seq_start,
1191 .next = xt_target_seq_next,
Jan Engelhardteb132202009-02-18 16:42:19 +01001192 .stop = xt_mttg_seq_stop,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001193 .show = xt_target_seq_show,
1194};
1195
1196static int xt_target_open(struct inode *inode, struct file *file)
1197{
Jan Engelhardteb132202009-02-18 16:42:19 +01001198 struct seq_file *seq;
1199 struct nf_mttg_trav *trav;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001200 int ret;
1201
Jan Engelhardteb132202009-02-18 16:42:19 +01001202 trav = kmalloc(sizeof(*trav), GFP_KERNEL);
1203 if (trav == NULL)
1204 return -ENOMEM;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001205
Jan Engelhardteb132202009-02-18 16:42:19 +01001206 ret = seq_open(file, &xt_target_seq_ops);
1207 if (ret < 0) {
1208 kfree(trav);
1209 return ret;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001210 }
Jan Engelhardteb132202009-02-18 16:42:19 +01001211
1212 seq = file->private_data;
1213 seq->private = trav;
1214 trav->nfproto = (unsigned long)PDE(inode)->data;
1215 return 0;
Alexey Dobriyan025d93d2008-01-31 04:48:54 -08001216}
1217
1218static const struct file_operations xt_target_ops = {
1219 .owner = THIS_MODULE,
1220 .open = xt_target_open,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001221 .read = seq_read,
1222 .llseek = seq_lseek,
Jan Engelhardteb132202009-02-18 16:42:19 +01001223 .release = seq_release_private,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001224};
1225
1226#define FORMAT_TABLES "_tables_names"
1227#define FORMAT_MATCHES "_tables_matches"
1228#define FORMAT_TARGETS "_tables_targets"
1229
1230#endif /* CONFIG_PROC_FS */
1231
Jan Engelhardt2b95efe2009-06-17 13:57:48 +02001232/**
1233 * xt_hook_link - set up hooks for a new table
1234 * @table: table with metadata needed to set up hooks
1235 * @fn: Hook function
1236 *
1237 * This function will take care of creating and registering the necessary
1238 * Netfilter hooks for XT tables.
1239 */
1240struct nf_hook_ops *xt_hook_link(const struct xt_table *table, nf_hookfn *fn)
1241{
1242 unsigned int hook_mask = table->valid_hooks;
1243 uint8_t i, num_hooks = hweight32(hook_mask);
1244 uint8_t hooknum;
1245 struct nf_hook_ops *ops;
1246 int ret;
1247
1248 ops = kmalloc(sizeof(*ops) * num_hooks, GFP_KERNEL);
1249 if (ops == NULL)
1250 return ERR_PTR(-ENOMEM);
1251
1252 for (i = 0, hooknum = 0; i < num_hooks && hook_mask != 0;
1253 hook_mask >>= 1, ++hooknum) {
1254 if (!(hook_mask & 1))
1255 continue;
1256 ops[i].hook = fn;
1257 ops[i].owner = table->me;
1258 ops[i].pf = table->af;
1259 ops[i].hooknum = hooknum;
1260 ops[i].priority = table->priority;
1261 ++i;
1262 }
1263
1264 ret = nf_register_hooks(ops, num_hooks);
1265 if (ret < 0) {
1266 kfree(ops);
1267 return ERR_PTR(ret);
1268 }
1269
1270 return ops;
1271}
1272EXPORT_SYMBOL_GPL(xt_hook_link);
1273
1274/**
1275 * xt_hook_unlink - remove hooks for a table
1276 * @ops: nf_hook_ops array as returned by nf_hook_link
1277 * @hook_mask: the very same mask that was passed to nf_hook_link
1278 */
1279void xt_hook_unlink(const struct xt_table *table, struct nf_hook_ops *ops)
1280{
1281 nf_unregister_hooks(ops, hweight32(table->valid_hooks));
1282 kfree(ops);
1283}
1284EXPORT_SYMBOL_GPL(xt_hook_unlink);
1285
Jan Engelhardt76108ce2008-10-08 11:35:00 +02001286int xt_proto_init(struct net *net, u_int8_t af)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001287{
1288#ifdef CONFIG_PROC_FS
1289 char buf[XT_FUNCTION_MAXNAMELEN];
1290 struct proc_dir_entry *proc;
1291#endif
1292
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001293 if (af >= ARRAY_SIZE(xt_prefix))
Harald Welte2e4e6a12006-01-12 13:30:04 -08001294 return -EINVAL;
1295
1296
1297#ifdef CONFIG_PROC_FS
Tobias Klauserce18afe2007-03-14 16:36:16 -07001298 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001299 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -07001300 proc = proc_create_data(buf, 0440, net->proc_net, &xt_table_ops,
1301 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001302 if (!proc)
1303 goto out;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001304
Tobias Klauserce18afe2007-03-14 16:36:16 -07001305 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001306 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -07001307 proc = proc_create_data(buf, 0440, net->proc_net, &xt_match_ops,
1308 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001309 if (!proc)
1310 goto out_remove_tables;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001311
Tobias Klauserce18afe2007-03-14 16:36:16 -07001312 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001313 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -07001314 proc = proc_create_data(buf, 0440, net->proc_net, &xt_target_ops,
1315 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001316 if (!proc)
1317 goto out_remove_matches;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001318#endif
1319
1320 return 0;
1321
1322#ifdef CONFIG_PROC_FS
1323out_remove_matches:
Tobias Klauserce18afe2007-03-14 16:36:16 -07001324 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001325 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Gao fengece31ff2013-02-18 01:34:56 +00001326 remove_proc_entry(buf, net->proc_net);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001327
1328out_remove_tables:
Tobias Klauserce18afe2007-03-14 16:36:16 -07001329 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001330 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Gao fengece31ff2013-02-18 01:34:56 +00001331 remove_proc_entry(buf, net->proc_net);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001332out:
1333 return -1;
1334#endif
1335}
1336EXPORT_SYMBOL_GPL(xt_proto_init);
1337
Jan Engelhardt76108ce2008-10-08 11:35:00 +02001338void xt_proto_fini(struct net *net, u_int8_t af)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001339{
1340#ifdef CONFIG_PROC_FS
1341 char buf[XT_FUNCTION_MAXNAMELEN];
1342
Tobias Klauserce18afe2007-03-14 16:36:16 -07001343 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001344 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Gao fengece31ff2013-02-18 01:34:56 +00001345 remove_proc_entry(buf, net->proc_net);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001346
Tobias Klauserce18afe2007-03-14 16:36:16 -07001347 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001348 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
Gao fengece31ff2013-02-18 01:34:56 +00001349 remove_proc_entry(buf, net->proc_net);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001350
Tobias Klauserce18afe2007-03-14 16:36:16 -07001351 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001352 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Gao fengece31ff2013-02-18 01:34:56 +00001353 remove_proc_entry(buf, net->proc_net);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001354#endif /*CONFIG_PROC_FS*/
1355}
1356EXPORT_SYMBOL_GPL(xt_proto_fini);
1357
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001358static int __net_init xt_net_init(struct net *net)
1359{
1360 int i;
1361
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001362 for (i = 0; i < NFPROTO_NUMPROTO; i++)
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001363 INIT_LIST_HEAD(&net->xt.tables[i]);
1364 return 0;
1365}
1366
1367static struct pernet_operations xt_net_ops = {
1368 .init = xt_net_init,
1369};
Harald Welte2e4e6a12006-01-12 13:30:04 -08001370
1371static int __init xt_init(void)
1372{
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001373 unsigned int i;
1374 int rv;
1375
1376 for_each_possible_cpu(i) {
Eric Dumazet7f5c6d42011-04-04 17:04:03 +02001377 seqcount_init(&per_cpu(xt_recseq, i));
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001378 }
Harald Welte2e4e6a12006-01-12 13:30:04 -08001379
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001380 xt = kmalloc(sizeof(struct xt_af) * NFPROTO_NUMPROTO, GFP_KERNEL);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001381 if (!xt)
1382 return -ENOMEM;
1383
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001384 for (i = 0; i < NFPROTO_NUMPROTO; i++) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -08001385 mutex_init(&xt[i].mutex);
Dmitry Mishin27229712006-04-01 02:25:19 -08001386#ifdef CONFIG_COMPAT
1387 mutex_init(&xt[i].compat_mutex);
Eric Dumazet255d0dc2010-12-18 18:35:15 +01001388 xt[i].compat_tab = NULL;
Dmitry Mishin27229712006-04-01 02:25:19 -08001389#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -08001390 INIT_LIST_HEAD(&xt[i].target);
1391 INIT_LIST_HEAD(&xt[i].match);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001392 }
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001393 rv = register_pernet_subsys(&xt_net_ops);
1394 if (rv < 0)
1395 kfree(xt);
1396 return rv;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001397}
1398
1399static void __exit xt_fini(void)
1400{
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001401 unregister_pernet_subsys(&xt_net_ops);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001402 kfree(xt);
1403}
1404
1405module_init(xt_init);
1406module_exit(xt_fini);
1407