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