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)
11 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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>
22 #include <linux/mutex.h>
23 #include <linux/err.h>
24 #include <net/compat.h>
26 #include <asm/uaccess.h>
28 #include <linux/netfilter/x_tables.h>
29 #include <linux/netfilter_arp/arp_tables.h>
30 #include "../../netfilter/xt_repldata.h"
32 MODULE_LICENSE("GPL");
33 MODULE_AUTHOR("David S. Miller <davem@redhat.com>");
34 MODULE_DESCRIPTION("arptables core");
36 /*#define DEBUG_ARP_TABLES*/
37 /*#define DEBUG_ARP_TABLES_USER*/
39 #ifdef DEBUG_ARP_TABLES
40 #define dprintf(format, args...) printk(format , ## args)
42 #define dprintf(format, args...)
45 #ifdef DEBUG_ARP_TABLES_USER
46 #define duprintf(format, args...) printk(format , ## args)
48 #define duprintf(format, args...)
51 #ifdef CONFIG_NETFILTER_DEBUG
52 #define ARP_NF_ASSERT(x) WARN_ON(!(x))
54 #define ARP_NF_ASSERT(x)
57 void *arpt_alloc_initial_table(const struct xt_table
*info
)
59 return xt_alloc_initial_table(arpt
, ARPT
);
61 EXPORT_SYMBOL_GPL(arpt_alloc_initial_table
);
63 static inline int arp_devaddr_compare(const struct arpt_devaddr_info
*ap
,
64 const char *hdr_addr
, int len
)
68 if (len
> ARPT_DEV_ADDR_LEN_MAX
)
69 len
= ARPT_DEV_ADDR_LEN_MAX
;
72 for (i
= 0; i
< len
; i
++)
73 ret
|= (hdr_addr
[i
] ^ ap
->addr
[i
]) & ap
->mask
[i
];
79 * Unfortunatly, _b and _mask are not aligned to an int (or long int)
80 * Some arches dont care, unrolling the loop is a win on them.
81 * For other arches, we only have a 16bit alignement.
83 static unsigned long ifname_compare(const char *_a
, const char *_b
, const char *_mask
)
85 #ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
86 unsigned long ret
= ifname_compare_aligned(_a
, _b
, _mask
);
88 unsigned long ret
= 0;
89 const u16
*a
= (const u16
*)_a
;
90 const u16
*b
= (const u16
*)_b
;
91 const u16
*mask
= (const u16
*)_mask
;
94 for (i
= 0; i
< IFNAMSIZ
/sizeof(u16
); i
++)
95 ret
|= (a
[i
] ^ b
[i
]) & mask
[i
];
100 /* Returns whether packet matches rule or not. */
101 static inline int arp_packet_match(const struct arphdr
*arphdr
,
102 struct net_device
*dev
,
105 const struct arpt_arp
*arpinfo
)
107 const char *arpptr
= (char *)(arphdr
+ 1);
108 const char *src_devaddr
, *tgt_devaddr
;
109 __be32 src_ipaddr
, tgt_ipaddr
;
112 #define FWINV(bool, invflg) ((bool) ^ !!(arpinfo->invflags & (invflg)))
114 if (FWINV((arphdr
->ar_op
& arpinfo
->arpop_mask
) != arpinfo
->arpop
,
116 dprintf("ARP operation field mismatch.\n");
117 dprintf("ar_op: %04x info->arpop: %04x info->arpop_mask: %04x\n",
118 arphdr
->ar_op
, arpinfo
->arpop
, arpinfo
->arpop_mask
);
122 if (FWINV((arphdr
->ar_hrd
& arpinfo
->arhrd_mask
) != arpinfo
->arhrd
,
124 dprintf("ARP hardware address format mismatch.\n");
125 dprintf("ar_hrd: %04x info->arhrd: %04x info->arhrd_mask: %04x\n",
126 arphdr
->ar_hrd
, arpinfo
->arhrd
, arpinfo
->arhrd_mask
);
130 if (FWINV((arphdr
->ar_pro
& arpinfo
->arpro_mask
) != arpinfo
->arpro
,
132 dprintf("ARP protocol address format mismatch.\n");
133 dprintf("ar_pro: %04x info->arpro: %04x info->arpro_mask: %04x\n",
134 arphdr
->ar_pro
, arpinfo
->arpro
, arpinfo
->arpro_mask
);
138 if (FWINV((arphdr
->ar_hln
& arpinfo
->arhln_mask
) != arpinfo
->arhln
,
140 dprintf("ARP hardware address length mismatch.\n");
141 dprintf("ar_hln: %02x info->arhln: %02x info->arhln_mask: %02x\n",
142 arphdr
->ar_hln
, arpinfo
->arhln
, arpinfo
->arhln_mask
);
146 src_devaddr
= arpptr
;
147 arpptr
+= dev
->addr_len
;
148 memcpy(&src_ipaddr
, arpptr
, sizeof(u32
));
149 arpptr
+= sizeof(u32
);
150 tgt_devaddr
= arpptr
;
151 arpptr
+= dev
->addr_len
;
152 memcpy(&tgt_ipaddr
, arpptr
, sizeof(u32
));
154 if (FWINV(arp_devaddr_compare(&arpinfo
->src_devaddr
, src_devaddr
, dev
->addr_len
),
155 ARPT_INV_SRCDEVADDR
) ||
156 FWINV(arp_devaddr_compare(&arpinfo
->tgt_devaddr
, tgt_devaddr
, dev
->addr_len
),
157 ARPT_INV_TGTDEVADDR
)) {
158 dprintf("Source or target device address mismatch.\n");
163 if (FWINV((src_ipaddr
& arpinfo
->smsk
.s_addr
) != arpinfo
->src
.s_addr
,
165 FWINV(((tgt_ipaddr
& arpinfo
->tmsk
.s_addr
) != arpinfo
->tgt
.s_addr
),
167 dprintf("Source or target IP address mismatch.\n");
169 dprintf("SRC: %pI4. Mask: %pI4. Target: %pI4.%s\n",
171 &arpinfo
->smsk
.s_addr
,
172 &arpinfo
->src
.s_addr
,
173 arpinfo
->invflags
& ARPT_INV_SRCIP
? " (INV)" : "");
174 dprintf("TGT: %pI4 Mask: %pI4 Target: %pI4.%s\n",
176 &arpinfo
->tmsk
.s_addr
,
177 &arpinfo
->tgt
.s_addr
,
178 arpinfo
->invflags
& ARPT_INV_TGTIP
? " (INV)" : "");
182 /* Look for ifname matches. */
183 ret
= ifname_compare(indev
, arpinfo
->iniface
, arpinfo
->iniface_mask
);
185 if (FWINV(ret
!= 0, ARPT_INV_VIA_IN
)) {
186 dprintf("VIA in mismatch (%s vs %s).%s\n",
187 indev
, arpinfo
->iniface
,
188 arpinfo
->invflags
&ARPT_INV_VIA_IN
?" (INV)":"");
192 ret
= ifname_compare(outdev
, arpinfo
->outiface
, arpinfo
->outiface_mask
);
194 if (FWINV(ret
!= 0, ARPT_INV_VIA_OUT
)) {
195 dprintf("VIA out mismatch (%s vs %s).%s\n",
196 outdev
, arpinfo
->outiface
,
197 arpinfo
->invflags
&ARPT_INV_VIA_OUT
?" (INV)":"");
205 static inline int arp_checkentry(const struct arpt_arp
*arp
)
207 if (arp
->flags
& ~ARPT_F_MASK
) {
208 duprintf("Unknown flag bits set: %08X\n",
209 arp
->flags
& ~ARPT_F_MASK
);
212 if (arp
->invflags
& ~ARPT_INV_MASK
) {
213 duprintf("Unknown invflag bits set: %08X\n",
214 arp
->invflags
& ~ARPT_INV_MASK
);
222 arpt_error(struct sk_buff
*skb
, const struct xt_action_param
*par
)
225 pr_err("arp_tables: error: '%s'\n",
226 (const char *)par
->targinfo
);
231 static inline const struct xt_entry_target
*
232 arpt_get_target_c(const struct arpt_entry
*e
)
234 return arpt_get_target((struct arpt_entry
*)e
);
237 static inline struct arpt_entry
*
238 get_entry(const void *base
, unsigned int offset
)
240 return (struct arpt_entry
*)(base
+ offset
);
244 struct arpt_entry
*arpt_next_entry(const struct arpt_entry
*entry
)
246 return (void *)entry
+ entry
->next_offset
;
249 unsigned int arpt_do_table(struct sk_buff
*skb
,
251 const struct net_device
*in
,
252 const struct net_device
*out
,
253 struct xt_table
*table
)
255 static const char nulldevname
[IFNAMSIZ
] __attribute__((aligned(sizeof(long))));
256 unsigned int verdict
= NF_DROP
;
257 const struct arphdr
*arp
;
258 struct arpt_entry
*e
, *back
;
259 const char *indev
, *outdev
;
261 const struct xt_table_info
*private;
262 struct xt_action_param acpar
;
264 if (!pskb_may_pull(skb
, arp_hdr_len(skb
->dev
)))
267 indev
= in
? in
->name
: nulldevname
;
268 outdev
= out
? out
->name
: nulldevname
;
271 private = table
->private;
272 table_base
= private->entries
[smp_processor_id()];
274 e
= get_entry(table_base
, private->hook_entry
[hook
]);
275 back
= get_entry(table_base
, private->underflow
[hook
]);
279 acpar
.hooknum
= hook
;
280 acpar
.family
= NFPROTO_ARP
;
281 acpar
.hotdrop
= false;
285 const struct xt_entry_target
*t
;
287 if (!arp_packet_match(arp
, skb
->dev
, indev
, outdev
, &e
->arp
)) {
288 e
= arpt_next_entry(e
);
292 ADD_COUNTER(e
->counters
, arp_hdr_len(skb
->dev
), 1);
294 t
= arpt_get_target_c(e
);
296 /* Standard target? */
297 if (!t
->u
.kernel
.target
->target
) {
300 v
= ((struct xt_standard_target
*)t
)->verdict
;
302 /* Pop from stack? */
303 if (v
!= XT_RETURN
) {
304 verdict
= (unsigned)(-v
) - 1;
308 back
= get_entry(table_base
, back
->comefrom
);
312 != arpt_next_entry(e
)) {
313 /* Save old back ptr in next entry */
314 struct arpt_entry
*next
= arpt_next_entry(e
);
315 next
->comefrom
= (void *)back
- table_base
;
317 /* set back pointer to next entry */
321 e
= get_entry(table_base
, v
);
325 /* Targets which reenter must return
328 acpar
.target
= t
->u
.kernel
.target
;
329 acpar
.targinfo
= t
->data
;
330 verdict
= t
->u
.kernel
.target
->target(skb
, &acpar
);
332 /* Target might have changed stuff. */
335 if (verdict
== XT_CONTINUE
)
336 e
= arpt_next_entry(e
);
340 } while (!acpar
.hotdrop
);
341 xt_info_rdunlock_bh();
349 /* All zeroes == unconditional rule. */
350 static inline bool unconditional(const struct arpt_arp
*arp
)
352 static const struct arpt_arp uncond
;
354 return memcmp(arp
, &uncond
, sizeof(uncond
)) == 0;
357 /* Figures out from what hook each rule can be called: returns 0 if
358 * there are loops. Puts hook bitmask in comefrom.
360 static int mark_source_chains(const struct xt_table_info
*newinfo
,
361 unsigned int valid_hooks
, void *entry0
)
365 /* No recursion; use packet counter to save back ptrs (reset
366 * to 0 as we leave), and comefrom to save source hook bitmask.
368 for (hook
= 0; hook
< NF_ARP_NUMHOOKS
; hook
++) {
369 unsigned int pos
= newinfo
->hook_entry
[hook
];
371 = (struct arpt_entry
*)(entry0
+ pos
);
373 if (!(valid_hooks
& (1 << hook
)))
376 /* Set initial back pointer. */
377 e
->counters
.pcnt
= pos
;
380 const struct xt_standard_target
*t
381 = (void *)arpt_get_target_c(e
);
382 int visited
= e
->comefrom
& (1 << hook
);
384 if (e
->comefrom
& (1 << NF_ARP_NUMHOOKS
)) {
385 pr_notice("arptables: loop hook %u pos %u %08X.\n",
386 hook
, pos
, e
->comefrom
);
390 |= ((1 << hook
) | (1 << NF_ARP_NUMHOOKS
));
392 /* Unconditional return/END. */
393 if ((e
->target_offset
== sizeof(struct arpt_entry
) &&
394 (strcmp(t
->target
.u
.user
.name
,
395 XT_STANDARD_TARGET
) == 0) &&
396 t
->verdict
< 0 && unconditional(&e
->arp
)) ||
398 unsigned int oldpos
, size
;
400 if ((strcmp(t
->target
.u
.user
.name
,
401 XT_STANDARD_TARGET
) == 0) &&
402 t
->verdict
< -NF_MAX_VERDICT
- 1) {
403 duprintf("mark_source_chains: bad "
404 "negative verdict (%i)\n",
409 /* Return: backtrack through the last
413 e
->comefrom
^= (1<<NF_ARP_NUMHOOKS
);
415 pos
= e
->counters
.pcnt
;
416 e
->counters
.pcnt
= 0;
418 /* We're at the start. */
422 e
= (struct arpt_entry
*)
424 } while (oldpos
== pos
+ e
->next_offset
);
427 size
= e
->next_offset
;
428 e
= (struct arpt_entry
*)
429 (entry0
+ pos
+ size
);
430 e
->counters
.pcnt
= pos
;
433 int newpos
= t
->verdict
;
435 if (strcmp(t
->target
.u
.user
.name
,
436 XT_STANDARD_TARGET
) == 0 &&
438 if (newpos
> newinfo
->size
-
439 sizeof(struct arpt_entry
)) {
440 duprintf("mark_source_chains: "
441 "bad verdict (%i)\n",
446 /* This a jump; chase it. */
447 duprintf("Jump rule %u -> %u\n",
450 /* ... this is a fallthru */
451 newpos
= pos
+ e
->next_offset
;
453 e
= (struct arpt_entry
*)
455 e
->counters
.pcnt
= pos
;
460 duprintf("Finished chain %u\n", hook
);
465 static inline int check_entry(const struct arpt_entry
*e
, const char *name
)
467 const struct xt_entry_target
*t
;
469 if (!arp_checkentry(&e
->arp
)) {
470 duprintf("arp_tables: arp check failed %p %s.\n", e
, name
);
474 if (e
->target_offset
+ sizeof(struct xt_entry_target
) > e
->next_offset
)
477 t
= arpt_get_target_c(e
);
478 if (e
->target_offset
+ t
->u
.target_size
> e
->next_offset
)
484 static inline int check_target(struct arpt_entry
*e
, const char *name
)
486 struct xt_entry_target
*t
= arpt_get_target(e
);
488 struct xt_tgchk_param par
= {
491 .target
= t
->u
.kernel
.target
,
493 .hook_mask
= e
->comefrom
,
494 .family
= NFPROTO_ARP
,
497 ret
= xt_check_target(&par
, t
->u
.target_size
- sizeof(*t
), 0, false);
499 duprintf("arp_tables: check failed for `%s'.\n",
500 t
->u
.kernel
.target
->name
);
507 find_check_entry(struct arpt_entry
*e
, const char *name
, unsigned int size
)
509 struct xt_entry_target
*t
;
510 struct xt_target
*target
;
513 ret
= check_entry(e
, name
);
517 t
= arpt_get_target(e
);
518 target
= xt_request_find_target(NFPROTO_ARP
, t
->u
.user
.name
,
520 if (IS_ERR(target
)) {
521 duprintf("find_check_entry: `%s' not found\n", t
->u
.user
.name
);
522 ret
= PTR_ERR(target
);
525 t
->u
.kernel
.target
= target
;
527 ret
= check_target(e
, name
);
532 module_put(t
->u
.kernel
.target
->me
);
537 static bool check_underflow(const struct arpt_entry
*e
)
539 const struct xt_entry_target
*t
;
540 unsigned int verdict
;
542 if (!unconditional(&e
->arp
))
544 t
= arpt_get_target_c(e
);
545 if (strcmp(t
->u
.user
.name
, XT_STANDARD_TARGET
) != 0)
547 verdict
= ((struct xt_standard_target
*)t
)->verdict
;
548 verdict
= -verdict
- 1;
549 return verdict
== NF_DROP
|| verdict
== NF_ACCEPT
;
552 static inline int check_entry_size_and_hooks(struct arpt_entry
*e
,
553 struct xt_table_info
*newinfo
,
554 const unsigned char *base
,
555 const unsigned char *limit
,
556 const unsigned int *hook_entries
,
557 const unsigned int *underflows
,
558 unsigned int valid_hooks
)
562 if ((unsigned long)e
% __alignof__(struct arpt_entry
) != 0 ||
563 (unsigned char *)e
+ sizeof(struct arpt_entry
) >= limit
) {
564 duprintf("Bad offset %p\n", e
);
569 < sizeof(struct arpt_entry
) + sizeof(struct xt_entry_target
)) {
570 duprintf("checking: element %p size %u\n",
575 /* Check hooks & underflows */
576 for (h
= 0; h
< NF_ARP_NUMHOOKS
; h
++) {
577 if (!(valid_hooks
& (1 << h
)))
579 if ((unsigned char *)e
- base
== hook_entries
[h
])
580 newinfo
->hook_entry
[h
] = hook_entries
[h
];
581 if ((unsigned char *)e
- base
== underflows
[h
]) {
582 if (!check_underflow(e
)) {
583 pr_err("Underflows must be unconditional and "
584 "use the STANDARD target with "
588 newinfo
->underflow
[h
] = underflows
[h
];
592 /* Clear counters and comefrom */
593 e
->counters
= ((struct xt_counters
) { 0, 0 });
598 static inline void cleanup_entry(struct arpt_entry
*e
)
600 struct xt_tgdtor_param par
;
601 struct xt_entry_target
*t
;
603 t
= arpt_get_target(e
);
604 par
.target
= t
->u
.kernel
.target
;
605 par
.targinfo
= t
->data
;
606 par
.family
= NFPROTO_ARP
;
607 if (par
.target
->destroy
!= NULL
)
608 par
.target
->destroy(&par
);
609 module_put(par
.target
->me
);
612 /* Checks and translates the user-supplied table segment (held in
615 static int translate_table(struct xt_table_info
*newinfo
, void *entry0
,
616 const struct arpt_replace
*repl
)
618 struct arpt_entry
*iter
;
622 newinfo
->size
= repl
->size
;
623 newinfo
->number
= repl
->num_entries
;
625 /* Init all hooks to impossible value. */
626 for (i
= 0; i
< NF_ARP_NUMHOOKS
; i
++) {
627 newinfo
->hook_entry
[i
] = 0xFFFFFFFF;
628 newinfo
->underflow
[i
] = 0xFFFFFFFF;
631 duprintf("translate_table: size %u\n", newinfo
->size
);
634 /* Walk through entries, checking offsets. */
635 xt_entry_foreach(iter
, entry0
, newinfo
->size
) {
636 ret
= check_entry_size_and_hooks(iter
, newinfo
, entry0
,
644 if (strcmp(arpt_get_target(iter
)->u
.user
.name
,
645 XT_ERROR_TARGET
) == 0)
646 ++newinfo
->stacksize
;
648 duprintf("translate_table: ARPT_ENTRY_ITERATE gives %d\n", ret
);
652 if (i
!= repl
->num_entries
) {
653 duprintf("translate_table: %u not %u entries\n",
654 i
, repl
->num_entries
);
658 /* Check hooks all assigned */
659 for (i
= 0; i
< NF_ARP_NUMHOOKS
; i
++) {
660 /* Only hooks which are valid */
661 if (!(repl
->valid_hooks
& (1 << i
)))
663 if (newinfo
->hook_entry
[i
] == 0xFFFFFFFF) {
664 duprintf("Invalid hook entry %u %u\n",
665 i
, repl
->hook_entry
[i
]);
668 if (newinfo
->underflow
[i
] == 0xFFFFFFFF) {
669 duprintf("Invalid underflow %u %u\n",
670 i
, repl
->underflow
[i
]);
675 if (!mark_source_chains(newinfo
, repl
->valid_hooks
, entry0
)) {
676 duprintf("Looping hook\n");
680 /* Finally, each sanity check must pass */
682 xt_entry_foreach(iter
, entry0
, newinfo
->size
) {
683 ret
= find_check_entry(iter
, repl
->name
, repl
->size
);
690 xt_entry_foreach(iter
, entry0
, newinfo
->size
) {
698 /* And one copy for every other CPU */
699 for_each_possible_cpu(i
) {
700 if (newinfo
->entries
[i
] && newinfo
->entries
[i
] != entry0
)
701 memcpy(newinfo
->entries
[i
], entry0
, newinfo
->size
);
707 static void get_counters(const struct xt_table_info
*t
,
708 struct xt_counters counters
[])
710 struct arpt_entry
*iter
;
714 for_each_possible_cpu(cpu
) {
715 seqlock_t
*lock
= &per_cpu(xt_info_locks
, cpu
).lock
;
718 xt_entry_foreach(iter
, t
->entries
[cpu
], t
->size
) {
723 start
= read_seqbegin(lock
);
724 bcnt
= iter
->counters
.bcnt
;
725 pcnt
= iter
->counters
.pcnt
;
726 } while (read_seqretry(lock
, start
));
728 ADD_COUNTER(counters
[i
], bcnt
, pcnt
);
734 static struct xt_counters
*alloc_counters(const struct xt_table
*table
)
736 unsigned int countersize
;
737 struct xt_counters
*counters
;
738 const struct xt_table_info
*private = table
->private;
740 /* We need atomic snapshot of counters: rest doesn't change
741 * (other than comefrom, which userspace doesn't care
744 countersize
= sizeof(struct xt_counters
) * private->number
;
745 counters
= vzalloc(countersize
);
747 if (counters
== NULL
)
748 return ERR_PTR(-ENOMEM
);
750 get_counters(private, counters
);
755 static int copy_entries_to_user(unsigned int total_size
,
756 const struct xt_table
*table
,
757 void __user
*userptr
)
759 unsigned int off
, num
;
760 const struct arpt_entry
*e
;
761 struct xt_counters
*counters
;
762 struct xt_table_info
*private = table
->private;
766 counters
= alloc_counters(table
);
767 if (IS_ERR(counters
))
768 return PTR_ERR(counters
);
770 loc_cpu_entry
= private->entries
[raw_smp_processor_id()];
771 /* ... then copy entire thing ... */
772 if (copy_to_user(userptr
, loc_cpu_entry
, total_size
) != 0) {
777 /* FIXME: use iterator macros --RR */
778 /* ... then go back and fix counters and names */
779 for (off
= 0, num
= 0; off
< total_size
; off
+= e
->next_offset
, num
++){
780 const struct xt_entry_target
*t
;
782 e
= (struct arpt_entry
*)(loc_cpu_entry
+ off
);
783 if (copy_to_user(userptr
+ off
784 + offsetof(struct arpt_entry
, counters
),
786 sizeof(counters
[num
])) != 0) {
791 t
= arpt_get_target_c(e
);
792 if (copy_to_user(userptr
+ off
+ e
->target_offset
793 + offsetof(struct xt_entry_target
,
795 t
->u
.kernel
.target
->name
,
796 strlen(t
->u
.kernel
.target
->name
)+1) != 0) {
808 static void compat_standard_from_user(void *dst
, const void *src
)
810 int v
= *(compat_int_t
*)src
;
813 v
+= xt_compat_calc_jump(NFPROTO_ARP
, v
);
814 memcpy(dst
, &v
, sizeof(v
));
817 static int compat_standard_to_user(void __user
*dst
, const void *src
)
819 compat_int_t cv
= *(int *)src
;
822 cv
-= xt_compat_calc_jump(NFPROTO_ARP
, cv
);
823 return copy_to_user(dst
, &cv
, sizeof(cv
)) ? -EFAULT
: 0;
826 static int compat_calc_entry(const struct arpt_entry
*e
,
827 const struct xt_table_info
*info
,
828 const void *base
, struct xt_table_info
*newinfo
)
830 const struct xt_entry_target
*t
;
831 unsigned int entry_offset
;
834 off
= sizeof(struct arpt_entry
) - sizeof(struct compat_arpt_entry
);
835 entry_offset
= (void *)e
- base
;
837 t
= arpt_get_target_c(e
);
838 off
+= xt_compat_target_offset(t
->u
.kernel
.target
);
839 newinfo
->size
-= off
;
840 ret
= xt_compat_add_offset(NFPROTO_ARP
, entry_offset
, off
);
844 for (i
= 0; i
< NF_ARP_NUMHOOKS
; i
++) {
845 if (info
->hook_entry
[i
] &&
846 (e
< (struct arpt_entry
*)(base
+ info
->hook_entry
[i
])))
847 newinfo
->hook_entry
[i
] -= off
;
848 if (info
->underflow
[i
] &&
849 (e
< (struct arpt_entry
*)(base
+ info
->underflow
[i
])))
850 newinfo
->underflow
[i
] -= off
;
855 static int compat_table_info(const struct xt_table_info
*info
,
856 struct xt_table_info
*newinfo
)
858 struct arpt_entry
*iter
;
862 if (!newinfo
|| !info
)
865 /* we dont care about newinfo->entries[] */
866 memcpy(newinfo
, info
, offsetof(struct xt_table_info
, entries
));
867 newinfo
->initial_entries
= 0;
868 loc_cpu_entry
= info
->entries
[raw_smp_processor_id()];
869 xt_entry_foreach(iter
, loc_cpu_entry
, info
->size
) {
870 ret
= compat_calc_entry(iter
, info
, loc_cpu_entry
, newinfo
);
878 static int get_info(struct net
*net
, void __user
*user
,
879 const int *len
, int compat
)
881 char name
[XT_TABLE_MAXNAMELEN
];
885 if (*len
!= sizeof(struct arpt_getinfo
)) {
886 duprintf("length %u != %Zu\n", *len
,
887 sizeof(struct arpt_getinfo
));
891 if (copy_from_user(name
, user
, sizeof(name
)) != 0)
894 name
[XT_TABLE_MAXNAMELEN
-1] = '\0';
897 xt_compat_lock(NFPROTO_ARP
);
899 t
= try_then_request_module(xt_find_table_lock(net
, NFPROTO_ARP
, name
),
900 "arptable_%s", name
);
901 if (t
&& !IS_ERR(t
)) {
902 struct arpt_getinfo info
;
903 const struct xt_table_info
*private = t
->private;
905 struct xt_table_info tmp
;
908 ret
= compat_table_info(private, &tmp
);
909 xt_compat_flush_offsets(NFPROTO_ARP
);
913 memset(&info
, 0, sizeof(info
));
914 info
.valid_hooks
= t
->valid_hooks
;
915 memcpy(info
.hook_entry
, private->hook_entry
,
916 sizeof(info
.hook_entry
));
917 memcpy(info
.underflow
, private->underflow
,
918 sizeof(info
.underflow
));
919 info
.num_entries
= private->number
;
920 info
.size
= private->size
;
921 strcpy(info
.name
, name
);
923 if (copy_to_user(user
, &info
, *len
) != 0)
930 ret
= t
? PTR_ERR(t
) : -ENOENT
;
933 xt_compat_unlock(NFPROTO_ARP
);
938 static int get_entries(struct net
*net
, struct arpt_get_entries __user
*uptr
,
942 struct arpt_get_entries get
;
945 if (*len
< sizeof(get
)) {
946 duprintf("get_entries: %u < %Zu\n", *len
, sizeof(get
));
949 if (copy_from_user(&get
, uptr
, sizeof(get
)) != 0)
951 if (*len
!= sizeof(struct arpt_get_entries
) + get
.size
) {
952 duprintf("get_entries: %u != %Zu\n", *len
,
953 sizeof(struct arpt_get_entries
) + get
.size
);
957 t
= xt_find_table_lock(net
, NFPROTO_ARP
, get
.name
);
958 if (t
&& !IS_ERR(t
)) {
959 const struct xt_table_info
*private = t
->private;
961 duprintf("t->private->number = %u\n",
963 if (get
.size
== private->size
)
964 ret
= copy_entries_to_user(private->size
,
965 t
, uptr
->entrytable
);
967 duprintf("get_entries: I've got %u not %u!\n",
968 private->size
, get
.size
);
974 ret
= t
? PTR_ERR(t
) : -ENOENT
;
979 static int __do_replace(struct net
*net
, const char *name
,
980 unsigned int valid_hooks
,
981 struct xt_table_info
*newinfo
,
982 unsigned int num_counters
,
983 void __user
*counters_ptr
)
987 struct xt_table_info
*oldinfo
;
988 struct xt_counters
*counters
;
989 void *loc_cpu_old_entry
;
990 struct arpt_entry
*iter
;
993 counters
= vzalloc(num_counters
* sizeof(struct xt_counters
));
999 t
= try_then_request_module(xt_find_table_lock(net
, NFPROTO_ARP
, name
),
1000 "arptable_%s", name
);
1001 if (!t
|| IS_ERR(t
)) {
1002 ret
= t
? PTR_ERR(t
) : -ENOENT
;
1003 goto free_newinfo_counters_untrans
;
1007 if (valid_hooks
!= t
->valid_hooks
) {
1008 duprintf("Valid hook crap: %08X vs %08X\n",
1009 valid_hooks
, t
->valid_hooks
);
1014 oldinfo
= xt_replace_table(t
, num_counters
, newinfo
, &ret
);
1018 /* Update module usage count based on number of rules */
1019 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1020 oldinfo
->number
, oldinfo
->initial_entries
, newinfo
->number
);
1021 if ((oldinfo
->number
> oldinfo
->initial_entries
) ||
1022 (newinfo
->number
<= oldinfo
->initial_entries
))
1024 if ((oldinfo
->number
> oldinfo
->initial_entries
) &&
1025 (newinfo
->number
<= oldinfo
->initial_entries
))
1028 /* Get the old counters, and synchronize with replace */
1029 get_counters(oldinfo
, counters
);
1031 /* Decrease module usage counts and free resource */
1032 loc_cpu_old_entry
= oldinfo
->entries
[raw_smp_processor_id()];
1033 xt_entry_foreach(iter
, loc_cpu_old_entry
, oldinfo
->size
)
1034 cleanup_entry(iter
);
1036 xt_free_table_info(oldinfo
);
1037 if (copy_to_user(counters_ptr
, counters
,
1038 sizeof(struct xt_counters
) * num_counters
) != 0)
1047 free_newinfo_counters_untrans
:
1053 static int do_replace(struct net
*net
, const void __user
*user
,
1057 struct arpt_replace tmp
;
1058 struct xt_table_info
*newinfo
;
1059 void *loc_cpu_entry
;
1060 struct arpt_entry
*iter
;
1062 if (copy_from_user(&tmp
, user
, sizeof(tmp
)) != 0)
1065 /* overflow check */
1066 if (tmp
.num_counters
>= INT_MAX
/ sizeof(struct xt_counters
))
1069 newinfo
= xt_alloc_table_info(tmp
.size
);
1073 /* choose the copy that is on our node/cpu */
1074 loc_cpu_entry
= newinfo
->entries
[raw_smp_processor_id()];
1075 if (copy_from_user(loc_cpu_entry
, user
+ sizeof(tmp
),
1081 ret
= translate_table(newinfo
, loc_cpu_entry
, &tmp
);
1085 duprintf("arp_tables: Translated table\n");
1087 ret
= __do_replace(net
, tmp
.name
, tmp
.valid_hooks
, newinfo
,
1088 tmp
.num_counters
, tmp
.counters
);
1090 goto free_newinfo_untrans
;
1093 free_newinfo_untrans
:
1094 xt_entry_foreach(iter
, loc_cpu_entry
, newinfo
->size
)
1095 cleanup_entry(iter
);
1097 xt_free_table_info(newinfo
);
1101 static int do_add_counters(struct net
*net
, const void __user
*user
,
1102 unsigned int len
, int compat
)
1104 unsigned int i
, curcpu
;
1105 struct xt_counters_info tmp
;
1106 struct xt_counters
*paddc
;
1107 unsigned int num_counters
;
1112 const struct xt_table_info
*private;
1114 void *loc_cpu_entry
;
1115 struct arpt_entry
*iter
;
1116 #ifdef CONFIG_COMPAT
1117 struct compat_xt_counters_info compat_tmp
;
1121 size
= sizeof(struct compat_xt_counters_info
);
1126 size
= sizeof(struct xt_counters_info
);
1129 if (copy_from_user(ptmp
, user
, size
) != 0)
1132 #ifdef CONFIG_COMPAT
1134 num_counters
= compat_tmp
.num_counters
;
1135 name
= compat_tmp
.name
;
1139 num_counters
= tmp
.num_counters
;
1143 if (len
!= size
+ num_counters
* sizeof(struct xt_counters
))
1146 paddc
= vmalloc(len
- size
);
1150 if (copy_from_user(paddc
, user
+ size
, len
- size
) != 0) {
1155 t
= xt_find_table_lock(net
, NFPROTO_ARP
, name
);
1156 if (!t
|| IS_ERR(t
)) {
1157 ret
= t
? PTR_ERR(t
) : -ENOENT
;
1162 private = t
->private;
1163 if (private->number
!= num_counters
) {
1165 goto unlock_up_free
;
1169 /* Choose the copy that is on our node */
1170 curcpu
= smp_processor_id();
1171 loc_cpu_entry
= private->entries
[curcpu
];
1172 xt_info_wrlock(curcpu
);
1173 xt_entry_foreach(iter
, loc_cpu_entry
, private->size
) {
1174 ADD_COUNTER(iter
->counters
, paddc
[i
].bcnt
, paddc
[i
].pcnt
);
1177 xt_info_wrunlock(curcpu
);
1188 #ifdef CONFIG_COMPAT
1189 static inline void compat_release_entry(struct compat_arpt_entry
*e
)
1191 struct xt_entry_target
*t
;
1193 t
= compat_arpt_get_target(e
);
1194 module_put(t
->u
.kernel
.target
->me
);
1198 check_compat_entry_size_and_hooks(struct compat_arpt_entry
*e
,
1199 struct xt_table_info
*newinfo
,
1201 const unsigned char *base
,
1202 const unsigned char *limit
,
1203 const unsigned int *hook_entries
,
1204 const unsigned int *underflows
,
1207 struct xt_entry_target
*t
;
1208 struct xt_target
*target
;
1209 unsigned int entry_offset
;
1212 duprintf("check_compat_entry_size_and_hooks %p\n", e
);
1213 if ((unsigned long)e
% __alignof__(struct compat_arpt_entry
) != 0 ||
1214 (unsigned char *)e
+ sizeof(struct compat_arpt_entry
) >= limit
) {
1215 duprintf("Bad offset %p, limit = %p\n", e
, limit
);
1219 if (e
->next_offset
< sizeof(struct compat_arpt_entry
) +
1220 sizeof(struct compat_xt_entry_target
)) {
1221 duprintf("checking: element %p size %u\n",
1226 /* For purposes of check_entry casting the compat entry is fine */
1227 ret
= check_entry((struct arpt_entry
*)e
, name
);
1231 off
= sizeof(struct arpt_entry
) - sizeof(struct compat_arpt_entry
);
1232 entry_offset
= (void *)e
- (void *)base
;
1234 t
= compat_arpt_get_target(e
);
1235 target
= xt_request_find_target(NFPROTO_ARP
, t
->u
.user
.name
,
1236 t
->u
.user
.revision
);
1237 if (IS_ERR(target
)) {
1238 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
1240 ret
= PTR_ERR(target
);
1243 t
->u
.kernel
.target
= target
;
1245 off
+= xt_compat_target_offset(target
);
1247 ret
= xt_compat_add_offset(NFPROTO_ARP
, entry_offset
, off
);
1249 goto release_target
;
1251 /* Check hooks & underflows */
1252 for (h
= 0; h
< NF_ARP_NUMHOOKS
; h
++) {
1253 if ((unsigned char *)e
- base
== hook_entries
[h
])
1254 newinfo
->hook_entry
[h
] = hook_entries
[h
];
1255 if ((unsigned char *)e
- base
== underflows
[h
])
1256 newinfo
->underflow
[h
] = underflows
[h
];
1259 /* Clear counters and comefrom */
1260 memset(&e
->counters
, 0, sizeof(e
->counters
));
1265 module_put(t
->u
.kernel
.target
->me
);
1271 compat_copy_entry_from_user(struct compat_arpt_entry
*e
, void **dstptr
,
1272 unsigned int *size
, const char *name
,
1273 struct xt_table_info
*newinfo
, unsigned char *base
)
1275 struct xt_entry_target
*t
;
1276 struct xt_target
*target
;
1277 struct arpt_entry
*de
;
1278 unsigned int origsize
;
1283 de
= (struct arpt_entry
*)*dstptr
;
1284 memcpy(de
, e
, sizeof(struct arpt_entry
));
1285 memcpy(&de
->counters
, &e
->counters
, sizeof(e
->counters
));
1287 *dstptr
+= sizeof(struct arpt_entry
);
1288 *size
+= sizeof(struct arpt_entry
) - sizeof(struct compat_arpt_entry
);
1290 de
->target_offset
= e
->target_offset
- (origsize
- *size
);
1291 t
= compat_arpt_get_target(e
);
1292 target
= t
->u
.kernel
.target
;
1293 xt_compat_target_from_user(t
, dstptr
, size
);
1295 de
->next_offset
= e
->next_offset
- (origsize
- *size
);
1296 for (h
= 0; h
< NF_ARP_NUMHOOKS
; h
++) {
1297 if ((unsigned char *)de
- base
< newinfo
->hook_entry
[h
])
1298 newinfo
->hook_entry
[h
] -= origsize
- *size
;
1299 if ((unsigned char *)de
- base
< newinfo
->underflow
[h
])
1300 newinfo
->underflow
[h
] -= origsize
- *size
;
1305 static int translate_compat_table(const char *name
,
1306 unsigned int valid_hooks
,
1307 struct xt_table_info
**pinfo
,
1309 unsigned int total_size
,
1310 unsigned int number
,
1311 unsigned int *hook_entries
,
1312 unsigned int *underflows
)
1315 struct xt_table_info
*newinfo
, *info
;
1316 void *pos
, *entry0
, *entry1
;
1317 struct compat_arpt_entry
*iter0
;
1318 struct arpt_entry
*iter1
;
1325 info
->number
= number
;
1327 /* Init all hooks to impossible value. */
1328 for (i
= 0; i
< NF_ARP_NUMHOOKS
; i
++) {
1329 info
->hook_entry
[i
] = 0xFFFFFFFF;
1330 info
->underflow
[i
] = 0xFFFFFFFF;
1333 duprintf("translate_compat_table: size %u\n", info
->size
);
1335 xt_compat_lock(NFPROTO_ARP
);
1336 /* Walk through entries, checking offsets. */
1337 xt_entry_foreach(iter0
, entry0
, total_size
) {
1338 ret
= check_compat_entry_size_and_hooks(iter0
, info
, &size
,
1340 entry0
+ total_size
,
1351 duprintf("translate_compat_table: %u not %u entries\n",
1356 /* Check hooks all assigned */
1357 for (i
= 0; i
< NF_ARP_NUMHOOKS
; i
++) {
1358 /* Only hooks which are valid */
1359 if (!(valid_hooks
& (1 << i
)))
1361 if (info
->hook_entry
[i
] == 0xFFFFFFFF) {
1362 duprintf("Invalid hook entry %u %u\n",
1363 i
, hook_entries
[i
]);
1366 if (info
->underflow
[i
] == 0xFFFFFFFF) {
1367 duprintf("Invalid underflow %u %u\n",
1374 newinfo
= xt_alloc_table_info(size
);
1378 newinfo
->number
= number
;
1379 for (i
= 0; i
< NF_ARP_NUMHOOKS
; i
++) {
1380 newinfo
->hook_entry
[i
] = info
->hook_entry
[i
];
1381 newinfo
->underflow
[i
] = info
->underflow
[i
];
1383 entry1
= newinfo
->entries
[raw_smp_processor_id()];
1386 xt_entry_foreach(iter0
, entry0
, total_size
) {
1387 ret
= compat_copy_entry_from_user(iter0
, &pos
, &size
,
1388 name
, newinfo
, entry1
);
1392 xt_compat_flush_offsets(NFPROTO_ARP
);
1393 xt_compat_unlock(NFPROTO_ARP
);
1398 if (!mark_source_chains(newinfo
, valid_hooks
, entry1
))
1402 xt_entry_foreach(iter1
, entry1
, newinfo
->size
) {
1403 ret
= check_target(iter1
, name
);
1407 if (strcmp(arpt_get_target(iter1
)->u
.user
.name
,
1408 XT_ERROR_TARGET
) == 0)
1409 ++newinfo
->stacksize
;
1413 * The first i matches need cleanup_entry (calls ->destroy)
1414 * because they had called ->check already. The other j-i
1415 * entries need only release.
1419 xt_entry_foreach(iter0
, entry0
, newinfo
->size
) {
1424 compat_release_entry(iter0
);
1426 xt_entry_foreach(iter1
, entry1
, newinfo
->size
) {
1429 cleanup_entry(iter1
);
1431 xt_free_table_info(newinfo
);
1435 /* And one copy for every other CPU */
1436 for_each_possible_cpu(i
)
1437 if (newinfo
->entries
[i
] && newinfo
->entries
[i
] != entry1
)
1438 memcpy(newinfo
->entries
[i
], entry1
, newinfo
->size
);
1442 xt_free_table_info(info
);
1446 xt_free_table_info(newinfo
);
1448 xt_entry_foreach(iter0
, entry0
, total_size
) {
1451 compat_release_entry(iter0
);
1455 xt_compat_flush_offsets(NFPROTO_ARP
);
1456 xt_compat_unlock(NFPROTO_ARP
);
1460 struct compat_arpt_replace
{
1461 char name
[XT_TABLE_MAXNAMELEN
];
1465 u32 hook_entry
[NF_ARP_NUMHOOKS
];
1466 u32 underflow
[NF_ARP_NUMHOOKS
];
1468 compat_uptr_t counters
;
1469 struct compat_arpt_entry entries
[0];
1472 static int compat_do_replace(struct net
*net
, void __user
*user
,
1476 struct compat_arpt_replace tmp
;
1477 struct xt_table_info
*newinfo
;
1478 void *loc_cpu_entry
;
1479 struct arpt_entry
*iter
;
1481 if (copy_from_user(&tmp
, user
, sizeof(tmp
)) != 0)
1484 /* overflow check */
1485 if (tmp
.size
>= INT_MAX
/ num_possible_cpus())
1487 if (tmp
.num_counters
>= INT_MAX
/ sizeof(struct xt_counters
))
1490 newinfo
= xt_alloc_table_info(tmp
.size
);
1494 /* choose the copy that is on our node/cpu */
1495 loc_cpu_entry
= newinfo
->entries
[raw_smp_processor_id()];
1496 if (copy_from_user(loc_cpu_entry
, user
+ sizeof(tmp
), tmp
.size
) != 0) {
1501 ret
= translate_compat_table(tmp
.name
, tmp
.valid_hooks
,
1502 &newinfo
, &loc_cpu_entry
, tmp
.size
,
1503 tmp
.num_entries
, tmp
.hook_entry
,
1508 duprintf("compat_do_replace: Translated table\n");
1510 ret
= __do_replace(net
, tmp
.name
, tmp
.valid_hooks
, newinfo
,
1511 tmp
.num_counters
, compat_ptr(tmp
.counters
));
1513 goto free_newinfo_untrans
;
1516 free_newinfo_untrans
:
1517 xt_entry_foreach(iter
, loc_cpu_entry
, newinfo
->size
)
1518 cleanup_entry(iter
);
1520 xt_free_table_info(newinfo
);
1524 static int compat_do_arpt_set_ctl(struct sock
*sk
, int cmd
, void __user
*user
,
1529 if (!capable(CAP_NET_ADMIN
))
1533 case ARPT_SO_SET_REPLACE
:
1534 ret
= compat_do_replace(sock_net(sk
), user
, len
);
1537 case ARPT_SO_SET_ADD_COUNTERS
:
1538 ret
= do_add_counters(sock_net(sk
), user
, len
, 1);
1542 duprintf("do_arpt_set_ctl: unknown request %i\n", cmd
);
1549 static int compat_copy_entry_to_user(struct arpt_entry
*e
, void __user
**dstptr
,
1550 compat_uint_t
*size
,
1551 struct xt_counters
*counters
,
1554 struct xt_entry_target
*t
;
1555 struct compat_arpt_entry __user
*ce
;
1556 u_int16_t target_offset
, next_offset
;
1557 compat_uint_t origsize
;
1561 ce
= (struct compat_arpt_entry __user
*)*dstptr
;
1562 if (copy_to_user(ce
, e
, sizeof(struct arpt_entry
)) != 0 ||
1563 copy_to_user(&ce
->counters
, &counters
[i
],
1564 sizeof(counters
[i
])) != 0)
1567 *dstptr
+= sizeof(struct compat_arpt_entry
);
1568 *size
-= sizeof(struct arpt_entry
) - sizeof(struct compat_arpt_entry
);
1570 target_offset
= e
->target_offset
- (origsize
- *size
);
1572 t
= arpt_get_target(e
);
1573 ret
= xt_compat_target_to_user(t
, dstptr
, size
);
1576 next_offset
= e
->next_offset
- (origsize
- *size
);
1577 if (put_user(target_offset
, &ce
->target_offset
) != 0 ||
1578 put_user(next_offset
, &ce
->next_offset
) != 0)
1583 static int compat_copy_entries_to_user(unsigned int total_size
,
1584 struct xt_table
*table
,
1585 void __user
*userptr
)
1587 struct xt_counters
*counters
;
1588 const struct xt_table_info
*private = table
->private;
1592 void *loc_cpu_entry
;
1594 struct arpt_entry
*iter
;
1596 counters
= alloc_counters(table
);
1597 if (IS_ERR(counters
))
1598 return PTR_ERR(counters
);
1600 /* choose the copy on our node/cpu */
1601 loc_cpu_entry
= private->entries
[raw_smp_processor_id()];
1604 xt_entry_foreach(iter
, loc_cpu_entry
, total_size
) {
1605 ret
= compat_copy_entry_to_user(iter
, &pos
,
1606 &size
, counters
, i
++);
1614 struct compat_arpt_get_entries
{
1615 char name
[XT_TABLE_MAXNAMELEN
];
1617 struct compat_arpt_entry entrytable
[0];
1620 static int compat_get_entries(struct net
*net
,
1621 struct compat_arpt_get_entries __user
*uptr
,
1625 struct compat_arpt_get_entries get
;
1628 if (*len
< sizeof(get
)) {
1629 duprintf("compat_get_entries: %u < %zu\n", *len
, sizeof(get
));
1632 if (copy_from_user(&get
, uptr
, sizeof(get
)) != 0)
1634 if (*len
!= sizeof(struct compat_arpt_get_entries
) + get
.size
) {
1635 duprintf("compat_get_entries: %u != %zu\n",
1636 *len
, sizeof(get
) + get
.size
);
1640 xt_compat_lock(NFPROTO_ARP
);
1641 t
= xt_find_table_lock(net
, NFPROTO_ARP
, get
.name
);
1642 if (t
&& !IS_ERR(t
)) {
1643 const struct xt_table_info
*private = t
->private;
1644 struct xt_table_info info
;
1646 duprintf("t->private->number = %u\n", private->number
);
1647 ret
= compat_table_info(private, &info
);
1648 if (!ret
&& get
.size
== info
.size
) {
1649 ret
= compat_copy_entries_to_user(private->size
,
1650 t
, uptr
->entrytable
);
1652 duprintf("compat_get_entries: I've got %u not %u!\n",
1653 private->size
, get
.size
);
1656 xt_compat_flush_offsets(NFPROTO_ARP
);
1660 ret
= t
? PTR_ERR(t
) : -ENOENT
;
1662 xt_compat_unlock(NFPROTO_ARP
);
1666 static int do_arpt_get_ctl(struct sock
*, int, void __user
*, int *);
1668 static int compat_do_arpt_get_ctl(struct sock
*sk
, int cmd
, void __user
*user
,
1673 if (!capable(CAP_NET_ADMIN
))
1677 case ARPT_SO_GET_INFO
:
1678 ret
= get_info(sock_net(sk
), user
, len
, 1);
1680 case ARPT_SO_GET_ENTRIES
:
1681 ret
= compat_get_entries(sock_net(sk
), user
, len
);
1684 ret
= do_arpt_get_ctl(sk
, cmd
, user
, len
);
1690 static int do_arpt_set_ctl(struct sock
*sk
, int cmd
, void __user
*user
, unsigned int len
)
1694 if (!capable(CAP_NET_ADMIN
))
1698 case ARPT_SO_SET_REPLACE
:
1699 ret
= do_replace(sock_net(sk
), user
, len
);
1702 case ARPT_SO_SET_ADD_COUNTERS
:
1703 ret
= do_add_counters(sock_net(sk
), user
, len
, 0);
1707 duprintf("do_arpt_set_ctl: unknown request %i\n", cmd
);
1714 static int do_arpt_get_ctl(struct sock
*sk
, int cmd
, void __user
*user
, int *len
)
1718 if (!capable(CAP_NET_ADMIN
))
1722 case ARPT_SO_GET_INFO
:
1723 ret
= get_info(sock_net(sk
), user
, len
, 0);
1726 case ARPT_SO_GET_ENTRIES
:
1727 ret
= get_entries(sock_net(sk
), user
, len
);
1730 case ARPT_SO_GET_REVISION_TARGET
: {
1731 struct xt_get_revision rev
;
1733 if (*len
!= sizeof(rev
)) {
1737 if (copy_from_user(&rev
, user
, sizeof(rev
)) != 0) {
1742 try_then_request_module(xt_find_revision(NFPROTO_ARP
, rev
.name
,
1743 rev
.revision
, 1, &ret
),
1744 "arpt_%s", rev
.name
);
1749 duprintf("do_arpt_get_ctl: unknown request %i\n", cmd
);
1756 struct xt_table
*arpt_register_table(struct net
*net
,
1757 const struct xt_table
*table
,
1758 const struct arpt_replace
*repl
)
1761 struct xt_table_info
*newinfo
;
1762 struct xt_table_info bootstrap
= {0};
1763 void *loc_cpu_entry
;
1764 struct xt_table
*new_table
;
1766 newinfo
= xt_alloc_table_info(repl
->size
);
1772 /* choose the copy on our node/cpu */
1773 loc_cpu_entry
= newinfo
->entries
[raw_smp_processor_id()];
1774 memcpy(loc_cpu_entry
, repl
->entries
, repl
->size
);
1776 ret
= translate_table(newinfo
, loc_cpu_entry
, repl
);
1777 duprintf("arpt_register_table: translate table gives %d\n", ret
);
1781 new_table
= xt_register_table(net
, table
, &bootstrap
, newinfo
);
1782 if (IS_ERR(new_table
)) {
1783 ret
= PTR_ERR(new_table
);
1789 xt_free_table_info(newinfo
);
1791 return ERR_PTR(ret
);
1794 void arpt_unregister_table(struct xt_table
*table
)
1796 struct xt_table_info
*private;
1797 void *loc_cpu_entry
;
1798 struct module
*table_owner
= table
->me
;
1799 struct arpt_entry
*iter
;
1801 private = xt_unregister_table(table
);
1803 /* Decrease module usage counts and free resources */
1804 loc_cpu_entry
= private->entries
[raw_smp_processor_id()];
1805 xt_entry_foreach(iter
, loc_cpu_entry
, private->size
)
1806 cleanup_entry(iter
);
1807 if (private->number
> private->initial_entries
)
1808 module_put(table_owner
);
1809 xt_free_table_info(private);
1812 /* The built-in targets: standard (NULL) and error. */
1813 static struct xt_target arpt_builtin_tg
[] __read_mostly
= {
1815 .name
= XT_STANDARD_TARGET
,
1816 .targetsize
= sizeof(int),
1817 .family
= NFPROTO_ARP
,
1818 #ifdef CONFIG_COMPAT
1819 .compatsize
= sizeof(compat_int_t
),
1820 .compat_from_user
= compat_standard_from_user
,
1821 .compat_to_user
= compat_standard_to_user
,
1825 .name
= XT_ERROR_TARGET
,
1826 .target
= arpt_error
,
1827 .targetsize
= XT_FUNCTION_MAXNAMELEN
,
1828 .family
= NFPROTO_ARP
,
1832 static struct nf_sockopt_ops arpt_sockopts
= {
1834 .set_optmin
= ARPT_BASE_CTL
,
1835 .set_optmax
= ARPT_SO_SET_MAX
+1,
1836 .set
= do_arpt_set_ctl
,
1837 #ifdef CONFIG_COMPAT
1838 .compat_set
= compat_do_arpt_set_ctl
,
1840 .get_optmin
= ARPT_BASE_CTL
,
1841 .get_optmax
= ARPT_SO_GET_MAX
+1,
1842 .get
= do_arpt_get_ctl
,
1843 #ifdef CONFIG_COMPAT
1844 .compat_get
= compat_do_arpt_get_ctl
,
1846 .owner
= THIS_MODULE
,
1849 static int __net_init
arp_tables_net_init(struct net
*net
)
1851 return xt_proto_init(net
, NFPROTO_ARP
);
1854 static void __net_exit
arp_tables_net_exit(struct net
*net
)
1856 xt_proto_fini(net
, NFPROTO_ARP
);
1859 static struct pernet_operations arp_tables_net_ops
= {
1860 .init
= arp_tables_net_init
,
1861 .exit
= arp_tables_net_exit
,
1864 static int __init
arp_tables_init(void)
1868 ret
= register_pernet_subsys(&arp_tables_net_ops
);
1872 /* Noone else will be downing sem now, so we won't sleep */
1873 ret
= xt_register_targets(arpt_builtin_tg
, ARRAY_SIZE(arpt_builtin_tg
));
1877 /* Register setsockopt */
1878 ret
= nf_register_sockopt(&arpt_sockopts
);
1882 printk(KERN_INFO
"arp_tables: (C) 2002 David S. Miller\n");
1886 xt_unregister_targets(arpt_builtin_tg
, ARRAY_SIZE(arpt_builtin_tg
));
1888 unregister_pernet_subsys(&arp_tables_net_ops
);
1893 static void __exit
arp_tables_fini(void)
1895 nf_unregister_sockopt(&arpt_sockopts
);
1896 xt_unregister_targets(arpt_builtin_tg
, ARRAY_SIZE(arpt_builtin_tg
));
1897 unregister_pernet_subsys(&arp_tables_net_ops
);
1900 EXPORT_SYMBOL(arpt_register_table
);
1901 EXPORT_SYMBOL(arpt_unregister_table
);
1902 EXPORT_SYMBOL(arpt_do_table
);
1904 module_init(arp_tables_init
);
1905 module_exit(arp_tables_fini
);