include upstream ip1000a driver version 2.09f
[linux-2.4.git] / net / ipv4 / arp.c
1 /* linux/net/inet/arp.c
2  *
3  * Version:     $Id: arp.c,v 1.99 2001/08/30 22:55:42 davem Exp $
4  *
5  * Copyright (C) 1994 by Florian  La Roche
6  *
7  * This module implements the Address Resolution Protocol ARP (RFC 826),
8  * which is used to convert IP addresses (or in the future maybe other
9  * high-level addresses) into a low-level hardware address (like an Ethernet
10  * address).
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version
15  * 2 of the License, or (at your option) any later version.
16  *
17  * Fixes:
18  *              Alan Cox        :       Removed the Ethernet assumptions in 
19  *                                      Florian's code
20  *              Alan Cox        :       Fixed some small errors in the ARP 
21  *                                      logic
22  *              Alan Cox        :       Allow >4K in /proc
23  *              Alan Cox        :       Make ARP add its own protocol entry
24  *              Ross Martin     :       Rewrote arp_rcv() and arp_get_info()
25  *              Stephen Henson  :       Add AX25 support to arp_get_info()
26  *              Alan Cox        :       Drop data when a device is downed.
27  *              Alan Cox        :       Use init_timer().
28  *              Alan Cox        :       Double lock fixes.
29  *              Martin Seine    :       Move the arphdr structure
30  *                                      to if_arp.h for compatibility.
31  *                                      with BSD based programs.
32  *              Andrew Tridgell :       Added ARP netmask code and
33  *                                      re-arranged proxy handling.
34  *              Alan Cox        :       Changed to use notifiers.
35  *              Niibe Yutaka    :       Reply for this device or proxies only.
36  *              Alan Cox        :       Don't proxy across hardware types!
37  *              Jonathan Naylor :       Added support for NET/ROM.
38  *              Mike Shaver     :       RFC1122 checks.
39  *              Jonathan Naylor :       Only lookup the hardware address for
40  *                                      the correct hardware type.
41  *              Germano Caronni :       Assorted subtle races.
42  *              Craig Schlenter :       Don't modify permanent entry 
43  *                                      during arp_rcv.
44  *              Russ Nelson     :       Tidied up a few bits.
45  *              Alexey Kuznetsov:       Major changes to caching and behaviour,
46  *                                      eg intelligent arp probing and 
47  *                                      generation
48  *                                      of host down events.
49  *              Alan Cox        :       Missing unlock in device events.
50  *              Eckes           :       ARP ioctl control errors.
51  *              Alexey Kuznetsov:       Arp free fix.
52  *              Manuel Rodriguez:       Gratuitous ARP.
53  *              Jonathan Layes  :       Added arpd support through kerneld 
54  *                                      message queue (960314)
55  *              Mike Shaver     :       /proc/sys/net/ipv4/arp_* support
56  *              Mike McLagan    :       Routing by source
57  *              Stuart Cheshire :       Metricom and grat arp fixes
58  *                                      *** FOR 2.1 clean this up ***
59  *              Lawrence V. Stefani: (08/12/96) Added FDDI support.
60  *              Alan Cox        :       Took the AP1000 nasty FDDI hack and
61  *                                      folded into the mainstream FDDI code.
62  *                                      Ack spit, Linus how did you allow that
63  *                                      one in...
64  *              Jes Sorensen    :       Make FDDI work again in 2.1.x and
65  *                                      clean up the APFDDI & gen. FDDI bits.
66  *              Alexey Kuznetsov:       new arp state machine;
67  *                                      now it is in net/core/neighbour.c.
68  *              Krzysztof Halasa:       Added Frame Relay ARP support.
69  *              Shmulik Hen:            Split arp_send to arp_create and
70  *                                      arp_xmit so intermediate drivers like
71  *                                      bonding can change the skb before
72  *                                      sending (e.g. insert 8021q tag).
73  *              Harald Welte    :       convert to make use of jenkins hash
74  */
75
76 #include <linux/types.h>
77 #include <linux/string.h>
78 #include <linux/kernel.h>
79 #include <linux/module.h>
80 #include <linux/sched.h>
81 #include <linux/config.h>
82 #include <linux/socket.h>
83 #include <linux/sockios.h>
84 #include <linux/errno.h>
85 #include <linux/in.h>
86 #include <linux/mm.h>
87 #include <linux/inet.h>
88 #include <linux/netdevice.h>
89 #include <linux/etherdevice.h>
90 #include <linux/fddidevice.h>
91 #include <linux/if_arp.h>
92 #include <linux/trdevice.h>
93 #include <linux/skbuff.h>
94 #include <linux/proc_fs.h>
95 #include <linux/stat.h>
96 #include <linux/init.h>
97 #include <linux/jhash.h>
98 #include <linux/module.h>
99 #ifdef CONFIG_SYSCTL
100 #include <linux/sysctl.h>
101 #endif
102
103 #include <net/ip.h>
104 #include <net/icmp.h>
105 #include <net/route.h>
106 #include <net/protocol.h>
107 #include <net/tcp.h>
108 #include <net/sock.h>
109 #include <net/arp.h>
110 #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
111 #include <net/ax25.h>
112 #if defined(CONFIG_NETROM) || defined(CONFIG_NETROM_MODULE)
113 #include <net/netrom.h>
114 #endif
115 #endif
116 #if defined(CONFIG_ATM_CLIP) || defined(CONFIG_ATM_CLIP_MODULE)
117 #include <net/atmclip.h>
118 struct neigh_table *clip_tbl_hook;
119 #endif
120
121 #include <asm/system.h>
122 #include <asm/uaccess.h>
123
124 #include <linux/netfilter_arp.h>
125
126 /*
127  *      Interface to generic neighbour cache.
128  */
129 static u32 arp_hash(const void *pkey, const struct net_device *dev);
130 static int arp_constructor(struct neighbour *neigh);
131 static void arp_solicit(struct neighbour *neigh, struct sk_buff *skb);
132 static void arp_error_report(struct neighbour *neigh, struct sk_buff *skb);
133 static void parp_redo(struct sk_buff *skb);
134
135 static struct neigh_ops arp_generic_ops = {
136         family:                 AF_INET,
137         solicit:                arp_solicit,
138         error_report:           arp_error_report,
139         output:                 neigh_resolve_output,
140         connected_output:       neigh_connected_output,
141         hh_output:              dev_queue_xmit,
142         queue_xmit:             dev_queue_xmit,
143 };
144
145 static struct neigh_ops arp_hh_ops = {
146         family:                 AF_INET,
147         solicit:                arp_solicit,
148         error_report:           arp_error_report,
149         output:                 neigh_resolve_output,
150         connected_output:       neigh_resolve_output,
151         hh_output:              dev_queue_xmit,
152         queue_xmit:             dev_queue_xmit,
153 };
154
155 static struct neigh_ops arp_direct_ops = {
156         family:                 AF_INET,
157         output:                 dev_queue_xmit,
158         connected_output:       dev_queue_xmit,
159         hh_output:              dev_queue_xmit,
160         queue_xmit:             dev_queue_xmit,
161 };
162
163 struct neigh_ops arp_broken_ops = {
164         family:                 AF_INET,
165         solicit:                arp_solicit,
166         error_report:           arp_error_report,
167         output:                 neigh_compat_output,
168         connected_output:       neigh_compat_output,
169         hh_output:              dev_queue_xmit,
170         queue_xmit:             dev_queue_xmit,
171 };
172
173 struct neigh_table arp_tbl = {
174         family:         AF_INET,
175         entry_size:     sizeof(struct neighbour) + 4,
176         key_len:        4,
177         hash:           arp_hash,
178         constructor:    arp_constructor,
179         proxy_redo:     parp_redo,
180         id:             "arp_cache",
181         parms: {
182                 tbl:                    &arp_tbl,
183                 base_reachable_time:    30 * HZ,
184                 retrans_time:           1 * HZ,
185                 gc_staletime:           60 * HZ,
186                 reachable_time:         30 * HZ,
187                 delay_probe_time:       5 * HZ,
188                 queue_len:              3,
189                 ucast_probes:           3,
190                 mcast_probes:           3,
191                 anycast_delay:          1 * HZ,
192                 proxy_delay:            (8 * HZ) / 10,
193                 proxy_qlen:             64,
194                 locktime:               1 * HZ,
195         },
196         gc_interval:    30 * HZ,
197         gc_thresh1:     128,
198         gc_thresh2:     512,
199         gc_thresh3:     1024,
200 };
201
202 int arp_mc_map(u32 addr, u8 *haddr, struct net_device *dev, int dir)
203 {
204         switch (dev->type) {
205         case ARPHRD_ETHER:
206         case ARPHRD_FDDI:
207         case ARPHRD_IEEE802:
208                 ip_eth_mc_map(addr, haddr);
209                 return 0; 
210         case ARPHRD_IEEE802_TR:
211                 ip_tr_mc_map(addr, haddr);
212                 return 0;
213         default:
214                 if (dir) {
215                         memcpy(haddr, dev->broadcast, dev->addr_len);
216                         return 0;
217                 }
218         }
219         return -EINVAL;
220 }
221
222
223 static u32 arp_hash(const void *pkey, const struct net_device *dev)
224 {
225         return jhash_2words(*(u32 *)pkey, dev->ifindex, arp_tbl.hash_rnd);
226 }
227
228 static int arp_constructor(struct neighbour *neigh)
229 {
230         u32 addr = *(u32*)neigh->primary_key;
231         struct net_device *dev = neigh->dev;
232         struct in_device *in_dev = in_dev_get(dev);
233
234         if (in_dev == NULL)
235                 return -EINVAL;
236
237         neigh->type = inet_addr_type(addr);
238         if (in_dev->arp_parms)
239                 neigh->parms = in_dev->arp_parms;
240
241         in_dev_put(in_dev);
242
243         if (dev->hard_header == NULL) {
244                 neigh->nud_state = NUD_NOARP;
245                 neigh->ops = &arp_direct_ops;
246                 neigh->output = neigh->ops->queue_xmit;
247         } else {
248                 /* Good devices (checked by reading texts, but only Ethernet is
249                    tested)
250
251                    ARPHRD_ETHER: (ethernet, apfddi)
252                    ARPHRD_FDDI: (fddi)
253                    ARPHRD_IEEE802: (tr)
254                    ARPHRD_METRICOM: (strip)
255                    ARPHRD_ARCNET:
256                    etc. etc. etc.
257
258                    ARPHRD_IPDDP will also work, if author repairs it.
259                    I did not it, because this driver does not work even
260                    in old paradigm.
261                  */
262
263 #if 1
264                 /* So... these "amateur" devices are hopeless.
265                    The only thing, that I can say now:
266                    It is very sad that we need to keep ugly obsolete
267                    code to make them happy.
268
269                    They should be moved to more reasonable state, now
270                    they use rebuild_header INSTEAD OF hard_start_xmit!!!
271                    Besides that, they are sort of out of date
272                    (a lot of redundant clones/copies, useless in 2.1),
273                    I wonder why people believe that they work.
274                  */
275                 switch (dev->type) {
276                 default:
277                         break;
278                 case ARPHRD_ROSE:       
279 #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
280                 case ARPHRD_AX25:
281 #if defined(CONFIG_NETROM) || defined(CONFIG_NETROM_MODULE)
282                 case ARPHRD_NETROM:
283 #endif
284                         neigh->ops = &arp_broken_ops;
285                         neigh->output = neigh->ops->output;
286                         return 0;
287 #endif
288                 ;}
289 #endif
290                 if (neigh->type == RTN_MULTICAST) {
291                         neigh->nud_state = NUD_NOARP;
292                         arp_mc_map(addr, neigh->ha, dev, 1);
293                 } else if (dev->flags&(IFF_NOARP|IFF_LOOPBACK)) {
294                         neigh->nud_state = NUD_NOARP;
295                         memcpy(neigh->ha, dev->dev_addr, dev->addr_len);
296                 } else if (neigh->type == RTN_BROADCAST || dev->flags&IFF_POINTOPOINT) {
297                         neigh->nud_state = NUD_NOARP;
298                         memcpy(neigh->ha, dev->broadcast, dev->addr_len);
299                 }
300                 if (dev->hard_header_cache)
301                         neigh->ops = &arp_hh_ops;
302                 else
303                         neigh->ops = &arp_generic_ops;
304                 if (neigh->nud_state&NUD_VALID)
305                         neigh->output = neigh->ops->connected_output;
306                 else
307                         neigh->output = neigh->ops->output;
308         }
309         return 0;
310 }
311
312 static void arp_error_report(struct neighbour *neigh, struct sk_buff *skb)
313 {
314         dst_link_failure(skb);
315         kfree_skb(skb);
316 }
317
318 static void arp_solicit(struct neighbour *neigh, struct sk_buff *skb)
319 {
320         u32 saddr = 0;
321         u8  *dst_ha = NULL;
322         struct net_device *dev = neigh->dev;
323         u32 target = *(u32*)neigh->primary_key;
324         int probes = atomic_read(&neigh->probes);
325         struct in_device *in_dev = in_dev_get(dev);
326
327         if (!in_dev)
328                 return;
329
330         switch (IN_DEV_ARP_ANNOUNCE(in_dev)) {
331         default:
332         case 0:         /* By default announce any local IP */
333                 if (skb && inet_addr_type(skb->nh.iph->saddr) == RTN_LOCAL)
334                         saddr = skb->nh.iph->saddr;
335                 break;
336         case 1:         /* Restrict announcements of saddr in same subnet */
337                 if (!skb)
338                         break;
339                 saddr = skb->nh.iph->saddr;
340                 if (inet_addr_type(saddr) == RTN_LOCAL) {
341                         /* saddr should be known to target */
342                         if (inet_addr_onlink(in_dev, target, saddr))
343                                 break;
344                 }
345                 saddr = 0;
346                 break;
347         case 2:         /* Avoid secondary IPs, get a primary/preferred one */
348                 break;
349         }
350
351         if (in_dev)
352                 in_dev_put(in_dev);
353         if (!saddr)
354                 saddr = inet_select_addr(dev, target, RT_SCOPE_LINK);
355
356         if ((probes -= neigh->parms->ucast_probes) < 0) {
357                 if (!(neigh->nud_state&NUD_VALID))
358                         printk(KERN_DEBUG "trying to ucast probe in NUD_INVALID\n");
359                 dst_ha = neigh->ha;
360                 read_lock_bh(&neigh->lock);
361         } else if ((probes -= neigh->parms->app_probes) < 0) {
362 #ifdef CONFIG_ARPD
363                 neigh_app_ns(neigh);
364 #endif
365                 return;
366         }
367
368         arp_send(ARPOP_REQUEST, ETH_P_ARP, target, dev, saddr,
369                  dst_ha, dev->dev_addr, NULL);
370         if (dst_ha)
371                 read_unlock_bh(&neigh->lock);
372 }
373
374 static int arp_ignore(struct in_device *in_dev, struct net_device *dev,
375                       u32 sip, u32 tip)
376 {
377         int scope;
378
379         switch (IN_DEV_ARP_IGNORE(in_dev)) {
380         case 0: /* Reply, the tip is already validated */
381                 return 0;
382         case 1: /* Reply only if tip is configured on the incoming interface */
383                 sip = 0;
384                 scope = RT_SCOPE_HOST;
385                 break;
386         case 2: /*
387                  * Reply only if tip is configured on the incoming interface
388                  * and is in same subnet as sip
389                  */
390                 scope = RT_SCOPE_HOST;
391                 break;
392         case 3: /* Do not reply for scope host addresses */
393                 sip = 0;
394                 scope = RT_SCOPE_LINK;
395                 dev = NULL;
396                 break;
397         case 4: /* Reserved */
398         case 5:
399         case 6:
400         case 7:
401                 return 0;
402         case 8: /* Do not reply */
403                 return 1;
404         default:
405                 return 0;
406         }
407         return !inet_confirm_addr(dev, sip, tip, scope);
408 }
409
410 static int arp_filter(__u32 sip, __u32 tip, struct net_device *dev)
411 {
412         struct rtable *rt;
413         int flag = 0; 
414         /*unsigned long now; */
415
416         if (ip_route_output(&rt, sip, tip, 0, 0) < 0) 
417                 return 1;
418         if (rt->u.dst.dev != dev) { 
419                 NET_INC_STATS_BH(ArpFilter);
420                 flag = 1;
421         } 
422         ip_rt_put(rt); 
423         return flag; 
424
425
426 /* OBSOLETE FUNCTIONS */
427
428 /*
429  *      Find an arp mapping in the cache. If not found, post a request.
430  *
431  *      It is very UGLY routine: it DOES NOT use skb->dst->neighbour,
432  *      even if it exists. It is supposed that skb->dev was mangled
433  *      by a virtual device (eql, shaper). Nobody but broken devices
434  *      is allowed to use this function, it is scheduled to be removed. --ANK
435  */
436
437 static int arp_set_predefined(int addr_hint, unsigned char * haddr, u32 paddr, struct net_device * dev)
438 {
439         switch (addr_hint) {
440         case RTN_LOCAL:
441                 printk(KERN_DEBUG "ARP: arp called for own IP address\n");
442                 memcpy(haddr, dev->dev_addr, dev->addr_len);
443                 return 1;
444         case RTN_MULTICAST:
445                 arp_mc_map(paddr, haddr, dev, 1);
446                 return 1;
447         case RTN_BROADCAST:
448                 memcpy(haddr, dev->broadcast, dev->addr_len);
449                 return 1;
450         }
451         return 0;
452 }
453
454
455 int arp_find(unsigned char *haddr, struct sk_buff *skb)
456 {
457         struct net_device *dev = skb->dev;
458         u32 paddr;
459         struct neighbour *n;
460
461         if (!skb->dst) {
462                 printk(KERN_DEBUG "arp_find is called with dst==NULL\n");
463                 kfree_skb(skb);
464                 return 1;
465         }
466
467         paddr = ((struct rtable*)skb->dst)->rt_gateway;
468
469         if (arp_set_predefined(inet_addr_type(paddr), haddr, paddr, dev))
470                 return 0;
471
472         n = __neigh_lookup(&arp_tbl, &paddr, dev, 1);
473
474         if (n) {
475                 n->used = jiffies;
476                 if (n->nud_state&NUD_VALID || neigh_event_send(n, skb) == 0) {
477                         read_lock_bh(&n->lock);
478                         memcpy(haddr, n->ha, dev->addr_len);
479                         read_unlock_bh(&n->lock);
480                         neigh_release(n);
481                         return 0;
482                 }
483                 neigh_release(n);
484         } else
485                 kfree_skb(skb);
486         return 1;
487 }
488
489 /* END OF OBSOLETE FUNCTIONS */
490
491 int arp_bind_neighbour(struct dst_entry *dst)
492 {
493         struct net_device *dev = dst->dev;
494         struct neighbour *n = dst->neighbour;
495
496         if (dev == NULL)
497                 return -EINVAL;
498         if (n == NULL) {
499                 u32 nexthop = ((struct rtable*)dst)->rt_gateway;
500                 if (dev->flags&(IFF_LOOPBACK|IFF_POINTOPOINT))
501                         nexthop = 0;
502                 n = __neigh_lookup_errno(
503 #if defined(CONFIG_ATM_CLIP) || defined(CONFIG_ATM_CLIP_MODULE)
504                     dev->type == ARPHRD_ATM ? clip_tbl_hook :
505 #endif
506                     &arp_tbl, &nexthop, dev);
507                 if (IS_ERR(n))
508                         return PTR_ERR(n);
509                 dst->neighbour = n;
510         }
511         return 0;
512 }
513
514 /*
515  * Check if we can use proxy ARP for this path
516  */
517
518 static inline int arp_fwd_proxy(struct in_device *in_dev, struct rtable *rt)
519 {
520         struct in_device *out_dev;
521         int imi, omi = -1;
522
523         if (!IN_DEV_PROXY_ARP(in_dev))
524                 return 0;
525
526         if ((imi = IN_DEV_MEDIUM_ID(in_dev)) == 0)
527                 return 1;
528         if (imi == -1)
529                 return 0;
530
531         /* place to check for proxy_arp for routes */
532
533         if ((out_dev = in_dev_get(rt->u.dst.dev)) != NULL) {
534                 omi = IN_DEV_MEDIUM_ID(out_dev);
535                 in_dev_put(out_dev);
536         }
537         return (omi != imi && omi != -1);
538 }
539
540 /*
541  *      Interface to link layer: send routine and receive handler.
542  */
543
544 /*
545  *      Create an arp packet. If (dest_hw == NULL), we create a broadcast
546  *      message.
547  */
548 struct sk_buff *arp_create(int type, int ptype, u32 dest_ip,
549                            struct net_device *dev, u32 src_ip,
550                            unsigned char *dest_hw, unsigned char *src_hw,
551                            unsigned char *target_hw)
552 {
553         struct sk_buff *skb;
554         struct arphdr *arp;
555         unsigned char *arp_ptr;
556
557         /*
558          *      Allocate a buffer
559          */
560         
561         skb = alloc_skb(sizeof(struct arphdr)+ 2*(dev->addr_len+4)
562                                 + dev->hard_header_len + 15, GFP_ATOMIC);
563         if (skb == NULL)
564                 return NULL;
565
566         skb_reserve(skb, (dev->hard_header_len+15)&~15);
567         skb->nh.raw = skb->data;
568         arp = (struct arphdr *) skb_put(skb,sizeof(struct arphdr) + 2*(dev->addr_len+4));
569         skb->dev = dev;
570         skb->protocol = htons (ETH_P_ARP);
571         if (src_hw == NULL)
572                 src_hw = dev->dev_addr;
573         if (dest_hw == NULL)
574                 dest_hw = dev->broadcast;
575
576         /*
577          *      Fill the device header for the ARP frame
578          */
579         if (dev->hard_header &&
580             dev->hard_header(skb,dev,ptype,dest_hw,src_hw,skb->len) < 0)
581                 goto out;
582
583         /*
584          * Fill out the arp protocol part.
585          *
586          * The arp hardware type should match the device type, except for FDDI,
587          * which (according to RFC 1390) should always equal 1 (Ethernet).
588          */
589         /*
590          *      Exceptions everywhere. AX.25 uses the AX.25 PID value not the
591          *      DIX code for the protocol. Make these device structure fields.
592          */
593         switch (dev->type) {
594         default:
595                 arp->ar_hrd = htons(dev->type);
596                 arp->ar_pro = htons(ETH_P_IP);
597                 break;
598
599 #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
600         case ARPHRD_AX25:
601                 arp->ar_hrd = htons(ARPHRD_AX25);
602                 arp->ar_pro = htons(AX25_P_IP);
603                 break;
604
605 #if defined(CONFIG_NETROM) || defined(CONFIG_NETROM_MODULE)
606         case ARPHRD_NETROM:
607                 arp->ar_hrd = htons(ARPHRD_NETROM);
608                 arp->ar_pro = htons(AX25_P_IP);
609                 break;
610 #endif
611 #endif
612
613 #ifdef CONFIG_FDDI
614         case ARPHRD_FDDI:
615                 arp->ar_hrd = htons(ARPHRD_ETHER);
616                 arp->ar_pro = htons(ETH_P_IP);
617                 break;
618 #endif
619 #ifdef CONFIG_TR
620         case ARPHRD_IEEE802_TR:
621                 arp->ar_hrd = htons(ARPHRD_IEEE802);
622                 arp->ar_pro = htons(ETH_P_IP);
623                 break;
624 #endif
625         }
626
627         arp->ar_hln = dev->addr_len;
628         arp->ar_pln = 4;
629         arp->ar_op = htons(type);
630
631         arp_ptr=(unsigned char *)(arp+1);
632
633         memcpy(arp_ptr, src_hw, dev->addr_len);
634         arp_ptr+=dev->addr_len;
635         memcpy(arp_ptr, &src_ip,4);
636         arp_ptr+=4;
637         if (target_hw != NULL)
638                 memcpy(arp_ptr, target_hw, dev->addr_len);
639         else
640                 memset(arp_ptr, 0, dev->addr_len);
641         arp_ptr+=dev->addr_len;
642         memcpy(arp_ptr, &dest_ip, 4);
643
644         return skb;
645
646 out:
647         kfree_skb(skb);
648         return NULL;
649 }
650
651 /*
652  *      Send an arp packet.
653  */
654 void arp_xmit(struct sk_buff *skb)
655 {
656         /* Send it off, maybe filter it using firewalling first.  */
657         NF_HOOK(NF_ARP, NF_ARP_OUT, skb, NULL, skb->dev, dev_queue_xmit);
658 }
659
660 /*
661  *      Create and send an arp packet.
662  */
663 void arp_send(int type, int ptype, u32 dest_ip, 
664               struct net_device *dev, u32 src_ip, 
665               unsigned char *dest_hw, unsigned char *src_hw,
666               unsigned char *target_hw)
667 {
668         struct sk_buff *skb;
669
670         /*
671          *      No arp on this interface.
672          */
673         
674         if (dev->flags&IFF_NOARP)
675                 return;
676
677         skb = arp_create(type, ptype, dest_ip, dev, src_ip,
678                          dest_hw, src_hw, target_hw);
679         if (skb == NULL) {
680                 return;
681         }
682
683         arp_xmit(skb);
684 }
685
686 static void parp_redo(struct sk_buff *skb)
687 {
688         arp_rcv(skb, skb->dev, NULL);
689 }
690
691 /*
692  *      Process an arp request.
693  */
694
695 int arp_process(struct sk_buff *skb)
696 {
697         struct net_device *dev = skb->dev;
698         struct in_device *in_dev = in_dev_get(dev);
699         struct arphdr *arp;
700         unsigned char *arp_ptr;
701         struct rtable *rt;
702         unsigned char *sha, *tha;
703         u32 sip, tip;
704         u16 dev_type = dev->type;
705         int addr_type;
706         struct neighbour *n;
707
708         /* arp_rcv below verifies the ARP header, verifies the device
709          * is ARP'able, and linearizes the SKB (if needed).
710          */
711
712         if (in_dev == NULL)
713                 goto out;
714
715         arp = skb->nh.arph;
716         arp_ptr= (unsigned char *)(arp+1);
717
718         switch (dev_type) {
719         default:        
720                 if (arp->ar_pro != htons(ETH_P_IP))
721                         goto out;
722                 if (htons(dev_type) != arp->ar_hrd)
723                         goto out;
724                 break;
725 #ifdef CONFIG_NET_ETHERNET
726         case ARPHRD_ETHER:
727                 /*
728                  * ETHERNET devices will accept ARP hardware types of either
729                  * 1 (Ethernet) or 6 (IEEE 802.2).
730                  */
731                 if (arp->ar_hrd != htons(ARPHRD_ETHER) &&
732                     arp->ar_hrd != htons(ARPHRD_IEEE802))
733                         goto out;
734                 if (arp->ar_pro != htons(ETH_P_IP))
735                         goto out;
736                 break;
737 #endif
738 #ifdef CONFIG_TR
739         case ARPHRD_IEEE802_TR:
740                 /*
741                  * Token ring devices will accept ARP hardware types of either
742                  * 1 (Ethernet) or 6 (IEEE 802.2).
743                  */
744                 if (arp->ar_hrd != htons(ARPHRD_ETHER) &&
745                     arp->ar_hrd != htons(ARPHRD_IEEE802))
746                         goto out;
747                 if (arp->ar_pro != htons(ETH_P_IP))
748                         goto out;
749                 break;
750 #endif
751 #ifdef CONFIG_FDDI
752         case ARPHRD_FDDI:
753                 /*
754                  * According to RFC 1390, FDDI devices should accept ARP hardware types
755                  * of 1 (Ethernet).  However, to be more robust, we'll accept hardware
756                  * types of either 1 (Ethernet) or 6 (IEEE 802.2).
757                  */
758                 if (arp->ar_hrd != htons(ARPHRD_ETHER) &&
759                     arp->ar_hrd != htons(ARPHRD_IEEE802))
760                         goto out;
761                 if (arp->ar_pro != htons(ETH_P_IP))
762                         goto out;
763                 break;
764 #endif
765 #ifdef CONFIG_NET_FC
766         case ARPHRD_IEEE802:
767                 /*
768                  * According to RFC 2625, Fibre Channel devices (which are IEEE
769                  * 802 devices) should accept ARP hardware types of 6 (IEEE 802)
770                  * and 1 (Ethernet).
771                  */
772                 if (arp->ar_hrd != htons(ARPHRD_ETHER) &&
773                     arp->ar_hrd != htons(ARPHRD_IEEE802))
774                         goto out;
775                 if (arp->ar_pro != htons(ETH_P_IP))
776                         goto out;
777                 break;
778 #endif
779 #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
780         case ARPHRD_AX25:
781                 if (arp->ar_pro != htons(AX25_P_IP))
782                         goto out;
783                 if (arp->ar_hrd != htons(ARPHRD_AX25))
784                         goto out;
785                 break;
786 #if defined(CONFIG_NETROM) || defined(CONFIG_NETROM_MODULE)
787         case ARPHRD_NETROM:
788                 if (arp->ar_pro != htons(AX25_P_IP))
789                         goto out;
790                 if (arp->ar_hrd != htons(ARPHRD_NETROM))
791                         goto out;
792                 break;
793 #endif
794 #endif
795         }
796
797         /* Understand only these message types */
798
799         if (arp->ar_op != htons(ARPOP_REPLY) &&
800             arp->ar_op != htons(ARPOP_REQUEST))
801                 goto out;
802
803 /*
804  *      Extract fields
805  */
806         sha=arp_ptr;
807         arp_ptr += dev->addr_len;
808         memcpy(&sip, arp_ptr, 4);
809         arp_ptr += 4;
810         tha=arp_ptr;
811         arp_ptr += dev->addr_len;
812         memcpy(&tip, arp_ptr, 4);
813 /* 
814  *      Check for bad requests for 127.x.x.x and requests for multicast
815  *      addresses.  If this is one such, delete it.
816  */
817         if (LOOPBACK(tip) || MULTICAST(tip))
818                 goto out;
819
820 /*
821  *     Special case: We must set Frame Relay source Q.922 address
822  */
823         if (dev_type == ARPHRD_DLCI)
824                 sha = dev->broadcast;
825
826 /*
827  *  Process entry.  The idea here is we want to send a reply if it is a
828  *  request for us or if it is a request for someone else that we hold
829  *  a proxy for.  We want to add an entry to our cache if it is a reply
830  *  to us or if it is a request for our address.  
831  *  (The assumption for this last is that if someone is requesting our 
832  *  address, they are probably intending to talk to us, so it saves time 
833  *  if we cache their address.  Their address is also probably not in 
834  *  our cache, since ours is not in their cache.)
835  * 
836  *  Putting this another way, we only care about replies if they are to
837  *  us, in which case we add them to the cache.  For requests, we care
838  *  about those for us and those for our proxies.  We reply to both,
839  *  and in the case of requests for us we add the requester to the arp 
840  *  cache.
841  */
842
843         /* Special case: IPv4 duplicate address detection packet (RFC2131) */
844         if (sip == 0) {
845                 if (arp->ar_op == htons(ARPOP_REQUEST) &&
846                     inet_addr_type(tip) == RTN_LOCAL &&
847                     !arp_ignore(in_dev,dev,sip,tip))
848                         arp_send(ARPOP_REPLY,ETH_P_ARP,tip,dev,tip,sha,dev->dev_addr,dev->dev_addr);
849                 goto out;
850         }
851
852         if (arp->ar_op == htons(ARPOP_REQUEST) &&
853             ip_route_input(skb, tip, sip, 0, dev) == 0) {
854
855                 rt = (struct rtable*)skb->dst;
856                 addr_type = rt->rt_type;
857
858                 if (addr_type == RTN_LOCAL) {
859                         n = neigh_event_ns(&arp_tbl, sha, &sip, dev);
860                         if (n) {
861                                 int dont_send = 0;
862
863                                 if (!dont_send)
864                                         dont_send |= arp_ignore(in_dev,dev,sip,tip);
865                                 if (!dont_send && IN_DEV_ARPFILTER(in_dev))
866                                         dont_send |= arp_filter(sip,tip,dev); 
867                                 if (!dont_send)
868                                         arp_send(ARPOP_REPLY,ETH_P_ARP,sip,dev,tip,sha,dev->dev_addr,sha);
869
870                                 neigh_release(n);
871                         }
872                         goto out;
873                 } else if (IN_DEV_FORWARD(in_dev)) {
874                         if ((rt->rt_flags&RTCF_DNAT) ||
875                             (addr_type == RTN_UNICAST  && rt->u.dst.dev != dev &&
876                              (arp_fwd_proxy(in_dev, rt) || pneigh_lookup(&arp_tbl, &tip, dev, 0)))) {
877                                 n = neigh_event_ns(&arp_tbl, sha, &sip, dev);
878                                 if (n)
879                                         neigh_release(n);
880
881                                 if (skb->stamp.tv_sec == 0 ||
882                                     skb->pkt_type == PACKET_HOST ||
883                                     in_dev->arp_parms->proxy_delay == 0) {
884                                         arp_send(ARPOP_REPLY,ETH_P_ARP,sip,dev,tip,sha,dev->dev_addr,sha);
885                                 } else {
886                                         pneigh_enqueue(&arp_tbl, in_dev->arp_parms, skb);
887                                         in_dev_put(in_dev);
888                                         return 0;
889                                 }
890                                 goto out;
891                         }
892                 }
893         }
894
895         /* Update our ARP tables */
896
897         n = __neigh_lookup(&arp_tbl, &sip, dev, 0);
898
899 #ifdef CONFIG_IP_ACCEPT_UNSOLICITED_ARP
900         /* Unsolicited ARP is not accepted by default.
901            It is possible, that this option should be enabled for some
902            devices (strip is candidate)
903          */
904         if (n == NULL &&
905             arp->ar_op == htons(ARPOP_REPLY) &&
906             inet_addr_type(sip) == RTN_UNICAST)
907                 n = __neigh_lookup(&arp_tbl, &sip, dev, -1);
908 #endif
909
910         if (n) {
911                 int state = NUD_REACHABLE;
912                 int override = 0;
913
914                 /* If several different ARP replies follows back-to-back,
915                    use the FIRST one. It is possible, if several proxy
916                    agents are active. Taking the first reply prevents
917                    arp trashing and chooses the fastest router.
918                  */
919                 if (jiffies - n->updated >= n->parms->locktime)
920                         override = 1;
921
922                 /* Broadcast replies and request packets
923                    do not assert neighbour reachability.
924                  */
925                 if (arp->ar_op != htons(ARPOP_REPLY) ||
926                     skb->pkt_type != PACKET_HOST)
927                         state = NUD_STALE;
928                 neigh_update(n, sha, state, override, 1);
929                 neigh_release(n);
930         }
931
932 out:
933         if (in_dev)
934                 in_dev_put(in_dev);
935         kfree_skb(skb);
936         return 0;
937 }
938
939
940 /*
941  *      Receive an arp request from the device layer.
942  */
943
944 int arp_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt)
945 {
946         struct arphdr *arp;
947
948         /* ARP header, plus 2 device addresses, plus 2 IP addresses.  */
949         if (!pskb_may_pull(skb, (sizeof(struct arphdr) +
950                                  (2 * dev->addr_len) +
951                                  (2 * sizeof(u32)))))
952                 goto freeskb;
953
954         arp = skb->nh.arph;
955         if (arp->ar_hln != dev->addr_len ||
956             dev->flags & IFF_NOARP ||
957             skb->pkt_type == PACKET_OTHERHOST ||
958             skb->pkt_type == PACKET_LOOPBACK ||
959             arp->ar_pln != 4)
960                 goto freeskb;
961
962         if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)
963                 goto out_of_mem;
964
965         return NF_HOOK(NF_ARP, NF_ARP_IN, skb, dev, NULL, arp_process);
966
967 freeskb:
968         kfree_skb(skb);
969 out_of_mem:
970         return 0;
971 }
972
973 /*
974  *      User level interface (ioctl, /proc)
975  */
976
977 /*
978  *      Set (create) an ARP cache entry.
979  */
980
981 int arp_req_set(struct arpreq *r, struct net_device * dev)
982 {
983         u32 ip = ((struct sockaddr_in *) &r->arp_pa)->sin_addr.s_addr;
984         struct neighbour *neigh;
985         int err;
986
987         if (r->arp_flags&ATF_PUBL) {
988                 u32 mask = ((struct sockaddr_in *) &r->arp_netmask)->sin_addr.s_addr;
989                 if (mask && mask != 0xFFFFFFFF)
990                         return -EINVAL;
991                 if (!dev && (r->arp_flags & ATF_COM)) {
992                         dev = dev_getbyhwaddr(r->arp_ha.sa_family, r->arp_ha.sa_data);
993                         if (!dev)
994                                 return -ENODEV;
995                 }
996                 if (mask) {
997                         if (pneigh_lookup(&arp_tbl, &ip, dev, 1) == NULL)
998                                 return -ENOBUFS;
999                         return 0;
1000                 }
1001                 if (dev == NULL) {
1002                         ipv4_devconf.proxy_arp = 1;
1003                         return 0;
1004                 }
1005                 if (__in_dev_get(dev)) {
1006                         __in_dev_get(dev)->cnf.proxy_arp = 1;
1007                         return 0;
1008                 }
1009                 return -ENXIO;
1010         }
1011
1012         if (r->arp_flags & ATF_PERM)
1013                 r->arp_flags |= ATF_COM;
1014         if (dev == NULL) {
1015                 struct rtable * rt;
1016                 if ((err = ip_route_output(&rt, ip, 0, RTO_ONLINK, 0)) != 0)
1017                         return err;
1018                 dev = rt->u.dst.dev;
1019                 ip_rt_put(rt);
1020                 if (!dev)
1021                         return -EINVAL;
1022         }
1023         switch (dev->type) {
1024 #ifdef CONFIG_FDDI
1025         case ARPHRD_FDDI:
1026                 /*
1027                  * According to RFC 1390, FDDI devices should accept ARP
1028                  * hardware types of 1 (Ethernet).  However, to be more
1029                  * robust, we'll accept hardware types of either 1 (Ethernet)
1030                  * or 6 (IEEE 802.2).
1031                  */
1032                 if (r->arp_ha.sa_family != ARPHRD_FDDI &&
1033                     r->arp_ha.sa_family != ARPHRD_ETHER &&
1034                     r->arp_ha.sa_family != ARPHRD_IEEE802)
1035                         return -EINVAL;
1036                 break;
1037 #endif
1038         default:
1039                 if (r->arp_ha.sa_family != dev->type)
1040                         return -EINVAL;
1041                 break;
1042         }
1043
1044         neigh = __neigh_lookup_errno(&arp_tbl, &ip, dev);
1045         err = PTR_ERR(neigh);
1046         if (!IS_ERR(neigh)) {
1047                 unsigned state = NUD_STALE;
1048                 if (r->arp_flags & ATF_PERM)
1049                         state = NUD_PERMANENT;
1050                 err = neigh_update(neigh, (r->arp_flags&ATF_COM) ?
1051                                    r->arp_ha.sa_data : NULL, state, 1, 0);
1052                 neigh_release(neigh);
1053         }
1054         return err;
1055 }
1056
1057 static unsigned arp_state_to_flags(struct neighbour *neigh)
1058 {
1059         unsigned flags = 0;
1060         if (neigh->nud_state&NUD_PERMANENT)
1061                 flags = ATF_PERM|ATF_COM;
1062         else if (neigh->nud_state&NUD_VALID)
1063                 flags = ATF_COM;
1064         return flags;
1065 }
1066
1067 /*
1068  *      Get an ARP cache entry.
1069  */
1070
1071 static int arp_req_get(struct arpreq *r, struct net_device *dev)
1072 {
1073         u32 ip = ((struct sockaddr_in *) &r->arp_pa)->sin_addr.s_addr;
1074         struct neighbour *neigh;
1075         int err = -ENXIO;
1076
1077         neigh = neigh_lookup(&arp_tbl, &ip, dev);
1078         if (neigh) {
1079                 read_lock_bh(&neigh->lock);
1080                 memcpy(r->arp_ha.sa_data, neigh->ha, dev->addr_len);
1081                 r->arp_flags = arp_state_to_flags(neigh);
1082                 read_unlock_bh(&neigh->lock);
1083                 r->arp_ha.sa_family = dev->type;
1084                 strncpy(r->arp_dev, dev->name, sizeof(r->arp_dev));
1085                 neigh_release(neigh);
1086                 err = 0;
1087         }
1088         return err;
1089 }
1090
1091 int arp_req_delete(struct arpreq *r, struct net_device * dev)
1092 {
1093         int err;
1094         u32 ip = ((struct sockaddr_in *)&r->arp_pa)->sin_addr.s_addr;
1095         struct neighbour *neigh;
1096
1097         if (r->arp_flags & ATF_PUBL) {
1098                 u32 mask = ((struct sockaddr_in *) &r->arp_netmask)->sin_addr.s_addr;
1099                 if (mask == 0xFFFFFFFF)
1100                         return pneigh_delete(&arp_tbl, &ip, dev);
1101                 if (mask == 0) {
1102                         if (dev == NULL) {
1103                                 ipv4_devconf.proxy_arp = 0;
1104                                 return 0;
1105                         }
1106                         if (__in_dev_get(dev)) {
1107                                 __in_dev_get(dev)->cnf.proxy_arp = 0;
1108                                 return 0;
1109                         }
1110                         return -ENXIO;
1111                 }
1112                 return -EINVAL;
1113         }
1114
1115         if (dev == NULL) {
1116                 struct rtable * rt;
1117                 if ((err = ip_route_output(&rt, ip, 0, RTO_ONLINK, 0)) != 0)
1118                         return err;
1119                 dev = rt->u.dst.dev;
1120                 ip_rt_put(rt);
1121                 if (!dev)
1122                         return -EINVAL;
1123         }
1124         err = -ENXIO;
1125         neigh = neigh_lookup(&arp_tbl, &ip, dev);
1126         if (neigh) {
1127                 if (neigh->nud_state&~NUD_NOARP)
1128                         err = neigh_update(neigh, NULL, NUD_FAILED, 1, 0);
1129                 neigh_release(neigh);
1130         }
1131         return err;
1132 }
1133
1134 /*
1135  *      Handle an ARP layer I/O control request.
1136  */
1137
1138 int arp_ioctl(unsigned int cmd, void *arg)
1139 {
1140         int err;
1141         struct arpreq r;
1142         struct net_device * dev = NULL;
1143
1144         switch(cmd) {
1145                 case SIOCDARP:
1146                 case SIOCSARP:
1147                         if (!capable(CAP_NET_ADMIN))
1148                                 return -EPERM;
1149                 case SIOCGARP:
1150                         err = copy_from_user(&r, arg, sizeof(struct arpreq));
1151                         if (err)
1152                                 return -EFAULT;
1153                         break;
1154                 default:
1155                         return -EINVAL;
1156         }
1157
1158         if (r.arp_pa.sa_family != AF_INET)
1159                 return -EPFNOSUPPORT;
1160
1161         if (!(r.arp_flags & ATF_PUBL) &&
1162             (r.arp_flags & (ATF_NETMASK|ATF_DONTPUB)))
1163                 return -EINVAL;
1164         if (!(r.arp_flags & ATF_NETMASK))
1165                 ((struct sockaddr_in *)&r.arp_netmask)->sin_addr.s_addr=htonl(0xFFFFFFFFUL);
1166
1167         rtnl_lock();
1168         if (r.arp_dev[0]) {
1169                 err = -ENODEV;
1170                 if ((dev = __dev_get_by_name(r.arp_dev)) == NULL)
1171                         goto out;
1172
1173                 /* Mmmm... It is wrong... ARPHRD_NETROM==0 */
1174                 if (!r.arp_ha.sa_family)
1175                         r.arp_ha.sa_family = dev->type;
1176                 err = -EINVAL;
1177                 if ((r.arp_flags & ATF_COM) && r.arp_ha.sa_family != dev->type)
1178                         goto out;
1179         } else if (cmd == SIOCGARP) {
1180                 err = -ENODEV;
1181                 goto out;
1182         }
1183
1184         switch(cmd) {
1185         case SIOCDARP:
1186                 err = arp_req_delete(&r, dev);
1187                 break;
1188         case SIOCSARP:
1189                 err = arp_req_set(&r, dev);
1190                 break;
1191         case SIOCGARP:
1192                 err = arp_req_get(&r, dev);
1193                 if (!err && copy_to_user(arg, &r, sizeof(r)))
1194                         err = -EFAULT;
1195                 break;
1196         }
1197 out:
1198         rtnl_unlock();
1199         return err;
1200 }
1201
1202 #ifdef CONFIG_PROC_FS
1203 #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
1204
1205 /* ------------------------------------------------------------------------ */
1206 /*
1207  *      ax25 -> ASCII conversion
1208  */
1209 static char *ax2asc2(ax25_address *a, char *buf)
1210 {
1211         char c, *s;
1212         int n;
1213
1214         for (n = 0, s = buf; n < 6; n++) {
1215                 c = (a->ax25_call[n] >> 1) & 0x7F;
1216
1217                 if (c != ' ') *s++ = c;
1218         }
1219         
1220         *s++ = '-';
1221
1222         if ((n = ((a->ax25_call[6] >> 1) & 0x0F)) > 9) {
1223                 *s++ = '1';
1224                 n -= 10;
1225         }
1226         
1227         *s++ = n + '0';
1228         *s++ = '\0';
1229
1230         if (*buf == '\0' || *buf == '-')
1231            return "*";
1232
1233         return buf;
1234
1235 }
1236 #endif /* CONFIG_AX25 */
1237
1238 #define HBUFFERLEN 30
1239
1240 static void arp_format_neigh_entry(struct seq_file *seq,
1241                                    struct neighbour *n)
1242 {
1243         char hbuffer[HBUFFERLEN];
1244         const char hexbuf[] =  "0123456789ABCDEF";
1245         int k, j;
1246         char tbuf[16];
1247         struct net_device *dev = n->dev;
1248         int hatype = dev->type;
1249
1250         read_lock(&n->lock);
1251
1252         /* Convert hardware address to XX:XX:XX:XX ... form. */
1253 #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
1254         if (hatype == ARPHRD_AX25 || hatype == ARPHRD_NETROM)
1255                 ax2asc2((ax25_address *)n->ha, hbuffer);
1256         else {
1257 #endif
1258         for (k=0,j=0;k<HBUFFERLEN-3 && j<dev->addr_len;j++) {
1259                 hbuffer[k++]=hexbuf[(n->ha[j]>>4)&15 ];
1260                 hbuffer[k++]=hexbuf[n->ha[j]&15     ];
1261                 hbuffer[k++]=':';
1262         }
1263         hbuffer[--k]=0;
1264 #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
1265         }
1266 #endif
1267         sprintf(tbuf, "%u.%u.%u.%u", NIPQUAD(*(u32*)n->primary_key));
1268         seq_printf(seq, "%-16s 0x%-10x0x%-10x%s     *        %s\n",
1269                    tbuf, hatype, arp_state_to_flags(n), hbuffer, dev->name);
1270         read_unlock(&n->lock);
1271 }
1272
1273 static void arp_format_pneigh_entry(struct seq_file *seq,
1274                                     struct pneigh_entry *n)
1275 {
1276         struct net_device *dev = n->dev;
1277         int hatype = dev ? dev->type : 0;
1278         char tbuf[16];
1279
1280         sprintf(tbuf, "%u.%u.%u.%u", NIPQUAD(*(u32*)n->key));
1281         seq_printf(seq, "%-16s 0x%-10x0x%-10x%s     *        %s\n",
1282                    tbuf, hatype, ATF_PUBL | ATF_PERM, "00:00:00:00:00:00",
1283                    dev ? dev->name : "*");
1284 }
1285
1286 static int arp_seq_show(struct seq_file *seq, void *v)
1287 {
1288         if (v == SEQ_START_TOKEN) {
1289                 seq_puts(seq, "IP address       HW type     Flags       "
1290                               "HW address            Mask     Device\n");
1291         } else {
1292                 struct neigh_seq_state *state = seq->private;
1293
1294                 if (state->flags & NEIGH_SEQ_IS_PNEIGH)
1295                         arp_format_pneigh_entry(seq, v);
1296                 else
1297                         arp_format_neigh_entry(seq, v);
1298         }
1299
1300         return 0;
1301 }
1302
1303 static void *arp_seq_start(struct seq_file *seq, loff_t *pos)
1304 {
1305         /* Don't want to confuse "arp -a" w/ magic entries,
1306          * so we tell the generic iterator to skip NUD_NOARP.
1307          */
1308         return neigh_seq_start(seq, pos, &arp_tbl, NEIGH_SEQ_SKIP_NOARP);
1309 }
1310
1311 /* ------------------------------------------------------------------------ */
1312
1313 static struct seq_operations arp_seq_ops = {
1314         .start  = arp_seq_start,
1315         .next   = neigh_seq_next,
1316         .stop   = neigh_seq_stop,
1317         .show   = arp_seq_show,
1318 };
1319
1320 static int arp_seq_open(struct inode *inode, struct file *file)
1321 {
1322         struct seq_file *seq;
1323         int rc = -ENOMEM;
1324         struct neigh_seq_state *s = kmalloc(sizeof(*s), GFP_KERNEL);
1325
1326         if (!s)
1327                 goto out;
1328
1329         memset(s, 0, sizeof(*s));
1330         rc = seq_open(file, &arp_seq_ops);
1331         if (rc)
1332                 goto out_kfree;
1333
1334         seq = file->private_data;
1335         seq->private = s;
1336 out:
1337         return rc;
1338 out_kfree:
1339         kfree(s);
1340         goto out;
1341 }
1342
1343 static struct file_operations arp_seq_fops = {
1344         .owner          = THIS_MODULE,
1345         .open           = arp_seq_open,
1346         .read           = seq_read,
1347         .llseek         = seq_lseek,
1348         .release        = seq_release_private,
1349 };
1350 #endif /* CONFIG_PROC_FS */
1351
1352 static int arp_netdev_event(struct notifier_block *this, unsigned long event, void *ptr)
1353 {
1354         struct net_device *dev = ptr;
1355
1356         switch (event) {
1357         case NETDEV_CHANGEADDR:
1358                 neigh_changeaddr(&arp_tbl, dev);
1359                 rt_cache_flush(0);
1360                 break;
1361         default:
1362                 break;
1363         }
1364
1365         return NOTIFY_DONE;
1366 }
1367
1368 struct notifier_block arp_netdev_notifier = {
1369         .notifier_call = arp_netdev_event,
1370 };
1371
1372 /* Note, that it is not on notifier chain.
1373    It is necessary, that this routine was called after route cache will be
1374    flushed.
1375  */
1376 void arp_ifdown(struct net_device *dev)
1377 {
1378         neigh_ifdown(&arp_tbl, dev);
1379 }
1380
1381
1382 /*
1383  *      Called once on startup.
1384  */
1385
1386 static struct packet_type arp_packet_type = {
1387         type:   __constant_htons(ETH_P_ARP),
1388         func:   arp_rcv,
1389         data:   (void*) 1, /* understand shared skbs */
1390 };
1391
1392 void __init arp_init (void)
1393 {
1394         neigh_table_init(&arp_tbl);
1395
1396         dev_add_pack(&arp_packet_type);
1397
1398 #ifdef CONFIG_PROC_FS
1399         if (!proc_net_fops_create("arp", S_IRUGO, &arp_seq_fops))
1400                 panic("unable to create arp proc entry");
1401 #endif
1402 #ifdef CONFIG_SYSCTL
1403         neigh_sysctl_register(NULL, &arp_tbl.parms, NET_IPV4, NET_IPV4_NEIGH, "ipv4");
1404 #endif
1405         register_netdevice_notifier(&arp_netdev_notifier);
1406 }
1407
1408