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_reset_network_header(skb
);
122 skb_reset_transport_header(skb
);
123 skb_put(skb
, sizeof(*eah
));
124 skb
->protocol
= htons(ETH_P_ATALK
);
129 eah
->hw_type
= htons(AARP_HW_TYPE_ETHERNET
);
130 eah
->pa_type
= htons(ETH_P_ATALK
);
131 eah
->hw_len
= ETH_ALEN
;
132 eah
->pa_len
= AARP_PA_ALEN
;
133 eah
->function
= htons(AARP_REQUEST
);
135 memcpy(eah
->hw_src
, dev
->dev_addr
, ETH_ALEN
);
137 eah
->pa_src_zero
= 0;
138 eah
->pa_src_net
= sat
->s_net
;
139 eah
->pa_src_node
= sat
->s_node
;
141 memset(eah
->hw_dst
, '\0', ETH_ALEN
);
143 eah
->pa_dst_zero
= 0;
144 eah
->pa_dst_net
= a
->target_addr
.s_net
;
145 eah
->pa_dst_node
= a
->target_addr
.s_node
;
148 aarp_dl
->request(aarp_dl
, skb
, aarp_eth_multicast
);
149 /* Update the sending count */
151 a
->last_sent
= jiffies
;
154 /* This runs under aarp_lock and in softint context, so only atomic memory
155 * allocations can be used. */
156 static void aarp_send_reply(struct net_device
*dev
, struct atalk_addr
*us
,
157 struct atalk_addr
*them
, unsigned char *sha
)
159 struct elapaarp
*eah
;
160 int len
= dev
->hard_header_len
+ sizeof(*eah
) + aarp_dl
->header_length
;
161 struct sk_buff
*skb
= alloc_skb(len
, GFP_ATOMIC
);
166 /* Set up the buffer */
167 skb_reserve(skb
, dev
->hard_header_len
+ aarp_dl
->header_length
);
168 skb_reset_network_header(skb
);
169 skb_reset_transport_header(skb
);
170 skb_put(skb
, sizeof(*eah
));
171 skb
->protocol
= htons(ETH_P_ATALK
);
176 eah
->hw_type
= htons(AARP_HW_TYPE_ETHERNET
);
177 eah
->pa_type
= htons(ETH_P_ATALK
);
178 eah
->hw_len
= ETH_ALEN
;
179 eah
->pa_len
= AARP_PA_ALEN
;
180 eah
->function
= htons(AARP_REPLY
);
182 memcpy(eah
->hw_src
, dev
->dev_addr
, ETH_ALEN
);
184 eah
->pa_src_zero
= 0;
185 eah
->pa_src_net
= us
->s_net
;
186 eah
->pa_src_node
= us
->s_node
;
189 memset(eah
->hw_dst
, '\0', ETH_ALEN
);
191 memcpy(eah
->hw_dst
, sha
, ETH_ALEN
);
193 eah
->pa_dst_zero
= 0;
194 eah
->pa_dst_net
= them
->s_net
;
195 eah
->pa_dst_node
= them
->s_node
;
198 aarp_dl
->request(aarp_dl
, skb
, sha
);
202 * Send probe frames. Called from aarp_probe_network and
203 * aarp_proxy_probe_network.
206 static void aarp_send_probe(struct net_device
*dev
, struct atalk_addr
*us
)
208 struct elapaarp
*eah
;
209 int len
= dev
->hard_header_len
+ sizeof(*eah
) + aarp_dl
->header_length
;
210 struct sk_buff
*skb
= alloc_skb(len
, GFP_ATOMIC
);
211 static unsigned char aarp_eth_multicast
[ETH_ALEN
] =
212 { 0x09, 0x00, 0x07, 0xFF, 0xFF, 0xFF };
217 /* Set up the buffer */
218 skb_reserve(skb
, dev
->hard_header_len
+ aarp_dl
->header_length
);
219 skb_reset_network_header(skb
);
220 skb_reset_transport_header(skb
);
221 skb_put(skb
, sizeof(*eah
));
222 skb
->protocol
= htons(ETH_P_ATALK
);
227 eah
->hw_type
= htons(AARP_HW_TYPE_ETHERNET
);
228 eah
->pa_type
= htons(ETH_P_ATALK
);
229 eah
->hw_len
= ETH_ALEN
;
230 eah
->pa_len
= AARP_PA_ALEN
;
231 eah
->function
= htons(AARP_PROBE
);
233 memcpy(eah
->hw_src
, dev
->dev_addr
, ETH_ALEN
);
235 eah
->pa_src_zero
= 0;
236 eah
->pa_src_net
= us
->s_net
;
237 eah
->pa_src_node
= us
->s_node
;
239 memset(eah
->hw_dst
, '\0', ETH_ALEN
);
241 eah
->pa_dst_zero
= 0;
242 eah
->pa_dst_net
= us
->s_net
;
243 eah
->pa_dst_node
= us
->s_node
;
246 aarp_dl
->request(aarp_dl
, skb
, aarp_eth_multicast
);
250 * Handle an aarp timer expire
252 * Must run under the aarp_lock.
255 static void __aarp_expire_timer(struct aarp_entry
**n
)
257 struct aarp_entry
*t
;
261 if (time_after(jiffies
, (*n
)->expires_at
)) {
270 * Kick all pending requests 5 times a second.
272 * Must run under the aarp_lock.
274 static void __aarp_kick(struct aarp_entry
**n
)
276 struct aarp_entry
*t
;
279 /* Expired: if this will be the 11th tx, we delete instead. */
280 if ((*n
)->xmit_count
>= sysctl_aarp_retransmit_limit
) {
285 __aarp_send_query(*n
);
291 * A device has gone down. Take all entries referring to the device
294 * Must run under the aarp_lock.
296 static void __aarp_expire_device(struct aarp_entry
**n
, struct net_device
*dev
)
298 struct aarp_entry
*t
;
301 if ((*n
)->dev
== dev
) {
309 /* Handle the timer event */
310 static void aarp_expire_timeout(unsigned long unused
)
314 write_lock_bh(&aarp_lock
);
316 for (ct
= 0; ct
< AARP_HASH_SIZE
; ct
++) {
317 __aarp_expire_timer(&resolved
[ct
]);
318 __aarp_kick(&unresolved
[ct
]);
319 __aarp_expire_timer(&unresolved
[ct
]);
320 __aarp_expire_timer(&proxies
[ct
]);
323 write_unlock_bh(&aarp_lock
);
324 mod_timer(&aarp_timer
, jiffies
+
325 (unresolved_count
? sysctl_aarp_tick_time
:
326 sysctl_aarp_expiry_time
));
329 /* Network device notifier chain handler. */
330 static int aarp_device_event(struct notifier_block
*this, unsigned long event
,
335 if (event
== NETDEV_DOWN
) {
336 write_lock_bh(&aarp_lock
);
338 for (ct
= 0; ct
< AARP_HASH_SIZE
; ct
++) {
339 __aarp_expire_device(&resolved
[ct
], ptr
);
340 __aarp_expire_device(&unresolved
[ct
], ptr
);
341 __aarp_expire_device(&proxies
[ct
], ptr
);
344 write_unlock_bh(&aarp_lock
);
349 /* Expire all entries in a hash chain */
350 static void __aarp_expire_all(struct aarp_entry
**n
)
352 struct aarp_entry
*t
;
361 /* Cleanup all hash chains -- module unloading */
362 static void aarp_purge(void)
366 write_lock_bh(&aarp_lock
);
367 for (ct
= 0; ct
< AARP_HASH_SIZE
; ct
++) {
368 __aarp_expire_all(&resolved
[ct
]);
369 __aarp_expire_all(&unresolved
[ct
]);
370 __aarp_expire_all(&proxies
[ct
]);
372 write_unlock_bh(&aarp_lock
);
376 * Create a new aarp entry. This must use GFP_ATOMIC because it
377 * runs while holding spinlocks.
379 static struct aarp_entry
*aarp_alloc(void)
381 struct aarp_entry
*a
= kmalloc(sizeof(*a
), GFP_ATOMIC
);
384 skb_queue_head_init(&a
->packet_queue
);
389 * Find an entry. We might return an expired but not yet purged entry. We
390 * don't care as it will do no harm.
392 * This must run under the aarp_lock.
394 static struct aarp_entry
*__aarp_find_entry(struct aarp_entry
*list
,
395 struct net_device
*dev
,
396 struct atalk_addr
*sat
)
399 if (list
->target_addr
.s_net
== sat
->s_net
&&
400 list
->target_addr
.s_node
== sat
->s_node
&&
409 /* Called from the DDP code, and thus must be exported. */
410 void aarp_proxy_remove(struct net_device
*dev
, struct atalk_addr
*sa
)
412 int hash
= sa
->s_node
% (AARP_HASH_SIZE
- 1);
413 struct aarp_entry
*a
;
415 write_lock_bh(&aarp_lock
);
417 a
= __aarp_find_entry(proxies
[hash
], dev
, sa
);
419 a
->expires_at
= jiffies
- 1;
421 write_unlock_bh(&aarp_lock
);
424 /* This must run under aarp_lock. */
425 static struct atalk_addr
*__aarp_proxy_find(struct net_device
*dev
,
426 struct atalk_addr
*sa
)
428 int hash
= sa
->s_node
% (AARP_HASH_SIZE
- 1);
429 struct aarp_entry
*a
= __aarp_find_entry(proxies
[hash
], dev
, sa
);
431 return a
? sa
: NULL
;
435 * Probe a Phase 1 device or a device that requires its Net:Node to
436 * be set via an ioctl.
438 static void aarp_send_probe_phase1(struct atalk_iface
*iface
)
441 struct sockaddr_at
*sa
= (struct sockaddr_at
*)&atreq
.ifr_addr
;
443 sa
->sat_addr
.s_node
= iface
->address
.s_node
;
444 sa
->sat_addr
.s_net
= ntohs(iface
->address
.s_net
);
446 /* We pass the Net:Node to the drivers/cards by a Device ioctl. */
447 if (!(iface
->dev
->do_ioctl(iface
->dev
, &atreq
, SIOCSIFADDR
))) {
448 (void)iface
->dev
->do_ioctl(iface
->dev
, &atreq
, SIOCGIFADDR
);
449 if (iface
->address
.s_net
!= htons(sa
->sat_addr
.s_net
) ||
450 iface
->address
.s_node
!= sa
->sat_addr
.s_node
)
451 iface
->status
|= ATIF_PROBE_FAIL
;
453 iface
->address
.s_net
= htons(sa
->sat_addr
.s_net
);
454 iface
->address
.s_node
= sa
->sat_addr
.s_node
;
459 void aarp_probe_network(struct atalk_iface
*atif
)
461 if (atif
->dev
->type
== ARPHRD_LOCALTLK
||
462 atif
->dev
->type
== ARPHRD_PPP
)
463 aarp_send_probe_phase1(atif
);
467 for (count
= 0; count
< AARP_RETRANSMIT_LIMIT
; count
++) {
468 aarp_send_probe(atif
->dev
, &atif
->address
);
473 if (atif
->status
& ATIF_PROBE_FAIL
)
479 int aarp_proxy_probe_network(struct atalk_iface
*atif
, struct atalk_addr
*sa
)
481 int hash
, retval
= -EPROTONOSUPPORT
;
482 struct aarp_entry
*entry
;
486 * we don't currently support LocalTalk or PPP for proxy AARP;
487 * if someone wants to try and add it, have fun
489 if (atif
->dev
->type
== ARPHRD_LOCALTLK
||
490 atif
->dev
->type
== ARPHRD_PPP
)
494 * create a new AARP entry with the flags set to be published --
495 * we need this one to hang around even if it's in use
497 entry
= aarp_alloc();
502 entry
->expires_at
= -1;
503 entry
->status
= ATIF_PROBE
;
504 entry
->target_addr
.s_node
= sa
->s_node
;
505 entry
->target_addr
.s_net
= sa
->s_net
;
506 entry
->dev
= atif
->dev
;
508 write_lock_bh(&aarp_lock
);
510 hash
= sa
->s_node
% (AARP_HASH_SIZE
- 1);
511 entry
->next
= proxies
[hash
];
512 proxies
[hash
] = entry
;
514 for (count
= 0; count
< AARP_RETRANSMIT_LIMIT
; count
++) {
515 aarp_send_probe(atif
->dev
, sa
);
518 write_unlock_bh(&aarp_lock
);
520 write_lock_bh(&aarp_lock
);
522 if (entry
->status
& ATIF_PROBE_FAIL
)
526 if (entry
->status
& ATIF_PROBE_FAIL
) {
527 entry
->expires_at
= jiffies
- 1; /* free the entry */
528 retval
= -EADDRINUSE
; /* return network full */
529 } else { /* clear the probing flag */
530 entry
->status
&= ~ATIF_PROBE
;
534 write_unlock_bh(&aarp_lock
);
539 /* Send a DDP frame */
540 int aarp_send_ddp(struct net_device
*dev
, struct sk_buff
*skb
,
541 struct atalk_addr
*sa
, void *hwaddr
)
543 static char ddp_eth_multicast
[ETH_ALEN
] =
544 { 0x09, 0x00, 0x07, 0xFF, 0xFF, 0xFF };
546 struct aarp_entry
*a
;
548 skb_reset_network_header(skb
);
550 /* Check for LocalTalk first */
551 if (dev
->type
== ARPHRD_LOCALTLK
) {
552 struct atalk_addr
*at
= atalk_find_dev_addr(dev
);
553 struct ddpehdr
*ddp
= (struct ddpehdr
*)skb
->data
;
559 * IFF: src_net == dest_net == device_net
560 * (zero matches anything)
563 if ((!ddp
->deh_snet
|| at
->s_net
== ddp
->deh_snet
) &&
564 (!ddp
->deh_dnet
|| at
->s_net
== ddp
->deh_dnet
)) {
565 skb_pull(skb
, sizeof(*ddp
) - 4);
568 * The upper two remaining bytes are the port
569 * numbers we just happen to need. Now put the
570 * length in the lower two.
572 *((__be16
*)skb
->data
) = htons(skb
->len
);
576 * Nice and easy. No AARP type protocols occur here so we can
577 * just shovel it out with a 3 byte LLAP header
581 skb
->data
[0] = sa
->s_node
;
582 skb
->data
[1] = at
->s_node
;
588 /* On a PPP link we neither compress nor aarp. */
589 if (dev
->type
== ARPHRD_PPP
) {
590 skb
->protocol
= htons(ETH_P_PPPTALK
);
595 /* Non ELAP we cannot do. */
596 if (dev
->type
!= ARPHRD_ETHER
)
600 skb
->protocol
= htons(ETH_P_ATALK
);
601 hash
= sa
->s_node
% (AARP_HASH_SIZE
- 1);
603 /* Do we have a resolved entry? */
604 if (sa
->s_node
== ATADDR_BCAST
) {
606 ddp_dl
->request(ddp_dl
, skb
, ddp_eth_multicast
);
610 write_lock_bh(&aarp_lock
);
611 a
= __aarp_find_entry(resolved
[hash
], dev
, sa
);
613 if (a
) { /* Return 1 and fill in the address */
614 a
->expires_at
= jiffies
+ (sysctl_aarp_expiry_time
* 10);
615 ddp_dl
->request(ddp_dl
, skb
, a
->hwaddr
);
616 write_unlock_bh(&aarp_lock
);
620 /* Do we have an unresolved entry: This is the less common path */
621 a
= __aarp_find_entry(unresolved
[hash
], dev
, sa
);
622 if (a
) { /* Queue onto the unresolved queue */
623 skb_queue_tail(&a
->packet_queue
, skb
);
627 /* Allocate a new entry */
630 /* Whoops slipped... good job it's an unreliable protocol 8) */
631 write_unlock_bh(&aarp_lock
);
635 /* Set up the queue */
636 skb_queue_tail(&a
->packet_queue
, skb
);
637 a
->expires_at
= jiffies
+ sysctl_aarp_resolve_time
;
639 a
->next
= unresolved
[hash
];
640 a
->target_addr
= *sa
;
642 unresolved
[hash
] = a
;
645 /* Send an initial request for the address */
646 __aarp_send_query(a
);
649 * Switch to fast timer if needed (That is if this is the first
650 * unresolved entry to get added)
653 if (unresolved_count
== 1)
654 mod_timer(&aarp_timer
, jiffies
+ sysctl_aarp_tick_time
);
656 /* Now finally, it is safe to drop the lock. */
658 write_unlock_bh(&aarp_lock
);
660 /* Tell the ddp layer we have taken over for this frame. */
665 skb
->priority
= skb
->sk
->sk_priority
;
672 * An entry in the aarp unresolved queue has become resolved. Send
673 * all the frames queued under it.
675 * Must run under aarp_lock.
677 static void __aarp_resolved(struct aarp_entry
**list
, struct aarp_entry
*a
,
687 /* Move into the resolved list */
688 a
->next
= resolved
[hash
];
691 /* Kick frames off */
692 while ((skb
= skb_dequeue(&a
->packet_queue
)) != NULL
) {
693 a
->expires_at
= jiffies
+
694 sysctl_aarp_expiry_time
* 10;
695 ddp_dl
->request(ddp_dl
, skb
, a
->hwaddr
);
698 list
= &((*list
)->next
);
702 * This is called by the SNAP driver whenever we see an AARP SNAP
703 * frame. We currently only support Ethernet.
705 static int aarp_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
706 struct packet_type
*pt
, struct net_device
*orig_dev
)
708 struct elapaarp
*ea
= aarp_hdr(skb
);
711 struct aarp_entry
*a
;
712 struct atalk_addr sa
, *ma
, da
;
713 struct atalk_iface
*ifa
;
715 /* We only do Ethernet SNAP AARP. */
716 if (dev
->type
!= ARPHRD_ETHER
)
720 if (!skb_pull(skb
, sizeof(*ea
)))
723 function
= ntohs(ea
->function
);
725 /* Sanity check fields. */
726 if (function
< AARP_REQUEST
|| function
> AARP_PROBE
||
727 ea
->hw_len
!= ETH_ALEN
|| ea
->pa_len
!= AARP_PA_ALEN
||
728 ea
->pa_src_zero
|| ea
->pa_dst_zero
)
732 hash
= ea
->pa_src_node
% (AARP_HASH_SIZE
- 1);
734 /* Build an address. */
735 sa
.s_node
= ea
->pa_src_node
;
736 sa
.s_net
= ea
->pa_src_net
;
738 /* Process the packet. Check for replies of me. */
739 ifa
= atalk_find_dev(dev
);
743 if (ifa
->status
& ATIF_PROBE
&&
744 ifa
->address
.s_node
== ea
->pa_dst_node
&&
745 ifa
->address
.s_net
== ea
->pa_dst_net
) {
746 ifa
->status
|= ATIF_PROBE_FAIL
; /* Fail the probe (in use) */
750 /* Check for replies of proxy AARP entries */
751 da
.s_node
= ea
->pa_dst_node
;
752 da
.s_net
= ea
->pa_dst_net
;
754 write_lock_bh(&aarp_lock
);
755 a
= __aarp_find_entry(proxies
[hash
], dev
, &da
);
757 if (a
&& a
->status
& ATIF_PROBE
) {
758 a
->status
|= ATIF_PROBE_FAIL
;
760 * we do not respond to probe or request packets for
761 * this address while we are probing this address
768 if (!unresolved_count
) /* Speed up */
771 /* Find the entry. */
772 a
= __aarp_find_entry(unresolved
[hash
], dev
, &sa
);
773 if (!a
|| dev
!= a
->dev
)
776 /* We can fill one in - this is good. */
777 memcpy(a
->hwaddr
, ea
->hw_src
, ETH_ALEN
);
778 __aarp_resolved(&unresolved
[hash
], a
, hash
);
779 if (!unresolved_count
)
780 mod_timer(&aarp_timer
,
781 jiffies
+ sysctl_aarp_expiry_time
);
788 * If it is my address set ma to my address and reply.
789 * We can treat probe and request the same. Probe
790 * simply means we shouldn't cache the querying host,
791 * as in a probe they are proposing an address not
794 * Support for proxy-AARP added. We check if the
795 * address is one of our proxies before we toss the
799 sa
.s_node
= ea
->pa_dst_node
;
800 sa
.s_net
= ea
->pa_dst_net
;
802 /* See if we have a matching proxy. */
803 ma
= __aarp_proxy_find(dev
, &sa
);
806 else { /* We need to make a copy of the entry. */
807 da
.s_node
= sa
.s_node
;
812 if (function
== AARP_PROBE
) {
814 * A probe implies someone trying to get an
815 * address. So as a precaution flush any
816 * entries we have for this address.
818 struct aarp_entry
*a
;
820 a
= __aarp_find_entry(resolved
[sa
.s_node
%
821 (AARP_HASH_SIZE
- 1)],
825 * Make it expire next tick - that avoids us
826 * getting into a probe/flush/learn/probe/
827 * flush/learn cycle during probing of a slow
828 * to respond host addr.
831 a
->expires_at
= jiffies
- 1;
832 mod_timer(&aarp_timer
, jiffies
+
833 sysctl_aarp_tick_time
);
837 if (sa
.s_node
!= ma
->s_node
)
840 if (sa
.s_net
&& ma
->s_net
&& sa
.s_net
!= ma
->s_net
)
843 sa
.s_node
= ea
->pa_src_node
;
844 sa
.s_net
= ea
->pa_src_net
;
846 /* aarp_my_address has found the address to use for us.
848 aarp_send_reply(dev
, ma
, &sa
, ea
->hw_src
);
853 write_unlock_bh(&aarp_lock
);
861 static struct notifier_block aarp_notifier
= {
862 .notifier_call
= aarp_device_event
,
865 static unsigned char aarp_snap_id
[] = { 0x00, 0x00, 0x00, 0x80, 0xF3 };
867 void __init
aarp_proto_init(void)
869 aarp_dl
= register_snap_client(aarp_snap_id
, aarp_rcv
);
871 printk(KERN_CRIT
"Unable to register AARP with SNAP.\n");
872 init_timer(&aarp_timer
);
873 aarp_timer
.function
= aarp_expire_timeout
;
875 aarp_timer
.expires
= jiffies
+ sysctl_aarp_expiry_time
;
876 add_timer(&aarp_timer
);
877 register_netdevice_notifier(&aarp_notifier
);
880 /* Remove the AARP entries associated with a device. */
881 void aarp_device_down(struct net_device
*dev
)
885 write_lock_bh(&aarp_lock
);
887 for (ct
= 0; ct
< AARP_HASH_SIZE
; ct
++) {
888 __aarp_expire_device(&resolved
[ct
], dev
);
889 __aarp_expire_device(&unresolved
[ct
], dev
);
890 __aarp_expire_device(&proxies
[ct
], dev
);
893 write_unlock_bh(&aarp_lock
);
896 #ifdef CONFIG_PROC_FS
897 struct aarp_iter_state
{
899 struct aarp_entry
**table
;
903 * Get the aarp entry that is in the chain described
905 * If pos is set then skip till that index.
906 * pos = 1 is the first entry
908 static struct aarp_entry
*iter_next(struct aarp_iter_state
*iter
, loff_t
*pos
)
910 int ct
= iter
->bucket
;
911 struct aarp_entry
**table
= iter
->table
;
913 struct aarp_entry
*entry
;
916 while(ct
< AARP_HASH_SIZE
) {
917 for (entry
= table
[ct
]; entry
; entry
= entry
->next
) {
918 if (!pos
|| ++off
== *pos
) {
927 if (table
== resolved
) {
932 if (table
== unresolved
) {
940 static void *aarp_seq_start(struct seq_file
*seq
, loff_t
*pos
)
942 struct aarp_iter_state
*iter
= seq
->private;
944 read_lock_bh(&aarp_lock
);
945 iter
->table
= resolved
;
948 return *pos
? iter_next(iter
, pos
) : SEQ_START_TOKEN
;
951 static void *aarp_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
953 struct aarp_entry
*entry
= v
;
954 struct aarp_iter_state
*iter
= seq
->private;
958 /* first line after header */
959 if (v
== SEQ_START_TOKEN
)
960 entry
= iter_next(iter
, NULL
);
962 /* next entry in current bucket */
963 else if (entry
->next
)
966 /* next bucket or table */
969 entry
= iter_next(iter
, NULL
);
974 static void aarp_seq_stop(struct seq_file
*seq
, void *v
)
976 read_unlock_bh(&aarp_lock
);
979 static const char *dt2str(unsigned long ticks
)
983 sprintf(buf
, "%ld.%02ld", ticks
/ HZ
, ((ticks
% HZ
) * 100 ) / HZ
);
988 static int aarp_seq_show(struct seq_file
*seq
, void *v
)
990 struct aarp_iter_state
*iter
= seq
->private;
991 struct aarp_entry
*entry
= v
;
992 unsigned long now
= jiffies
;
994 if (v
== SEQ_START_TOKEN
)
996 "Address Interface Hardware Address"
997 " Expires LastSend Retry Status\n");
999 seq_printf(seq
, "%04X:%02X %-12s",
1000 ntohs(entry
->target_addr
.s_net
),
1001 (unsigned int) entry
->target_addr
.s_node
,
1002 entry
->dev
? entry
->dev
->name
: "????");
1003 seq_printf(seq
, "%02X:%02X:%02X:%02X:%02X:%02X",
1004 entry
->hwaddr
[0] & 0xFF,
1005 entry
->hwaddr
[1] & 0xFF,
1006 entry
->hwaddr
[2] & 0xFF,
1007 entry
->hwaddr
[3] & 0xFF,
1008 entry
->hwaddr
[4] & 0xFF,
1009 entry
->hwaddr
[5] & 0xFF);
1010 seq_printf(seq
, " %8s",
1011 dt2str((long)entry
->expires_at
- (long)now
));
1012 if (iter
->table
== unresolved
)
1013 seq_printf(seq
, " %8s %6hu",
1014 dt2str(now
- entry
->last_sent
),
1018 seq_printf(seq
, " %s\n",
1019 (iter
->table
== resolved
) ? "resolved"
1020 : (iter
->table
== unresolved
) ? "unresolved"
1021 : (iter
->table
== proxies
) ? "proxies"
1027 static const struct seq_operations aarp_seq_ops
= {
1028 .start
= aarp_seq_start
,
1029 .next
= aarp_seq_next
,
1030 .stop
= aarp_seq_stop
,
1031 .show
= aarp_seq_show
,
1034 static int aarp_seq_open(struct inode
*inode
, struct file
*file
)
1036 struct seq_file
*seq
;
1038 struct aarp_iter_state
*s
= kmalloc(sizeof(*s
), GFP_KERNEL
);
1043 rc
= seq_open(file
, &aarp_seq_ops
);
1047 seq
= file
->private_data
;
1049 memset(s
, 0, sizeof(*s
));
1057 const struct file_operations atalk_seq_arp_fops
= {
1058 .owner
= THIS_MODULE
,
1059 .open
= aarp_seq_open
,
1061 .llseek
= seq_lseek
,
1062 .release
= seq_release_private
,
1066 /* General module cleanup. Called from cleanup_module() in ddp.c. */
1067 void aarp_cleanup_module(void)
1069 del_timer_sync(&aarp_timer
);
1070 unregister_netdevice_notifier(&aarp_notifier
);
1071 unregister_snap_client(aarp_dl
);