]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - net/netfilter/x_tables.c
Merge tag 'for-4.12/dm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/device...
[karo-tx-linux.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  * Copyright (C) 2006-2012 Patrick McHardy <kaber@trash.net>
6  *
7  * Based on existing ip_tables code which is
8  *   Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
9  *   Copyright (C) 2000-2005 Netfilter Core Team <coreteam@netfilter.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License version 2 as
13  * published by the Free Software Foundation.
14  *
15  */
16 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/socket.h>
20 #include <linux/net.h>
21 #include <linux/proc_fs.h>
22 #include <linux/seq_file.h>
23 #include <linux/string.h>
24 #include <linux/vmalloc.h>
25 #include <linux/mutex.h>
26 #include <linux/mm.h>
27 #include <linux/slab.h>
28 #include <linux/audit.h>
29 #include <linux/user_namespace.h>
30 #include <net/net_namespace.h>
31
32 #include <linux/netfilter/x_tables.h>
33 #include <linux/netfilter_arp.h>
34 #include <linux/netfilter_ipv4/ip_tables.h>
35 #include <linux/netfilter_ipv6/ip6_tables.h>
36 #include <linux/netfilter_arp/arp_tables.h>
37
38 MODULE_LICENSE("GPL");
39 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
40 MODULE_DESCRIPTION("{ip,ip6,arp,eb}_tables backend module");
41
42 #define SMP_ALIGN(x) (((x) + SMP_CACHE_BYTES-1) & ~(SMP_CACHE_BYTES-1))
43 #define XT_PCPU_BLOCK_SIZE 4096
44
45 struct compat_delta {
46         unsigned int offset; /* offset in kernel */
47         int delta; /* delta in 32bit user land */
48 };
49
50 struct xt_af {
51         struct mutex mutex;
52         struct list_head match;
53         struct list_head target;
54 #ifdef CONFIG_COMPAT
55         struct mutex compat_mutex;
56         struct compat_delta *compat_tab;
57         unsigned int number; /* number of slots in compat_tab[] */
58         unsigned int cur; /* number of used slots in compat_tab[] */
59 #endif
60 };
61
62 static struct xt_af *xt;
63
64 static const char *const xt_prefix[NFPROTO_NUMPROTO] = {
65         [NFPROTO_UNSPEC] = "x",
66         [NFPROTO_IPV4]   = "ip",
67         [NFPROTO_ARP]    = "arp",
68         [NFPROTO_BRIDGE] = "eb",
69         [NFPROTO_IPV6]   = "ip6",
70 };
71
72 /* Registration hooks for targets. */
73 int xt_register_target(struct xt_target *target)
74 {
75         u_int8_t af = target->family;
76
77         mutex_lock(&xt[af].mutex);
78         list_add(&target->list, &xt[af].target);
79         mutex_unlock(&xt[af].mutex);
80         return 0;
81 }
82 EXPORT_SYMBOL(xt_register_target);
83
84 void
85 xt_unregister_target(struct xt_target *target)
86 {
87         u_int8_t af = target->family;
88
89         mutex_lock(&xt[af].mutex);
90         list_del(&target->list);
91         mutex_unlock(&xt[af].mutex);
92 }
93 EXPORT_SYMBOL(xt_unregister_target);
94
95 int
96 xt_register_targets(struct xt_target *target, unsigned int n)
97 {
98         unsigned int i;
99         int err = 0;
100
101         for (i = 0; i < n; i++) {
102                 err = xt_register_target(&target[i]);
103                 if (err)
104                         goto err;
105         }
106         return err;
107
108 err:
109         if (i > 0)
110                 xt_unregister_targets(target, i);
111         return err;
112 }
113 EXPORT_SYMBOL(xt_register_targets);
114
115 void
116 xt_unregister_targets(struct xt_target *target, unsigned int n)
117 {
118         while (n-- > 0)
119                 xt_unregister_target(&target[n]);
120 }
121 EXPORT_SYMBOL(xt_unregister_targets);
122
123 int xt_register_match(struct xt_match *match)
124 {
125         u_int8_t af = match->family;
126
127         mutex_lock(&xt[af].mutex);
128         list_add(&match->list, &xt[af].match);
129         mutex_unlock(&xt[af].mutex);
130         return 0;
131 }
132 EXPORT_SYMBOL(xt_register_match);
133
134 void
135 xt_unregister_match(struct xt_match *match)
136 {
137         u_int8_t af = match->family;
138
139         mutex_lock(&xt[af].mutex);
140         list_del(&match->list);
141         mutex_unlock(&xt[af].mutex);
142 }
143 EXPORT_SYMBOL(xt_unregister_match);
144
145 int
146 xt_register_matches(struct xt_match *match, unsigned int n)
147 {
148         unsigned int i;
149         int err = 0;
150
151         for (i = 0; i < n; i++) {
152                 err = xt_register_match(&match[i]);
153                 if (err)
154                         goto err;
155         }
156         return err;
157
158 err:
159         if (i > 0)
160                 xt_unregister_matches(match, i);
161         return err;
162 }
163 EXPORT_SYMBOL(xt_register_matches);
164
165 void
166 xt_unregister_matches(struct xt_match *match, unsigned int n)
167 {
168         while (n-- > 0)
169                 xt_unregister_match(&match[n]);
170 }
171 EXPORT_SYMBOL(xt_unregister_matches);
172
173
174 /*
175  * These are weird, but module loading must not be done with mutex
176  * held (since they will register), and we have to have a single
177  * function to use.
178  */
179
180 /* Find match, grabs ref.  Returns ERR_PTR() on error. */
181 struct xt_match *xt_find_match(u8 af, const char *name, u8 revision)
182 {
183         struct xt_match *m;
184         int err = -ENOENT;
185
186         mutex_lock(&xt[af].mutex);
187         list_for_each_entry(m, &xt[af].match, list) {
188                 if (strcmp(m->name, name) == 0) {
189                         if (m->revision == revision) {
190                                 if (try_module_get(m->me)) {
191                                         mutex_unlock(&xt[af].mutex);
192                                         return m;
193                                 }
194                         } else
195                                 err = -EPROTOTYPE; /* Found something. */
196                 }
197         }
198         mutex_unlock(&xt[af].mutex);
199
200         if (af != NFPROTO_UNSPEC)
201                 /* Try searching again in the family-independent list */
202                 return xt_find_match(NFPROTO_UNSPEC, name, revision);
203
204         return ERR_PTR(err);
205 }
206 EXPORT_SYMBOL(xt_find_match);
207
208 struct xt_match *
209 xt_request_find_match(uint8_t nfproto, const char *name, uint8_t revision)
210 {
211         struct xt_match *match;
212
213         match = xt_find_match(nfproto, name, revision);
214         if (IS_ERR(match)) {
215                 request_module("%st_%s", xt_prefix[nfproto], name);
216                 match = xt_find_match(nfproto, name, revision);
217         }
218
219         return match;
220 }
221 EXPORT_SYMBOL_GPL(xt_request_find_match);
222
223 /* Find target, grabs ref.  Returns ERR_PTR() on error. */
224 struct xt_target *xt_find_target(u8 af, const char *name, u8 revision)
225 {
226         struct xt_target *t;
227         int err = -ENOENT;
228
229         mutex_lock(&xt[af].mutex);
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)) {
234                                         mutex_unlock(&xt[af].mutex);
235                                         return t;
236                                 }
237                         } else
238                                 err = -EPROTOTYPE; /* Found something. */
239                 }
240         }
241         mutex_unlock(&xt[af].mutex);
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
247         return ERR_PTR(err);
248 }
249 EXPORT_SYMBOL(xt_find_target);
250
251 struct xt_target *xt_request_find_target(u8 af, const char *name, u8 revision)
252 {
253         struct xt_target *target;
254
255         target = xt_find_target(af, name, revision);
256         if (IS_ERR(target)) {
257                 request_module("%st_%s", xt_prefix[af], name);
258                 target = xt_find_target(af, name, revision);
259         }
260
261         return target;
262 }
263 EXPORT_SYMBOL_GPL(xt_request_find_target);
264
265
266 static int xt_obj_to_user(u16 __user *psize, u16 size,
267                           void __user *pname, const char *name,
268                           u8 __user *prev, u8 rev)
269 {
270         if (put_user(size, psize))
271                 return -EFAULT;
272         if (copy_to_user(pname, name, strlen(name) + 1))
273                 return -EFAULT;
274         if (put_user(rev, prev))
275                 return -EFAULT;
276
277         return 0;
278 }
279
280 #define XT_OBJ_TO_USER(U, K, TYPE, C_SIZE)                              \
281         xt_obj_to_user(&U->u.TYPE##_size, C_SIZE ? : K->u.TYPE##_size,  \
282                        U->u.user.name, K->u.kernel.TYPE->name,          \
283                        &U->u.user.revision, K->u.kernel.TYPE->revision)
284
285 int xt_data_to_user(void __user *dst, const void *src,
286                     int usersize, int size)
287 {
288         usersize = usersize ? : size;
289         if (copy_to_user(dst, src, usersize))
290                 return -EFAULT;
291         if (usersize != size && clear_user(dst + usersize, size - usersize))
292                 return -EFAULT;
293
294         return 0;
295 }
296 EXPORT_SYMBOL_GPL(xt_data_to_user);
297
298 #define XT_DATA_TO_USER(U, K, TYPE, C_SIZE)                             \
299         xt_data_to_user(U->data, K->data,                               \
300                         K->u.kernel.TYPE->usersize,                     \
301                         C_SIZE ? : K->u.kernel.TYPE->TYPE##size)
302
303 int xt_match_to_user(const struct xt_entry_match *m,
304                      struct xt_entry_match __user *u)
305 {
306         return XT_OBJ_TO_USER(u, m, match, 0) ||
307                XT_DATA_TO_USER(u, m, match, 0);
308 }
309 EXPORT_SYMBOL_GPL(xt_match_to_user);
310
311 int xt_target_to_user(const struct xt_entry_target *t,
312                       struct xt_entry_target __user *u)
313 {
314         return XT_OBJ_TO_USER(u, t, target, 0) ||
315                XT_DATA_TO_USER(u, t, target, 0);
316 }
317 EXPORT_SYMBOL_GPL(xt_target_to_user);
318
319 static int match_revfn(u8 af, const char *name, u8 revision, int *bestp)
320 {
321         const struct xt_match *m;
322         int have_rev = 0;
323
324         list_for_each_entry(m, &xt[af].match, list) {
325                 if (strcmp(m->name, name) == 0) {
326                         if (m->revision > *bestp)
327                                 *bestp = m->revision;
328                         if (m->revision == revision)
329                                 have_rev = 1;
330                 }
331         }
332
333         if (af != NFPROTO_UNSPEC && !have_rev)
334                 return match_revfn(NFPROTO_UNSPEC, name, revision, bestp);
335
336         return have_rev;
337 }
338
339 static int target_revfn(u8 af, const char *name, u8 revision, int *bestp)
340 {
341         const struct xt_target *t;
342         int have_rev = 0;
343
344         list_for_each_entry(t, &xt[af].target, list) {
345                 if (strcmp(t->name, name) == 0) {
346                         if (t->revision > *bestp)
347                                 *bestp = t->revision;
348                         if (t->revision == revision)
349                                 have_rev = 1;
350                 }
351         }
352
353         if (af != NFPROTO_UNSPEC && !have_rev)
354                 return target_revfn(NFPROTO_UNSPEC, name, revision, bestp);
355
356         return have_rev;
357 }
358
359 /* Returns true or false (if no such extension at all) */
360 int xt_find_revision(u8 af, const char *name, u8 revision, int target,
361                      int *err)
362 {
363         int have_rev, best = -1;
364
365         mutex_lock(&xt[af].mutex);
366         if (target == 1)
367                 have_rev = target_revfn(af, name, revision, &best);
368         else
369                 have_rev = match_revfn(af, name, revision, &best);
370         mutex_unlock(&xt[af].mutex);
371
372         /* Nothing at all?  Return 0 to try loading module. */
373         if (best == -1) {
374                 *err = -ENOENT;
375                 return 0;
376         }
377
378         *err = best;
379         if (!have_rev)
380                 *err = -EPROTONOSUPPORT;
381         return 1;
382 }
383 EXPORT_SYMBOL_GPL(xt_find_revision);
384
385 static char *
386 textify_hooks(char *buf, size_t size, unsigned int mask, uint8_t nfproto)
387 {
388         static const char *const inetbr_names[] = {
389                 "PREROUTING", "INPUT", "FORWARD",
390                 "OUTPUT", "POSTROUTING", "BROUTING",
391         };
392         static const char *const arp_names[] = {
393                 "INPUT", "FORWARD", "OUTPUT",
394         };
395         const char *const *names;
396         unsigned int i, max;
397         char *p = buf;
398         bool np = false;
399         int res;
400
401         names = (nfproto == NFPROTO_ARP) ? arp_names : inetbr_names;
402         max   = (nfproto == NFPROTO_ARP) ? ARRAY_SIZE(arp_names) :
403                                            ARRAY_SIZE(inetbr_names);
404         *p = '\0';
405         for (i = 0; i < max; ++i) {
406                 if (!(mask & (1 << i)))
407                         continue;
408                 res = snprintf(p, size, "%s%s", np ? "/" : "", names[i]);
409                 if (res > 0) {
410                         size -= res;
411                         p += res;
412                 }
413                 np = true;
414         }
415
416         return buf;
417 }
418
419 int xt_check_match(struct xt_mtchk_param *par,
420                    unsigned int size, u_int8_t proto, bool inv_proto)
421 {
422         int ret;
423
424         if (XT_ALIGN(par->match->matchsize) != size &&
425             par->match->matchsize != -1) {
426                 /*
427                  * ebt_among is exempt from centralized matchsize checking
428                  * because it uses a dynamic-size data set.
429                  */
430                 pr_err("%s_tables: %s.%u match: invalid size "
431                        "%u (kernel) != (user) %u\n",
432                        xt_prefix[par->family], par->match->name,
433                        par->match->revision,
434                        XT_ALIGN(par->match->matchsize), size);
435                 return -EINVAL;
436         }
437         if (par->match->table != NULL &&
438             strcmp(par->match->table, par->table) != 0) {
439                 pr_err("%s_tables: %s match: only valid in %s table, not %s\n",
440                        xt_prefix[par->family], par->match->name,
441                        par->match->table, par->table);
442                 return -EINVAL;
443         }
444         if (par->match->hooks && (par->hook_mask & ~par->match->hooks) != 0) {
445                 char used[64], allow[64];
446
447                 pr_err("%s_tables: %s match: used from hooks %s, but only "
448                        "valid from %s\n",
449                        xt_prefix[par->family], par->match->name,
450                        textify_hooks(used, sizeof(used), par->hook_mask,
451                                      par->family),
452                        textify_hooks(allow, sizeof(allow), par->match->hooks,
453                                      par->family));
454                 return -EINVAL;
455         }
456         if (par->match->proto && (par->match->proto != proto || inv_proto)) {
457                 pr_err("%s_tables: %s match: only valid for protocol %u\n",
458                        xt_prefix[par->family], par->match->name,
459                        par->match->proto);
460                 return -EINVAL;
461         }
462         if (par->match->checkentry != NULL) {
463                 ret = par->match->checkentry(par);
464                 if (ret < 0)
465                         return ret;
466                 else if (ret > 0)
467                         /* Flag up potential errors. */
468                         return -EIO;
469         }
470         return 0;
471 }
472 EXPORT_SYMBOL_GPL(xt_check_match);
473
474 /** xt_check_entry_match - check that matches end before start of target
475  *
476  * @match: beginning of xt_entry_match
477  * @target: beginning of this rules target (alleged end of matches)
478  * @alignment: alignment requirement of match structures
479  *
480  * Validates that all matches add up to the beginning of the target,
481  * and that each match covers at least the base structure size.
482  *
483  * Return: 0 on success, negative errno on failure.
484  */
485 static int xt_check_entry_match(const char *match, const char *target,
486                                 const size_t alignment)
487 {
488         const struct xt_entry_match *pos;
489         int length = target - match;
490
491         if (length == 0) /* no matches */
492                 return 0;
493
494         pos = (struct xt_entry_match *)match;
495         do {
496                 if ((unsigned long)pos % alignment)
497                         return -EINVAL;
498
499                 if (length < (int)sizeof(struct xt_entry_match))
500                         return -EINVAL;
501
502                 if (pos->u.match_size < sizeof(struct xt_entry_match))
503                         return -EINVAL;
504
505                 if (pos->u.match_size > length)
506                         return -EINVAL;
507
508                 length -= pos->u.match_size;
509                 pos = ((void *)((char *)(pos) + (pos)->u.match_size));
510         } while (length > 0);
511
512         return 0;
513 }
514
515 #ifdef CONFIG_COMPAT
516 int xt_compat_add_offset(u_int8_t af, unsigned int offset, int delta)
517 {
518         struct xt_af *xp = &xt[af];
519
520         if (!xp->compat_tab) {
521                 if (!xp->number)
522                         return -EINVAL;
523                 xp->compat_tab = vmalloc(sizeof(struct compat_delta) * xp->number);
524                 if (!xp->compat_tab)
525                         return -ENOMEM;
526                 xp->cur = 0;
527         }
528
529         if (xp->cur >= xp->number)
530                 return -EINVAL;
531
532         if (xp->cur)
533                 delta += xp->compat_tab[xp->cur - 1].delta;
534         xp->compat_tab[xp->cur].offset = offset;
535         xp->compat_tab[xp->cur].delta = delta;
536         xp->cur++;
537         return 0;
538 }
539 EXPORT_SYMBOL_GPL(xt_compat_add_offset);
540
541 void xt_compat_flush_offsets(u_int8_t af)
542 {
543         if (xt[af].compat_tab) {
544                 vfree(xt[af].compat_tab);
545                 xt[af].compat_tab = NULL;
546                 xt[af].number = 0;
547                 xt[af].cur = 0;
548         }
549 }
550 EXPORT_SYMBOL_GPL(xt_compat_flush_offsets);
551
552 int xt_compat_calc_jump(u_int8_t af, unsigned int offset)
553 {
554         struct compat_delta *tmp = xt[af].compat_tab;
555         int mid, left = 0, right = xt[af].cur - 1;
556
557         while (left <= right) {
558                 mid = (left + right) >> 1;
559                 if (offset > tmp[mid].offset)
560                         left = mid + 1;
561                 else if (offset < tmp[mid].offset)
562                         right = mid - 1;
563                 else
564                         return mid ? tmp[mid - 1].delta : 0;
565         }
566         return left ? tmp[left - 1].delta : 0;
567 }
568 EXPORT_SYMBOL_GPL(xt_compat_calc_jump);
569
570 void xt_compat_init_offsets(u_int8_t af, unsigned int number)
571 {
572         xt[af].number = number;
573         xt[af].cur = 0;
574 }
575 EXPORT_SYMBOL(xt_compat_init_offsets);
576
577 int xt_compat_match_offset(const struct xt_match *match)
578 {
579         u_int16_t csize = match->compatsize ? : match->matchsize;
580         return XT_ALIGN(match->matchsize) - COMPAT_XT_ALIGN(csize);
581 }
582 EXPORT_SYMBOL_GPL(xt_compat_match_offset);
583
584 void xt_compat_match_from_user(struct xt_entry_match *m, void **dstptr,
585                                unsigned int *size)
586 {
587         const struct xt_match *match = m->u.kernel.match;
588         struct compat_xt_entry_match *cm = (struct compat_xt_entry_match *)m;
589         int pad, off = xt_compat_match_offset(match);
590         u_int16_t msize = cm->u.user.match_size;
591         char name[sizeof(m->u.user.name)];
592
593         m = *dstptr;
594         memcpy(m, cm, sizeof(*cm));
595         if (match->compat_from_user)
596                 match->compat_from_user(m->data, cm->data);
597         else
598                 memcpy(m->data, cm->data, msize - sizeof(*cm));
599         pad = XT_ALIGN(match->matchsize) - match->matchsize;
600         if (pad > 0)
601                 memset(m->data + match->matchsize, 0, pad);
602
603         msize += off;
604         m->u.user.match_size = msize;
605         strlcpy(name, match->name, sizeof(name));
606         module_put(match->me);
607         strncpy(m->u.user.name, name, sizeof(m->u.user.name));
608
609         *size += off;
610         *dstptr += msize;
611 }
612 EXPORT_SYMBOL_GPL(xt_compat_match_from_user);
613
614 int xt_compat_match_to_user(const struct xt_entry_match *m,
615                             void __user **dstptr, unsigned int *size)
616 {
617         const struct xt_match *match = m->u.kernel.match;
618         struct compat_xt_entry_match __user *cm = *dstptr;
619         int off = xt_compat_match_offset(match);
620         u_int16_t msize = m->u.user.match_size - off;
621
622         if (XT_OBJ_TO_USER(cm, m, match, msize))
623                 return -EFAULT;
624
625         if (match->compat_to_user) {
626                 if (match->compat_to_user((void __user *)cm->data, m->data))
627                         return -EFAULT;
628         } else {
629                 if (XT_DATA_TO_USER(cm, m, match, msize - sizeof(*cm)))
630                         return -EFAULT;
631         }
632
633         *size -= off;
634         *dstptr += msize;
635         return 0;
636 }
637 EXPORT_SYMBOL_GPL(xt_compat_match_to_user);
638
639 /* non-compat version may have padding after verdict */
640 struct compat_xt_standard_target {
641         struct compat_xt_entry_target t;
642         compat_uint_t verdict;
643 };
644
645 int xt_compat_check_entry_offsets(const void *base, const char *elems,
646                                   unsigned int target_offset,
647                                   unsigned int next_offset)
648 {
649         long size_of_base_struct = elems - (const char *)base;
650         const struct compat_xt_entry_target *t;
651         const char *e = base;
652
653         if (target_offset < size_of_base_struct)
654                 return -EINVAL;
655
656         if (target_offset + sizeof(*t) > next_offset)
657                 return -EINVAL;
658
659         t = (void *)(e + target_offset);
660         if (t->u.target_size < sizeof(*t))
661                 return -EINVAL;
662
663         if (target_offset + t->u.target_size > next_offset)
664                 return -EINVAL;
665
666         if (strcmp(t->u.user.name, XT_STANDARD_TARGET) == 0 &&
667             COMPAT_XT_ALIGN(target_offset + sizeof(struct compat_xt_standard_target)) != next_offset)
668                 return -EINVAL;
669
670         /* compat_xt_entry match has less strict alignment requirements,
671          * otherwise they are identical.  In case of padding differences
672          * we need to add compat version of xt_check_entry_match.
673          */
674         BUILD_BUG_ON(sizeof(struct compat_xt_entry_match) != sizeof(struct xt_entry_match));
675
676         return xt_check_entry_match(elems, base + target_offset,
677                                     __alignof__(struct compat_xt_entry_match));
678 }
679 EXPORT_SYMBOL(xt_compat_check_entry_offsets);
680 #endif /* CONFIG_COMPAT */
681
682 /**
683  * xt_check_entry_offsets - validate arp/ip/ip6t_entry
684  *
685  * @base: pointer to arp/ip/ip6t_entry
686  * @elems: pointer to first xt_entry_match, i.e. ip(6)t_entry->elems
687  * @target_offset: the arp/ip/ip6_t->target_offset
688  * @next_offset: the arp/ip/ip6_t->next_offset
689  *
690  * validates that target_offset and next_offset are sane and that all
691  * match sizes (if any) align with the target offset.
692  *
693  * This function does not validate the targets or matches themselves, it
694  * only tests that all the offsets and sizes are correct, that all
695  * match structures are aligned, and that the last structure ends where
696  * the target structure begins.
697  *
698  * Also see xt_compat_check_entry_offsets for CONFIG_COMPAT version.
699  *
700  * The arp/ip/ip6t_entry structure @base must have passed following tests:
701  * - it must point to a valid memory location
702  * - base to base + next_offset must be accessible, i.e. not exceed allocated
703  *   length.
704  *
705  * A well-formed entry looks like this:
706  *
707  * ip(6)t_entry   match [mtdata]  match [mtdata] target [tgdata] ip(6)t_entry
708  * e->elems[]-----'                              |               |
709  *                matchsize                      |               |
710  *                                matchsize      |               |
711  *                                               |               |
712  * target_offset---------------------------------'               |
713  * next_offset---------------------------------------------------'
714  *
715  * elems[]: flexible array member at end of ip(6)/arpt_entry struct.
716  *          This is where matches (if any) and the target reside.
717  * target_offset: beginning of target.
718  * next_offset: start of the next rule; also: size of this rule.
719  * Since targets have a minimum size, target_offset + minlen <= next_offset.
720  *
721  * Every match stores its size, sum of sizes must not exceed target_offset.
722  *
723  * Return: 0 on success, negative errno on failure.
724  */
725 int xt_check_entry_offsets(const void *base,
726                            const char *elems,
727                            unsigned int target_offset,
728                            unsigned int next_offset)
729 {
730         long size_of_base_struct = elems - (const char *)base;
731         const struct xt_entry_target *t;
732         const char *e = base;
733
734         /* target start is within the ip/ip6/arpt_entry struct */
735         if (target_offset < size_of_base_struct)
736                 return -EINVAL;
737
738         if (target_offset + sizeof(*t) > next_offset)
739                 return -EINVAL;
740
741         t = (void *)(e + target_offset);
742         if (t->u.target_size < sizeof(*t))
743                 return -EINVAL;
744
745         if (target_offset + t->u.target_size > next_offset)
746                 return -EINVAL;
747
748         if (strcmp(t->u.user.name, XT_STANDARD_TARGET) == 0 &&
749             XT_ALIGN(target_offset + sizeof(struct xt_standard_target)) != next_offset)
750                 return -EINVAL;
751
752         return xt_check_entry_match(elems, base + target_offset,
753                                     __alignof__(struct xt_entry_match));
754 }
755 EXPORT_SYMBOL(xt_check_entry_offsets);
756
757 /**
758  * xt_alloc_entry_offsets - allocate array to store rule head offsets
759  *
760  * @size: number of entries
761  *
762  * Return: NULL or kmalloc'd or vmalloc'd array
763  */
764 unsigned int *xt_alloc_entry_offsets(unsigned int size)
765 {
766         unsigned int *off;
767
768         off = kcalloc(size, sizeof(unsigned int), GFP_KERNEL | __GFP_NOWARN);
769
770         if (off)
771                 return off;
772
773         if (size < (SIZE_MAX / sizeof(unsigned int)))
774                 off = vmalloc(size * sizeof(unsigned int));
775
776         return off;
777 }
778 EXPORT_SYMBOL(xt_alloc_entry_offsets);
779
780 /**
781  * xt_find_jump_offset - check if target is a valid jump offset
782  *
783  * @offsets: array containing all valid rule start offsets of a rule blob
784  * @target: the jump target to search for
785  * @size: entries in @offset
786  */
787 bool xt_find_jump_offset(const unsigned int *offsets,
788                          unsigned int target, unsigned int size)
789 {
790         int m, low = 0, hi = size;
791
792         while (hi > low) {
793                 m = (low + hi) / 2u;
794
795                 if (offsets[m] > target)
796                         hi = m;
797                 else if (offsets[m] < target)
798                         low = m + 1;
799                 else
800                         return true;
801         }
802
803         return false;
804 }
805 EXPORT_SYMBOL(xt_find_jump_offset);
806
807 int xt_check_target(struct xt_tgchk_param *par,
808                     unsigned int size, u_int8_t proto, bool inv_proto)
809 {
810         int ret;
811
812         if (XT_ALIGN(par->target->targetsize) != size) {
813                 pr_err("%s_tables: %s.%u target: invalid size "
814                        "%u (kernel) != (user) %u\n",
815                        xt_prefix[par->family], par->target->name,
816                        par->target->revision,
817                        XT_ALIGN(par->target->targetsize), size);
818                 return -EINVAL;
819         }
820         if (par->target->table != NULL &&
821             strcmp(par->target->table, par->table) != 0) {
822                 pr_err("%s_tables: %s target: only valid in %s table, not %s\n",
823                        xt_prefix[par->family], par->target->name,
824                        par->target->table, par->table);
825                 return -EINVAL;
826         }
827         if (par->target->hooks && (par->hook_mask & ~par->target->hooks) != 0) {
828                 char used[64], allow[64];
829
830                 pr_err("%s_tables: %s target: used from hooks %s, but only "
831                        "usable from %s\n",
832                        xt_prefix[par->family], par->target->name,
833                        textify_hooks(used, sizeof(used), par->hook_mask,
834                                      par->family),
835                        textify_hooks(allow, sizeof(allow), par->target->hooks,
836                                      par->family));
837                 return -EINVAL;
838         }
839         if (par->target->proto && (par->target->proto != proto || inv_proto)) {
840                 pr_err("%s_tables: %s target: only valid for protocol %u\n",
841                        xt_prefix[par->family], par->target->name,
842                        par->target->proto);
843                 return -EINVAL;
844         }
845         if (par->target->checkentry != NULL) {
846                 ret = par->target->checkentry(par);
847                 if (ret < 0)
848                         return ret;
849                 else if (ret > 0)
850                         /* Flag up potential errors. */
851                         return -EIO;
852         }
853         return 0;
854 }
855 EXPORT_SYMBOL_GPL(xt_check_target);
856
857 /**
858  * xt_copy_counters_from_user - copy counters and metadata from userspace
859  *
860  * @user: src pointer to userspace memory
861  * @len: alleged size of userspace memory
862  * @info: where to store the xt_counters_info metadata
863  * @compat: true if we setsockopt call is done by 32bit task on 64bit kernel
864  *
865  * Copies counter meta data from @user and stores it in @info.
866  *
867  * vmallocs memory to hold the counters, then copies the counter data
868  * from @user to the new memory and returns a pointer to it.
869  *
870  * If @compat is true, @info gets converted automatically to the 64bit
871  * representation.
872  *
873  * The metadata associated with the counters is stored in @info.
874  *
875  * Return: returns pointer that caller has to test via IS_ERR().
876  * If IS_ERR is false, caller has to vfree the pointer.
877  */
878 void *xt_copy_counters_from_user(const void __user *user, unsigned int len,
879                                  struct xt_counters_info *info, bool compat)
880 {
881         void *mem;
882         u64 size;
883
884 #ifdef CONFIG_COMPAT
885         if (compat) {
886                 /* structures only differ in size due to alignment */
887                 struct compat_xt_counters_info compat_tmp;
888
889                 if (len <= sizeof(compat_tmp))
890                         return ERR_PTR(-EINVAL);
891
892                 len -= sizeof(compat_tmp);
893                 if (copy_from_user(&compat_tmp, user, sizeof(compat_tmp)) != 0)
894                         return ERR_PTR(-EFAULT);
895
896                 strlcpy(info->name, compat_tmp.name, sizeof(info->name));
897                 info->num_counters = compat_tmp.num_counters;
898                 user += sizeof(compat_tmp);
899         } else
900 #endif
901         {
902                 if (len <= sizeof(*info))
903                         return ERR_PTR(-EINVAL);
904
905                 len -= sizeof(*info);
906                 if (copy_from_user(info, user, sizeof(*info)) != 0)
907                         return ERR_PTR(-EFAULT);
908
909                 info->name[sizeof(info->name) - 1] = '\0';
910                 user += sizeof(*info);
911         }
912
913         size = sizeof(struct xt_counters);
914         size *= info->num_counters;
915
916         if (size != (u64)len)
917                 return ERR_PTR(-EINVAL);
918
919         mem = vmalloc(len);
920         if (!mem)
921                 return ERR_PTR(-ENOMEM);
922
923         if (copy_from_user(mem, user, len) == 0)
924                 return mem;
925
926         vfree(mem);
927         return ERR_PTR(-EFAULT);
928 }
929 EXPORT_SYMBOL_GPL(xt_copy_counters_from_user);
930
931 #ifdef CONFIG_COMPAT
932 int xt_compat_target_offset(const struct xt_target *target)
933 {
934         u_int16_t csize = target->compatsize ? : target->targetsize;
935         return XT_ALIGN(target->targetsize) - COMPAT_XT_ALIGN(csize);
936 }
937 EXPORT_SYMBOL_GPL(xt_compat_target_offset);
938
939 void xt_compat_target_from_user(struct xt_entry_target *t, void **dstptr,
940                                 unsigned int *size)
941 {
942         const struct xt_target *target = t->u.kernel.target;
943         struct compat_xt_entry_target *ct = (struct compat_xt_entry_target *)t;
944         int pad, off = xt_compat_target_offset(target);
945         u_int16_t tsize = ct->u.user.target_size;
946         char name[sizeof(t->u.user.name)];
947
948         t = *dstptr;
949         memcpy(t, ct, sizeof(*ct));
950         if (target->compat_from_user)
951                 target->compat_from_user(t->data, ct->data);
952         else
953                 memcpy(t->data, ct->data, tsize - sizeof(*ct));
954         pad = XT_ALIGN(target->targetsize) - target->targetsize;
955         if (pad > 0)
956                 memset(t->data + target->targetsize, 0, pad);
957
958         tsize += off;
959         t->u.user.target_size = tsize;
960         strlcpy(name, target->name, sizeof(name));
961         module_put(target->me);
962         strncpy(t->u.user.name, name, sizeof(t->u.user.name));
963
964         *size += off;
965         *dstptr += tsize;
966 }
967 EXPORT_SYMBOL_GPL(xt_compat_target_from_user);
968
969 int xt_compat_target_to_user(const struct xt_entry_target *t,
970                              void __user **dstptr, unsigned int *size)
971 {
972         const struct xt_target *target = t->u.kernel.target;
973         struct compat_xt_entry_target __user *ct = *dstptr;
974         int off = xt_compat_target_offset(target);
975         u_int16_t tsize = t->u.user.target_size - off;
976
977         if (XT_OBJ_TO_USER(ct, t, target, tsize))
978                 return -EFAULT;
979
980         if (target->compat_to_user) {
981                 if (target->compat_to_user((void __user *)ct->data, t->data))
982                         return -EFAULT;
983         } else {
984                 if (XT_DATA_TO_USER(ct, t, target, tsize - sizeof(*ct)))
985                         return -EFAULT;
986         }
987
988         *size -= off;
989         *dstptr += tsize;
990         return 0;
991 }
992 EXPORT_SYMBOL_GPL(xt_compat_target_to_user);
993 #endif
994
995 struct xt_table_info *xt_alloc_table_info(unsigned int size)
996 {
997         struct xt_table_info *info = NULL;
998         size_t sz = sizeof(*info) + size;
999
1000         if (sz < sizeof(*info))
1001                 return NULL;
1002
1003         /* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */
1004         if ((SMP_ALIGN(size) >> PAGE_SHIFT) + 2 > totalram_pages)
1005                 return NULL;
1006
1007         if (sz <= (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER))
1008                 info = kmalloc(sz, GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY);
1009         if (!info) {
1010                 info = __vmalloc(sz, GFP_KERNEL | __GFP_NOWARN |
1011                                      __GFP_NORETRY | __GFP_HIGHMEM,
1012                                  PAGE_KERNEL);
1013                 if (!info)
1014                         return NULL;
1015         }
1016         memset(info, 0, sizeof(*info));
1017         info->size = size;
1018         return info;
1019 }
1020 EXPORT_SYMBOL(xt_alloc_table_info);
1021
1022 void xt_free_table_info(struct xt_table_info *info)
1023 {
1024         int cpu;
1025
1026         if (info->jumpstack != NULL) {
1027                 for_each_possible_cpu(cpu)
1028                         kvfree(info->jumpstack[cpu]);
1029                 kvfree(info->jumpstack);
1030         }
1031
1032         kvfree(info);
1033 }
1034 EXPORT_SYMBOL(xt_free_table_info);
1035
1036 /* Find table by name, grabs mutex & ref.  Returns NULL on error. */
1037 struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af,
1038                                     const char *name)
1039 {
1040         struct xt_table *t, *found = NULL;
1041
1042         mutex_lock(&xt[af].mutex);
1043         list_for_each_entry(t, &net->xt.tables[af], list)
1044                 if (strcmp(t->name, name) == 0 && try_module_get(t->me))
1045                         return t;
1046
1047         if (net == &init_net)
1048                 goto out;
1049
1050         /* Table doesn't exist in this netns, re-try init */
1051         list_for_each_entry(t, &init_net.xt.tables[af], list) {
1052                 if (strcmp(t->name, name))
1053                         continue;
1054                 if (!try_module_get(t->me)) {
1055                         mutex_unlock(&xt[af].mutex);
1056                         return NULL;
1057                 }
1058
1059                 mutex_unlock(&xt[af].mutex);
1060                 if (t->table_init(net) != 0) {
1061                         module_put(t->me);
1062                         return NULL;
1063                 }
1064
1065                 found = t;
1066
1067                 mutex_lock(&xt[af].mutex);
1068                 break;
1069         }
1070
1071         if (!found)
1072                 goto out;
1073
1074         /* and once again: */
1075         list_for_each_entry(t, &net->xt.tables[af], list)
1076                 if (strcmp(t->name, name) == 0)
1077                         return t;
1078
1079         module_put(found->me);
1080  out:
1081         mutex_unlock(&xt[af].mutex);
1082         return NULL;
1083 }
1084 EXPORT_SYMBOL_GPL(xt_find_table_lock);
1085
1086 void xt_table_unlock(struct xt_table *table)
1087 {
1088         mutex_unlock(&xt[table->af].mutex);
1089 }
1090 EXPORT_SYMBOL_GPL(xt_table_unlock);
1091
1092 #ifdef CONFIG_COMPAT
1093 void xt_compat_lock(u_int8_t af)
1094 {
1095         mutex_lock(&xt[af].compat_mutex);
1096 }
1097 EXPORT_SYMBOL_GPL(xt_compat_lock);
1098
1099 void xt_compat_unlock(u_int8_t af)
1100 {
1101         mutex_unlock(&xt[af].compat_mutex);
1102 }
1103 EXPORT_SYMBOL_GPL(xt_compat_unlock);
1104 #endif
1105
1106 DEFINE_PER_CPU(seqcount_t, xt_recseq);
1107 EXPORT_PER_CPU_SYMBOL_GPL(xt_recseq);
1108
1109 struct static_key xt_tee_enabled __read_mostly;
1110 EXPORT_SYMBOL_GPL(xt_tee_enabled);
1111
1112 static int xt_jumpstack_alloc(struct xt_table_info *i)
1113 {
1114         unsigned int size;
1115         int cpu;
1116
1117         size = sizeof(void **) * nr_cpu_ids;
1118         if (size > PAGE_SIZE)
1119                 i->jumpstack = vzalloc(size);
1120         else
1121                 i->jumpstack = kzalloc(size, GFP_KERNEL);
1122         if (i->jumpstack == NULL)
1123                 return -ENOMEM;
1124
1125         /* ruleset without jumps -- no stack needed */
1126         if (i->stacksize == 0)
1127                 return 0;
1128
1129         /* Jumpstack needs to be able to record two full callchains, one
1130          * from the first rule set traversal, plus one table reentrancy
1131          * via -j TEE without clobbering the callchain that brought us to
1132          * TEE target.
1133          *
1134          * This is done by allocating two jumpstacks per cpu, on reentry
1135          * the upper half of the stack is used.
1136          *
1137          * see the jumpstack setup in ipt_do_table() for more details.
1138          */
1139         size = sizeof(void *) * i->stacksize * 2u;
1140         for_each_possible_cpu(cpu) {
1141                 if (size > PAGE_SIZE)
1142                         i->jumpstack[cpu] = vmalloc_node(size,
1143                                 cpu_to_node(cpu));
1144                 else
1145                         i->jumpstack[cpu] = kmalloc_node(size,
1146                                 GFP_KERNEL, cpu_to_node(cpu));
1147                 if (i->jumpstack[cpu] == NULL)
1148                         /*
1149                          * Freeing will be done later on by the callers. The
1150                          * chain is: xt_replace_table -> __do_replace ->
1151                          * do_replace -> xt_free_table_info.
1152                          */
1153                         return -ENOMEM;
1154         }
1155
1156         return 0;
1157 }
1158
1159 struct xt_table_info *
1160 xt_replace_table(struct xt_table *table,
1161               unsigned int num_counters,
1162               struct xt_table_info *newinfo,
1163               int *error)
1164 {
1165         struct xt_table_info *private;
1166         int ret;
1167
1168         ret = xt_jumpstack_alloc(newinfo);
1169         if (ret < 0) {
1170                 *error = ret;
1171                 return NULL;
1172         }
1173
1174         /* Do the substitution. */
1175         local_bh_disable();
1176         private = table->private;
1177
1178         /* Check inside lock: is the old number correct? */
1179         if (num_counters != private->number) {
1180                 pr_debug("num_counters != table->private->number (%u/%u)\n",
1181                          num_counters, private->number);
1182                 local_bh_enable();
1183                 *error = -EAGAIN;
1184                 return NULL;
1185         }
1186
1187         newinfo->initial_entries = private->initial_entries;
1188         /*
1189          * Ensure contents of newinfo are visible before assigning to
1190          * private.
1191          */
1192         smp_wmb();
1193         table->private = newinfo;
1194
1195         /*
1196          * Even though table entries have now been swapped, other CPU's
1197          * may still be using the old entries. This is okay, because
1198          * resynchronization happens because of the locking done
1199          * during the get_counters() routine.
1200          */
1201         local_bh_enable();
1202
1203 #ifdef CONFIG_AUDIT
1204         if (audit_enabled) {
1205                 struct audit_buffer *ab;
1206
1207                 ab = audit_log_start(current->audit_context, GFP_KERNEL,
1208                                      AUDIT_NETFILTER_CFG);
1209                 if (ab) {
1210                         audit_log_format(ab, "table=%s family=%u entries=%u",
1211                                          table->name, table->af,
1212                                          private->number);
1213                         audit_log_end(ab);
1214                 }
1215         }
1216 #endif
1217
1218         return private;
1219 }
1220 EXPORT_SYMBOL_GPL(xt_replace_table);
1221
1222 struct xt_table *xt_register_table(struct net *net,
1223                                    const struct xt_table *input_table,
1224                                    struct xt_table_info *bootstrap,
1225                                    struct xt_table_info *newinfo)
1226 {
1227         int ret;
1228         struct xt_table_info *private;
1229         struct xt_table *t, *table;
1230
1231         /* Don't add one object to multiple lists. */
1232         table = kmemdup(input_table, sizeof(struct xt_table), GFP_KERNEL);
1233         if (!table) {
1234                 ret = -ENOMEM;
1235                 goto out;
1236         }
1237
1238         mutex_lock(&xt[table->af].mutex);
1239         /* Don't autoload: we'd eat our tail... */
1240         list_for_each_entry(t, &net->xt.tables[table->af], list) {
1241                 if (strcmp(t->name, table->name) == 0) {
1242                         ret = -EEXIST;
1243                         goto unlock;
1244                 }
1245         }
1246
1247         /* Simplifies replace_table code. */
1248         table->private = bootstrap;
1249
1250         if (!xt_replace_table(table, 0, newinfo, &ret))
1251                 goto unlock;
1252
1253         private = table->private;
1254         pr_debug("table->private->number = %u\n", private->number);
1255
1256         /* save number of initial entries */
1257         private->initial_entries = private->number;
1258
1259         list_add(&table->list, &net->xt.tables[table->af]);
1260         mutex_unlock(&xt[table->af].mutex);
1261         return table;
1262
1263 unlock:
1264         mutex_unlock(&xt[table->af].mutex);
1265         kfree(table);
1266 out:
1267         return ERR_PTR(ret);
1268 }
1269 EXPORT_SYMBOL_GPL(xt_register_table);
1270
1271 void *xt_unregister_table(struct xt_table *table)
1272 {
1273         struct xt_table_info *private;
1274
1275         mutex_lock(&xt[table->af].mutex);
1276         private = table->private;
1277         list_del(&table->list);
1278         mutex_unlock(&xt[table->af].mutex);
1279         kfree(table);
1280
1281         return private;
1282 }
1283 EXPORT_SYMBOL_GPL(xt_unregister_table);
1284
1285 #ifdef CONFIG_PROC_FS
1286 struct xt_names_priv {
1287         struct seq_net_private p;
1288         u_int8_t af;
1289 };
1290 static void *xt_table_seq_start(struct seq_file *seq, loff_t *pos)
1291 {
1292         struct xt_names_priv *priv = seq->private;
1293         struct net *net = seq_file_net(seq);
1294         u_int8_t af = priv->af;
1295
1296         mutex_lock(&xt[af].mutex);
1297         return seq_list_start(&net->xt.tables[af], *pos);
1298 }
1299
1300 static void *xt_table_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1301 {
1302         struct xt_names_priv *priv = seq->private;
1303         struct net *net = seq_file_net(seq);
1304         u_int8_t af = priv->af;
1305
1306         return seq_list_next(v, &net->xt.tables[af], pos);
1307 }
1308
1309 static void xt_table_seq_stop(struct seq_file *seq, void *v)
1310 {
1311         struct xt_names_priv *priv = seq->private;
1312         u_int8_t af = priv->af;
1313
1314         mutex_unlock(&xt[af].mutex);
1315 }
1316
1317 static int xt_table_seq_show(struct seq_file *seq, void *v)
1318 {
1319         struct xt_table *table = list_entry(v, struct xt_table, list);
1320
1321         if (*table->name)
1322                 seq_printf(seq, "%s\n", table->name);
1323         return 0;
1324 }
1325
1326 static const struct seq_operations xt_table_seq_ops = {
1327         .start  = xt_table_seq_start,
1328         .next   = xt_table_seq_next,
1329         .stop   = xt_table_seq_stop,
1330         .show   = xt_table_seq_show,
1331 };
1332
1333 static int xt_table_open(struct inode *inode, struct file *file)
1334 {
1335         int ret;
1336         struct xt_names_priv *priv;
1337
1338         ret = seq_open_net(inode, file, &xt_table_seq_ops,
1339                            sizeof(struct xt_names_priv));
1340         if (!ret) {
1341                 priv = ((struct seq_file *)file->private_data)->private;
1342                 priv->af = (unsigned long)PDE_DATA(inode);
1343         }
1344         return ret;
1345 }
1346
1347 static const struct file_operations xt_table_ops = {
1348         .owner   = THIS_MODULE,
1349         .open    = xt_table_open,
1350         .read    = seq_read,
1351         .llseek  = seq_lseek,
1352         .release = seq_release_net,
1353 };
1354
1355 /*
1356  * Traverse state for ip{,6}_{tables,matches} for helping crossing
1357  * the multi-AF mutexes.
1358  */
1359 struct nf_mttg_trav {
1360         struct list_head *head, *curr;
1361         uint8_t class, nfproto;
1362 };
1363
1364 enum {
1365         MTTG_TRAV_INIT,
1366         MTTG_TRAV_NFP_UNSPEC,
1367         MTTG_TRAV_NFP_SPEC,
1368         MTTG_TRAV_DONE,
1369 };
1370
1371 static void *xt_mttg_seq_next(struct seq_file *seq, void *v, loff_t *ppos,
1372     bool is_target)
1373 {
1374         static const uint8_t next_class[] = {
1375                 [MTTG_TRAV_NFP_UNSPEC] = MTTG_TRAV_NFP_SPEC,
1376                 [MTTG_TRAV_NFP_SPEC]   = MTTG_TRAV_DONE,
1377         };
1378         struct nf_mttg_trav *trav = seq->private;
1379
1380         switch (trav->class) {
1381         case MTTG_TRAV_INIT:
1382                 trav->class = MTTG_TRAV_NFP_UNSPEC;
1383                 mutex_lock(&xt[NFPROTO_UNSPEC].mutex);
1384                 trav->head = trav->curr = is_target ?
1385                         &xt[NFPROTO_UNSPEC].target : &xt[NFPROTO_UNSPEC].match;
1386                 break;
1387         case MTTG_TRAV_NFP_UNSPEC:
1388                 trav->curr = trav->curr->next;
1389                 if (trav->curr != trav->head)
1390                         break;
1391                 mutex_unlock(&xt[NFPROTO_UNSPEC].mutex);
1392                 mutex_lock(&xt[trav->nfproto].mutex);
1393                 trav->head = trav->curr = is_target ?
1394                         &xt[trav->nfproto].target : &xt[trav->nfproto].match;
1395                 trav->class = next_class[trav->class];
1396                 break;
1397         case MTTG_TRAV_NFP_SPEC:
1398                 trav->curr = trav->curr->next;
1399                 if (trav->curr != trav->head)
1400                         break;
1401                 /* fallthru, _stop will unlock */
1402         default:
1403                 return NULL;
1404         }
1405
1406         if (ppos != NULL)
1407                 ++*ppos;
1408         return trav;
1409 }
1410
1411 static void *xt_mttg_seq_start(struct seq_file *seq, loff_t *pos,
1412     bool is_target)
1413 {
1414         struct nf_mttg_trav *trav = seq->private;
1415         unsigned int j;
1416
1417         trav->class = MTTG_TRAV_INIT;
1418         for (j = 0; j < *pos; ++j)
1419                 if (xt_mttg_seq_next(seq, NULL, NULL, is_target) == NULL)
1420                         return NULL;
1421         return trav;
1422 }
1423
1424 static void xt_mttg_seq_stop(struct seq_file *seq, void *v)
1425 {
1426         struct nf_mttg_trav *trav = seq->private;
1427
1428         switch (trav->class) {
1429         case MTTG_TRAV_NFP_UNSPEC:
1430                 mutex_unlock(&xt[NFPROTO_UNSPEC].mutex);
1431                 break;
1432         case MTTG_TRAV_NFP_SPEC:
1433                 mutex_unlock(&xt[trav->nfproto].mutex);
1434                 break;
1435         }
1436 }
1437
1438 static void *xt_match_seq_start(struct seq_file *seq, loff_t *pos)
1439 {
1440         return xt_mttg_seq_start(seq, pos, false);
1441 }
1442
1443 static void *xt_match_seq_next(struct seq_file *seq, void *v, loff_t *ppos)
1444 {
1445         return xt_mttg_seq_next(seq, v, ppos, false);
1446 }
1447
1448 static int xt_match_seq_show(struct seq_file *seq, void *v)
1449 {
1450         const struct nf_mttg_trav *trav = seq->private;
1451         const struct xt_match *match;
1452
1453         switch (trav->class) {
1454         case MTTG_TRAV_NFP_UNSPEC:
1455         case MTTG_TRAV_NFP_SPEC:
1456                 if (trav->curr == trav->head)
1457                         return 0;
1458                 match = list_entry(trav->curr, struct xt_match, list);
1459                 if (*match->name)
1460                         seq_printf(seq, "%s\n", match->name);
1461         }
1462         return 0;
1463 }
1464
1465 static const struct seq_operations xt_match_seq_ops = {
1466         .start  = xt_match_seq_start,
1467         .next   = xt_match_seq_next,
1468         .stop   = xt_mttg_seq_stop,
1469         .show   = xt_match_seq_show,
1470 };
1471
1472 static int xt_match_open(struct inode *inode, struct file *file)
1473 {
1474         struct nf_mttg_trav *trav;
1475         trav = __seq_open_private(file, &xt_match_seq_ops, sizeof(*trav));
1476         if (!trav)
1477                 return -ENOMEM;
1478
1479         trav->nfproto = (unsigned long)PDE_DATA(inode);
1480         return 0;
1481 }
1482
1483 static const struct file_operations xt_match_ops = {
1484         .owner   = THIS_MODULE,
1485         .open    = xt_match_open,
1486         .read    = seq_read,
1487         .llseek  = seq_lseek,
1488         .release = seq_release_private,
1489 };
1490
1491 static void *xt_target_seq_start(struct seq_file *seq, loff_t *pos)
1492 {
1493         return xt_mttg_seq_start(seq, pos, true);
1494 }
1495
1496 static void *xt_target_seq_next(struct seq_file *seq, void *v, loff_t *ppos)
1497 {
1498         return xt_mttg_seq_next(seq, v, ppos, true);
1499 }
1500
1501 static int xt_target_seq_show(struct seq_file *seq, void *v)
1502 {
1503         const struct nf_mttg_trav *trav = seq->private;
1504         const struct xt_target *target;
1505
1506         switch (trav->class) {
1507         case MTTG_TRAV_NFP_UNSPEC:
1508         case MTTG_TRAV_NFP_SPEC:
1509                 if (trav->curr == trav->head)
1510                         return 0;
1511                 target = list_entry(trav->curr, struct xt_target, list);
1512                 if (*target->name)
1513                         seq_printf(seq, "%s\n", target->name);
1514         }
1515         return 0;
1516 }
1517
1518 static const struct seq_operations xt_target_seq_ops = {
1519         .start  = xt_target_seq_start,
1520         .next   = xt_target_seq_next,
1521         .stop   = xt_mttg_seq_stop,
1522         .show   = xt_target_seq_show,
1523 };
1524
1525 static int xt_target_open(struct inode *inode, struct file *file)
1526 {
1527         struct nf_mttg_trav *trav;
1528         trav = __seq_open_private(file, &xt_target_seq_ops, sizeof(*trav));
1529         if (!trav)
1530                 return -ENOMEM;
1531
1532         trav->nfproto = (unsigned long)PDE_DATA(inode);
1533         return 0;
1534 }
1535
1536 static const struct file_operations xt_target_ops = {
1537         .owner   = THIS_MODULE,
1538         .open    = xt_target_open,
1539         .read    = seq_read,
1540         .llseek  = seq_lseek,
1541         .release = seq_release_private,
1542 };
1543
1544 #define FORMAT_TABLES   "_tables_names"
1545 #define FORMAT_MATCHES  "_tables_matches"
1546 #define FORMAT_TARGETS  "_tables_targets"
1547
1548 #endif /* CONFIG_PROC_FS */
1549
1550 /**
1551  * xt_hook_ops_alloc - set up hooks for a new table
1552  * @table:      table with metadata needed to set up hooks
1553  * @fn:         Hook function
1554  *
1555  * This function will create the nf_hook_ops that the x_table needs
1556  * to hand to xt_hook_link_net().
1557  */
1558 struct nf_hook_ops *
1559 xt_hook_ops_alloc(const struct xt_table *table, nf_hookfn *fn)
1560 {
1561         unsigned int hook_mask = table->valid_hooks;
1562         uint8_t i, num_hooks = hweight32(hook_mask);
1563         uint8_t hooknum;
1564         struct nf_hook_ops *ops;
1565
1566         if (!num_hooks)
1567                 return ERR_PTR(-EINVAL);
1568
1569         ops = kcalloc(num_hooks, sizeof(*ops), GFP_KERNEL);
1570         if (ops == NULL)
1571                 return ERR_PTR(-ENOMEM);
1572
1573         for (i = 0, hooknum = 0; i < num_hooks && hook_mask != 0;
1574              hook_mask >>= 1, ++hooknum) {
1575                 if (!(hook_mask & 1))
1576                         continue;
1577                 ops[i].hook     = fn;
1578                 ops[i].pf       = table->af;
1579                 ops[i].hooknum  = hooknum;
1580                 ops[i].priority = table->priority;
1581                 ++i;
1582         }
1583
1584         return ops;
1585 }
1586 EXPORT_SYMBOL_GPL(xt_hook_ops_alloc);
1587
1588 int xt_proto_init(struct net *net, u_int8_t af)
1589 {
1590 #ifdef CONFIG_PROC_FS
1591         char buf[XT_FUNCTION_MAXNAMELEN];
1592         struct proc_dir_entry *proc;
1593         kuid_t root_uid;
1594         kgid_t root_gid;
1595 #endif
1596
1597         if (af >= ARRAY_SIZE(xt_prefix))
1598                 return -EINVAL;
1599
1600
1601 #ifdef CONFIG_PROC_FS
1602         root_uid = make_kuid(net->user_ns, 0);
1603         root_gid = make_kgid(net->user_ns, 0);
1604
1605         strlcpy(buf, xt_prefix[af], sizeof(buf));
1606         strlcat(buf, FORMAT_TABLES, sizeof(buf));
1607         proc = proc_create_data(buf, 0440, net->proc_net, &xt_table_ops,
1608                                 (void *)(unsigned long)af);
1609         if (!proc)
1610                 goto out;
1611         if (uid_valid(root_uid) && gid_valid(root_gid))
1612                 proc_set_user(proc, root_uid, root_gid);
1613
1614         strlcpy(buf, xt_prefix[af], sizeof(buf));
1615         strlcat(buf, FORMAT_MATCHES, sizeof(buf));
1616         proc = proc_create_data(buf, 0440, net->proc_net, &xt_match_ops,
1617                                 (void *)(unsigned long)af);
1618         if (!proc)
1619                 goto out_remove_tables;
1620         if (uid_valid(root_uid) && gid_valid(root_gid))
1621                 proc_set_user(proc, root_uid, root_gid);
1622
1623         strlcpy(buf, xt_prefix[af], sizeof(buf));
1624         strlcat(buf, FORMAT_TARGETS, sizeof(buf));
1625         proc = proc_create_data(buf, 0440, net->proc_net, &xt_target_ops,
1626                                 (void *)(unsigned long)af);
1627         if (!proc)
1628                 goto out_remove_matches;
1629         if (uid_valid(root_uid) && gid_valid(root_gid))
1630                 proc_set_user(proc, root_uid, root_gid);
1631 #endif
1632
1633         return 0;
1634
1635 #ifdef CONFIG_PROC_FS
1636 out_remove_matches:
1637         strlcpy(buf, xt_prefix[af], sizeof(buf));
1638         strlcat(buf, FORMAT_MATCHES, sizeof(buf));
1639         remove_proc_entry(buf, net->proc_net);
1640
1641 out_remove_tables:
1642         strlcpy(buf, xt_prefix[af], sizeof(buf));
1643         strlcat(buf, FORMAT_TABLES, sizeof(buf));
1644         remove_proc_entry(buf, net->proc_net);
1645 out:
1646         return -1;
1647 #endif
1648 }
1649 EXPORT_SYMBOL_GPL(xt_proto_init);
1650
1651 void xt_proto_fini(struct net *net, u_int8_t af)
1652 {
1653 #ifdef CONFIG_PROC_FS
1654         char buf[XT_FUNCTION_MAXNAMELEN];
1655
1656         strlcpy(buf, xt_prefix[af], sizeof(buf));
1657         strlcat(buf, FORMAT_TABLES, sizeof(buf));
1658         remove_proc_entry(buf, net->proc_net);
1659
1660         strlcpy(buf, xt_prefix[af], sizeof(buf));
1661         strlcat(buf, FORMAT_TARGETS, sizeof(buf));
1662         remove_proc_entry(buf, net->proc_net);
1663
1664         strlcpy(buf, xt_prefix[af], sizeof(buf));
1665         strlcat(buf, FORMAT_MATCHES, sizeof(buf));
1666         remove_proc_entry(buf, net->proc_net);
1667 #endif /*CONFIG_PROC_FS*/
1668 }
1669 EXPORT_SYMBOL_GPL(xt_proto_fini);
1670
1671 /**
1672  * xt_percpu_counter_alloc - allocate x_tables rule counter
1673  *
1674  * @state: pointer to xt_percpu allocation state
1675  * @counter: pointer to counter struct inside the ip(6)/arpt_entry struct
1676  *
1677  * On SMP, the packet counter [ ip(6)t_entry->counters.pcnt ] will then
1678  * contain the address of the real (percpu) counter.
1679  *
1680  * Rule evaluation needs to use xt_get_this_cpu_counter() helper
1681  * to fetch the real percpu counter.
1682  *
1683  * To speed up allocation and improve data locality, a 4kb block is
1684  * allocated.
1685  *
1686  * xt_percpu_counter_alloc_state contains the base address of the
1687  * allocated page and the current sub-offset.
1688  *
1689  * returns false on error.
1690  */
1691 bool xt_percpu_counter_alloc(struct xt_percpu_counter_alloc_state *state,
1692                              struct xt_counters *counter)
1693 {
1694         BUILD_BUG_ON(XT_PCPU_BLOCK_SIZE < (sizeof(*counter) * 2));
1695
1696         if (nr_cpu_ids <= 1)
1697                 return true;
1698
1699         if (!state->mem) {
1700                 state->mem = __alloc_percpu(XT_PCPU_BLOCK_SIZE,
1701                                             XT_PCPU_BLOCK_SIZE);
1702                 if (!state->mem)
1703                         return false;
1704         }
1705         counter->pcnt = (__force unsigned long)(state->mem + state->off);
1706         state->off += sizeof(*counter);
1707         if (state->off > (XT_PCPU_BLOCK_SIZE - sizeof(*counter))) {
1708                 state->mem = NULL;
1709                 state->off = 0;
1710         }
1711         return true;
1712 }
1713 EXPORT_SYMBOL_GPL(xt_percpu_counter_alloc);
1714
1715 void xt_percpu_counter_free(struct xt_counters *counters)
1716 {
1717         unsigned long pcnt = counters->pcnt;
1718
1719         if (nr_cpu_ids > 1 && (pcnt & (XT_PCPU_BLOCK_SIZE - 1)) == 0)
1720                 free_percpu((void __percpu *)pcnt);
1721 }
1722 EXPORT_SYMBOL_GPL(xt_percpu_counter_free);
1723
1724 static int __net_init xt_net_init(struct net *net)
1725 {
1726         int i;
1727
1728         for (i = 0; i < NFPROTO_NUMPROTO; i++)
1729                 INIT_LIST_HEAD(&net->xt.tables[i]);
1730         return 0;
1731 }
1732
1733 static struct pernet_operations xt_net_ops = {
1734         .init = xt_net_init,
1735 };
1736
1737 static int __init xt_init(void)
1738 {
1739         unsigned int i;
1740         int rv;
1741
1742         for_each_possible_cpu(i) {
1743                 seqcount_init(&per_cpu(xt_recseq, i));
1744         }
1745
1746         xt = kmalloc(sizeof(struct xt_af) * NFPROTO_NUMPROTO, GFP_KERNEL);
1747         if (!xt)
1748                 return -ENOMEM;
1749
1750         for (i = 0; i < NFPROTO_NUMPROTO; i++) {
1751                 mutex_init(&xt[i].mutex);
1752 #ifdef CONFIG_COMPAT
1753                 mutex_init(&xt[i].compat_mutex);
1754                 xt[i].compat_tab = NULL;
1755 #endif
1756                 INIT_LIST_HEAD(&xt[i].target);
1757                 INIT_LIST_HEAD(&xt[i].match);
1758         }
1759         rv = register_pernet_subsys(&xt_net_ops);
1760         if (rv < 0)
1761                 kfree(xt);
1762         return rv;
1763 }
1764
1765 static void __exit xt_fini(void)
1766 {
1767         unregister_pernet_subsys(&xt_net_ops);
1768         kfree(xt);
1769 }
1770
1771 module_init(xt_init);
1772 module_exit(xt_fini);
1773