2 * AARP: An implementation of the AppleTalk AARP protocol for
5 * Alan Cox <Alan.Cox@linux.org>
7 * This doesn't fit cleanly with the IP arp. Potentially we can use
8 * the generic neighbour discovery code to clean this up.
11 * We ought to handle the retransmits with a single list and a
12 * separate fast timer for when it is needed.
13 * Use neighbour discovery code.
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License
18 * as published by the Free Software Foundation; either version
19 * 2 of the License, or (at your option) any later version.
23 * Inside AppleTalk (2nd Ed).
25 * Jaume Grau - flush caches on AARP_PROBE
26 * Rob Newberry - Added proxy AARP and AARP proc fs,
27 * moved probing from DDP module.
28 * Arnaldo C. Melo - don't mangle rx packets
32 #include <linux/if_arp.h>
34 #include <net/datalink.h>
35 #include <net/psnap.h>
36 #include <linux/atalk.h>
37 #include <linux/delay.h>
38 #include <linux/init.h>
39 #include <linux/proc_fs.h>
40 #include <linux/seq_file.h>
42 int sysctl_aarp_expiry_time
= AARP_EXPIRY_TIME
;
43 int sysctl_aarp_tick_time
= AARP_TICK_TIME
;
44 int sysctl_aarp_retransmit_limit
= AARP_RETRANSMIT_LIMIT
;
45 int sysctl_aarp_resolve_time
= AARP_RESOLVE_TIME
;
47 /* Lists of aarp entries */
49 * struct aarp_entry - AARP entry
50 * @last_sent - Last time we xmitted the aarp request
51 * @packet_queue - Queue of frames wait for resolution
52 * @status - Used for proxy AARP
53 * expires_at - Entry expiry time
54 * target_addr - DDP Address
56 * hwaddr - Physical i/f address of target/router
57 * xmit_count - When this hits 10 we give up
58 * next - Next entry in chain
61 /* These first two are only used for unresolved entries */
62 unsigned long last_sent
;
63 struct sk_buff_head packet_queue
;
65 unsigned long expires_at
;
66 struct atalk_addr target_addr
;
67 struct net_device
*dev
;
69 unsigned short xmit_count
;
70 struct aarp_entry
*next
;
73 /* Hashed list of resolved, unresolved and proxy entries */
74 static struct aarp_entry
*resolved
[AARP_HASH_SIZE
];
75 static struct aarp_entry
*unresolved
[AARP_HASH_SIZE
];
76 static struct aarp_entry
*proxies
[AARP_HASH_SIZE
];
77 static int unresolved_count
;
79 /* One lock protects it all. */
80 static DEFINE_RWLOCK(aarp_lock
);
82 /* Used to walk the list and purge/kick entries. */
83 static struct timer_list aarp_timer
;
86 * Delete an aarp queue
88 * Must run under aarp_lock.
90 static void __aarp_expire(struct aarp_entry
*a
)
92 skb_queue_purge(&a
->packet_queue
);
97 * Send an aarp queue entry request
99 * Must run under aarp_lock.
101 static void __aarp_send_query(struct aarp_entry
*a
)
103 static unsigned char aarp_eth_multicast
[ETH_ALEN
] =
104 { 0x09, 0x00, 0x07, 0xFF, 0xFF, 0xFF };
105 struct net_device
*dev
= a
->dev
;
106 struct elapaarp
*eah
;
107 int len
= dev
->hard_header_len
+ sizeof(*eah
) + aarp_dl
->header_length
;
108 struct sk_buff
*skb
= alloc_skb(len
, GFP_ATOMIC
);
109 struct atalk_addr
*sat
= atalk_find_dev_addr(dev
);
119 /* Set up the buffer */
120 skb_reserve(skb
, dev
->hard_header_len
+ aarp_dl
->header_length
);
121 skb
->nh
.raw
= skb
->h
.raw
= skb_put(skb
, sizeof(*eah
));
122 skb
->protocol
= htons(ETH_P_ATALK
);
127 eah
->hw_type
= htons(AARP_HW_TYPE_ETHERNET
);
128 eah
->pa_type
= htons(ETH_P_ATALK
);
129 eah
->hw_len
= ETH_ALEN
;
130 eah
->pa_len
= AARP_PA_ALEN
;
131 eah
->function
= htons(AARP_REQUEST
);
133 memcpy(eah
->hw_src
, dev
->dev_addr
, ETH_ALEN
);
135 eah
->pa_src_zero
= 0;
136 eah
->pa_src_net
= sat
->s_net
;
137 eah
->pa_src_node
= sat
->s_node
;
139 memset(eah
->hw_dst
, '\0', ETH_ALEN
);
141 eah
->pa_dst_zero
= 0;
142 eah
->pa_dst_net
= a
->target_addr
.s_net
;
143 eah
->pa_dst_node
= a
->target_addr
.s_node
;
146 aarp_dl
->request(aarp_dl
, skb
, aarp_eth_multicast
);
147 /* Update the sending count */
149 a
->last_sent
= jiffies
;
152 /* This runs under aarp_lock and in softint context, so only atomic memory
153 * allocations can be used. */
154 static void aarp_send_reply(struct net_device
*dev
, struct atalk_addr
*us
,
155 struct atalk_addr
*them
, unsigned char *sha
)
157 struct elapaarp
*eah
;
158 int len
= dev
->hard_header_len
+ sizeof(*eah
) + aarp_dl
->header_length
;
159 struct sk_buff
*skb
= alloc_skb(len
, GFP_ATOMIC
);
164 /* Set up the buffer */
165 skb_reserve(skb
, dev
->hard_header_len
+ aarp_dl
->header_length
);
166 skb
->nh
.raw
= skb
->h
.raw
= skb_put(skb
, sizeof(*eah
));
167 skb
->protocol
= htons(ETH_P_ATALK
);
172 eah
->hw_type
= htons(AARP_HW_TYPE_ETHERNET
);
173 eah
->pa_type
= htons(ETH_P_ATALK
);
174 eah
->hw_len
= ETH_ALEN
;
175 eah
->pa_len
= AARP_PA_ALEN
;
176 eah
->function
= htons(AARP_REPLY
);
178 memcpy(eah
->hw_src
, dev
->dev_addr
, ETH_ALEN
);
180 eah
->pa_src_zero
= 0;
181 eah
->pa_src_net
= us
->s_net
;
182 eah
->pa_src_node
= us
->s_node
;
185 memset(eah
->hw_dst
, '\0', ETH_ALEN
);
187 memcpy(eah
->hw_dst
, sha
, ETH_ALEN
);
189 eah
->pa_dst_zero
= 0;
190 eah
->pa_dst_net
= them
->s_net
;
191 eah
->pa_dst_node
= them
->s_node
;
194 aarp_dl
->request(aarp_dl
, skb
, sha
);
198 * Send probe frames. Called from aarp_probe_network and
199 * aarp_proxy_probe_network.
202 static void aarp_send_probe(struct net_device
*dev
, struct atalk_addr
*us
)
204 struct elapaarp
*eah
;
205 int len
= dev
->hard_header_len
+ sizeof(*eah
) + aarp_dl
->header_length
;
206 struct sk_buff
*skb
= alloc_skb(len
, GFP_ATOMIC
);
207 static unsigned char aarp_eth_multicast
[ETH_ALEN
] =
208 { 0x09, 0x00, 0x07, 0xFF, 0xFF, 0xFF };
213 /* Set up the buffer */
214 skb_reserve(skb
, dev
->hard_header_len
+ aarp_dl
->header_length
);
215 skb
->nh
.raw
= skb
->h
.raw
= skb_put(skb
, sizeof(*eah
));
216 skb
->protocol
= htons(ETH_P_ATALK
);
221 eah
->hw_type
= htons(AARP_HW_TYPE_ETHERNET
);
222 eah
->pa_type
= htons(ETH_P_ATALK
);
223 eah
->hw_len
= ETH_ALEN
;
224 eah
->pa_len
= AARP_PA_ALEN
;
225 eah
->function
= htons(AARP_PROBE
);
227 memcpy(eah
->hw_src
, dev
->dev_addr
, ETH_ALEN
);
229 eah
->pa_src_zero
= 0;
230 eah
->pa_src_net
= us
->s_net
;
231 eah
->pa_src_node
= us
->s_node
;
233 memset(eah
->hw_dst
, '\0', ETH_ALEN
);
235 eah
->pa_dst_zero
= 0;
236 eah
->pa_dst_net
= us
->s_net
;
237 eah
->pa_dst_node
= us
->s_node
;
240 aarp_dl
->request(aarp_dl
, skb
, aarp_eth_multicast
);
244 * Handle an aarp timer expire
246 * Must run under the aarp_lock.
249 static void __aarp_expire_timer(struct aarp_entry
**n
)
251 struct aarp_entry
*t
;
255 if (time_after(jiffies
, (*n
)->expires_at
)) {
264 * Kick all pending requests 5 times a second.
266 * Must run under the aarp_lock.
268 static void __aarp_kick(struct aarp_entry
**n
)
270 struct aarp_entry
*t
;
273 /* Expired: if this will be the 11th tx, we delete instead. */
274 if ((*n
)->xmit_count
>= sysctl_aarp_retransmit_limit
) {
279 __aarp_send_query(*n
);
285 * A device has gone down. Take all entries referring to the device
288 * Must run under the aarp_lock.
290 static void __aarp_expire_device(struct aarp_entry
**n
, struct net_device
*dev
)
292 struct aarp_entry
*t
;
295 if ((*n
)->dev
== dev
) {
303 /* Handle the timer event */
304 static void aarp_expire_timeout(unsigned long unused
)
308 write_lock_bh(&aarp_lock
);
310 for (ct
= 0; ct
< AARP_HASH_SIZE
; ct
++) {
311 __aarp_expire_timer(&resolved
[ct
]);
312 __aarp_kick(&unresolved
[ct
]);
313 __aarp_expire_timer(&unresolved
[ct
]);
314 __aarp_expire_timer(&proxies
[ct
]);
317 write_unlock_bh(&aarp_lock
);
318 mod_timer(&aarp_timer
, jiffies
+
319 (unresolved_count
? sysctl_aarp_tick_time
:
320 sysctl_aarp_expiry_time
));
323 /* Network device notifier chain handler. */
324 static int aarp_device_event(struct notifier_block
*this, unsigned long event
,
329 if (event
== NETDEV_DOWN
) {
330 write_lock_bh(&aarp_lock
);
332 for (ct
= 0; ct
< AARP_HASH_SIZE
; ct
++) {
333 __aarp_expire_device(&resolved
[ct
], ptr
);
334 __aarp_expire_device(&unresolved
[ct
], ptr
);
335 __aarp_expire_device(&proxies
[ct
], ptr
);
338 write_unlock_bh(&aarp_lock
);
343 /* Expire all entries in a hash chain */
344 static void __aarp_expire_all(struct aarp_entry
**n
)
346 struct aarp_entry
*t
;
355 /* Cleanup all hash chains -- module unloading */
356 static void aarp_purge(void)
360 write_lock_bh(&aarp_lock
);
361 for (ct
= 0; ct
< AARP_HASH_SIZE
; ct
++) {
362 __aarp_expire_all(&resolved
[ct
]);
363 __aarp_expire_all(&unresolved
[ct
]);
364 __aarp_expire_all(&proxies
[ct
]);
366 write_unlock_bh(&aarp_lock
);
370 * Create a new aarp entry. This must use GFP_ATOMIC because it
371 * runs while holding spinlocks.
373 static struct aarp_entry
*aarp_alloc(void)
375 struct aarp_entry
*a
= kmalloc(sizeof(*a
), GFP_ATOMIC
);
378 skb_queue_head_init(&a
->packet_queue
);
383 * Find an entry. We might return an expired but not yet purged entry. We
384 * don't care as it will do no harm.
386 * This must run under the aarp_lock.
388 static struct aarp_entry
*__aarp_find_entry(struct aarp_entry
*list
,
389 struct net_device
*dev
,
390 struct atalk_addr
*sat
)
393 if (list
->target_addr
.s_net
== sat
->s_net
&&
394 list
->target_addr
.s_node
== sat
->s_node
&&
403 /* Called from the DDP code, and thus must be exported. */
404 void aarp_proxy_remove(struct net_device
*dev
, struct atalk_addr
*sa
)
406 int hash
= sa
->s_node
% (AARP_HASH_SIZE
- 1);
407 struct aarp_entry
*a
;
409 write_lock_bh(&aarp_lock
);
411 a
= __aarp_find_entry(proxies
[hash
], dev
, sa
);
413 a
->expires_at
= jiffies
- 1;
415 write_unlock_bh(&aarp_lock
);
418 /* This must run under aarp_lock. */
419 static struct atalk_addr
*__aarp_proxy_find(struct net_device
*dev
,
420 struct atalk_addr
*sa
)
422 int hash
= sa
->s_node
% (AARP_HASH_SIZE
- 1);
423 struct aarp_entry
*a
= __aarp_find_entry(proxies
[hash
], dev
, sa
);
425 return a
? sa
: NULL
;
429 * Probe a Phase 1 device or a device that requires its Net:Node to
430 * be set via an ioctl.
432 static void aarp_send_probe_phase1(struct atalk_iface
*iface
)
435 struct sockaddr_at
*sa
= (struct sockaddr_at
*)&atreq
.ifr_addr
;
437 sa
->sat_addr
.s_node
= iface
->address
.s_node
;
438 sa
->sat_addr
.s_net
= ntohs(iface
->address
.s_net
);
440 /* We pass the Net:Node to the drivers/cards by a Device ioctl. */
441 if (!(iface
->dev
->do_ioctl(iface
->dev
, &atreq
, SIOCSIFADDR
))) {
442 (void)iface
->dev
->do_ioctl(iface
->dev
, &atreq
, SIOCGIFADDR
);
443 if (iface
->address
.s_net
!= htons(sa
->sat_addr
.s_net
) ||
444 iface
->address
.s_node
!= sa
->sat_addr
.s_node
)
445 iface
->status
|= ATIF_PROBE_FAIL
;
447 iface
->address
.s_net
= htons(sa
->sat_addr
.s_net
);
448 iface
->address
.s_node
= sa
->sat_addr
.s_node
;
453 void aarp_probe_network(struct atalk_iface
*atif
)
455 if (atif
->dev
->type
== ARPHRD_LOCALTLK
||
456 atif
->dev
->type
== ARPHRD_PPP
)
457 aarp_send_probe_phase1(atif
);
461 for (count
= 0; count
< AARP_RETRANSMIT_LIMIT
; count
++) {
462 aarp_send_probe(atif
->dev
, &atif
->address
);
467 if (atif
->status
& ATIF_PROBE_FAIL
)
473 int aarp_proxy_probe_network(struct atalk_iface
*atif
, struct atalk_addr
*sa
)
475 int hash
, retval
= -EPROTONOSUPPORT
;
476 struct aarp_entry
*entry
;
480 * we don't currently support LocalTalk or PPP for proxy AARP;
481 * if someone wants to try and add it, have fun
483 if (atif
->dev
->type
== ARPHRD_LOCALTLK
||
484 atif
->dev
->type
== ARPHRD_PPP
)
488 * create a new AARP entry with the flags set to be published --
489 * we need this one to hang around even if it's in use
491 entry
= aarp_alloc();
496 entry
->expires_at
= -1;
497 entry
->status
= ATIF_PROBE
;
498 entry
->target_addr
.s_node
= sa
->s_node
;
499 entry
->target_addr
.s_net
= sa
->s_net
;
500 entry
->dev
= atif
->dev
;
502 write_lock_bh(&aarp_lock
);
504 hash
= sa
->s_node
% (AARP_HASH_SIZE
- 1);
505 entry
->next
= proxies
[hash
];
506 proxies
[hash
] = entry
;
508 for (count
= 0; count
< AARP_RETRANSMIT_LIMIT
; count
++) {
509 aarp_send_probe(atif
->dev
, sa
);
512 write_unlock_bh(&aarp_lock
);
514 write_lock_bh(&aarp_lock
);
516 if (entry
->status
& ATIF_PROBE_FAIL
)
520 if (entry
->status
& ATIF_PROBE_FAIL
) {
521 entry
->expires_at
= jiffies
- 1; /* free the entry */
522 retval
= -EADDRINUSE
; /* return network full */
523 } else { /* clear the probing flag */
524 entry
->status
&= ~ATIF_PROBE
;
528 write_unlock_bh(&aarp_lock
);
533 /* Send a DDP frame */
534 int aarp_send_ddp(struct net_device
*dev
, struct sk_buff
*skb
,
535 struct atalk_addr
*sa
, void *hwaddr
)
537 static char ddp_eth_multicast
[ETH_ALEN
] =
538 { 0x09, 0x00, 0x07, 0xFF, 0xFF, 0xFF };
540 struct aarp_entry
*a
;
542 skb
->nh
.raw
= skb
->data
;
544 /* Check for LocalTalk first */
545 if (dev
->type
== ARPHRD_LOCALTLK
) {
546 struct atalk_addr
*at
= atalk_find_dev_addr(dev
);
547 struct ddpehdr
*ddp
= (struct ddpehdr
*)skb
->data
;
553 * IFF: src_net == dest_net == device_net
554 * (zero matches anything)
557 if ((!ddp
->deh_snet
|| at
->s_net
== ddp
->deh_snet
) &&
558 (!ddp
->deh_dnet
|| at
->s_net
== ddp
->deh_dnet
)) {
559 skb_pull(skb
, sizeof(*ddp
) - 4);
562 * The upper two remaining bytes are the port
563 * numbers we just happen to need. Now put the
564 * length in the lower two.
566 *((__be16
*)skb
->data
) = htons(skb
->len
);
570 * Nice and easy. No AARP type protocols occur here so we can
571 * just shovel it out with a 3 byte LLAP header
575 skb
->data
[0] = sa
->s_node
;
576 skb
->data
[1] = at
->s_node
;
582 /* On a PPP link we neither compress nor aarp. */
583 if (dev
->type
== ARPHRD_PPP
) {
584 skb
->protocol
= htons(ETH_P_PPPTALK
);
589 /* Non ELAP we cannot do. */
590 if (dev
->type
!= ARPHRD_ETHER
)
594 skb
->protocol
= htons(ETH_P_ATALK
);
595 hash
= sa
->s_node
% (AARP_HASH_SIZE
- 1);
597 /* Do we have a resolved entry? */
598 if (sa
->s_node
== ATADDR_BCAST
) {
600 ddp_dl
->request(ddp_dl
, skb
, ddp_eth_multicast
);
604 write_lock_bh(&aarp_lock
);
605 a
= __aarp_find_entry(resolved
[hash
], dev
, sa
);
607 if (a
) { /* Return 1 and fill in the address */
608 a
->expires_at
= jiffies
+ (sysctl_aarp_expiry_time
* 10);
609 ddp_dl
->request(ddp_dl
, skb
, a
->hwaddr
);
610 write_unlock_bh(&aarp_lock
);
614 /* Do we have an unresolved entry: This is the less common path */
615 a
= __aarp_find_entry(unresolved
[hash
], dev
, sa
);
616 if (a
) { /* Queue onto the unresolved queue */
617 skb_queue_tail(&a
->packet_queue
, skb
);
621 /* Allocate a new entry */
624 /* Whoops slipped... good job it's an unreliable protocol 8) */
625 write_unlock_bh(&aarp_lock
);
629 /* Set up the queue */
630 skb_queue_tail(&a
->packet_queue
, skb
);
631 a
->expires_at
= jiffies
+ sysctl_aarp_resolve_time
;
633 a
->next
= unresolved
[hash
];
634 a
->target_addr
= *sa
;
636 unresolved
[hash
] = a
;
639 /* Send an initial request for the address */
640 __aarp_send_query(a
);
643 * Switch to fast timer if needed (That is if this is the first
644 * unresolved entry to get added)
647 if (unresolved_count
== 1)
648 mod_timer(&aarp_timer
, jiffies
+ sysctl_aarp_tick_time
);
650 /* Now finally, it is safe to drop the lock. */
652 write_unlock_bh(&aarp_lock
);
654 /* Tell the ddp layer we have taken over for this frame. */
659 skb
->priority
= skb
->sk
->sk_priority
;
666 * An entry in the aarp unresolved queue has become resolved. Send
667 * all the frames queued under it.
669 * Must run under aarp_lock.
671 static void __aarp_resolved(struct aarp_entry
**list
, struct aarp_entry
*a
,
681 /* Move into the resolved list */
682 a
->next
= resolved
[hash
];
685 /* Kick frames off */
686 while ((skb
= skb_dequeue(&a
->packet_queue
)) != NULL
) {
687 a
->expires_at
= jiffies
+
688 sysctl_aarp_expiry_time
* 10;
689 ddp_dl
->request(ddp_dl
, skb
, a
->hwaddr
);
692 list
= &((*list
)->next
);
696 * This is called by the SNAP driver whenever we see an AARP SNAP
697 * frame. We currently only support Ethernet.
699 static int aarp_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
700 struct packet_type
*pt
, struct net_device
*orig_dev
)
702 struct elapaarp
*ea
= aarp_hdr(skb
);
705 struct aarp_entry
*a
;
706 struct atalk_addr sa
, *ma
, da
;
707 struct atalk_iface
*ifa
;
709 /* We only do Ethernet SNAP AARP. */
710 if (dev
->type
!= ARPHRD_ETHER
)
714 if (!skb_pull(skb
, sizeof(*ea
)))
717 function
= ntohs(ea
->function
);
719 /* Sanity check fields. */
720 if (function
< AARP_REQUEST
|| function
> AARP_PROBE
||
721 ea
->hw_len
!= ETH_ALEN
|| ea
->pa_len
!= AARP_PA_ALEN
||
722 ea
->pa_src_zero
|| ea
->pa_dst_zero
)
726 hash
= ea
->pa_src_node
% (AARP_HASH_SIZE
- 1);
728 /* Build an address. */
729 sa
.s_node
= ea
->pa_src_node
;
730 sa
.s_net
= ea
->pa_src_net
;
732 /* Process the packet. Check for replies of me. */
733 ifa
= atalk_find_dev(dev
);
737 if (ifa
->status
& ATIF_PROBE
&&
738 ifa
->address
.s_node
== ea
->pa_dst_node
&&
739 ifa
->address
.s_net
== ea
->pa_dst_net
) {
740 ifa
->status
|= ATIF_PROBE_FAIL
; /* Fail the probe (in use) */
744 /* Check for replies of proxy AARP entries */
745 da
.s_node
= ea
->pa_dst_node
;
746 da
.s_net
= ea
->pa_dst_net
;
748 write_lock_bh(&aarp_lock
);
749 a
= __aarp_find_entry(proxies
[hash
], dev
, &da
);
751 if (a
&& a
->status
& ATIF_PROBE
) {
752 a
->status
|= ATIF_PROBE_FAIL
;
754 * we do not respond to probe or request packets for
755 * this address while we are probing this address
762 if (!unresolved_count
) /* Speed up */
765 /* Find the entry. */
766 a
= __aarp_find_entry(unresolved
[hash
], dev
, &sa
);
767 if (!a
|| dev
!= a
->dev
)
770 /* We can fill one in - this is good. */
771 memcpy(a
->hwaddr
, ea
->hw_src
, ETH_ALEN
);
772 __aarp_resolved(&unresolved
[hash
], a
, hash
);
773 if (!unresolved_count
)
774 mod_timer(&aarp_timer
,
775 jiffies
+ sysctl_aarp_expiry_time
);
782 * If it is my address set ma to my address and reply.
783 * We can treat probe and request the same. Probe
784 * simply means we shouldn't cache the querying host,
785 * as in a probe they are proposing an address not
788 * Support for proxy-AARP added. We check if the
789 * address is one of our proxies before we toss the
793 sa
.s_node
= ea
->pa_dst_node
;
794 sa
.s_net
= ea
->pa_dst_net
;
796 /* See if we have a matching proxy. */
797 ma
= __aarp_proxy_find(dev
, &sa
);
800 else { /* We need to make a copy of the entry. */
801 da
.s_node
= sa
.s_node
;
806 if (function
== AARP_PROBE
) {
808 * A probe implies someone trying to get an
809 * address. So as a precaution flush any
810 * entries we have for this address.
812 struct aarp_entry
*a
;
814 a
= __aarp_find_entry(resolved
[sa
.s_node
%
815 (AARP_HASH_SIZE
- 1)],
819 * Make it expire next tick - that avoids us
820 * getting into a probe/flush/learn/probe/
821 * flush/learn cycle during probing of a slow
822 * to respond host addr.
825 a
->expires_at
= jiffies
- 1;
826 mod_timer(&aarp_timer
, jiffies
+
827 sysctl_aarp_tick_time
);
831 if (sa
.s_node
!= ma
->s_node
)
834 if (sa
.s_net
&& ma
->s_net
&& sa
.s_net
!= ma
->s_net
)
837 sa
.s_node
= ea
->pa_src_node
;
838 sa
.s_net
= ea
->pa_src_net
;
840 /* aarp_my_address has found the address to use for us.
842 aarp_send_reply(dev
, ma
, &sa
, ea
->hw_src
);
847 write_unlock_bh(&aarp_lock
);
855 static struct notifier_block aarp_notifier
= {
856 .notifier_call
= aarp_device_event
,
859 static unsigned char aarp_snap_id
[] = { 0x00, 0x00, 0x00, 0x80, 0xF3 };
861 void __init
aarp_proto_init(void)
863 aarp_dl
= register_snap_client(aarp_snap_id
, aarp_rcv
);
865 printk(KERN_CRIT
"Unable to register AARP with SNAP.\n");
866 init_timer(&aarp_timer
);
867 aarp_timer
.function
= aarp_expire_timeout
;
869 aarp_timer
.expires
= jiffies
+ sysctl_aarp_expiry_time
;
870 add_timer(&aarp_timer
);
871 register_netdevice_notifier(&aarp_notifier
);
874 /* Remove the AARP entries associated with a device. */
875 void aarp_device_down(struct net_device
*dev
)
879 write_lock_bh(&aarp_lock
);
881 for (ct
= 0; ct
< AARP_HASH_SIZE
; ct
++) {
882 __aarp_expire_device(&resolved
[ct
], dev
);
883 __aarp_expire_device(&unresolved
[ct
], dev
);
884 __aarp_expire_device(&proxies
[ct
], dev
);
887 write_unlock_bh(&aarp_lock
);
890 #ifdef CONFIG_PROC_FS
891 struct aarp_iter_state
{
893 struct aarp_entry
**table
;
897 * Get the aarp entry that is in the chain described
899 * If pos is set then skip till that index.
900 * pos = 1 is the first entry
902 static struct aarp_entry
*iter_next(struct aarp_iter_state
*iter
, loff_t
*pos
)
904 int ct
= iter
->bucket
;
905 struct aarp_entry
**table
= iter
->table
;
907 struct aarp_entry
*entry
;
910 while(ct
< AARP_HASH_SIZE
) {
911 for (entry
= table
[ct
]; entry
; entry
= entry
->next
) {
912 if (!pos
|| ++off
== *pos
) {
921 if (table
== resolved
) {
926 if (table
== unresolved
) {
934 static void *aarp_seq_start(struct seq_file
*seq
, loff_t
*pos
)
936 struct aarp_iter_state
*iter
= seq
->private;
938 read_lock_bh(&aarp_lock
);
939 iter
->table
= resolved
;
942 return *pos
? iter_next(iter
, pos
) : SEQ_START_TOKEN
;
945 static void *aarp_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
947 struct aarp_entry
*entry
= v
;
948 struct aarp_iter_state
*iter
= seq
->private;
952 /* first line after header */
953 if (v
== SEQ_START_TOKEN
)
954 entry
= iter_next(iter
, NULL
);
956 /* next entry in current bucket */
957 else if (entry
->next
)
960 /* next bucket or table */
963 entry
= iter_next(iter
, NULL
);
968 static void aarp_seq_stop(struct seq_file
*seq
, void *v
)
970 read_unlock_bh(&aarp_lock
);
973 static const char *dt2str(unsigned long ticks
)
977 sprintf(buf
, "%ld.%02ld", ticks
/ HZ
, ((ticks
% HZ
) * 100 ) / HZ
);
982 static int aarp_seq_show(struct seq_file
*seq
, void *v
)
984 struct aarp_iter_state
*iter
= seq
->private;
985 struct aarp_entry
*entry
= v
;
986 unsigned long now
= jiffies
;
988 if (v
== SEQ_START_TOKEN
)
990 "Address Interface Hardware Address"
991 " Expires LastSend Retry Status\n");
993 seq_printf(seq
, "%04X:%02X %-12s",
994 ntohs(entry
->target_addr
.s_net
),
995 (unsigned int) entry
->target_addr
.s_node
,
996 entry
->dev
? entry
->dev
->name
: "????");
997 seq_printf(seq
, "%02X:%02X:%02X:%02X:%02X:%02X",
998 entry
->hwaddr
[0] & 0xFF,
999 entry
->hwaddr
[1] & 0xFF,
1000 entry
->hwaddr
[2] & 0xFF,
1001 entry
->hwaddr
[3] & 0xFF,
1002 entry
->hwaddr
[4] & 0xFF,
1003 entry
->hwaddr
[5] & 0xFF);
1004 seq_printf(seq
, " %8s",
1005 dt2str((long)entry
->expires_at
- (long)now
));
1006 if (iter
->table
== unresolved
)
1007 seq_printf(seq
, " %8s %6hu",
1008 dt2str(now
- entry
->last_sent
),
1012 seq_printf(seq
, " %s\n",
1013 (iter
->table
== resolved
) ? "resolved"
1014 : (iter
->table
== unresolved
) ? "unresolved"
1015 : (iter
->table
== proxies
) ? "proxies"
1021 static struct seq_operations aarp_seq_ops
= {
1022 .start
= aarp_seq_start
,
1023 .next
= aarp_seq_next
,
1024 .stop
= aarp_seq_stop
,
1025 .show
= aarp_seq_show
,
1028 static int aarp_seq_open(struct inode
*inode
, struct file
*file
)
1030 struct seq_file
*seq
;
1032 struct aarp_iter_state
*s
= kmalloc(sizeof(*s
), GFP_KERNEL
);
1037 rc
= seq_open(file
, &aarp_seq_ops
);
1041 seq
= file
->private_data
;
1043 memset(s
, 0, sizeof(*s
));
1051 struct file_operations atalk_seq_arp_fops
= {
1052 .owner
= THIS_MODULE
,
1053 .open
= aarp_seq_open
,
1055 .llseek
= seq_lseek
,
1056 .release
= seq_release_private
,
1060 /* General module cleanup. Called from cleanup_module() in ddp.c. */
1061 void aarp_cleanup_module(void)
1063 del_timer_sync(&aarp_timer
);
1064 unregister_netdevice_notifier(&aarp_notifier
);
1065 unregister_snap_client(aarp_dl
);