netfilter: xtables: consolidate code into xt_request_find_match
[pandora-kernel.git] / net / netfilter / x_tables.c
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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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>
23 #include <linux/mutex.h>
24 #include <linux/mm.h>
25 #include <net/net_namespace.h>
26
27 #include <linux/netfilter/x_tables.h>
28 #include <linux/netfilter_arp.h>
29 #include <linux/netfilter_ipv4/ip_tables.h>
30 #include <linux/netfilter_ipv6/ip6_tables.h>
31 #include <linux/netfilter_arp/arp_tables.h>
32
33 MODULE_LICENSE("GPL");
34 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
35 MODULE_DESCRIPTION("{ip,ip6,arp,eb}_tables backend module");
36
37 #define SMP_ALIGN(x) (((x) + SMP_CACHE_BYTES-1) & ~(SMP_CACHE_BYTES-1))
38
39 struct compat_delta {
40         struct compat_delta *next;
41         unsigned int offset;
42         int delta;
43 };
44
45 struct xt_af {
46         struct mutex mutex;
47         struct list_head match;
48         struct list_head target;
49 #ifdef CONFIG_COMPAT
50         struct mutex compat_mutex;
51         struct compat_delta *compat_offsets;
52 #endif
53 };
54
55 static struct xt_af *xt;
56
57 static const char *const xt_prefix[NFPROTO_NUMPROTO] = {
58         [NFPROTO_UNSPEC] = "x",
59         [NFPROTO_IPV4]   = "ip",
60         [NFPROTO_ARP]    = "arp",
61         [NFPROTO_BRIDGE] = "eb",
62         [NFPROTO_IPV6]   = "ip6",
63 };
64
65 /* Registration hooks for targets. */
66 int
67 xt_register_target(struct xt_target *target)
68 {
69         u_int8_t af = target->family;
70         int ret;
71
72         ret = mutex_lock_interruptible(&xt[af].mutex);
73         if (ret != 0)
74                 return ret;
75         list_add(&target->list, &xt[af].target);
76         mutex_unlock(&xt[af].mutex);
77         return ret;
78 }
79 EXPORT_SYMBOL(xt_register_target);
80
81 void
82 xt_unregister_target(struct xt_target *target)
83 {
84         u_int8_t af = target->family;
85
86         mutex_lock(&xt[af].mutex);
87         list_del(&target->list);
88         mutex_unlock(&xt[af].mutex);
89 }
90 EXPORT_SYMBOL(xt_unregister_target);
91
92 int
93 xt_register_targets(struct xt_target *target, unsigned int n)
94 {
95         unsigned int i;
96         int err = 0;
97
98         for (i = 0; i < n; i++) {
99                 err = xt_register_target(&target[i]);
100                 if (err)
101                         goto err;
102         }
103         return err;
104
105 err:
106         if (i > 0)
107                 xt_unregister_targets(target, i);
108         return err;
109 }
110 EXPORT_SYMBOL(xt_register_targets);
111
112 void
113 xt_unregister_targets(struct xt_target *target, unsigned int n)
114 {
115         unsigned int i;
116
117         for (i = 0; i < n; i++)
118                 xt_unregister_target(&target[i]);
119 }
120 EXPORT_SYMBOL(xt_unregister_targets);
121
122 int
123 xt_register_match(struct xt_match *match)
124 {
125         u_int8_t af = match->family;
126         int ret;
127
128         ret = mutex_lock_interruptible(&xt[af].mutex);
129         if (ret != 0)
130                 return ret;
131
132         list_add(&match->list, &xt[af].match);
133         mutex_unlock(&xt[af].mutex);
134
135         return ret;
136 }
137 EXPORT_SYMBOL(xt_register_match);
138
139 void
140 xt_unregister_match(struct xt_match *match)
141 {
142         u_int8_t af = match->family;
143
144         mutex_lock(&xt[af].mutex);
145         list_del(&match->list);
146         mutex_unlock(&xt[af].mutex);
147 }
148 EXPORT_SYMBOL(xt_unregister_match);
149
150 int
151 xt_register_matches(struct xt_match *match, unsigned int n)
152 {
153         unsigned int i;
154         int err = 0;
155
156         for (i = 0; i < n; i++) {
157                 err = xt_register_match(&match[i]);
158                 if (err)
159                         goto err;
160         }
161         return err;
162
163 err:
164         if (i > 0)
165                 xt_unregister_matches(match, i);
166         return err;
167 }
168 EXPORT_SYMBOL(xt_register_matches);
169
170 void
171 xt_unregister_matches(struct xt_match *match, unsigned int n)
172 {
173         unsigned int i;
174
175         for (i = 0; i < n; i++)
176                 xt_unregister_match(&match[i]);
177 }
178 EXPORT_SYMBOL(xt_unregister_matches);
179
180
181 /*
182  * These are weird, but module loading must not be done with mutex
183  * held (since they will register), and we have to have a single
184  * function to use try_then_request_module().
185  */
186
187 /* Find match, grabs ref.  Returns ERR_PTR() on error. */
188 struct xt_match *xt_find_match(u8 af, const char *name, u8 revision)
189 {
190         struct xt_match *m;
191         int err = 0;
192
193         if (mutex_lock_interruptible(&xt[af].mutex) != 0)
194                 return ERR_PTR(-EINTR);
195
196         list_for_each_entry(m, &xt[af].match, list) {
197                 if (strcmp(m->name, name) == 0) {
198                         if (m->revision == revision) {
199                                 if (try_module_get(m->me)) {
200                                         mutex_unlock(&xt[af].mutex);
201                                         return m;
202                                 }
203                         } else
204                                 err = -EPROTOTYPE; /* Found something. */
205                 }
206         }
207         mutex_unlock(&xt[af].mutex);
208
209         if (af != NFPROTO_UNSPEC)
210                 /* Try searching again in the family-independent list */
211                 return xt_find_match(NFPROTO_UNSPEC, name, revision);
212
213         return ERR_PTR(err);
214 }
215 EXPORT_SYMBOL(xt_find_match);
216
217 struct xt_match *
218 xt_request_find_match(uint8_t nfproto, const char *name, uint8_t revision)
219 {
220         struct xt_match *match;
221
222         match = try_then_request_module(xt_find_match(nfproto, name, revision),
223                                         "%st_%s", xt_prefix[nfproto], name);
224         return (match != NULL) ? match : ERR_PTR(-ENOENT);
225 }
226 EXPORT_SYMBOL_GPL(xt_request_find_match);
227
228 /* Find target, grabs ref.  Returns ERR_PTR() on error. */
229 struct xt_target *xt_find_target(u8 af, const char *name, u8 revision)
230 {
231         struct xt_target *t;
232         int err = 0;
233
234         if (mutex_lock_interruptible(&xt[af].mutex) != 0)
235                 return ERR_PTR(-EINTR);
236
237         list_for_each_entry(t, &xt[af].target, list) {
238                 if (strcmp(t->name, name) == 0) {
239                         if (t->revision == revision) {
240                                 if (try_module_get(t->me)) {
241                                         mutex_unlock(&xt[af].mutex);
242                                         return t;
243                                 }
244                         } else
245                                 err = -EPROTOTYPE; /* Found something. */
246                 }
247         }
248         mutex_unlock(&xt[af].mutex);
249
250         if (af != NFPROTO_UNSPEC)
251                 /* Try searching again in the family-independent list */
252                 return xt_find_target(NFPROTO_UNSPEC, name, revision);
253
254         return ERR_PTR(err);
255 }
256 EXPORT_SYMBOL(xt_find_target);
257
258 struct xt_target *xt_request_find_target(u8 af, const char *name, u8 revision)
259 {
260         struct xt_target *target;
261
262         target = try_then_request_module(xt_find_target(af, name, revision),
263                                          "%st_%s", xt_prefix[af], name);
264         return (target != NULL) ? target : ERR_PTR(-ENOENT);
265 }
266 EXPORT_SYMBOL_GPL(xt_request_find_target);
267
268 static int match_revfn(u8 af, const char *name, u8 revision, int *bestp)
269 {
270         const struct xt_match *m;
271         int have_rev = 0;
272
273         list_for_each_entry(m, &xt[af].match, list) {
274                 if (strcmp(m->name, name) == 0) {
275                         if (m->revision > *bestp)
276                                 *bestp = m->revision;
277                         if (m->revision == revision)
278                                 have_rev = 1;
279                 }
280         }
281
282         if (af != NFPROTO_UNSPEC && !have_rev)
283                 return match_revfn(NFPROTO_UNSPEC, name, revision, bestp);
284
285         return have_rev;
286 }
287
288 static int target_revfn(u8 af, const char *name, u8 revision, int *bestp)
289 {
290         const struct xt_target *t;
291         int have_rev = 0;
292
293         list_for_each_entry(t, &xt[af].target, list) {
294                 if (strcmp(t->name, name) == 0) {
295                         if (t->revision > *bestp)
296                                 *bestp = t->revision;
297                         if (t->revision == revision)
298                                 have_rev = 1;
299                 }
300         }
301
302         if (af != NFPROTO_UNSPEC && !have_rev)
303                 return target_revfn(NFPROTO_UNSPEC, name, revision, bestp);
304
305         return have_rev;
306 }
307
308 /* Returns true or false (if no such extension at all) */
309 int xt_find_revision(u8 af, const char *name, u8 revision, int target,
310                      int *err)
311 {
312         int have_rev, best = -1;
313
314         if (mutex_lock_interruptible(&xt[af].mutex) != 0) {
315                 *err = -EINTR;
316                 return 1;
317         }
318         if (target == 1)
319                 have_rev = target_revfn(af, name, revision, &best);
320         else
321                 have_rev = match_revfn(af, name, revision, &best);
322         mutex_unlock(&xt[af].mutex);
323
324         /* Nothing at all?  Return 0 to try loading module. */
325         if (best == -1) {
326                 *err = -ENOENT;
327                 return 0;
328         }
329
330         *err = best;
331         if (!have_rev)
332                 *err = -EPROTONOSUPPORT;
333         return 1;
334 }
335 EXPORT_SYMBOL_GPL(xt_find_revision);
336
337 static char *textify_hooks(char *buf, size_t size, unsigned int mask)
338 {
339         static const char *const names[] = {
340                 "PREROUTING", "INPUT", "FORWARD",
341                 "OUTPUT", "POSTROUTING", "BROUTING",
342         };
343         unsigned int i;
344         char *p = buf;
345         bool np = false;
346         int res;
347
348         *p = '\0';
349         for (i = 0; i < ARRAY_SIZE(names); ++i) {
350                 if (!(mask & (1 << i)))
351                         continue;
352                 res = snprintf(p, size, "%s%s", np ? "/" : "", names[i]);
353                 if (res > 0) {
354                         size -= res;
355                         p += res;
356                 }
357                 np = true;
358         }
359
360         return buf;
361 }
362
363 int xt_check_match(struct xt_mtchk_param *par,
364                    unsigned int size, u_int8_t proto, bool inv_proto)
365 {
366         if (XT_ALIGN(par->match->matchsize) != size &&
367             par->match->matchsize != -1) {
368                 /*
369                  * ebt_among is exempt from centralized matchsize checking
370                  * because it uses a dynamic-size data set.
371                  */
372                 pr_err("%s_tables: %s.%u match: invalid size "
373                        "%u (kernel) != (user) %u\n",
374                        xt_prefix[par->family], par->match->name,
375                        par->match->revision,
376                        XT_ALIGN(par->match->matchsize), size);
377                 return -EINVAL;
378         }
379         if (par->match->table != NULL &&
380             strcmp(par->match->table, par->table) != 0) {
381                 pr_err("%s_tables: %s match: only valid in %s table, not %s\n",
382                        xt_prefix[par->family], par->match->name,
383                        par->match->table, par->table);
384                 return -EINVAL;
385         }
386         if (par->match->hooks && (par->hook_mask & ~par->match->hooks) != 0) {
387                 char used[64], allow[64];
388
389                 pr_err("%s_tables: %s match: used from hooks %s, but only "
390                        "valid from %s\n",
391                        xt_prefix[par->family], par->match->name,
392                        textify_hooks(used, sizeof(used), par->hook_mask),
393                        textify_hooks(allow, sizeof(allow), par->match->hooks));
394                 return -EINVAL;
395         }
396         if (par->match->proto && (par->match->proto != proto || inv_proto)) {
397                 pr_err("%s_tables: %s match: only valid for protocol %u\n",
398                        xt_prefix[par->family], par->match->name,
399                        par->match->proto);
400                 return -EINVAL;
401         }
402         if (par->match->checkentry != NULL && !par->match->checkentry(par))
403                 return -EINVAL;
404         return 0;
405 }
406 EXPORT_SYMBOL_GPL(xt_check_match);
407
408 #ifdef CONFIG_COMPAT
409 int xt_compat_add_offset(u_int8_t af, unsigned int offset, short delta)
410 {
411         struct compat_delta *tmp;
412
413         tmp = kmalloc(sizeof(struct compat_delta), GFP_KERNEL);
414         if (!tmp)
415                 return -ENOMEM;
416
417         tmp->offset = offset;
418         tmp->delta = delta;
419
420         if (xt[af].compat_offsets) {
421                 tmp->next = xt[af].compat_offsets->next;
422                 xt[af].compat_offsets->next = tmp;
423         } else {
424                 xt[af].compat_offsets = tmp;
425                 tmp->next = NULL;
426         }
427         return 0;
428 }
429 EXPORT_SYMBOL_GPL(xt_compat_add_offset);
430
431 void xt_compat_flush_offsets(u_int8_t af)
432 {
433         struct compat_delta *tmp, *next;
434
435         if (xt[af].compat_offsets) {
436                 for (tmp = xt[af].compat_offsets; tmp; tmp = next) {
437                         next = tmp->next;
438                         kfree(tmp);
439                 }
440                 xt[af].compat_offsets = NULL;
441         }
442 }
443 EXPORT_SYMBOL_GPL(xt_compat_flush_offsets);
444
445 int xt_compat_calc_jump(u_int8_t af, unsigned int offset)
446 {
447         struct compat_delta *tmp;
448         int delta;
449
450         for (tmp = xt[af].compat_offsets, delta = 0; tmp; tmp = tmp->next)
451                 if (tmp->offset < offset)
452                         delta += tmp->delta;
453         return delta;
454 }
455 EXPORT_SYMBOL_GPL(xt_compat_calc_jump);
456
457 int xt_compat_match_offset(const struct xt_match *match)
458 {
459         u_int16_t csize = match->compatsize ? : match->matchsize;
460         return XT_ALIGN(match->matchsize) - COMPAT_XT_ALIGN(csize);
461 }
462 EXPORT_SYMBOL_GPL(xt_compat_match_offset);
463
464 int xt_compat_match_from_user(struct xt_entry_match *m, void **dstptr,
465                               unsigned int *size)
466 {
467         const struct xt_match *match = m->u.kernel.match;
468         struct compat_xt_entry_match *cm = (struct compat_xt_entry_match *)m;
469         int pad, off = xt_compat_match_offset(match);
470         u_int16_t msize = cm->u.user.match_size;
471
472         m = *dstptr;
473         memcpy(m, cm, sizeof(*cm));
474         if (match->compat_from_user)
475                 match->compat_from_user(m->data, cm->data);
476         else
477                 memcpy(m->data, cm->data, msize - sizeof(*cm));
478         pad = XT_ALIGN(match->matchsize) - match->matchsize;
479         if (pad > 0)
480                 memset(m->data + match->matchsize, 0, pad);
481
482         msize += off;
483         m->u.user.match_size = msize;
484
485         *size += off;
486         *dstptr += msize;
487         return 0;
488 }
489 EXPORT_SYMBOL_GPL(xt_compat_match_from_user);
490
491 int xt_compat_match_to_user(const struct xt_entry_match *m,
492                             void __user **dstptr, unsigned int *size)
493 {
494         const struct xt_match *match = m->u.kernel.match;
495         struct compat_xt_entry_match __user *cm = *dstptr;
496         int off = xt_compat_match_offset(match);
497         u_int16_t msize = m->u.user.match_size - off;
498
499         if (copy_to_user(cm, m, sizeof(*cm)) ||
500             put_user(msize, &cm->u.user.match_size) ||
501             copy_to_user(cm->u.user.name, m->u.kernel.match->name,
502                          strlen(m->u.kernel.match->name) + 1))
503                 return -EFAULT;
504
505         if (match->compat_to_user) {
506                 if (match->compat_to_user((void __user *)cm->data, m->data))
507                         return -EFAULT;
508         } else {
509                 if (copy_to_user(cm->data, m->data, msize - sizeof(*cm)))
510                         return -EFAULT;
511         }
512
513         *size -= off;
514         *dstptr += msize;
515         return 0;
516 }
517 EXPORT_SYMBOL_GPL(xt_compat_match_to_user);
518 #endif /* CONFIG_COMPAT */
519
520 int xt_check_target(struct xt_tgchk_param *par,
521                     unsigned int size, u_int8_t proto, bool inv_proto)
522 {
523         if (XT_ALIGN(par->target->targetsize) != size) {
524                 pr_err("%s_tables: %s.%u target: invalid size "
525                        "%u (kernel) != (user) %u\n",
526                        xt_prefix[par->family], par->target->name,
527                        par->target->revision,
528                        XT_ALIGN(par->target->targetsize), size);
529                 return -EINVAL;
530         }
531         if (par->target->table != NULL &&
532             strcmp(par->target->table, par->table) != 0) {
533                 pr_err("%s_tables: %s target: only valid in %s table, not %s\n",
534                        xt_prefix[par->family], par->target->name,
535                        par->target->table, par->table);
536                 return -EINVAL;
537         }
538         if (par->target->hooks && (par->hook_mask & ~par->target->hooks) != 0) {
539                 char used[64], allow[64];
540
541                 pr_err("%s_tables: %s target: used from hooks %s, but only "
542                        "usable from %s\n",
543                        xt_prefix[par->family], par->target->name,
544                        textify_hooks(used, sizeof(used), par->hook_mask),
545                        textify_hooks(allow, sizeof(allow), par->target->hooks));
546                 return -EINVAL;
547         }
548         if (par->target->proto && (par->target->proto != proto || inv_proto)) {
549                 pr_err("%s_tables: %s target: only valid for protocol %u\n",
550                        xt_prefix[par->family], par->target->name,
551                        par->target->proto);
552                 return -EINVAL;
553         }
554         if (par->target->checkentry != NULL && !par->target->checkentry(par))
555                 return -EINVAL;
556         return 0;
557 }
558 EXPORT_SYMBOL_GPL(xt_check_target);
559
560 #ifdef CONFIG_COMPAT
561 int xt_compat_target_offset(const struct xt_target *target)
562 {
563         u_int16_t csize = target->compatsize ? : target->targetsize;
564         return XT_ALIGN(target->targetsize) - COMPAT_XT_ALIGN(csize);
565 }
566 EXPORT_SYMBOL_GPL(xt_compat_target_offset);
567
568 void xt_compat_target_from_user(struct xt_entry_target *t, void **dstptr,
569                                 unsigned int *size)
570 {
571         const struct xt_target *target = t->u.kernel.target;
572         struct compat_xt_entry_target *ct = (struct compat_xt_entry_target *)t;
573         int pad, off = xt_compat_target_offset(target);
574         u_int16_t tsize = ct->u.user.target_size;
575
576         t = *dstptr;
577         memcpy(t, ct, sizeof(*ct));
578         if (target->compat_from_user)
579                 target->compat_from_user(t->data, ct->data);
580         else
581                 memcpy(t->data, ct->data, tsize - sizeof(*ct));
582         pad = XT_ALIGN(target->targetsize) - target->targetsize;
583         if (pad > 0)
584                 memset(t->data + target->targetsize, 0, pad);
585
586         tsize += off;
587         t->u.user.target_size = tsize;
588
589         *size += off;
590         *dstptr += tsize;
591 }
592 EXPORT_SYMBOL_GPL(xt_compat_target_from_user);
593
594 int xt_compat_target_to_user(const struct xt_entry_target *t,
595                              void __user **dstptr, unsigned int *size)
596 {
597         const struct xt_target *target = t->u.kernel.target;
598         struct compat_xt_entry_target __user *ct = *dstptr;
599         int off = xt_compat_target_offset(target);
600         u_int16_t tsize = t->u.user.target_size - off;
601
602         if (copy_to_user(ct, t, sizeof(*ct)) ||
603             put_user(tsize, &ct->u.user.target_size) ||
604             copy_to_user(ct->u.user.name, t->u.kernel.target->name,
605                          strlen(t->u.kernel.target->name) + 1))
606                 return -EFAULT;
607
608         if (target->compat_to_user) {
609                 if (target->compat_to_user((void __user *)ct->data, t->data))
610                         return -EFAULT;
611         } else {
612                 if (copy_to_user(ct->data, t->data, tsize - sizeof(*ct)))
613                         return -EFAULT;
614         }
615
616         *size -= off;
617         *dstptr += tsize;
618         return 0;
619 }
620 EXPORT_SYMBOL_GPL(xt_compat_target_to_user);
621 #endif
622
623 struct xt_table_info *xt_alloc_table_info(unsigned int size)
624 {
625         struct xt_table_info *newinfo;
626         int cpu;
627
628         /* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */
629         if ((SMP_ALIGN(size) >> PAGE_SHIFT) + 2 > totalram_pages)
630                 return NULL;
631
632         newinfo = kzalloc(XT_TABLE_INFO_SZ, GFP_KERNEL);
633         if (!newinfo)
634                 return NULL;
635
636         newinfo->size = size;
637
638         for_each_possible_cpu(cpu) {
639                 if (size <= PAGE_SIZE)
640                         newinfo->entries[cpu] = kmalloc_node(size,
641                                                         GFP_KERNEL,
642                                                         cpu_to_node(cpu));
643                 else
644                         newinfo->entries[cpu] = vmalloc_node(size,
645                                                         cpu_to_node(cpu));
646
647                 if (newinfo->entries[cpu] == NULL) {
648                         xt_free_table_info(newinfo);
649                         return NULL;
650                 }
651         }
652
653         return newinfo;
654 }
655 EXPORT_SYMBOL(xt_alloc_table_info);
656
657 void xt_free_table_info(struct xt_table_info *info)
658 {
659         int cpu;
660
661         for_each_possible_cpu(cpu) {
662                 if (info->size <= PAGE_SIZE)
663                         kfree(info->entries[cpu]);
664                 else
665                         vfree(info->entries[cpu]);
666         }
667         kfree(info);
668 }
669 EXPORT_SYMBOL(xt_free_table_info);
670
671 /* Find table by name, grabs mutex & ref.  Returns ERR_PTR() on error. */
672 struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af,
673                                     const char *name)
674 {
675         struct xt_table *t;
676
677         if (mutex_lock_interruptible(&xt[af].mutex) != 0)
678                 return ERR_PTR(-EINTR);
679
680         list_for_each_entry(t, &net->xt.tables[af], list)
681                 if (strcmp(t->name, name) == 0 && try_module_get(t->me))
682                         return t;
683         mutex_unlock(&xt[af].mutex);
684         return NULL;
685 }
686 EXPORT_SYMBOL_GPL(xt_find_table_lock);
687
688 void xt_table_unlock(struct xt_table *table)
689 {
690         mutex_unlock(&xt[table->af].mutex);
691 }
692 EXPORT_SYMBOL_GPL(xt_table_unlock);
693
694 #ifdef CONFIG_COMPAT
695 void xt_compat_lock(u_int8_t af)
696 {
697         mutex_lock(&xt[af].compat_mutex);
698 }
699 EXPORT_SYMBOL_GPL(xt_compat_lock);
700
701 void xt_compat_unlock(u_int8_t af)
702 {
703         mutex_unlock(&xt[af].compat_mutex);
704 }
705 EXPORT_SYMBOL_GPL(xt_compat_unlock);
706 #endif
707
708 DEFINE_PER_CPU(struct xt_info_lock, xt_info_locks);
709 EXPORT_PER_CPU_SYMBOL_GPL(xt_info_locks);
710
711
712 struct xt_table_info *
713 xt_replace_table(struct xt_table *table,
714               unsigned int num_counters,
715               struct xt_table_info *newinfo,
716               int *error)
717 {
718         struct xt_table_info *private;
719
720         /* Do the substitution. */
721         local_bh_disable();
722         private = table->private;
723
724         /* Check inside lock: is the old number correct? */
725         if (num_counters != private->number) {
726                 pr_debug("num_counters != table->private->number (%u/%u)\n",
727                          num_counters, private->number);
728                 local_bh_enable();
729                 *error = -EAGAIN;
730                 return NULL;
731         }
732
733         table->private = newinfo;
734         newinfo->initial_entries = private->initial_entries;
735
736         /*
737          * Even though table entries have now been swapped, other CPU's
738          * may still be using the old entries. This is okay, because
739          * resynchronization happens because of the locking done
740          * during the get_counters() routine.
741          */
742         local_bh_enable();
743
744         return private;
745 }
746 EXPORT_SYMBOL_GPL(xt_replace_table);
747
748 struct xt_table *xt_register_table(struct net *net,
749                                    const struct xt_table *input_table,
750                                    struct xt_table_info *bootstrap,
751                                    struct xt_table_info *newinfo)
752 {
753         int ret;
754         struct xt_table_info *private;
755         struct xt_table *t, *table;
756
757         /* Don't add one object to multiple lists. */
758         table = kmemdup(input_table, sizeof(struct xt_table), GFP_KERNEL);
759         if (!table) {
760                 ret = -ENOMEM;
761                 goto out;
762         }
763
764         ret = mutex_lock_interruptible(&xt[table->af].mutex);
765         if (ret != 0)
766                 goto out_free;
767
768         /* Don't autoload: we'd eat our tail... */
769         list_for_each_entry(t, &net->xt.tables[table->af], list) {
770                 if (strcmp(t->name, table->name) == 0) {
771                         ret = -EEXIST;
772                         goto unlock;
773                 }
774         }
775
776         /* Simplifies replace_table code. */
777         table->private = bootstrap;
778
779         if (!xt_replace_table(table, 0, newinfo, &ret))
780                 goto unlock;
781
782         private = table->private;
783         pr_debug("table->private->number = %u\n", private->number);
784
785         /* save number of initial entries */
786         private->initial_entries = private->number;
787
788         list_add(&table->list, &net->xt.tables[table->af]);
789         mutex_unlock(&xt[table->af].mutex);
790         return table;
791
792  unlock:
793         mutex_unlock(&xt[table->af].mutex);
794 out_free:
795         kfree(table);
796 out:
797         return ERR_PTR(ret);
798 }
799 EXPORT_SYMBOL_GPL(xt_register_table);
800
801 void *xt_unregister_table(struct xt_table *table)
802 {
803         struct xt_table_info *private;
804
805         mutex_lock(&xt[table->af].mutex);
806         private = table->private;
807         list_del(&table->list);
808         mutex_unlock(&xt[table->af].mutex);
809         kfree(table);
810
811         return private;
812 }
813 EXPORT_SYMBOL_GPL(xt_unregister_table);
814
815 #ifdef CONFIG_PROC_FS
816 struct xt_names_priv {
817         struct seq_net_private p;
818         u_int8_t af;
819 };
820 static void *xt_table_seq_start(struct seq_file *seq, loff_t *pos)
821 {
822         struct xt_names_priv *priv = seq->private;
823         struct net *net = seq_file_net(seq);
824         u_int8_t af = priv->af;
825
826         mutex_lock(&xt[af].mutex);
827         return seq_list_start(&net->xt.tables[af], *pos);
828 }
829
830 static void *xt_table_seq_next(struct seq_file *seq, void *v, loff_t *pos)
831 {
832         struct xt_names_priv *priv = seq->private;
833         struct net *net = seq_file_net(seq);
834         u_int8_t af = priv->af;
835
836         return seq_list_next(v, &net->xt.tables[af], pos);
837 }
838
839 static void xt_table_seq_stop(struct seq_file *seq, void *v)
840 {
841         struct xt_names_priv *priv = seq->private;
842         u_int8_t af = priv->af;
843
844         mutex_unlock(&xt[af].mutex);
845 }
846
847 static int xt_table_seq_show(struct seq_file *seq, void *v)
848 {
849         struct xt_table *table = list_entry(v, struct xt_table, list);
850
851         if (strlen(table->name))
852                 return seq_printf(seq, "%s\n", table->name);
853         else
854                 return 0;
855 }
856
857 static const struct seq_operations xt_table_seq_ops = {
858         .start  = xt_table_seq_start,
859         .next   = xt_table_seq_next,
860         .stop   = xt_table_seq_stop,
861         .show   = xt_table_seq_show,
862 };
863
864 static int xt_table_open(struct inode *inode, struct file *file)
865 {
866         int ret;
867         struct xt_names_priv *priv;
868
869         ret = seq_open_net(inode, file, &xt_table_seq_ops,
870                            sizeof(struct xt_names_priv));
871         if (!ret) {
872                 priv = ((struct seq_file *)file->private_data)->private;
873                 priv->af = (unsigned long)PDE(inode)->data;
874         }
875         return ret;
876 }
877
878 static const struct file_operations xt_table_ops = {
879         .owner   = THIS_MODULE,
880         .open    = xt_table_open,
881         .read    = seq_read,
882         .llseek  = seq_lseek,
883         .release = seq_release_net,
884 };
885
886 /*
887  * Traverse state for ip{,6}_{tables,matches} for helping crossing
888  * the multi-AF mutexes.
889  */
890 struct nf_mttg_trav {
891         struct list_head *head, *curr;
892         uint8_t class, nfproto;
893 };
894
895 enum {
896         MTTG_TRAV_INIT,
897         MTTG_TRAV_NFP_UNSPEC,
898         MTTG_TRAV_NFP_SPEC,
899         MTTG_TRAV_DONE,
900 };
901
902 static void *xt_mttg_seq_next(struct seq_file *seq, void *v, loff_t *ppos,
903     bool is_target)
904 {
905         static const uint8_t next_class[] = {
906                 [MTTG_TRAV_NFP_UNSPEC] = MTTG_TRAV_NFP_SPEC,
907                 [MTTG_TRAV_NFP_SPEC]   = MTTG_TRAV_DONE,
908         };
909         struct nf_mttg_trav *trav = seq->private;
910
911         switch (trav->class) {
912         case MTTG_TRAV_INIT:
913                 trav->class = MTTG_TRAV_NFP_UNSPEC;
914                 mutex_lock(&xt[NFPROTO_UNSPEC].mutex);
915                 trav->head = trav->curr = is_target ?
916                         &xt[NFPROTO_UNSPEC].target : &xt[NFPROTO_UNSPEC].match;
917                 break;
918         case MTTG_TRAV_NFP_UNSPEC:
919                 trav->curr = trav->curr->next;
920                 if (trav->curr != trav->head)
921                         break;
922                 mutex_unlock(&xt[NFPROTO_UNSPEC].mutex);
923                 mutex_lock(&xt[trav->nfproto].mutex);
924                 trav->head = trav->curr = is_target ?
925                         &xt[trav->nfproto].target : &xt[trav->nfproto].match;
926                 trav->class = next_class[trav->class];
927                 break;
928         case MTTG_TRAV_NFP_SPEC:
929                 trav->curr = trav->curr->next;
930                 if (trav->curr != trav->head)
931                         break;
932                 /* fallthru, _stop will unlock */
933         default:
934                 return NULL;
935         }
936
937         if (ppos != NULL)
938                 ++*ppos;
939         return trav;
940 }
941
942 static void *xt_mttg_seq_start(struct seq_file *seq, loff_t *pos,
943     bool is_target)
944 {
945         struct nf_mttg_trav *trav = seq->private;
946         unsigned int j;
947
948         trav->class = MTTG_TRAV_INIT;
949         for (j = 0; j < *pos; ++j)
950                 if (xt_mttg_seq_next(seq, NULL, NULL, is_target) == NULL)
951                         return NULL;
952         return trav;
953 }
954
955 static void xt_mttg_seq_stop(struct seq_file *seq, void *v)
956 {
957         struct nf_mttg_trav *trav = seq->private;
958
959         switch (trav->class) {
960         case MTTG_TRAV_NFP_UNSPEC:
961                 mutex_unlock(&xt[NFPROTO_UNSPEC].mutex);
962                 break;
963         case MTTG_TRAV_NFP_SPEC:
964                 mutex_unlock(&xt[trav->nfproto].mutex);
965                 break;
966         }
967 }
968
969 static void *xt_match_seq_start(struct seq_file *seq, loff_t *pos)
970 {
971         return xt_mttg_seq_start(seq, pos, false);
972 }
973
974 static void *xt_match_seq_next(struct seq_file *seq, void *v, loff_t *ppos)
975 {
976         return xt_mttg_seq_next(seq, v, ppos, false);
977 }
978
979 static int xt_match_seq_show(struct seq_file *seq, void *v)
980 {
981         const struct nf_mttg_trav *trav = seq->private;
982         const struct xt_match *match;
983
984         switch (trav->class) {
985         case MTTG_TRAV_NFP_UNSPEC:
986         case MTTG_TRAV_NFP_SPEC:
987                 if (trav->curr == trav->head)
988                         return 0;
989                 match = list_entry(trav->curr, struct xt_match, list);
990                 return (*match->name == '\0') ? 0 :
991                        seq_printf(seq, "%s\n", match->name);
992         }
993         return 0;
994 }
995
996 static const struct seq_operations xt_match_seq_ops = {
997         .start  = xt_match_seq_start,
998         .next   = xt_match_seq_next,
999         .stop   = xt_mttg_seq_stop,
1000         .show   = xt_match_seq_show,
1001 };
1002
1003 static int xt_match_open(struct inode *inode, struct file *file)
1004 {
1005         struct seq_file *seq;
1006         struct nf_mttg_trav *trav;
1007         int ret;
1008
1009         trav = kmalloc(sizeof(*trav), GFP_KERNEL);
1010         if (trav == NULL)
1011                 return -ENOMEM;
1012
1013         ret = seq_open(file, &xt_match_seq_ops);
1014         if (ret < 0) {
1015                 kfree(trav);
1016                 return ret;
1017         }
1018
1019         seq = file->private_data;
1020         seq->private = trav;
1021         trav->nfproto = (unsigned long)PDE(inode)->data;
1022         return 0;
1023 }
1024
1025 static const struct file_operations xt_match_ops = {
1026         .owner   = THIS_MODULE,
1027         .open    = xt_match_open,
1028         .read    = seq_read,
1029         .llseek  = seq_lseek,
1030         .release = seq_release_private,
1031 };
1032
1033 static void *xt_target_seq_start(struct seq_file *seq, loff_t *pos)
1034 {
1035         return xt_mttg_seq_start(seq, pos, true);
1036 }
1037
1038 static void *xt_target_seq_next(struct seq_file *seq, void *v, loff_t *ppos)
1039 {
1040         return xt_mttg_seq_next(seq, v, ppos, true);
1041 }
1042
1043 static int xt_target_seq_show(struct seq_file *seq, void *v)
1044 {
1045         const struct nf_mttg_trav *trav = seq->private;
1046         const struct xt_target *target;
1047
1048         switch (trav->class) {
1049         case MTTG_TRAV_NFP_UNSPEC:
1050         case MTTG_TRAV_NFP_SPEC:
1051                 if (trav->curr == trav->head)
1052                         return 0;
1053                 target = list_entry(trav->curr, struct xt_target, list);
1054                 return (*target->name == '\0') ? 0 :
1055                        seq_printf(seq, "%s\n", target->name);
1056         }
1057         return 0;
1058 }
1059
1060 static const struct seq_operations xt_target_seq_ops = {
1061         .start  = xt_target_seq_start,
1062         .next   = xt_target_seq_next,
1063         .stop   = xt_mttg_seq_stop,
1064         .show   = xt_target_seq_show,
1065 };
1066
1067 static int xt_target_open(struct inode *inode, struct file *file)
1068 {
1069         struct seq_file *seq;
1070         struct nf_mttg_trav *trav;
1071         int ret;
1072
1073         trav = kmalloc(sizeof(*trav), GFP_KERNEL);
1074         if (trav == NULL)
1075                 return -ENOMEM;
1076
1077         ret = seq_open(file, &xt_target_seq_ops);
1078         if (ret < 0) {
1079                 kfree(trav);
1080                 return ret;
1081         }
1082
1083         seq = file->private_data;
1084         seq->private = trav;
1085         trav->nfproto = (unsigned long)PDE(inode)->data;
1086         return 0;
1087 }
1088
1089 static const struct file_operations xt_target_ops = {
1090         .owner   = THIS_MODULE,
1091         .open    = xt_target_open,
1092         .read    = seq_read,
1093         .llseek  = seq_lseek,
1094         .release = seq_release_private,
1095 };
1096
1097 #define FORMAT_TABLES   "_tables_names"
1098 #define FORMAT_MATCHES  "_tables_matches"
1099 #define FORMAT_TARGETS  "_tables_targets"
1100
1101 #endif /* CONFIG_PROC_FS */
1102
1103 /**
1104  * xt_hook_link - set up hooks for a new table
1105  * @table:      table with metadata needed to set up hooks
1106  * @fn:         Hook function
1107  *
1108  * This function will take care of creating and registering the necessary
1109  * Netfilter hooks for XT tables.
1110  */
1111 struct nf_hook_ops *xt_hook_link(const struct xt_table *table, nf_hookfn *fn)
1112 {
1113         unsigned int hook_mask = table->valid_hooks;
1114         uint8_t i, num_hooks = hweight32(hook_mask);
1115         uint8_t hooknum;
1116         struct nf_hook_ops *ops;
1117         int ret;
1118
1119         ops = kmalloc(sizeof(*ops) * num_hooks, GFP_KERNEL);
1120         if (ops == NULL)
1121                 return ERR_PTR(-ENOMEM);
1122
1123         for (i = 0, hooknum = 0; i < num_hooks && hook_mask != 0;
1124              hook_mask >>= 1, ++hooknum) {
1125                 if (!(hook_mask & 1))
1126                         continue;
1127                 ops[i].hook     = fn;
1128                 ops[i].owner    = table->me;
1129                 ops[i].pf       = table->af;
1130                 ops[i].hooknum  = hooknum;
1131                 ops[i].priority = table->priority;
1132                 ++i;
1133         }
1134
1135         ret = nf_register_hooks(ops, num_hooks);
1136         if (ret < 0) {
1137                 kfree(ops);
1138                 return ERR_PTR(ret);
1139         }
1140
1141         return ops;
1142 }
1143 EXPORT_SYMBOL_GPL(xt_hook_link);
1144
1145 /**
1146  * xt_hook_unlink - remove hooks for a table
1147  * @ops:        nf_hook_ops array as returned by nf_hook_link
1148  * @hook_mask:  the very same mask that was passed to nf_hook_link
1149  */
1150 void xt_hook_unlink(const struct xt_table *table, struct nf_hook_ops *ops)
1151 {
1152         nf_unregister_hooks(ops, hweight32(table->valid_hooks));
1153         kfree(ops);
1154 }
1155 EXPORT_SYMBOL_GPL(xt_hook_unlink);
1156
1157 int xt_proto_init(struct net *net, u_int8_t af)
1158 {
1159 #ifdef CONFIG_PROC_FS
1160         char buf[XT_FUNCTION_MAXNAMELEN];
1161         struct proc_dir_entry *proc;
1162 #endif
1163
1164         if (af >= ARRAY_SIZE(xt_prefix))
1165                 return -EINVAL;
1166
1167
1168 #ifdef CONFIG_PROC_FS
1169         strlcpy(buf, xt_prefix[af], sizeof(buf));
1170         strlcat(buf, FORMAT_TABLES, sizeof(buf));
1171         proc = proc_create_data(buf, 0440, net->proc_net, &xt_table_ops,
1172                                 (void *)(unsigned long)af);
1173         if (!proc)
1174                 goto out;
1175
1176         strlcpy(buf, xt_prefix[af], sizeof(buf));
1177         strlcat(buf, FORMAT_MATCHES, sizeof(buf));
1178         proc = proc_create_data(buf, 0440, net->proc_net, &xt_match_ops,
1179                                 (void *)(unsigned long)af);
1180         if (!proc)
1181                 goto out_remove_tables;
1182
1183         strlcpy(buf, xt_prefix[af], sizeof(buf));
1184         strlcat(buf, FORMAT_TARGETS, sizeof(buf));
1185         proc = proc_create_data(buf, 0440, net->proc_net, &xt_target_ops,
1186                                 (void *)(unsigned long)af);
1187         if (!proc)
1188                 goto out_remove_matches;
1189 #endif
1190
1191         return 0;
1192
1193 #ifdef CONFIG_PROC_FS
1194 out_remove_matches:
1195         strlcpy(buf, xt_prefix[af], sizeof(buf));
1196         strlcat(buf, FORMAT_MATCHES, sizeof(buf));
1197         proc_net_remove(net, buf);
1198
1199 out_remove_tables:
1200         strlcpy(buf, xt_prefix[af], sizeof(buf));
1201         strlcat(buf, FORMAT_TABLES, sizeof(buf));
1202         proc_net_remove(net, buf);
1203 out:
1204         return -1;
1205 #endif
1206 }
1207 EXPORT_SYMBOL_GPL(xt_proto_init);
1208
1209 void xt_proto_fini(struct net *net, u_int8_t af)
1210 {
1211 #ifdef CONFIG_PROC_FS
1212         char buf[XT_FUNCTION_MAXNAMELEN];
1213
1214         strlcpy(buf, xt_prefix[af], sizeof(buf));
1215         strlcat(buf, FORMAT_TABLES, sizeof(buf));
1216         proc_net_remove(net, buf);
1217
1218         strlcpy(buf, xt_prefix[af], sizeof(buf));
1219         strlcat(buf, FORMAT_TARGETS, sizeof(buf));
1220         proc_net_remove(net, buf);
1221
1222         strlcpy(buf, xt_prefix[af], sizeof(buf));
1223         strlcat(buf, FORMAT_MATCHES, sizeof(buf));
1224         proc_net_remove(net, buf);
1225 #endif /*CONFIG_PROC_FS*/
1226 }
1227 EXPORT_SYMBOL_GPL(xt_proto_fini);
1228
1229 static int __net_init xt_net_init(struct net *net)
1230 {
1231         int i;
1232
1233         for (i = 0; i < NFPROTO_NUMPROTO; i++)
1234                 INIT_LIST_HEAD(&net->xt.tables[i]);
1235         return 0;
1236 }
1237
1238 static struct pernet_operations xt_net_ops = {
1239         .init = xt_net_init,
1240 };
1241
1242 static int __init xt_init(void)
1243 {
1244         unsigned int i;
1245         int rv;
1246
1247         for_each_possible_cpu(i) {
1248                 struct xt_info_lock *lock = &per_cpu(xt_info_locks, i);
1249                 spin_lock_init(&lock->lock);
1250                 lock->readers = 0;
1251         }
1252
1253         xt = kmalloc(sizeof(struct xt_af) * NFPROTO_NUMPROTO, GFP_KERNEL);
1254         if (!xt)
1255                 return -ENOMEM;
1256
1257         for (i = 0; i < NFPROTO_NUMPROTO; i++) {
1258                 mutex_init(&xt[i].mutex);
1259 #ifdef CONFIG_COMPAT
1260                 mutex_init(&xt[i].compat_mutex);
1261                 xt[i].compat_offsets = NULL;
1262 #endif
1263                 INIT_LIST_HEAD(&xt[i].target);
1264                 INIT_LIST_HEAD(&xt[i].match);
1265         }
1266         rv = register_pernet_subsys(&xt_net_ops);
1267         if (rv < 0)
1268                 kfree(xt);
1269         return rv;
1270 }
1271
1272 static void __exit xt_fini(void)
1273 {
1274         unregister_pernet_subsys(&xt_net_ops);
1275         kfree(xt);
1276 }
1277
1278 module_init(xt_init);
1279 module_exit(xt_fini);
1280