netfilter: xtables: move extension arguments into compound structure (4/6)
[deliverable/linux.git] / net / netfilter / x_tables.c
CommitLineData
2e4e6a17
HW
1/*
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
2e4e6a17
HW
16#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>
9e19bb6d 23#include <linux/mutex.h>
d7fe0f24 24#include <linux/mm.h>
457c4cbc 25#include <net/net_namespace.h>
2e4e6a17
HW
26
27#include <linux/netfilter/x_tables.h>
28#include <linux/netfilter_arp.h>
29
9e19bb6d 30
2e4e6a17
HW
31MODULE_LICENSE("GPL");
32MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
043ef46c 33MODULE_DESCRIPTION("{ip,ip6,arp,eb}_tables backend module");
2e4e6a17
HW
34
35#define SMP_ALIGN(x) (((x) + SMP_CACHE_BYTES-1) & ~(SMP_CACHE_BYTES-1))
36
b386d9f5
PM
37struct compat_delta {
38 struct compat_delta *next;
39 unsigned int offset;
40 short delta;
41};
42
2e4e6a17 43struct xt_af {
9e19bb6d 44 struct mutex mutex;
2e4e6a17
HW
45 struct list_head match;
46 struct list_head target;
b386d9f5 47#ifdef CONFIG_COMPAT
2722971c 48 struct mutex compat_mutex;
b386d9f5
PM
49 struct compat_delta *compat_offsets;
50#endif
2e4e6a17
HW
51};
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
7e9c6eeb
JE
61static 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",
37f9f733
PM
67};
68
2e4e6a17
HW
69/* Registration hooks for targets. */
70int
a45049c5 71xt_register_target(struct xt_target *target)
2e4e6a17 72{
76108cea
JE
73 u_int8_t af = target->family;
74 int ret;
2e4e6a17 75
9e19bb6d 76 ret = mutex_lock_interruptible(&xt[af].mutex);
2e4e6a17
HW
77 if (ret != 0)
78 return ret;
79 list_add(&target->list, &xt[af].target);
9e19bb6d 80 mutex_unlock(&xt[af].mutex);
2e4e6a17
HW
81 return ret;
82}
83EXPORT_SYMBOL(xt_register_target);
84
85void
a45049c5 86xt_unregister_target(struct xt_target *target)
2e4e6a17 87{
76108cea 88 u_int8_t af = target->family;
a45049c5 89
9e19bb6d 90 mutex_lock(&xt[af].mutex);
df0933dc 91 list_del(&target->list);
9e19bb6d 92 mutex_unlock(&xt[af].mutex);
2e4e6a17
HW
93}
94EXPORT_SYMBOL(xt_unregister_target);
95
52d9c42e
PM
96int
97xt_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
2e4e6a17 126int
a45049c5 127xt_register_match(struct xt_match *match)
2e4e6a17 128{
76108cea
JE
129 u_int8_t af = match->family;
130 int ret;
2e4e6a17 131
9e19bb6d 132 ret = mutex_lock_interruptible(&xt[af].mutex);
2e4e6a17
HW
133 if (ret != 0)
134 return ret;
135
136 list_add(&match->list, &xt[af].match);
9e19bb6d 137 mutex_unlock(&xt[af].mutex);
2e4e6a17
HW
138
139 return ret;
140}
141EXPORT_SYMBOL(xt_register_match);
142
143void
a45049c5 144xt_unregister_match(struct xt_match *match)
2e4e6a17 145{
76108cea 146 u_int8_t af = match->family;
a45049c5 147
9e19bb6d 148 mutex_lock(&xt[af].mutex);
df0933dc 149 list_del(&match->list);
9e19bb6d 150 mutex_unlock(&xt[af].mutex);
2e4e6a17
HW
151}
152EXPORT_SYMBOL(xt_unregister_match);
153
52d9c42e
PM
154int
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
2e4e6a17
HW
184
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. */
76108cea 192struct xt_match *xt_find_match(u8 af, const char *name, u8 revision)
2e4e6a17
HW
193{
194 struct xt_match *m;
195 int err = 0;
196
9e19bb6d 197 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
2e4e6a17
HW
198 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)) {
9e19bb6d 204 mutex_unlock(&xt[af].mutex);
2e4e6a17
HW
205 return m;
206 }
207 } else
208 err = -EPROTOTYPE; /* Found something. */
209 }
210 }
9e19bb6d 211 mutex_unlock(&xt[af].mutex);
55b69e91
JE
212
213 if (af != NFPROTO_UNSPEC)
214 /* Try searching again in the family-independent list */
215 return xt_find_match(NFPROTO_UNSPEC, name, revision);
216
2e4e6a17
HW
217 return ERR_PTR(err);
218}
219EXPORT_SYMBOL(xt_find_match);
220
221/* Find target, grabs ref. Returns ERR_PTR() on error. */
76108cea 222struct xt_target *xt_find_target(u8 af, const char *name, u8 revision)
2e4e6a17
HW
223{
224 struct xt_target *t;
225 int err = 0;
226
9e19bb6d 227 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
2e4e6a17
HW
228 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)) {
9e19bb6d 234 mutex_unlock(&xt[af].mutex);
2e4e6a17
HW
235 return t;
236 }
237 } else
238 err = -EPROTOTYPE; /* Found something. */
239 }
240 }
9e19bb6d 241 mutex_unlock(&xt[af].mutex);
55b69e91
JE
242
243 if (af != NFPROTO_UNSPEC)
244 /* Try searching again in the family-independent list */
245 return xt_find_target(NFPROTO_UNSPEC, name, revision);
246
2e4e6a17
HW
247 return ERR_PTR(err);
248}
249EXPORT_SYMBOL(xt_find_target);
250
76108cea 251struct xt_target *xt_request_find_target(u8 af, const char *name, u8 revision)
2e4e6a17
HW
252{
253 struct xt_target *target;
254
255 target = try_then_request_module(xt_find_target(af, name, revision),
37f9f733 256 "%st_%s", xt_prefix[af], name);
2e4e6a17
HW
257 if (IS_ERR(target) || !target)
258 return NULL;
259 return target;
260}
261EXPORT_SYMBOL_GPL(xt_request_find_target);
262
76108cea 263static int match_revfn(u8 af, const char *name, u8 revision, int *bestp)
2e4e6a17 264{
5452e425 265 const struct xt_match *m;
2e4e6a17
HW
266 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
76108cea 279static int target_revfn(u8 af, const char *name, u8 revision, int *bestp)
2e4e6a17 280{
5452e425 281 const struct xt_target *t;
2e4e6a17
HW
282 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) */
76108cea 296int xt_find_revision(u8 af, const char *name, u8 revision, int target,
2e4e6a17
HW
297 int *err)
298{
299 int have_rev, best = -1;
300
9e19bb6d 301 if (mutex_lock_interruptible(&xt[af].mutex) != 0) {
2e4e6a17
HW
302 *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);
9e19bb6d 309 mutex_unlock(&xt[af].mutex);
2e4e6a17
HW
310
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
9b4fce7a
JE
324int xt_check_match(struct xt_mtchk_param *par, u_int8_t family,
325 unsigned int size, u_int8_t proto, bool inv_proto)
37f9f733 326{
9b4fce7a
JE
327 if (XT_ALIGN(par->match->matchsize) != size &&
328 par->match->matchsize != -1) {
043ef46c
JE
329 /*
330 * ebt_among is exempt from centralized matchsize checking
331 * because it uses a dynamic-size data set.
332 */
37f9f733 333 printk("%s_tables: %s match: invalid size %Zu != %u\n",
9b4fce7a
JE
334 xt_prefix[family], par->match->name,
335 XT_ALIGN(par->match->matchsize), size);
37f9f733
PM
336 return -EINVAL;
337 }
9b4fce7a
JE
338 if (par->match->table != NULL &&
339 strcmp(par->match->table, par->table) != 0) {
37f9f733 340 printk("%s_tables: %s match: only valid in %s table, not %s\n",
9b4fce7a
JE
341 xt_prefix[family], par->match->name,
342 par->match->table, par->table);
37f9f733
PM
343 return -EINVAL;
344 }
9b4fce7a 345 if (par->match->hooks && (par->hook_mask & ~par->match->hooks) != 0) {
102befab 346 printk("%s_tables: %s match: bad hook_mask %#x/%#x\n",
9b4fce7a
JE
347 xt_prefix[family], par->match->name,
348 par->hook_mask, par->match->hooks);
37f9f733
PM
349 return -EINVAL;
350 }
9b4fce7a 351 if (par->match->proto && (par->match->proto != proto || inv_proto)) {
37f9f733 352 printk("%s_tables: %s match: only valid for protocol %u\n",
9b4fce7a 353 xt_prefix[family], par->match->name, par->match->proto);
37f9f733
PM
354 return -EINVAL;
355 }
9b4fce7a 356 if (par->match->checkentry != NULL && !par->match->checkentry(par))
367c6790 357 return -EINVAL;
37f9f733
PM
358 return 0;
359}
360EXPORT_SYMBOL_GPL(xt_check_match);
361
2722971c 362#ifdef CONFIG_COMPAT
76108cea 363int xt_compat_add_offset(u_int8_t af, unsigned int offset, short delta)
b386d9f5
PM
364{
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
76108cea 385void xt_compat_flush_offsets(u_int8_t af)
b386d9f5
PM
386{
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
76108cea 399short xt_compat_calc_jump(u_int8_t af, unsigned int offset)
b386d9f5
PM
400{
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
5452e425 411int xt_compat_match_offset(const struct xt_match *match)
2722971c 412{
9fa492cd
PM
413 u_int16_t csize = match->compatsize ? : match->matchsize;
414 return XT_ALIGN(match->matchsize) - COMPAT_XT_ALIGN(csize);
415}
416EXPORT_SYMBOL_GPL(xt_compat_match_offset);
417
89566951 418int xt_compat_match_from_user(struct xt_entry_match *m, void **dstptr,
b0a6363c 419 unsigned int *size)
9fa492cd 420{
5452e425 421 const struct xt_match *match = m->u.kernel.match;
9fa492cd
PM
422 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;
89566951 441 return 0;
9fa492cd
PM
442}
443EXPORT_SYMBOL_GPL(xt_compat_match_from_user);
444
445int xt_compat_match_to_user(struct xt_entry_match *m, void __user **dstptr,
b0a6363c 446 unsigned int *size)
9fa492cd 447{
5452e425 448 const struct xt_match *match = m->u.kernel.match;
9fa492cd
PM
449 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)) ||
a18aa31b
PM
454 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))
601e68e1 457 return -EFAULT;
9fa492cd
PM
458
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;
2722971c 465 }
9fa492cd
PM
466
467 *size -= off;
468 *dstptr += msize;
469 return 0;
2722971c 470}
9fa492cd
PM
471EXPORT_SYMBOL_GPL(xt_compat_match_to_user);
472#endif /* CONFIG_COMPAT */
2722971c 473
37f9f733
PM
474int xt_check_target(const struct xt_target *target, unsigned short family,
475 unsigned int size, const char *table, unsigned int hook_mask,
367c6790
JE
476 unsigned short proto, int inv_proto, const void *entry,
477 void *targinfo)
37f9f733
PM
478{
479 if (XT_ALIGN(target->targetsize) != size) {
480 printk("%s_tables: %s target: invalid size %Zu != %u\n",
481 xt_prefix[family], target->name,
482 XT_ALIGN(target->targetsize), size);
483 return -EINVAL;
484 }
485 if (target->table && strcmp(target->table, table)) {
486 printk("%s_tables: %s target: only valid in %s table, not %s\n",
487 xt_prefix[family], target->name, target->table, table);
488 return -EINVAL;
489 }
490 if (target->hooks && (hook_mask & ~target->hooks) != 0) {
102befab 491 printk("%s_tables: %s target: bad hook_mask %#x/%#x\n",
5faf4153
BS
492 xt_prefix[family], target->name, hook_mask,
493 target->hooks);
37f9f733
PM
494 return -EINVAL;
495 }
496 if (target->proto && (target->proto != proto || inv_proto)) {
497 printk("%s_tables: %s target: only valid for protocol %u\n",
498 xt_prefix[family], target->name, target->proto);
499 return -EINVAL;
500 }
367c6790
JE
501 if (target->checkentry != NULL &&
502 !target->checkentry(table, entry, target, targinfo, hook_mask))
503 return -EINVAL;
37f9f733
PM
504 return 0;
505}
506EXPORT_SYMBOL_GPL(xt_check_target);
507
2722971c 508#ifdef CONFIG_COMPAT
5452e425 509int xt_compat_target_offset(const struct xt_target *target)
2722971c 510{
9fa492cd
PM
511 u_int16_t csize = target->compatsize ? : target->targetsize;
512 return XT_ALIGN(target->targetsize) - COMPAT_XT_ALIGN(csize);
513}
514EXPORT_SYMBOL_GPL(xt_compat_target_offset);
515
516void xt_compat_target_from_user(struct xt_entry_target *t, void **dstptr,
b0a6363c 517 unsigned int *size)
9fa492cd 518{
5452e425 519 const struct xt_target *target = t->u.kernel.target;
9fa492cd
PM
520 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,
b0a6363c 543 unsigned int *size)
9fa492cd 544{
5452e425 545 const struct xt_target *target = t->u.kernel.target;
9fa492cd
PM
546 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)) ||
a18aa31b
PM
551 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))
601e68e1 554 return -EFAULT;
9fa492cd
PM
555
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;
2722971c 562 }
9fa492cd
PM
563
564 *size -= off;
565 *dstptr += tsize;
566 return 0;
2722971c 567}
9fa492cd 568EXPORT_SYMBOL_GPL(xt_compat_target_to_user);
2722971c
DM
569#endif
570
2e4e6a17
HW
571struct 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
259d4e41 580 newinfo = kzalloc(XT_TABLE_INFO_SZ, GFP_KERNEL);
2e4e6a17
HW
581 if (!newinfo)
582 return NULL;
583
584 newinfo->size = size;
585
6f912042 586 for_each_possible_cpu(cpu) {
2e4e6a17
HW
587 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
6f912042 609 for_each_possible_cpu(cpu) {
2e4e6a17
HW
610 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. */
76108cea
JE
620struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af,
621 const char *name)
2e4e6a17
HW
622{
623 struct xt_table *t;
624
9e19bb6d 625 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
2e4e6a17
HW
626 return ERR_PTR(-EINTR);
627
8d870052 628 list_for_each_entry(t, &net->xt.tables[af], list)
2e4e6a17
HW
629 if (strcmp(t->name, name) == 0 && try_module_get(t->me))
630 return t;
9e19bb6d 631 mutex_unlock(&xt[af].mutex);
2e4e6a17
HW
632 return NULL;
633}
634EXPORT_SYMBOL_GPL(xt_find_table_lock);
635
636void xt_table_unlock(struct xt_table *table)
637{
9e19bb6d 638 mutex_unlock(&xt[table->af].mutex);
2e4e6a17
HW
639}
640EXPORT_SYMBOL_GPL(xt_table_unlock);
641
2722971c 642#ifdef CONFIG_COMPAT
76108cea 643void xt_compat_lock(u_int8_t af)
2722971c
DM
644{
645 mutex_lock(&xt[af].compat_mutex);
646}
647EXPORT_SYMBOL_GPL(xt_compat_lock);
648
76108cea 649void xt_compat_unlock(u_int8_t af)
2722971c
DM
650{
651 mutex_unlock(&xt[af].compat_mutex);
652}
653EXPORT_SYMBOL_GPL(xt_compat_unlock);
654#endif
2e4e6a17
HW
655
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
8d870052 684struct xt_table *xt_register_table(struct net *net, struct xt_table *table,
a98da11d
AD
685 struct xt_table_info *bootstrap,
686 struct xt_table_info *newinfo)
2e4e6a17
HW
687{
688 int ret;
689 struct xt_table_info *private;
df0933dc 690 struct xt_table *t;
2e4e6a17 691
44d34e72
AD
692 /* 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
9e19bb6d 699 ret = mutex_lock_interruptible(&xt[table->af].mutex);
2e4e6a17 700 if (ret != 0)
44d34e72 701 goto out_free;
2e4e6a17
HW
702
703 /* Don't autoload: we'd eat our tail... */
8d870052 704 list_for_each_entry(t, &net->xt.tables[table->af], list) {
df0933dc
PM
705 if (strcmp(t->name, table->name) == 0) {
706 ret = -EEXIST;
707 goto unlock;
708 }
2e4e6a17
HW
709 }
710
711 /* Simplifies replace_table code. */
712 table->private = bootstrap;
91536b7a 713 rwlock_init(&table->lock);
2e4e6a17
HW
714 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
8d870052 723 list_add(&table->list, &net->xt.tables[table->af]);
a98da11d
AD
724 mutex_unlock(&xt[table->af].mutex);
725 return table;
2e4e6a17 726
2e4e6a17 727 unlock:
9e19bb6d 728 mutex_unlock(&xt[table->af].mutex);
44d34e72
AD
729out_free:
730 kfree(table);
a98da11d
AD
731out:
732 return ERR_PTR(ret);
2e4e6a17
HW
733}
734EXPORT_SYMBOL_GPL(xt_register_table);
735
736void *xt_unregister_table(struct xt_table *table)
737{
738 struct xt_table_info *private;
739
9e19bb6d 740 mutex_lock(&xt[table->af].mutex);
2e4e6a17 741 private = table->private;
df0933dc 742 list_del(&table->list);
9e19bb6d 743 mutex_unlock(&xt[table->af].mutex);
44d34e72 744 kfree(table);
2e4e6a17
HW
745
746 return private;
747}
748EXPORT_SYMBOL_GPL(xt_unregister_table);
749
750#ifdef CONFIG_PROC_FS
715cf35a
AD
751struct xt_names_priv {
752 struct seq_net_private p;
76108cea 753 u_int8_t af;
715cf35a 754};
025d93d1 755static void *xt_table_seq_start(struct seq_file *seq, loff_t *pos)
2e4e6a17 756{
715cf35a 757 struct xt_names_priv *priv = seq->private;
1218854a 758 struct net *net = seq_file_net(seq);
76108cea 759 u_int8_t af = priv->af;
2e4e6a17 760
025d93d1 761 mutex_lock(&xt[af].mutex);
715cf35a 762 return seq_list_start(&net->xt.tables[af], *pos);
025d93d1 763}
2e4e6a17 764
025d93d1
AD
765static void *xt_table_seq_next(struct seq_file *seq, void *v, loff_t *pos)
766{
715cf35a 767 struct xt_names_priv *priv = seq->private;
1218854a 768 struct net *net = seq_file_net(seq);
76108cea 769 u_int8_t af = priv->af;
2e4e6a17 770
715cf35a 771 return seq_list_next(v, &net->xt.tables[af], pos);
2e4e6a17
HW
772}
773
025d93d1 774static void xt_table_seq_stop(struct seq_file *seq, void *v)
2e4e6a17 775{
715cf35a 776 struct xt_names_priv *priv = seq->private;
76108cea 777 u_int8_t af = priv->af;
2e4e6a17 778
025d93d1
AD
779 mutex_unlock(&xt[af].mutex);
780}
2e4e6a17 781
025d93d1
AD
782static int xt_table_seq_show(struct seq_file *seq, void *v)
783{
784 struct xt_table *table = list_entry(v, struct xt_table, list);
2e4e6a17 785
025d93d1
AD
786 if (strlen(table->name))
787 return seq_printf(seq, "%s\n", table->name);
788 else
789 return 0;
790}
601e68e1 791
025d93d1
AD
792static 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,
797};
798
799static int xt_table_open(struct inode *inode, struct file *file)
800{
801 int ret;
715cf35a 802 struct xt_names_priv *priv;
025d93d1 803
715cf35a
AD
804 ret = seq_open_net(inode, file, &xt_table_seq_ops,
805 sizeof(struct xt_names_priv));
025d93d1 806 if (!ret) {
715cf35a
AD
807 priv = ((struct seq_file *)file->private_data)->private;
808 priv->af = (unsigned long)PDE(inode)->data;
025d93d1
AD
809 }
810 return ret;
2e4e6a17
HW
811}
812
025d93d1
AD
813static const struct file_operations xt_table_ops = {
814 .owner = THIS_MODULE,
815 .open = xt_table_open,
816 .read = seq_read,
817 .llseek = seq_lseek,
0e93bb94 818 .release = seq_release_net,
025d93d1
AD
819};
820
821static void *xt_match_seq_start(struct seq_file *seq, loff_t *pos)
2e4e6a17 822{
025d93d1
AD
823 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
824 u_int16_t af = (unsigned long)pde->data;
2e4e6a17 825
025d93d1
AD
826 mutex_lock(&xt[af].mutex);
827 return seq_list_start(&xt[af].match, *pos);
828}
601e68e1 829
025d93d1
AD
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;
2e4e6a17 834
025d93d1 835 return seq_list_next(v, &xt[af].match, pos);
2e4e6a17
HW
836}
837
025d93d1 838static void xt_match_seq_stop(struct seq_file *seq, void *v)
2e4e6a17
HW
839{
840 struct proc_dir_entry *pde = seq->private;
025d93d1 841 u_int16_t af = (unsigned long)pde->data;
2e4e6a17 842
9e19bb6d 843 mutex_unlock(&xt[af].mutex);
2e4e6a17
HW
844}
845
025d93d1 846static int xt_match_seq_show(struct seq_file *seq, void *v)
2e4e6a17 847{
025d93d1 848 struct xt_match *match = list_entry(v, struct xt_match, list);
2e4e6a17 849
025d93d1
AD
850 if (strlen(match->name))
851 return seq_printf(seq, "%s\n", match->name);
2e4e6a17
HW
852 else
853 return 0;
854}
855
025d93d1
AD
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,
2e4e6a17
HW
861};
862
025d93d1 863static int xt_match_open(struct inode *inode, struct file *file)
2e4e6a17
HW
864{
865 int ret;
866
025d93d1 867 ret = seq_open(file, &xt_match_seq_ops);
2e4e6a17
HW
868 if (!ret) {
869 struct seq_file *seq = file->private_data;
2e4e6a17 870
025d93d1 871 seq->private = PDE(inode);
2e4e6a17 872 }
025d93d1
AD
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};
2e4e6a17 883
025d93d1
AD
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 }
2e4e6a17
HW
936 return ret;
937}
938
025d93d1 939static const struct file_operations xt_target_ops = {
2e4e6a17 940 .owner = THIS_MODULE,
025d93d1 941 .open = xt_target_open,
2e4e6a17
HW
942 .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
76108cea 953int xt_proto_init(struct net *net, u_int8_t af)
2e4e6a17
HW
954{
955#ifdef CONFIG_PROC_FS
956 char buf[XT_FUNCTION_MAXNAMELEN];
957 struct proc_dir_entry *proc;
958#endif
959
7e9c6eeb 960 if (af >= ARRAY_SIZE(xt_prefix))
2e4e6a17
HW
961 return -EINVAL;
962
963
964#ifdef CONFIG_PROC_FS
ce18afe5 965 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 966 strlcat(buf, FORMAT_TABLES, sizeof(buf));
8b169240
DL
967 proc = proc_create_data(buf, 0440, net->proc_net, &xt_table_ops,
968 (void *)(unsigned long)af);
2e4e6a17
HW
969 if (!proc)
970 goto out;
2e4e6a17 971
ce18afe5 972 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 973 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
8b169240
DL
974 proc = proc_create_data(buf, 0440, net->proc_net, &xt_match_ops,
975 (void *)(unsigned long)af);
2e4e6a17
HW
976 if (!proc)
977 goto out_remove_tables;
2e4e6a17 978
ce18afe5 979 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 980 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
8b169240
DL
981 proc = proc_create_data(buf, 0440, net->proc_net, &xt_target_ops,
982 (void *)(unsigned long)af);
2e4e6a17
HW
983 if (!proc)
984 goto out_remove_matches;
2e4e6a17
HW
985#endif
986
987 return 0;
988
989#ifdef CONFIG_PROC_FS
990out_remove_matches:
ce18afe5 991 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 992 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
3cb609d5 993 proc_net_remove(net, buf);
2e4e6a17
HW
994
995out_remove_tables:
ce18afe5 996 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 997 strlcat(buf, FORMAT_TABLES, sizeof(buf));
3cb609d5 998 proc_net_remove(net, buf);
2e4e6a17
HW
999out:
1000 return -1;
1001#endif
1002}
1003EXPORT_SYMBOL_GPL(xt_proto_init);
1004
76108cea 1005void xt_proto_fini(struct net *net, u_int8_t af)
2e4e6a17
HW
1006{
1007#ifdef CONFIG_PROC_FS
1008 char buf[XT_FUNCTION_MAXNAMELEN];
1009
ce18afe5 1010 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 1011 strlcat(buf, FORMAT_TABLES, sizeof(buf));
3cb609d5 1012 proc_net_remove(net, buf);
2e4e6a17 1013
ce18afe5 1014 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 1015 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
3cb609d5 1016 proc_net_remove(net, buf);
2e4e6a17 1017
ce18afe5 1018 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 1019 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
3cb609d5 1020 proc_net_remove(net, buf);
2e4e6a17
HW
1021#endif /*CONFIG_PROC_FS*/
1022}
1023EXPORT_SYMBOL_GPL(xt_proto_fini);
1024
8d870052
AD
1025static int __net_init xt_net_init(struct net *net)
1026{
1027 int i;
1028
7e9c6eeb 1029 for (i = 0; i < NFPROTO_NUMPROTO; i++)
8d870052
AD
1030 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};
2e4e6a17
HW
1037
1038static int __init xt_init(void)
1039{
8d870052 1040 int i, rv;
2e4e6a17 1041
7e9c6eeb 1042 xt = kmalloc(sizeof(struct xt_af) * NFPROTO_NUMPROTO, GFP_KERNEL);
2e4e6a17
HW
1043 if (!xt)
1044 return -ENOMEM;
1045
7e9c6eeb 1046 for (i = 0; i < NFPROTO_NUMPROTO; i++) {
9e19bb6d 1047 mutex_init(&xt[i].mutex);
2722971c
DM
1048#ifdef CONFIG_COMPAT
1049 mutex_init(&xt[i].compat_mutex);
b386d9f5 1050 xt[i].compat_offsets = NULL;
2722971c 1051#endif
2e4e6a17
HW
1052 INIT_LIST_HEAD(&xt[i].target);
1053 INIT_LIST_HEAD(&xt[i].match);
2e4e6a17 1054 }
8d870052
AD
1055 rv = register_pernet_subsys(&xt_net_ops);
1056 if (rv < 0)
1057 kfree(xt);
1058 return rv;
2e4e6a17
HW
1059}
1060
1061static void __exit xt_fini(void)
1062{
8d870052 1063 unregister_pernet_subsys(&xt_net_ops);
2e4e6a17
HW
1064 kfree(xt);
1065}
1066
1067module_init(xt_init);
1068module_exit(xt_fini);
1069
This page took 0.426798 seconds and 5 git commands to generate.