netfilter: nfnetlink: return ENOMEM if we fail to create netlink socket
[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 }
656caff2
PM
276
277 if (af != NFPROTO_UNSPEC && !have_rev)
278 return match_revfn(NFPROTO_UNSPEC, name, revision, bestp);
279
2e4e6a17
HW
280 return have_rev;
281}
282
76108cea 283static int target_revfn(u8 af, const char *name, u8 revision, int *bestp)
2e4e6a17 284{
5452e425 285 const struct xt_target *t;
2e4e6a17
HW
286 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 }
656caff2
PM
296
297 if (af != NFPROTO_UNSPEC && !have_rev)
298 return target_revfn(NFPROTO_UNSPEC, name, revision, bestp);
299
2e4e6a17
HW
300 return have_rev;
301}
302
303/* Returns true or false (if no such extension at all) */
76108cea 304int xt_find_revision(u8 af, const char *name, u8 revision, int target,
2e4e6a17
HW
305 int *err)
306{
307 int have_rev, best = -1;
308
9e19bb6d 309 if (mutex_lock_interruptible(&xt[af].mutex) != 0) {
2e4e6a17
HW
310 *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);
9e19bb6d 317 mutex_unlock(&xt[af].mutex);
2e4e6a17
HW
318
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
916a917d 332int xt_check_match(struct xt_mtchk_param *par,
9b4fce7a 333 unsigned int size, u_int8_t proto, bool inv_proto)
37f9f733 334{
9b4fce7a
JE
335 if (XT_ALIGN(par->match->matchsize) != size &&
336 par->match->matchsize != -1) {
043ef46c
JE
337 /*
338 * ebt_among is exempt from centralized matchsize checking
339 * because it uses a dynamic-size data set.
340 */
37f9f733 341 printk("%s_tables: %s match: invalid size %Zu != %u\n",
916a917d 342 xt_prefix[par->family], par->match->name,
9b4fce7a 343 XT_ALIGN(par->match->matchsize), size);
37f9f733
PM
344 return -EINVAL;
345 }
9b4fce7a
JE
346 if (par->match->table != NULL &&
347 strcmp(par->match->table, par->table) != 0) {
37f9f733 348 printk("%s_tables: %s match: only valid in %s table, not %s\n",
916a917d 349 xt_prefix[par->family], par->match->name,
9b4fce7a 350 par->match->table, par->table);
37f9f733
PM
351 return -EINVAL;
352 }
9b4fce7a 353 if (par->match->hooks && (par->hook_mask & ~par->match->hooks) != 0) {
102befab 354 printk("%s_tables: %s match: bad hook_mask %#x/%#x\n",
916a917d 355 xt_prefix[par->family], par->match->name,
9b4fce7a 356 par->hook_mask, par->match->hooks);
37f9f733
PM
357 return -EINVAL;
358 }
9b4fce7a 359 if (par->match->proto && (par->match->proto != proto || inv_proto)) {
37f9f733 360 printk("%s_tables: %s match: only valid for protocol %u\n",
916a917d
JE
361 xt_prefix[par->family], par->match->name,
362 par->match->proto);
37f9f733
PM
363 return -EINVAL;
364 }
9b4fce7a 365 if (par->match->checkentry != NULL && !par->match->checkentry(par))
367c6790 366 return -EINVAL;
37f9f733
PM
367 return 0;
368}
369EXPORT_SYMBOL_GPL(xt_check_match);
370
2722971c 371#ifdef CONFIG_COMPAT
76108cea 372int xt_compat_add_offset(u_int8_t af, unsigned int offset, short delta)
b386d9f5
PM
373{
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
76108cea 394void xt_compat_flush_offsets(u_int8_t af)
b386d9f5
PM
395{
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
76108cea 408short xt_compat_calc_jump(u_int8_t af, unsigned int offset)
b386d9f5
PM
409{
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
5452e425 420int xt_compat_match_offset(const struct xt_match *match)
2722971c 421{
9fa492cd
PM
422 u_int16_t csize = match->compatsize ? : match->matchsize;
423 return XT_ALIGN(match->matchsize) - COMPAT_XT_ALIGN(csize);
424}
425EXPORT_SYMBOL_GPL(xt_compat_match_offset);
426
89566951 427int xt_compat_match_from_user(struct xt_entry_match *m, void **dstptr,
b0a6363c 428 unsigned int *size)
9fa492cd 429{
5452e425 430 const struct xt_match *match = m->u.kernel.match;
9fa492cd
PM
431 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;
89566951 450 return 0;
9fa492cd
PM
451}
452EXPORT_SYMBOL_GPL(xt_compat_match_from_user);
453
454int xt_compat_match_to_user(struct xt_entry_match *m, void __user **dstptr,
b0a6363c 455 unsigned int *size)
9fa492cd 456{
5452e425 457 const struct xt_match *match = m->u.kernel.match;
9fa492cd
PM
458 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)) ||
a18aa31b
PM
463 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))
601e68e1 466 return -EFAULT;
9fa492cd
PM
467
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;
2722971c 474 }
9fa492cd
PM
475
476 *size -= off;
477 *dstptr += msize;
478 return 0;
2722971c 479}
9fa492cd
PM
480EXPORT_SYMBOL_GPL(xt_compat_match_to_user);
481#endif /* CONFIG_COMPAT */
2722971c 482
916a917d 483int xt_check_target(struct xt_tgchk_param *par,
af5d6dc2 484 unsigned int size, u_int8_t proto, bool inv_proto)
37f9f733 485{
af5d6dc2 486 if (XT_ALIGN(par->target->targetsize) != size) {
37f9f733 487 printk("%s_tables: %s target: invalid size %Zu != %u\n",
916a917d 488 xt_prefix[par->family], par->target->name,
af5d6dc2 489 XT_ALIGN(par->target->targetsize), size);
37f9f733
PM
490 return -EINVAL;
491 }
af5d6dc2
JE
492 if (par->target->table != NULL &&
493 strcmp(par->target->table, par->table) != 0) {
37f9f733 494 printk("%s_tables: %s target: only valid in %s table, not %s\n",
916a917d 495 xt_prefix[par->family], par->target->name,
af5d6dc2 496 par->target->table, par->table);
37f9f733
PM
497 return -EINVAL;
498 }
af5d6dc2 499 if (par->target->hooks && (par->hook_mask & ~par->target->hooks) != 0) {
102befab 500 printk("%s_tables: %s target: bad hook_mask %#x/%#x\n",
916a917d
JE
501 xt_prefix[par->family], par->target->name,
502 par->hook_mask, par->target->hooks);
37f9f733
PM
503 return -EINVAL;
504 }
af5d6dc2 505 if (par->target->proto && (par->target->proto != proto || inv_proto)) {
37f9f733 506 printk("%s_tables: %s target: only valid for protocol %u\n",
916a917d 507 xt_prefix[par->family], par->target->name,
af5d6dc2 508 par->target->proto);
37f9f733
PM
509 return -EINVAL;
510 }
af5d6dc2 511 if (par->target->checkentry != NULL && !par->target->checkentry(par))
367c6790 512 return -EINVAL;
37f9f733
PM
513 return 0;
514}
515EXPORT_SYMBOL_GPL(xt_check_target);
516
2722971c 517#ifdef CONFIG_COMPAT
5452e425 518int xt_compat_target_offset(const struct xt_target *target)
2722971c 519{
9fa492cd
PM
520 u_int16_t csize = target->compatsize ? : target->targetsize;
521 return XT_ALIGN(target->targetsize) - COMPAT_XT_ALIGN(csize);
522}
523EXPORT_SYMBOL_GPL(xt_compat_target_offset);
524
525void xt_compat_target_from_user(struct xt_entry_target *t, void **dstptr,
b0a6363c 526 unsigned int *size)
9fa492cd 527{
5452e425 528 const struct xt_target *target = t->u.kernel.target;
9fa492cd
PM
529 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,
b0a6363c 552 unsigned int *size)
9fa492cd 553{
5452e425 554 const struct xt_target *target = t->u.kernel.target;
9fa492cd
PM
555 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)) ||
a18aa31b
PM
560 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))
601e68e1 563 return -EFAULT;
9fa492cd
PM
564
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;
2722971c 571 }
9fa492cd
PM
572
573 *size -= off;
574 *dstptr += tsize;
575 return 0;
2722971c 576}
9fa492cd 577EXPORT_SYMBOL_GPL(xt_compat_target_to_user);
2722971c
DM
578#endif
579
2e4e6a17
HW
580struct 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
259d4e41 589 newinfo = kzalloc(XT_TABLE_INFO_SZ, GFP_KERNEL);
2e4e6a17
HW
590 if (!newinfo)
591 return NULL;
592
593 newinfo->size = size;
594
6f912042 595 for_each_possible_cpu(cpu) {
2e4e6a17
HW
596 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
6f912042 618 for_each_possible_cpu(cpu) {
2e4e6a17
HW
619 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
78454473
SH
628void xt_table_entry_swap_rcu(struct xt_table_info *oldinfo,
629 struct xt_table_info *newinfo)
630{
631 unsigned int cpu;
632
633 for_each_possible_cpu(cpu) {
634 void *p = oldinfo->entries[cpu];
635 rcu_assign_pointer(oldinfo->entries[cpu], newinfo->entries[cpu]);
636 newinfo->entries[cpu] = p;
637 }
638
639}
640EXPORT_SYMBOL_GPL(xt_table_entry_swap_rcu);
641
2e4e6a17 642/* Find table by name, grabs mutex & ref. Returns ERR_PTR() on error. */
76108cea
JE
643struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af,
644 const char *name)
2e4e6a17
HW
645{
646 struct xt_table *t;
647
9e19bb6d 648 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
2e4e6a17
HW
649 return ERR_PTR(-EINTR);
650
8d870052 651 list_for_each_entry(t, &net->xt.tables[af], list)
2e4e6a17
HW
652 if (strcmp(t->name, name) == 0 && try_module_get(t->me))
653 return t;
9e19bb6d 654 mutex_unlock(&xt[af].mutex);
2e4e6a17
HW
655 return NULL;
656}
657EXPORT_SYMBOL_GPL(xt_find_table_lock);
658
659void xt_table_unlock(struct xt_table *table)
660{
9e19bb6d 661 mutex_unlock(&xt[table->af].mutex);
2e4e6a17
HW
662}
663EXPORT_SYMBOL_GPL(xt_table_unlock);
664
2722971c 665#ifdef CONFIG_COMPAT
76108cea 666void xt_compat_lock(u_int8_t af)
2722971c
DM
667{
668 mutex_lock(&xt[af].compat_mutex);
669}
670EXPORT_SYMBOL_GPL(xt_compat_lock);
671
76108cea 672void xt_compat_unlock(u_int8_t af)
2722971c
DM
673{
674 mutex_unlock(&xt[af].compat_mutex);
675}
676EXPORT_SYMBOL_GPL(xt_compat_unlock);
677#endif
2e4e6a17
HW
678
679struct xt_table_info *
680xt_replace_table(struct xt_table *table,
681 unsigned int num_counters,
682 struct xt_table_info *newinfo,
683 int *error)
684{
685 struct xt_table_info *oldinfo, *private;
686
687 /* Do the substitution. */
78454473 688 mutex_lock(&table->lock);
2e4e6a17
HW
689 private = table->private;
690 /* Check inside lock: is the old number correct? */
691 if (num_counters != private->number) {
692 duprintf("num_counters != table->private->number (%u/%u)\n",
693 num_counters, private->number);
78454473 694 mutex_unlock(&table->lock);
2e4e6a17
HW
695 *error = -EAGAIN;
696 return NULL;
697 }
698 oldinfo = private;
78454473 699 rcu_assign_pointer(table->private, newinfo);
2e4e6a17 700 newinfo->initial_entries = oldinfo->initial_entries;
78454473 701 mutex_unlock(&table->lock);
2e4e6a17 702
78454473 703 synchronize_net();
2e4e6a17
HW
704 return oldinfo;
705}
706EXPORT_SYMBOL_GPL(xt_replace_table);
707
8d870052 708struct xt_table *xt_register_table(struct net *net, struct xt_table *table,
a98da11d
AD
709 struct xt_table_info *bootstrap,
710 struct xt_table_info *newinfo)
2e4e6a17
HW
711{
712 int ret;
713 struct xt_table_info *private;
df0933dc 714 struct xt_table *t;
2e4e6a17 715
44d34e72
AD
716 /* Don't add one object to multiple lists. */
717 table = kmemdup(table, sizeof(struct xt_table), GFP_KERNEL);
718 if (!table) {
719 ret = -ENOMEM;
720 goto out;
721 }
722
9e19bb6d 723 ret = mutex_lock_interruptible(&xt[table->af].mutex);
2e4e6a17 724 if (ret != 0)
44d34e72 725 goto out_free;
2e4e6a17
HW
726
727 /* Don't autoload: we'd eat our tail... */
8d870052 728 list_for_each_entry(t, &net->xt.tables[table->af], list) {
df0933dc
PM
729 if (strcmp(t->name, table->name) == 0) {
730 ret = -EEXIST;
731 goto unlock;
732 }
2e4e6a17
HW
733 }
734
735 /* Simplifies replace_table code. */
736 table->private = bootstrap;
78454473
SH
737 mutex_init(&table->lock);
738
2e4e6a17
HW
739 if (!xt_replace_table(table, 0, newinfo, &ret))
740 goto unlock;
741
742 private = table->private;
743 duprintf("table->private->number = %u\n", private->number);
744
745 /* save number of initial entries */
746 private->initial_entries = private->number;
747
8d870052 748 list_add(&table->list, &net->xt.tables[table->af]);
a98da11d
AD
749 mutex_unlock(&xt[table->af].mutex);
750 return table;
2e4e6a17 751
2e4e6a17 752 unlock:
9e19bb6d 753 mutex_unlock(&xt[table->af].mutex);
44d34e72
AD
754out_free:
755 kfree(table);
a98da11d
AD
756out:
757 return ERR_PTR(ret);
2e4e6a17
HW
758}
759EXPORT_SYMBOL_GPL(xt_register_table);
760
761void *xt_unregister_table(struct xt_table *table)
762{
763 struct xt_table_info *private;
764
9e19bb6d 765 mutex_lock(&xt[table->af].mutex);
2e4e6a17 766 private = table->private;
df0933dc 767 list_del(&table->list);
9e19bb6d 768 mutex_unlock(&xt[table->af].mutex);
44d34e72 769 kfree(table);
2e4e6a17
HW
770
771 return private;
772}
773EXPORT_SYMBOL_GPL(xt_unregister_table);
774
775#ifdef CONFIG_PROC_FS
715cf35a
AD
776struct xt_names_priv {
777 struct seq_net_private p;
76108cea 778 u_int8_t af;
715cf35a 779};
025d93d1 780static void *xt_table_seq_start(struct seq_file *seq, loff_t *pos)
2e4e6a17 781{
715cf35a 782 struct xt_names_priv *priv = seq->private;
1218854a 783 struct net *net = seq_file_net(seq);
76108cea 784 u_int8_t af = priv->af;
2e4e6a17 785
025d93d1 786 mutex_lock(&xt[af].mutex);
715cf35a 787 return seq_list_start(&net->xt.tables[af], *pos);
025d93d1 788}
2e4e6a17 789
025d93d1
AD
790static void *xt_table_seq_next(struct seq_file *seq, void *v, loff_t *pos)
791{
715cf35a 792 struct xt_names_priv *priv = seq->private;
1218854a 793 struct net *net = seq_file_net(seq);
76108cea 794 u_int8_t af = priv->af;
2e4e6a17 795
715cf35a 796 return seq_list_next(v, &net->xt.tables[af], pos);
2e4e6a17
HW
797}
798
025d93d1 799static void xt_table_seq_stop(struct seq_file *seq, void *v)
2e4e6a17 800{
715cf35a 801 struct xt_names_priv *priv = seq->private;
76108cea 802 u_int8_t af = priv->af;
2e4e6a17 803
025d93d1
AD
804 mutex_unlock(&xt[af].mutex);
805}
2e4e6a17 806
025d93d1
AD
807static int xt_table_seq_show(struct seq_file *seq, void *v)
808{
809 struct xt_table *table = list_entry(v, struct xt_table, list);
2e4e6a17 810
025d93d1
AD
811 if (strlen(table->name))
812 return seq_printf(seq, "%s\n", table->name);
813 else
814 return 0;
815}
601e68e1 816
025d93d1
AD
817static const struct seq_operations xt_table_seq_ops = {
818 .start = xt_table_seq_start,
819 .next = xt_table_seq_next,
820 .stop = xt_table_seq_stop,
821 .show = xt_table_seq_show,
822};
823
824static int xt_table_open(struct inode *inode, struct file *file)
825{
826 int ret;
715cf35a 827 struct xt_names_priv *priv;
025d93d1 828
715cf35a
AD
829 ret = seq_open_net(inode, file, &xt_table_seq_ops,
830 sizeof(struct xt_names_priv));
025d93d1 831 if (!ret) {
715cf35a
AD
832 priv = ((struct seq_file *)file->private_data)->private;
833 priv->af = (unsigned long)PDE(inode)->data;
025d93d1
AD
834 }
835 return ret;
2e4e6a17
HW
836}
837
025d93d1
AD
838static const struct file_operations xt_table_ops = {
839 .owner = THIS_MODULE,
840 .open = xt_table_open,
841 .read = seq_read,
842 .llseek = seq_lseek,
0e93bb94 843 .release = seq_release_net,
025d93d1
AD
844};
845
eb132205
JE
846/*
847 * Traverse state for ip{,6}_{tables,matches} for helping crossing
848 * the multi-AF mutexes.
849 */
850struct nf_mttg_trav {
851 struct list_head *head, *curr;
852 uint8_t class, nfproto;
853};
854
855enum {
856 MTTG_TRAV_INIT,
857 MTTG_TRAV_NFP_UNSPEC,
858 MTTG_TRAV_NFP_SPEC,
859 MTTG_TRAV_DONE,
860};
861
862static void *xt_mttg_seq_next(struct seq_file *seq, void *v, loff_t *ppos,
863 bool is_target)
2e4e6a17 864{
eb132205
JE
865 static const uint8_t next_class[] = {
866 [MTTG_TRAV_NFP_UNSPEC] = MTTG_TRAV_NFP_SPEC,
867 [MTTG_TRAV_NFP_SPEC] = MTTG_TRAV_DONE,
868 };
869 struct nf_mttg_trav *trav = seq->private;
870
871 switch (trav->class) {
872 case MTTG_TRAV_INIT:
873 trav->class = MTTG_TRAV_NFP_UNSPEC;
874 mutex_lock(&xt[NFPROTO_UNSPEC].mutex);
875 trav->head = trav->curr = is_target ?
876 &xt[NFPROTO_UNSPEC].target : &xt[NFPROTO_UNSPEC].match;
877 break;
878 case MTTG_TRAV_NFP_UNSPEC:
879 trav->curr = trav->curr->next;
880 if (trav->curr != trav->head)
881 break;
882 mutex_unlock(&xt[NFPROTO_UNSPEC].mutex);
883 mutex_lock(&xt[trav->nfproto].mutex);
884 trav->head = trav->curr = is_target ?
885 &xt[trav->nfproto].target : &xt[trav->nfproto].match;
886 trav->class = next_class[trav->class];
887 break;
888 case MTTG_TRAV_NFP_SPEC:
889 trav->curr = trav->curr->next;
890 if (trav->curr != trav->head)
891 break;
892 /* fallthru, _stop will unlock */
893 default:
894 return NULL;
895 }
2e4e6a17 896
eb132205
JE
897 if (ppos != NULL)
898 ++*ppos;
899 return trav;
025d93d1 900}
601e68e1 901
eb132205
JE
902static void *xt_mttg_seq_start(struct seq_file *seq, loff_t *pos,
903 bool is_target)
025d93d1 904{
eb132205
JE
905 struct nf_mttg_trav *trav = seq->private;
906 unsigned int j;
2e4e6a17 907
eb132205
JE
908 trav->class = MTTG_TRAV_INIT;
909 for (j = 0; j < *pos; ++j)
910 if (xt_mttg_seq_next(seq, NULL, NULL, is_target) == NULL)
911 return NULL;
912 return trav;
2e4e6a17
HW
913}
914
eb132205 915static void xt_mttg_seq_stop(struct seq_file *seq, void *v)
2e4e6a17 916{
eb132205
JE
917 struct nf_mttg_trav *trav = seq->private;
918
919 switch (trav->class) {
920 case MTTG_TRAV_NFP_UNSPEC:
921 mutex_unlock(&xt[NFPROTO_UNSPEC].mutex);
922 break;
923 case MTTG_TRAV_NFP_SPEC:
924 mutex_unlock(&xt[trav->nfproto].mutex);
925 break;
926 }
927}
2e4e6a17 928
eb132205
JE
929static void *xt_match_seq_start(struct seq_file *seq, loff_t *pos)
930{
931 return xt_mttg_seq_start(seq, pos, false);
2e4e6a17
HW
932}
933
eb132205 934static void *xt_match_seq_next(struct seq_file *seq, void *v, loff_t *ppos)
2e4e6a17 935{
eb132205
JE
936 return xt_mttg_seq_next(seq, v, ppos, false);
937}
2e4e6a17 938
eb132205
JE
939static int xt_match_seq_show(struct seq_file *seq, void *v)
940{
941 const struct nf_mttg_trav *trav = seq->private;
942 const struct xt_match *match;
943
944 switch (trav->class) {
945 case MTTG_TRAV_NFP_UNSPEC:
946 case MTTG_TRAV_NFP_SPEC:
947 if (trav->curr == trav->head)
948 return 0;
949 match = list_entry(trav->curr, struct xt_match, list);
950 return (*match->name == '\0') ? 0 :
951 seq_printf(seq, "%s\n", match->name);
952 }
953 return 0;
2e4e6a17
HW
954}
955
025d93d1
AD
956static const struct seq_operations xt_match_seq_ops = {
957 .start = xt_match_seq_start,
958 .next = xt_match_seq_next,
eb132205 959 .stop = xt_mttg_seq_stop,
025d93d1 960 .show = xt_match_seq_show,
2e4e6a17
HW
961};
962
025d93d1 963static int xt_match_open(struct inode *inode, struct file *file)
2e4e6a17 964{
eb132205
JE
965 struct seq_file *seq;
966 struct nf_mttg_trav *trav;
2e4e6a17
HW
967 int ret;
968
eb132205
JE
969 trav = kmalloc(sizeof(*trav), GFP_KERNEL);
970 if (trav == NULL)
971 return -ENOMEM;
2e4e6a17 972
eb132205
JE
973 ret = seq_open(file, &xt_match_seq_ops);
974 if (ret < 0) {
975 kfree(trav);
976 return ret;
2e4e6a17 977 }
eb132205
JE
978
979 seq = file->private_data;
980 seq->private = trav;
981 trav->nfproto = (unsigned long)PDE(inode)->data;
982 return 0;
025d93d1
AD
983}
984
985static const struct file_operations xt_match_ops = {
986 .owner = THIS_MODULE,
987 .open = xt_match_open,
988 .read = seq_read,
989 .llseek = seq_lseek,
eb132205 990 .release = seq_release_private,
025d93d1 991};
2e4e6a17 992
025d93d1
AD
993static void *xt_target_seq_start(struct seq_file *seq, loff_t *pos)
994{
eb132205 995 return xt_mttg_seq_start(seq, pos, true);
025d93d1
AD
996}
997
eb132205 998static void *xt_target_seq_next(struct seq_file *seq, void *v, loff_t *ppos)
025d93d1 999{
eb132205 1000 return xt_mttg_seq_next(seq, v, ppos, true);
025d93d1
AD
1001}
1002
1003static int xt_target_seq_show(struct seq_file *seq, void *v)
1004{
eb132205
JE
1005 const struct nf_mttg_trav *trav = seq->private;
1006 const struct xt_target *target;
1007
1008 switch (trav->class) {
1009 case MTTG_TRAV_NFP_UNSPEC:
1010 case MTTG_TRAV_NFP_SPEC:
1011 if (trav->curr == trav->head)
1012 return 0;
1013 target = list_entry(trav->curr, struct xt_target, list);
1014 return (*target->name == '\0') ? 0 :
1015 seq_printf(seq, "%s\n", target->name);
1016 }
1017 return 0;
025d93d1
AD
1018}
1019
1020static const struct seq_operations xt_target_seq_ops = {
1021 .start = xt_target_seq_start,
1022 .next = xt_target_seq_next,
eb132205 1023 .stop = xt_mttg_seq_stop,
025d93d1
AD
1024 .show = xt_target_seq_show,
1025};
1026
1027static int xt_target_open(struct inode *inode, struct file *file)
1028{
eb132205
JE
1029 struct seq_file *seq;
1030 struct nf_mttg_trav *trav;
025d93d1
AD
1031 int ret;
1032
eb132205
JE
1033 trav = kmalloc(sizeof(*trav), GFP_KERNEL);
1034 if (trav == NULL)
1035 return -ENOMEM;
025d93d1 1036
eb132205
JE
1037 ret = seq_open(file, &xt_target_seq_ops);
1038 if (ret < 0) {
1039 kfree(trav);
1040 return ret;
025d93d1 1041 }
eb132205
JE
1042
1043 seq = file->private_data;
1044 seq->private = trav;
1045 trav->nfproto = (unsigned long)PDE(inode)->data;
1046 return 0;
2e4e6a17
HW
1047}
1048
025d93d1 1049static const struct file_operations xt_target_ops = {
2e4e6a17 1050 .owner = THIS_MODULE,
025d93d1 1051 .open = xt_target_open,
2e4e6a17
HW
1052 .read = seq_read,
1053 .llseek = seq_lseek,
eb132205 1054 .release = seq_release_private,
2e4e6a17
HW
1055};
1056
1057#define FORMAT_TABLES "_tables_names"
1058#define FORMAT_MATCHES "_tables_matches"
1059#define FORMAT_TARGETS "_tables_targets"
1060
1061#endif /* CONFIG_PROC_FS */
1062
76108cea 1063int xt_proto_init(struct net *net, u_int8_t af)
2e4e6a17
HW
1064{
1065#ifdef CONFIG_PROC_FS
1066 char buf[XT_FUNCTION_MAXNAMELEN];
1067 struct proc_dir_entry *proc;
1068#endif
1069
7e9c6eeb 1070 if (af >= ARRAY_SIZE(xt_prefix))
2e4e6a17
HW
1071 return -EINVAL;
1072
1073
1074#ifdef CONFIG_PROC_FS
ce18afe5 1075 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 1076 strlcat(buf, FORMAT_TABLES, sizeof(buf));
8b169240
DL
1077 proc = proc_create_data(buf, 0440, net->proc_net, &xt_table_ops,
1078 (void *)(unsigned long)af);
2e4e6a17
HW
1079 if (!proc)
1080 goto out;
2e4e6a17 1081
ce18afe5 1082 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 1083 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
8b169240
DL
1084 proc = proc_create_data(buf, 0440, net->proc_net, &xt_match_ops,
1085 (void *)(unsigned long)af);
2e4e6a17
HW
1086 if (!proc)
1087 goto out_remove_tables;
2e4e6a17 1088
ce18afe5 1089 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 1090 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
8b169240
DL
1091 proc = proc_create_data(buf, 0440, net->proc_net, &xt_target_ops,
1092 (void *)(unsigned long)af);
2e4e6a17
HW
1093 if (!proc)
1094 goto out_remove_matches;
2e4e6a17
HW
1095#endif
1096
1097 return 0;
1098
1099#ifdef CONFIG_PROC_FS
1100out_remove_matches:
ce18afe5 1101 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 1102 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
3cb609d5 1103 proc_net_remove(net, buf);
2e4e6a17
HW
1104
1105out_remove_tables:
ce18afe5 1106 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 1107 strlcat(buf, FORMAT_TABLES, sizeof(buf));
3cb609d5 1108 proc_net_remove(net, buf);
2e4e6a17
HW
1109out:
1110 return -1;
1111#endif
1112}
1113EXPORT_SYMBOL_GPL(xt_proto_init);
1114
76108cea 1115void xt_proto_fini(struct net *net, u_int8_t af)
2e4e6a17
HW
1116{
1117#ifdef CONFIG_PROC_FS
1118 char buf[XT_FUNCTION_MAXNAMELEN];
1119
ce18afe5 1120 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 1121 strlcat(buf, FORMAT_TABLES, sizeof(buf));
3cb609d5 1122 proc_net_remove(net, buf);
2e4e6a17 1123
ce18afe5 1124 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 1125 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
3cb609d5 1126 proc_net_remove(net, buf);
2e4e6a17 1127
ce18afe5 1128 strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17 1129 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
3cb609d5 1130 proc_net_remove(net, buf);
2e4e6a17
HW
1131#endif /*CONFIG_PROC_FS*/
1132}
1133EXPORT_SYMBOL_GPL(xt_proto_fini);
1134
8d870052
AD
1135static int __net_init xt_net_init(struct net *net)
1136{
1137 int i;
1138
7e9c6eeb 1139 for (i = 0; i < NFPROTO_NUMPROTO; i++)
8d870052
AD
1140 INIT_LIST_HEAD(&net->xt.tables[i]);
1141 return 0;
1142}
1143
1144static struct pernet_operations xt_net_ops = {
1145 .init = xt_net_init,
1146};
2e4e6a17
HW
1147
1148static int __init xt_init(void)
1149{
8d870052 1150 int i, rv;
2e4e6a17 1151
7e9c6eeb 1152 xt = kmalloc(sizeof(struct xt_af) * NFPROTO_NUMPROTO, GFP_KERNEL);
2e4e6a17
HW
1153 if (!xt)
1154 return -ENOMEM;
1155
7e9c6eeb 1156 for (i = 0; i < NFPROTO_NUMPROTO; i++) {
9e19bb6d 1157 mutex_init(&xt[i].mutex);
2722971c
DM
1158#ifdef CONFIG_COMPAT
1159 mutex_init(&xt[i].compat_mutex);
b386d9f5 1160 xt[i].compat_offsets = NULL;
2722971c 1161#endif
2e4e6a17
HW
1162 INIT_LIST_HEAD(&xt[i].target);
1163 INIT_LIST_HEAD(&xt[i].match);
2e4e6a17 1164 }
8d870052
AD
1165 rv = register_pernet_subsys(&xt_net_ops);
1166 if (rv < 0)
1167 kfree(xt);
1168 return rv;
2e4e6a17
HW
1169}
1170
1171static void __exit xt_fini(void)
1172{
8d870052 1173 unregister_pernet_subsys(&xt_net_ops);
2e4e6a17
HW
1174 kfree(xt);
1175}
1176
1177module_init(xt_init);
1178module_exit(xt_fini);
1179
This page took 0.551585 seconds and 5 git commands to generate.