blob: bfbf521f6ea5a4bba99387781d9033cba0ff30a1 [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 }
Patrick McHardy656caff2009-01-12 00:06:04 +0000276
277 if (af != NFPROTO_UNSPEC && !have_rev)
278 return match_revfn(NFPROTO_UNSPEC, name, revision, bestp);
279
Harald Welte2e4e6a12006-01-12 13:30:04 -0800280 return have_rev;
281}
282
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200283static int target_revfn(u8 af, const char *name, u8 revision, int *bestp)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800284{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200285 const struct xt_target *t;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800286 int have_rev = 0;
287
288 list_for_each_entry(t, &xt[af].target, list) {
289 if (strcmp(t->name, name) == 0) {
290 if (t->revision > *bestp)
291 *bestp = t->revision;
292 if (t->revision == revision)
293 have_rev = 1;
294 }
295 }
Patrick McHardy656caff2009-01-12 00:06:04 +0000296
297 if (af != NFPROTO_UNSPEC && !have_rev)
298 return target_revfn(NFPROTO_UNSPEC, name, revision, bestp);
299
Harald Welte2e4e6a12006-01-12 13:30:04 -0800300 return have_rev;
301}
302
303/* Returns true or false (if no such extension at all) */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200304int xt_find_revision(u8 af, const char *name, u8 revision, int target,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800305 int *err)
306{
307 int have_rev, best = -1;
308
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800309 if (mutex_lock_interruptible(&xt[af].mutex) != 0) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800310 *err = -EINTR;
311 return 1;
312 }
313 if (target == 1)
314 have_rev = target_revfn(af, name, revision, &best);
315 else
316 have_rev = match_revfn(af, name, revision, &best);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800317 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800318
319 /* Nothing at all? Return 0 to try loading module. */
320 if (best == -1) {
321 *err = -ENOENT;
322 return 0;
323 }
324
325 *err = best;
326 if (!have_rev)
327 *err = -EPROTONOSUPPORT;
328 return 1;
329}
330EXPORT_SYMBOL_GPL(xt_find_revision);
331
Jan Engelhardt916a9172008-10-08 11:35:20 +0200332int xt_check_match(struct xt_mtchk_param *par,
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200333 unsigned int size, u_int8_t proto, bool inv_proto)
Patrick McHardy37f9f732006-03-20 17:59:06 -0800334{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200335 if (XT_ALIGN(par->match->matchsize) != size &&
336 par->match->matchsize != -1) {
Jan Engelhardt043ef462008-10-08 11:35:15 +0200337 /*
338 * ebt_among is exempt from centralized matchsize checking
339 * because it uses a dynamic-size data set.
340 */
Patrick McHardy37f9f732006-03-20 17:59:06 -0800341 printk("%s_tables: %s match: invalid size %Zu != %u\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200342 xt_prefix[par->family], par->match->name,
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200343 XT_ALIGN(par->match->matchsize), size);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800344 return -EINVAL;
345 }
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200346 if (par->match->table != NULL &&
347 strcmp(par->match->table, par->table) != 0) {
Patrick McHardy37f9f732006-03-20 17:59:06 -0800348 printk("%s_tables: %s match: only valid in %s table, not %s\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200349 xt_prefix[par->family], par->match->name,
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200350 par->match->table, par->table);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800351 return -EINVAL;
352 }
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200353 if (par->match->hooks && (par->hook_mask & ~par->match->hooks) != 0) {
Jan Engelhardt102befa2008-10-08 11:35:15 +0200354 printk("%s_tables: %s match: bad hook_mask %#x/%#x\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200355 xt_prefix[par->family], par->match->name,
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200356 par->hook_mask, par->match->hooks);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800357 return -EINVAL;
358 }
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200359 if (par->match->proto && (par->match->proto != proto || inv_proto)) {
Patrick McHardy37f9f732006-03-20 17:59:06 -0800360 printk("%s_tables: %s match: only valid for protocol %u\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200361 xt_prefix[par->family], par->match->name,
362 par->match->proto);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800363 return -EINVAL;
364 }
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200365 if (par->match->checkentry != NULL && !par->match->checkentry(par))
Jan Engelhardt367c6792008-10-08 11:35:17 +0200366 return -EINVAL;
Patrick McHardy37f9f732006-03-20 17:59:06 -0800367 return 0;
368}
369EXPORT_SYMBOL_GPL(xt_check_match);
370
Dmitry Mishin27229712006-04-01 02:25:19 -0800371#ifdef CONFIG_COMPAT
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200372int xt_compat_add_offset(u_int8_t af, unsigned int offset, short delta)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800373{
374 struct compat_delta *tmp;
375
376 tmp = kmalloc(sizeof(struct compat_delta), GFP_KERNEL);
377 if (!tmp)
378 return -ENOMEM;
379
380 tmp->offset = offset;
381 tmp->delta = delta;
382
383 if (xt[af].compat_offsets) {
384 tmp->next = xt[af].compat_offsets->next;
385 xt[af].compat_offsets->next = tmp;
386 } else {
387 xt[af].compat_offsets = tmp;
388 tmp->next = NULL;
389 }
390 return 0;
391}
392EXPORT_SYMBOL_GPL(xt_compat_add_offset);
393
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200394void xt_compat_flush_offsets(u_int8_t af)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800395{
396 struct compat_delta *tmp, *next;
397
398 if (xt[af].compat_offsets) {
399 for (tmp = xt[af].compat_offsets; tmp; tmp = next) {
400 next = tmp->next;
401 kfree(tmp);
402 }
403 xt[af].compat_offsets = NULL;
404 }
405}
406EXPORT_SYMBOL_GPL(xt_compat_flush_offsets);
407
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200408short xt_compat_calc_jump(u_int8_t af, unsigned int offset)
Patrick McHardyb386d9f2007-12-17 21:47:48 -0800409{
410 struct compat_delta *tmp;
411 short delta;
412
413 for (tmp = xt[af].compat_offsets, delta = 0; tmp; tmp = tmp->next)
414 if (tmp->offset < offset)
415 delta += tmp->delta;
416 return delta;
417}
418EXPORT_SYMBOL_GPL(xt_compat_calc_jump);
419
Jan Engelhardt5452e422008-04-14 11:15:35 +0200420int xt_compat_match_offset(const struct xt_match *match)
Dmitry Mishin27229712006-04-01 02:25:19 -0800421{
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700422 u_int16_t csize = match->compatsize ? : match->matchsize;
423 return XT_ALIGN(match->matchsize) - COMPAT_XT_ALIGN(csize);
Dmitry Mishin27229712006-04-01 02:25:19 -0800424}
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700425EXPORT_SYMBOL_GPL(xt_compat_match_offset);
426
Patrick McHardy89566952007-12-17 21:46:40 -0800427int xt_compat_match_from_user(struct xt_entry_match *m, void **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800428 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700429{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200430 const struct xt_match *match = m->u.kernel.match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700431 struct compat_xt_entry_match *cm = (struct compat_xt_entry_match *)m;
432 int pad, off = xt_compat_match_offset(match);
433 u_int16_t msize = cm->u.user.match_size;
434
435 m = *dstptr;
436 memcpy(m, cm, sizeof(*cm));
437 if (match->compat_from_user)
438 match->compat_from_user(m->data, cm->data);
439 else
440 memcpy(m->data, cm->data, msize - sizeof(*cm));
441 pad = XT_ALIGN(match->matchsize) - match->matchsize;
442 if (pad > 0)
443 memset(m->data + match->matchsize, 0, pad);
444
445 msize += off;
446 m->u.user.match_size = msize;
447
448 *size += off;
449 *dstptr += msize;
Patrick McHardy89566952007-12-17 21:46:40 -0800450 return 0;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700451}
452EXPORT_SYMBOL_GPL(xt_compat_match_from_user);
453
454int xt_compat_match_to_user(struct xt_entry_match *m, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800455 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700456{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200457 const struct xt_match *match = m->u.kernel.match;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700458 struct compat_xt_entry_match __user *cm = *dstptr;
459 int off = xt_compat_match_offset(match);
460 u_int16_t msize = m->u.user.match_size - off;
461
462 if (copy_to_user(cm, m, sizeof(*cm)) ||
Patrick McHardya18aa312007-12-12 10:35:16 -0800463 put_user(msize, &cm->u.user.match_size) ||
464 copy_to_user(cm->u.user.name, m->u.kernel.match->name,
465 strlen(m->u.kernel.match->name) + 1))
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800466 return -EFAULT;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700467
468 if (match->compat_to_user) {
469 if (match->compat_to_user((void __user *)cm->data, m->data))
470 return -EFAULT;
471 } else {
472 if (copy_to_user(cm->data, m->data, msize - sizeof(*cm)))
473 return -EFAULT;
474 }
475
476 *size -= off;
477 *dstptr += msize;
478 return 0;
479}
480EXPORT_SYMBOL_GPL(xt_compat_match_to_user);
481#endif /* CONFIG_COMPAT */
Dmitry Mishin27229712006-04-01 02:25:19 -0800482
Jan Engelhardt916a9172008-10-08 11:35:20 +0200483int xt_check_target(struct xt_tgchk_param *par,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200484 unsigned int size, u_int8_t proto, bool inv_proto)
Patrick McHardy37f9f732006-03-20 17:59:06 -0800485{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200486 if (XT_ALIGN(par->target->targetsize) != size) {
Patrick McHardy37f9f732006-03-20 17:59:06 -0800487 printk("%s_tables: %s target: invalid size %Zu != %u\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200488 xt_prefix[par->family], par->target->name,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200489 XT_ALIGN(par->target->targetsize), size);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800490 return -EINVAL;
491 }
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200492 if (par->target->table != NULL &&
493 strcmp(par->target->table, par->table) != 0) {
Patrick McHardy37f9f732006-03-20 17:59:06 -0800494 printk("%s_tables: %s target: only valid in %s table, not %s\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200495 xt_prefix[par->family], par->target->name,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200496 par->target->table, par->table);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800497 return -EINVAL;
498 }
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200499 if (par->target->hooks && (par->hook_mask & ~par->target->hooks) != 0) {
Jan Engelhardt102befa2008-10-08 11:35:15 +0200500 printk("%s_tables: %s target: bad hook_mask %#x/%#x\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200501 xt_prefix[par->family], par->target->name,
502 par->hook_mask, par->target->hooks);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800503 return -EINVAL;
504 }
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200505 if (par->target->proto && (par->target->proto != proto || inv_proto)) {
Patrick McHardy37f9f732006-03-20 17:59:06 -0800506 printk("%s_tables: %s target: only valid for protocol %u\n",
Jan Engelhardt916a9172008-10-08 11:35:20 +0200507 xt_prefix[par->family], par->target->name,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200508 par->target->proto);
Patrick McHardy37f9f732006-03-20 17:59:06 -0800509 return -EINVAL;
510 }
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200511 if (par->target->checkentry != NULL && !par->target->checkentry(par))
Jan Engelhardt367c6792008-10-08 11:35:17 +0200512 return -EINVAL;
Patrick McHardy37f9f732006-03-20 17:59:06 -0800513 return 0;
514}
515EXPORT_SYMBOL_GPL(xt_check_target);
516
Dmitry Mishin27229712006-04-01 02:25:19 -0800517#ifdef CONFIG_COMPAT
Jan Engelhardt5452e422008-04-14 11:15:35 +0200518int xt_compat_target_offset(const struct xt_target *target)
Dmitry Mishin27229712006-04-01 02:25:19 -0800519{
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700520 u_int16_t csize = target->compatsize ? : target->targetsize;
521 return XT_ALIGN(target->targetsize) - COMPAT_XT_ALIGN(csize);
Dmitry Mishin27229712006-04-01 02:25:19 -0800522}
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700523EXPORT_SYMBOL_GPL(xt_compat_target_offset);
524
525void xt_compat_target_from_user(struct xt_entry_target *t, void **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800526 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700527{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200528 const struct xt_target *target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700529 struct compat_xt_entry_target *ct = (struct compat_xt_entry_target *)t;
530 int pad, off = xt_compat_target_offset(target);
531 u_int16_t tsize = ct->u.user.target_size;
532
533 t = *dstptr;
534 memcpy(t, ct, sizeof(*ct));
535 if (target->compat_from_user)
536 target->compat_from_user(t->data, ct->data);
537 else
538 memcpy(t->data, ct->data, tsize - sizeof(*ct));
539 pad = XT_ALIGN(target->targetsize) - target->targetsize;
540 if (pad > 0)
541 memset(t->data + target->targetsize, 0, pad);
542
543 tsize += off;
544 t->u.user.target_size = tsize;
545
546 *size += off;
547 *dstptr += tsize;
548}
549EXPORT_SYMBOL_GPL(xt_compat_target_from_user);
550
551int xt_compat_target_to_user(struct xt_entry_target *t, void __user **dstptr,
Patrick McHardyb0a63632008-01-31 04:10:18 -0800552 unsigned int *size)
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700553{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200554 const struct xt_target *target = t->u.kernel.target;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700555 struct compat_xt_entry_target __user *ct = *dstptr;
556 int off = xt_compat_target_offset(target);
557 u_int16_t tsize = t->u.user.target_size - off;
558
559 if (copy_to_user(ct, t, sizeof(*ct)) ||
Patrick McHardya18aa312007-12-12 10:35:16 -0800560 put_user(tsize, &ct->u.user.target_size) ||
561 copy_to_user(ct->u.user.name, t->u.kernel.target->name,
562 strlen(t->u.kernel.target->name) + 1))
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800563 return -EFAULT;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700564
565 if (target->compat_to_user) {
566 if (target->compat_to_user((void __user *)ct->data, t->data))
567 return -EFAULT;
568 } else {
569 if (copy_to_user(ct->data, t->data, tsize - sizeof(*ct)))
570 return -EFAULT;
571 }
572
573 *size -= off;
574 *dstptr += tsize;
575 return 0;
576}
577EXPORT_SYMBOL_GPL(xt_compat_target_to_user);
Dmitry Mishin27229712006-04-01 02:25:19 -0800578#endif
579
Harald Welte2e4e6a12006-01-12 13:30:04 -0800580struct xt_table_info *xt_alloc_table_info(unsigned int size)
581{
582 struct xt_table_info *newinfo;
583 int cpu;
584
585 /* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */
586 if ((SMP_ALIGN(size) >> PAGE_SHIFT) + 2 > num_physpages)
587 return NULL;
588
Eric Dumazet259d4e42007-12-04 23:24:56 -0800589 newinfo = kzalloc(XT_TABLE_INFO_SZ, GFP_KERNEL);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800590 if (!newinfo)
591 return NULL;
592
593 newinfo->size = size;
594
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700595 for_each_possible_cpu(cpu) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800596 if (size <= PAGE_SIZE)
597 newinfo->entries[cpu] = kmalloc_node(size,
598 GFP_KERNEL,
599 cpu_to_node(cpu));
600 else
601 newinfo->entries[cpu] = vmalloc_node(size,
602 cpu_to_node(cpu));
603
604 if (newinfo->entries[cpu] == NULL) {
605 xt_free_table_info(newinfo);
606 return NULL;
607 }
608 }
609
610 return newinfo;
611}
612EXPORT_SYMBOL(xt_alloc_table_info);
613
614void xt_free_table_info(struct xt_table_info *info)
615{
616 int cpu;
617
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700618 for_each_possible_cpu(cpu) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800619 if (info->size <= PAGE_SIZE)
620 kfree(info->entries[cpu]);
621 else
622 vfree(info->entries[cpu]);
623 }
624 kfree(info);
625}
626EXPORT_SYMBOL(xt_free_table_info);
627
628/* Find table by name, grabs mutex & ref. Returns ERR_PTR() on error. */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200629struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af,
630 const char *name)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800631{
632 struct xt_table *t;
633
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800634 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800635 return ERR_PTR(-EINTR);
636
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800637 list_for_each_entry(t, &net->xt.tables[af], list)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800638 if (strcmp(t->name, name) == 0 && try_module_get(t->me))
639 return t;
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800640 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800641 return NULL;
642}
643EXPORT_SYMBOL_GPL(xt_find_table_lock);
644
645void xt_table_unlock(struct xt_table *table)
646{
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800647 mutex_unlock(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800648}
649EXPORT_SYMBOL_GPL(xt_table_unlock);
650
Dmitry Mishin27229712006-04-01 02:25:19 -0800651#ifdef CONFIG_COMPAT
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200652void xt_compat_lock(u_int8_t af)
Dmitry Mishin27229712006-04-01 02:25:19 -0800653{
654 mutex_lock(&xt[af].compat_mutex);
655}
656EXPORT_SYMBOL_GPL(xt_compat_lock);
657
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200658void xt_compat_unlock(u_int8_t af)
Dmitry Mishin27229712006-04-01 02:25:19 -0800659{
660 mutex_unlock(&xt[af].compat_mutex);
661}
662EXPORT_SYMBOL_GPL(xt_compat_unlock);
663#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -0800664
665struct xt_table_info *
666xt_replace_table(struct xt_table *table,
667 unsigned int num_counters,
668 struct xt_table_info *newinfo,
669 int *error)
670{
671 struct xt_table_info *oldinfo, *private;
672
673 /* Do the substitution. */
674 write_lock_bh(&table->lock);
675 private = table->private;
676 /* Check inside lock: is the old number correct? */
677 if (num_counters != private->number) {
678 duprintf("num_counters != table->private->number (%u/%u)\n",
679 num_counters, private->number);
680 write_unlock_bh(&table->lock);
681 *error = -EAGAIN;
682 return NULL;
683 }
684 oldinfo = private;
685 table->private = newinfo;
686 newinfo->initial_entries = oldinfo->initial_entries;
687 write_unlock_bh(&table->lock);
688
689 return oldinfo;
690}
691EXPORT_SYMBOL_GPL(xt_replace_table);
692
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800693struct xt_table *xt_register_table(struct net *net, struct xt_table *table,
Alexey Dobriyana98da112008-01-31 04:01:49 -0800694 struct xt_table_info *bootstrap,
695 struct xt_table_info *newinfo)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800696{
697 int ret;
698 struct xt_table_info *private;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700699 struct xt_table *t;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800700
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800701 /* Don't add one object to multiple lists. */
702 table = kmemdup(table, sizeof(struct xt_table), GFP_KERNEL);
703 if (!table) {
704 ret = -ENOMEM;
705 goto out;
706 }
707
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800708 ret = mutex_lock_interruptible(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800709 if (ret != 0)
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800710 goto out_free;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800711
712 /* Don't autoload: we'd eat our tail... */
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800713 list_for_each_entry(t, &net->xt.tables[table->af], list) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700714 if (strcmp(t->name, table->name) == 0) {
715 ret = -EEXIST;
716 goto unlock;
717 }
Harald Welte2e4e6a12006-01-12 13:30:04 -0800718 }
719
720 /* Simplifies replace_table code. */
721 table->private = bootstrap;
Dmitry Mishin91536b72006-04-24 17:18:25 -0700722 rwlock_init(&table->lock);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800723 if (!xt_replace_table(table, 0, newinfo, &ret))
724 goto unlock;
725
726 private = table->private;
727 duprintf("table->private->number = %u\n", private->number);
728
729 /* save number of initial entries */
730 private->initial_entries = private->number;
731
Alexey Dobriyan8d870052008-01-31 04:02:13 -0800732 list_add(&table->list, &net->xt.tables[table->af]);
Alexey Dobriyana98da112008-01-31 04:01:49 -0800733 mutex_unlock(&xt[table->af].mutex);
734 return table;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800735
Harald Welte2e4e6a12006-01-12 13:30:04 -0800736 unlock:
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800737 mutex_unlock(&xt[table->af].mutex);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800738out_free:
739 kfree(table);
Alexey Dobriyana98da112008-01-31 04:01:49 -0800740out:
741 return ERR_PTR(ret);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800742}
743EXPORT_SYMBOL_GPL(xt_register_table);
744
745void *xt_unregister_table(struct xt_table *table)
746{
747 struct xt_table_info *private;
748
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800749 mutex_lock(&xt[table->af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800750 private = table->private;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700751 list_del(&table->list);
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800752 mutex_unlock(&xt[table->af].mutex);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800753 kfree(table);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800754
755 return private;
756}
757EXPORT_SYMBOL_GPL(xt_unregister_table);
758
759#ifdef CONFIG_PROC_FS
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800760struct xt_names_priv {
761 struct seq_net_private p;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200762 u_int8_t af;
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800763};
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800764static void *xt_table_seq_start(struct seq_file *seq, loff_t *pos)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800765{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800766 struct xt_names_priv *priv = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900767 struct net *net = seq_file_net(seq);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200768 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800769
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800770 mutex_lock(&xt[af].mutex);
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800771 return seq_list_start(&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_next(struct seq_file *seq, void *v, loff_t *pos)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800775{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800776 struct xt_names_priv *priv = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900777 struct net *net = seq_file_net(seq);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200778 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800779
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800780 return seq_list_next(v, &net->xt.tables[af], pos);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800781}
782
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800783static void xt_table_seq_stop(struct seq_file *seq, void *v)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800784{
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800785 struct xt_names_priv *priv = seq->private;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200786 u_int8_t af = priv->af;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800787
Ingo Molnar9e19bb62006-03-25 01:41:10 -0800788 mutex_unlock(&xt[af].mutex);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800789}
790
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800791static int xt_table_seq_show(struct seq_file *seq, void *v)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800792{
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800793 struct xt_table *table = list_entry(v, struct xt_table, list);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800794
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800795 if (strlen(table->name))
796 return seq_printf(seq, "%s\n", table->name);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800797 else
798 return 0;
799}
800
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800801static const struct seq_operations xt_table_seq_ops = {
802 .start = xt_table_seq_start,
803 .next = xt_table_seq_next,
804 .stop = xt_table_seq_stop,
805 .show = xt_table_seq_show,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800806};
807
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800808static int xt_table_open(struct inode *inode, struct file *file)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800809{
810 int ret;
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800811 struct xt_names_priv *priv;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800812
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800813 ret = seq_open_net(inode, file, &xt_table_seq_ops,
814 sizeof(struct xt_names_priv));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800815 if (!ret) {
Alexey Dobriyan715cf352008-01-31 04:49:16 -0800816 priv = ((struct seq_file *)file->private_data)->private;
817 priv->af = (unsigned long)PDE(inode)->data;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800818 }
Harald Welte2e4e6a12006-01-12 13:30:04 -0800819 return ret;
820}
821
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800822static const struct file_operations xt_table_ops = {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800823 .owner = THIS_MODULE,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800824 .open = xt_table_open,
825 .read = seq_read,
826 .llseek = seq_lseek,
Pavel Emelyanov0e93bb92008-04-29 03:15:35 -0700827 .release = seq_release_net,
Alexey Dobriyan025d93d2008-01-31 04:48:54 -0800828};
829
830static void *xt_match_seq_start(struct seq_file *seq, 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 mutex_lock(&xt[af].mutex);
836 return seq_list_start(&xt[af].match, *pos);
837}
838
839static void *xt_match_seq_next(struct seq_file *seq, void *v, loff_t *pos)
840{
841 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
842 u_int16_t af = (unsigned long)pde->data;
843
844 return seq_list_next(v, &xt[af].match, pos);
845}
846
847static void xt_match_seq_stop(struct seq_file *seq, void *v)
848{
849 struct proc_dir_entry *pde = seq->private;
850 u_int16_t af = (unsigned long)pde->data;
851
852 mutex_unlock(&xt[af].mutex);
853}
854
855static int xt_match_seq_show(struct seq_file *seq, void *v)
856{
857 struct xt_match *match = list_entry(v, struct xt_match, list);
858
859 if (strlen(match->name))
860 return seq_printf(seq, "%s\n", match->name);
861 else
862 return 0;
863}
864
865static const struct seq_operations xt_match_seq_ops = {
866 .start = xt_match_seq_start,
867 .next = xt_match_seq_next,
868 .stop = xt_match_seq_stop,
869 .show = xt_match_seq_show,
870};
871
872static int xt_match_open(struct inode *inode, struct file *file)
873{
874 int ret;
875
876 ret = seq_open(file, &xt_match_seq_ops);
877 if (!ret) {
878 struct seq_file *seq = file->private_data;
879
880 seq->private = PDE(inode);
881 }
882 return ret;
883}
884
885static const struct file_operations xt_match_ops = {
886 .owner = THIS_MODULE,
887 .open = xt_match_open,
888 .read = seq_read,
889 .llseek = seq_lseek,
890 .release = seq_release,
891};
892
893static void *xt_target_seq_start(struct seq_file *seq, 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 mutex_lock(&xt[af].mutex);
899 return seq_list_start(&xt[af].target, *pos);
900}
901
902static void *xt_target_seq_next(struct seq_file *seq, void *v, loff_t *pos)
903{
904 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
905 u_int16_t af = (unsigned long)pde->data;
906
907 return seq_list_next(v, &xt[af].target, pos);
908}
909
910static void xt_target_seq_stop(struct seq_file *seq, void *v)
911{
912 struct proc_dir_entry *pde = seq->private;
913 u_int16_t af = (unsigned long)pde->data;
914
915 mutex_unlock(&xt[af].mutex);
916}
917
918static int xt_target_seq_show(struct seq_file *seq, void *v)
919{
920 struct xt_target *target = list_entry(v, struct xt_target, list);
921
922 if (strlen(target->name))
923 return seq_printf(seq, "%s\n", target->name);
924 else
925 return 0;
926}
927
928static const struct seq_operations xt_target_seq_ops = {
929 .start = xt_target_seq_start,
930 .next = xt_target_seq_next,
931 .stop = xt_target_seq_stop,
932 .show = xt_target_seq_show,
933};
934
935static int xt_target_open(struct inode *inode, struct file *file)
936{
937 int ret;
938
939 ret = seq_open(file, &xt_target_seq_ops);
940 if (!ret) {
941 struct seq_file *seq = file->private_data;
942
943 seq->private = PDE(inode);
944 }
945 return ret;
946}
947
948static const struct file_operations xt_target_ops = {
949 .owner = THIS_MODULE,
950 .open = xt_target_open,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800951 .read = seq_read,
952 .llseek = seq_lseek,
953 .release = seq_release,
954};
955
956#define FORMAT_TABLES "_tables_names"
957#define FORMAT_MATCHES "_tables_matches"
958#define FORMAT_TARGETS "_tables_targets"
959
960#endif /* CONFIG_PROC_FS */
961
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200962int xt_proto_init(struct net *net, u_int8_t af)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800963{
964#ifdef CONFIG_PROC_FS
965 char buf[XT_FUNCTION_MAXNAMELEN];
966 struct proc_dir_entry *proc;
967#endif
968
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +0200969 if (af >= ARRAY_SIZE(xt_prefix))
Harald Welte2e4e6a12006-01-12 13:30:04 -0800970 return -EINVAL;
971
972
973#ifdef CONFIG_PROC_FS
Tobias Klauserce18afe2007-03-14 16:36:16 -0700974 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800975 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -0700976 proc = proc_create_data(buf, 0440, net->proc_net, &xt_table_ops,
977 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800978 if (!proc)
979 goto out;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800980
Tobias Klauserce18afe2007-03-14 16:36:16 -0700981 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800982 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -0700983 proc = proc_create_data(buf, 0440, net->proc_net, &xt_match_ops,
984 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800985 if (!proc)
986 goto out_remove_tables;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800987
Tobias Klauserce18afe2007-03-14 16:36:16 -0700988 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800989 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
Denis V. Lunev8b169242008-05-02 04:11:52 -0700990 proc = proc_create_data(buf, 0440, net->proc_net, &xt_target_ops,
991 (void *)(unsigned long)af);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800992 if (!proc)
993 goto out_remove_matches;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800994#endif
995
996 return 0;
997
998#ifdef CONFIG_PROC_FS
999out_remove_matches:
Tobias Klauserce18afe2007-03-14 16:36:16 -07001000 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001001 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08001002 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001003
1004out_remove_tables:
Tobias Klauserce18afe2007-03-14 16:36:16 -07001005 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001006 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08001007 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001008out:
1009 return -1;
1010#endif
1011}
1012EXPORT_SYMBOL_GPL(xt_proto_init);
1013
Jan Engelhardt76108ce2008-10-08 11:35:00 +02001014void xt_proto_fini(struct net *net, u_int8_t af)
Harald Welte2e4e6a12006-01-12 13:30:04 -08001015{
1016#ifdef CONFIG_PROC_FS
1017 char buf[XT_FUNCTION_MAXNAMELEN];
1018
Tobias Klauserce18afe2007-03-14 16:36:16 -07001019 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001020 strlcat(buf, FORMAT_TABLES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08001021 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001022
Tobias Klauserce18afe2007-03-14 16:36:16 -07001023 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001024 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08001025 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001026
Tobias Klauserce18afe2007-03-14 16:36:16 -07001027 strlcpy(buf, xt_prefix[af], sizeof(buf));
Harald Welte2e4e6a12006-01-12 13:30:04 -08001028 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08001029 proc_net_remove(net, buf);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001030#endif /*CONFIG_PROC_FS*/
1031}
1032EXPORT_SYMBOL_GPL(xt_proto_fini);
1033
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001034static int __net_init xt_net_init(struct net *net)
1035{
1036 int i;
1037
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001038 for (i = 0; i < NFPROTO_NUMPROTO; i++)
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001039 INIT_LIST_HEAD(&net->xt.tables[i]);
1040 return 0;
1041}
1042
1043static struct pernet_operations xt_net_ops = {
1044 .init = xt_net_init,
1045};
Harald Welte2e4e6a12006-01-12 13:30:04 -08001046
1047static int __init xt_init(void)
1048{
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001049 int i, rv;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001050
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001051 xt = kmalloc(sizeof(struct xt_af) * NFPROTO_NUMPROTO, GFP_KERNEL);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001052 if (!xt)
1053 return -ENOMEM;
1054
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +02001055 for (i = 0; i < NFPROTO_NUMPROTO; i++) {
Ingo Molnar9e19bb62006-03-25 01:41:10 -08001056 mutex_init(&xt[i].mutex);
Dmitry Mishin27229712006-04-01 02:25:19 -08001057#ifdef CONFIG_COMPAT
1058 mutex_init(&xt[i].compat_mutex);
Patrick McHardyb386d9f2007-12-17 21:47:48 -08001059 xt[i].compat_offsets = NULL;
Dmitry Mishin27229712006-04-01 02:25:19 -08001060#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -08001061 INIT_LIST_HEAD(&xt[i].target);
1062 INIT_LIST_HEAD(&xt[i].match);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001063 }
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001064 rv = register_pernet_subsys(&xt_net_ops);
1065 if (rv < 0)
1066 kfree(xt);
1067 return rv;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001068}
1069
1070static void __exit xt_fini(void)
1071{
Alexey Dobriyan8d870052008-01-31 04:02:13 -08001072 unregister_pernet_subsys(&xt_net_ops);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001073 kfree(xt);
1074}
1075
1076module_init(xt_init);
1077module_exit(xt_fini);
1078