2 * Packet matching code for ARP packets.
4 * Based heavily, if not almost entirely, upon ip_tables.c framework.
6 * Some ARP specific bits are:
8 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
12 #include <linux/kernel.h>
13 #include <linux/skbuff.h>
14 #include <linux/netdevice.h>
15 #include <linux/capability.h>
16 #include <linux/if_arp.h>
17 #include <linux/kmod.h>
18 #include <linux/vmalloc.h>
19 #include <linux/proc_fs.h>
20 #include <linux/module.h>
21 #include <linux/init.h>
23 #include <asm/uaccess.h>
24 #include <linux/mutex.h>
26 #include <linux/netfilter/x_tables.h>
27 #include <linux/netfilter_arp/arp_tables.h>
29 MODULE_LICENSE("GPL");
30 MODULE_AUTHOR("David S. Miller <davem@redhat.com>");
31 MODULE_DESCRIPTION("arptables core");
33 /*#define DEBUG_ARP_TABLES*/
34 /*#define DEBUG_ARP_TABLES_USER*/
36 #ifdef DEBUG_ARP_TABLES
37 #define dprintf(format, args...) printk(format , ## args)
39 #define dprintf(format, args...)
42 #ifdef DEBUG_ARP_TABLES_USER
43 #define duprintf(format, args...) printk(format , ## args)
45 #define duprintf(format, args...)
48 #ifdef CONFIG_NETFILTER_DEBUG
49 #define ARP_NF_ASSERT(x) \
52 printk("ARP_NF_ASSERT: %s:%s:%u\n", \
53 __FUNCTION__, __FILE__, __LINE__); \
56 #define ARP_NF_ASSERT(x)
59 static inline int arp_devaddr_compare(const struct arpt_devaddr_info *ap,
60 char *hdr_addr, int len)
64 if (len > ARPT_DEV_ADDR_LEN_MAX)
65 len = ARPT_DEV_ADDR_LEN_MAX;
68 for (i = 0; i < len; i++)
69 ret |= (hdr_addr[i] ^ ap->addr[i]) & ap->mask[i];
74 /* Returns whether packet matches rule or not. */
75 static inline int arp_packet_match(const struct arphdr *arphdr,
76 struct net_device *dev,
79 const struct arpt_arp *arpinfo)
81 char *arpptr = (char *)(arphdr + 1);
82 char *src_devaddr, *tgt_devaddr;
83 __be32 src_ipaddr, tgt_ipaddr;
86 #define FWINV(bool,invflg) ((bool) ^ !!(arpinfo->invflags & invflg))
88 if (FWINV((arphdr->ar_op & arpinfo->arpop_mask) != arpinfo->arpop,
90 dprintf("ARP operation field mismatch.\n");
91 dprintf("ar_op: %04x info->arpop: %04x info->arpop_mask: %04x\n",
92 arphdr->ar_op, arpinfo->arpop, arpinfo->arpop_mask);
96 if (FWINV((arphdr->ar_hrd & arpinfo->arhrd_mask) != arpinfo->arhrd,
98 dprintf("ARP hardware address format mismatch.\n");
99 dprintf("ar_hrd: %04x info->arhrd: %04x info->arhrd_mask: %04x\n",
100 arphdr->ar_hrd, arpinfo->arhrd, arpinfo->arhrd_mask);
104 if (FWINV((arphdr->ar_pro & arpinfo->arpro_mask) != arpinfo->arpro,
106 dprintf("ARP protocol address format mismatch.\n");
107 dprintf("ar_pro: %04x info->arpro: %04x info->arpro_mask: %04x\n",
108 arphdr->ar_pro, arpinfo->arpro, arpinfo->arpro_mask);
112 if (FWINV((arphdr->ar_hln & arpinfo->arhln_mask) != arpinfo->arhln,
114 dprintf("ARP hardware address length mismatch.\n");
115 dprintf("ar_hln: %02x info->arhln: %02x info->arhln_mask: %02x\n",
116 arphdr->ar_hln, arpinfo->arhln, arpinfo->arhln_mask);
120 src_devaddr = arpptr;
121 arpptr += dev->addr_len;
122 memcpy(&src_ipaddr, arpptr, sizeof(u32));
123 arpptr += sizeof(u32);
124 tgt_devaddr = arpptr;
125 arpptr += dev->addr_len;
126 memcpy(&tgt_ipaddr, arpptr, sizeof(u32));
128 if (FWINV(arp_devaddr_compare(&arpinfo->src_devaddr, src_devaddr, dev->addr_len),
129 ARPT_INV_SRCDEVADDR) ||
130 FWINV(arp_devaddr_compare(&arpinfo->tgt_devaddr, tgt_devaddr, dev->addr_len),
131 ARPT_INV_TGTDEVADDR)) {
132 dprintf("Source or target device address mismatch.\n");
137 if (FWINV((src_ipaddr & arpinfo->smsk.s_addr) != arpinfo->src.s_addr,
139 FWINV(((tgt_ipaddr & arpinfo->tmsk.s_addr) != arpinfo->tgt.s_addr),
141 dprintf("Source or target IP address mismatch.\n");
143 dprintf("SRC: %u.%u.%u.%u. Mask: %u.%u.%u.%u. Target: %u.%u.%u.%u.%s\n",
145 NIPQUAD(arpinfo->smsk.s_addr),
146 NIPQUAD(arpinfo->src.s_addr),
147 arpinfo->invflags & ARPT_INV_SRCIP ? " (INV)" : "");
148 dprintf("TGT: %u.%u.%u.%u Mask: %u.%u.%u.%u Target: %u.%u.%u.%u.%s\n",
150 NIPQUAD(arpinfo->tmsk.s_addr),
151 NIPQUAD(arpinfo->tgt.s_addr),
152 arpinfo->invflags & ARPT_INV_TGTIP ? " (INV)" : "");
156 /* Look for ifname matches. */
157 for (i = 0, ret = 0; i < IFNAMSIZ; i++) {
158 ret |= (indev[i] ^ arpinfo->iniface[i])
159 & arpinfo->iniface_mask[i];
162 if (FWINV(ret != 0, ARPT_INV_VIA_IN)) {
163 dprintf("VIA in mismatch (%s vs %s).%s\n",
164 indev, arpinfo->iniface,
165 arpinfo->invflags&ARPT_INV_VIA_IN ?" (INV)":"");
169 for (i = 0, ret = 0; i < IFNAMSIZ/sizeof(unsigned long); i++) {
171 memcpy(&odev, outdev + i*sizeof(unsigned long),
172 sizeof(unsigned long));
174 ^ ((const unsigned long *)arpinfo->outiface)[i])
175 & ((const unsigned long *)arpinfo->outiface_mask)[i];
178 if (FWINV(ret != 0, ARPT_INV_VIA_OUT)) {
179 dprintf("VIA out mismatch (%s vs %s).%s\n",
180 outdev, arpinfo->outiface,
181 arpinfo->invflags&ARPT_INV_VIA_OUT ?" (INV)":"");
188 static inline int arp_checkentry(const struct arpt_arp *arp)
190 if (arp->flags & ~ARPT_F_MASK) {
191 duprintf("Unknown flag bits set: %08X\n",
192 arp->flags & ~ARPT_F_MASK);
195 if (arp->invflags & ~ARPT_INV_MASK) {
196 duprintf("Unknown invflag bits set: %08X\n",
197 arp->invflags & ~ARPT_INV_MASK);
204 static unsigned int arpt_error(struct sk_buff **pskb,
205 const struct net_device *in,
206 const struct net_device *out,
207 unsigned int hooknum,
208 const struct xt_target *target,
209 const void *targinfo)
212 printk("arp_tables: error: '%s'\n", (char *)targinfo);
217 static inline struct arpt_entry *get_entry(void *base, unsigned int offset)
219 return (struct arpt_entry *)(base + offset);
222 unsigned int arpt_do_table(struct sk_buff **pskb,
224 const struct net_device *in,
225 const struct net_device *out,
226 struct arpt_table *table)
228 static const char nulldevname[IFNAMSIZ];
229 unsigned int verdict = NF_DROP;
232 struct arpt_entry *e, *back;
233 const char *indev, *outdev;
235 struct xt_table_info *private;
237 /* ARP header, plus 2 device addresses, plus 2 IP addresses. */
238 if (!pskb_may_pull((*pskb), (sizeof(struct arphdr) +
239 (2 * (*pskb)->dev->addr_len) +
243 indev = in ? in->name : nulldevname;
244 outdev = out ? out->name : nulldevname;
246 read_lock_bh(&table->lock);
247 private = table->private;
248 table_base = (void *)private->entries[smp_processor_id()];
249 e = get_entry(table_base, private->hook_entry[hook]);
250 back = get_entry(table_base, private->underflow[hook]);
252 arp = (*pskb)->nh.arph;
254 if (arp_packet_match(arp, (*pskb)->dev, indev, outdev, &e->arp)) {
255 struct arpt_entry_target *t;
258 hdr_len = sizeof(*arp) + (2 * sizeof(struct in_addr)) +
259 (2 * (*pskb)->dev->addr_len);
260 ADD_COUNTER(e->counters, hdr_len, 1);
262 t = arpt_get_target(e);
264 /* Standard target? */
265 if (!t->u.kernel.target->target) {
268 v = ((struct arpt_standard_target *)t)->verdict;
270 /* Pop from stack? */
271 if (v != ARPT_RETURN) {
272 verdict = (unsigned)(-v) - 1;
276 back = get_entry(table_base,
281 != (void *)e + e->next_offset) {
282 /* Save old back ptr in next entry */
283 struct arpt_entry *next
284 = (void *)e + e->next_offset;
286 (void *)back - table_base;
288 /* set back pointer to next entry */
292 e = get_entry(table_base, v);
294 /* Targets which reenter must return
297 verdict = t->u.kernel.target->target(pskb,
303 /* Target might have changed stuff. */
304 arp = (*pskb)->nh.arph;
306 if (verdict == ARPT_CONTINUE)
307 e = (void *)e + e->next_offset;
313 e = (void *)e + e->next_offset;
316 read_unlock_bh(&table->lock);
324 /* All zeroes == unconditional rule. */
325 static inline int unconditional(const struct arpt_arp *arp)
329 for (i = 0; i < sizeof(*arp)/sizeof(__u32); i++)
330 if (((__u32 *)arp)[i])
336 /* Figures out from what hook each rule can be called: returns 0 if
337 * there are loops. Puts hook bitmask in comefrom.
339 static int mark_source_chains(struct xt_table_info *newinfo,
340 unsigned int valid_hooks, void *entry0)
344 /* No recursion; use packet counter to save back ptrs (reset
345 * to 0 as we leave), and comefrom to save source hook bitmask.
347 for (hook = 0; hook < NF_ARP_NUMHOOKS; hook++) {
348 unsigned int pos = newinfo->hook_entry[hook];
350 = (struct arpt_entry *)(entry0 + pos);
352 if (!(valid_hooks & (1 << hook)))
355 /* Set initial back pointer. */
356 e->counters.pcnt = pos;
359 struct arpt_standard_target *t
360 = (void *)arpt_get_target(e);
362 if (e->comefrom & (1 << NF_ARP_NUMHOOKS)) {
363 printk("arptables: loop hook %u pos %u %08X.\n",
364 hook, pos, e->comefrom);
368 |= ((1 << hook) | (1 << NF_ARP_NUMHOOKS));
370 /* Unconditional return/END. */
371 if (e->target_offset == sizeof(struct arpt_entry)
372 && (strcmp(t->target.u.user.name,
373 ARPT_STANDARD_TARGET) == 0)
375 && unconditional(&e->arp)) {
376 unsigned int oldpos, size;
378 if (t->verdict < -NF_MAX_VERDICT - 1) {
379 duprintf("mark_source_chains: bad "
380 "negative verdict (%i)\n",
385 /* Return: backtrack through the last
389 e->comefrom ^= (1<<NF_ARP_NUMHOOKS);
391 pos = e->counters.pcnt;
392 e->counters.pcnt = 0;
394 /* We're at the start. */
398 e = (struct arpt_entry *)
400 } while (oldpos == pos + e->next_offset);
403 size = e->next_offset;
404 e = (struct arpt_entry *)
405 (entry0 + pos + size);
406 e->counters.pcnt = pos;
409 int newpos = t->verdict;
411 if (strcmp(t->target.u.user.name,
412 ARPT_STANDARD_TARGET) == 0
414 if (newpos > newinfo->size -
415 sizeof(struct arpt_entry)) {
416 duprintf("mark_source_chains: "
417 "bad verdict (%i)\n",
422 /* This a jump; chase it. */
423 duprintf("Jump rule %u -> %u\n",
426 /* ... this is a fallthru */
427 newpos = pos + e->next_offset;
429 e = (struct arpt_entry *)
431 e->counters.pcnt = pos;
436 duprintf("Finished chain %u\n", hook);
441 static inline int standard_check(const struct arpt_entry_target *t,
442 unsigned int max_offset)
444 /* Check standard info. */
446 != ARPT_ALIGN(sizeof(struct arpt_standard_target))) {
447 duprintf("arpt_standard_check: target size %u != %Zu\n",
449 ARPT_ALIGN(sizeof(struct arpt_standard_target)));
456 static struct arpt_target arpt_standard_target;
458 static inline int check_entry(struct arpt_entry *e, const char *name, unsigned int size,
461 struct arpt_entry_target *t;
462 struct arpt_target *target;
465 if (!arp_checkentry(&e->arp)) {
466 duprintf("arp_tables: arp check failed %p %s.\n", e, name);
470 if (e->target_offset + sizeof(struct arpt_entry_target) > e->next_offset)
473 t = arpt_get_target(e);
474 if (e->target_offset + t->u.target_size > e->next_offset)
477 target = try_then_request_module(xt_find_target(NF_ARP, t->u.user.name,
479 "arpt_%s", t->u.user.name);
480 if (IS_ERR(target) || !target) {
481 duprintf("check_entry: `%s' not found\n", t->u.user.name);
482 ret = target ? PTR_ERR(target) : -ENOENT;
485 t->u.kernel.target = target;
487 ret = xt_check_target(target, NF_ARP, t->u.target_size - sizeof(*t),
488 name, e->comefrom, 0, 0);
492 if (t->u.kernel.target == &arpt_standard_target) {
493 if (!standard_check(t, size)) {
497 } else if (t->u.kernel.target->checkentry
498 && !t->u.kernel.target->checkentry(name, e, target, t->data,
500 duprintf("arp_tables: check failed for `%s'.\n",
501 t->u.kernel.target->name);
509 module_put(t->u.kernel.target->me);
514 static inline int check_entry_size_and_hooks(struct arpt_entry *e,
515 struct xt_table_info *newinfo,
517 unsigned char *limit,
518 const unsigned int *hook_entries,
519 const unsigned int *underflows,
524 if ((unsigned long)e % __alignof__(struct arpt_entry) != 0
525 || (unsigned char *)e + sizeof(struct arpt_entry) >= limit) {
526 duprintf("Bad offset %p\n", e);
531 < sizeof(struct arpt_entry) + sizeof(struct arpt_entry_target)) {
532 duprintf("checking: element %p size %u\n",
537 /* Check hooks & underflows */
538 for (h = 0; h < NF_ARP_NUMHOOKS; h++) {
539 if ((unsigned char *)e - base == hook_entries[h])
540 newinfo->hook_entry[h] = hook_entries[h];
541 if ((unsigned char *)e - base == underflows[h])
542 newinfo->underflow[h] = underflows[h];
545 /* FIXME: underflows must be unconditional, standard verdicts
546 < 0 (not ARPT_RETURN). --RR */
548 /* Clear counters and comefrom */
549 e->counters = ((struct xt_counters) { 0, 0 });
556 static inline int cleanup_entry(struct arpt_entry *e, unsigned int *i)
558 struct arpt_entry_target *t;
560 if (i && (*i)-- == 0)
563 t = arpt_get_target(e);
564 if (t->u.kernel.target->destroy)
565 t->u.kernel.target->destroy(t->u.kernel.target, t->data);
566 module_put(t->u.kernel.target->me);
570 /* Checks and translates the user-supplied table segment (held in
573 static int translate_table(const char *name,
574 unsigned int valid_hooks,
575 struct xt_table_info *newinfo,
579 const unsigned int *hook_entries,
580 const unsigned int *underflows)
585 newinfo->size = size;
586 newinfo->number = number;
588 /* Init all hooks to impossible value. */
589 for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
590 newinfo->hook_entry[i] = 0xFFFFFFFF;
591 newinfo->underflow[i] = 0xFFFFFFFF;
594 duprintf("translate_table: size %u\n", newinfo->size);
597 /* Walk through entries, checking offsets. */
598 ret = ARPT_ENTRY_ITERATE(entry0, newinfo->size,
599 check_entry_size_and_hooks,
603 hook_entries, underflows, &i);
604 duprintf("translate_table: ARPT_ENTRY_ITERATE gives %d\n", ret);
609 duprintf("translate_table: %u not %u entries\n",
614 /* Check hooks all assigned */
615 for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
616 /* Only hooks which are valid */
617 if (!(valid_hooks & (1 << i)))
619 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
620 duprintf("Invalid hook entry %u %u\n",
624 if (newinfo->underflow[i] == 0xFFFFFFFF) {
625 duprintf("Invalid underflow %u %u\n",
631 if (!mark_source_chains(newinfo, valid_hooks, entry0)) {
632 duprintf("Looping hook\n");
636 /* Finally, each sanity check must pass */
638 ret = ARPT_ENTRY_ITERATE(entry0, newinfo->size,
639 check_entry, name, size, &i);
642 ARPT_ENTRY_ITERATE(entry0, newinfo->size,
647 /* And one copy for every other CPU */
648 for_each_possible_cpu(i) {
649 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
650 memcpy(newinfo->entries[i], entry0, newinfo->size);
657 static inline int add_entry_to_counter(const struct arpt_entry *e,
658 struct xt_counters total[],
661 ADD_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
667 static inline int set_entry_to_counter(const struct arpt_entry *e,
668 struct xt_counters total[],
671 SET_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
677 static void get_counters(const struct xt_table_info *t,
678 struct xt_counters counters[])
684 /* Instead of clearing (by a previous call to memset())
685 * the counters and using adds, we set the counters
686 * with data used by 'current' CPU
687 * We dont care about preemption here.
689 curcpu = raw_smp_processor_id();
692 ARPT_ENTRY_ITERATE(t->entries[curcpu],
694 set_entry_to_counter,
698 for_each_possible_cpu(cpu) {
702 ARPT_ENTRY_ITERATE(t->entries[cpu],
704 add_entry_to_counter,
710 static int copy_entries_to_user(unsigned int total_size,
711 struct arpt_table *table,
712 void __user *userptr)
714 unsigned int off, num, countersize;
715 struct arpt_entry *e;
716 struct xt_counters *counters;
717 struct xt_table_info *private = table->private;
721 /* We need atomic snapshot of counters: rest doesn't change
722 * (other than comefrom, which userspace doesn't care
725 countersize = sizeof(struct xt_counters) * private->number;
726 counters = vmalloc_node(countersize, numa_node_id());
728 if (counters == NULL)
731 /* First, sum counters... */
732 write_lock_bh(&table->lock);
733 get_counters(private, counters);
734 write_unlock_bh(&table->lock);
736 loc_cpu_entry = private->entries[raw_smp_processor_id()];
737 /* ... then copy entire thing ... */
738 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
743 /* FIXME: use iterator macros --RR */
744 /* ... then go back and fix counters and names */
745 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
746 struct arpt_entry_target *t;
748 e = (struct arpt_entry *)(loc_cpu_entry + off);
749 if (copy_to_user(userptr + off
750 + offsetof(struct arpt_entry, counters),
752 sizeof(counters[num])) != 0) {
757 t = arpt_get_target(e);
758 if (copy_to_user(userptr + off + e->target_offset
759 + offsetof(struct arpt_entry_target,
761 t->u.kernel.target->name,
762 strlen(t->u.kernel.target->name)+1) != 0) {
773 static int get_entries(const struct arpt_get_entries *entries,
774 struct arpt_get_entries __user *uptr)
777 struct arpt_table *t;
779 t = xt_find_table_lock(NF_ARP, entries->name);
780 if (t && !IS_ERR(t)) {
781 struct xt_table_info *private = t->private;
782 duprintf("t->private->number = %u\n",
784 if (entries->size == private->size)
785 ret = copy_entries_to_user(private->size,
786 t, uptr->entrytable);
788 duprintf("get_entries: I've got %u not %u!\n",
789 private->size, entries->size);
795 ret = t ? PTR_ERR(t) : -ENOENT;
800 static int do_replace(void __user *user, unsigned int len)
803 struct arpt_replace tmp;
804 struct arpt_table *t;
805 struct xt_table_info *newinfo, *oldinfo;
806 struct xt_counters *counters;
807 void *loc_cpu_entry, *loc_cpu_old_entry;
809 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
812 /* Hack: Causes ipchains to give correct error msg --RR */
813 if (len != sizeof(tmp) + tmp.size)
817 if (tmp.size >= (INT_MAX - sizeof(struct xt_table_info)) / NR_CPUS -
820 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
823 newinfo = xt_alloc_table_info(tmp.size);
827 /* choose the copy that is on our node/cpu */
828 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
829 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
835 counters = vmalloc(tmp.num_counters * sizeof(struct xt_counters));
841 ret = translate_table(tmp.name, tmp.valid_hooks,
842 newinfo, loc_cpu_entry, tmp.size, tmp.num_entries,
843 tmp.hook_entry, tmp.underflow);
845 goto free_newinfo_counters;
847 duprintf("arp_tables: Translated table\n");
849 t = try_then_request_module(xt_find_table_lock(NF_ARP, tmp.name),
850 "arptable_%s", tmp.name);
851 if (!t || IS_ERR(t)) {
852 ret = t ? PTR_ERR(t) : -ENOENT;
853 goto free_newinfo_counters_untrans;
857 if (tmp.valid_hooks != t->valid_hooks) {
858 duprintf("Valid hook crap: %08X vs %08X\n",
859 tmp.valid_hooks, t->valid_hooks);
864 oldinfo = xt_replace_table(t, tmp.num_counters, newinfo, &ret);
868 /* Update module usage count based on number of rules */
869 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
870 oldinfo->number, oldinfo->initial_entries, newinfo->number);
871 if ((oldinfo->number > oldinfo->initial_entries) ||
872 (newinfo->number <= oldinfo->initial_entries))
874 if ((oldinfo->number > oldinfo->initial_entries) &&
875 (newinfo->number <= oldinfo->initial_entries))
878 /* Get the old counters. */
879 get_counters(oldinfo, counters);
880 /* Decrease module usage counts and free resource */
881 loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
882 ARPT_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry,NULL);
884 xt_free_table_info(oldinfo);
885 if (copy_to_user(tmp.counters, counters,
886 sizeof(struct xt_counters) * tmp.num_counters) != 0)
895 free_newinfo_counters_untrans:
896 ARPT_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
897 free_newinfo_counters:
900 xt_free_table_info(newinfo);
904 /* We're lazy, and add to the first CPU; overflow works its fey magic
905 * and everything is OK.
907 static inline int add_counter_to_entry(struct arpt_entry *e,
908 const struct xt_counters addme[],
912 ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt);
918 static int do_add_counters(void __user *user, unsigned int len)
921 struct xt_counters_info tmp, *paddc;
922 struct arpt_table *t;
923 struct xt_table_info *private;
927 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
930 if (len != sizeof(tmp) + tmp.num_counters*sizeof(struct xt_counters))
933 paddc = vmalloc(len);
937 if (copy_from_user(paddc, user, len) != 0) {
942 t = xt_find_table_lock(NF_ARP, tmp.name);
943 if (!t || IS_ERR(t)) {
944 ret = t ? PTR_ERR(t) : -ENOENT;
948 write_lock_bh(&t->lock);
949 private = t->private;
950 if (private->number != tmp.num_counters) {
956 /* Choose the copy that is on our node */
957 loc_cpu_entry = private->entries[smp_processor_id()];
958 ARPT_ENTRY_ITERATE(loc_cpu_entry,
960 add_counter_to_entry,
964 write_unlock_bh(&t->lock);
973 static int do_arpt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
977 if (!capable(CAP_NET_ADMIN))
981 case ARPT_SO_SET_REPLACE:
982 ret = do_replace(user, len);
985 case ARPT_SO_SET_ADD_COUNTERS:
986 ret = do_add_counters(user, len);
990 duprintf("do_arpt_set_ctl: unknown request %i\n", cmd);
997 static int do_arpt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1001 if (!capable(CAP_NET_ADMIN))
1005 case ARPT_SO_GET_INFO: {
1006 char name[ARPT_TABLE_MAXNAMELEN];
1007 struct arpt_table *t;
1009 if (*len != sizeof(struct arpt_getinfo)) {
1010 duprintf("length %u != %Zu\n", *len,
1011 sizeof(struct arpt_getinfo));
1016 if (copy_from_user(name, user, sizeof(name)) != 0) {
1020 name[ARPT_TABLE_MAXNAMELEN-1] = '\0';
1022 t = try_then_request_module(xt_find_table_lock(NF_ARP, name),
1023 "arptable_%s", name);
1024 if (t && !IS_ERR(t)) {
1025 struct arpt_getinfo info;
1026 struct xt_table_info *private = t->private;
1028 info.valid_hooks = t->valid_hooks;
1029 memcpy(info.hook_entry, private->hook_entry,
1030 sizeof(info.hook_entry));
1031 memcpy(info.underflow, private->underflow,
1032 sizeof(info.underflow));
1033 info.num_entries = private->number;
1034 info.size = private->size;
1035 strcpy(info.name, name);
1037 if (copy_to_user(user, &info, *len) != 0)
1044 ret = t ? PTR_ERR(t) : -ENOENT;
1048 case ARPT_SO_GET_ENTRIES: {
1049 struct arpt_get_entries get;
1051 if (*len < sizeof(get)) {
1052 duprintf("get_entries: %u < %Zu\n", *len, sizeof(get));
1054 } else if (copy_from_user(&get, user, sizeof(get)) != 0) {
1056 } else if (*len != sizeof(struct arpt_get_entries) + get.size) {
1057 duprintf("get_entries: %u != %Zu\n", *len,
1058 sizeof(struct arpt_get_entries) + get.size);
1061 ret = get_entries(&get, user);
1065 case ARPT_SO_GET_REVISION_TARGET: {
1066 struct xt_get_revision rev;
1068 if (*len != sizeof(rev)) {
1072 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
1077 try_then_request_module(xt_find_revision(NF_ARP, rev.name,
1078 rev.revision, 1, &ret),
1079 "arpt_%s", rev.name);
1084 duprintf("do_arpt_get_ctl: unknown request %i\n", cmd);
1091 int arpt_register_table(struct arpt_table *table,
1092 const struct arpt_replace *repl)
1095 struct xt_table_info *newinfo;
1096 static struct xt_table_info bootstrap
1097 = { 0, 0, 0, { 0 }, { 0 }, { } };
1098 void *loc_cpu_entry;
1100 newinfo = xt_alloc_table_info(repl->size);
1106 /* choose the copy on our node/cpu */
1107 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1108 memcpy(loc_cpu_entry, repl->entries, repl->size);
1110 ret = translate_table(table->name, table->valid_hooks,
1111 newinfo, loc_cpu_entry, repl->size,
1116 duprintf("arpt_register_table: translate table gives %d\n", ret);
1118 xt_free_table_info(newinfo);
1122 ret = xt_register_table(table, &bootstrap, newinfo);
1124 xt_free_table_info(newinfo);
1131 void arpt_unregister_table(struct arpt_table *table)
1133 struct xt_table_info *private;
1134 void *loc_cpu_entry;
1136 private = xt_unregister_table(table);
1138 /* Decrease module usage counts and free resources */
1139 loc_cpu_entry = private->entries[raw_smp_processor_id()];
1140 ARPT_ENTRY_ITERATE(loc_cpu_entry, private->size,
1141 cleanup_entry, NULL);
1142 xt_free_table_info(private);
1145 /* The built-in targets: standard (NULL) and error. */
1146 static struct arpt_target arpt_standard_target = {
1147 .name = ARPT_STANDARD_TARGET,
1148 .targetsize = sizeof(int),
1152 static struct arpt_target arpt_error_target = {
1153 .name = ARPT_ERROR_TARGET,
1154 .target = arpt_error,
1155 .targetsize = ARPT_FUNCTION_MAXNAMELEN,
1159 static struct nf_sockopt_ops arpt_sockopts = {
1161 .set_optmin = ARPT_BASE_CTL,
1162 .set_optmax = ARPT_SO_SET_MAX+1,
1163 .set = do_arpt_set_ctl,
1164 .get_optmin = ARPT_BASE_CTL,
1165 .get_optmax = ARPT_SO_GET_MAX+1,
1166 .get = do_arpt_get_ctl,
1169 static int __init arp_tables_init(void)
1173 ret = xt_proto_init(NF_ARP);
1177 /* Noone else will be downing sem now, so we won't sleep */
1178 ret = xt_register_target(&arpt_standard_target);
1181 ret = xt_register_target(&arpt_error_target);
1185 /* Register setsockopt */
1186 ret = nf_register_sockopt(&arpt_sockopts);
1190 printk("arp_tables: (C) 2002 David S. Miller\n");
1194 xt_unregister_target(&arpt_error_target);
1196 xt_unregister_target(&arpt_standard_target);
1198 xt_proto_fini(NF_ARP);
1203 static void __exit arp_tables_fini(void)
1205 nf_unregister_sockopt(&arpt_sockopts);
1206 xt_unregister_target(&arpt_error_target);
1207 xt_unregister_target(&arpt_standard_target);
1208 xt_proto_fini(NF_ARP);
1211 EXPORT_SYMBOL(arpt_register_table);
1212 EXPORT_SYMBOL(arpt_unregister_table);
1213 EXPORT_SYMBOL(arpt_do_table);
1215 module_init(arp_tables_init);
1216 module_exit(arp_tables_fini);