[NETFILTER]: x_tables: remove unused size argument to check/destroy functions
[safe/jmp/linux-2.6] / net / ipv4 / netfilter / arp_tables.c
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  *
10  */
11
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
23 #include <asm/uaccess.h>
24 #include <linux/mutex.h>
25
26 #include <linux/netfilter/x_tables.h>
27 #include <linux/netfilter_arp/arp_tables.h>
28
29 MODULE_LICENSE("GPL");
30 MODULE_AUTHOR("David S. Miller <davem@redhat.com>");
31 MODULE_DESCRIPTION("arptables core");
32
33 /*#define DEBUG_ARP_TABLES*/
34 /*#define DEBUG_ARP_TABLES_USER*/
35
36 #ifdef DEBUG_ARP_TABLES
37 #define dprintf(format, args...)  printk(format , ## args)
38 #else
39 #define dprintf(format, args...)
40 #endif
41
42 #ifdef DEBUG_ARP_TABLES_USER
43 #define duprintf(format, args...) printk(format , ## args)
44 #else
45 #define duprintf(format, args...)
46 #endif
47
48 #ifdef CONFIG_NETFILTER_DEBUG
49 #define ARP_NF_ASSERT(x)                                        \
50 do {                                                            \
51         if (!(x))                                               \
52                 printk("ARP_NF_ASSERT: %s:%s:%u\n",             \
53                        __FUNCTION__, __FILE__, __LINE__);       \
54 } while(0)
55 #else
56 #define ARP_NF_ASSERT(x)
57 #endif
58
59 #include <linux/netfilter_ipv4/listhelp.h>
60
61 static inline int arp_devaddr_compare(const struct arpt_devaddr_info *ap,
62                                       char *hdr_addr, int len)
63 {
64         int i, ret;
65
66         if (len > ARPT_DEV_ADDR_LEN_MAX)
67                 len = ARPT_DEV_ADDR_LEN_MAX;
68
69         ret = 0;
70         for (i = 0; i < len; i++)
71                 ret |= (hdr_addr[i] ^ ap->addr[i]) & ap->mask[i];
72
73         return (ret != 0);
74 }
75
76 /* Returns whether packet matches rule or not. */
77 static inline int arp_packet_match(const struct arphdr *arphdr,
78                                    struct net_device *dev,
79                                    const char *indev,
80                                    const char *outdev,
81                                    const struct arpt_arp *arpinfo)
82 {
83         char *arpptr = (char *)(arphdr + 1);
84         char *src_devaddr, *tgt_devaddr;
85         u32 src_ipaddr, tgt_ipaddr;
86         int i, ret;
87
88 #define FWINV(bool,invflg) ((bool) ^ !!(arpinfo->invflags & invflg))
89
90         if (FWINV((arphdr->ar_op & arpinfo->arpop_mask) != arpinfo->arpop,
91                   ARPT_INV_ARPOP)) {
92                 dprintf("ARP operation field mismatch.\n");
93                 dprintf("ar_op: %04x info->arpop: %04x info->arpop_mask: %04x\n",
94                         arphdr->ar_op, arpinfo->arpop, arpinfo->arpop_mask);
95                 return 0;
96         }
97
98         if (FWINV((arphdr->ar_hrd & arpinfo->arhrd_mask) != arpinfo->arhrd,
99                   ARPT_INV_ARPHRD)) {
100                 dprintf("ARP hardware address format mismatch.\n");
101                 dprintf("ar_hrd: %04x info->arhrd: %04x info->arhrd_mask: %04x\n",
102                         arphdr->ar_hrd, arpinfo->arhrd, arpinfo->arhrd_mask);
103                 return 0;
104         }
105
106         if (FWINV((arphdr->ar_pro & arpinfo->arpro_mask) != arpinfo->arpro,
107                   ARPT_INV_ARPPRO)) {
108                 dprintf("ARP protocol address format mismatch.\n");
109                 dprintf("ar_pro: %04x info->arpro: %04x info->arpro_mask: %04x\n",
110                         arphdr->ar_pro, arpinfo->arpro, arpinfo->arpro_mask);
111                 return 0;
112         }
113
114         if (FWINV((arphdr->ar_hln & arpinfo->arhln_mask) != arpinfo->arhln,
115                   ARPT_INV_ARPHLN)) {
116                 dprintf("ARP hardware address length mismatch.\n");
117                 dprintf("ar_hln: %02x info->arhln: %02x info->arhln_mask: %02x\n",
118                         arphdr->ar_hln, arpinfo->arhln, arpinfo->arhln_mask);
119                 return 0;
120         }
121
122         src_devaddr = arpptr;
123         arpptr += dev->addr_len;
124         memcpy(&src_ipaddr, arpptr, sizeof(u32));
125         arpptr += sizeof(u32);
126         tgt_devaddr = arpptr;
127         arpptr += dev->addr_len;
128         memcpy(&tgt_ipaddr, arpptr, sizeof(u32));
129
130         if (FWINV(arp_devaddr_compare(&arpinfo->src_devaddr, src_devaddr, dev->addr_len),
131                   ARPT_INV_SRCDEVADDR) ||
132             FWINV(arp_devaddr_compare(&arpinfo->tgt_devaddr, tgt_devaddr, dev->addr_len),
133                   ARPT_INV_TGTDEVADDR)) {
134                 dprintf("Source or target device address mismatch.\n");
135
136                 return 0;
137         }
138
139         if (FWINV((src_ipaddr & arpinfo->smsk.s_addr) != arpinfo->src.s_addr,
140                   ARPT_INV_SRCIP) ||
141             FWINV(((tgt_ipaddr & arpinfo->tmsk.s_addr) != arpinfo->tgt.s_addr),
142                   ARPT_INV_TGTIP)) {
143                 dprintf("Source or target IP address mismatch.\n");
144
145                 dprintf("SRC: %u.%u.%u.%u. Mask: %u.%u.%u.%u. Target: %u.%u.%u.%u.%s\n",
146                         NIPQUAD(src_ipaddr),
147                         NIPQUAD(arpinfo->smsk.s_addr),
148                         NIPQUAD(arpinfo->src.s_addr),
149                         arpinfo->invflags & ARPT_INV_SRCIP ? " (INV)" : "");
150                 dprintf("TGT: %u.%u.%u.%u Mask: %u.%u.%u.%u Target: %u.%u.%u.%u.%s\n",
151                         NIPQUAD(tgt_ipaddr),
152                         NIPQUAD(arpinfo->tmsk.s_addr),
153                         NIPQUAD(arpinfo->tgt.s_addr),
154                         arpinfo->invflags & ARPT_INV_TGTIP ? " (INV)" : "");
155                 return 0;
156         }
157
158         /* Look for ifname matches.  */
159         for (i = 0, ret = 0; i < IFNAMSIZ; i++) {
160                 ret |= (indev[i] ^ arpinfo->iniface[i])
161                         & arpinfo->iniface_mask[i];
162         }
163
164         if (FWINV(ret != 0, ARPT_INV_VIA_IN)) {
165                 dprintf("VIA in mismatch (%s vs %s).%s\n",
166                         indev, arpinfo->iniface,
167                         arpinfo->invflags&ARPT_INV_VIA_IN ?" (INV)":"");
168                 return 0;
169         }
170
171         for (i = 0, ret = 0; i < IFNAMSIZ/sizeof(unsigned long); i++) {
172                 unsigned long odev;
173                 memcpy(&odev, outdev + i*sizeof(unsigned long),
174                        sizeof(unsigned long));
175                 ret |= (odev
176                         ^ ((const unsigned long *)arpinfo->outiface)[i])
177                         & ((const unsigned long *)arpinfo->outiface_mask)[i];
178         }
179
180         if (FWINV(ret != 0, ARPT_INV_VIA_OUT)) {
181                 dprintf("VIA out mismatch (%s vs %s).%s\n",
182                         outdev, arpinfo->outiface,
183                         arpinfo->invflags&ARPT_INV_VIA_OUT ?" (INV)":"");
184                 return 0;
185         }
186
187         return 1;
188 }
189
190 static inline int arp_checkentry(const struct arpt_arp *arp)
191 {
192         if (arp->flags & ~ARPT_F_MASK) {
193                 duprintf("Unknown flag bits set: %08X\n",
194                          arp->flags & ~ARPT_F_MASK);
195                 return 0;
196         }
197         if (arp->invflags & ~ARPT_INV_MASK) {
198                 duprintf("Unknown invflag bits set: %08X\n",
199                          arp->invflags & ~ARPT_INV_MASK);
200                 return 0;
201         }
202
203         return 1;
204 }
205
206 static unsigned int arpt_error(struct sk_buff **pskb,
207                                const struct net_device *in,
208                                const struct net_device *out,
209                                unsigned int hooknum,
210                                const struct xt_target *target,
211                                const void *targinfo)
212 {
213         if (net_ratelimit())
214                 printk("arp_tables: error: '%s'\n", (char *)targinfo);
215
216         return NF_DROP;
217 }
218
219 static inline struct arpt_entry *get_entry(void *base, unsigned int offset)
220 {
221         return (struct arpt_entry *)(base + offset);
222 }
223
224 unsigned int arpt_do_table(struct sk_buff **pskb,
225                            unsigned int hook,
226                            const struct net_device *in,
227                            const struct net_device *out,
228                            struct arpt_table *table)
229 {
230         static const char nulldevname[IFNAMSIZ];
231         unsigned int verdict = NF_DROP;
232         struct arphdr *arp;
233         int hotdrop = 0;
234         struct arpt_entry *e, *back;
235         const char *indev, *outdev;
236         void *table_base;
237         struct xt_table_info *private;
238
239         /* ARP header, plus 2 device addresses, plus 2 IP addresses.  */
240         if (!pskb_may_pull((*pskb), (sizeof(struct arphdr) +
241                                      (2 * (*pskb)->dev->addr_len) +
242                                      (2 * sizeof(u32)))))
243                 return NF_DROP;
244
245         indev = in ? in->name : nulldevname;
246         outdev = out ? out->name : nulldevname;
247
248         read_lock_bh(&table->lock);
249         private = table->private;
250         table_base = (void *)private->entries[smp_processor_id()];
251         e = get_entry(table_base, private->hook_entry[hook]);
252         back = get_entry(table_base, private->underflow[hook]);
253
254         arp = (*pskb)->nh.arph;
255         do {
256                 if (arp_packet_match(arp, (*pskb)->dev, indev, outdev, &e->arp)) {
257                         struct arpt_entry_target *t;
258                         int hdr_len;
259
260                         hdr_len = sizeof(*arp) + (2 * sizeof(struct in_addr)) +
261                                 (2 * (*pskb)->dev->addr_len);
262                         ADD_COUNTER(e->counters, hdr_len, 1);
263
264                         t = arpt_get_target(e);
265
266                         /* Standard target? */
267                         if (!t->u.kernel.target->target) {
268                                 int v;
269
270                                 v = ((struct arpt_standard_target *)t)->verdict;
271                                 if (v < 0) {
272                                         /* Pop from stack? */
273                                         if (v != ARPT_RETURN) {
274                                                 verdict = (unsigned)(-v) - 1;
275                                                 break;
276                                         }
277                                         e = back;
278                                         back = get_entry(table_base,
279                                                          back->comefrom);
280                                         continue;
281                                 }
282                                 if (table_base + v
283                                     != (void *)e + e->next_offset) {
284                                         /* Save old back ptr in next entry */
285                                         struct arpt_entry *next
286                                                 = (void *)e + e->next_offset;
287                                         next->comefrom =
288                                                 (void *)back - table_base;
289
290                                         /* set back pointer to next entry */
291                                         back = next;
292                                 }
293
294                                 e = get_entry(table_base, v);
295                         } else {
296                                 /* Targets which reenter must return
297                                  * abs. verdicts
298                                  */
299                                 verdict = t->u.kernel.target->target(pskb,
300                                                                      in, out,
301                                                                      hook,
302                                                                      t->u.kernel.target,
303                                                                      t->data);
304
305                                 /* Target might have changed stuff. */
306                                 arp = (*pskb)->nh.arph;
307
308                                 if (verdict == ARPT_CONTINUE)
309                                         e = (void *)e + e->next_offset;
310                                 else
311                                         /* Verdict */
312                                         break;
313                         }
314                 } else {
315                         e = (void *)e + e->next_offset;
316                 }
317         } while (!hotdrop);
318         read_unlock_bh(&table->lock);
319
320         if (hotdrop)
321                 return NF_DROP;
322         else
323                 return verdict;
324 }
325
326 /* All zeroes == unconditional rule. */
327 static inline int unconditional(const struct arpt_arp *arp)
328 {
329         unsigned int i;
330
331         for (i = 0; i < sizeof(*arp)/sizeof(__u32); i++)
332                 if (((__u32 *)arp)[i])
333                         return 0;
334
335         return 1;
336 }
337
338 /* Figures out from what hook each rule can be called: returns 0 if
339  * there are loops.  Puts hook bitmask in comefrom.
340  */
341 static int mark_source_chains(struct xt_table_info *newinfo,
342                               unsigned int valid_hooks, void *entry0)
343 {
344         unsigned int hook;
345
346         /* No recursion; use packet counter to save back ptrs (reset
347          * to 0 as we leave), and comefrom to save source hook bitmask.
348          */
349         for (hook = 0; hook < NF_ARP_NUMHOOKS; hook++) {
350                 unsigned int pos = newinfo->hook_entry[hook];
351                 struct arpt_entry *e
352                         = (struct arpt_entry *)(entry0 + pos);
353
354                 if (!(valid_hooks & (1 << hook)))
355                         continue;
356
357                 /* Set initial back pointer. */
358                 e->counters.pcnt = pos;
359
360                 for (;;) {
361                         struct arpt_standard_target *t
362                                 = (void *)arpt_get_target(e);
363
364                         if (e->comefrom & (1 << NF_ARP_NUMHOOKS)) {
365                                 printk("arptables: loop hook %u pos %u %08X.\n",
366                                        hook, pos, e->comefrom);
367                                 return 0;
368                         }
369                         e->comefrom
370                                 |= ((1 << hook) | (1 << NF_ARP_NUMHOOKS));
371
372                         /* Unconditional return/END. */
373                         if (e->target_offset == sizeof(struct arpt_entry)
374                             && (strcmp(t->target.u.user.name,
375                                        ARPT_STANDARD_TARGET) == 0)
376                             && t->verdict < 0
377                             && unconditional(&e->arp)) {
378                                 unsigned int oldpos, size;
379
380                                 /* Return: backtrack through the last
381                                  * big jump.
382                                  */
383                                 do {
384                                         e->comefrom ^= (1<<NF_ARP_NUMHOOKS);
385                                         oldpos = pos;
386                                         pos = e->counters.pcnt;
387                                         e->counters.pcnt = 0;
388
389                                         /* We're at the start. */
390                                         if (pos == oldpos)
391                                                 goto next;
392
393                                         e = (struct arpt_entry *)
394                                                 (entry0 + pos);
395                                 } while (oldpos == pos + e->next_offset);
396
397                                 /* Move along one */
398                                 size = e->next_offset;
399                                 e = (struct arpt_entry *)
400                                         (entry0 + pos + size);
401                                 e->counters.pcnt = pos;
402                                 pos += size;
403                         } else {
404                                 int newpos = t->verdict;
405
406                                 if (strcmp(t->target.u.user.name,
407                                            ARPT_STANDARD_TARGET) == 0
408                                     && newpos >= 0) {
409                                         /* This a jump; chase it. */
410                                         duprintf("Jump rule %u -> %u\n",
411                                                  pos, newpos);
412                                 } else {
413                                         /* ... this is a fallthru */
414                                         newpos = pos + e->next_offset;
415                                 }
416                                 e = (struct arpt_entry *)
417                                         (entry0 + newpos);
418                                 e->counters.pcnt = pos;
419                                 pos = newpos;
420                         }
421                 }
422                 next:
423                 duprintf("Finished chain %u\n", hook);
424         }
425         return 1;
426 }
427
428 static inline int standard_check(const struct arpt_entry_target *t,
429                                  unsigned int max_offset)
430 {
431         struct arpt_standard_target *targ = (void *)t;
432
433         /* Check standard info. */
434         if (t->u.target_size
435             != ARPT_ALIGN(sizeof(struct arpt_standard_target))) {
436                 duprintf("arpt_standard_check: target size %u != %Zu\n",
437                          t->u.target_size,
438                          ARPT_ALIGN(sizeof(struct arpt_standard_target)));
439                 return 0;
440         }
441
442         if (targ->verdict >= 0
443             && targ->verdict > max_offset - sizeof(struct arpt_entry)) {
444                 duprintf("arpt_standard_check: bad verdict (%i)\n",
445                          targ->verdict);
446                 return 0;
447         }
448
449         if (targ->verdict < -NF_MAX_VERDICT - 1) {
450                 duprintf("arpt_standard_check: bad negative verdict (%i)\n",
451                          targ->verdict);
452                 return 0;
453         }
454         return 1;
455 }
456
457 static struct arpt_target arpt_standard_target;
458
459 static inline int check_entry(struct arpt_entry *e, const char *name, unsigned int size,
460                               unsigned int *i)
461 {
462         struct arpt_entry_target *t;
463         struct arpt_target *target;
464         int ret;
465
466         if (!arp_checkentry(&e->arp)) {
467                 duprintf("arp_tables: arp check failed %p %s.\n", e, name);
468                 return -EINVAL;
469         }
470
471         t = arpt_get_target(e);
472         target = try_then_request_module(xt_find_target(NF_ARP, t->u.user.name,
473                                                         t->u.user.revision),
474                                          "arpt_%s", t->u.user.name);
475         if (IS_ERR(target) || !target) {
476                 duprintf("check_entry: `%s' not found\n", t->u.user.name);
477                 ret = target ? PTR_ERR(target) : -ENOENT;
478                 goto out;
479         }
480         t->u.kernel.target = target;
481
482         ret = xt_check_target(target, NF_ARP, t->u.target_size - sizeof(*t),
483                               name, e->comefrom, 0, 0);
484         if (ret)
485                 goto err;
486
487         if (t->u.kernel.target == &arpt_standard_target) {
488                 if (!standard_check(t, size)) {
489                         ret = -EINVAL;
490                         goto out;
491                 }
492         } else if (t->u.kernel.target->checkentry
493                    && !t->u.kernel.target->checkentry(name, e, target, t->data,
494                                                       e->comefrom)) {
495                 duprintf("arp_tables: check failed for `%s'.\n",
496                          t->u.kernel.target->name);
497                 ret = -EINVAL;
498                 goto err;
499         }
500
501         (*i)++;
502         return 0;
503 err:
504         module_put(t->u.kernel.target->me);
505 out:
506         return ret;
507 }
508
509 static inline int check_entry_size_and_hooks(struct arpt_entry *e,
510                                              struct xt_table_info *newinfo,
511                                              unsigned char *base,
512                                              unsigned char *limit,
513                                              const unsigned int *hook_entries,
514                                              const unsigned int *underflows,
515                                              unsigned int *i)
516 {
517         unsigned int h;
518
519         if ((unsigned long)e % __alignof__(struct arpt_entry) != 0
520             || (unsigned char *)e + sizeof(struct arpt_entry) >= limit) {
521                 duprintf("Bad offset %p\n", e);
522                 return -EINVAL;
523         }
524
525         if (e->next_offset
526             < sizeof(struct arpt_entry) + sizeof(struct arpt_entry_target)) {
527                 duprintf("checking: element %p size %u\n",
528                          e, e->next_offset);
529                 return -EINVAL;
530         }
531
532         /* Check hooks & underflows */
533         for (h = 0; h < NF_ARP_NUMHOOKS; h++) {
534                 if ((unsigned char *)e - base == hook_entries[h])
535                         newinfo->hook_entry[h] = hook_entries[h];
536                 if ((unsigned char *)e - base == underflows[h])
537                         newinfo->underflow[h] = underflows[h];
538         }
539
540         /* FIXME: underflows must be unconditional, standard verdicts
541            < 0 (not ARPT_RETURN). --RR */
542
543         /* Clear counters and comefrom */
544         e->counters = ((struct xt_counters) { 0, 0 });
545         e->comefrom = 0;
546
547         (*i)++;
548         return 0;
549 }
550
551 static inline int cleanup_entry(struct arpt_entry *e, unsigned int *i)
552 {
553         struct arpt_entry_target *t;
554
555         if (i && (*i)-- == 0)
556                 return 1;
557
558         t = arpt_get_target(e);
559         if (t->u.kernel.target->destroy)
560                 t->u.kernel.target->destroy(t->u.kernel.target, t->data);
561         module_put(t->u.kernel.target->me);
562         return 0;
563 }
564
565 /* Checks and translates the user-supplied table segment (held in
566  * newinfo).
567  */
568 static int translate_table(const char *name,
569                            unsigned int valid_hooks,
570                            struct xt_table_info *newinfo,
571                            void *entry0,
572                            unsigned int size,
573                            unsigned int number,
574                            const unsigned int *hook_entries,
575                            const unsigned int *underflows)
576 {
577         unsigned int i;
578         int ret;
579
580         newinfo->size = size;
581         newinfo->number = number;
582
583         /* Init all hooks to impossible value. */
584         for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
585                 newinfo->hook_entry[i] = 0xFFFFFFFF;
586                 newinfo->underflow[i] = 0xFFFFFFFF;
587         }
588
589         duprintf("translate_table: size %u\n", newinfo->size);
590         i = 0;
591
592         /* Walk through entries, checking offsets. */
593         ret = ARPT_ENTRY_ITERATE(entry0, newinfo->size,
594                                  check_entry_size_and_hooks,
595                                  newinfo,
596                                  entry0,
597                                  entry0 + size,
598                                  hook_entries, underflows, &i);
599         duprintf("translate_table: ARPT_ENTRY_ITERATE gives %d\n", ret);
600         if (ret != 0)
601                 return ret;
602
603         if (i != number) {
604                 duprintf("translate_table: %u not %u entries\n",
605                          i, number);
606                 return -EINVAL;
607         }
608
609         /* Check hooks all assigned */
610         for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
611                 /* Only hooks which are valid */
612                 if (!(valid_hooks & (1 << i)))
613                         continue;
614                 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
615                         duprintf("Invalid hook entry %u %u\n",
616                                  i, hook_entries[i]);
617                         return -EINVAL;
618                 }
619                 if (newinfo->underflow[i] == 0xFFFFFFFF) {
620                         duprintf("Invalid underflow %u %u\n",
621                                  i, underflows[i]);
622                         return -EINVAL;
623                 }
624         }
625
626         if (!mark_source_chains(newinfo, valid_hooks, entry0)) {
627                 duprintf("Looping hook\n");
628                 return -ELOOP;
629         }
630
631         /* Finally, each sanity check must pass */
632         i = 0;
633         ret = ARPT_ENTRY_ITERATE(entry0, newinfo->size,
634                                  check_entry, name, size, &i);
635
636         if (ret != 0) {
637                 ARPT_ENTRY_ITERATE(entry0, newinfo->size,
638                                    cleanup_entry, &i);
639                 return ret;
640         }
641
642         /* And one copy for every other CPU */
643         for_each_possible_cpu(i) {
644                 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
645                         memcpy(newinfo->entries[i], entry0, newinfo->size);
646         }
647
648         return ret;
649 }
650
651 /* Gets counters. */
652 static inline int add_entry_to_counter(const struct arpt_entry *e,
653                                        struct xt_counters total[],
654                                        unsigned int *i)
655 {
656         ADD_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
657
658         (*i)++;
659         return 0;
660 }
661
662 static inline int set_entry_to_counter(const struct arpt_entry *e,
663                                        struct xt_counters total[],
664                                        unsigned int *i)
665 {
666         SET_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
667
668         (*i)++;
669         return 0;
670 }
671
672 static void get_counters(const struct xt_table_info *t,
673                          struct xt_counters counters[])
674 {
675         unsigned int cpu;
676         unsigned int i;
677         unsigned int curcpu;
678
679         /* Instead of clearing (by a previous call to memset())
680          * the counters and using adds, we set the counters
681          * with data used by 'current' CPU
682          * We dont care about preemption here.
683          */
684         curcpu = raw_smp_processor_id();
685
686         i = 0;
687         ARPT_ENTRY_ITERATE(t->entries[curcpu],
688                            t->size,
689                            set_entry_to_counter,
690                            counters,
691                            &i);
692
693         for_each_possible_cpu(cpu) {
694                 if (cpu == curcpu)
695                         continue;
696                 i = 0;
697                 ARPT_ENTRY_ITERATE(t->entries[cpu],
698                                    t->size,
699                                    add_entry_to_counter,
700                                    counters,
701                                    &i);
702         }
703 }
704
705 static int copy_entries_to_user(unsigned int total_size,
706                                 struct arpt_table *table,
707                                 void __user *userptr)
708 {
709         unsigned int off, num, countersize;
710         struct arpt_entry *e;
711         struct xt_counters *counters;
712         struct xt_table_info *private = table->private;
713         int ret = 0;
714         void *loc_cpu_entry;
715
716         /* We need atomic snapshot of counters: rest doesn't change
717          * (other than comefrom, which userspace doesn't care
718          * about).
719          */
720         countersize = sizeof(struct xt_counters) * private->number;
721         counters = vmalloc_node(countersize, numa_node_id());
722
723         if (counters == NULL)
724                 return -ENOMEM;
725
726         /* First, sum counters... */
727         write_lock_bh(&table->lock);
728         get_counters(private, counters);
729         write_unlock_bh(&table->lock);
730
731         loc_cpu_entry = private->entries[raw_smp_processor_id()];
732         /* ... then copy entire thing ... */
733         if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
734                 ret = -EFAULT;
735                 goto free_counters;
736         }
737
738         /* FIXME: use iterator macros --RR */
739         /* ... then go back and fix counters and names */
740         for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
741                 struct arpt_entry_target *t;
742
743                 e = (struct arpt_entry *)(loc_cpu_entry + off);
744                 if (copy_to_user(userptr + off
745                                  + offsetof(struct arpt_entry, counters),
746                                  &counters[num],
747                                  sizeof(counters[num])) != 0) {
748                         ret = -EFAULT;
749                         goto free_counters;
750                 }
751
752                 t = arpt_get_target(e);
753                 if (copy_to_user(userptr + off + e->target_offset
754                                  + offsetof(struct arpt_entry_target,
755                                             u.user.name),
756                                  t->u.kernel.target->name,
757                                  strlen(t->u.kernel.target->name)+1) != 0) {
758                         ret = -EFAULT;
759                         goto free_counters;
760                 }
761         }
762
763  free_counters:
764         vfree(counters);
765         return ret;
766 }
767
768 static int get_entries(const struct arpt_get_entries *entries,
769                        struct arpt_get_entries __user *uptr)
770 {
771         int ret;
772         struct arpt_table *t;
773
774         t = xt_find_table_lock(NF_ARP, entries->name);
775         if (t && !IS_ERR(t)) {
776                 struct xt_table_info *private = t->private;
777                 duprintf("t->private->number = %u\n",
778                          private->number);
779                 if (entries->size == private->size)
780                         ret = copy_entries_to_user(private->size,
781                                                    t, uptr->entrytable);
782                 else {
783                         duprintf("get_entries: I've got %u not %u!\n",
784                                  private->size, entries->size);
785                         ret = -EINVAL;
786                 }
787                 module_put(t->me);
788                 xt_table_unlock(t);
789         } else
790                 ret = t ? PTR_ERR(t) : -ENOENT;
791
792         return ret;
793 }
794
795 static int do_replace(void __user *user, unsigned int len)
796 {
797         int ret;
798         struct arpt_replace tmp;
799         struct arpt_table *t;
800         struct xt_table_info *newinfo, *oldinfo;
801         struct xt_counters *counters;
802         void *loc_cpu_entry, *loc_cpu_old_entry;
803
804         if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
805                 return -EFAULT;
806
807         /* Hack: Causes ipchains to give correct error msg --RR */
808         if (len != sizeof(tmp) + tmp.size)
809                 return -ENOPROTOOPT;
810
811         /* overflow check */
812         if (tmp.size >= (INT_MAX - sizeof(struct xt_table_info)) / NR_CPUS -
813                         SMP_CACHE_BYTES)
814                 return -ENOMEM;
815         if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
816                 return -ENOMEM;
817
818         newinfo = xt_alloc_table_info(tmp.size);
819         if (!newinfo)
820                 return -ENOMEM;
821
822         /* choose the copy that is on our node/cpu */
823         loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
824         if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
825                            tmp.size) != 0) {
826                 ret = -EFAULT;
827                 goto free_newinfo;
828         }
829
830         counters = vmalloc(tmp.num_counters * sizeof(struct xt_counters));
831         if (!counters) {
832                 ret = -ENOMEM;
833                 goto free_newinfo;
834         }
835
836         ret = translate_table(tmp.name, tmp.valid_hooks,
837                               newinfo, loc_cpu_entry, tmp.size, tmp.num_entries,
838                               tmp.hook_entry, tmp.underflow);
839         if (ret != 0)
840                 goto free_newinfo_counters;
841
842         duprintf("arp_tables: Translated table\n");
843
844         t = try_then_request_module(xt_find_table_lock(NF_ARP, tmp.name),
845                                     "arptable_%s", tmp.name);
846         if (!t || IS_ERR(t)) {
847                 ret = t ? PTR_ERR(t) : -ENOENT;
848                 goto free_newinfo_counters_untrans;
849         }
850
851         /* You lied! */
852         if (tmp.valid_hooks != t->valid_hooks) {
853                 duprintf("Valid hook crap: %08X vs %08X\n",
854                          tmp.valid_hooks, t->valid_hooks);
855                 ret = -EINVAL;
856                 goto put_module;
857         }
858
859         oldinfo = xt_replace_table(t, tmp.num_counters, newinfo, &ret);
860         if (!oldinfo)
861                 goto put_module;
862
863         /* Update module usage count based on number of rules */
864         duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
865                 oldinfo->number, oldinfo->initial_entries, newinfo->number);
866         if ((oldinfo->number > oldinfo->initial_entries) || 
867             (newinfo->number <= oldinfo->initial_entries)) 
868                 module_put(t->me);
869         if ((oldinfo->number > oldinfo->initial_entries) &&
870             (newinfo->number <= oldinfo->initial_entries))
871                 module_put(t->me);
872
873         /* Get the old counters. */
874         get_counters(oldinfo, counters);
875         /* Decrease module usage counts and free resource */
876         loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
877         ARPT_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry,NULL);
878
879         xt_free_table_info(oldinfo);
880         if (copy_to_user(tmp.counters, counters,
881                          sizeof(struct xt_counters) * tmp.num_counters) != 0)
882                 ret = -EFAULT;
883         vfree(counters);
884         xt_table_unlock(t);
885         return ret;
886
887  put_module:
888         module_put(t->me);
889         xt_table_unlock(t);
890  free_newinfo_counters_untrans:
891         ARPT_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
892  free_newinfo_counters:
893         vfree(counters);
894  free_newinfo:
895         xt_free_table_info(newinfo);
896         return ret;
897 }
898
899 /* We're lazy, and add to the first CPU; overflow works its fey magic
900  * and everything is OK.
901  */
902 static inline int add_counter_to_entry(struct arpt_entry *e,
903                                        const struct xt_counters addme[],
904                                        unsigned int *i)
905 {
906
907         ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt);
908
909         (*i)++;
910         return 0;
911 }
912
913 static int do_add_counters(void __user *user, unsigned int len)
914 {
915         unsigned int i;
916         struct xt_counters_info tmp, *paddc;
917         struct arpt_table *t;
918         struct xt_table_info *private;
919         int ret = 0;
920         void *loc_cpu_entry;
921
922         if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
923                 return -EFAULT;
924
925         if (len != sizeof(tmp) + tmp.num_counters*sizeof(struct xt_counters))
926                 return -EINVAL;
927
928         paddc = vmalloc(len);
929         if (!paddc)
930                 return -ENOMEM;
931
932         if (copy_from_user(paddc, user, len) != 0) {
933                 ret = -EFAULT;
934                 goto free;
935         }
936
937         t = xt_find_table_lock(NF_ARP, tmp.name);
938         if (!t || IS_ERR(t)) {
939                 ret = t ? PTR_ERR(t) : -ENOENT;
940                 goto free;
941         }
942
943         write_lock_bh(&t->lock);
944         private = t->private;
945         if (private->number != tmp.num_counters) {
946                 ret = -EINVAL;
947                 goto unlock_up_free;
948         }
949
950         i = 0;
951         /* Choose the copy that is on our node */
952         loc_cpu_entry = private->entries[smp_processor_id()];
953         ARPT_ENTRY_ITERATE(loc_cpu_entry,
954                            private->size,
955                            add_counter_to_entry,
956                            paddc->counters,
957                            &i);
958  unlock_up_free:
959         write_unlock_bh(&t->lock);
960         xt_table_unlock(t);
961         module_put(t->me);
962  free:
963         vfree(paddc);
964
965         return ret;
966 }
967
968 static int do_arpt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
969 {
970         int ret;
971
972         if (!capable(CAP_NET_ADMIN))
973                 return -EPERM;
974
975         switch (cmd) {
976         case ARPT_SO_SET_REPLACE:
977                 ret = do_replace(user, len);
978                 break;
979
980         case ARPT_SO_SET_ADD_COUNTERS:
981                 ret = do_add_counters(user, len);
982                 break;
983
984         default:
985                 duprintf("do_arpt_set_ctl:  unknown request %i\n", cmd);
986                 ret = -EINVAL;
987         }
988
989         return ret;
990 }
991
992 static int do_arpt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
993 {
994         int ret;
995
996         if (!capable(CAP_NET_ADMIN))
997                 return -EPERM;
998
999         switch (cmd) {
1000         case ARPT_SO_GET_INFO: {
1001                 char name[ARPT_TABLE_MAXNAMELEN];
1002                 struct arpt_table *t;
1003
1004                 if (*len != sizeof(struct arpt_getinfo)) {
1005                         duprintf("length %u != %Zu\n", *len,
1006                                  sizeof(struct arpt_getinfo));
1007                         ret = -EINVAL;
1008                         break;
1009                 }
1010
1011                 if (copy_from_user(name, user, sizeof(name)) != 0) {
1012                         ret = -EFAULT;
1013                         break;
1014                 }
1015                 name[ARPT_TABLE_MAXNAMELEN-1] = '\0';
1016
1017                 t = try_then_request_module(xt_find_table_lock(NF_ARP, name),
1018                                             "arptable_%s", name);
1019                 if (t && !IS_ERR(t)) {
1020                         struct arpt_getinfo info;
1021                         struct xt_table_info *private = t->private;
1022
1023                         info.valid_hooks = t->valid_hooks;
1024                         memcpy(info.hook_entry, private->hook_entry,
1025                                sizeof(info.hook_entry));
1026                         memcpy(info.underflow, private->underflow,
1027                                sizeof(info.underflow));
1028                         info.num_entries = private->number;
1029                         info.size = private->size;
1030                         strcpy(info.name, name);
1031
1032                         if (copy_to_user(user, &info, *len) != 0)
1033                                 ret = -EFAULT;
1034                         else
1035                                 ret = 0;
1036                         xt_table_unlock(t);
1037                         module_put(t->me);
1038                 } else
1039                         ret = t ? PTR_ERR(t) : -ENOENT;
1040         }
1041         break;
1042
1043         case ARPT_SO_GET_ENTRIES: {
1044                 struct arpt_get_entries get;
1045
1046                 if (*len < sizeof(get)) {
1047                         duprintf("get_entries: %u < %Zu\n", *len, sizeof(get));
1048                         ret = -EINVAL;
1049                 } else if (copy_from_user(&get, user, sizeof(get)) != 0) {
1050                         ret = -EFAULT;
1051                 } else if (*len != sizeof(struct arpt_get_entries) + get.size) {
1052                         duprintf("get_entries: %u != %Zu\n", *len,
1053                                  sizeof(struct arpt_get_entries) + get.size);
1054                         ret = -EINVAL;
1055                 } else
1056                         ret = get_entries(&get, user);
1057                 break;
1058         }
1059
1060         case ARPT_SO_GET_REVISION_TARGET: {
1061                 struct xt_get_revision rev;
1062
1063                 if (*len != sizeof(rev)) {
1064                         ret = -EINVAL;
1065                         break;
1066                 }
1067                 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
1068                         ret = -EFAULT;
1069                         break;
1070                 }
1071
1072                 try_then_request_module(xt_find_revision(NF_ARP, rev.name,
1073                                                          rev.revision, 1, &ret),
1074                                         "arpt_%s", rev.name);
1075                 break;
1076         }
1077
1078         default:
1079                 duprintf("do_arpt_get_ctl: unknown request %i\n", cmd);
1080                 ret = -EINVAL;
1081         }
1082
1083         return ret;
1084 }
1085
1086 int arpt_register_table(struct arpt_table *table,
1087                         const struct arpt_replace *repl)
1088 {
1089         int ret;
1090         struct xt_table_info *newinfo;
1091         static struct xt_table_info bootstrap
1092                 = { 0, 0, 0, { 0 }, { 0 }, { } };
1093         void *loc_cpu_entry;
1094
1095         newinfo = xt_alloc_table_info(repl->size);
1096         if (!newinfo) {
1097                 ret = -ENOMEM;
1098                 return ret;
1099         }
1100
1101         /* choose the copy on our node/cpu */
1102         loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1103         memcpy(loc_cpu_entry, repl->entries, repl->size);
1104
1105         ret = translate_table(table->name, table->valid_hooks,
1106                               newinfo, loc_cpu_entry, repl->size,
1107                               repl->num_entries,
1108                               repl->hook_entry,
1109                               repl->underflow);
1110
1111         duprintf("arpt_register_table: translate table gives %d\n", ret);
1112         if (ret != 0) {
1113                 xt_free_table_info(newinfo);
1114                 return ret;
1115         }
1116
1117         ret = xt_register_table(table, &bootstrap, newinfo);
1118         if (ret != 0) {
1119                 xt_free_table_info(newinfo);
1120                 return ret;
1121         }
1122
1123         return 0;
1124 }
1125
1126 void arpt_unregister_table(struct arpt_table *table)
1127 {
1128         struct xt_table_info *private;
1129         void *loc_cpu_entry;
1130
1131         private = xt_unregister_table(table);
1132
1133         /* Decrease module usage counts and free resources */
1134         loc_cpu_entry = private->entries[raw_smp_processor_id()];
1135         ARPT_ENTRY_ITERATE(loc_cpu_entry, private->size,
1136                            cleanup_entry, NULL);
1137         xt_free_table_info(private);
1138 }
1139
1140 /* The built-in targets: standard (NULL) and error. */
1141 static struct arpt_target arpt_standard_target = {
1142         .name           = ARPT_STANDARD_TARGET,
1143         .targetsize     = sizeof(int),
1144         .family         = NF_ARP,
1145 };
1146
1147 static struct arpt_target arpt_error_target = {
1148         .name           = ARPT_ERROR_TARGET,
1149         .target         = arpt_error,
1150         .targetsize     = ARPT_FUNCTION_MAXNAMELEN,
1151         .family         = NF_ARP,
1152 };
1153
1154 static struct nf_sockopt_ops arpt_sockopts = {
1155         .pf             = PF_INET,
1156         .set_optmin     = ARPT_BASE_CTL,
1157         .set_optmax     = ARPT_SO_SET_MAX+1,
1158         .set            = do_arpt_set_ctl,
1159         .get_optmin     = ARPT_BASE_CTL,
1160         .get_optmax     = ARPT_SO_GET_MAX+1,
1161         .get            = do_arpt_get_ctl,
1162 };
1163
1164 static int __init arp_tables_init(void)
1165 {
1166         int ret;
1167
1168         ret = xt_proto_init(NF_ARP);
1169         if (ret < 0)
1170                 goto err1;
1171
1172         /* Noone else will be downing sem now, so we won't sleep */
1173         ret = xt_register_target(&arpt_standard_target);
1174         if (ret < 0)
1175                 goto err2;
1176         ret = xt_register_target(&arpt_error_target);
1177         if (ret < 0)
1178                 goto err3;
1179
1180         /* Register setsockopt */
1181         ret = nf_register_sockopt(&arpt_sockopts);
1182         if (ret < 0)
1183                 goto err4;
1184
1185         printk("arp_tables: (C) 2002 David S. Miller\n");
1186         return 0;
1187
1188 err4:
1189         xt_unregister_target(&arpt_error_target);
1190 err3:
1191         xt_unregister_target(&arpt_standard_target);
1192 err2:
1193         xt_proto_fini(NF_ARP);
1194 err1:
1195         return ret;
1196 }
1197
1198 static void __exit arp_tables_fini(void)
1199 {
1200         nf_unregister_sockopt(&arpt_sockopts);
1201         xt_proto_fini(NF_ARP);
1202 }
1203
1204 EXPORT_SYMBOL(arpt_register_table);
1205 EXPORT_SYMBOL(arpt_unregister_table);
1206 EXPORT_SYMBOL(arpt_do_table);
1207
1208 module_init(arp_tables_init);
1209 module_exit(arp_tables_fini);