netfilter: xtables: do centralized checkentry call (1/2)
[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 #include <linux/mutex.h>
23 #include <linux/err.h>
24 #include <net/compat.h>
25 #include <net/sock.h>
26 #include <asm/uaccess.h>
27
28 #include <linux/netfilter/x_tables.h>
29 #include <linux/netfilter_arp/arp_tables.h>
30
31 MODULE_LICENSE("GPL");
32 MODULE_AUTHOR("David S. Miller <davem@redhat.com>");
33 MODULE_DESCRIPTION("arptables core");
34
35 /*#define DEBUG_ARP_TABLES*/
36 /*#define DEBUG_ARP_TABLES_USER*/
37
38 #ifdef DEBUG_ARP_TABLES
39 #define dprintf(format, args...)  printk(format , ## args)
40 #else
41 #define dprintf(format, args...)
42 #endif
43
44 #ifdef DEBUG_ARP_TABLES_USER
45 #define duprintf(format, args...) printk(format , ## args)
46 #else
47 #define duprintf(format, args...)
48 #endif
49
50 #ifdef CONFIG_NETFILTER_DEBUG
51 #define ARP_NF_ASSERT(x)                                        \
52 do {                                                            \
53         if (!(x))                                               \
54                 printk("ARP_NF_ASSERT: %s:%s:%u\n",             \
55                        __func__, __FILE__, __LINE__);   \
56 } while(0)
57 #else
58 #define ARP_NF_ASSERT(x)
59 #endif
60
61 static inline int arp_devaddr_compare(const struct arpt_devaddr_info *ap,
62                                       const 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         const char *arpptr = (char *)(arphdr + 1);
84         const char *src_devaddr, *tgt_devaddr;
85         __be32 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; i++) {
172                 ret |= (outdev[i] ^ arpinfo->outiface[i])
173                         & arpinfo->outiface_mask[i];
174         }
175
176         if (FWINV(ret != 0, ARPT_INV_VIA_OUT)) {
177                 dprintf("VIA out mismatch (%s vs %s).%s\n",
178                         outdev, arpinfo->outiface,
179                         arpinfo->invflags&ARPT_INV_VIA_OUT ?" (INV)":"");
180                 return 0;
181         }
182
183         return 1;
184 #undef FWINV
185 }
186
187 static inline int arp_checkentry(const struct arpt_arp *arp)
188 {
189         if (arp->flags & ~ARPT_F_MASK) {
190                 duprintf("Unknown flag bits set: %08X\n",
191                          arp->flags & ~ARPT_F_MASK);
192                 return 0;
193         }
194         if (arp->invflags & ~ARPT_INV_MASK) {
195                 duprintf("Unknown invflag bits set: %08X\n",
196                          arp->invflags & ~ARPT_INV_MASK);
197                 return 0;
198         }
199
200         return 1;
201 }
202
203 static unsigned int arpt_error(struct sk_buff *skb,
204                                const struct net_device *in,
205                                const struct net_device *out,
206                                unsigned int hooknum,
207                                const struct xt_target *target,
208                                const void *targinfo)
209 {
210         if (net_ratelimit())
211                 printk("arp_tables: error: '%s'\n", (char *)targinfo);
212
213         return NF_DROP;
214 }
215
216 static inline struct arpt_entry *get_entry(void *base, unsigned int offset)
217 {
218         return (struct arpt_entry *)(base + offset);
219 }
220
221 unsigned int arpt_do_table(struct sk_buff *skb,
222                            unsigned int hook,
223                            const struct net_device *in,
224                            const struct net_device *out,
225                            struct xt_table *table)
226 {
227         static const char nulldevname[IFNAMSIZ];
228         unsigned int verdict = NF_DROP;
229         const struct arphdr *arp;
230         bool hotdrop = false;
231         struct arpt_entry *e, *back;
232         const char *indev, *outdev;
233         void *table_base;
234         const struct xt_table_info *private;
235
236         if (!pskb_may_pull(skb, arp_hdr_len(skb->dev)))
237                 return NF_DROP;
238
239         indev = in ? in->name : nulldevname;
240         outdev = out ? out->name : nulldevname;
241
242         read_lock_bh(&table->lock);
243         private = table->private;
244         table_base = (void *)private->entries[smp_processor_id()];
245         e = get_entry(table_base, private->hook_entry[hook]);
246         back = get_entry(table_base, private->underflow[hook]);
247
248         arp = arp_hdr(skb);
249         do {
250                 if (arp_packet_match(arp, skb->dev, indev, outdev, &e->arp)) {
251                         struct arpt_entry_target *t;
252                         int hdr_len;
253
254                         hdr_len = sizeof(*arp) + (2 * sizeof(struct in_addr)) +
255                                 (2 * skb->dev->addr_len);
256                         ADD_COUNTER(e->counters, hdr_len, 1);
257
258                         t = arpt_get_target(e);
259
260                         /* Standard target? */
261                         if (!t->u.kernel.target->target) {
262                                 int v;
263
264                                 v = ((struct arpt_standard_target *)t)->verdict;
265                                 if (v < 0) {
266                                         /* Pop from stack? */
267                                         if (v != ARPT_RETURN) {
268                                                 verdict = (unsigned)(-v) - 1;
269                                                 break;
270                                         }
271                                         e = back;
272                                         back = get_entry(table_base,
273                                                          back->comefrom);
274                                         continue;
275                                 }
276                                 if (table_base + v
277                                     != (void *)e + e->next_offset) {
278                                         /* Save old back ptr in next entry */
279                                         struct arpt_entry *next
280                                                 = (void *)e + e->next_offset;
281                                         next->comefrom =
282                                                 (void *)back - table_base;
283
284                                         /* set back pointer to next entry */
285                                         back = next;
286                                 }
287
288                                 e = get_entry(table_base, v);
289                         } else {
290                                 /* Targets which reenter must return
291                                  * abs. verdicts
292                                  */
293                                 verdict = t->u.kernel.target->target(skb,
294                                                                      in, out,
295                                                                      hook,
296                                                                      t->u.kernel.target,
297                                                                      t->data);
298
299                                 /* Target might have changed stuff. */
300                                 arp = arp_hdr(skb);
301
302                                 if (verdict == ARPT_CONTINUE)
303                                         e = (void *)e + e->next_offset;
304                                 else
305                                         /* Verdict */
306                                         break;
307                         }
308                 } else {
309                         e = (void *)e + e->next_offset;
310                 }
311         } while (!hotdrop);
312         read_unlock_bh(&table->lock);
313
314         if (hotdrop)
315                 return NF_DROP;
316         else
317                 return verdict;
318 }
319
320 /* All zeroes == unconditional rule. */
321 static inline int unconditional(const struct arpt_arp *arp)
322 {
323         unsigned int i;
324
325         for (i = 0; i < sizeof(*arp)/sizeof(__u32); i++)
326                 if (((__u32 *)arp)[i])
327                         return 0;
328
329         return 1;
330 }
331
332 /* Figures out from what hook each rule can be called: returns 0 if
333  * there are loops.  Puts hook bitmask in comefrom.
334  */
335 static int mark_source_chains(struct xt_table_info *newinfo,
336                               unsigned int valid_hooks, void *entry0)
337 {
338         unsigned int hook;
339
340         /* No recursion; use packet counter to save back ptrs (reset
341          * to 0 as we leave), and comefrom to save source hook bitmask.
342          */
343         for (hook = 0; hook < NF_ARP_NUMHOOKS; hook++) {
344                 unsigned int pos = newinfo->hook_entry[hook];
345                 struct arpt_entry *e
346                         = (struct arpt_entry *)(entry0 + pos);
347
348                 if (!(valid_hooks & (1 << hook)))
349                         continue;
350
351                 /* Set initial back pointer. */
352                 e->counters.pcnt = pos;
353
354                 for (;;) {
355                         const struct arpt_standard_target *t
356                                 = (void *)arpt_get_target(e);
357                         int visited = e->comefrom & (1 << hook);
358
359                         if (e->comefrom & (1 << NF_ARP_NUMHOOKS)) {
360                                 printk("arptables: loop hook %u pos %u %08X.\n",
361                                        hook, pos, e->comefrom);
362                                 return 0;
363                         }
364                         e->comefrom
365                                 |= ((1 << hook) | (1 << NF_ARP_NUMHOOKS));
366
367                         /* Unconditional return/END. */
368                         if ((e->target_offset == sizeof(struct arpt_entry)
369                             && (strcmp(t->target.u.user.name,
370                                        ARPT_STANDARD_TARGET) == 0)
371                             && t->verdict < 0
372                             && unconditional(&e->arp)) || visited) {
373                                 unsigned int oldpos, size;
374
375                                 if (t->verdict < -NF_MAX_VERDICT - 1) {
376                                         duprintf("mark_source_chains: bad "
377                                                 "negative verdict (%i)\n",
378                                                                 t->verdict);
379                                         return 0;
380                                 }
381
382                                 /* Return: backtrack through the last
383                                  * big jump.
384                                  */
385                                 do {
386                                         e->comefrom ^= (1<<NF_ARP_NUMHOOKS);
387                                         oldpos = pos;
388                                         pos = e->counters.pcnt;
389                                         e->counters.pcnt = 0;
390
391                                         /* We're at the start. */
392                                         if (pos == oldpos)
393                                                 goto next;
394
395                                         e = (struct arpt_entry *)
396                                                 (entry0 + pos);
397                                 } while (oldpos == pos + e->next_offset);
398
399                                 /* Move along one */
400                                 size = e->next_offset;
401                                 e = (struct arpt_entry *)
402                                         (entry0 + pos + size);
403                                 e->counters.pcnt = pos;
404                                 pos += size;
405                         } else {
406                                 int newpos = t->verdict;
407
408                                 if (strcmp(t->target.u.user.name,
409                                            ARPT_STANDARD_TARGET) == 0
410                                     && newpos >= 0) {
411                                         if (newpos > newinfo->size -
412                                                 sizeof(struct arpt_entry)) {
413                                                 duprintf("mark_source_chains: "
414                                                         "bad verdict (%i)\n",
415                                                                 newpos);
416                                                 return 0;
417                                         }
418
419                                         /* This a jump; chase it. */
420                                         duprintf("Jump rule %u -> %u\n",
421                                                  pos, newpos);
422                                 } else {
423                                         /* ... this is a fallthru */
424                                         newpos = pos + e->next_offset;
425                                 }
426                                 e = (struct arpt_entry *)
427                                         (entry0 + newpos);
428                                 e->counters.pcnt = pos;
429                                 pos = newpos;
430                         }
431                 }
432                 next:
433                 duprintf("Finished chain %u\n", hook);
434         }
435         return 1;
436 }
437
438 static inline int check_entry(struct arpt_entry *e, const char *name)
439 {
440         const struct arpt_entry_target *t;
441
442         if (!arp_checkentry(&e->arp)) {
443                 duprintf("arp_tables: arp check failed %p %s.\n", e, name);
444                 return -EINVAL;
445         }
446
447         if (e->target_offset + sizeof(struct arpt_entry_target) > e->next_offset)
448                 return -EINVAL;
449
450         t = arpt_get_target(e);
451         if (e->target_offset + t->u.target_size > e->next_offset)
452                 return -EINVAL;
453
454         return 0;
455 }
456
457 static inline int check_target(struct arpt_entry *e, const char *name)
458 {
459         struct arpt_entry_target *t;
460         struct xt_target *target;
461         int ret;
462
463         t = arpt_get_target(e);
464         target = t->u.kernel.target;
465
466         ret = xt_check_target(target, NFPROTO_ARP,
467                               t->u.target_size - sizeof(*t),
468                               name, e->comefrom, 0, 0, e, t->data);
469         if (ret < 0) {
470                 duprintf("arp_tables: check failed for `%s'.\n",
471                          t->u.kernel.target->name);
472                 return ret;
473         }
474         return 0;
475 }
476
477 static inline int
478 find_check_entry(struct arpt_entry *e, const char *name, unsigned int size,
479                  unsigned int *i)
480 {
481         struct arpt_entry_target *t;
482         struct xt_target *target;
483         int ret;
484
485         ret = check_entry(e, name);
486         if (ret)
487                 return ret;
488
489         t = arpt_get_target(e);
490         target = try_then_request_module(xt_find_target(NFPROTO_ARP,
491                                                         t->u.user.name,
492                                                         t->u.user.revision),
493                                          "arpt_%s", t->u.user.name);
494         if (IS_ERR(target) || !target) {
495                 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
496                 ret = target ? PTR_ERR(target) : -ENOENT;
497                 goto out;
498         }
499         t->u.kernel.target = target;
500
501         ret = check_target(e, name);
502         if (ret)
503                 goto err;
504
505         (*i)++;
506         return 0;
507 err:
508         module_put(t->u.kernel.target->me);
509 out:
510         return ret;
511 }
512
513 static inline int check_entry_size_and_hooks(struct arpt_entry *e,
514                                              struct xt_table_info *newinfo,
515                                              unsigned char *base,
516                                              unsigned char *limit,
517                                              const unsigned int *hook_entries,
518                                              const unsigned int *underflows,
519                                              unsigned int *i)
520 {
521         unsigned int h;
522
523         if ((unsigned long)e % __alignof__(struct arpt_entry) != 0
524             || (unsigned char *)e + sizeof(struct arpt_entry) >= limit) {
525                 duprintf("Bad offset %p\n", e);
526                 return -EINVAL;
527         }
528
529         if (e->next_offset
530             < sizeof(struct arpt_entry) + sizeof(struct arpt_entry_target)) {
531                 duprintf("checking: element %p size %u\n",
532                          e, e->next_offset);
533                 return -EINVAL;
534         }
535
536         /* Check hooks & underflows */
537         for (h = 0; h < NF_ARP_NUMHOOKS; h++) {
538                 if ((unsigned char *)e - base == hook_entries[h])
539                         newinfo->hook_entry[h] = hook_entries[h];
540                 if ((unsigned char *)e - base == underflows[h])
541                         newinfo->underflow[h] = underflows[h];
542         }
543
544         /* FIXME: underflows must be unconditional, standard verdicts
545            < 0 (not ARPT_RETURN). --RR */
546
547         /* Clear counters and comefrom */
548         e->counters = ((struct xt_counters) { 0, 0 });
549         e->comefrom = 0;
550
551         (*i)++;
552         return 0;
553 }
554
555 static inline int cleanup_entry(struct arpt_entry *e, unsigned int *i)
556 {
557         struct arpt_entry_target *t;
558
559         if (i && (*i)-- == 0)
560                 return 1;
561
562         t = arpt_get_target(e);
563         if (t->u.kernel.target->destroy)
564                 t->u.kernel.target->destroy(t->u.kernel.target, t->data);
565         module_put(t->u.kernel.target->me);
566         return 0;
567 }
568
569 /* Checks and translates the user-supplied table segment (held in
570  * newinfo).
571  */
572 static int translate_table(const char *name,
573                            unsigned int valid_hooks,
574                            struct xt_table_info *newinfo,
575                            void *entry0,
576                            unsigned int size,
577                            unsigned int number,
578                            const unsigned int *hook_entries,
579                            const unsigned int *underflows)
580 {
581         unsigned int i;
582         int ret;
583
584         newinfo->size = size;
585         newinfo->number = number;
586
587         /* Init all hooks to impossible value. */
588         for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
589                 newinfo->hook_entry[i] = 0xFFFFFFFF;
590                 newinfo->underflow[i] = 0xFFFFFFFF;
591         }
592
593         duprintf("translate_table: size %u\n", newinfo->size);
594         i = 0;
595
596         /* Walk through entries, checking offsets. */
597         ret = ARPT_ENTRY_ITERATE(entry0, newinfo->size,
598                                  check_entry_size_and_hooks,
599                                  newinfo,
600                                  entry0,
601                                  entry0 + size,
602                                  hook_entries, underflows, &i);
603         duprintf("translate_table: ARPT_ENTRY_ITERATE gives %d\n", ret);
604         if (ret != 0)
605                 return ret;
606
607         if (i != number) {
608                 duprintf("translate_table: %u not %u entries\n",
609                          i, number);
610                 return -EINVAL;
611         }
612
613         /* Check hooks all assigned */
614         for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
615                 /* Only hooks which are valid */
616                 if (!(valid_hooks & (1 << i)))
617                         continue;
618                 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
619                         duprintf("Invalid hook entry %u %u\n",
620                                  i, hook_entries[i]);
621                         return -EINVAL;
622                 }
623                 if (newinfo->underflow[i] == 0xFFFFFFFF) {
624                         duprintf("Invalid underflow %u %u\n",
625                                  i, underflows[i]);
626                         return -EINVAL;
627                 }
628         }
629
630         if (!mark_source_chains(newinfo, valid_hooks, entry0)) {
631                 duprintf("Looping hook\n");
632                 return -ELOOP;
633         }
634
635         /* Finally, each sanity check must pass */
636         i = 0;
637         ret = ARPT_ENTRY_ITERATE(entry0, newinfo->size,
638                                  find_check_entry, name, size, &i);
639
640         if (ret != 0) {
641                 ARPT_ENTRY_ITERATE(entry0, newinfo->size,
642                                 cleanup_entry, &i);
643                 return ret;
644         }
645
646         /* And one copy for every other CPU */
647         for_each_possible_cpu(i) {
648                 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
649                         memcpy(newinfo->entries[i], entry0, newinfo->size);
650         }
651
652         return ret;
653 }
654
655 /* Gets counters. */
656 static inline int add_entry_to_counter(const struct arpt_entry *e,
657                                        struct xt_counters total[],
658                                        unsigned int *i)
659 {
660         ADD_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
661
662         (*i)++;
663         return 0;
664 }
665
666 static inline int set_entry_to_counter(const struct arpt_entry *e,
667                                        struct xt_counters total[],
668                                        unsigned int *i)
669 {
670         SET_COUNTER(total[*i], e->counters.bcnt, e->counters.pcnt);
671
672         (*i)++;
673         return 0;
674 }
675
676 static void get_counters(const struct xt_table_info *t,
677                          struct xt_counters counters[])
678 {
679         unsigned int cpu;
680         unsigned int i;
681         unsigned int curcpu;
682
683         /* Instead of clearing (by a previous call to memset())
684          * the counters and using adds, we set the counters
685          * with data used by 'current' CPU
686          * We dont care about preemption here.
687          */
688         curcpu = raw_smp_processor_id();
689
690         i = 0;
691         ARPT_ENTRY_ITERATE(t->entries[curcpu],
692                            t->size,
693                            set_entry_to_counter,
694                            counters,
695                            &i);
696
697         for_each_possible_cpu(cpu) {
698                 if (cpu == curcpu)
699                         continue;
700                 i = 0;
701                 ARPT_ENTRY_ITERATE(t->entries[cpu],
702                                    t->size,
703                                    add_entry_to_counter,
704                                    counters,
705                                    &i);
706         }
707 }
708
709 static inline struct xt_counters *alloc_counters(struct xt_table *table)
710 {
711         unsigned int countersize;
712         struct xt_counters *counters;
713         const struct xt_table_info *private = table->private;
714
715         /* We need atomic snapshot of counters: rest doesn't change
716          * (other than comefrom, which userspace doesn't care
717          * about).
718          */
719         countersize = sizeof(struct xt_counters) * private->number;
720         counters = vmalloc_node(countersize, numa_node_id());
721
722         if (counters == NULL)
723                 return ERR_PTR(-ENOMEM);
724
725         /* First, sum counters... */
726         write_lock_bh(&table->lock);
727         get_counters(private, counters);
728         write_unlock_bh(&table->lock);
729
730         return counters;
731 }
732
733 static int copy_entries_to_user(unsigned int total_size,
734                                 struct xt_table *table,
735                                 void __user *userptr)
736 {
737         unsigned int off, num;
738         struct arpt_entry *e;
739         struct xt_counters *counters;
740         struct xt_table_info *private = table->private;
741         int ret = 0;
742         void *loc_cpu_entry;
743
744         counters = alloc_counters(table);
745         if (IS_ERR(counters))
746                 return PTR_ERR(counters);
747
748         loc_cpu_entry = private->entries[raw_smp_processor_id()];
749         /* ... then copy entire thing ... */
750         if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
751                 ret = -EFAULT;
752                 goto free_counters;
753         }
754
755         /* FIXME: use iterator macros --RR */
756         /* ... then go back and fix counters and names */
757         for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
758                 struct arpt_entry_target *t;
759
760                 e = (struct arpt_entry *)(loc_cpu_entry + off);
761                 if (copy_to_user(userptr + off
762                                  + offsetof(struct arpt_entry, counters),
763                                  &counters[num],
764                                  sizeof(counters[num])) != 0) {
765                         ret = -EFAULT;
766                         goto free_counters;
767                 }
768
769                 t = arpt_get_target(e);
770                 if (copy_to_user(userptr + off + e->target_offset
771                                  + offsetof(struct arpt_entry_target,
772                                             u.user.name),
773                                  t->u.kernel.target->name,
774                                  strlen(t->u.kernel.target->name)+1) != 0) {
775                         ret = -EFAULT;
776                         goto free_counters;
777                 }
778         }
779
780  free_counters:
781         vfree(counters);
782         return ret;
783 }
784
785 #ifdef CONFIG_COMPAT
786 static void compat_standard_from_user(void *dst, void *src)
787 {
788         int v = *(compat_int_t *)src;
789
790         if (v > 0)
791                 v += xt_compat_calc_jump(NFPROTO_ARP, v);
792         memcpy(dst, &v, sizeof(v));
793 }
794
795 static int compat_standard_to_user(void __user *dst, void *src)
796 {
797         compat_int_t cv = *(int *)src;
798
799         if (cv > 0)
800                 cv -= xt_compat_calc_jump(NFPROTO_ARP, cv);
801         return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
802 }
803
804 static int compat_calc_entry(struct arpt_entry *e,
805                              const struct xt_table_info *info,
806                              void *base, struct xt_table_info *newinfo)
807 {
808         struct arpt_entry_target *t;
809         unsigned int entry_offset;
810         int off, i, ret;
811
812         off = sizeof(struct arpt_entry) - sizeof(struct compat_arpt_entry);
813         entry_offset = (void *)e - base;
814
815         t = arpt_get_target(e);
816         off += xt_compat_target_offset(t->u.kernel.target);
817         newinfo->size -= off;
818         ret = xt_compat_add_offset(NFPROTO_ARP, entry_offset, off);
819         if (ret)
820                 return ret;
821
822         for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
823                 if (info->hook_entry[i] &&
824                     (e < (struct arpt_entry *)(base + info->hook_entry[i])))
825                         newinfo->hook_entry[i] -= off;
826                 if (info->underflow[i] &&
827                     (e < (struct arpt_entry *)(base + info->underflow[i])))
828                         newinfo->underflow[i] -= off;
829         }
830         return 0;
831 }
832
833 static int compat_table_info(const struct xt_table_info *info,
834                              struct xt_table_info *newinfo)
835 {
836         void *loc_cpu_entry;
837
838         if (!newinfo || !info)
839                 return -EINVAL;
840
841         /* we dont care about newinfo->entries[] */
842         memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
843         newinfo->initial_entries = 0;
844         loc_cpu_entry = info->entries[raw_smp_processor_id()];
845         return ARPT_ENTRY_ITERATE(loc_cpu_entry, info->size,
846                                   compat_calc_entry, info, loc_cpu_entry,
847                                   newinfo);
848 }
849 #endif
850
851 static int get_info(struct net *net, void __user *user, int *len, int compat)
852 {
853         char name[ARPT_TABLE_MAXNAMELEN];
854         struct xt_table *t;
855         int ret;
856
857         if (*len != sizeof(struct arpt_getinfo)) {
858                 duprintf("length %u != %Zu\n", *len,
859                          sizeof(struct arpt_getinfo));
860                 return -EINVAL;
861         }
862
863         if (copy_from_user(name, user, sizeof(name)) != 0)
864                 return -EFAULT;
865
866         name[ARPT_TABLE_MAXNAMELEN-1] = '\0';
867 #ifdef CONFIG_COMPAT
868         if (compat)
869                 xt_compat_lock(NFPROTO_ARP);
870 #endif
871         t = try_then_request_module(xt_find_table_lock(net, NFPROTO_ARP, name),
872                                     "arptable_%s", name);
873         if (t && !IS_ERR(t)) {
874                 struct arpt_getinfo info;
875                 const struct xt_table_info *private = t->private;
876
877 #ifdef CONFIG_COMPAT
878                 if (compat) {
879                         struct xt_table_info tmp;
880                         ret = compat_table_info(private, &tmp);
881                         xt_compat_flush_offsets(NFPROTO_ARP);
882                         private = &tmp;
883                 }
884 #endif
885                 info.valid_hooks = t->valid_hooks;
886                 memcpy(info.hook_entry, private->hook_entry,
887                        sizeof(info.hook_entry));
888                 memcpy(info.underflow, private->underflow,
889                        sizeof(info.underflow));
890                 info.num_entries = private->number;
891                 info.size = private->size;
892                 strcpy(info.name, name);
893
894                 if (copy_to_user(user, &info, *len) != 0)
895                         ret = -EFAULT;
896                 else
897                         ret = 0;
898                 xt_table_unlock(t);
899                 module_put(t->me);
900         } else
901                 ret = t ? PTR_ERR(t) : -ENOENT;
902 #ifdef CONFIG_COMPAT
903         if (compat)
904                 xt_compat_unlock(NFPROTO_ARP);
905 #endif
906         return ret;
907 }
908
909 static int get_entries(struct net *net, struct arpt_get_entries __user *uptr,
910                        int *len)
911 {
912         int ret;
913         struct arpt_get_entries get;
914         struct xt_table *t;
915
916         if (*len < sizeof(get)) {
917                 duprintf("get_entries: %u < %Zu\n", *len, sizeof(get));
918                 return -EINVAL;
919         }
920         if (copy_from_user(&get, uptr, sizeof(get)) != 0)
921                 return -EFAULT;
922         if (*len != sizeof(struct arpt_get_entries) + get.size) {
923                 duprintf("get_entries: %u != %Zu\n", *len,
924                          sizeof(struct arpt_get_entries) + get.size);
925                 return -EINVAL;
926         }
927
928         t = xt_find_table_lock(net, NFPROTO_ARP, get.name);
929         if (t && !IS_ERR(t)) {
930                 const struct xt_table_info *private = t->private;
931
932                 duprintf("t->private->number = %u\n",
933                          private->number);
934                 if (get.size == private->size)
935                         ret = copy_entries_to_user(private->size,
936                                                    t, uptr->entrytable);
937                 else {
938                         duprintf("get_entries: I've got %u not %u!\n",
939                                  private->size, get.size);
940                         ret = -EAGAIN;
941                 }
942                 module_put(t->me);
943                 xt_table_unlock(t);
944         } else
945                 ret = t ? PTR_ERR(t) : -ENOENT;
946
947         return ret;
948 }
949
950 static int __do_replace(struct net *net, const char *name,
951                         unsigned int valid_hooks,
952                         struct xt_table_info *newinfo,
953                         unsigned int num_counters,
954                         void __user *counters_ptr)
955 {
956         int ret;
957         struct xt_table *t;
958         struct xt_table_info *oldinfo;
959         struct xt_counters *counters;
960         void *loc_cpu_old_entry;
961
962         ret = 0;
963         counters = vmalloc_node(num_counters * sizeof(struct xt_counters),
964                                 numa_node_id());
965         if (!counters) {
966                 ret = -ENOMEM;
967                 goto out;
968         }
969
970         t = try_then_request_module(xt_find_table_lock(net, NFPROTO_ARP, name),
971                                     "arptable_%s", name);
972         if (!t || IS_ERR(t)) {
973                 ret = t ? PTR_ERR(t) : -ENOENT;
974                 goto free_newinfo_counters_untrans;
975         }
976
977         /* You lied! */
978         if (valid_hooks != t->valid_hooks) {
979                 duprintf("Valid hook crap: %08X vs %08X\n",
980                          valid_hooks, t->valid_hooks);
981                 ret = -EINVAL;
982                 goto put_module;
983         }
984
985         oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
986         if (!oldinfo)
987                 goto put_module;
988
989         /* Update module usage count based on number of rules */
990         duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
991                 oldinfo->number, oldinfo->initial_entries, newinfo->number);
992         if ((oldinfo->number > oldinfo->initial_entries) ||
993             (newinfo->number <= oldinfo->initial_entries))
994                 module_put(t->me);
995         if ((oldinfo->number > oldinfo->initial_entries) &&
996             (newinfo->number <= oldinfo->initial_entries))
997                 module_put(t->me);
998
999         /* Get the old counters. */
1000         get_counters(oldinfo, counters);
1001         /* Decrease module usage counts and free resource */
1002         loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
1003         ARPT_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry,
1004                            NULL);
1005
1006         xt_free_table_info(oldinfo);
1007         if (copy_to_user(counters_ptr, counters,
1008                          sizeof(struct xt_counters) * num_counters) != 0)
1009                 ret = -EFAULT;
1010         vfree(counters);
1011         xt_table_unlock(t);
1012         return ret;
1013
1014  put_module:
1015         module_put(t->me);
1016         xt_table_unlock(t);
1017  free_newinfo_counters_untrans:
1018         vfree(counters);
1019  out:
1020         return ret;
1021 }
1022
1023 static int do_replace(struct net *net, void __user *user, unsigned int len)
1024 {
1025         int ret;
1026         struct arpt_replace tmp;
1027         struct xt_table_info *newinfo;
1028         void *loc_cpu_entry;
1029
1030         if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1031                 return -EFAULT;
1032
1033         /* overflow check */
1034         if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1035                 return -ENOMEM;
1036
1037         newinfo = xt_alloc_table_info(tmp.size);
1038         if (!newinfo)
1039                 return -ENOMEM;
1040
1041         /* choose the copy that is on our node/cpu */
1042         loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1043         if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
1044                            tmp.size) != 0) {
1045                 ret = -EFAULT;
1046                 goto free_newinfo;
1047         }
1048
1049         ret = translate_table(tmp.name, tmp.valid_hooks,
1050                               newinfo, loc_cpu_entry, tmp.size, tmp.num_entries,
1051                               tmp.hook_entry, tmp.underflow);
1052         if (ret != 0)
1053                 goto free_newinfo;
1054
1055         duprintf("arp_tables: Translated table\n");
1056
1057         ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
1058                            tmp.num_counters, tmp.counters);
1059         if (ret)
1060                 goto free_newinfo_untrans;
1061         return 0;
1062
1063  free_newinfo_untrans:
1064         ARPT_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
1065  free_newinfo:
1066         xt_free_table_info(newinfo);
1067         return ret;
1068 }
1069
1070 /* We're lazy, and add to the first CPU; overflow works its fey magic
1071  * and everything is OK.
1072  */
1073 static inline int add_counter_to_entry(struct arpt_entry *e,
1074                                        const struct xt_counters addme[],
1075                                        unsigned int *i)
1076 {
1077
1078         ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt);
1079
1080         (*i)++;
1081         return 0;
1082 }
1083
1084 static int do_add_counters(struct net *net, void __user *user, unsigned int len,
1085                            int compat)
1086 {
1087         unsigned int i;
1088         struct xt_counters_info tmp;
1089         struct xt_counters *paddc;
1090         unsigned int num_counters;
1091         const char *name;
1092         int size;
1093         void *ptmp;
1094         struct xt_table *t;
1095         const struct xt_table_info *private;
1096         int ret = 0;
1097         void *loc_cpu_entry;
1098 #ifdef CONFIG_COMPAT
1099         struct compat_xt_counters_info compat_tmp;
1100
1101         if (compat) {
1102                 ptmp = &compat_tmp;
1103                 size = sizeof(struct compat_xt_counters_info);
1104         } else
1105 #endif
1106         {
1107                 ptmp = &tmp;
1108                 size = sizeof(struct xt_counters_info);
1109         }
1110
1111         if (copy_from_user(ptmp, user, size) != 0)
1112                 return -EFAULT;
1113
1114 #ifdef CONFIG_COMPAT
1115         if (compat) {
1116                 num_counters = compat_tmp.num_counters;
1117                 name = compat_tmp.name;
1118         } else
1119 #endif
1120         {
1121                 num_counters = tmp.num_counters;
1122                 name = tmp.name;
1123         }
1124
1125         if (len != size + num_counters * sizeof(struct xt_counters))
1126                 return -EINVAL;
1127
1128         paddc = vmalloc_node(len - size, numa_node_id());
1129         if (!paddc)
1130                 return -ENOMEM;
1131
1132         if (copy_from_user(paddc, user + size, len - size) != 0) {
1133                 ret = -EFAULT;
1134                 goto free;
1135         }
1136
1137         t = xt_find_table_lock(net, NFPROTO_ARP, name);
1138         if (!t || IS_ERR(t)) {
1139                 ret = t ? PTR_ERR(t) : -ENOENT;
1140                 goto free;
1141         }
1142
1143         write_lock_bh(&t->lock);
1144         private = t->private;
1145         if (private->number != num_counters) {
1146                 ret = -EINVAL;
1147                 goto unlock_up_free;
1148         }
1149
1150         i = 0;
1151         /* Choose the copy that is on our node */
1152         loc_cpu_entry = private->entries[smp_processor_id()];
1153         ARPT_ENTRY_ITERATE(loc_cpu_entry,
1154                            private->size,
1155                            add_counter_to_entry,
1156                            paddc,
1157                            &i);
1158  unlock_up_free:
1159         write_unlock_bh(&t->lock);
1160         xt_table_unlock(t);
1161         module_put(t->me);
1162  free:
1163         vfree(paddc);
1164
1165         return ret;
1166 }
1167
1168 #ifdef CONFIG_COMPAT
1169 static inline int
1170 compat_release_entry(struct compat_arpt_entry *e, unsigned int *i)
1171 {
1172         struct arpt_entry_target *t;
1173
1174         if (i && (*i)-- == 0)
1175                 return 1;
1176
1177         t = compat_arpt_get_target(e);
1178         module_put(t->u.kernel.target->me);
1179         return 0;
1180 }
1181
1182 static inline int
1183 check_compat_entry_size_and_hooks(struct compat_arpt_entry *e,
1184                                   struct xt_table_info *newinfo,
1185                                   unsigned int *size,
1186                                   unsigned char *base,
1187                                   unsigned char *limit,
1188                                   unsigned int *hook_entries,
1189                                   unsigned int *underflows,
1190                                   unsigned int *i,
1191                                   const char *name)
1192 {
1193         struct arpt_entry_target *t;
1194         struct xt_target *target;
1195         unsigned int entry_offset;
1196         int ret, off, h;
1197
1198         duprintf("check_compat_entry_size_and_hooks %p\n", e);
1199         if ((unsigned long)e % __alignof__(struct compat_arpt_entry) != 0
1200             || (unsigned char *)e + sizeof(struct compat_arpt_entry) >= limit) {
1201                 duprintf("Bad offset %p, limit = %p\n", e, limit);
1202                 return -EINVAL;
1203         }
1204
1205         if (e->next_offset < sizeof(struct compat_arpt_entry) +
1206                              sizeof(struct compat_xt_entry_target)) {
1207                 duprintf("checking: element %p size %u\n",
1208                          e, e->next_offset);
1209                 return -EINVAL;
1210         }
1211
1212         /* For purposes of check_entry casting the compat entry is fine */
1213         ret = check_entry((struct arpt_entry *)e, name);
1214         if (ret)
1215                 return ret;
1216
1217         off = sizeof(struct arpt_entry) - sizeof(struct compat_arpt_entry);
1218         entry_offset = (void *)e - (void *)base;
1219
1220         t = compat_arpt_get_target(e);
1221         target = try_then_request_module(xt_find_target(NFPROTO_ARP,
1222                                                         t->u.user.name,
1223                                                         t->u.user.revision),
1224                                          "arpt_%s", t->u.user.name);
1225         if (IS_ERR(target) || !target) {
1226                 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
1227                          t->u.user.name);
1228                 ret = target ? PTR_ERR(target) : -ENOENT;
1229                 goto out;
1230         }
1231         t->u.kernel.target = target;
1232
1233         off += xt_compat_target_offset(target);
1234         *size += off;
1235         ret = xt_compat_add_offset(NFPROTO_ARP, entry_offset, off);
1236         if (ret)
1237                 goto release_target;
1238
1239         /* Check hooks & underflows */
1240         for (h = 0; h < NF_ARP_NUMHOOKS; h++) {
1241                 if ((unsigned char *)e - base == hook_entries[h])
1242                         newinfo->hook_entry[h] = hook_entries[h];
1243                 if ((unsigned char *)e - base == underflows[h])
1244                         newinfo->underflow[h] = underflows[h];
1245         }
1246
1247         /* Clear counters and comefrom */
1248         memset(&e->counters, 0, sizeof(e->counters));
1249         e->comefrom = 0;
1250
1251         (*i)++;
1252         return 0;
1253
1254 release_target:
1255         module_put(t->u.kernel.target->me);
1256 out:
1257         return ret;
1258 }
1259
1260 static int
1261 compat_copy_entry_from_user(struct compat_arpt_entry *e, void **dstptr,
1262                             unsigned int *size, const char *name,
1263                             struct xt_table_info *newinfo, unsigned char *base)
1264 {
1265         struct arpt_entry_target *t;
1266         struct xt_target *target;
1267         struct arpt_entry *de;
1268         unsigned int origsize;
1269         int ret, h;
1270
1271         ret = 0;
1272         origsize = *size;
1273         de = (struct arpt_entry *)*dstptr;
1274         memcpy(de, e, sizeof(struct arpt_entry));
1275         memcpy(&de->counters, &e->counters, sizeof(e->counters));
1276
1277         *dstptr += sizeof(struct arpt_entry);
1278         *size += sizeof(struct arpt_entry) - sizeof(struct compat_arpt_entry);
1279
1280         de->target_offset = e->target_offset - (origsize - *size);
1281         t = compat_arpt_get_target(e);
1282         target = t->u.kernel.target;
1283         xt_compat_target_from_user(t, dstptr, size);
1284
1285         de->next_offset = e->next_offset - (origsize - *size);
1286         for (h = 0; h < NF_ARP_NUMHOOKS; h++) {
1287                 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1288                         newinfo->hook_entry[h] -= origsize - *size;
1289                 if ((unsigned char *)de - base < newinfo->underflow[h])
1290                         newinfo->underflow[h] -= origsize - *size;
1291         }
1292         return ret;
1293 }
1294
1295 static inline int compat_check_entry(struct arpt_entry *e, const char *name,
1296                                      unsigned int *i)
1297 {
1298         int ret;
1299
1300         ret = check_target(e, name);
1301         if (ret)
1302                 return ret;
1303
1304         (*i)++;
1305         return 0;
1306 }
1307
1308 static int translate_compat_table(const char *name,
1309                                   unsigned int valid_hooks,
1310                                   struct xt_table_info **pinfo,
1311                                   void **pentry0,
1312                                   unsigned int total_size,
1313                                   unsigned int number,
1314                                   unsigned int *hook_entries,
1315                                   unsigned int *underflows)
1316 {
1317         unsigned int i, j;
1318         struct xt_table_info *newinfo, *info;
1319         void *pos, *entry0, *entry1;
1320         unsigned int size;
1321         int ret;
1322
1323         info = *pinfo;
1324         entry0 = *pentry0;
1325         size = total_size;
1326         info->number = number;
1327
1328         /* Init all hooks to impossible value. */
1329         for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
1330                 info->hook_entry[i] = 0xFFFFFFFF;
1331                 info->underflow[i] = 0xFFFFFFFF;
1332         }
1333
1334         duprintf("translate_compat_table: size %u\n", info->size);
1335         j = 0;
1336         xt_compat_lock(NFPROTO_ARP);
1337         /* Walk through entries, checking offsets. */
1338         ret = COMPAT_ARPT_ENTRY_ITERATE(entry0, total_size,
1339                                         check_compat_entry_size_and_hooks,
1340                                         info, &size, entry0,
1341                                         entry0 + total_size,
1342                                         hook_entries, underflows, &j, name);
1343         if (ret != 0)
1344                 goto out_unlock;
1345
1346         ret = -EINVAL;
1347         if (j != number) {
1348                 duprintf("translate_compat_table: %u not %u entries\n",
1349                          j, number);
1350                 goto out_unlock;
1351         }
1352
1353         /* Check hooks all assigned */
1354         for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
1355                 /* Only hooks which are valid */
1356                 if (!(valid_hooks & (1 << i)))
1357                         continue;
1358                 if (info->hook_entry[i] == 0xFFFFFFFF) {
1359                         duprintf("Invalid hook entry %u %u\n",
1360                                  i, hook_entries[i]);
1361                         goto out_unlock;
1362                 }
1363                 if (info->underflow[i] == 0xFFFFFFFF) {
1364                         duprintf("Invalid underflow %u %u\n",
1365                                  i, underflows[i]);
1366                         goto out_unlock;
1367                 }
1368         }
1369
1370         ret = -ENOMEM;
1371         newinfo = xt_alloc_table_info(size);
1372         if (!newinfo)
1373                 goto out_unlock;
1374
1375         newinfo->number = number;
1376         for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
1377                 newinfo->hook_entry[i] = info->hook_entry[i];
1378                 newinfo->underflow[i] = info->underflow[i];
1379         }
1380         entry1 = newinfo->entries[raw_smp_processor_id()];
1381         pos = entry1;
1382         size = total_size;
1383         ret = COMPAT_ARPT_ENTRY_ITERATE(entry0, total_size,
1384                                         compat_copy_entry_from_user,
1385                                         &pos, &size, name, newinfo, entry1);
1386         xt_compat_flush_offsets(NFPROTO_ARP);
1387         xt_compat_unlock(NFPROTO_ARP);
1388         if (ret)
1389                 goto free_newinfo;
1390
1391         ret = -ELOOP;
1392         if (!mark_source_chains(newinfo, valid_hooks, entry1))
1393                 goto free_newinfo;
1394
1395         i = 0;
1396         ret = ARPT_ENTRY_ITERATE(entry1, newinfo->size, compat_check_entry,
1397                                  name, &i);
1398         if (ret) {
1399                 j -= i;
1400                 COMPAT_ARPT_ENTRY_ITERATE_CONTINUE(entry0, newinfo->size, i,
1401                                                    compat_release_entry, &j);
1402                 ARPT_ENTRY_ITERATE(entry1, newinfo->size, cleanup_entry, &i);
1403                 xt_free_table_info(newinfo);
1404                 return ret;
1405         }
1406
1407         /* And one copy for every other CPU */
1408         for_each_possible_cpu(i)
1409                 if (newinfo->entries[i] && newinfo->entries[i] != entry1)
1410                         memcpy(newinfo->entries[i], entry1, newinfo->size);
1411
1412         *pinfo = newinfo;
1413         *pentry0 = entry1;
1414         xt_free_table_info(info);
1415         return 0;
1416
1417 free_newinfo:
1418         xt_free_table_info(newinfo);
1419 out:
1420         COMPAT_ARPT_ENTRY_ITERATE(entry0, total_size, compat_release_entry, &j);
1421         return ret;
1422 out_unlock:
1423         xt_compat_flush_offsets(NFPROTO_ARP);
1424         xt_compat_unlock(NFPROTO_ARP);
1425         goto out;
1426 }
1427
1428 struct compat_arpt_replace {
1429         char                            name[ARPT_TABLE_MAXNAMELEN];
1430         u32                             valid_hooks;
1431         u32                             num_entries;
1432         u32                             size;
1433         u32                             hook_entry[NF_ARP_NUMHOOKS];
1434         u32                             underflow[NF_ARP_NUMHOOKS];
1435         u32                             num_counters;
1436         compat_uptr_t                   counters;
1437         struct compat_arpt_entry        entries[0];
1438 };
1439
1440 static int compat_do_replace(struct net *net, void __user *user,
1441                              unsigned int len)
1442 {
1443         int ret;
1444         struct compat_arpt_replace tmp;
1445         struct xt_table_info *newinfo;
1446         void *loc_cpu_entry;
1447
1448         if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1449                 return -EFAULT;
1450
1451         /* overflow check */
1452         if (tmp.size >= INT_MAX / num_possible_cpus())
1453                 return -ENOMEM;
1454         if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1455                 return -ENOMEM;
1456
1457         newinfo = xt_alloc_table_info(tmp.size);
1458         if (!newinfo)
1459                 return -ENOMEM;
1460
1461         /* choose the copy that is on our node/cpu */
1462         loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1463         if (copy_from_user(loc_cpu_entry, user + sizeof(tmp), tmp.size) != 0) {
1464                 ret = -EFAULT;
1465                 goto free_newinfo;
1466         }
1467
1468         ret = translate_compat_table(tmp.name, tmp.valid_hooks,
1469                                      &newinfo, &loc_cpu_entry, tmp.size,
1470                                      tmp.num_entries, tmp.hook_entry,
1471                                      tmp.underflow);
1472         if (ret != 0)
1473                 goto free_newinfo;
1474
1475         duprintf("compat_do_replace: Translated table\n");
1476
1477         ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
1478                            tmp.num_counters, compat_ptr(tmp.counters));
1479         if (ret)
1480                 goto free_newinfo_untrans;
1481         return 0;
1482
1483  free_newinfo_untrans:
1484         ARPT_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry, NULL);
1485  free_newinfo:
1486         xt_free_table_info(newinfo);
1487         return ret;
1488 }
1489
1490 static int compat_do_arpt_set_ctl(struct sock *sk, int cmd, void __user *user,
1491                                   unsigned int len)
1492 {
1493         int ret;
1494
1495         if (!capable(CAP_NET_ADMIN))
1496                 return -EPERM;
1497
1498         switch (cmd) {
1499         case ARPT_SO_SET_REPLACE:
1500                 ret = compat_do_replace(sock_net(sk), user, len);
1501                 break;
1502
1503         case ARPT_SO_SET_ADD_COUNTERS:
1504                 ret = do_add_counters(sock_net(sk), user, len, 1);
1505                 break;
1506
1507         default:
1508                 duprintf("do_arpt_set_ctl:  unknown request %i\n", cmd);
1509                 ret = -EINVAL;
1510         }
1511
1512         return ret;
1513 }
1514
1515 static int compat_copy_entry_to_user(struct arpt_entry *e, void __user **dstptr,
1516                                      compat_uint_t *size,
1517                                      struct xt_counters *counters,
1518                                      unsigned int *i)
1519 {
1520         struct arpt_entry_target *t;
1521         struct compat_arpt_entry __user *ce;
1522         u_int16_t target_offset, next_offset;
1523         compat_uint_t origsize;
1524         int ret;
1525
1526         ret = -EFAULT;
1527         origsize = *size;
1528         ce = (struct compat_arpt_entry __user *)*dstptr;
1529         if (copy_to_user(ce, e, sizeof(struct arpt_entry)))
1530                 goto out;
1531
1532         if (copy_to_user(&ce->counters, &counters[*i], sizeof(counters[*i])))
1533                 goto out;
1534
1535         *dstptr += sizeof(struct compat_arpt_entry);
1536         *size -= sizeof(struct arpt_entry) - sizeof(struct compat_arpt_entry);
1537
1538         target_offset = e->target_offset - (origsize - *size);
1539
1540         t = arpt_get_target(e);
1541         ret = xt_compat_target_to_user(t, dstptr, size);
1542         if (ret)
1543                 goto out;
1544         ret = -EFAULT;
1545         next_offset = e->next_offset - (origsize - *size);
1546         if (put_user(target_offset, &ce->target_offset))
1547                 goto out;
1548         if (put_user(next_offset, &ce->next_offset))
1549                 goto out;
1550
1551         (*i)++;
1552         return 0;
1553 out:
1554         return ret;
1555 }
1556
1557 static int compat_copy_entries_to_user(unsigned int total_size,
1558                                        struct xt_table *table,
1559                                        void __user *userptr)
1560 {
1561         struct xt_counters *counters;
1562         const struct xt_table_info *private = table->private;
1563         void __user *pos;
1564         unsigned int size;
1565         int ret = 0;
1566         void *loc_cpu_entry;
1567         unsigned int i = 0;
1568
1569         counters = alloc_counters(table);
1570         if (IS_ERR(counters))
1571                 return PTR_ERR(counters);
1572
1573         /* choose the copy on our node/cpu */
1574         loc_cpu_entry = private->entries[raw_smp_processor_id()];
1575         pos = userptr;
1576         size = total_size;
1577         ret = ARPT_ENTRY_ITERATE(loc_cpu_entry, total_size,
1578                                  compat_copy_entry_to_user,
1579                                  &pos, &size, counters, &i);
1580         vfree(counters);
1581         return ret;
1582 }
1583
1584 struct compat_arpt_get_entries {
1585         char name[ARPT_TABLE_MAXNAMELEN];
1586         compat_uint_t size;
1587         struct compat_arpt_entry entrytable[0];
1588 };
1589
1590 static int compat_get_entries(struct net *net,
1591                               struct compat_arpt_get_entries __user *uptr,
1592                               int *len)
1593 {
1594         int ret;
1595         struct compat_arpt_get_entries get;
1596         struct xt_table *t;
1597
1598         if (*len < sizeof(get)) {
1599                 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
1600                 return -EINVAL;
1601         }
1602         if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1603                 return -EFAULT;
1604         if (*len != sizeof(struct compat_arpt_get_entries) + get.size) {
1605                 duprintf("compat_get_entries: %u != %zu\n",
1606                          *len, sizeof(get) + get.size);
1607                 return -EINVAL;
1608         }
1609
1610         xt_compat_lock(NFPROTO_ARP);
1611         t = xt_find_table_lock(net, NFPROTO_ARP, get.name);
1612         if (t && !IS_ERR(t)) {
1613                 const struct xt_table_info *private = t->private;
1614                 struct xt_table_info info;
1615
1616                 duprintf("t->private->number = %u\n", private->number);
1617                 ret = compat_table_info(private, &info);
1618                 if (!ret && get.size == info.size) {
1619                         ret = compat_copy_entries_to_user(private->size,
1620                                                           t, uptr->entrytable);
1621                 } else if (!ret) {
1622                         duprintf("compat_get_entries: I've got %u not %u!\n",
1623                                  private->size, get.size);
1624                         ret = -EAGAIN;
1625                 }
1626                 xt_compat_flush_offsets(NFPROTO_ARP);
1627                 module_put(t->me);
1628                 xt_table_unlock(t);
1629         } else
1630                 ret = t ? PTR_ERR(t) : -ENOENT;
1631
1632         xt_compat_unlock(NFPROTO_ARP);
1633         return ret;
1634 }
1635
1636 static int do_arpt_get_ctl(struct sock *, int, void __user *, int *);
1637
1638 static int compat_do_arpt_get_ctl(struct sock *sk, int cmd, void __user *user,
1639                                   int *len)
1640 {
1641         int ret;
1642
1643         if (!capable(CAP_NET_ADMIN))
1644                 return -EPERM;
1645
1646         switch (cmd) {
1647         case ARPT_SO_GET_INFO:
1648                 ret = get_info(sock_net(sk), user, len, 1);
1649                 break;
1650         case ARPT_SO_GET_ENTRIES:
1651                 ret = compat_get_entries(sock_net(sk), user, len);
1652                 break;
1653         default:
1654                 ret = do_arpt_get_ctl(sk, cmd, user, len);
1655         }
1656         return ret;
1657 }
1658 #endif
1659
1660 static int do_arpt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
1661 {
1662         int ret;
1663
1664         if (!capable(CAP_NET_ADMIN))
1665                 return -EPERM;
1666
1667         switch (cmd) {
1668         case ARPT_SO_SET_REPLACE:
1669                 ret = do_replace(sock_net(sk), user, len);
1670                 break;
1671
1672         case ARPT_SO_SET_ADD_COUNTERS:
1673                 ret = do_add_counters(sock_net(sk), user, len, 0);
1674                 break;
1675
1676         default:
1677                 duprintf("do_arpt_set_ctl:  unknown request %i\n", cmd);
1678                 ret = -EINVAL;
1679         }
1680
1681         return ret;
1682 }
1683
1684 static int do_arpt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1685 {
1686         int ret;
1687
1688         if (!capable(CAP_NET_ADMIN))
1689                 return -EPERM;
1690
1691         switch (cmd) {
1692         case ARPT_SO_GET_INFO:
1693                 ret = get_info(sock_net(sk), user, len, 0);
1694                 break;
1695
1696         case ARPT_SO_GET_ENTRIES:
1697                 ret = get_entries(sock_net(sk), user, len);
1698                 break;
1699
1700         case ARPT_SO_GET_REVISION_TARGET: {
1701                 struct xt_get_revision rev;
1702
1703                 if (*len != sizeof(rev)) {
1704                         ret = -EINVAL;
1705                         break;
1706                 }
1707                 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
1708                         ret = -EFAULT;
1709                         break;
1710                 }
1711
1712                 try_then_request_module(xt_find_revision(NFPROTO_ARP, rev.name,
1713                                                          rev.revision, 1, &ret),
1714                                         "arpt_%s", rev.name);
1715                 break;
1716         }
1717
1718         default:
1719                 duprintf("do_arpt_get_ctl: unknown request %i\n", cmd);
1720                 ret = -EINVAL;
1721         }
1722
1723         return ret;
1724 }
1725
1726 struct xt_table *arpt_register_table(struct net *net, struct xt_table *table,
1727                                      const struct arpt_replace *repl)
1728 {
1729         int ret;
1730         struct xt_table_info *newinfo;
1731         struct xt_table_info bootstrap
1732                 = { 0, 0, 0, { 0 }, { 0 }, { } };
1733         void *loc_cpu_entry;
1734         struct xt_table *new_table;
1735
1736         newinfo = xt_alloc_table_info(repl->size);
1737         if (!newinfo) {
1738                 ret = -ENOMEM;
1739                 goto out;
1740         }
1741
1742         /* choose the copy on our node/cpu */
1743         loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1744         memcpy(loc_cpu_entry, repl->entries, repl->size);
1745
1746         ret = translate_table(table->name, table->valid_hooks,
1747                               newinfo, loc_cpu_entry, repl->size,
1748                               repl->num_entries,
1749                               repl->hook_entry,
1750                               repl->underflow);
1751
1752         duprintf("arpt_register_table: translate table gives %d\n", ret);
1753         if (ret != 0)
1754                 goto out_free;
1755
1756         new_table = xt_register_table(net, table, &bootstrap, newinfo);
1757         if (IS_ERR(new_table)) {
1758                 ret = PTR_ERR(new_table);
1759                 goto out_free;
1760         }
1761         return new_table;
1762
1763 out_free:
1764         xt_free_table_info(newinfo);
1765 out:
1766         return ERR_PTR(ret);
1767 }
1768
1769 void arpt_unregister_table(struct xt_table *table)
1770 {
1771         struct xt_table_info *private;
1772         void *loc_cpu_entry;
1773         struct module *table_owner = table->me;
1774
1775         private = xt_unregister_table(table);
1776
1777         /* Decrease module usage counts and free resources */
1778         loc_cpu_entry = private->entries[raw_smp_processor_id()];
1779         ARPT_ENTRY_ITERATE(loc_cpu_entry, private->size,
1780                            cleanup_entry, NULL);
1781         if (private->number > private->initial_entries)
1782                 module_put(table_owner);
1783         xt_free_table_info(private);
1784 }
1785
1786 /* The built-in targets: standard (NULL) and error. */
1787 static struct xt_target arpt_standard_target __read_mostly = {
1788         .name           = ARPT_STANDARD_TARGET,
1789         .targetsize     = sizeof(int),
1790         .family         = NFPROTO_ARP,
1791 #ifdef CONFIG_COMPAT
1792         .compatsize     = sizeof(compat_int_t),
1793         .compat_from_user = compat_standard_from_user,
1794         .compat_to_user = compat_standard_to_user,
1795 #endif
1796 };
1797
1798 static struct xt_target arpt_error_target __read_mostly = {
1799         .name           = ARPT_ERROR_TARGET,
1800         .target         = arpt_error,
1801         .targetsize     = ARPT_FUNCTION_MAXNAMELEN,
1802         .family         = NFPROTO_ARP,
1803 };
1804
1805 static struct nf_sockopt_ops arpt_sockopts = {
1806         .pf             = PF_INET,
1807         .set_optmin     = ARPT_BASE_CTL,
1808         .set_optmax     = ARPT_SO_SET_MAX+1,
1809         .set            = do_arpt_set_ctl,
1810 #ifdef CONFIG_COMPAT
1811         .compat_set     = compat_do_arpt_set_ctl,
1812 #endif
1813         .get_optmin     = ARPT_BASE_CTL,
1814         .get_optmax     = ARPT_SO_GET_MAX+1,
1815         .get            = do_arpt_get_ctl,
1816 #ifdef CONFIG_COMPAT
1817         .compat_get     = compat_do_arpt_get_ctl,
1818 #endif
1819         .owner          = THIS_MODULE,
1820 };
1821
1822 static int __net_init arp_tables_net_init(struct net *net)
1823 {
1824         return xt_proto_init(net, NFPROTO_ARP);
1825 }
1826
1827 static void __net_exit arp_tables_net_exit(struct net *net)
1828 {
1829         xt_proto_fini(net, NFPROTO_ARP);
1830 }
1831
1832 static struct pernet_operations arp_tables_net_ops = {
1833         .init = arp_tables_net_init,
1834         .exit = arp_tables_net_exit,
1835 };
1836
1837 static int __init arp_tables_init(void)
1838 {
1839         int ret;
1840
1841         ret = register_pernet_subsys(&arp_tables_net_ops);
1842         if (ret < 0)
1843                 goto err1;
1844
1845         /* Noone else will be downing sem now, so we won't sleep */
1846         ret = xt_register_target(&arpt_standard_target);
1847         if (ret < 0)
1848                 goto err2;
1849         ret = xt_register_target(&arpt_error_target);
1850         if (ret < 0)
1851                 goto err3;
1852
1853         /* Register setsockopt */
1854         ret = nf_register_sockopt(&arpt_sockopts);
1855         if (ret < 0)
1856                 goto err4;
1857
1858         printk(KERN_INFO "arp_tables: (C) 2002 David S. Miller\n");
1859         return 0;
1860
1861 err4:
1862         xt_unregister_target(&arpt_error_target);
1863 err3:
1864         xt_unregister_target(&arpt_standard_target);
1865 err2:
1866         unregister_pernet_subsys(&arp_tables_net_ops);
1867 err1:
1868         return ret;
1869 }
1870
1871 static void __exit arp_tables_fini(void)
1872 {
1873         nf_unregister_sockopt(&arpt_sockopts);
1874         xt_unregister_target(&arpt_error_target);
1875         xt_unregister_target(&arpt_standard_target);
1876         unregister_pernet_subsys(&arp_tables_net_ops);
1877 }
1878
1879 EXPORT_SYMBOL(arpt_register_table);
1880 EXPORT_SYMBOL(arpt_unregister_table);
1881 EXPORT_SYMBOL(arpt_do_table);
1882
1883 module_init(arp_tables_init);
1884 module_exit(arp_tables_fini);