1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Packet matching code for ARP packets.
4 *
5 * Based heavily, if not almost entirely, upon ip_tables.c framework.
6 *
7 * Some ARP specific bits are:
8 *
9 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
10 * Copyright (C) 2006-2009 Patrick McHardy <kaber@trash.net>
11 *
12 */
13 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <linux/kernel.h>
15 #include <linux/skbuff.h>
16 #include <linux/netdevice.h>
17 #include <linux/capability.h>
18 #include <linux/if_arp.h>
19 #include <linux/kmod.h>
20 #include <linux/vmalloc.h>
21 #include <linux/proc_fs.h>
22 #include <linux/module.h>
23 #include <linux/init.h>
24 #include <linux/mutex.h>
25 #include <linux/err.h>
26 #include <net/compat.h>
27 #include <net/sock.h>
28 #include <linux/uaccess.h>
29
30 #include <linux/netfilter/x_tables.h>
31 #include <linux/netfilter_arp/arp_tables.h>
32 #include "../../netfilter/xt_repldata.h"
33
34 MODULE_LICENSE("GPL");
35 MODULE_AUTHOR("David S. Miller <davem@redhat.com>");
36 MODULE_DESCRIPTION("arptables core");
37
arpt_alloc_initial_table(const struct xt_table * info)38 void *arpt_alloc_initial_table(const struct xt_table *info)
39 {
40 return xt_alloc_initial_table(arpt, ARPT);
41 }
42 EXPORT_SYMBOL_GPL(arpt_alloc_initial_table);
43
arp_devaddr_compare(const struct arpt_devaddr_info * ap,const char * hdr_addr,int len)44 static inline int arp_devaddr_compare(const struct arpt_devaddr_info *ap,
45 const char *hdr_addr, int len)
46 {
47 int i, ret;
48
49 if (len > ARPT_DEV_ADDR_LEN_MAX)
50 len = ARPT_DEV_ADDR_LEN_MAX;
51
52 ret = 0;
53 for (i = 0; i < len; i++)
54 ret |= (hdr_addr[i] ^ ap->addr[i]) & ap->mask[i];
55
56 return ret != 0;
57 }
58
59 /*
60 * Unfortunately, _b and _mask are not aligned to an int (or long int)
61 * Some arches dont care, unrolling the loop is a win on them.
62 * For other arches, we only have a 16bit alignement.
63 */
ifname_compare(const char * _a,const char * _b,const char * _mask)64 static unsigned long ifname_compare(const char *_a, const char *_b, const char *_mask)
65 {
66 #ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
67 unsigned long ret = ifname_compare_aligned(_a, _b, _mask);
68 #else
69 unsigned long ret = 0;
70 const u16 *a = (const u16 *)_a;
71 const u16 *b = (const u16 *)_b;
72 const u16 *mask = (const u16 *)_mask;
73 int i;
74
75 for (i = 0; i < IFNAMSIZ/sizeof(u16); i++)
76 ret |= (a[i] ^ b[i]) & mask[i];
77 #endif
78 return ret;
79 }
80
81 /* Returns whether packet matches rule or not. */
arp_packet_match(const struct arphdr * arphdr,struct net_device * dev,const char * indev,const char * outdev,const struct arpt_arp * arpinfo)82 static inline int arp_packet_match(const struct arphdr *arphdr,
83 struct net_device *dev,
84 const char *indev,
85 const char *outdev,
86 const struct arpt_arp *arpinfo)
87 {
88 const char *arpptr = (char *)(arphdr + 1);
89 const char *src_devaddr, *tgt_devaddr;
90 __be32 src_ipaddr, tgt_ipaddr;
91 long ret;
92
93 if (NF_INVF(arpinfo, ARPT_INV_ARPOP,
94 (arphdr->ar_op & arpinfo->arpop_mask) != arpinfo->arpop))
95 return 0;
96
97 if (NF_INVF(arpinfo, ARPT_INV_ARPHRD,
98 (arphdr->ar_hrd & arpinfo->arhrd_mask) != arpinfo->arhrd))
99 return 0;
100
101 if (NF_INVF(arpinfo, ARPT_INV_ARPPRO,
102 (arphdr->ar_pro & arpinfo->arpro_mask) != arpinfo->arpro))
103 return 0;
104
105 if (NF_INVF(arpinfo, ARPT_INV_ARPHLN,
106 (arphdr->ar_hln & arpinfo->arhln_mask) != arpinfo->arhln))
107 return 0;
108
109 src_devaddr = arpptr;
110 arpptr += dev->addr_len;
111 memcpy(&src_ipaddr, arpptr, sizeof(u32));
112 arpptr += sizeof(u32);
113 tgt_devaddr = arpptr;
114 arpptr += dev->addr_len;
115 memcpy(&tgt_ipaddr, arpptr, sizeof(u32));
116
117 if (NF_INVF(arpinfo, ARPT_INV_SRCDEVADDR,
118 arp_devaddr_compare(&arpinfo->src_devaddr, src_devaddr,
119 dev->addr_len)) ||
120 NF_INVF(arpinfo, ARPT_INV_TGTDEVADDR,
121 arp_devaddr_compare(&arpinfo->tgt_devaddr, tgt_devaddr,
122 dev->addr_len)))
123 return 0;
124
125 if (NF_INVF(arpinfo, ARPT_INV_SRCIP,
126 (src_ipaddr & arpinfo->smsk.s_addr) != arpinfo->src.s_addr) ||
127 NF_INVF(arpinfo, ARPT_INV_TGTIP,
128 (tgt_ipaddr & arpinfo->tmsk.s_addr) != arpinfo->tgt.s_addr))
129 return 0;
130
131 /* Look for ifname matches. */
132 ret = ifname_compare(indev, arpinfo->iniface, arpinfo->iniface_mask);
133
134 if (NF_INVF(arpinfo, ARPT_INV_VIA_IN, ret != 0))
135 return 0;
136
137 ret = ifname_compare(outdev, arpinfo->outiface, arpinfo->outiface_mask);
138
139 if (NF_INVF(arpinfo, ARPT_INV_VIA_OUT, ret != 0))
140 return 0;
141
142 return 1;
143 }
144
arp_checkentry(const struct arpt_arp * arp)145 static inline int arp_checkentry(const struct arpt_arp *arp)
146 {
147 if (arp->flags & ~ARPT_F_MASK)
148 return 0;
149 if (arp->invflags & ~ARPT_INV_MASK)
150 return 0;
151
152 return 1;
153 }
154
155 static unsigned int
arpt_error(struct sk_buff * skb,const struct xt_action_param * par)156 arpt_error(struct sk_buff *skb, const struct xt_action_param *par)
157 {
158 net_err_ratelimited("arp_tables: error: '%s'\n",
159 (const char *)par->targinfo);
160
161 return NF_DROP;
162 }
163
164 static inline const struct xt_entry_target *
arpt_get_target_c(const struct arpt_entry * e)165 arpt_get_target_c(const struct arpt_entry *e)
166 {
167 return arpt_get_target((struct arpt_entry *)e);
168 }
169
170 static inline struct arpt_entry *
get_entry(const void * base,unsigned int offset)171 get_entry(const void *base, unsigned int offset)
172 {
173 return (struct arpt_entry *)(base + offset);
174 }
175
176 static inline
arpt_next_entry(const struct arpt_entry * entry)177 struct arpt_entry *arpt_next_entry(const struct arpt_entry *entry)
178 {
179 return (void *)entry + entry->next_offset;
180 }
181
arpt_do_table(struct sk_buff * skb,const struct nf_hook_state * state,struct xt_table * table)182 unsigned int arpt_do_table(struct sk_buff *skb,
183 const struct nf_hook_state *state,
184 struct xt_table *table)
185 {
186 unsigned int hook = state->hook;
187 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
188 unsigned int verdict = NF_DROP;
189 const struct arphdr *arp;
190 struct arpt_entry *e, **jumpstack;
191 const char *indev, *outdev;
192 const void *table_base;
193 unsigned int cpu, stackidx = 0;
194 const struct xt_table_info *private;
195 struct xt_action_param acpar;
196 unsigned int addend;
197
198 if (!pskb_may_pull(skb, arp_hdr_len(skb->dev)))
199 return NF_DROP;
200
201 indev = state->in ? state->in->name : nulldevname;
202 outdev = state->out ? state->out->name : nulldevname;
203
204 local_bh_disable();
205 addend = xt_write_recseq_begin();
206 private = READ_ONCE(table->private); /* Address dependency. */
207 cpu = smp_processor_id();
208 table_base = private->entries;
209 jumpstack = (struct arpt_entry **)private->jumpstack[cpu];
210
211 /* No TEE support for arptables, so no need to switch to alternate
212 * stack. All targets that reenter must return absolute verdicts.
213 */
214 e = get_entry(table_base, private->hook_entry[hook]);
215
216 acpar.state = state;
217 acpar.hotdrop = false;
218
219 arp = arp_hdr(skb);
220 do {
221 const struct xt_entry_target *t;
222 struct xt_counters *counter;
223
224 if (!arp_packet_match(arp, skb->dev, indev, outdev, &e->arp)) {
225 e = arpt_next_entry(e);
226 continue;
227 }
228
229 counter = xt_get_this_cpu_counter(&e->counters);
230 ADD_COUNTER(*counter, arp_hdr_len(skb->dev), 1);
231
232 t = arpt_get_target_c(e);
233
234 /* Standard target? */
235 if (!t->u.kernel.target->target) {
236 int v;
237
238 v = ((struct xt_standard_target *)t)->verdict;
239 if (v < 0) {
240 /* Pop from stack? */
241 if (v != XT_RETURN) {
242 verdict = (unsigned int)(-v) - 1;
243 break;
244 }
245 if (stackidx == 0) {
246 e = get_entry(table_base,
247 private->underflow[hook]);
248 } else {
249 e = jumpstack[--stackidx];
250 e = arpt_next_entry(e);
251 }
252 continue;
253 }
254 if (table_base + v
255 != arpt_next_entry(e)) {
256 if (unlikely(stackidx >= private->stacksize)) {
257 verdict = NF_DROP;
258 break;
259 }
260 jumpstack[stackidx++] = e;
261 }
262
263 e = get_entry(table_base, v);
264 continue;
265 }
266
267 acpar.target = t->u.kernel.target;
268 acpar.targinfo = t->data;
269 verdict = t->u.kernel.target->target(skb, &acpar);
270
271 if (verdict == XT_CONTINUE) {
272 /* Target might have changed stuff. */
273 arp = arp_hdr(skb);
274 e = arpt_next_entry(e);
275 } else {
276 /* Verdict */
277 break;
278 }
279 } while (!acpar.hotdrop);
280 xt_write_recseq_end(addend);
281 local_bh_enable();
282
283 if (acpar.hotdrop)
284 return NF_DROP;
285 else
286 return verdict;
287 }
288
289 /* All zeroes == unconditional rule. */
unconditional(const struct arpt_entry * e)290 static inline bool unconditional(const struct arpt_entry *e)
291 {
292 static const struct arpt_arp uncond;
293
294 return e->target_offset == sizeof(struct arpt_entry) &&
295 memcmp(&e->arp, &uncond, sizeof(uncond)) == 0;
296 }
297
298 /* Figures out from what hook each rule can be called: returns 0 if
299 * there are loops. Puts hook bitmask in comefrom.
300 */
mark_source_chains(const struct xt_table_info * newinfo,unsigned int valid_hooks,void * entry0,unsigned int * offsets)301 static int mark_source_chains(const struct xt_table_info *newinfo,
302 unsigned int valid_hooks, void *entry0,
303 unsigned int *offsets)
304 {
305 unsigned int hook;
306
307 /* No recursion; use packet counter to save back ptrs (reset
308 * to 0 as we leave), and comefrom to save source hook bitmask.
309 */
310 for (hook = 0; hook < NF_ARP_NUMHOOKS; hook++) {
311 unsigned int pos = newinfo->hook_entry[hook];
312 struct arpt_entry *e = entry0 + pos;
313
314 if (!(valid_hooks & (1 << hook)))
315 continue;
316
317 /* Set initial back pointer. */
318 e->counters.pcnt = pos;
319
320 for (;;) {
321 const struct xt_standard_target *t
322 = (void *)arpt_get_target_c(e);
323 int visited = e->comefrom & (1 << hook);
324
325 if (e->comefrom & (1 << NF_ARP_NUMHOOKS))
326 return 0;
327
328 e->comefrom
329 |= ((1 << hook) | (1 << NF_ARP_NUMHOOKS));
330
331 /* Unconditional return/END. */
332 if ((unconditional(e) &&
333 (strcmp(t->target.u.user.name,
334 XT_STANDARD_TARGET) == 0) &&
335 t->verdict < 0) || visited) {
336 unsigned int oldpos, size;
337
338 /* Return: backtrack through the last
339 * big jump.
340 */
341 do {
342 e->comefrom ^= (1<<NF_ARP_NUMHOOKS);
343 oldpos = pos;
344 pos = e->counters.pcnt;
345 e->counters.pcnt = 0;
346
347 /* We're at the start. */
348 if (pos == oldpos)
349 goto next;
350
351 e = entry0 + pos;
352 } while (oldpos == pos + e->next_offset);
353
354 /* Move along one */
355 size = e->next_offset;
356 e = entry0 + pos + size;
357 if (pos + size >= newinfo->size)
358 return 0;
359 e->counters.pcnt = pos;
360 pos += size;
361 } else {
362 int newpos = t->verdict;
363
364 if (strcmp(t->target.u.user.name,
365 XT_STANDARD_TARGET) == 0 &&
366 newpos >= 0) {
367 /* This a jump; chase it. */
368 if (!xt_find_jump_offset(offsets, newpos,
369 newinfo->number))
370 return 0;
371 } else {
372 /* ... this is a fallthru */
373 newpos = pos + e->next_offset;
374 if (newpos >= newinfo->size)
375 return 0;
376 }
377 e = entry0 + newpos;
378 e->counters.pcnt = pos;
379 pos = newpos;
380 }
381 }
382 next: ;
383 }
384 return 1;
385 }
386
check_target(struct arpt_entry * e,struct net * net,const char * name)387 static int check_target(struct arpt_entry *e, struct net *net, const char *name)
388 {
389 struct xt_entry_target *t = arpt_get_target(e);
390 struct xt_tgchk_param par = {
391 .net = net,
392 .table = name,
393 .entryinfo = e,
394 .target = t->u.kernel.target,
395 .targinfo = t->data,
396 .hook_mask = e->comefrom,
397 .family = NFPROTO_ARP,
398 };
399
400 return xt_check_target(&par, t->u.target_size - sizeof(*t), 0, false);
401 }
402
403 static int
find_check_entry(struct arpt_entry * e,struct net * net,const char * name,unsigned int size,struct xt_percpu_counter_alloc_state * alloc_state)404 find_check_entry(struct arpt_entry *e, struct net *net, const char *name,
405 unsigned int size,
406 struct xt_percpu_counter_alloc_state *alloc_state)
407 {
408 struct xt_entry_target *t;
409 struct xt_target *target;
410 int ret;
411
412 if (!xt_percpu_counter_alloc(alloc_state, &e->counters))
413 return -ENOMEM;
414
415 t = arpt_get_target(e);
416 target = xt_request_find_target(NFPROTO_ARP, t->u.user.name,
417 t->u.user.revision);
418 if (IS_ERR(target)) {
419 ret = PTR_ERR(target);
420 goto out;
421 }
422 t->u.kernel.target = target;
423
424 ret = check_target(e, net, name);
425 if (ret)
426 goto err;
427 return 0;
428 err:
429 module_put(t->u.kernel.target->me);
430 out:
431 xt_percpu_counter_free(&e->counters);
432
433 return ret;
434 }
435
check_underflow(const struct arpt_entry * e)436 static bool check_underflow(const struct arpt_entry *e)
437 {
438 const struct xt_entry_target *t;
439 unsigned int verdict;
440
441 if (!unconditional(e))
442 return false;
443 t = arpt_get_target_c(e);
444 if (strcmp(t->u.user.name, XT_STANDARD_TARGET) != 0)
445 return false;
446 verdict = ((struct xt_standard_target *)t)->verdict;
447 verdict = -verdict - 1;
448 return verdict == NF_DROP || verdict == NF_ACCEPT;
449 }
450
check_entry_size_and_hooks(struct arpt_entry * e,struct xt_table_info * newinfo,const unsigned char * base,const unsigned char * limit,const unsigned int * hook_entries,const unsigned int * underflows,unsigned int valid_hooks)451 static inline int check_entry_size_and_hooks(struct arpt_entry *e,
452 struct xt_table_info *newinfo,
453 const unsigned char *base,
454 const unsigned char *limit,
455 const unsigned int *hook_entries,
456 const unsigned int *underflows,
457 unsigned int valid_hooks)
458 {
459 unsigned int h;
460 int err;
461
462 if ((unsigned long)e % __alignof__(struct arpt_entry) != 0 ||
463 (unsigned char *)e + sizeof(struct arpt_entry) >= limit ||
464 (unsigned char *)e + e->next_offset > limit)
465 return -EINVAL;
466
467 if (e->next_offset
468 < sizeof(struct arpt_entry) + sizeof(struct xt_entry_target))
469 return -EINVAL;
470
471 if (!arp_checkentry(&e->arp))
472 return -EINVAL;
473
474 err = xt_check_entry_offsets(e, e->elems, e->target_offset,
475 e->next_offset);
476 if (err)
477 return err;
478
479 /* Check hooks & underflows */
480 for (h = 0; h < NF_ARP_NUMHOOKS; h++) {
481 if (!(valid_hooks & (1 << h)))
482 continue;
483 if ((unsigned char *)e - base == hook_entries[h])
484 newinfo->hook_entry[h] = hook_entries[h];
485 if ((unsigned char *)e - base == underflows[h]) {
486 if (!check_underflow(e))
487 return -EINVAL;
488
489 newinfo->underflow[h] = underflows[h];
490 }
491 }
492
493 /* Clear counters and comefrom */
494 e->counters = ((struct xt_counters) { 0, 0 });
495 e->comefrom = 0;
496 return 0;
497 }
498
cleanup_entry(struct arpt_entry * e,struct net * net)499 static void cleanup_entry(struct arpt_entry *e, struct net *net)
500 {
501 struct xt_tgdtor_param par;
502 struct xt_entry_target *t;
503
504 t = arpt_get_target(e);
505 par.net = net;
506 par.target = t->u.kernel.target;
507 par.targinfo = t->data;
508 par.family = NFPROTO_ARP;
509 if (par.target->destroy != NULL)
510 par.target->destroy(&par);
511 module_put(par.target->me);
512 xt_percpu_counter_free(&e->counters);
513 }
514
515 /* Checks and translates the user-supplied table segment (held in
516 * newinfo).
517 */
translate_table(struct net * net,struct xt_table_info * newinfo,void * entry0,const struct arpt_replace * repl)518 static int translate_table(struct net *net,
519 struct xt_table_info *newinfo,
520 void *entry0,
521 const struct arpt_replace *repl)
522 {
523 struct xt_percpu_counter_alloc_state alloc_state = { 0 };
524 struct arpt_entry *iter;
525 unsigned int *offsets;
526 unsigned int i;
527 int ret = 0;
528
529 newinfo->size = repl->size;
530 newinfo->number = repl->num_entries;
531
532 /* Init all hooks to impossible value. */
533 for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
534 newinfo->hook_entry[i] = 0xFFFFFFFF;
535 newinfo->underflow[i] = 0xFFFFFFFF;
536 }
537
538 offsets = xt_alloc_entry_offsets(newinfo->number);
539 if (!offsets)
540 return -ENOMEM;
541 i = 0;
542
543 /* Walk through entries, checking offsets. */
544 xt_entry_foreach(iter, entry0, newinfo->size) {
545 ret = check_entry_size_and_hooks(iter, newinfo, entry0,
546 entry0 + repl->size,
547 repl->hook_entry,
548 repl->underflow,
549 repl->valid_hooks);
550 if (ret != 0)
551 goto out_free;
552 if (i < repl->num_entries)
553 offsets[i] = (void *)iter - entry0;
554 ++i;
555 if (strcmp(arpt_get_target(iter)->u.user.name,
556 XT_ERROR_TARGET) == 0)
557 ++newinfo->stacksize;
558 }
559
560 ret = -EINVAL;
561 if (i != repl->num_entries)
562 goto out_free;
563
564 ret = xt_check_table_hooks(newinfo, repl->valid_hooks);
565 if (ret)
566 goto out_free;
567
568 if (!mark_source_chains(newinfo, repl->valid_hooks, entry0, offsets)) {
569 ret = -ELOOP;
570 goto out_free;
571 }
572 kvfree(offsets);
573
574 /* Finally, each sanity check must pass */
575 i = 0;
576 xt_entry_foreach(iter, entry0, newinfo->size) {
577 ret = find_check_entry(iter, net, repl->name, repl->size,
578 &alloc_state);
579 if (ret != 0)
580 break;
581 ++i;
582 }
583
584 if (ret != 0) {
585 xt_entry_foreach(iter, entry0, newinfo->size) {
586 if (i-- == 0)
587 break;
588 cleanup_entry(iter, net);
589 }
590 return ret;
591 }
592
593 return ret;
594 out_free:
595 kvfree(offsets);
596 return ret;
597 }
598
get_counters(const struct xt_table_info * t,struct xt_counters counters[])599 static void get_counters(const struct xt_table_info *t,
600 struct xt_counters counters[])
601 {
602 struct arpt_entry *iter;
603 unsigned int cpu;
604 unsigned int i;
605
606 for_each_possible_cpu(cpu) {
607 seqcount_t *s = &per_cpu(xt_recseq, cpu);
608
609 i = 0;
610 xt_entry_foreach(iter, t->entries, t->size) {
611 struct xt_counters *tmp;
612 u64 bcnt, pcnt;
613 unsigned int start;
614
615 tmp = xt_get_per_cpu_counter(&iter->counters, cpu);
616 do {
617 start = read_seqcount_begin(s);
618 bcnt = tmp->bcnt;
619 pcnt = tmp->pcnt;
620 } while (read_seqcount_retry(s, start));
621
622 ADD_COUNTER(counters[i], bcnt, pcnt);
623 ++i;
624 cond_resched();
625 }
626 }
627 }
628
get_old_counters(const struct xt_table_info * t,struct xt_counters counters[])629 static void get_old_counters(const struct xt_table_info *t,
630 struct xt_counters counters[])
631 {
632 struct arpt_entry *iter;
633 unsigned int cpu, i;
634
635 for_each_possible_cpu(cpu) {
636 i = 0;
637 xt_entry_foreach(iter, t->entries, t->size) {
638 struct xt_counters *tmp;
639
640 tmp = xt_get_per_cpu_counter(&iter->counters, cpu);
641 ADD_COUNTER(counters[i], tmp->bcnt, tmp->pcnt);
642 ++i;
643 }
644 cond_resched();
645 }
646 }
647
alloc_counters(const struct xt_table * table)648 static struct xt_counters *alloc_counters(const struct xt_table *table)
649 {
650 unsigned int countersize;
651 struct xt_counters *counters;
652 const struct xt_table_info *private = table->private;
653
654 /* We need atomic snapshot of counters: rest doesn't change
655 * (other than comefrom, which userspace doesn't care
656 * about).
657 */
658 countersize = sizeof(struct xt_counters) * private->number;
659 counters = vzalloc(countersize);
660
661 if (counters == NULL)
662 return ERR_PTR(-ENOMEM);
663
664 get_counters(private, counters);
665
666 return counters;
667 }
668
copy_entries_to_user(unsigned int total_size,const struct xt_table * table,void __user * userptr)669 static int copy_entries_to_user(unsigned int total_size,
670 const struct xt_table *table,
671 void __user *userptr)
672 {
673 unsigned int off, num;
674 const struct arpt_entry *e;
675 struct xt_counters *counters;
676 struct xt_table_info *private = table->private;
677 int ret = 0;
678 void *loc_cpu_entry;
679
680 counters = alloc_counters(table);
681 if (IS_ERR(counters))
682 return PTR_ERR(counters);
683
684 loc_cpu_entry = private->entries;
685
686 /* FIXME: use iterator macros --RR */
687 /* ... then go back and fix counters and names */
688 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
689 const struct xt_entry_target *t;
690
691 e = loc_cpu_entry + off;
692 if (copy_to_user(userptr + off, e, sizeof(*e))) {
693 ret = -EFAULT;
694 goto free_counters;
695 }
696 if (copy_to_user(userptr + off
697 + offsetof(struct arpt_entry, counters),
698 &counters[num],
699 sizeof(counters[num])) != 0) {
700 ret = -EFAULT;
701 goto free_counters;
702 }
703
704 t = arpt_get_target_c(e);
705 if (xt_target_to_user(t, userptr + off + e->target_offset)) {
706 ret = -EFAULT;
707 goto free_counters;
708 }
709 }
710
711 free_counters:
712 vfree(counters);
713 return ret;
714 }
715
716 #ifdef CONFIG_COMPAT
compat_standard_from_user(void * dst,const void * src)717 static void compat_standard_from_user(void *dst, const void *src)
718 {
719 int v = *(compat_int_t *)src;
720
721 if (v > 0)
722 v += xt_compat_calc_jump(NFPROTO_ARP, v);
723 memcpy(dst, &v, sizeof(v));
724 }
725
compat_standard_to_user(void __user * dst,const void * src)726 static int compat_standard_to_user(void __user *dst, const void *src)
727 {
728 compat_int_t cv = *(int *)src;
729
730 if (cv > 0)
731 cv -= xt_compat_calc_jump(NFPROTO_ARP, cv);
732 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
733 }
734
compat_calc_entry(const struct arpt_entry * e,const struct xt_table_info * info,const void * base,struct xt_table_info * newinfo)735 static int compat_calc_entry(const struct arpt_entry *e,
736 const struct xt_table_info *info,
737 const void *base, struct xt_table_info *newinfo)
738 {
739 const struct xt_entry_target *t;
740 unsigned int entry_offset;
741 int off, i, ret;
742
743 off = sizeof(struct arpt_entry) - sizeof(struct compat_arpt_entry);
744 entry_offset = (void *)e - base;
745
746 t = arpt_get_target_c(e);
747 off += xt_compat_target_offset(t->u.kernel.target);
748 newinfo->size -= off;
749 ret = xt_compat_add_offset(NFPROTO_ARP, entry_offset, off);
750 if (ret)
751 return ret;
752
753 for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
754 if (info->hook_entry[i] &&
755 (e < (struct arpt_entry *)(base + info->hook_entry[i])))
756 newinfo->hook_entry[i] -= off;
757 if (info->underflow[i] &&
758 (e < (struct arpt_entry *)(base + info->underflow[i])))
759 newinfo->underflow[i] -= off;
760 }
761 return 0;
762 }
763
compat_table_info(const struct xt_table_info * info,struct xt_table_info * newinfo)764 static int compat_table_info(const struct xt_table_info *info,
765 struct xt_table_info *newinfo)
766 {
767 struct arpt_entry *iter;
768 const void *loc_cpu_entry;
769 int ret;
770
771 if (!newinfo || !info)
772 return -EINVAL;
773
774 /* we dont care about newinfo->entries */
775 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
776 newinfo->initial_entries = 0;
777 loc_cpu_entry = info->entries;
778 ret = xt_compat_init_offsets(NFPROTO_ARP, info->number);
779 if (ret)
780 return ret;
781 xt_entry_foreach(iter, loc_cpu_entry, info->size) {
782 ret = compat_calc_entry(iter, info, loc_cpu_entry, newinfo);
783 if (ret != 0)
784 return ret;
785 }
786 return 0;
787 }
788 #endif
789
get_info(struct net * net,void __user * user,const int * len,int compat)790 static int get_info(struct net *net, void __user *user,
791 const int *len, int compat)
792 {
793 char name[XT_TABLE_MAXNAMELEN];
794 struct xt_table *t;
795 int ret;
796
797 if (*len != sizeof(struct arpt_getinfo))
798 return -EINVAL;
799
800 if (copy_from_user(name, user, sizeof(name)) != 0)
801 return -EFAULT;
802
803 name[XT_TABLE_MAXNAMELEN-1] = '\0';
804 #ifdef CONFIG_COMPAT
805 if (compat)
806 xt_compat_lock(NFPROTO_ARP);
807 #endif
808 t = xt_request_find_table_lock(net, NFPROTO_ARP, name);
809 if (!IS_ERR(t)) {
810 struct arpt_getinfo info;
811 const struct xt_table_info *private = t->private;
812 #ifdef CONFIG_COMPAT
813 struct xt_table_info tmp;
814
815 if (compat) {
816 ret = compat_table_info(private, &tmp);
817 xt_compat_flush_offsets(NFPROTO_ARP);
818 private = &tmp;
819 }
820 #endif
821 memset(&info, 0, sizeof(info));
822 info.valid_hooks = t->valid_hooks;
823 memcpy(info.hook_entry, private->hook_entry,
824 sizeof(info.hook_entry));
825 memcpy(info.underflow, private->underflow,
826 sizeof(info.underflow));
827 info.num_entries = private->number;
828 info.size = private->size;
829 strcpy(info.name, name);
830
831 if (copy_to_user(user, &info, *len) != 0)
832 ret = -EFAULT;
833 else
834 ret = 0;
835 xt_table_unlock(t);
836 module_put(t->me);
837 } else
838 ret = PTR_ERR(t);
839 #ifdef CONFIG_COMPAT
840 if (compat)
841 xt_compat_unlock(NFPROTO_ARP);
842 #endif
843 return ret;
844 }
845
get_entries(struct net * net,struct arpt_get_entries __user * uptr,const int * len)846 static int get_entries(struct net *net, struct arpt_get_entries __user *uptr,
847 const int *len)
848 {
849 int ret;
850 struct arpt_get_entries get;
851 struct xt_table *t;
852
853 if (*len < sizeof(get))
854 return -EINVAL;
855 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
856 return -EFAULT;
857 if (*len != sizeof(struct arpt_get_entries) + get.size)
858 return -EINVAL;
859
860 get.name[sizeof(get.name) - 1] = '\0';
861
862 t = xt_find_table_lock(net, NFPROTO_ARP, get.name);
863 if (!IS_ERR(t)) {
864 const struct xt_table_info *private = t->private;
865
866 if (get.size == private->size)
867 ret = copy_entries_to_user(private->size,
868 t, uptr->entrytable);
869 else
870 ret = -EAGAIN;
871
872 module_put(t->me);
873 xt_table_unlock(t);
874 } else
875 ret = PTR_ERR(t);
876
877 return ret;
878 }
879
__do_replace(struct net * net,const char * name,unsigned int valid_hooks,struct xt_table_info * newinfo,unsigned int num_counters,void __user * counters_ptr)880 static int __do_replace(struct net *net, const char *name,
881 unsigned int valid_hooks,
882 struct xt_table_info *newinfo,
883 unsigned int num_counters,
884 void __user *counters_ptr)
885 {
886 int ret;
887 struct xt_table *t;
888 struct xt_table_info *oldinfo;
889 struct xt_counters *counters;
890 void *loc_cpu_old_entry;
891 struct arpt_entry *iter;
892
893 ret = 0;
894 counters = xt_counters_alloc(num_counters);
895 if (!counters) {
896 ret = -ENOMEM;
897 goto out;
898 }
899
900 t = xt_request_find_table_lock(net, NFPROTO_ARP, name);
901 if (IS_ERR(t)) {
902 ret = PTR_ERR(t);
903 goto free_newinfo_counters_untrans;
904 }
905
906 /* You lied! */
907 if (valid_hooks != t->valid_hooks) {
908 ret = -EINVAL;
909 goto put_module;
910 }
911
912 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
913 if (!oldinfo)
914 goto put_module;
915
916 /* Update module usage count based on number of rules */
917 if ((oldinfo->number > oldinfo->initial_entries) ||
918 (newinfo->number <= oldinfo->initial_entries))
919 module_put(t->me);
920 if ((oldinfo->number > oldinfo->initial_entries) &&
921 (newinfo->number <= oldinfo->initial_entries))
922 module_put(t->me);
923
924 xt_table_unlock(t);
925
926 get_old_counters(oldinfo, counters);
927
928 /* Decrease module usage counts and free resource */
929 loc_cpu_old_entry = oldinfo->entries;
930 xt_entry_foreach(iter, loc_cpu_old_entry, oldinfo->size)
931 cleanup_entry(iter, net);
932
933 xt_free_table_info(oldinfo);
934 if (copy_to_user(counters_ptr, counters,
935 sizeof(struct xt_counters) * num_counters) != 0) {
936 /* Silent error, can't fail, new table is already in place */
937 net_warn_ratelimited("arptables: counters copy to user failed while replacing table\n");
938 }
939 vfree(counters);
940 return ret;
941
942 put_module:
943 module_put(t->me);
944 xt_table_unlock(t);
945 free_newinfo_counters_untrans:
946 vfree(counters);
947 out:
948 return ret;
949 }
950
do_replace(struct net * net,const void __user * user,unsigned int len)951 static int do_replace(struct net *net, const void __user *user,
952 unsigned int len)
953 {
954 int ret;
955 struct arpt_replace tmp;
956 struct xt_table_info *newinfo;
957 void *loc_cpu_entry;
958 struct arpt_entry *iter;
959
960 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
961 return -EFAULT;
962
963 /* overflow check */
964 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
965 return -ENOMEM;
966 if (tmp.num_counters == 0)
967 return -EINVAL;
968
969 tmp.name[sizeof(tmp.name)-1] = 0;
970
971 newinfo = xt_alloc_table_info(tmp.size);
972 if (!newinfo)
973 return -ENOMEM;
974
975 loc_cpu_entry = newinfo->entries;
976 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
977 tmp.size) != 0) {
978 ret = -EFAULT;
979 goto free_newinfo;
980 }
981
982 ret = translate_table(net, newinfo, loc_cpu_entry, &tmp);
983 if (ret != 0)
984 goto free_newinfo;
985
986 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
987 tmp.num_counters, tmp.counters);
988 if (ret)
989 goto free_newinfo_untrans;
990 return 0;
991
992 free_newinfo_untrans:
993 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
994 cleanup_entry(iter, net);
995 free_newinfo:
996 xt_free_table_info(newinfo);
997 return ret;
998 }
999
do_add_counters(struct net * net,const void __user * user,unsigned int len,int compat)1000 static int do_add_counters(struct net *net, const void __user *user,
1001 unsigned int len, int compat)
1002 {
1003 unsigned int i;
1004 struct xt_counters_info tmp;
1005 struct xt_counters *paddc;
1006 struct xt_table *t;
1007 const struct xt_table_info *private;
1008 int ret = 0;
1009 struct arpt_entry *iter;
1010 unsigned int addend;
1011
1012 paddc = xt_copy_counters_from_user(user, len, &tmp, compat);
1013 if (IS_ERR(paddc))
1014 return PTR_ERR(paddc);
1015
1016 t = xt_find_table_lock(net, NFPROTO_ARP, tmp.name);
1017 if (IS_ERR(t)) {
1018 ret = PTR_ERR(t);
1019 goto free;
1020 }
1021
1022 local_bh_disable();
1023 private = t->private;
1024 if (private->number != tmp.num_counters) {
1025 ret = -EINVAL;
1026 goto unlock_up_free;
1027 }
1028
1029 i = 0;
1030
1031 addend = xt_write_recseq_begin();
1032 xt_entry_foreach(iter, private->entries, private->size) {
1033 struct xt_counters *tmp;
1034
1035 tmp = xt_get_this_cpu_counter(&iter->counters);
1036 ADD_COUNTER(*tmp, paddc[i].bcnt, paddc[i].pcnt);
1037 ++i;
1038 }
1039 xt_write_recseq_end(addend);
1040 unlock_up_free:
1041 local_bh_enable();
1042 xt_table_unlock(t);
1043 module_put(t->me);
1044 free:
1045 vfree(paddc);
1046
1047 return ret;
1048 }
1049
1050 #ifdef CONFIG_COMPAT
1051 struct compat_arpt_replace {
1052 char name[XT_TABLE_MAXNAMELEN];
1053 u32 valid_hooks;
1054 u32 num_entries;
1055 u32 size;
1056 u32 hook_entry[NF_ARP_NUMHOOKS];
1057 u32 underflow[NF_ARP_NUMHOOKS];
1058 u32 num_counters;
1059 compat_uptr_t counters;
1060 struct compat_arpt_entry entries[0];
1061 };
1062
compat_release_entry(struct compat_arpt_entry * e)1063 static inline void compat_release_entry(struct compat_arpt_entry *e)
1064 {
1065 struct xt_entry_target *t;
1066
1067 t = compat_arpt_get_target(e);
1068 module_put(t->u.kernel.target->me);
1069 }
1070
1071 static int
check_compat_entry_size_and_hooks(struct compat_arpt_entry * e,struct xt_table_info * newinfo,unsigned int * size,const unsigned char * base,const unsigned char * limit)1072 check_compat_entry_size_and_hooks(struct compat_arpt_entry *e,
1073 struct xt_table_info *newinfo,
1074 unsigned int *size,
1075 const unsigned char *base,
1076 const unsigned char *limit)
1077 {
1078 struct xt_entry_target *t;
1079 struct xt_target *target;
1080 unsigned int entry_offset;
1081 int ret, off;
1082
1083 if ((unsigned long)e % __alignof__(struct compat_arpt_entry) != 0 ||
1084 (unsigned char *)e + sizeof(struct compat_arpt_entry) >= limit ||
1085 (unsigned char *)e + e->next_offset > limit)
1086 return -EINVAL;
1087
1088 if (e->next_offset < sizeof(struct compat_arpt_entry) +
1089 sizeof(struct compat_xt_entry_target))
1090 return -EINVAL;
1091
1092 if (!arp_checkentry(&e->arp))
1093 return -EINVAL;
1094
1095 ret = xt_compat_check_entry_offsets(e, e->elems, e->target_offset,
1096 e->next_offset);
1097 if (ret)
1098 return ret;
1099
1100 off = sizeof(struct arpt_entry) - sizeof(struct compat_arpt_entry);
1101 entry_offset = (void *)e - (void *)base;
1102
1103 t = compat_arpt_get_target(e);
1104 target = xt_request_find_target(NFPROTO_ARP, t->u.user.name,
1105 t->u.user.revision);
1106 if (IS_ERR(target)) {
1107 ret = PTR_ERR(target);
1108 goto out;
1109 }
1110 t->u.kernel.target = target;
1111
1112 off += xt_compat_target_offset(target);
1113 *size += off;
1114 ret = xt_compat_add_offset(NFPROTO_ARP, entry_offset, off);
1115 if (ret)
1116 goto release_target;
1117
1118 return 0;
1119
1120 release_target:
1121 module_put(t->u.kernel.target->me);
1122 out:
1123 return ret;
1124 }
1125
1126 static void
compat_copy_entry_from_user(struct compat_arpt_entry * e,void ** dstptr,unsigned int * size,struct xt_table_info * newinfo,unsigned char * base)1127 compat_copy_entry_from_user(struct compat_arpt_entry *e, void **dstptr,
1128 unsigned int *size,
1129 struct xt_table_info *newinfo, unsigned char *base)
1130 {
1131 struct xt_entry_target *t;
1132 struct arpt_entry *de;
1133 unsigned int origsize;
1134 int h;
1135
1136 origsize = *size;
1137 de = *dstptr;
1138 memcpy(de, e, sizeof(struct arpt_entry));
1139 memcpy(&de->counters, &e->counters, sizeof(e->counters));
1140
1141 *dstptr += sizeof(struct arpt_entry);
1142 *size += sizeof(struct arpt_entry) - sizeof(struct compat_arpt_entry);
1143
1144 de->target_offset = e->target_offset - (origsize - *size);
1145 t = compat_arpt_get_target(e);
1146 xt_compat_target_from_user(t, dstptr, size);
1147
1148 de->next_offset = e->next_offset - (origsize - *size);
1149 for (h = 0; h < NF_ARP_NUMHOOKS; h++) {
1150 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1151 newinfo->hook_entry[h] -= origsize - *size;
1152 if ((unsigned char *)de - base < newinfo->underflow[h])
1153 newinfo->underflow[h] -= origsize - *size;
1154 }
1155 }
1156
translate_compat_table(struct net * net,struct xt_table_info ** pinfo,void ** pentry0,const struct compat_arpt_replace * compatr)1157 static int translate_compat_table(struct net *net,
1158 struct xt_table_info **pinfo,
1159 void **pentry0,
1160 const struct compat_arpt_replace *compatr)
1161 {
1162 unsigned int i, j;
1163 struct xt_table_info *newinfo, *info;
1164 void *pos, *entry0, *entry1;
1165 struct compat_arpt_entry *iter0;
1166 struct arpt_replace repl;
1167 unsigned int size;
1168 int ret;
1169
1170 info = *pinfo;
1171 entry0 = *pentry0;
1172 size = compatr->size;
1173 info->number = compatr->num_entries;
1174
1175 j = 0;
1176 xt_compat_lock(NFPROTO_ARP);
1177 ret = xt_compat_init_offsets(NFPROTO_ARP, compatr->num_entries);
1178 if (ret)
1179 goto out_unlock;
1180 /* Walk through entries, checking offsets. */
1181 xt_entry_foreach(iter0, entry0, compatr->size) {
1182 ret = check_compat_entry_size_and_hooks(iter0, info, &size,
1183 entry0,
1184 entry0 + compatr->size);
1185 if (ret != 0)
1186 goto out_unlock;
1187 ++j;
1188 }
1189
1190 ret = -EINVAL;
1191 if (j != compatr->num_entries)
1192 goto out_unlock;
1193
1194 ret = -ENOMEM;
1195 newinfo = xt_alloc_table_info(size);
1196 if (!newinfo)
1197 goto out_unlock;
1198
1199 memset(newinfo->entries, 0, size);
1200
1201 newinfo->number = compatr->num_entries;
1202 for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
1203 newinfo->hook_entry[i] = compatr->hook_entry[i];
1204 newinfo->underflow[i] = compatr->underflow[i];
1205 }
1206 entry1 = newinfo->entries;
1207 pos = entry1;
1208 size = compatr->size;
1209 xt_entry_foreach(iter0, entry0, compatr->size)
1210 compat_copy_entry_from_user(iter0, &pos, &size,
1211 newinfo, entry1);
1212
1213 /* all module references in entry0 are now gone */
1214
1215 xt_compat_flush_offsets(NFPROTO_ARP);
1216 xt_compat_unlock(NFPROTO_ARP);
1217
1218 memcpy(&repl, compatr, sizeof(*compatr));
1219
1220 for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
1221 repl.hook_entry[i] = newinfo->hook_entry[i];
1222 repl.underflow[i] = newinfo->underflow[i];
1223 }
1224
1225 repl.num_counters = 0;
1226 repl.counters = NULL;
1227 repl.size = newinfo->size;
1228 ret = translate_table(net, newinfo, entry1, &repl);
1229 if (ret)
1230 goto free_newinfo;
1231
1232 *pinfo = newinfo;
1233 *pentry0 = entry1;
1234 xt_free_table_info(info);
1235 return 0;
1236
1237 free_newinfo:
1238 xt_free_table_info(newinfo);
1239 return ret;
1240 out_unlock:
1241 xt_compat_flush_offsets(NFPROTO_ARP);
1242 xt_compat_unlock(NFPROTO_ARP);
1243 xt_entry_foreach(iter0, entry0, compatr->size) {
1244 if (j-- == 0)
1245 break;
1246 compat_release_entry(iter0);
1247 }
1248 return ret;
1249 }
1250
compat_do_replace(struct net * net,void __user * user,unsigned int len)1251 static int compat_do_replace(struct net *net, void __user *user,
1252 unsigned int len)
1253 {
1254 int ret;
1255 struct compat_arpt_replace tmp;
1256 struct xt_table_info *newinfo;
1257 void *loc_cpu_entry;
1258 struct arpt_entry *iter;
1259
1260 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1261 return -EFAULT;
1262
1263 /* overflow check */
1264 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1265 return -ENOMEM;
1266 if (tmp.num_counters == 0)
1267 return -EINVAL;
1268
1269 tmp.name[sizeof(tmp.name)-1] = 0;
1270
1271 newinfo = xt_alloc_table_info(tmp.size);
1272 if (!newinfo)
1273 return -ENOMEM;
1274
1275 loc_cpu_entry = newinfo->entries;
1276 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp), tmp.size) != 0) {
1277 ret = -EFAULT;
1278 goto free_newinfo;
1279 }
1280
1281 ret = translate_compat_table(net, &newinfo, &loc_cpu_entry, &tmp);
1282 if (ret != 0)
1283 goto free_newinfo;
1284
1285 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
1286 tmp.num_counters, compat_ptr(tmp.counters));
1287 if (ret)
1288 goto free_newinfo_untrans;
1289 return 0;
1290
1291 free_newinfo_untrans:
1292 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
1293 cleanup_entry(iter, net);
1294 free_newinfo:
1295 xt_free_table_info(newinfo);
1296 return ret;
1297 }
1298
compat_do_arpt_set_ctl(struct sock * sk,int cmd,void __user * user,unsigned int len)1299 static int compat_do_arpt_set_ctl(struct sock *sk, int cmd, void __user *user,
1300 unsigned int len)
1301 {
1302 int ret;
1303
1304 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
1305 return -EPERM;
1306
1307 switch (cmd) {
1308 case ARPT_SO_SET_REPLACE:
1309 ret = compat_do_replace(sock_net(sk), user, len);
1310 break;
1311
1312 case ARPT_SO_SET_ADD_COUNTERS:
1313 ret = do_add_counters(sock_net(sk), user, len, 1);
1314 break;
1315
1316 default:
1317 ret = -EINVAL;
1318 }
1319
1320 return ret;
1321 }
1322
compat_copy_entry_to_user(struct arpt_entry * e,void __user ** dstptr,compat_uint_t * size,struct xt_counters * counters,unsigned int i)1323 static int compat_copy_entry_to_user(struct arpt_entry *e, void __user **dstptr,
1324 compat_uint_t *size,
1325 struct xt_counters *counters,
1326 unsigned int i)
1327 {
1328 struct xt_entry_target *t;
1329 struct compat_arpt_entry __user *ce;
1330 u_int16_t target_offset, next_offset;
1331 compat_uint_t origsize;
1332 int ret;
1333
1334 origsize = *size;
1335 ce = *dstptr;
1336 if (copy_to_user(ce, e, sizeof(struct arpt_entry)) != 0 ||
1337 copy_to_user(&ce->counters, &counters[i],
1338 sizeof(counters[i])) != 0)
1339 return -EFAULT;
1340
1341 *dstptr += sizeof(struct compat_arpt_entry);
1342 *size -= sizeof(struct arpt_entry) - sizeof(struct compat_arpt_entry);
1343
1344 target_offset = e->target_offset - (origsize - *size);
1345
1346 t = arpt_get_target(e);
1347 ret = xt_compat_target_to_user(t, dstptr, size);
1348 if (ret)
1349 return ret;
1350 next_offset = e->next_offset - (origsize - *size);
1351 if (put_user(target_offset, &ce->target_offset) != 0 ||
1352 put_user(next_offset, &ce->next_offset) != 0)
1353 return -EFAULT;
1354 return 0;
1355 }
1356
compat_copy_entries_to_user(unsigned int total_size,struct xt_table * table,void __user * userptr)1357 static int compat_copy_entries_to_user(unsigned int total_size,
1358 struct xt_table *table,
1359 void __user *userptr)
1360 {
1361 struct xt_counters *counters;
1362 const struct xt_table_info *private = table->private;
1363 void __user *pos;
1364 unsigned int size;
1365 int ret = 0;
1366 unsigned int i = 0;
1367 struct arpt_entry *iter;
1368
1369 counters = alloc_counters(table);
1370 if (IS_ERR(counters))
1371 return PTR_ERR(counters);
1372
1373 pos = userptr;
1374 size = total_size;
1375 xt_entry_foreach(iter, private->entries, total_size) {
1376 ret = compat_copy_entry_to_user(iter, &pos,
1377 &size, counters, i++);
1378 if (ret != 0)
1379 break;
1380 }
1381 vfree(counters);
1382 return ret;
1383 }
1384
1385 struct compat_arpt_get_entries {
1386 char name[XT_TABLE_MAXNAMELEN];
1387 compat_uint_t size;
1388 struct compat_arpt_entry entrytable[0];
1389 };
1390
compat_get_entries(struct net * net,struct compat_arpt_get_entries __user * uptr,int * len)1391 static int compat_get_entries(struct net *net,
1392 struct compat_arpt_get_entries __user *uptr,
1393 int *len)
1394 {
1395 int ret;
1396 struct compat_arpt_get_entries get;
1397 struct xt_table *t;
1398
1399 if (*len < sizeof(get))
1400 return -EINVAL;
1401 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1402 return -EFAULT;
1403 if (*len != sizeof(struct compat_arpt_get_entries) + get.size)
1404 return -EINVAL;
1405
1406 get.name[sizeof(get.name) - 1] = '\0';
1407
1408 xt_compat_lock(NFPROTO_ARP);
1409 t = xt_find_table_lock(net, NFPROTO_ARP, get.name);
1410 if (!IS_ERR(t)) {
1411 const struct xt_table_info *private = t->private;
1412 struct xt_table_info info;
1413
1414 ret = compat_table_info(private, &info);
1415 if (!ret && get.size == info.size) {
1416 ret = compat_copy_entries_to_user(private->size,
1417 t, uptr->entrytable);
1418 } else if (!ret)
1419 ret = -EAGAIN;
1420
1421 xt_compat_flush_offsets(NFPROTO_ARP);
1422 module_put(t->me);
1423 xt_table_unlock(t);
1424 } else
1425 ret = PTR_ERR(t);
1426
1427 xt_compat_unlock(NFPROTO_ARP);
1428 return ret;
1429 }
1430
1431 static int do_arpt_get_ctl(struct sock *, int, void __user *, int *);
1432
compat_do_arpt_get_ctl(struct sock * sk,int cmd,void __user * user,int * len)1433 static int compat_do_arpt_get_ctl(struct sock *sk, int cmd, void __user *user,
1434 int *len)
1435 {
1436 int ret;
1437
1438 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
1439 return -EPERM;
1440
1441 switch (cmd) {
1442 case ARPT_SO_GET_INFO:
1443 ret = get_info(sock_net(sk), user, len, 1);
1444 break;
1445 case ARPT_SO_GET_ENTRIES:
1446 ret = compat_get_entries(sock_net(sk), user, len);
1447 break;
1448 default:
1449 ret = do_arpt_get_ctl(sk, cmd, user, len);
1450 }
1451 return ret;
1452 }
1453 #endif
1454
do_arpt_set_ctl(struct sock * sk,int cmd,void __user * user,unsigned int len)1455 static int do_arpt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
1456 {
1457 int ret;
1458
1459 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
1460 return -EPERM;
1461
1462 switch (cmd) {
1463 case ARPT_SO_SET_REPLACE:
1464 ret = do_replace(sock_net(sk), user, len);
1465 break;
1466
1467 case ARPT_SO_SET_ADD_COUNTERS:
1468 ret = do_add_counters(sock_net(sk), user, len, 0);
1469 break;
1470
1471 default:
1472 ret = -EINVAL;
1473 }
1474
1475 return ret;
1476 }
1477
do_arpt_get_ctl(struct sock * sk,int cmd,void __user * user,int * len)1478 static int do_arpt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1479 {
1480 int ret;
1481
1482 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
1483 return -EPERM;
1484
1485 switch (cmd) {
1486 case ARPT_SO_GET_INFO:
1487 ret = get_info(sock_net(sk), user, len, 0);
1488 break;
1489
1490 case ARPT_SO_GET_ENTRIES:
1491 ret = get_entries(sock_net(sk), user, len);
1492 break;
1493
1494 case ARPT_SO_GET_REVISION_TARGET: {
1495 struct xt_get_revision rev;
1496
1497 if (*len != sizeof(rev)) {
1498 ret = -EINVAL;
1499 break;
1500 }
1501 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
1502 ret = -EFAULT;
1503 break;
1504 }
1505 rev.name[sizeof(rev.name)-1] = 0;
1506
1507 try_then_request_module(xt_find_revision(NFPROTO_ARP, rev.name,
1508 rev.revision, 1, &ret),
1509 "arpt_%s", rev.name);
1510 break;
1511 }
1512
1513 default:
1514 ret = -EINVAL;
1515 }
1516
1517 return ret;
1518 }
1519
__arpt_unregister_table(struct net * net,struct xt_table * table)1520 static void __arpt_unregister_table(struct net *net, struct xt_table *table)
1521 {
1522 struct xt_table_info *private;
1523 void *loc_cpu_entry;
1524 struct module *table_owner = table->me;
1525 struct arpt_entry *iter;
1526
1527 private = xt_unregister_table(table);
1528
1529 /* Decrease module usage counts and free resources */
1530 loc_cpu_entry = private->entries;
1531 xt_entry_foreach(iter, loc_cpu_entry, private->size)
1532 cleanup_entry(iter, net);
1533 if (private->number > private->initial_entries)
1534 module_put(table_owner);
1535 xt_free_table_info(private);
1536 }
1537
arpt_register_table(struct net * net,const struct xt_table * table,const struct arpt_replace * repl,const struct nf_hook_ops * ops,struct xt_table ** res)1538 int arpt_register_table(struct net *net,
1539 const struct xt_table *table,
1540 const struct arpt_replace *repl,
1541 const struct nf_hook_ops *ops,
1542 struct xt_table **res)
1543 {
1544 int ret;
1545 struct xt_table_info *newinfo;
1546 struct xt_table_info bootstrap = {0};
1547 void *loc_cpu_entry;
1548 struct xt_table *new_table;
1549
1550 newinfo = xt_alloc_table_info(repl->size);
1551 if (!newinfo)
1552 return -ENOMEM;
1553
1554 loc_cpu_entry = newinfo->entries;
1555 memcpy(loc_cpu_entry, repl->entries, repl->size);
1556
1557 ret = translate_table(net, newinfo, loc_cpu_entry, repl);
1558 if (ret != 0)
1559 goto out_free;
1560
1561 new_table = xt_register_table(net, table, &bootstrap, newinfo);
1562 if (IS_ERR(new_table)) {
1563 ret = PTR_ERR(new_table);
1564 goto out_free;
1565 }
1566
1567 /* set res now, will see skbs right after nf_register_net_hooks */
1568 WRITE_ONCE(*res, new_table);
1569
1570 ret = nf_register_net_hooks(net, ops, hweight32(table->valid_hooks));
1571 if (ret != 0) {
1572 __arpt_unregister_table(net, new_table);
1573 *res = NULL;
1574 }
1575
1576 return ret;
1577
1578 out_free:
1579 xt_free_table_info(newinfo);
1580 return ret;
1581 }
1582
arpt_unregister_table_pre_exit(struct net * net,struct xt_table * table,const struct nf_hook_ops * ops)1583 void arpt_unregister_table_pre_exit(struct net *net, struct xt_table *table,
1584 const struct nf_hook_ops *ops)
1585 {
1586 nf_unregister_net_hooks(net, ops, hweight32(table->valid_hooks));
1587 }
1588 EXPORT_SYMBOL(arpt_unregister_table_pre_exit);
1589
arpt_unregister_table(struct net * net,struct xt_table * table)1590 void arpt_unregister_table(struct net *net, struct xt_table *table)
1591 {
1592 __arpt_unregister_table(net, table);
1593 }
1594
1595 /* The built-in targets: standard (NULL) and error. */
1596 static struct xt_target arpt_builtin_tg[] __read_mostly = {
1597 {
1598 .name = XT_STANDARD_TARGET,
1599 .targetsize = sizeof(int),
1600 .family = NFPROTO_ARP,
1601 #ifdef CONFIG_COMPAT
1602 .compatsize = sizeof(compat_int_t),
1603 .compat_from_user = compat_standard_from_user,
1604 .compat_to_user = compat_standard_to_user,
1605 #endif
1606 },
1607 {
1608 .name = XT_ERROR_TARGET,
1609 .target = arpt_error,
1610 .targetsize = XT_FUNCTION_MAXNAMELEN,
1611 .family = NFPROTO_ARP,
1612 },
1613 };
1614
1615 static struct nf_sockopt_ops arpt_sockopts = {
1616 .pf = PF_INET,
1617 .set_optmin = ARPT_BASE_CTL,
1618 .set_optmax = ARPT_SO_SET_MAX+1,
1619 .set = do_arpt_set_ctl,
1620 #ifdef CONFIG_COMPAT
1621 .compat_set = compat_do_arpt_set_ctl,
1622 #endif
1623 .get_optmin = ARPT_BASE_CTL,
1624 .get_optmax = ARPT_SO_GET_MAX+1,
1625 .get = do_arpt_get_ctl,
1626 #ifdef CONFIG_COMPAT
1627 .compat_get = compat_do_arpt_get_ctl,
1628 #endif
1629 .owner = THIS_MODULE,
1630 };
1631
arp_tables_net_init(struct net * net)1632 static int __net_init arp_tables_net_init(struct net *net)
1633 {
1634 return xt_proto_init(net, NFPROTO_ARP);
1635 }
1636
arp_tables_net_exit(struct net * net)1637 static void __net_exit arp_tables_net_exit(struct net *net)
1638 {
1639 xt_proto_fini(net, NFPROTO_ARP);
1640 }
1641
1642 static struct pernet_operations arp_tables_net_ops = {
1643 .init = arp_tables_net_init,
1644 .exit = arp_tables_net_exit,
1645 };
1646
arp_tables_init(void)1647 static int __init arp_tables_init(void)
1648 {
1649 int ret;
1650
1651 ret = register_pernet_subsys(&arp_tables_net_ops);
1652 if (ret < 0)
1653 goto err1;
1654
1655 /* No one else will be downing sem now, so we won't sleep */
1656 ret = xt_register_targets(arpt_builtin_tg, ARRAY_SIZE(arpt_builtin_tg));
1657 if (ret < 0)
1658 goto err2;
1659
1660 /* Register setsockopt */
1661 ret = nf_register_sockopt(&arpt_sockopts);
1662 if (ret < 0)
1663 goto err4;
1664
1665 return 0;
1666
1667 err4:
1668 xt_unregister_targets(arpt_builtin_tg, ARRAY_SIZE(arpt_builtin_tg));
1669 err2:
1670 unregister_pernet_subsys(&arp_tables_net_ops);
1671 err1:
1672 return ret;
1673 }
1674
arp_tables_fini(void)1675 static void __exit arp_tables_fini(void)
1676 {
1677 nf_unregister_sockopt(&arpt_sockopts);
1678 xt_unregister_targets(arpt_builtin_tg, ARRAY_SIZE(arpt_builtin_tg));
1679 unregister_pernet_subsys(&arp_tables_net_ops);
1680 }
1681
1682 EXPORT_SYMBOL(arpt_register_table);
1683 EXPORT_SYMBOL(arpt_unregister_table);
1684 EXPORT_SYMBOL(arpt_do_table);
1685
1686 module_init(arp_tables_init);
1687 module_exit(arp_tables_fini);
1688