2 * lec.c: Lan Emulation driver
4 * Marko Kiiskila <mkiiskila@yahoo.com>
7 #include <linux/kernel.h>
8 #include <linux/bitops.h>
9 #include <linux/capability.h>
11 /* We are ethernet device */
12 #include <linux/if_ether.h>
13 #include <linux/netdevice.h>
14 #include <linux/etherdevice.h>
16 #include <linux/skbuff.h>
18 #include <asm/byteorder.h>
19 #include <asm/uaccess.h>
22 #include <linux/proc_fs.h>
23 #include <linux/spinlock.h>
24 #include <linux/proc_fs.h>
25 #include <linux/seq_file.h>
27 /* TokenRing if needed */
29 #include <linux/trdevice.h>
33 #include <linux/atmdev.h>
34 #include <linux/atmlec.h>
36 /* Proxy LEC knows about bridging */
37 #if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
38 #include <linux/if_bridge.h>
39 #include "../bridge/br_private.h"
41 static unsigned char bridge_ula_lec
[] = { 0x01, 0x80, 0xc2, 0x00, 0x00 };
45 #include <linux/module.h>
46 #include <linux/init.h>
50 #include "resources.h"
53 #define DPRINTK printk
55 #define DPRINTK(format,args...)
58 #define DUMP_PACKETS 0 /*
64 #define LEC_UNRES_QUE_LEN 8 /*
65 * number of tx packets to queue for a
66 * single destination while waiting for SVC
69 static int lec_open(struct net_device
*dev
);
70 static int lec_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
);
71 static int lec_close(struct net_device
*dev
);
72 static struct net_device_stats
*lec_get_stats(struct net_device
*dev
);
73 static void lec_init(struct net_device
*dev
);
74 static struct lec_arp_table
*lec_arp_find(struct lec_priv
*priv
,
75 unsigned char *mac_addr
);
76 static int lec_arp_remove(struct lec_priv
*priv
,
77 struct lec_arp_table
*to_remove
);
79 static void lane2_associate_ind(struct net_device
*dev
, u8
*mac_address
,
80 u8
*tlvs
, u32 sizeoftlvs
);
81 static int lane2_resolve(struct net_device
*dev
, u8
*dst_mac
, int force
,
82 u8
**tlvs
, u32
*sizeoftlvs
);
83 static int lane2_associate_req(struct net_device
*dev
, u8
*lan_dst
,
84 u8
*tlvs
, u32 sizeoftlvs
);
86 static int lec_addr_delete(struct lec_priv
*priv
, unsigned char *atm_addr
,
87 unsigned long permanent
);
88 static void lec_arp_check_empties(struct lec_priv
*priv
,
89 struct atm_vcc
*vcc
, struct sk_buff
*skb
);
90 static void lec_arp_destroy(struct lec_priv
*priv
);
91 static void lec_arp_init(struct lec_priv
*priv
);
92 static struct atm_vcc
*lec_arp_resolve(struct lec_priv
*priv
,
93 unsigned char *mac_to_find
,
95 struct lec_arp_table
**ret_entry
);
96 static void lec_arp_update(struct lec_priv
*priv
, unsigned char *mac_addr
,
97 unsigned char *atm_addr
, unsigned long remoteflag
,
98 unsigned int targetless_le_arp
);
99 static void lec_flush_complete(struct lec_priv
*priv
, unsigned long tran_id
);
100 static int lec_mcast_make(struct lec_priv
*priv
, struct atm_vcc
*vcc
);
101 static void lec_set_flush_tran_id(struct lec_priv
*priv
,
102 unsigned char *atm_addr
,
103 unsigned long tran_id
);
104 static void lec_vcc_added(struct lec_priv
*priv
, struct atmlec_ioc
*ioc_data
,
106 void (*old_push
) (struct atm_vcc
*vcc
,
107 struct sk_buff
*skb
));
108 static void lec_vcc_close(struct lec_priv
*priv
, struct atm_vcc
*vcc
);
110 /* must be done under lec_arp_lock */
111 static inline void lec_arp_hold(struct lec_arp_table
*entry
)
113 atomic_inc(&entry
->usage
);
116 static inline void lec_arp_put(struct lec_arp_table
*entry
)
118 if (atomic_dec_and_test(&entry
->usage
))
123 static struct lane2_ops lane2_ops
= {
124 lane2_resolve
, /* resolve, spec 3.1.3 */
125 lane2_associate_req
, /* associate_req, spec 3.1.4 */
126 NULL
/* associate indicator, spec 3.1.5 */
129 static unsigned char bus_mac
[ETH_ALEN
] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
131 /* Device structures */
132 static struct net_device
*dev_lec
[MAX_LEC_ITF
];
134 #if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
135 static void lec_handle_bridge(struct sk_buff
*skb
, struct net_device
*dev
)
139 struct lec_priv
*priv
;
142 * Check if this is a BPDU. If so, ask zeppelin to send
143 * LE_TOPOLOGY_REQUEST with the same value of Topology Change bit
144 * as the Config BPDU has
146 eth
= (struct ethhdr
*)skb
->data
;
147 buff
= skb
->data
+ skb
->dev
->hard_header_len
;
148 if (*buff
++ == 0x42 && *buff
++ == 0x42 && *buff
++ == 0x03) {
150 struct sk_buff
*skb2
;
151 struct atmlec_msg
*mesg
;
153 skb2
= alloc_skb(sizeof(struct atmlec_msg
), GFP_ATOMIC
);
156 skb2
->len
= sizeof(struct atmlec_msg
);
157 mesg
= (struct atmlec_msg
*)skb2
->data
;
158 mesg
->type
= l_topology_change
;
160 mesg
->content
.normal
.flag
= *buff
& 0x01; /* 0x01 is topology change */
162 priv
= (struct lec_priv
*)dev
->priv
;
163 atm_force_charge(priv
->lecd
, skb2
->truesize
);
164 sk
= sk_atm(priv
->lecd
);
165 skb_queue_tail(&sk
->sk_receive_queue
, skb2
);
166 sk
->sk_data_ready(sk
, skb2
->len
);
171 #endif /* defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE) */
174 * Modelled after tr_type_trans
175 * All multicast and ARE or STE frames go to BUS.
176 * Non source routed frames go by destination address.
177 * Last hop source routed frames go by destination address.
178 * Not last hop source routed frames go by _next_ route descriptor.
179 * Returns pointer to destination MAC address or fills in rdesc
183 static unsigned char *get_tr_dst(unsigned char *packet
, unsigned char *rdesc
)
186 int riflen
, num_rdsc
;
188 trh
= (struct trh_hdr
*)packet
;
189 if (trh
->daddr
[0] & (uint8_t) 0x80)
190 return bus_mac
; /* multicast */
192 if (trh
->saddr
[0] & TR_RII
) {
193 riflen
= (ntohs(trh
->rcf
) & TR_RCF_LEN_MASK
) >> 8;
194 if ((ntohs(trh
->rcf
) >> 13) != 0)
195 return bus_mac
; /* ARE or STE */
197 return trh
->daddr
; /* not source routed */
200 return trh
->daddr
; /* last hop, source routed */
202 /* riflen is 6 or more, packet has more than one route descriptor */
203 num_rdsc
= (riflen
/ 2) - 1;
204 memset(rdesc
, 0, ETH_ALEN
);
205 /* offset 4 comes from LAN destination field in LE control frames */
206 if (trh
->rcf
& htons((uint16_t) TR_RCF_DIR_BIT
))
207 memcpy(&rdesc
[4], &trh
->rseg
[num_rdsc
- 2], sizeof(__be16
));
209 memcpy(&rdesc
[4], &trh
->rseg
[1], sizeof(__be16
));
210 rdesc
[5] = ((ntohs(trh
->rseg
[0]) & 0x000f) | (rdesc
[5] & 0xf0));
215 #endif /* CONFIG_TR */
218 * Open/initialize the netdevice. This is called (in the current kernel)
219 * sometime after booting when the 'ifconfig' program is run.
221 * This routine should set everything up anew at each open, even
222 * registers that "should" only need to be set once at boot, so that
223 * there is non-reboot way to recover if something goes wrong.
226 static int lec_open(struct net_device
*dev
)
228 struct lec_priv
*priv
= (struct lec_priv
*)dev
->priv
;
230 netif_start_queue(dev
);
231 memset(&priv
->stats
, 0, sizeof(struct net_device_stats
));
236 static __inline__
void
237 lec_send(struct atm_vcc
*vcc
, struct sk_buff
*skb
, struct lec_priv
*priv
)
239 ATM_SKB(skb
)->vcc
= vcc
;
240 ATM_SKB(skb
)->atm_options
= vcc
->atm_options
;
242 atomic_add(skb
->truesize
, &sk_atm(vcc
)->sk_wmem_alloc
);
243 if (vcc
->send(vcc
, skb
) < 0) {
244 priv
->stats
.tx_dropped
++;
248 priv
->stats
.tx_packets
++;
249 priv
->stats
.tx_bytes
+= skb
->len
;
252 static void lec_tx_timeout(struct net_device
*dev
)
254 printk(KERN_INFO
"%s: tx timeout\n", dev
->name
);
255 dev
->trans_start
= jiffies
;
256 netif_wake_queue(dev
);
259 static int lec_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
261 struct sk_buff
*skb2
;
262 struct lec_priv
*priv
= (struct lec_priv
*)dev
->priv
;
263 struct lecdatahdr_8023
*lec_h
;
265 struct lec_arp_table
*entry
;
269 unsigned char rdesc
[ETH_ALEN
]; /* Token Ring route descriptor */
275 #endif /* DUMP_PACKETS >0 */
277 DPRINTK("lec_start_xmit called\n");
279 printk("%s:No lecd attached\n", dev
->name
);
280 priv
->stats
.tx_errors
++;
281 netif_stop_queue(dev
);
285 DPRINTK("skbuff head:%lx data:%lx tail:%lx end:%lx\n",
286 (long)skb
->head
, (long)skb
->data
, (long)skb
->tail
,
288 #if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
289 if (memcmp(skb
->data
, bridge_ula_lec
, sizeof(bridge_ula_lec
)) == 0)
290 lec_handle_bridge(skb
, dev
);
293 /* Make sure we have room for lec_id */
294 if (skb_headroom(skb
) < 2) {
296 DPRINTK("lec_start_xmit: reallocating skb\n");
297 skb2
= skb_realloc_headroom(skb
, LEC_HEADER_LEN
);
305 /* Put le header to place, works for TokenRing too */
306 lec_h
= (struct lecdatahdr_8023
*)skb
->data
;
307 lec_h
->le_header
= htons(priv
->lecid
);
311 * Ugly. Use this to realign Token Ring packets for
312 * e.g. PCA-200E driver.
314 if (priv
->is_trdev
) {
315 skb2
= skb_realloc_headroom(skb
, LEC_HEADER_LEN
);
324 printk("%s: send datalen:%ld lecid:%4.4x\n", dev
->name
,
325 skb
->len
, priv
->lecid
);
326 #if DUMP_PACKETS >= 2
327 for (i
= 0; i
< skb
->len
&& i
< 99; i
++) {
328 sprintf(buf
+ i
* 3, "%2.2x ", 0xff & skb
->data
[i
]);
330 #elif DUMP_PACKETS >= 1
331 for (i
= 0; i
< skb
->len
&& i
< 30; i
++) {
332 sprintf(buf
+ i
* 3, "%2.2x ", 0xff & skb
->data
[i
]);
334 #endif /* DUMP_PACKETS >= 1 */
338 printk("%s...\n", buf
);
339 #endif /* DUMP_PACKETS > 0 */
341 /* Minimum ethernet-frame size */
344 min_frame_size
= LEC_MINIMUM_8025_SIZE
;
347 min_frame_size
= LEC_MINIMUM_8023_SIZE
;
348 if (skb
->len
< min_frame_size
) {
349 if ((skb
->len
+ skb_tailroom(skb
)) < min_frame_size
) {
350 skb2
= skb_copy_expand(skb
, 0,
351 min_frame_size
- skb
->truesize
,
355 priv
->stats
.tx_dropped
++;
360 skb_put(skb
, min_frame_size
- skb
->len
);
363 /* Send to right vcc */
367 if (priv
->is_trdev
) {
368 dst
= get_tr_dst(skb
->data
+ 2, rdesc
);
376 vcc
= lec_arp_resolve(priv
, dst
, is_rdesc
, &entry
);
377 DPRINTK("%s:vcc:%p vcc_flags:%x, entry:%p\n", dev
->name
,
378 vcc
, vcc
? vcc
->flags
: 0, entry
);
379 if (!vcc
|| !test_bit(ATM_VF_READY
, &vcc
->flags
)) {
380 if (entry
&& (entry
->tx_wait
.qlen
< LEC_UNRES_QUE_LEN
)) {
381 DPRINTK("%s:lec_start_xmit: queuing packet, ",
383 DPRINTK("MAC address 0x%02x:%02x:%02x:%02x:%02x:%02x\n",
384 lec_h
->h_dest
[0], lec_h
->h_dest
[1],
385 lec_h
->h_dest
[2], lec_h
->h_dest
[3],
386 lec_h
->h_dest
[4], lec_h
->h_dest
[5]);
387 skb_queue_tail(&entry
->tx_wait
, skb
);
390 ("%s:lec_start_xmit: tx queue full or no arp entry, dropping, ",
392 DPRINTK("MAC address 0x%02x:%02x:%02x:%02x:%02x:%02x\n",
393 lec_h
->h_dest
[0], lec_h
->h_dest
[1],
394 lec_h
->h_dest
[2], lec_h
->h_dest
[3],
395 lec_h
->h_dest
[4], lec_h
->h_dest
[5]);
396 priv
->stats
.tx_dropped
++;
402 printk("%s:sending to vpi:%d vci:%d\n", dev
->name
, vcc
->vpi
, vcc
->vci
);
403 #endif /* DUMP_PACKETS > 0 */
405 while (entry
&& (skb2
= skb_dequeue(&entry
->tx_wait
))) {
406 DPRINTK("lec.c: emptying tx queue, ");
407 DPRINTK("MAC address 0x%02x:%02x:%02x:%02x:%02x:%02x\n",
408 lec_h
->h_dest
[0], lec_h
->h_dest
[1], lec_h
->h_dest
[2],
409 lec_h
->h_dest
[3], lec_h
->h_dest
[4], lec_h
->h_dest
[5]);
410 lec_send(vcc
, skb2
, priv
);
413 lec_send(vcc
, skb
, priv
);
415 if (!atm_may_send(vcc
, 0)) {
416 struct lec_vcc_priv
*vpriv
= LEC_VCC_PRIV(vcc
);
419 netif_stop_queue(dev
);
422 * vcc->pop() might have occurred in between, making
423 * the vcc usuable again. Since xmit is serialized,
424 * this is the only situation we have to re-test.
427 if (atm_may_send(vcc
, 0))
428 netif_wake_queue(dev
);
434 dev
->trans_start
= jiffies
;
438 /* The inverse routine to net_open(). */
439 static int lec_close(struct net_device
*dev
)
441 netif_stop_queue(dev
);
446 * Get the current statistics.
447 * This may be called with the card open or closed.
449 static struct net_device_stats
*lec_get_stats(struct net_device
*dev
)
451 return &((struct lec_priv
*)dev
->priv
)->stats
;
454 static int lec_atm_send(struct atm_vcc
*vcc
, struct sk_buff
*skb
)
457 struct net_device
*dev
= (struct net_device
*)vcc
->proto_data
;
458 struct lec_priv
*priv
= (struct lec_priv
*)dev
->priv
;
459 struct atmlec_msg
*mesg
;
460 struct lec_arp_table
*entry
;
462 char *tmp
; /* FIXME */
464 atomic_sub(skb
->truesize
, &sk_atm(vcc
)->sk_wmem_alloc
);
465 mesg
= (struct atmlec_msg
*)skb
->data
;
467 tmp
+= sizeof(struct atmlec_msg
);
468 DPRINTK("%s: msg from zeppelin:%d\n", dev
->name
, mesg
->type
);
469 switch (mesg
->type
) {
471 for (i
= 0; i
< 6; i
++) {
472 dev
->dev_addr
[i
] = mesg
->content
.normal
.mac_addr
[i
];
476 for (i
= 0; i
< 6; i
++) {
477 dev
->dev_addr
[i
] = 0;
481 lec_addr_delete(priv
, mesg
->content
.normal
.atm_addr
,
482 mesg
->content
.normal
.flag
);
484 case l_topology_change
:
485 priv
->topology_change
= mesg
->content
.normal
.flag
;
487 case l_flush_complete
:
488 lec_flush_complete(priv
, mesg
->content
.normal
.flag
);
490 case l_narp_req
: /* LANE2: see 7.1.35 in the lane2 spec */
491 spin_lock_irqsave(&priv
->lec_arp_lock
, flags
);
492 entry
= lec_arp_find(priv
, mesg
->content
.normal
.mac_addr
);
493 lec_arp_remove(priv
, entry
);
494 spin_unlock_irqrestore(&priv
->lec_arp_lock
, flags
);
496 if (mesg
->content
.normal
.no_source_le_narp
)
500 lec_arp_update(priv
, mesg
->content
.normal
.mac_addr
,
501 mesg
->content
.normal
.atm_addr
,
502 mesg
->content
.normal
.flag
,
503 mesg
->content
.normal
.targetless_le_arp
);
504 DPRINTK("lec: in l_arp_update\n");
505 if (mesg
->sizeoftlvs
!= 0) { /* LANE2 3.1.5 */
506 DPRINTK("lec: LANE2 3.1.5, got tlvs, size %d\n",
508 lane2_associate_ind(dev
, mesg
->content
.normal
.mac_addr
,
509 tmp
, mesg
->sizeoftlvs
);
513 priv
->maximum_unknown_frame_count
=
514 mesg
->content
.config
.maximum_unknown_frame_count
;
515 priv
->max_unknown_frame_time
=
516 (mesg
->content
.config
.max_unknown_frame_time
* HZ
);
517 priv
->max_retry_count
= mesg
->content
.config
.max_retry_count
;
518 priv
->aging_time
= (mesg
->content
.config
.aging_time
* HZ
);
519 priv
->forward_delay_time
=
520 (mesg
->content
.config
.forward_delay_time
* HZ
);
521 priv
->arp_response_time
=
522 (mesg
->content
.config
.arp_response_time
* HZ
);
523 priv
->flush_timeout
= (mesg
->content
.config
.flush_timeout
* HZ
);
524 priv
->path_switching_delay
=
525 (mesg
->content
.config
.path_switching_delay
* HZ
);
526 priv
->lane_version
= mesg
->content
.config
.lane_version
; /* LANE2 */
527 priv
->lane2_ops
= NULL
;
528 if (priv
->lane_version
> 1)
529 priv
->lane2_ops
= &lane2_ops
;
530 if (dev
->change_mtu(dev
, mesg
->content
.config
.mtu
))
531 printk("%s: change_mtu to %d failed\n", dev
->name
,
532 mesg
->content
.config
.mtu
);
533 priv
->is_proxy
= mesg
->content
.config
.is_proxy
;
535 case l_flush_tran_id
:
536 lec_set_flush_tran_id(priv
, mesg
->content
.normal
.atm_addr
,
537 mesg
->content
.normal
.flag
);
541 (unsigned short)(0xffff & mesg
->content
.normal
.flag
);
543 case l_should_bridge
:
544 #if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
546 struct net_bridge_fdb_entry
*f
;
549 ("%s: bridge zeppelin asks about 0x%02x:%02x:%02x:%02x:%02x:%02x\n",
550 dev
->name
, mesg
->content
.proxy
.mac_addr
[0],
551 mesg
->content
.proxy
.mac_addr
[1],
552 mesg
->content
.proxy
.mac_addr
[2],
553 mesg
->content
.proxy
.mac_addr
[3],
554 mesg
->content
.proxy
.mac_addr
[4],
555 mesg
->content
.proxy
.mac_addr
[5]);
557 if (br_fdb_get_hook
== NULL
|| dev
->br_port
== NULL
)
560 f
= br_fdb_get_hook(dev
->br_port
->br
,
561 mesg
->content
.proxy
.mac_addr
);
562 if (f
!= NULL
&& f
->dst
->dev
!= dev
563 && f
->dst
->state
== BR_STATE_FORWARDING
) {
564 /* hit from bridge table, send LE_ARP_RESPONSE */
565 struct sk_buff
*skb2
;
569 ("%s: entry found, responding to zeppelin\n",
572 alloc_skb(sizeof(struct atmlec_msg
),
578 skb2
->len
= sizeof(struct atmlec_msg
);
579 memcpy(skb2
->data
, mesg
,
580 sizeof(struct atmlec_msg
));
581 atm_force_charge(priv
->lecd
, skb2
->truesize
);
582 sk
= sk_atm(priv
->lecd
);
583 skb_queue_tail(&sk
->sk_receive_queue
, skb2
);
584 sk
->sk_data_ready(sk
, skb2
->len
);
589 #endif /* defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE) */
592 printk("%s: Unknown message type %d\n", dev
->name
, mesg
->type
);
600 static void lec_atm_close(struct atm_vcc
*vcc
)
603 struct net_device
*dev
= (struct net_device
*)vcc
->proto_data
;
604 struct lec_priv
*priv
= (struct lec_priv
*)dev
->priv
;
607 /* Do something needful? */
609 netif_stop_queue(dev
);
610 lec_arp_destroy(priv
);
612 if (skb_peek(&sk_atm(vcc
)->sk_receive_queue
))
613 printk("%s lec_atm_close: closing with messages pending\n",
615 while ((skb
= skb_dequeue(&sk_atm(vcc
)->sk_receive_queue
)) != NULL
) {
616 atm_return(vcc
, skb
->truesize
);
620 printk("%s: Shut down!\n", dev
->name
);
621 module_put(THIS_MODULE
);
624 static struct atmdev_ops lecdev_ops
= {
625 .close
= lec_atm_close
,
629 static struct atm_dev lecatm_dev
= {
632 .number
= 999, /* dummy device number */
633 .lock
= SPIN_LOCK_UNLOCKED
637 * LANE2: new argument struct sk_buff *data contains
638 * the LE_ARP based TLVs introduced in the LANE2 spec
641 send_to_lecd(struct lec_priv
*priv
, atmlec_msg_type type
,
642 unsigned char *mac_addr
, unsigned char *atm_addr
,
643 struct sk_buff
*data
)
647 struct atmlec_msg
*mesg
;
649 if (!priv
|| !priv
->lecd
) {
652 skb
= alloc_skb(sizeof(struct atmlec_msg
), GFP_ATOMIC
);
655 skb
->len
= sizeof(struct atmlec_msg
);
656 mesg
= (struct atmlec_msg
*)skb
->data
;
657 memset(mesg
, 0, sizeof(struct atmlec_msg
));
660 mesg
->sizeoftlvs
= data
->len
;
662 memcpy(&mesg
->content
.normal
.mac_addr
, mac_addr
, ETH_ALEN
);
664 mesg
->content
.normal
.targetless_le_arp
= 1;
666 memcpy(&mesg
->content
.normal
.atm_addr
, atm_addr
, ATM_ESA_LEN
);
668 atm_force_charge(priv
->lecd
, skb
->truesize
);
669 sk
= sk_atm(priv
->lecd
);
670 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
671 sk
->sk_data_ready(sk
, skb
->len
);
674 DPRINTK("lec: about to send %d bytes of data\n", data
->len
);
675 atm_force_charge(priv
->lecd
, data
->truesize
);
676 skb_queue_tail(&sk
->sk_receive_queue
, data
);
677 sk
->sk_data_ready(sk
, skb
->len
);
683 /* shamelessly stolen from drivers/net/net_init.c */
684 static int lec_change_mtu(struct net_device
*dev
, int new_mtu
)
686 if ((new_mtu
< 68) || (new_mtu
> 18190))
692 static void lec_set_multicast_list(struct net_device
*dev
)
695 * by default, all multicast frames arrive over the bus.
696 * eventually support selective multicast service
701 static void lec_init(struct net_device
*dev
)
703 dev
->change_mtu
= lec_change_mtu
;
704 dev
->open
= lec_open
;
705 dev
->stop
= lec_close
;
706 dev
->hard_start_xmit
= lec_start_xmit
;
707 dev
->tx_timeout
= lec_tx_timeout
;
709 dev
->get_stats
= lec_get_stats
;
710 dev
->set_multicast_list
= lec_set_multicast_list
;
711 dev
->do_ioctl
= NULL
;
712 printk("%s: Initialized!\n", dev
->name
);
716 static unsigned char lec_ctrl_magic
[] = {
723 #define LEC_DATA_DIRECT_8023 2
724 #define LEC_DATA_DIRECT_8025 3
726 static int lec_is_data_direct(struct atm_vcc
*vcc
)
728 return ((vcc
->sap
.blli
[0].l3
.tr9577
.snap
[4] == LEC_DATA_DIRECT_8023
) ||
729 (vcc
->sap
.blli
[0].l3
.tr9577
.snap
[4] == LEC_DATA_DIRECT_8025
));
732 static void lec_push(struct atm_vcc
*vcc
, struct sk_buff
*skb
)
735 struct net_device
*dev
= (struct net_device
*)vcc
->proto_data
;
736 struct lec_priv
*priv
= (struct lec_priv
*)dev
->priv
;
742 printk("%s: lec_push vcc vpi:%d vci:%d\n", dev
->name
,
746 DPRINTK("%s: null skb\n", dev
->name
);
747 lec_vcc_close(priv
, vcc
);
751 printk("%s: rcv datalen:%ld lecid:%4.4x\n", dev
->name
,
752 skb
->len
, priv
->lecid
);
753 #if DUMP_PACKETS >= 2
754 for (i
= 0; i
< skb
->len
&& i
< 99; i
++) {
755 sprintf(buf
+ i
* 3, "%2.2x ", 0xff & skb
->data
[i
]);
757 #elif DUMP_PACKETS >= 1
758 for (i
= 0; i
< skb
->len
&& i
< 30; i
++) {
759 sprintf(buf
+ i
* 3, "%2.2x ", 0xff & skb
->data
[i
]);
761 #endif /* DUMP_PACKETS >= 1 */
765 printk("%s...\n", buf
);
766 #endif /* DUMP_PACKETS > 0 */
767 if (memcmp(skb
->data
, lec_ctrl_magic
, 4) == 0) { /* Control frame, to daemon */
768 struct sock
*sk
= sk_atm(vcc
);
770 DPRINTK("%s: To daemon\n", dev
->name
);
771 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
772 sk
->sk_data_ready(sk
, skb
->len
);
773 } else { /* Data frame, queue to protocol handlers */
774 struct lec_arp_table
*entry
;
775 unsigned char *src
, *dst
;
777 atm_return(vcc
, skb
->truesize
);
778 if (*(__be16
*) skb
->data
== htons(priv
->lecid
) ||
779 !priv
->lecd
|| !(dev
->flags
& IFF_UP
)) {
781 * Probably looping back, or if lecd is missing,
784 DPRINTK("Ignoring frame...\n");
790 dst
= ((struct lecdatahdr_8025
*)skb
->data
)->h_dest
;
793 dst
= ((struct lecdatahdr_8023
*)skb
->data
)->h_dest
;
796 * If this is a Data Direct VCC, and the VCC does not match
797 * the LE_ARP cache entry, delete the LE_ARP cache entry.
799 spin_lock_irqsave(&priv
->lec_arp_lock
, flags
);
800 if (lec_is_data_direct(vcc
)) {
804 ((struct lecdatahdr_8025
*)skb
->data
)->
809 ((struct lecdatahdr_8023
*)skb
->data
)->
811 entry
= lec_arp_find(priv
, src
);
812 if (entry
&& entry
->vcc
!= vcc
) {
813 lec_arp_remove(priv
, entry
);
817 spin_unlock_irqrestore(&priv
->lec_arp_lock
, flags
);
819 if (!(dst
[0] & 0x01) && /* Never filter Multi/Broadcast */
820 !priv
->is_proxy
&& /* Proxy wants all the packets */
821 memcmp(dst
, dev
->dev_addr
, dev
->addr_len
)) {
825 if (!hlist_empty(&priv
->lec_arp_empty_ones
)) {
826 lec_arp_check_empties(priv
, vcc
, skb
);
829 skb_pull(skb
, 2); /* skip lec_id */
832 skb
->protocol
= tr_type_trans(skb
, dev
);
835 skb
->protocol
= eth_type_trans(skb
, dev
);
836 priv
->stats
.rx_packets
++;
837 priv
->stats
.rx_bytes
+= skb
->len
;
838 memset(ATM_SKB(skb
), 0, sizeof(struct atm_skb_data
));
843 static void lec_pop(struct atm_vcc
*vcc
, struct sk_buff
*skb
)
845 struct lec_vcc_priv
*vpriv
= LEC_VCC_PRIV(vcc
);
846 struct net_device
*dev
= skb
->dev
;
849 printk("lec_pop(): vpriv = NULL!?!?!?\n");
853 vpriv
->old_pop(vcc
, skb
);
855 if (vpriv
->xoff
&& atm_may_send(vcc
, 0)) {
857 if (netif_running(dev
) && netif_queue_stopped(dev
))
858 netif_wake_queue(dev
);
862 static int lec_vcc_attach(struct atm_vcc
*vcc
, void __user
*arg
)
864 struct lec_vcc_priv
*vpriv
;
866 struct atmlec_ioc ioc_data
;
868 /* Lecd must be up in this case */
869 bytes_left
= copy_from_user(&ioc_data
, arg
, sizeof(struct atmlec_ioc
));
870 if (bytes_left
!= 0) {
872 ("lec: lec_vcc_attach, copy from user failed for %d bytes\n",
875 if (ioc_data
.dev_num
< 0 || ioc_data
.dev_num
>= MAX_LEC_ITF
||
876 !dev_lec
[ioc_data
.dev_num
])
878 if (!(vpriv
= kmalloc(sizeof(struct lec_vcc_priv
), GFP_KERNEL
)))
881 vpriv
->old_pop
= vcc
->pop
;
882 vcc
->user_back
= vpriv
;
884 lec_vcc_added(dev_lec
[ioc_data
.dev_num
]->priv
,
885 &ioc_data
, vcc
, vcc
->push
);
886 vcc
->proto_data
= dev_lec
[ioc_data
.dev_num
];
887 vcc
->push
= lec_push
;
891 static int lec_mcast_attach(struct atm_vcc
*vcc
, int arg
)
893 if (arg
< 0 || arg
>= MAX_LEC_ITF
|| !dev_lec
[arg
])
895 vcc
->proto_data
= dev_lec
[arg
];
896 return (lec_mcast_make((struct lec_priv
*)dev_lec
[arg
]->priv
, vcc
));
899 /* Initialize device. */
900 static int lecd_attach(struct atm_vcc
*vcc
, int arg
)
903 struct lec_priv
*priv
;
910 if (arg
>= MAX_LEC_ITF
)
912 #else /* Reserve the top NUM_TR_DEVS for TR */
913 if (arg
>= (MAX_LEC_ITF
- NUM_TR_DEVS
))
920 if (i
>= (MAX_LEC_ITF
- NUM_TR_DEVS
))
923 size
= sizeof(struct lec_priv
);
926 dev_lec
[i
] = alloc_trdev(size
);
929 dev_lec
[i
] = alloc_etherdev(size
);
932 snprintf(dev_lec
[i
]->name
, IFNAMSIZ
, "lec%d", i
);
933 if (register_netdev(dev_lec
[i
])) {
934 free_netdev(dev_lec
[i
]);
938 priv
= dev_lec
[i
]->priv
;
939 priv
->is_trdev
= is_trdev
;
940 lec_init(dev_lec
[i
]);
942 priv
= dev_lec
[i
]->priv
;
947 priv
->itfnum
= i
; /* LANE2 addition */
949 vcc
->dev
= &lecatm_dev
;
950 vcc_insert_socket(sk_atm(vcc
));
952 vcc
->proto_data
= dev_lec
[i
];
953 set_bit(ATM_VF_META
, &vcc
->flags
);
954 set_bit(ATM_VF_READY
, &vcc
->flags
);
956 /* Set default values to these variables */
957 priv
->maximum_unknown_frame_count
= 1;
958 priv
->max_unknown_frame_time
= (1 * HZ
);
959 priv
->vcc_timeout_period
= (1200 * HZ
);
960 priv
->max_retry_count
= 1;
961 priv
->aging_time
= (300 * HZ
);
962 priv
->forward_delay_time
= (15 * HZ
);
963 priv
->topology_change
= 0;
964 priv
->arp_response_time
= (1 * HZ
);
965 priv
->flush_timeout
= (4 * HZ
);
966 priv
->path_switching_delay
= (6 * HZ
);
968 if (dev_lec
[i
]->flags
& IFF_UP
) {
969 netif_start_queue(dev_lec
[i
]);
971 __module_get(THIS_MODULE
);
975 #ifdef CONFIG_PROC_FS
976 static char *lec_arp_get_status_string(unsigned char status
)
978 static char *lec_arp_status_string
[] = {
983 "ESI_FLUSH_PENDING ",
987 if (status
> ESI_FORWARD_DIRECT
)
988 status
= 3; /* ESI_UNDEFINED */
989 return lec_arp_status_string
[status
];
992 static void lec_info(struct seq_file
*seq
, struct lec_arp_table
*entry
)
996 for (i
= 0; i
< ETH_ALEN
; i
++)
997 seq_printf(seq
, "%2.2x", entry
->mac_addr
[i
] & 0xff);
998 seq_printf(seq
, " ");
999 for (i
= 0; i
< ATM_ESA_LEN
; i
++)
1000 seq_printf(seq
, "%2.2x", entry
->atm_addr
[i
] & 0xff);
1001 seq_printf(seq
, " %s %4.4x", lec_arp_get_status_string(entry
->status
),
1002 entry
->flags
& 0xffff);
1004 seq_printf(seq
, "%3d %3d ", entry
->vcc
->vpi
, entry
->vcc
->vci
);
1006 seq_printf(seq
, " ");
1007 if (entry
->recv_vcc
) {
1008 seq_printf(seq
, " %3d %3d", entry
->recv_vcc
->vpi
,
1009 entry
->recv_vcc
->vci
);
1011 seq_putc(seq
, '\n');
1015 unsigned long flags
;
1016 struct lec_priv
*locked
;
1017 struct hlist_node
*node
;
1018 struct net_device
*dev
;
1024 static void *lec_tbl_walk(struct lec_state
*state
, struct hlist_head
*tbl
,
1027 struct hlist_node
*e
= state
->node
;
1028 struct lec_arp_table
*tmp
;
1032 if (e
== (void *)1) {
1037 hlist_for_each_entry_from(tmp
, e
, next
) {
1043 return (*l
< 0) ? state
: NULL
;
1046 static void *lec_arp_walk(struct lec_state
*state
, loff_t
*l
,
1047 struct lec_priv
*priv
)
1052 for (p
= state
->arp_table
; p
< LEC_ARP_TABLE_SIZE
; p
++) {
1053 v
= lec_tbl_walk(state
, &priv
->lec_arp_tables
[p
], l
);
1057 state
->arp_table
= p
;
1061 static void *lec_misc_walk(struct lec_state
*state
, loff_t
*l
,
1062 struct lec_priv
*priv
)
1064 struct hlist_head
*lec_misc_tables
[] = {
1065 &priv
->lec_arp_empty_ones
,
1066 &priv
->lec_no_forward
,
1072 for (q
= state
->misc_table
; q
< ARRAY_SIZE(lec_misc_tables
); q
++) {
1073 v
= lec_tbl_walk(state
, lec_misc_tables
[q
], l
);
1077 state
->misc_table
= q
;
1081 static void *lec_priv_walk(struct lec_state
*state
, loff_t
*l
,
1082 struct lec_priv
*priv
)
1084 if (!state
->locked
) {
1085 state
->locked
= priv
;
1086 spin_lock_irqsave(&priv
->lec_arp_lock
, state
->flags
);
1088 if (!lec_arp_walk(state
, l
, priv
) && !lec_misc_walk(state
, l
, priv
)) {
1089 spin_unlock_irqrestore(&priv
->lec_arp_lock
, state
->flags
);
1090 state
->locked
= NULL
;
1091 /* Partial state reset for the next time we get called */
1092 state
->arp_table
= state
->misc_table
= 0;
1094 return state
->locked
;
1097 static void *lec_itf_walk(struct lec_state
*state
, loff_t
*l
)
1099 struct net_device
*dev
;
1102 dev
= state
->dev
? state
->dev
: dev_lec
[state
->itf
];
1103 v
= (dev
&& dev
->priv
) ? lec_priv_walk(state
, l
, dev
->priv
) : NULL
;
1106 /* Partial state reset for the next time we get called */
1113 static void *lec_get_idx(struct lec_state
*state
, loff_t l
)
1117 for (; state
->itf
< MAX_LEC_ITF
; state
->itf
++) {
1118 v
= lec_itf_walk(state
, &l
);
1125 static void *lec_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1127 struct lec_state
*state
= seq
->private;
1131 state
->locked
= NULL
;
1132 state
->arp_table
= 0;
1133 state
->misc_table
= 0;
1134 state
->node
= (void *)1;
1136 return *pos
? lec_get_idx(state
, *pos
) : (void *)1;
1139 static void lec_seq_stop(struct seq_file
*seq
, void *v
)
1141 struct lec_state
*state
= seq
->private;
1144 spin_unlock_irqrestore(&state
->locked
->lec_arp_lock
,
1146 dev_put(state
->dev
);
1150 static void *lec_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
1152 struct lec_state
*state
= seq
->private;
1154 v
= lec_get_idx(state
, 1);
1155 *pos
+= !!PTR_ERR(v
);
1159 static int lec_seq_show(struct seq_file
*seq
, void *v
)
1161 static char lec_banner
[] = "Itf MAC ATM destination"
1163 "VPI/VCI Recv VPI/VCI\n";
1166 seq_puts(seq
, lec_banner
);
1168 struct lec_state
*state
= seq
->private;
1169 struct net_device
*dev
= state
->dev
;
1170 struct lec_arp_table
*entry
= hlist_entry(state
->node
, struct lec_arp_table
, next
);
1172 seq_printf(seq
, "%s ", dev
->name
);
1173 lec_info(seq
, entry
);
1178 static struct seq_operations lec_seq_ops
= {
1179 .start
= lec_seq_start
,
1180 .next
= lec_seq_next
,
1181 .stop
= lec_seq_stop
,
1182 .show
= lec_seq_show
,
1185 static int lec_seq_open(struct inode
*inode
, struct file
*file
)
1187 struct lec_state
*state
;
1188 struct seq_file
*seq
;
1191 state
= kmalloc(sizeof(*state
), GFP_KERNEL
);
1197 rc
= seq_open(file
, &lec_seq_ops
);
1200 seq
= file
->private_data
;
1201 seq
->private = state
;
1210 static int lec_seq_release(struct inode
*inode
, struct file
*file
)
1212 return seq_release_private(inode
, file
);
1215 static const struct file_operations lec_seq_fops
= {
1216 .owner
= THIS_MODULE
,
1217 .open
= lec_seq_open
,
1219 .llseek
= seq_lseek
,
1220 .release
= lec_seq_release
,
1224 static int lane_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1226 struct atm_vcc
*vcc
= ATM_SD(sock
);
1233 if (!capable(CAP_NET_ADMIN
))
1237 return -ENOIOCTLCMD
;
1242 err
= lecd_attach(vcc
, (int)arg
);
1244 sock
->state
= SS_CONNECTED
;
1247 err
= lec_mcast_attach(vcc
, (int)arg
);
1250 err
= lec_vcc_attach(vcc
, (void __user
*)arg
);
1257 static struct atm_ioctl lane_ioctl_ops
= {
1258 .owner
= THIS_MODULE
,
1259 .ioctl
= lane_ioctl
,
1262 static int __init
lane_module_init(void)
1264 #ifdef CONFIG_PROC_FS
1265 struct proc_dir_entry
*p
;
1267 p
= create_proc_entry("lec", S_IRUGO
, atm_proc_root
);
1269 p
->proc_fops
= &lec_seq_fops
;
1272 register_atm_ioctl(&lane_ioctl_ops
);
1273 printk("lec.c: " __DATE__
" " __TIME__
" initialized\n");
1277 static void __exit
lane_module_cleanup(void)
1280 struct lec_priv
*priv
;
1282 remove_proc_entry("lec", atm_proc_root
);
1284 deregister_atm_ioctl(&lane_ioctl_ops
);
1286 for (i
= 0; i
< MAX_LEC_ITF
; i
++) {
1287 if (dev_lec
[i
] != NULL
) {
1288 priv
= (struct lec_priv
*)dev_lec
[i
]->priv
;
1289 unregister_netdev(dev_lec
[i
]);
1290 free_netdev(dev_lec
[i
]);
1298 module_init(lane_module_init
);
1299 module_exit(lane_module_cleanup
);
1302 * LANE2: 3.1.3, LE_RESOLVE.request
1303 * Non force allocates memory and fills in *tlvs, fills in *sizeoftlvs.
1304 * If sizeoftlvs == NULL the default TLVs associated with with this
1306 * If dst_mac == NULL, targetless LE_ARP will be sent
1308 static int lane2_resolve(struct net_device
*dev
, u8
*dst_mac
, int force
,
1309 u8
**tlvs
, u32
*sizeoftlvs
)
1311 unsigned long flags
;
1312 struct lec_priv
*priv
= (struct lec_priv
*)dev
->priv
;
1313 struct lec_arp_table
*table
;
1314 struct sk_buff
*skb
;
1318 spin_lock_irqsave(&priv
->lec_arp_lock
, flags
);
1319 table
= lec_arp_find(priv
, dst_mac
);
1320 spin_unlock_irqrestore(&priv
->lec_arp_lock
, flags
);
1324 *tlvs
= kmemdup(table
->tlvs
, table
->sizeoftlvs
, GFP_ATOMIC
);
1328 *sizeoftlvs
= table
->sizeoftlvs
;
1333 if (sizeoftlvs
== NULL
)
1334 retval
= send_to_lecd(priv
, l_arp_xmt
, dst_mac
, NULL
, NULL
);
1337 skb
= alloc_skb(*sizeoftlvs
, GFP_ATOMIC
);
1340 skb
->len
= *sizeoftlvs
;
1341 memcpy(skb
->data
, *tlvs
, *sizeoftlvs
);
1342 retval
= send_to_lecd(priv
, l_arp_xmt
, dst_mac
, NULL
, skb
);
1348 * LANE2: 3.1.4, LE_ASSOCIATE.request
1349 * Associate the *tlvs with the *lan_dst address.
1350 * Will overwrite any previous association
1351 * Returns 1 for success, 0 for failure (out of memory)
1354 static int lane2_associate_req(struct net_device
*dev
, u8
*lan_dst
,
1355 u8
*tlvs
, u32 sizeoftlvs
)
1358 struct sk_buff
*skb
;
1359 struct lec_priv
*priv
= (struct lec_priv
*)dev
->priv
;
1361 if (compare_ether_addr(lan_dst
, dev
->dev_addr
))
1362 return (0); /* not our mac address */
1364 kfree(priv
->tlvs
); /* NULL if there was no previous association */
1366 priv
->tlvs
= kmemdup(tlvs
, sizeoftlvs
, GFP_KERNEL
);
1367 if (priv
->tlvs
== NULL
)
1369 priv
->sizeoftlvs
= sizeoftlvs
;
1371 skb
= alloc_skb(sizeoftlvs
, GFP_ATOMIC
);
1374 skb
->len
= sizeoftlvs
;
1375 memcpy(skb
->data
, tlvs
, sizeoftlvs
);
1376 retval
= send_to_lecd(priv
, l_associate_req
, NULL
, NULL
, skb
);
1378 printk("lec.c: lane2_associate_req() failed\n");
1380 * If the previous association has changed we must
1381 * somehow notify other LANE entities about the change
1387 * LANE2: 3.1.5, LE_ASSOCIATE.indication
1390 static void lane2_associate_ind(struct net_device
*dev
, u8
*mac_addr
,
1391 u8
*tlvs
, u32 sizeoftlvs
)
1396 struct lec_priv
*priv
= (struct lec_priv
*)dev
->priv
;
1398 * Why have the TLVs in LE_ARP entries
1399 * since we do not use them? When you
1400 * uncomment this code, make sure the
1401 * TLVs get freed when entry is killed
1403 struct lec_arp_table
*entry
= lec_arp_find(priv
, mac_addr
);
1406 return; /* should not happen */
1410 entry
->tlvs
= kmemdup(tlvs
, sizeoftlvs
, GFP_KERNEL
);
1411 if (entry
->tlvs
== NULL
)
1413 entry
->sizeoftlvs
= sizeoftlvs
;
1416 printk("lec.c: lane2_associate_ind()\n");
1417 printk("dump of tlvs, sizeoftlvs=%d\n", sizeoftlvs
);
1418 while (i
< sizeoftlvs
)
1419 printk("%02x ", tlvs
[i
++]);
1424 /* tell MPOA about the TLVs we saw */
1425 if (priv
->lane2_ops
&& priv
->lane2_ops
->associate_indicator
) {
1426 priv
->lane2_ops
->associate_indicator(dev
, mac_addr
,
1433 * Here starts what used to lec_arpc.c
1435 * lec_arpc.c was added here when making
1436 * lane client modular. October 1997
1439 #include <linux/types.h>
1440 #include <linux/timer.h>
1441 #include <asm/param.h>
1442 #include <asm/atomic.h>
1443 #include <linux/inetdevice.h>
1444 #include <net/route.h>
1447 #define DPRINTK(format,args...)
1449 #define DPRINTK printk
1452 #define DEBUG_ARP_TABLE 0
1454 #define LEC_ARP_REFRESH_INTERVAL (3*HZ)
1456 static void lec_arp_check_expire(struct work_struct
*work
);
1457 static void lec_arp_expire_arp(unsigned long data
);
1463 #define HASH(ch) (ch & (LEC_ARP_TABLE_SIZE -1))
1466 * Initialization of arp-cache
1468 static void lec_arp_init(struct lec_priv
*priv
)
1472 for (i
= 0; i
< LEC_ARP_TABLE_SIZE
; i
++) {
1473 INIT_HLIST_HEAD(&priv
->lec_arp_tables
[i
]);
1475 INIT_HLIST_HEAD(&priv
->lec_arp_empty_ones
);
1476 INIT_HLIST_HEAD(&priv
->lec_no_forward
);
1477 INIT_HLIST_HEAD(&priv
->mcast_fwds
);
1478 spin_lock_init(&priv
->lec_arp_lock
);
1479 INIT_DELAYED_WORK(&priv
->lec_arp_work
, lec_arp_check_expire
);
1480 schedule_delayed_work(&priv
->lec_arp_work
, LEC_ARP_REFRESH_INTERVAL
);
1483 static void lec_arp_clear_vccs(struct lec_arp_table
*entry
)
1486 struct atm_vcc
*vcc
= entry
->vcc
;
1487 struct lec_vcc_priv
*vpriv
= LEC_VCC_PRIV(vcc
);
1488 struct net_device
*dev
= (struct net_device
*)vcc
->proto_data
;
1490 vcc
->pop
= vpriv
->old_pop
;
1492 netif_wake_queue(dev
);
1494 vcc
->user_back
= NULL
;
1495 vcc
->push
= entry
->old_push
;
1496 vcc_release_async(vcc
, -EPIPE
);
1499 if (entry
->recv_vcc
) {
1500 entry
->recv_vcc
->push
= entry
->old_recv_push
;
1501 vcc_release_async(entry
->recv_vcc
, -EPIPE
);
1502 entry
->recv_vcc
= NULL
;
1507 * Insert entry to lec_arp_table
1508 * LANE2: Add to the end of the list to satisfy 8.1.13
1511 lec_arp_add(struct lec_priv
*priv
, struct lec_arp_table
*entry
)
1513 struct hlist_head
*tmp
;
1515 tmp
= &priv
->lec_arp_tables
[HASH(entry
->mac_addr
[ETH_ALEN
- 1])];
1516 hlist_add_head(&entry
->next
, tmp
);
1518 DPRINTK("LEC_ARP: Added entry:%2.2x %2.2x %2.2x %2.2x %2.2x %2.2x\n",
1519 0xff & entry
->mac_addr
[0], 0xff & entry
->mac_addr
[1],
1520 0xff & entry
->mac_addr
[2], 0xff & entry
->mac_addr
[3],
1521 0xff & entry
->mac_addr
[4], 0xff & entry
->mac_addr
[5]);
1525 * Remove entry from lec_arp_table
1528 lec_arp_remove(struct lec_priv
*priv
, struct lec_arp_table
*to_remove
)
1530 struct hlist_node
*node
;
1531 struct lec_arp_table
*entry
;
1532 int i
, remove_vcc
= 1;
1538 hlist_del(&to_remove
->next
);
1539 del_timer(&to_remove
->timer
);
1541 /* If this is the only MAC connected to this VCC, also tear down the VCC */
1542 if (to_remove
->status
>= ESI_FLUSH_PENDING
) {
1544 * ESI_FLUSH_PENDING, ESI_FORWARD_DIRECT
1546 for (i
= 0; i
< LEC_ARP_TABLE_SIZE
; i
++) {
1547 hlist_for_each_entry(entry
, node
, &priv
->lec_arp_tables
[i
], next
) {
1548 if (memcmp(to_remove
->atm_addr
,
1549 entry
->atm_addr
, ATM_ESA_LEN
) == 0) {
1556 lec_arp_clear_vccs(to_remove
);
1558 skb_queue_purge(&to_remove
->tx_wait
); /* FIXME: good place for this? */
1560 DPRINTK("LEC_ARP: Removed entry:%2.2x %2.2x %2.2x %2.2x %2.2x %2.2x\n",
1561 0xff & to_remove
->mac_addr
[0], 0xff & to_remove
->mac_addr
[1],
1562 0xff & to_remove
->mac_addr
[2], 0xff & to_remove
->mac_addr
[3],
1563 0xff & to_remove
->mac_addr
[4], 0xff & to_remove
->mac_addr
[5]);
1568 static char *get_status_string(unsigned char st
)
1572 return "ESI_UNKNOWN";
1573 case ESI_ARP_PENDING
:
1574 return "ESI_ARP_PENDING";
1575 case ESI_VC_PENDING
:
1576 return "ESI_VC_PENDING";
1577 case ESI_FLUSH_PENDING
:
1578 return "ESI_FLUSH_PENDING";
1579 case ESI_FORWARD_DIRECT
:
1580 return "ESI_FORWARD_DIRECT";
1586 static void dump_arp_table(struct lec_priv
*priv
)
1588 struct hlist_node
*node
;
1589 struct lec_arp_table
*rulla
;
1593 printk("Dump %p:\n", priv
);
1594 for (i
= 0; i
< LEC_ARP_TABLE_SIZE
; i
++) {
1595 hlist_for_each_entry(rulla
, node
, &priv
->lec_arp_tables
[i
], next
) {
1597 offset
+= sprintf(buf
, "%d: %p\n", i
, rulla
);
1598 offset
+= sprintf(buf
+ offset
, "Mac:");
1599 for (j
= 0; j
< ETH_ALEN
; j
++) {
1600 offset
+= sprintf(buf
+ offset
,
1602 rulla
->mac_addr
[j
] & 0xff);
1604 offset
+= sprintf(buf
+ offset
, "Atm:");
1605 for (j
= 0; j
< ATM_ESA_LEN
; j
++) {
1606 offset
+= sprintf(buf
+ offset
,
1608 rulla
->atm_addr
[j
] & 0xff);
1610 offset
+= sprintf(buf
+ offset
,
1611 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1612 rulla
->vcc
? rulla
->vcc
->vpi
: 0,
1613 rulla
->vcc
? rulla
->vcc
->vci
: 0,
1614 rulla
->recv_vcc
? rulla
->recv_vcc
->
1616 rulla
->recv_vcc
? rulla
->recv_vcc
->
1617 vci
: 0, rulla
->last_used
,
1618 rulla
->timestamp
, rulla
->no_tries
);
1620 sprintf(buf
+ offset
,
1621 "Flags:%x, Packets_flooded:%x, Status: %s ",
1622 rulla
->flags
, rulla
->packets_flooded
,
1623 get_status_string(rulla
->status
));
1624 printk("%s\n", buf
);
1628 if (!hlist_empty(&priv
->lec_no_forward
))
1629 printk("No forward\n");
1630 hlist_for_each_entry(rulla
, node
, &priv
->lec_no_forward
, next
) {
1632 offset
+= sprintf(buf
+ offset
, "Mac:");
1633 for (j
= 0; j
< ETH_ALEN
; j
++) {
1634 offset
+= sprintf(buf
+ offset
, "%2.2x ",
1635 rulla
->mac_addr
[j
] & 0xff);
1637 offset
+= sprintf(buf
+ offset
, "Atm:");
1638 for (j
= 0; j
< ATM_ESA_LEN
; j
++) {
1639 offset
+= sprintf(buf
+ offset
, "%2.2x ",
1640 rulla
->atm_addr
[j
] & 0xff);
1642 offset
+= sprintf(buf
+ offset
,
1643 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1644 rulla
->vcc
? rulla
->vcc
->vpi
: 0,
1645 rulla
->vcc
? rulla
->vcc
->vci
: 0,
1646 rulla
->recv_vcc
? rulla
->recv_vcc
->vpi
: 0,
1647 rulla
->recv_vcc
? rulla
->recv_vcc
->vci
: 0,
1649 rulla
->timestamp
, rulla
->no_tries
);
1650 offset
+= sprintf(buf
+ offset
,
1651 "Flags:%x, Packets_flooded:%x, Status: %s ",
1652 rulla
->flags
, rulla
->packets_flooded
,
1653 get_status_string(rulla
->status
));
1654 printk("%s\n", buf
);
1657 if (!hlist_empty(&priv
->lec_arp_empty_ones
))
1658 printk("Empty ones\n");
1659 hlist_for_each_entry(rulla
, node
, &priv
->lec_arp_empty_ones
, next
) {
1661 offset
+= sprintf(buf
+ offset
, "Mac:");
1662 for (j
= 0; j
< ETH_ALEN
; j
++) {
1663 offset
+= sprintf(buf
+ offset
, "%2.2x ",
1664 rulla
->mac_addr
[j
] & 0xff);
1666 offset
+= sprintf(buf
+ offset
, "Atm:");
1667 for (j
= 0; j
< ATM_ESA_LEN
; j
++) {
1668 offset
+= sprintf(buf
+ offset
, "%2.2x ",
1669 rulla
->atm_addr
[j
] & 0xff);
1671 offset
+= sprintf(buf
+ offset
,
1672 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1673 rulla
->vcc
? rulla
->vcc
->vpi
: 0,
1674 rulla
->vcc
? rulla
->vcc
->vci
: 0,
1675 rulla
->recv_vcc
? rulla
->recv_vcc
->vpi
: 0,
1676 rulla
->recv_vcc
? rulla
->recv_vcc
->vci
: 0,
1678 rulla
->timestamp
, rulla
->no_tries
);
1679 offset
+= sprintf(buf
+ offset
,
1680 "Flags:%x, Packets_flooded:%x, Status: %s ",
1681 rulla
->flags
, rulla
->packets_flooded
,
1682 get_status_string(rulla
->status
));
1686 if (!hlist_empty(&priv
->mcast_fwds
))
1687 printk("Multicast Forward VCCs\n");
1688 hlist_for_each_entry(rulla
, node
, &priv
->mcast_fwds
, next
) {
1690 offset
+= sprintf(buf
+ offset
, "Mac:");
1691 for (j
= 0; j
< ETH_ALEN
; j
++) {
1692 offset
+= sprintf(buf
+ offset
, "%2.2x ",
1693 rulla
->mac_addr
[j
] & 0xff);
1695 offset
+= sprintf(buf
+ offset
, "Atm:");
1696 for (j
= 0; j
< ATM_ESA_LEN
; j
++) {
1697 offset
+= sprintf(buf
+ offset
, "%2.2x ",
1698 rulla
->atm_addr
[j
] & 0xff);
1700 offset
+= sprintf(buf
+ offset
,
1701 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1702 rulla
->vcc
? rulla
->vcc
->vpi
: 0,
1703 rulla
->vcc
? rulla
->vcc
->vci
: 0,
1704 rulla
->recv_vcc
? rulla
->recv_vcc
->vpi
: 0,
1705 rulla
->recv_vcc
? rulla
->recv_vcc
->vci
: 0,
1707 rulla
->timestamp
, rulla
->no_tries
);
1708 offset
+= sprintf(buf
+ offset
,
1709 "Flags:%x, Packets_flooded:%x, Status: %s ",
1710 rulla
->flags
, rulla
->packets_flooded
,
1711 get_status_string(rulla
->status
));
1712 printk("%s\n", buf
);
1717 #define dump_arp_table(priv) do { } while (0)
1721 * Destruction of arp-cache
1723 static void lec_arp_destroy(struct lec_priv
*priv
)
1725 unsigned long flags
;
1726 struct hlist_node
*node
, *next
;
1727 struct lec_arp_table
*entry
;
1730 cancel_rearming_delayed_work(&priv
->lec_arp_work
);
1733 * Remove all entries
1736 spin_lock_irqsave(&priv
->lec_arp_lock
, flags
);
1737 for (i
= 0; i
< LEC_ARP_TABLE_SIZE
; i
++) {
1738 hlist_for_each_entry_safe(entry
, node
, next
, &priv
->lec_arp_tables
[i
], next
) {
1739 lec_arp_remove(priv
, entry
);
1742 INIT_HLIST_HEAD(&priv
->lec_arp_tables
[i
]);
1745 hlist_for_each_entry_safe(entry
, node
, next
, &priv
->lec_arp_empty_ones
, next
) {
1746 del_timer_sync(&entry
->timer
);
1747 lec_arp_clear_vccs(entry
);
1748 hlist_del(&entry
->next
);
1751 INIT_HLIST_HEAD(&priv
->lec_arp_empty_ones
);
1753 hlist_for_each_entry_safe(entry
, node
, next
, &priv
->lec_no_forward
, next
) {
1754 del_timer_sync(&entry
->timer
);
1755 lec_arp_clear_vccs(entry
);
1756 hlist_del(&entry
->next
);
1759 INIT_HLIST_HEAD(&priv
->lec_no_forward
);
1761 hlist_for_each_entry_safe(entry
, node
, next
, &priv
->mcast_fwds
, next
) {
1762 /* No timer, LANEv2 7.1.20 and 2.3.5.3 */
1763 lec_arp_clear_vccs(entry
);
1764 hlist_del(&entry
->next
);
1767 INIT_HLIST_HEAD(&priv
->mcast_fwds
);
1768 priv
->mcast_vcc
= NULL
;
1769 spin_unlock_irqrestore(&priv
->lec_arp_lock
, flags
);
1773 * Find entry by mac_address
1775 static struct lec_arp_table
*lec_arp_find(struct lec_priv
*priv
,
1776 unsigned char *mac_addr
)
1778 struct hlist_node
*node
;
1779 struct hlist_head
*head
;
1780 struct lec_arp_table
*entry
;
1782 DPRINTK("LEC_ARP: lec_arp_find :%2.2x %2.2x %2.2x %2.2x %2.2x %2.2x\n",
1783 mac_addr
[0] & 0xff, mac_addr
[1] & 0xff, mac_addr
[2] & 0xff,
1784 mac_addr
[3] & 0xff, mac_addr
[4] & 0xff, mac_addr
[5] & 0xff);
1786 head
= &priv
->lec_arp_tables
[HASH(mac_addr
[ETH_ALEN
- 1])];
1787 hlist_for_each_entry(entry
, node
, head
, next
) {
1788 if (!compare_ether_addr(mac_addr
, entry
->mac_addr
)) {
1795 static struct lec_arp_table
*make_entry(struct lec_priv
*priv
,
1796 unsigned char *mac_addr
)
1798 struct lec_arp_table
*to_return
;
1800 to_return
= kzalloc(sizeof(struct lec_arp_table
), GFP_ATOMIC
);
1802 printk("LEC: Arp entry kmalloc failed\n");
1805 memcpy(to_return
->mac_addr
, mac_addr
, ETH_ALEN
);
1806 INIT_HLIST_NODE(&to_return
->next
);
1807 init_timer(&to_return
->timer
);
1808 to_return
->timer
.function
= lec_arp_expire_arp
;
1809 to_return
->timer
.data
= (unsigned long)to_return
;
1810 to_return
->last_used
= jiffies
;
1811 to_return
->priv
= priv
;
1812 skb_queue_head_init(&to_return
->tx_wait
);
1813 atomic_set(&to_return
->usage
, 1);
1817 /* Arp sent timer expired */
1818 static void lec_arp_expire_arp(unsigned long data
)
1820 struct lec_arp_table
*entry
;
1822 entry
= (struct lec_arp_table
*)data
;
1824 DPRINTK("lec_arp_expire_arp\n");
1825 if (entry
->status
== ESI_ARP_PENDING
) {
1826 if (entry
->no_tries
<= entry
->priv
->max_retry_count
) {
1827 if (entry
->is_rdesc
)
1828 send_to_lecd(entry
->priv
, l_rdesc_arp_xmt
,
1829 entry
->mac_addr
, NULL
, NULL
);
1831 send_to_lecd(entry
->priv
, l_arp_xmt
,
1832 entry
->mac_addr
, NULL
, NULL
);
1835 mod_timer(&entry
->timer
, jiffies
+ (1 * HZ
));
1839 /* Unknown/unused vcc expire, remove associated entry */
1840 static void lec_arp_expire_vcc(unsigned long data
)
1842 unsigned long flags
;
1843 struct lec_arp_table
*to_remove
= (struct lec_arp_table
*)data
;
1844 struct lec_priv
*priv
= (struct lec_priv
*)to_remove
->priv
;
1846 del_timer(&to_remove
->timer
);
1848 DPRINTK("LEC_ARP %p %p: lec_arp_expire_vcc vpi:%d vci:%d\n",
1850 to_remove
->vcc
? to_remove
->recv_vcc
->vpi
: 0,
1851 to_remove
->vcc
? to_remove
->recv_vcc
->vci
: 0);
1853 spin_lock_irqsave(&priv
->lec_arp_lock
, flags
);
1854 hlist_del(&to_remove
->next
);
1855 spin_unlock_irqrestore(&priv
->lec_arp_lock
, flags
);
1857 lec_arp_clear_vccs(to_remove
);
1858 lec_arp_put(to_remove
);
1864 * 2. For each entry, delete entries that have aged past the age limit.
1865 * 3. For each entry, depending on the status of the entry, perform
1866 * the following maintenance.
1867 * a. If status is ESI_VC_PENDING or ESI_ARP_PENDING then if the
1868 * tick_count is above the max_unknown_frame_time, clear
1869 * the tick_count to zero and clear the packets_flooded counter
1870 * to zero. This supports the packet rate limit per address
1871 * while flooding unknowns.
1872 * b. If the status is ESI_FLUSH_PENDING and the tick_count is greater
1873 * than or equal to the path_switching_delay, change the status
1874 * to ESI_FORWARD_DIRECT. This causes the flush period to end
1875 * regardless of the progress of the flush protocol.
1877 static void lec_arp_check_expire(struct work_struct
*work
)
1879 unsigned long flags
;
1880 struct lec_priv
*priv
=
1881 container_of(work
, struct lec_priv
, lec_arp_work
.work
);
1882 struct hlist_node
*node
, *next
;
1883 struct lec_arp_table
*entry
;
1885 unsigned long time_to_check
;
1888 DPRINTK("lec_arp_check_expire %p\n", priv
);
1891 spin_lock_irqsave(&priv
->lec_arp_lock
, flags
);
1892 for (i
= 0; i
< LEC_ARP_TABLE_SIZE
; i
++) {
1893 hlist_for_each_entry_safe(entry
, node
, next
, &priv
->lec_arp_tables
[i
], next
) {
1894 if ((entry
->flags
) & LEC_REMOTE_FLAG
&&
1895 priv
->topology_change
)
1896 time_to_check
= priv
->forward_delay_time
;
1898 time_to_check
= priv
->aging_time
;
1900 DPRINTK("About to expire: %lx - %lx > %lx\n",
1901 now
, entry
->last_used
, time_to_check
);
1902 if (time_after(now
, entry
->last_used
+ time_to_check
)
1903 && !(entry
->flags
& LEC_PERMANENT_FLAG
)
1904 && !(entry
->mac_addr
[0] & 0x01)) { /* LANE2: 7.1.20 */
1906 DPRINTK("LEC:Entry timed out\n");
1907 lec_arp_remove(priv
, entry
);
1910 /* Something else */
1911 if ((entry
->status
== ESI_VC_PENDING
||
1912 entry
->status
== ESI_ARP_PENDING
)
1913 && time_after_eq(now
,
1916 max_unknown_frame_time
)) {
1917 entry
->timestamp
= jiffies
;
1918 entry
->packets_flooded
= 0;
1919 if (entry
->status
== ESI_VC_PENDING
)
1920 send_to_lecd(priv
, l_svc_setup
,
1925 if (entry
->status
== ESI_FLUSH_PENDING
1927 time_after_eq(now
, entry
->timestamp
+
1928 priv
->path_switching_delay
)) {
1929 struct sk_buff
*skb
;
1930 struct atm_vcc
*vcc
= entry
->vcc
;
1932 lec_arp_hold(entry
);
1933 spin_unlock_irqrestore(&priv
->lec_arp_lock
, flags
);
1934 while ((skb
= skb_dequeue(&entry
->tx_wait
)) != NULL
)
1935 lec_send(vcc
, skb
, entry
->priv
);
1936 entry
->last_used
= jiffies
;
1937 entry
->status
= ESI_FORWARD_DIRECT
;
1944 spin_unlock_irqrestore(&priv
->lec_arp_lock
, flags
);
1946 schedule_delayed_work(&priv
->lec_arp_work
, LEC_ARP_REFRESH_INTERVAL
);
1950 * Try to find vcc where mac_address is attached.
1953 static struct atm_vcc
*lec_arp_resolve(struct lec_priv
*priv
,
1954 unsigned char *mac_to_find
, int is_rdesc
,
1955 struct lec_arp_table
**ret_entry
)
1957 unsigned long flags
;
1958 struct lec_arp_table
*entry
;
1959 struct atm_vcc
*found
;
1961 if (mac_to_find
[0] & 0x01) {
1962 switch (priv
->lane_version
) {
1964 return priv
->mcast_vcc
;
1966 case 2: /* LANE2 wants arp for multicast addresses */
1967 if (!compare_ether_addr(mac_to_find
, bus_mac
))
1968 return priv
->mcast_vcc
;
1975 spin_lock_irqsave(&priv
->lec_arp_lock
, flags
);
1976 entry
= lec_arp_find(priv
, mac_to_find
);
1979 if (entry
->status
== ESI_FORWARD_DIRECT
) {
1981 entry
->last_used
= jiffies
;
1982 lec_arp_hold(entry
);
1988 * If the LE_ARP cache entry is still pending, reset count to 0
1989 * so another LE_ARP request can be made for this frame.
1991 if (entry
->status
== ESI_ARP_PENDING
) {
1992 entry
->no_tries
= 0;
1995 * Data direct VC not yet set up, check to see if the unknown
1996 * frame count is greater than the limit. If the limit has
1997 * not been reached, allow the caller to send packet to
2000 if (entry
->status
!= ESI_FLUSH_PENDING
&&
2001 entry
->packets_flooded
<
2002 priv
->maximum_unknown_frame_count
) {
2003 entry
->packets_flooded
++;
2004 DPRINTK("LEC_ARP: Flooding..\n");
2005 found
= priv
->mcast_vcc
;
2009 * We got here because entry->status == ESI_FLUSH_PENDING
2010 * or BUS flood limit was reached for an entry which is
2011 * in ESI_ARP_PENDING or ESI_VC_PENDING state.
2013 lec_arp_hold(entry
);
2015 DPRINTK("lec: entry->status %d entry->vcc %p\n", entry
->status
,
2019 /* No matching entry was found */
2020 entry
= make_entry(priv
, mac_to_find
);
2021 DPRINTK("LEC_ARP: Making entry\n");
2023 found
= priv
->mcast_vcc
;
2026 lec_arp_add(priv
, entry
);
2027 /* We want arp-request(s) to be sent */
2028 entry
->packets_flooded
= 1;
2029 entry
->status
= ESI_ARP_PENDING
;
2030 entry
->no_tries
= 1;
2031 entry
->last_used
= entry
->timestamp
= jiffies
;
2032 entry
->is_rdesc
= is_rdesc
;
2033 if (entry
->is_rdesc
)
2034 send_to_lecd(priv
, l_rdesc_arp_xmt
, mac_to_find
, NULL
,
2037 send_to_lecd(priv
, l_arp_xmt
, mac_to_find
, NULL
, NULL
);
2038 entry
->timer
.expires
= jiffies
+ (1 * HZ
);
2039 entry
->timer
.function
= lec_arp_expire_arp
;
2040 add_timer(&entry
->timer
);
2041 found
= priv
->mcast_vcc
;
2045 spin_unlock_irqrestore(&priv
->lec_arp_lock
, flags
);
2050 lec_addr_delete(struct lec_priv
*priv
, unsigned char *atm_addr
,
2051 unsigned long permanent
)
2053 unsigned long flags
;
2054 struct hlist_node
*node
, *next
;
2055 struct lec_arp_table
*entry
;
2058 DPRINTK("lec_addr_delete\n");
2059 spin_lock_irqsave(&priv
->lec_arp_lock
, flags
);
2060 for (i
= 0; i
< LEC_ARP_TABLE_SIZE
; i
++) {
2061 hlist_for_each_entry_safe(entry
, node
, next
, &priv
->lec_arp_tables
[i
], next
) {
2062 if (!memcmp(atm_addr
, entry
->atm_addr
, ATM_ESA_LEN
)
2064 !(entry
->flags
& LEC_PERMANENT_FLAG
))) {
2065 lec_arp_remove(priv
, entry
);
2068 spin_unlock_irqrestore(&priv
->lec_arp_lock
, flags
);
2072 spin_unlock_irqrestore(&priv
->lec_arp_lock
, flags
);
2077 * Notifies: Response to arp_request (atm_addr != NULL)
2080 lec_arp_update(struct lec_priv
*priv
, unsigned char *mac_addr
,
2081 unsigned char *atm_addr
, unsigned long remoteflag
,
2082 unsigned int targetless_le_arp
)
2084 unsigned long flags
;
2085 struct hlist_node
*node
, *next
;
2086 struct lec_arp_table
*entry
, *tmp
;
2089 DPRINTK("lec:%s", (targetless_le_arp
) ? "targetless " : " ");
2090 DPRINTK("lec_arp_update mac:%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x\n",
2091 mac_addr
[0], mac_addr
[1], mac_addr
[2], mac_addr
[3],
2092 mac_addr
[4], mac_addr
[5]);
2094 spin_lock_irqsave(&priv
->lec_arp_lock
, flags
);
2095 entry
= lec_arp_find(priv
, mac_addr
);
2096 if (entry
== NULL
&& targetless_le_arp
)
2098 * LANE2: ignore targetless LE_ARPs for which
2099 * we have no entry in the cache. 7.1.30
2101 if (!hlist_empty(&priv
->lec_arp_empty_ones
)) {
2102 hlist_for_each_entry_safe(entry
, node
, next
, &priv
->lec_arp_empty_ones
, next
) {
2103 if (memcmp(entry
->atm_addr
, atm_addr
, ATM_ESA_LEN
) == 0) {
2104 hlist_del(&entry
->next
);
2105 del_timer(&entry
->timer
);
2106 tmp
= lec_arp_find(priv
, mac_addr
);
2108 del_timer(&tmp
->timer
);
2109 tmp
->status
= ESI_FORWARD_DIRECT
;
2110 memcpy(tmp
->atm_addr
, atm_addr
, ATM_ESA_LEN
);
2111 tmp
->vcc
= entry
->vcc
;
2112 tmp
->old_push
= entry
->old_push
;
2113 tmp
->last_used
= jiffies
;
2114 del_timer(&entry
->timer
);
2118 entry
->status
= ESI_FORWARD_DIRECT
;
2119 memcpy(entry
->mac_addr
, mac_addr
, ETH_ALEN
);
2120 entry
->last_used
= jiffies
;
2121 lec_arp_add(priv
, entry
);
2124 entry
->flags
|= LEC_REMOTE_FLAG
;
2126 entry
->flags
&= ~LEC_REMOTE_FLAG
;
2127 DPRINTK("After update\n");
2128 dump_arp_table(priv
);
2134 entry
= lec_arp_find(priv
, mac_addr
);
2136 entry
= make_entry(priv
, mac_addr
);
2139 entry
->status
= ESI_UNKNOWN
;
2140 lec_arp_add(priv
, entry
);
2141 /* Temporary, changes before end of function */
2143 memcpy(entry
->atm_addr
, atm_addr
, ATM_ESA_LEN
);
2144 del_timer(&entry
->timer
);
2145 for (i
= 0; i
< LEC_ARP_TABLE_SIZE
; i
++) {
2146 hlist_for_each_entry(tmp
, node
, &priv
->lec_arp_tables
[i
], next
) {
2148 !memcmp(tmp
->atm_addr
, atm_addr
, ATM_ESA_LEN
)) {
2149 /* Vcc to this host exists */
2150 if (tmp
->status
> ESI_VC_PENDING
) {
2152 * ESI_FLUSH_PENDING,
2153 * ESI_FORWARD_DIRECT
2155 entry
->vcc
= tmp
->vcc
;
2156 entry
->old_push
= tmp
->old_push
;
2158 entry
->status
= tmp
->status
;
2164 entry
->flags
|= LEC_REMOTE_FLAG
;
2166 entry
->flags
&= ~LEC_REMOTE_FLAG
;
2167 if (entry
->status
== ESI_ARP_PENDING
|| entry
->status
== ESI_UNKNOWN
) {
2168 entry
->status
= ESI_VC_PENDING
;
2169 send_to_lecd(priv
, l_svc_setup
, entry
->mac_addr
, atm_addr
, NULL
);
2171 DPRINTK("After update2\n");
2172 dump_arp_table(priv
);
2174 spin_unlock_irqrestore(&priv
->lec_arp_lock
, flags
);
2178 * Notifies: Vcc setup ready
2181 lec_vcc_added(struct lec_priv
*priv
, struct atmlec_ioc
*ioc_data
,
2182 struct atm_vcc
*vcc
,
2183 void (*old_push
) (struct atm_vcc
*vcc
, struct sk_buff
*skb
))
2185 unsigned long flags
;
2186 struct hlist_node
*node
;
2187 struct lec_arp_table
*entry
;
2188 int i
, found_entry
= 0;
2190 spin_lock_irqsave(&priv
->lec_arp_lock
, flags
);
2191 if (ioc_data
->receive
== 2) {
2192 /* Vcc for Multicast Forward. No timer, LANEv2 7.1.20 and 2.3.5.3 */
2194 DPRINTK("LEC_ARP: Attaching mcast forward\n");
2196 entry
= lec_arp_find(priv
, bus_mac
);
2198 printk("LEC_ARP: Multicast entry not found!\n");
2201 memcpy(entry
->atm_addr
, ioc_data
->atm_addr
, ATM_ESA_LEN
);
2202 entry
->recv_vcc
= vcc
;
2203 entry
->old_recv_push
= old_push
;
2205 entry
= make_entry(priv
, bus_mac
);
2208 del_timer(&entry
->timer
);
2209 memcpy(entry
->atm_addr
, ioc_data
->atm_addr
, ATM_ESA_LEN
);
2210 entry
->recv_vcc
= vcc
;
2211 entry
->old_recv_push
= old_push
;
2212 hlist_add_head(&entry
->next
, &priv
->mcast_fwds
);
2214 } else if (ioc_data
->receive
== 1) {
2216 * Vcc which we don't want to make default vcc,
2220 ("LEC_ARP:Attaching data direct, not default: "
2221 "%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x\n",
2222 ioc_data
->atm_addr
[0], ioc_data
->atm_addr
[1],
2223 ioc_data
->atm_addr
[2], ioc_data
->atm_addr
[3],
2224 ioc_data
->atm_addr
[4], ioc_data
->atm_addr
[5],
2225 ioc_data
->atm_addr
[6], ioc_data
->atm_addr
[7],
2226 ioc_data
->atm_addr
[8], ioc_data
->atm_addr
[9],
2227 ioc_data
->atm_addr
[10], ioc_data
->atm_addr
[11],
2228 ioc_data
->atm_addr
[12], ioc_data
->atm_addr
[13],
2229 ioc_data
->atm_addr
[14], ioc_data
->atm_addr
[15],
2230 ioc_data
->atm_addr
[16], ioc_data
->atm_addr
[17],
2231 ioc_data
->atm_addr
[18], ioc_data
->atm_addr
[19]);
2232 entry
= make_entry(priv
, bus_mac
);
2235 memcpy(entry
->atm_addr
, ioc_data
->atm_addr
, ATM_ESA_LEN
);
2236 memset(entry
->mac_addr
, 0, ETH_ALEN
);
2237 entry
->recv_vcc
= vcc
;
2238 entry
->old_recv_push
= old_push
;
2239 entry
->status
= ESI_UNKNOWN
;
2240 entry
->timer
.expires
= jiffies
+ priv
->vcc_timeout_period
;
2241 entry
->timer
.function
= lec_arp_expire_vcc
;
2242 hlist_add_head(&entry
->next
, &priv
->lec_no_forward
);
2243 add_timer(&entry
->timer
);
2244 dump_arp_table(priv
);
2248 ("LEC_ARP:Attaching data direct, default: "
2249 "%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x\n",
2250 ioc_data
->atm_addr
[0], ioc_data
->atm_addr
[1],
2251 ioc_data
->atm_addr
[2], ioc_data
->atm_addr
[3],
2252 ioc_data
->atm_addr
[4], ioc_data
->atm_addr
[5],
2253 ioc_data
->atm_addr
[6], ioc_data
->atm_addr
[7],
2254 ioc_data
->atm_addr
[8], ioc_data
->atm_addr
[9],
2255 ioc_data
->atm_addr
[10], ioc_data
->atm_addr
[11],
2256 ioc_data
->atm_addr
[12], ioc_data
->atm_addr
[13],
2257 ioc_data
->atm_addr
[14], ioc_data
->atm_addr
[15],
2258 ioc_data
->atm_addr
[16], ioc_data
->atm_addr
[17],
2259 ioc_data
->atm_addr
[18], ioc_data
->atm_addr
[19]);
2260 for (i
= 0; i
< LEC_ARP_TABLE_SIZE
; i
++) {
2261 hlist_for_each_entry(entry
, node
, &priv
->lec_arp_tables
[i
], next
) {
2263 (ioc_data
->atm_addr
, entry
->atm_addr
,
2264 ATM_ESA_LEN
) == 0) {
2265 DPRINTK("LEC_ARP: Attaching data direct\n");
2266 DPRINTK("Currently -> Vcc: %d, Rvcc:%d\n",
2267 entry
->vcc
? entry
->vcc
->vci
: 0,
2268 entry
->recv_vcc
? entry
->recv_vcc
->
2271 del_timer(&entry
->timer
);
2273 entry
->old_push
= old_push
;
2274 if (entry
->status
== ESI_VC_PENDING
) {
2275 if (priv
->maximum_unknown_frame_count
2280 entry
->timestamp
= jiffies
;
2284 send_to_lecd(priv
, l_flush_xmt
,
2292 * They were forming a connection
2293 * to us, and we to them. Our
2294 * ATM address is numerically lower
2295 * than theirs, so we make connection
2296 * we formed into default VCC (8.1.11).
2297 * Connection they made gets torn
2298 * down. This might confuse some
2299 * clients. Can be changed if
2300 * someone reports trouble...
2308 DPRINTK("After vcc was added\n");
2309 dump_arp_table(priv
);
2313 * Not found, snatch address from first data packet that arrives
2316 entry
= make_entry(priv
, bus_mac
);
2320 entry
->old_push
= old_push
;
2321 memcpy(entry
->atm_addr
, ioc_data
->atm_addr
, ATM_ESA_LEN
);
2322 memset(entry
->mac_addr
, 0, ETH_ALEN
);
2323 entry
->status
= ESI_UNKNOWN
;
2324 hlist_add_head(&entry
->next
, &priv
->lec_arp_empty_ones
);
2325 entry
->timer
.expires
= jiffies
+ priv
->vcc_timeout_period
;
2326 entry
->timer
.function
= lec_arp_expire_vcc
;
2327 add_timer(&entry
->timer
);
2328 DPRINTK("After vcc was added\n");
2329 dump_arp_table(priv
);
2331 spin_unlock_irqrestore(&priv
->lec_arp_lock
, flags
);
2334 static void lec_flush_complete(struct lec_priv
*priv
, unsigned long tran_id
)
2336 unsigned long flags
;
2337 struct hlist_node
*node
;
2338 struct lec_arp_table
*entry
;
2341 DPRINTK("LEC:lec_flush_complete %lx\n", tran_id
);
2343 spin_lock_irqsave(&priv
->lec_arp_lock
, flags
);
2344 for (i
= 0; i
< LEC_ARP_TABLE_SIZE
; i
++) {
2345 hlist_for_each_entry(entry
, node
, &priv
->lec_arp_tables
[i
], next
) {
2346 if (entry
->flush_tran_id
== tran_id
2347 && entry
->status
== ESI_FLUSH_PENDING
) {
2348 struct sk_buff
*skb
;
2349 struct atm_vcc
*vcc
= entry
->vcc
;
2351 lec_arp_hold(entry
);
2352 spin_unlock_irqrestore(&priv
->lec_arp_lock
, flags
);
2353 while ((skb
= skb_dequeue(&entry
->tx_wait
)) != NULL
)
2354 lec_send(vcc
, skb
, entry
->priv
);
2355 entry
->last_used
= jiffies
;
2356 entry
->status
= ESI_FORWARD_DIRECT
;
2358 DPRINTK("LEC_ARP: Flushed\n");
2363 spin_unlock_irqrestore(&priv
->lec_arp_lock
, flags
);
2364 dump_arp_table(priv
);
2368 lec_set_flush_tran_id(struct lec_priv
*priv
,
2369 unsigned char *atm_addr
, unsigned long tran_id
)
2371 unsigned long flags
;
2372 struct hlist_node
*node
;
2373 struct lec_arp_table
*entry
;
2376 spin_lock_irqsave(&priv
->lec_arp_lock
, flags
);
2377 for (i
= 0; i
< LEC_ARP_TABLE_SIZE
; i
++)
2378 hlist_for_each_entry(entry
, node
, &priv
->lec_arp_tables
[i
], next
) {
2379 if (!memcmp(atm_addr
, entry
->atm_addr
, ATM_ESA_LEN
)) {
2380 entry
->flush_tran_id
= tran_id
;
2381 DPRINTK("Set flush transaction id to %lx for %p\n",
2385 spin_unlock_irqrestore(&priv
->lec_arp_lock
, flags
);
2388 static int lec_mcast_make(struct lec_priv
*priv
, struct atm_vcc
*vcc
)
2390 unsigned long flags
;
2391 unsigned char mac_addr
[] = {
2392 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
2394 struct lec_arp_table
*to_add
;
2395 struct lec_vcc_priv
*vpriv
;
2398 if (!(vpriv
= kmalloc(sizeof(struct lec_vcc_priv
), GFP_KERNEL
)))
2401 vpriv
->old_pop
= vcc
->pop
;
2402 vcc
->user_back
= vpriv
;
2404 spin_lock_irqsave(&priv
->lec_arp_lock
, flags
);
2405 to_add
= make_entry(priv
, mac_addr
);
2407 vcc
->pop
= vpriv
->old_pop
;
2412 memcpy(to_add
->atm_addr
, vcc
->remote
.sas_addr
.prv
, ATM_ESA_LEN
);
2413 to_add
->status
= ESI_FORWARD_DIRECT
;
2414 to_add
->flags
|= LEC_PERMANENT_FLAG
;
2416 to_add
->old_push
= vcc
->push
;
2417 vcc
->push
= lec_push
;
2418 priv
->mcast_vcc
= vcc
;
2419 lec_arp_add(priv
, to_add
);
2421 spin_unlock_irqrestore(&priv
->lec_arp_lock
, flags
);
2425 static void lec_vcc_close(struct lec_priv
*priv
, struct atm_vcc
*vcc
)
2427 unsigned long flags
;
2428 struct hlist_node
*node
, *next
;
2429 struct lec_arp_table
*entry
;
2432 DPRINTK("LEC_ARP: lec_vcc_close vpi:%d vci:%d\n", vcc
->vpi
, vcc
->vci
);
2433 dump_arp_table(priv
);
2435 spin_lock_irqsave(&priv
->lec_arp_lock
, flags
);
2437 for (i
= 0; i
< LEC_ARP_TABLE_SIZE
; i
++) {
2438 hlist_for_each_entry_safe(entry
, node
, next
, &priv
->lec_arp_tables
[i
], next
) {
2439 if (vcc
== entry
->vcc
) {
2440 lec_arp_remove(priv
, entry
);
2442 if (priv
->mcast_vcc
== vcc
) {
2443 priv
->mcast_vcc
= NULL
;
2449 hlist_for_each_entry_safe(entry
, node
, next
, &priv
->lec_arp_empty_ones
, next
) {
2450 if (entry
->vcc
== vcc
) {
2451 lec_arp_clear_vccs(entry
);
2452 del_timer(&entry
->timer
);
2453 hlist_del(&entry
->next
);
2458 hlist_for_each_entry_safe(entry
, node
, next
, &priv
->lec_no_forward
, next
) {
2459 if (entry
->recv_vcc
== vcc
) {
2460 lec_arp_clear_vccs(entry
);
2461 del_timer(&entry
->timer
);
2462 hlist_del(&entry
->next
);
2467 hlist_for_each_entry_safe(entry
, node
, next
, &priv
->mcast_fwds
, next
) {
2468 if (entry
->recv_vcc
== vcc
) {
2469 lec_arp_clear_vccs(entry
);
2470 /* No timer, LANEv2 7.1.20 and 2.3.5.3 */
2471 hlist_del(&entry
->next
);
2476 spin_unlock_irqrestore(&priv
->lec_arp_lock
, flags
);
2477 dump_arp_table(priv
);
2481 lec_arp_check_empties(struct lec_priv
*priv
,
2482 struct atm_vcc
*vcc
, struct sk_buff
*skb
)
2484 unsigned long flags
;
2485 struct hlist_node
*node
, *next
;
2486 struct lec_arp_table
*entry
, *tmp
;
2487 struct lecdatahdr_8023
*hdr
= (struct lecdatahdr_8023
*)skb
->data
;
2490 struct lecdatahdr_8025
*tr_hdr
= (struct lecdatahdr_8025
*)skb
->data
;
2493 src
= tr_hdr
->h_source
;
2496 src
= hdr
->h_source
;
2498 spin_lock_irqsave(&priv
->lec_arp_lock
, flags
);
2499 hlist_for_each_entry_safe(entry
, node
, next
, &priv
->lec_arp_empty_ones
, next
) {
2500 if (vcc
== entry
->vcc
) {
2501 del_timer(&entry
->timer
);
2502 memcpy(entry
->mac_addr
, src
, ETH_ALEN
);
2503 entry
->status
= ESI_FORWARD_DIRECT
;
2504 entry
->last_used
= jiffies
;
2505 /* We might have got an entry */
2506 if ((tmp
= lec_arp_find(priv
, src
))) {
2507 lec_arp_remove(priv
, tmp
);
2510 hlist_del(&entry
->next
);
2511 lec_arp_add(priv
, entry
);
2515 DPRINTK("LEC_ARP: Arp_check_empties: entry not found!\n");
2517 spin_unlock_irqrestore(&priv
->lec_arp_lock
, flags
);
2520 MODULE_LICENSE("GPL");