blob: f29513cd1399987809619b84081ef4113d1a92a6 [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 */
15
Harald Welte2e4e6a12006-01-12 13:30:04 -080016#include <linux/kernel.h>
17#include <linux/socket.h>
18#include <linux/net.h>
19#include <linux/proc_fs.h>
20#include <linux/seq_file.h>
21#include <linux/string.h>
22#include <linux/vmalloc.h>
Ingo Molnar9e19bb62006-03-25 01:41:10 -080023#include <linux/mutex.h>
Al Virod7fe0f22006-12-03 23:15:30 -050024#include <linux/mm.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020025#include <net/net_namespace.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -080026
27#include <linux/netfilter/x_tables.h>
28#include <linux/netfilter_arp.h>
29
Ingo Molnar9e19bb62006-03-25 01:41:10 -080030
Harald Welte2e4e6a12006-01-12 13:30:04 -080031MODULE_LICENSE("GPL");
32MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
Jan Engelhardt043ef462008-10-08 11:35:15 +020033MODULE_DESCRIPTION("{ip,ip6,arp,eb}_tables backend module");
Harald Welte2e4e6a12006-01-12 13:30:04 -080034
35#define SMP_ALIGN(x) (((x) + SMP_CACHE_BYTES-1) & ~(SMP_CACHE_BYTES-1))
36
Patrick McHardyb386d9f2007-12-17 21:47:48 -080037struct compat_delta {
38 struct compat_delta *next;
39 unsigned int offset;
40 short delta;
41};
42
Harald Welte2e4e6a12006-01-12 13:30:04 -080043struct xt_af {
Ingo Molnar9e19bb62006-03-25 01:41:10 -080044 struct mutex mutex;
Harald Welte2e4e6a12006-01-12 13:30:04 -080045 struct list_head match;
46 struct list_head target;
Patrick McHardyb386d9f2007-12-17 21:47:48 -080047#ifdef CONFIG_COMPAT
Dmitry Mishin27229712006-04-01 02:25:19 -080048 struct mutex compat_mutex;
Patrick McHardyb386d9f2007-12-17 21:47:48 -080049 struct compat_delta *compat_offsets;
50#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -080051};
52
53static struct xt_af *xt;
54
55#ifdef DEBUG_IP_FIREWALL_USER
56#define duprintf(format, args...) printk(format , ## args)
57#else
58#define duprintf(format, args...)
59#endif
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
Harald Welte2e4e6a12006-01-12 13:30:04 -080069/* Registration hooks for targets. */
70int
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080071xt_register_target(struct xt_target *target)
Harald Welte2e4e6a12006-01-12 13:30:04 -080072{
Jan Engelhardt76108ce2008-10-08 11:35:00 +020073 u_int8_t af = target->family;
74 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -080075
Ingo Molnar9e19bb62006-03-25 01:41:10 -080076 ret = mutex_lock_interruptible(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -080077 if (ret != 0)
78 return ret;
79 list_add(&target->list, &xt[af].target);
Ingo Molnar9e19bb62006-03-25 01:41:10 -080080 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -080081 return ret;
82}
83EXPORT_SYMBOL(xt_register_target);
84
85void
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080086xt_unregister_target(struct xt_target *target)
Harald Welte2e4e6a12006-01-12 13:30:04 -080087{
Jan Engelhardt76108ce2008-10-08 11:35:00 +020088 u_int8_t af = target->family;
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080089
Ingo Molnar9e19bb62006-03-25 01:41:10 -080090 mutex_lock(&xt[af].mutex);
Patrick McHardydf0933d2006-09-20 11:57:53 -070091 list_del(&target->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -080092 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -080093}
94EXPORT_SYMBOL(xt_unregister_target);
95
96int
Patrick McHardy52d9c422006-08-22 00:33:45 -070097xt_register_targets(struct xt_target *target, unsigned int n)
98{
99 unsigned int i;
100 int err = 0;
101
102 for (i = 0; i < n; i++) {
103 err = xt_register_target(&target[i]);
104 if (err)
105 goto err;
106 }
107 return err;
108
109err:
110 if (i > 0)
111 xt_unregister_targets(target, i);
112 return err;
113}
114EXPORT_SYMBOL(xt_register_targets);
115
116void
117xt_unregister_targets(struct xt_target *target, unsigned int n)
118{
119 unsigned int i;
120
121 for (i = 0; i < n; i++)
122 xt_unregister_target(&target[i]);
123}
124EXPORT_SYMBOL(xt_unregister_targets);
125
126int
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800127xt_register_match(struct xt_match *match)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800128{
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200129 u_int8_t af = match->family;
130 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800131
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800132 ret = mutex_lock_interruptible(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800133 if (ret != 0)
134 return ret;
135
136 list_add(&match->list, &xt[af].match);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800137 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800138
139 return ret;
140}
141EXPORT_SYMBOL(xt_register_match);
142
143void
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800144xt_unregister_match(struct xt_match *match)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800145{
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200146 u_int8_t af = match->family;
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800147
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800148 mutex_lock(&xt[af].mutex);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700149 list_del(&match->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800150 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800151}
152EXPORT_SYMBOL(xt_unregister_match);
153
Patrick McHardy52d9c422006-08-22 00:33:45 -0700154int
155xt_register_matches(struct xt_match *match, unsigned int n)
156{
157 unsigned int i;
158 int err = 0;
159
160 for (i = 0; i < n; i++) {
161 err = xt_register_match(&match[i]);
162 if (err)
163 goto err;
164 }
165 return err;
166
167err:
168 if (i > 0)
169 xt_unregister_matches(match, i);
170 return err;
171}
172EXPORT_SYMBOL(xt_register_matches);
173
174void
175xt_unregister_matches(struct xt_match *match, unsigned int n)
176{
177 unsigned int i;
178
179 for (i = 0; i < n; i++)
180 xt_unregister_match(&match[i]);
181}
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
188 * function to use try_then_request_module().
189 */
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;
195 int err = 0;
196
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
221/* Find target, grabs ref. Returns ERR_PTR() on error. */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200222struct xt_target *xt_find_target(u8 af, const char *name, u8 revision)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800223{
224 struct xt_target *t;
225 int err = 0;
226
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800227 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800228 return ERR_PTR(-EINTR);
229
230 list_for_each_entry(t, &xt[af].target, list) {
231 if (strcmp(t->name, name) == 0) {
232 if (t->revision == revision) {
233 if (try_module_get(t->me)) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800234 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800235 return t;
236 }
237 } else
238 err = -EPROTOTYPE; /* Found something. */
239 }
240 }
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800241 mutex_unlock(&xt[af].mutex);
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200242
243 if (af != NFPROTO_UNSPEC)
244 /* Try searching again in the family-independent list */
245 return xt_find_target(NFPROTO_UNSPEC, name, revision);
246
Harald Welte2e4e6a12006-01-12 13:30:04 -0800247 return ERR_PTR(err);
248}
249EXPORT_SYMBOL(xt_find_target);
250
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200251struct xt_target *xt_request_find_target(u8 af, const char *name, u8 revision)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800252{
253 struct xt_target *target;
254
255 target = try_then_request_module(xt_find_target(af, name, revision),
Patrick McHardy37f9f732006-03-20 17:59:06 -0800256 "%st_%s", xt_prefix[af], name);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800257 if (IS_ERR(target) || !target)
258 return NULL;
259 return target;
260}
261EXPORT_SYMBOL_GPL(xt_request_find_target);
262
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200263static int match_revfn(u8 af, const char *name, u8 revision, int *bestp)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800264{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200265 const struct xt_match *m;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800266 int have_rev = 0;
267
268 list_for_each_entry(m, &xt[af].match, list) {
269 if (strcmp(m->name, name) == 0) {
270 if (m->revision > *bestp)
271 *bestp = m->revision;
272 if (m->revision == revision)
273 have_rev = 1;
274 }
275 }
276 return have_rev;
277}
278
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200279static int target_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_target *t;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800282 int have_rev = 0;
283
284 list_for_each_entry(t, &xt[af].target, list) {
285 if (strcmp(t->name, name) == 0) {
286 if (t->revision > *bestp)
287 *bestp = t->revision;
288 if (t->revision == revision)
289 have_rev = 1;
290 }
291 }
292 return have_rev;
293}
294
295/* Returns true or false (if no such extension at all) */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200296int xt_find_revision(u8 af, const char *name, u8 revision, int target,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800297 int *err)
298{
299 int have_rev, best = -1;
300
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800301 if (mutex_lock_interruptible(&xt[af].mutex) != 0) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800302 *err = -EINTR;
303 return 1;
304 }
305 if (target == 1)
306 have_rev = target_revfn(af, name, revision, &best);
307 else
308 have_rev = match_revfn(af, name, revision, &best);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800309 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800310
311 /* Nothing at all? Return 0 to try loading module. */
312 if (best == -1) {
313 *err = -ENOENT;
314 return 0;
315 }
316
317 *err = best;
318 if (!have_rev)
319 *err = -EPROTONOSUPPORT;
320 return 1;
321}
322EXPORT_SYMBOL_GPL(xt_find_revision);
323
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200324int xt_check_match(struct xt_mtchk_param *par, u_int8_t family,
325 unsigned int size, u_int8_t proto, bool inv_proto)
Patrick McHardy37f9f732006-03-20 17:59:06 -0800326{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200327 if (XT_ALIGN(par->match->matchsize) != size &&
328 par->match->matchsize != -1) {
Jan Engelhardt043ef462008-10-08 11:35:15 +0200329 /*
330 * ebt_among is exempt from centralized matchsize checking
331 * because it uses a dynamic-size data set.
332 */
Patrick McHardy37f9f732006-03-20 17:59:06 -0800333 printk("%s_tables: %s match: invalid size %Zu != %u\n",
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200334 xt_prefix[family], par->match->name,
335 XT_ALIGN(par->match->matchsize), size);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800336 return -EINVAL;
337 }
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200338 if (par->match->table != NULL &&
339 strcmp(par->match->table, par->table) != 0) {
Patrick McHardy37f9f732006-03-20 17:59:06 -0800340 printk("%s_tables: %s match: only valid in %s table, not %s\n",
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200341 xt_prefix[family], par->match->name,
342 par->match->table, par->table);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800343 return -EINVAL;
344 }
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200345 if (par->match->hooks && (par->hook_mask & ~par->match->hooks) != 0) {
Jan Engelhardt102befa2008-10-08 11:35:15 +0200346 printk("%s_tables: %s match: bad hook_mask %#x/%#x\n",
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200347 xt_prefix[family], par->match->name,
348 par->hook_mask, par->match->hooks);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800349 return -EINVAL;
350 }
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200351 if (par->match->proto && (par->match->proto != proto || inv_proto)) {
Patrick McHardy37f9f732006-03-20 17:59:06 -0800352 printk("%s_tables: %s match: only valid for protocol %u\n",
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200353 xt_prefix[family], par->match->name, par->match->proto);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800354 return -EINVAL;
355 }
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200356 if (par->match->checkentry != NULL && !par->match->checkentry(par))
Jan Engelhardt367c6792008-10-08 11:35:17 +0200357 return -EINVAL;
Patrick McHardy37f9f732006-03-20 17:59:06 -0800358 return 0;
359}
360EXPORT_SYMBOL_GPL(xt_check_match);
361
Dmitry Mishin27229712006-04-01 02:25:19 -0800362#ifdef CONFIG_COMPAT
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200363int xt_compat_add_offset(u_int8_t af, unsigned int offset, short delta)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800364{
365 struct compat_delta *tmp;
366
367 tmp = kmalloc(sizeof(struct compat_delta), GFP_KERNEL);
368 if (!tmp)
369 return -ENOMEM;
370
371 tmp->offset = offset;
372 tmp->delta = delta;
373
374 if (xt[af].compat_offsets) {
375 tmp->next = xt[af].compat_offsets->next;
376 xt[af].compat_offsets->next = tmp;
377 } else {
378 xt[af].compat_offsets = tmp;
379 tmp->next = NULL;
380 }
381 return 0;
382}
383EXPORT_SYMBOL_GPL(xt_compat_add_offset);
384
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200385void xt_compat_flush_offsets(u_int8_t af)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800386{
387 struct compat_delta *tmp, *next;
388
389 if (xt[af].compat_offsets) {
390 for (tmp = xt[af].compat_offsets; tmp; tmp = next) {
391 next = tmp->next;
392 kfree(tmp);
393 }
394 xt[af].compat_offsets = NULL;
395 }
396}
397EXPORT_SYMBOL_GPL(xt_compat_flush_offsets);
398
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200399short xt_compat_calc_jump(u_int8_t af, unsigned int offset)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800400{
401 struct compat_delta *tmp;
402 short delta;
403
404 for (tmp = xt[af].compat_offsets, delta = 0; tmp; tmp = tmp->next)
405 if (tmp->offset < offset)
406 delta += tmp->delta;
407 return delta;
408}
409EXPORT_SYMBOL_GPL(xt_compat_calc_jump);
410
Jan Engelhardt5452e422008-04-14 11:15:35 +0200411int xt_compat_match_offset(const struct xt_match *match)
Dmitry Mishin27229712006-04-01 02:25:19 -0800412{
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700413 u_int16_t csize = match->compatsize ? : match->matchsize;
414 return XT_ALIGN(match->matchsize) - COMPAT_XT_ALIGN(csize);
Dmitry Mishin27229712006-04-01 02:25:19 -0800415}
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700416EXPORT_SYMBOL_GPL(xt_compat_match_offset);
417
Patrick McHardy89566952007-12-17 21:46:40 -0800418int xt_compat_match_from_user(struct xt_entry_match *m, void **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800419 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700420{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200421 const struct xt_match *match = m->u.kernel.match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700422 struct compat_xt_entry_match *cm = (struct compat_xt_entry_match *)m;
423 int pad, off = xt_compat_match_offset(match);
424 u_int16_t msize = cm->u.user.match_size;
425
426 m = *dstptr;
427 memcpy(m, cm, sizeof(*cm));
428 if (match->compat_from_user)
429 match->compat_from_user(m->data, cm->data);
430 else
431 memcpy(m->data, cm->data, msize - sizeof(*cm));
432 pad = XT_ALIGN(match->matchsize) - match->matchsize;
433 if (pad > 0)
434 memset(m->data + match->matchsize, 0, pad);
435
436 msize += off;
437 m->u.user.match_size = msize;
438
439 *size += off;
440 *dstptr += msize;
Patrick McHardy89566952007-12-17 21:46:40 -0800441 return 0;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700442}
443EXPORT_SYMBOL_GPL(xt_compat_match_from_user);
444
445int xt_compat_match_to_user(struct xt_entry_match *m, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800446 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700447{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200448 const struct xt_match *match = m->u.kernel.match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700449 struct compat_xt_entry_match __user *cm = *dstptr;
450 int off = xt_compat_match_offset(match);
451 u_int16_t msize = m->u.user.match_size - off;
452
453 if (copy_to_user(cm, m, sizeof(*cm)) ||
Patrick McHardya18aa312007-12-12 10:35:16 -0800454 put_user(msize, &cm->u.user.match_size) ||
455 copy_to_user(cm->u.user.name, m->u.kernel.match->name,
456 strlen(m->u.kernel.match->name) + 1))
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800457 return -EFAULT;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700458
459 if (match->compat_to_user) {
460 if (match->compat_to_user((void __user *)cm->data, m->data))
461 return -EFAULT;
462 } else {
463 if (copy_to_user(cm->data, m->data, msize - sizeof(*cm)))
464 return -EFAULT;
465 }
466
467 *size -= off;
468 *dstptr += msize;
469 return 0;
470}
471EXPORT_SYMBOL_GPL(xt_compat_match_to_user);
472#endif /* CONFIG_COMPAT */
Dmitry Mishin27229712006-04-01 02:25:19 -0800473
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200474int xt_check_target(struct xt_tgchk_param *par, u_int8_t family,
475 unsigned int size, u_int8_t proto, bool inv_proto)
Patrick McHardy37f9f732006-03-20 17:59:06 -0800476{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200477 if (XT_ALIGN(par->target->targetsize) != size) {
Patrick McHardy37f9f732006-03-20 17:59:06 -0800478 printk("%s_tables: %s target: invalid size %Zu != %u\n",
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200479 xt_prefix[family], par->target->name,
480 XT_ALIGN(par->target->targetsize), size);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800481 return -EINVAL;
482 }
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200483 if (par->target->table != NULL &&
484 strcmp(par->target->table, par->table) != 0) {
Patrick McHardy37f9f732006-03-20 17:59:06 -0800485 printk("%s_tables: %s target: only valid in %s table, not %s\n",
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200486 xt_prefix[family], par->target->name,
487 par->target->table, par->table);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800488 return -EINVAL;
489 }
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200490 if (par->target->hooks && (par->hook_mask & ~par->target->hooks) != 0) {
Jan Engelhardt102befa2008-10-08 11:35:15 +0200491 printk("%s_tables: %s target: bad hook_mask %#x/%#x\n",
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200492 xt_prefix[family], par->target->name, par->hook_mask,
493 par->target->hooks);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800494 return -EINVAL;
495 }
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200496 if (par->target->proto && (par->target->proto != proto || inv_proto)) {
Patrick McHardy37f9f732006-03-20 17:59:06 -0800497 printk("%s_tables: %s target: only valid for protocol %u\n",
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200498 xt_prefix[family], par->target->name,
499 par->target->proto);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800500 return -EINVAL;
501 }
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200502 if (par->target->checkentry != NULL && !par->target->checkentry(par))
Jan Engelhardt367c6792008-10-08 11:35:17 +0200503 return -EINVAL;
Patrick McHardy37f9f732006-03-20 17:59:06 -0800504 return 0;
505}
506EXPORT_SYMBOL_GPL(xt_check_target);
507
Dmitry Mishin27229712006-04-01 02:25:19 -0800508#ifdef CONFIG_COMPAT
Jan Engelhardt5452e422008-04-14 11:15:35 +0200509int xt_compat_target_offset(const struct xt_target *target)
Dmitry Mishin27229712006-04-01 02:25:19 -0800510{
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700511 u_int16_t csize = target->compatsize ? : target->targetsize;
512 return XT_ALIGN(target->targetsize) - COMPAT_XT_ALIGN(csize);
Dmitry Mishin27229712006-04-01 02:25:19 -0800513}
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700514EXPORT_SYMBOL_GPL(xt_compat_target_offset);
515
516void xt_compat_target_from_user(struct xt_entry_target *t, void **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800517 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700518{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200519 const struct xt_target *target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700520 struct compat_xt_entry_target *ct = (struct compat_xt_entry_target *)t;
521 int pad, off = xt_compat_target_offset(target);
522 u_int16_t tsize = ct->u.user.target_size;
523
524 t = *dstptr;
525 memcpy(t, ct, sizeof(*ct));
526 if (target->compat_from_user)
527 target->compat_from_user(t->data, ct->data);
528 else
529 memcpy(t->data, ct->data, tsize - sizeof(*ct));
530 pad = XT_ALIGN(target->targetsize) - target->targetsize;
531 if (pad > 0)
532 memset(t->data + target->targetsize, 0, pad);
533
534 tsize += off;
535 t->u.user.target_size = tsize;
536
537 *size += off;
538 *dstptr += tsize;
539}
540EXPORT_SYMBOL_GPL(xt_compat_target_from_user);
541
542int xt_compat_target_to_user(struct xt_entry_target *t, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800543 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700544{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200545 const struct xt_target *target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700546 struct compat_xt_entry_target __user *ct = *dstptr;
547 int off = xt_compat_target_offset(target);
548 u_int16_t tsize = t->u.user.target_size - off;
549
550 if (copy_to_user(ct, t, sizeof(*ct)) ||
Patrick McHardya18aa312007-12-12 10:35:16 -0800551 put_user(tsize, &ct->u.user.target_size) ||
552 copy_to_user(ct->u.user.name, t->u.kernel.target->name,
553 strlen(t->u.kernel.target->name) + 1))
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800554 return -EFAULT;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700555
556 if (target->compat_to_user) {
557 if (target->compat_to_user((void __user *)ct->data, t->data))
558 return -EFAULT;
559 } else {
560 if (copy_to_user(ct->data, t->data, tsize - sizeof(*ct)))
561 return -EFAULT;
562 }
563
564 *size -= off;
565 *dstptr += tsize;
566 return 0;
567}
568EXPORT_SYMBOL_GPL(xt_compat_target_to_user);
Dmitry Mishin27229712006-04-01 02:25:19 -0800569#endif
570
Harald Welte2e4e6a12006-01-12 13:30:04 -0800571struct xt_table_info *xt_alloc_table_info(unsigned int size)
572{
573 struct xt_table_info *newinfo;
574 int cpu;
575
576 /* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */
577 if ((SMP_ALIGN(size) >> PAGE_SHIFT) + 2 > num_physpages)
578 return NULL;
579
Eric Dumazet259d4e42007-12-04 23:24:56 -0800580 newinfo = kzalloc(XT_TABLE_INFO_SZ, GFP_KERNEL);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800581 if (!newinfo)
582 return NULL;
583
584 newinfo->size = size;
585
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700586 for_each_possible_cpu(cpu) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800587 if (size <= PAGE_SIZE)
588 newinfo->entries[cpu] = kmalloc_node(size,
589 GFP_KERNEL,
590 cpu_to_node(cpu));
591 else
592 newinfo->entries[cpu] = vmalloc_node(size,
593 cpu_to_node(cpu));
594
595 if (newinfo->entries[cpu] == NULL) {
596 xt_free_table_info(newinfo);
597 return NULL;
598 }
599 }
600
601 return newinfo;
602}
603EXPORT_SYMBOL(xt_alloc_table_info);
604
605void xt_free_table_info(struct xt_table_info *info)
606{
607 int cpu;
608
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700609 for_each_possible_cpu(cpu) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800610 if (info->size <= PAGE_SIZE)
611 kfree(info->entries[cpu]);
612 else
613 vfree(info->entries[cpu]);
614 }
615 kfree(info);
616}
617EXPORT_SYMBOL(xt_free_table_info);
618
619/* Find table by name, grabs mutex & ref. Returns ERR_PTR() on error. */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200620struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af,
621 const char *name)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800622{
623 struct xt_table *t;
624
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800625 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800626 return ERR_PTR(-EINTR);
627
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800628 list_for_each_entry(t, &net->xt.tables[af], list)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800629 if (strcmp(t->name, name) == 0 && try_module_get(t->me))
630 return t;
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800631 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800632 return NULL;
633}
634EXPORT_SYMBOL_GPL(xt_find_table_lock);
635
636void xt_table_unlock(struct xt_table *table)
637{
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800638 mutex_unlock(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800639}
640EXPORT_SYMBOL_GPL(xt_table_unlock);
641
Dmitry Mishin27229712006-04-01 02:25:19 -0800642#ifdef CONFIG_COMPAT
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200643void xt_compat_lock(u_int8_t af)
Dmitry Mishin27229712006-04-01 02:25:19 -0800644{
645 mutex_lock(&xt[af].compat_mutex);
646}
647EXPORT_SYMBOL_GPL(xt_compat_lock);
648
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200649void xt_compat_unlock(u_int8_t af)
Dmitry Mishin27229712006-04-01 02:25:19 -0800650{
651 mutex_unlock(&xt[af].compat_mutex);
652}
653EXPORT_SYMBOL_GPL(xt_compat_unlock);
654#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -0800655
656struct xt_table_info *
657xt_replace_table(struct xt_table *table,
658 unsigned int num_counters,
659 struct xt_table_info *newinfo,
660 int *error)
661{
662 struct xt_table_info *oldinfo, *private;
663
664 /* Do the substitution. */
665 write_lock_bh(&table->lock);
666 private = table->private;
667 /* Check inside lock: is the old number correct? */
668 if (num_counters != private->number) {
669 duprintf("num_counters != table->private->number (%u/%u)\n",
670 num_counters, private->number);
671 write_unlock_bh(&table->lock);
672 *error = -EAGAIN;
673 return NULL;
674 }
675 oldinfo = private;
676 table->private = newinfo;
677 newinfo->initial_entries = oldinfo->initial_entries;
678 write_unlock_bh(&table->lock);
679
680 return oldinfo;
681}
682EXPORT_SYMBOL_GPL(xt_replace_table);
683
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800684struct xt_table *xt_register_table(struct net *net, struct xt_table *table,
Alexey Dobriyana98da112008-01-31 04:01:49 -0800685 struct xt_table_info *bootstrap,
686 struct xt_table_info *newinfo)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800687{
688 int ret;
689 struct xt_table_info *private;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700690 struct xt_table *t;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800691
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800692 /* Don't add one object to multiple lists. */
693 table = kmemdup(table, sizeof(struct xt_table), GFP_KERNEL);
694 if (!table) {
695 ret = -ENOMEM;
696 goto out;
697 }
698
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800699 ret = mutex_lock_interruptible(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800700 if (ret != 0)
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800701 goto out_free;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800702
703 /* Don't autoload: we'd eat our tail... */
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800704 list_for_each_entry(t, &net->xt.tables[table->af], list) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700705 if (strcmp(t->name, table->name) == 0) {
706 ret = -EEXIST;
707 goto unlock;
708 }
Harald Welte2e4e6a12006-01-12 13:30:04 -0800709 }
710
711 /* Simplifies replace_table code. */
712 table->private = bootstrap;
Dmitry Mishin91536b72006-04-24 17:18:25 -0700713 rwlock_init(&table->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800714 if (!xt_replace_table(table, 0, newinfo, &ret))
715 goto unlock;
716
717 private = table->private;
718 duprintf("table->private->number = %u\n", private->number);
719
720 /* save number of initial entries */
721 private->initial_entries = private->number;
722
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800723 list_add(&table->list, &net->xt.tables[table->af]);
Alexey Dobriyana98da112008-01-31 04:01:49 -0800724 mutex_unlock(&xt[table->af].mutex);
725 return table;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800726
Harald Welte2e4e6a12006-01-12 13:30:04 -0800727 unlock:
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800728 mutex_unlock(&xt[table->af].mutex);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800729out_free:
730 kfree(table);
Alexey Dobriyana98da112008-01-31 04:01:49 -0800731out:
732 return ERR_PTR(ret);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800733}
734EXPORT_SYMBOL_GPL(xt_register_table);
735
736void *xt_unregister_table(struct xt_table *table)
737{
738 struct xt_table_info *private;
739
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800740 mutex_lock(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800741 private = table->private;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700742 list_del(&table->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800743 mutex_unlock(&xt[table->af].mutex);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800744 kfree(table);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800745
746 return private;
747}
748EXPORT_SYMBOL_GPL(xt_unregister_table);
749
750#ifdef CONFIG_PROC_FS
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800751struct xt_names_priv {
752 struct seq_net_private p;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200753 u_int8_t af;
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800754};
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800755static void *xt_table_seq_start(struct seq_file *seq, loff_t *pos)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800756{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800757 struct xt_names_priv *priv = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900758 struct net *net = seq_file_net(seq);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200759 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800760
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800761 mutex_lock(&xt[af].mutex);
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800762 return seq_list_start(&net->xt.tables[af], *pos);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800763}
764
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800765static void *xt_table_seq_next(struct seq_file *seq, void *v, loff_t *pos)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800766{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800767 struct xt_names_priv *priv = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900768 struct net *net = seq_file_net(seq);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200769 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800770
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800771 return seq_list_next(v, &net->xt.tables[af], pos);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800772}
773
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800774static void xt_table_seq_stop(struct seq_file *seq, void *v)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800775{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800776 struct xt_names_priv *priv = seq->private;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200777 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800778
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800779 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800780}
781
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800782static int xt_table_seq_show(struct seq_file *seq, void *v)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800783{
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800784 struct xt_table *table = list_entry(v, struct xt_table, list);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800785
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800786 if (strlen(table->name))
787 return seq_printf(seq, "%s\n", table->name);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800788 else
789 return 0;
790}
791
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800792static const struct seq_operations xt_table_seq_ops = {
793 .start = xt_table_seq_start,
794 .next = xt_table_seq_next,
795 .stop = xt_table_seq_stop,
796 .show = xt_table_seq_show,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800797};
798
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800799static int xt_table_open(struct inode *inode, struct file *file)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800800{
801 int ret;
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800802 struct xt_names_priv *priv;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800803
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800804 ret = seq_open_net(inode, file, &xt_table_seq_ops,
805 sizeof(struct xt_names_priv));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800806 if (!ret) {
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800807 priv = ((struct seq_file *)file->private_data)->private;
808 priv->af = (unsigned long)PDE(inode)->data;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800809 }
Harald Welte2e4e6a12006-01-12 13:30:04 -0800810 return ret;
811}
812
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800813static const struct file_operations xt_table_ops = {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800814 .owner = THIS_MODULE,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800815 .open = xt_table_open,
816 .read = seq_read,
817 .llseek = seq_lseek,
Pavel Emelyanov0e93bb92008-04-29 03:15:35 -0700818 .release = seq_release_net,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800819};
820
821static void *xt_match_seq_start(struct seq_file *seq, loff_t *pos)
822{
823 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
824 u_int16_t af = (unsigned long)pde->data;
825
826 mutex_lock(&xt[af].mutex);
827 return seq_list_start(&xt[af].match, *pos);
828}
829
830static void *xt_match_seq_next(struct seq_file *seq, void *v, loff_t *pos)
831{
832 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
833 u_int16_t af = (unsigned long)pde->data;
834
835 return seq_list_next(v, &xt[af].match, pos);
836}
837
838static void xt_match_seq_stop(struct seq_file *seq, void *v)
839{
840 struct proc_dir_entry *pde = seq->private;
841 u_int16_t af = (unsigned long)pde->data;
842
843 mutex_unlock(&xt[af].mutex);
844}
845
846static int xt_match_seq_show(struct seq_file *seq, void *v)
847{
848 struct xt_match *match = list_entry(v, struct xt_match, list);
849
850 if (strlen(match->name))
851 return seq_printf(seq, "%s\n", match->name);
852 else
853 return 0;
854}
855
856static const struct seq_operations xt_match_seq_ops = {
857 .start = xt_match_seq_start,
858 .next = xt_match_seq_next,
859 .stop = xt_match_seq_stop,
860 .show = xt_match_seq_show,
861};
862
863static int xt_match_open(struct inode *inode, struct file *file)
864{
865 int ret;
866
867 ret = seq_open(file, &xt_match_seq_ops);
868 if (!ret) {
869 struct seq_file *seq = file->private_data;
870
871 seq->private = PDE(inode);
872 }
873 return ret;
874}
875
876static const struct file_operations xt_match_ops = {
877 .owner = THIS_MODULE,
878 .open = xt_match_open,
879 .read = seq_read,
880 .llseek = seq_lseek,
881 .release = seq_release,
882};
883
884static void *xt_target_seq_start(struct seq_file *seq, loff_t *pos)
885{
886 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
887 u_int16_t af = (unsigned long)pde->data;
888
889 mutex_lock(&xt[af].mutex);
890 return seq_list_start(&xt[af].target, *pos);
891}
892
893static void *xt_target_seq_next(struct seq_file *seq, void *v, loff_t *pos)
894{
895 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
896 u_int16_t af = (unsigned long)pde->data;
897
898 return seq_list_next(v, &xt[af].target, pos);
899}
900
901static void xt_target_seq_stop(struct seq_file *seq, void *v)
902{
903 struct proc_dir_entry *pde = seq->private;
904 u_int16_t af = (unsigned long)pde->data;
905
906 mutex_unlock(&xt[af].mutex);
907}
908
909static int xt_target_seq_show(struct seq_file *seq, void *v)
910{
911 struct xt_target *target = list_entry(v, struct xt_target, list);
912
913 if (strlen(target->name))
914 return seq_printf(seq, "%s\n", target->name);
915 else
916 return 0;
917}
918
919static const struct seq_operations xt_target_seq_ops = {
920 .start = xt_target_seq_start,
921 .next = xt_target_seq_next,
922 .stop = xt_target_seq_stop,
923 .show = xt_target_seq_show,
924};
925
926static int xt_target_open(struct inode *inode, struct file *file)
927{
928 int ret;
929
930 ret = seq_open(file, &xt_target_seq_ops);
931 if (!ret) {
932 struct seq_file *seq = file->private_data;
933
934 seq->private = PDE(inode);
935 }
936 return ret;
937}
938
939static const struct file_operations xt_target_ops = {
940 .owner = THIS_MODULE,
941 .open = xt_target_open,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800942 .read = seq_read,
943 .llseek = seq_lseek,
944 .release = seq_release,
945};
946
947#define FORMAT_TABLES "_tables_names"
948#define FORMAT_MATCHES "_tables_matches"
949#define FORMAT_TARGETS "_tables_targets"
950
951#endif /* CONFIG_PROC_FS */
952
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200953int xt_proto_init(struct net *net, u_int8_t af)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800954{
955#ifdef CONFIG_PROC_FS
956 char buf[XT_FUNCTION_MAXNAMELEN];
957 struct proc_dir_entry *proc;
958#endif
959
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +0200960 if (af >= ARRAY_SIZE(xt_prefix))
Harald Welte2e4e6a12006-01-12 13:30:04 -0800961 return -EINVAL;
962
963
964#ifdef CONFIG_PROC_FS
Tobias Klauserce18afe2007-03-14 16:36:16 -0700965 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800966 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -0700967 proc = proc_create_data(buf, 0440, net->proc_net, &xt_table_ops,
968 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800969 if (!proc)
970 goto out;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800971
Tobias Klauserce18afe2007-03-14 16:36:16 -0700972 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800973 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -0700974 proc = proc_create_data(buf, 0440, net->proc_net, &xt_match_ops,
975 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800976 if (!proc)
977 goto out_remove_tables;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800978
Tobias Klauserce18afe2007-03-14 16:36:16 -0700979 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800980 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -0700981 proc = proc_create_data(buf, 0440, net->proc_net, &xt_target_ops,
982 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800983 if (!proc)
984 goto out_remove_matches;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800985#endif
986
987 return 0;
988
989#ifdef CONFIG_PROC_FS
990out_remove_matches:
Tobias Klauserce18afe2007-03-14 16:36:16 -0700991 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800992 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -0800993 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800994
995out_remove_tables:
Tobias Klauserce18afe2007-03-14 16:36:16 -0700996 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800997 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -0800998 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800999out:
1000 return -1;
1001#endif
1002}
1003EXPORT_SYMBOL_GPL(xt_proto_init);
1004
Jan Engelhardt76108ce2008-10-08 11:35:00 +02001005void xt_proto_fini(struct net *net, u_int8_t af)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001006{
1007#ifdef CONFIG_PROC_FS
1008 char buf[XT_FUNCTION_MAXNAMELEN];
1009
Tobias Klauserce18afe2007-03-14 16:36:16 -07001010 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001011 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08001012 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001013
Tobias Klauserce18afe2007-03-14 16:36:16 -07001014 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001015 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08001016 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001017
Tobias Klauserce18afe2007-03-14 16:36:16 -07001018 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001019 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08001020 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001021#endif /*CONFIG_PROC_FS*/
1022}
1023EXPORT_SYMBOL_GPL(xt_proto_fini);
1024
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001025static int __net_init xt_net_init(struct net *net)
1026{
1027 int i;
1028
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001029 for (i = 0; i < NFPROTO_NUMPROTO; i++)
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001030 INIT_LIST_HEAD(&net->xt.tables[i]);
1031 return 0;
1032}
1033
1034static struct pernet_operations xt_net_ops = {
1035 .init = xt_net_init,
1036};
Harald Welte2e4e6a12006-01-12 13:30:04 -08001037
1038static int __init xt_init(void)
1039{
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001040 int i, rv;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001041
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001042 xt = kmalloc(sizeof(struct xt_af) * NFPROTO_NUMPROTO, GFP_KERNEL);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001043 if (!xt)
1044 return -ENOMEM;
1045
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001046 for (i = 0; i < NFPROTO_NUMPROTO; i++) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -08001047 mutex_init(&xt[i].mutex);
Dmitry Mishin27229712006-04-01 02:25:19 -08001048#ifdef CONFIG_COMPAT
1049 mutex_init(&xt[i].compat_mutex);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001050 xt[i].compat_offsets = NULL;
Dmitry Mishin27229712006-04-01 02:25:19 -08001051#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -08001052 INIT_LIST_HEAD(&xt[i].target);
1053 INIT_LIST_HEAD(&xt[i].match);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001054 }
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001055 rv = register_pernet_subsys(&xt_net_ops);
1056 if (rv < 0)
1057 kfree(xt);
1058 return rv;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001059}
1060
1061static void __exit xt_fini(void)
1062{
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001063 unregister_pernet_subsys(&xt_net_ops);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001064 kfree(xt);
1065}
1066
1067module_init(xt_init);
1068module_exit(xt_fini);
1069