]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/atm/lec.c
[NET] APPLETALK: Fix whitespace errors.
[net-next-2.6.git] / net / atm / lec.c
CommitLineData
1da177e4
LT
1/*
2 * lec.c: Lan Emulation driver
1da177e4 3 *
d44f7746 4 * Marko Kiiskila <mkiiskila@yahoo.com>
1da177e4
LT
5 */
6
1da177e4
LT
7#include <linux/kernel.h>
8#include <linux/bitops.h>
4fc268d2 9#include <linux/capability.h>
1da177e4
LT
10
11/* We are ethernet device */
12#include <linux/if_ether.h>
13#include <linux/netdevice.h>
14#include <linux/etherdevice.h>
15#include <net/sock.h>
16#include <linux/skbuff.h>
17#include <linux/ip.h>
18#include <asm/byteorder.h>
19#include <asm/uaccess.h>
20#include <net/arp.h>
21#include <net/dst.h>
22#include <linux/proc_fs.h>
23#include <linux/spinlock.h>
24#include <linux/proc_fs.h>
25#include <linux/seq_file.h>
26
27/* TokenRing if needed */
28#ifdef CONFIG_TR
29#include <linux/trdevice.h>
30#endif
31
32/* And atm device */
33#include <linux/atmdev.h>
34#include <linux/atmlec.h>
35
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"
40
d44f7746 41static unsigned char bridge_ula_lec[] = { 0x01, 0x80, 0xc2, 0x00, 0x00 };
1da177e4
LT
42#endif
43
44/* Modular too */
45#include <linux/module.h>
46#include <linux/init.h>
47
48#include "lec.h"
49#include "lec_arpc.h"
50#include "resources.h"
51
52#if 0
53#define DPRINTK printk
54#else
55#define DPRINTK(format,args...)
56#endif
57
d44f7746
CW
58#define DUMP_PACKETS 0 /*
59 * 0 = None,
60 * 1 = 30 first bytes
61 * 2 = Whole packet
62 */
1da177e4 63
d44f7746
CW
64#define LEC_UNRES_QUE_LEN 8 /*
65 * number of tx packets to queue for a
66 * single destination while waiting for SVC
67 */
1da177e4
LT
68
69static int lec_open(struct net_device *dev);
70static int lec_start_xmit(struct sk_buff *skb, struct net_device *dev);
71static int lec_close(struct net_device *dev);
72static struct net_device_stats *lec_get_stats(struct net_device *dev);
73static void lec_init(struct net_device *dev);
d44f7746
CW
74static struct lec_arp_table *lec_arp_find(struct lec_priv *priv,
75 unsigned char *mac_addr);
1da177e4 76static int lec_arp_remove(struct lec_priv *priv,
d44f7746 77 struct lec_arp_table *to_remove);
1da177e4 78/* LANE2 functions */
d44f7746
CW
79static void lane2_associate_ind(struct net_device *dev, u8 *mac_address,
80 u8 *tlvs, u32 sizeoftlvs);
1da177e4 81static int lane2_resolve(struct net_device *dev, u8 *dst_mac, int force,
d44f7746
CW
82 u8 **tlvs, u32 *sizeoftlvs);
83static int lane2_associate_req(struct net_device *dev, u8 *lan_dst,
84 u8 *tlvs, u32 sizeoftlvs);
1da177e4 85
d44f7746 86static int lec_addr_delete(struct lec_priv *priv, unsigned char *atm_addr,
1da177e4
LT
87 unsigned long permanent);
88static void lec_arp_check_empties(struct lec_priv *priv,
89 struct atm_vcc *vcc, struct sk_buff *skb);
90static void lec_arp_destroy(struct lec_priv *priv);
91static void lec_arp_init(struct lec_priv *priv);
d44f7746 92static struct atm_vcc *lec_arp_resolve(struct lec_priv *priv,
1da177e4
LT
93 unsigned char *mac_to_find,
94 int is_rdesc,
95 struct lec_arp_table **ret_entry);
96static 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);
99static void lec_flush_complete(struct lec_priv *priv, unsigned long tran_id);
100static int lec_mcast_make(struct lec_priv *priv, struct atm_vcc *vcc);
101static void lec_set_flush_tran_id(struct lec_priv *priv,
102 unsigned char *atm_addr,
103 unsigned long tran_id);
104static void lec_vcc_added(struct lec_priv *priv, struct atmlec_ioc *ioc_data,
105 struct atm_vcc *vcc,
d44f7746
CW
106 void (*old_push) (struct atm_vcc *vcc,
107 struct sk_buff *skb));
1da177e4
LT
108static void lec_vcc_close(struct lec_priv *priv, struct atm_vcc *vcc);
109
33a9c2d4
CW
110/* must be done under lec_arp_lock */
111static inline void lec_arp_hold(struct lec_arp_table *entry)
112{
113 atomic_inc(&entry->usage);
114}
115
116static inline void lec_arp_put(struct lec_arp_table *entry)
117{
118 if (atomic_dec_and_test(&entry->usage))
119 kfree(entry);
120}
121
122
1da177e4 123static struct lane2_ops lane2_ops = {
d44f7746
CW
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 */
1da177e4
LT
127};
128
d44f7746 129static unsigned char bus_mac[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
1da177e4
LT
130
131/* Device structures */
132static struct net_device *dev_lec[MAX_LEC_ITF];
133
134#if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
135static void lec_handle_bridge(struct sk_buff *skb, struct net_device *dev)
136{
d44f7746
CW
137 struct ethhdr *eth;
138 char *buff;
139 struct lec_priv *priv;
140
141 /*
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
145 */
146 eth = (struct ethhdr *)skb->data;
147 buff = skb->data + skb->dev->hard_header_len;
148 if (*buff++ == 0x42 && *buff++ == 0x42 && *buff++ == 0x03) {
1da177e4 149 struct sock *sk;
d44f7746
CW
150 struct sk_buff *skb2;
151 struct atmlec_msg *mesg;
152
153 skb2 = alloc_skb(sizeof(struct atmlec_msg), GFP_ATOMIC);
154 if (skb2 == NULL)
155 return;
156 skb2->len = sizeof(struct atmlec_msg);
157 mesg = (struct atmlec_msg *)skb2->data;
158 mesg->type = l_topology_change;
159 buff += 4;
160 mesg->content.normal.flag = *buff & 0x01; /* 0x01 is topology change */
161
162 priv = (struct lec_priv *)dev->priv;
163 atm_force_charge(priv->lecd, skb2->truesize);
1da177e4 164 sk = sk_atm(priv->lecd);
d44f7746
CW
165 skb_queue_tail(&sk->sk_receive_queue, skb2);
166 sk->sk_data_ready(sk, skb2->len);
167 }
1da177e4 168
d44f7746 169 return;
1da177e4
LT
170}
171#endif /* defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE) */
172
173/*
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
180 * and returns NULL.
181 */
182#ifdef CONFIG_TR
183static unsigned char *get_tr_dst(unsigned char *packet, unsigned char *rdesc)
184{
d44f7746
CW
185 struct trh_hdr *trh;
186 int riflen, num_rdsc;
187
188 trh = (struct trh_hdr *)packet;
189 if (trh->daddr[0] & (uint8_t) 0x80)
190 return bus_mac; /* multicast */
191
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 */
196 } else
197 return trh->daddr; /* not source routed */
198
199 if (riflen < 6)
200 return trh->daddr; /* last hop, source routed */
201
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))
30d492da 207 memcpy(&rdesc[4], &trh->rseg[num_rdsc - 2], sizeof(__be16));
d44f7746 208 else {
30d492da 209 memcpy(&rdesc[4], &trh->rseg[1], sizeof(__be16));
d44f7746
CW
210 rdesc[5] = ((ntohs(trh->rseg[0]) & 0x000f) | (rdesc[5] & 0xf0));
211 }
212
213 return NULL;
1da177e4
LT
214}
215#endif /* CONFIG_TR */
216
217/*
218 * Open/initialize the netdevice. This is called (in the current kernel)
219 * sometime after booting when the 'ifconfig' program is run.
220 *
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.
224 */
225
d44f7746 226static int lec_open(struct net_device *dev)
1da177e4 227{
d44f7746
CW
228 struct lec_priv *priv = (struct lec_priv *)dev->priv;
229
1da177e4 230 netif_start_queue(dev);
d44f7746
CW
231 memset(&priv->stats, 0, sizeof(struct net_device_stats));
232
233 return 0;
1da177e4
LT
234}
235
236static __inline__ void
237lec_send(struct atm_vcc *vcc, struct sk_buff *skb, struct lec_priv *priv)
238{
239 ATM_SKB(skb)->vcc = vcc;
240 ATM_SKB(skb)->atm_options = vcc->atm_options;
241
242 atomic_add(skb->truesize, &sk_atm(vcc)->sk_wmem_alloc);
243 if (vcc->send(vcc, skb) < 0) {
244 priv->stats.tx_dropped++;
245 return;
246 }
247
248 priv->stats.tx_packets++;
249 priv->stats.tx_bytes += skb->len;
250}
251
d44f7746 252static void lec_tx_timeout(struct net_device *dev)
1da177e4
LT
253{
254 printk(KERN_INFO "%s: tx timeout\n", dev->name);
255 dev->trans_start = jiffies;
256 netif_wake_queue(dev);
257}
258
d44f7746 259static int lec_start_xmit(struct sk_buff *skb, struct net_device *dev)
1da177e4 260{
d44f7746
CW
261 struct sk_buff *skb2;
262 struct lec_priv *priv = (struct lec_priv *)dev->priv;
263 struct lecdatahdr_8023 *lec_h;
264 struct atm_vcc *vcc;
1da177e4 265 struct lec_arp_table *entry;
d44f7746 266 unsigned char *dst;
1da177e4
LT
267 int min_frame_size;
268#ifdef CONFIG_TR
d44f7746 269 unsigned char rdesc[ETH_ALEN]; /* Token Ring route descriptor */
1da177e4 270#endif
d44f7746 271 int is_rdesc;
1da177e4 272#if DUMP_PACKETS > 0
d44f7746
CW
273 char buf[300];
274 int i = 0;
1da177e4 275#endif /* DUMP_PACKETS >0 */
d44f7746
CW
276
277 DPRINTK("lec_start_xmit called\n");
278 if (!priv->lecd) {
279 printk("%s:No lecd attached\n", dev->name);
280 priv->stats.tx_errors++;
281 netif_stop_queue(dev);
282 return -EUNATCH;
283 }
284
285 DPRINTK("skbuff head:%lx data:%lx tail:%lx end:%lx\n",
286 (long)skb->head, (long)skb->data, (long)skb->tail,
287 (long)skb->end);
1da177e4 288#if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
d44f7746
CW
289 if (memcmp(skb->data, bridge_ula_lec, sizeof(bridge_ula_lec)) == 0)
290 lec_handle_bridge(skb, dev);
1da177e4
LT
291#endif
292
d44f7746
CW
293 /* Make sure we have room for lec_id */
294 if (skb_headroom(skb) < 2) {
1da177e4 295
d44f7746
CW
296 DPRINTK("lec_start_xmit: reallocating skb\n");
297 skb2 = skb_realloc_headroom(skb, LEC_HEADER_LEN);
298 kfree_skb(skb);
299 if (skb2 == NULL)
300 return 0;
301 skb = skb2;
302 }
303 skb_push(skb, 2);
1da177e4 304
d44f7746
CW
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);
1da177e4
LT
308
309#ifdef CONFIG_TR
d44f7746
CW
310 /*
311 * Ugly. Use this to realign Token Ring packets for
312 * e.g. PCA-200E driver.
313 */
314 if (priv->is_trdev) {
315 skb2 = skb_realloc_headroom(skb, LEC_HEADER_LEN);
316 kfree_skb(skb);
317 if (skb2 == NULL)
318 return 0;
319 skb = skb2;
320 }
1da177e4
LT
321#endif
322
323#if DUMP_PACKETS > 0
d44f7746
CW
324 printk("%s: send datalen:%ld lecid:%4.4x\n", dev->name,
325 skb->len, priv->lecid);
1da177e4 326#if DUMP_PACKETS >= 2
d44f7746
CW
327 for (i = 0; i < skb->len && i < 99; i++) {
328 sprintf(buf + i * 3, "%2.2x ", 0xff & skb->data[i]);
329 }
1da177e4 330#elif DUMP_PACKETS >= 1
d44f7746
CW
331 for (i = 0; i < skb->len && i < 30; i++) {
332 sprintf(buf + i * 3, "%2.2x ", 0xff & skb->data[i]);
333 }
1da177e4 334#endif /* DUMP_PACKETS >= 1 */
d44f7746
CW
335 if (i == skb->len)
336 printk("%s\n", buf);
337 else
338 printk("%s...\n", buf);
1da177e4
LT
339#endif /* DUMP_PACKETS > 0 */
340
d44f7746 341 /* Minimum ethernet-frame size */
1da177e4 342#ifdef CONFIG_TR
d44f7746
CW
343 if (priv->is_trdev)
344 min_frame_size = LEC_MINIMUM_8025_SIZE;
1da177e4
LT
345 else
346#endif
d44f7746
CW
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,
352 GFP_ATOMIC);
353 dev_kfree_skb(skb);
354 if (skb2 == NULL) {
355 priv->stats.tx_dropped++;
356 return 0;
357 }
358 skb = skb2;
359 }
1da177e4 360 skb_put(skb, min_frame_size - skb->len);
d44f7746
CW
361 }
362
363 /* Send to right vcc */
364 is_rdesc = 0;
365 dst = lec_h->h_dest;
1da177e4 366#ifdef CONFIG_TR
d44f7746
CW
367 if (priv->is_trdev) {
368 dst = get_tr_dst(skb->data + 2, rdesc);
369 if (dst == NULL) {
370 dst = rdesc;
371 is_rdesc = 1;
372 }
373 }
1da177e4 374#endif
d44f7746
CW
375 entry = NULL;
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, ",
382 dev->name);
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);
388 } else {
389 DPRINTK
390 ("%s:lec_start_xmit: tx queue full or no arp entry, dropping, ",
391 dev->name);
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++;
397 dev_kfree_skb(skb);
398 }
6656e3c4 399 goto out;
d44f7746
CW
400 }
401#if DUMP_PACKETS > 0
402 printk("%s:sending to vpi:%d vci:%d\n", dev->name, vcc->vpi, vcc->vci);
1da177e4 403#endif /* DUMP_PACKETS > 0 */
d44f7746
CW
404
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]);
1da177e4 410 lec_send(vcc, skb2, priv);
d44f7746 411 }
1da177e4
LT
412
413 lec_send(vcc, skb, priv);
414
415 if (!atm_may_send(vcc, 0)) {
416 struct lec_vcc_priv *vpriv = LEC_VCC_PRIV(vcc);
417
418 vpriv->xoff = 1;
419 netif_stop_queue(dev);
420
421 /*
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.
425 */
426
427 if (atm_may_send(vcc, 0))
428 netif_wake_queue(dev);
429 }
430
6656e3c4
CW
431out:
432 if (entry)
433 lec_arp_put(entry);
1da177e4 434 dev->trans_start = jiffies;
d44f7746 435 return 0;
1da177e4
LT
436}
437
438/* The inverse routine to net_open(). */
d44f7746 439static int lec_close(struct net_device *dev)
1da177e4 440{
d44f7746
CW
441 netif_stop_queue(dev);
442 return 0;
1da177e4
LT
443}
444
445/*
446 * Get the current statistics.
447 * This may be called with the card open or closed.
448 */
d44f7746 449static struct net_device_stats *lec_get_stats(struct net_device *dev)
1da177e4 450{
d44f7746 451 return &((struct lec_priv *)dev->priv)->stats;
1da177e4
LT
452}
453
d44f7746 454static int lec_atm_send(struct atm_vcc *vcc, struct sk_buff *skb)
1da177e4
LT
455{
456 unsigned long flags;
d44f7746
CW
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;
461 int i;
462 char *tmp; /* FIXME */
1da177e4
LT
463
464 atomic_sub(skb->truesize, &sk_atm(vcc)->sk_wmem_alloc);
d44f7746
CW
465 mesg = (struct atmlec_msg *)skb->data;
466 tmp = skb->data;
467 tmp += sizeof(struct atmlec_msg);
468 DPRINTK("%s: msg from zeppelin:%d\n", dev->name, mesg->type);
469 switch (mesg->type) {
470 case l_set_mac_addr:
471 for (i = 0; i < 6; i++) {
472 dev->dev_addr[i] = mesg->content.normal.mac_addr[i];
473 }
474 break;
475 case l_del_mac_addr:
476 for (i = 0; i < 6; i++) {
477 dev->dev_addr[i] = 0;
478 }
479 break;
480 case l_addr_delete:
481 lec_addr_delete(priv, mesg->content.normal.atm_addr,
482 mesg->content.normal.flag);
483 break;
484 case l_topology_change:
485 priv->topology_change = mesg->content.normal.flag;
486 break;
487 case l_flush_complete:
488 lec_flush_complete(priv, mesg->content.normal.flag);
489 break;
490 case l_narp_req: /* LANE2: see 7.1.35 in the lane2 spec */
1da177e4 491 spin_lock_irqsave(&priv->lec_arp_lock, flags);
d44f7746
CW
492 entry = lec_arp_find(priv, mesg->content.normal.mac_addr);
493 lec_arp_remove(priv, entry);
1da177e4
LT
494 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
495
d44f7746
CW
496 if (mesg->content.normal.no_source_le_narp)
497 break;
498 /* FALL THROUGH */
499 case l_arp_update:
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",
507 mesg->sizeoftlvs);
508 lane2_associate_ind(dev, mesg->content.normal.mac_addr,
509 tmp, mesg->sizeoftlvs);
510 }
511 break;
512 case l_config:
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 */
1da177e4
LT
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,
d44f7746 532 mesg->content.config.mtu);
1da177e4 533 priv->is_proxy = mesg->content.config.is_proxy;
d44f7746
CW
534 break;
535 case l_flush_tran_id:
536 lec_set_flush_tran_id(priv, mesg->content.normal.atm_addr,
537 mesg->content.normal.flag);
538 break;
539 case l_set_lecid:
540 priv->lecid =
541 (unsigned short)(0xffff & mesg->content.normal.flag);
542 break;
543 case l_should_bridge:
1da177e4 544#if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
d44f7746
CW
545 {
546 struct net_bridge_fdb_entry *f;
547
548 DPRINTK
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]);
556
557 if (br_fdb_get_hook == NULL || dev->br_port == NULL)
558 break;
559
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;
566 struct sock *sk;
567
568 DPRINTK
569 ("%s: entry found, responding to zeppelin\n",
570 dev->name);
571 skb2 =
572 alloc_skb(sizeof(struct atmlec_msg),
573 GFP_ATOMIC);
574 if (skb2 == NULL) {
575 br_fdb_put_hook(f);
576 break;
577 }
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);
585 }
586 if (f != NULL)
587 br_fdb_put_hook(f);
588 }
1da177e4 589#endif /* defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE) */
d44f7746
CW
590 break;
591 default:
592 printk("%s: Unknown message type %d\n", dev->name, mesg->type);
593 dev_kfree_skb(skb);
594 return -EINVAL;
595 }
596 dev_kfree_skb(skb);
597 return 0;
1da177e4
LT
598}
599
d44f7746 600static void lec_atm_close(struct atm_vcc *vcc)
1da177e4 601{
d44f7746
CW
602 struct sk_buff *skb;
603 struct net_device *dev = (struct net_device *)vcc->proto_data;
604 struct lec_priv *priv = (struct lec_priv *)dev->priv;
1da177e4 605
d44f7746
CW
606 priv->lecd = NULL;
607 /* Do something needful? */
1da177e4 608
d44f7746
CW
609 netif_stop_queue(dev);
610 lec_arp_destroy(priv);
1da177e4 611
d44f7746 612 if (skb_peek(&sk_atm(vcc)->sk_receive_queue))
1da177e4 613 printk("%s lec_atm_close: closing with messages pending\n",
d44f7746
CW
614 dev->name);
615 while ((skb = skb_dequeue(&sk_atm(vcc)->sk_receive_queue)) != NULL) {
616 atm_return(vcc, skb->truesize);
1da177e4 617 dev_kfree_skb(skb);
d44f7746
CW
618 }
619
1da177e4 620 printk("%s: Shut down!\n", dev->name);
d44f7746 621 module_put(THIS_MODULE);
1da177e4
LT
622}
623
624static struct atmdev_ops lecdev_ops = {
d44f7746
CW
625 .close = lec_atm_close,
626 .send = lec_atm_send
1da177e4
LT
627};
628
629static struct atm_dev lecatm_dev = {
d44f7746
CW
630 .ops = &lecdev_ops,
631 .type = "lec",
632 .number = 999, /* dummy device number */
633 .lock = SPIN_LOCK_UNLOCKED
1da177e4
LT
634};
635
636/*
637 * LANE2: new argument struct sk_buff *data contains
638 * the LE_ARP based TLVs introduced in the LANE2 spec
639 */
d44f7746
CW
640static int
641send_to_lecd(struct lec_priv *priv, atmlec_msg_type type,
642 unsigned char *mac_addr, unsigned char *atm_addr,
643 struct sk_buff *data)
1da177e4
LT
644{
645 struct sock *sk;
646 struct sk_buff *skb;
647 struct atmlec_msg *mesg;
648
649 if (!priv || !priv->lecd) {
650 return -1;
651 }
652 skb = alloc_skb(sizeof(struct atmlec_msg), GFP_ATOMIC);
653 if (!skb)
654 return -1;
655 skb->len = sizeof(struct atmlec_msg);
656 mesg = (struct atmlec_msg *)skb->data;
d44f7746 657 memset(mesg, 0, sizeof(struct atmlec_msg));
1da177e4 658 mesg->type = type;
d44f7746
CW
659 if (data != NULL)
660 mesg->sizeoftlvs = data->len;
1da177e4
LT
661 if (mac_addr)
662 memcpy(&mesg->content.normal.mac_addr, mac_addr, ETH_ALEN);
d44f7746
CW
663 else
664 mesg->content.normal.targetless_le_arp = 1;
1da177e4
LT
665 if (atm_addr)
666 memcpy(&mesg->content.normal.atm_addr, atm_addr, ATM_ESA_LEN);
667
d44f7746 668 atm_force_charge(priv->lecd, skb->truesize);
1da177e4
LT
669 sk = sk_atm(priv->lecd);
670 skb_queue_tail(&sk->sk_receive_queue, skb);
d44f7746 671 sk->sk_data_ready(sk, skb->len);
1da177e4 672
d44f7746
CW
673 if (data != NULL) {
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);
678 }
1da177e4 679
d44f7746 680 return 0;
1da177e4
LT
681}
682
683/* shamelessly stolen from drivers/net/net_init.c */
684static int lec_change_mtu(struct net_device *dev, int new_mtu)
685{
d44f7746
CW
686 if ((new_mtu < 68) || (new_mtu > 18190))
687 return -EINVAL;
688 dev->mtu = new_mtu;
689 return 0;
1da177e4
LT
690}
691
692static void lec_set_multicast_list(struct net_device *dev)
693{
d44f7746
CW
694 /*
695 * by default, all multicast frames arrive over the bus.
696 * eventually support selective multicast service
697 */
698 return;
1da177e4
LT
699}
700
d44f7746 701static void lec_init(struct net_device *dev)
1da177e4 702{
d44f7746
CW
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;
1da177e4
LT
707 dev->tx_timeout = lec_tx_timeout;
708
d44f7746
CW
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);
713 return;
1da177e4
LT
714}
715
716static unsigned char lec_ctrl_magic[] = {
d44f7746
CW
717 0xff,
718 0x00,
719 0x01,
720 0x01
721};
1da177e4 722
4a7097fc
ST
723#define LEC_DATA_DIRECT_8023 2
724#define LEC_DATA_DIRECT_8025 3
725
726static int lec_is_data_direct(struct atm_vcc *vcc)
d44f7746 727{
4a7097fc
ST
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));
d44f7746 730}
4a7097fc 731
d44f7746 732static void lec_push(struct atm_vcc *vcc, struct sk_buff *skb)
1da177e4 733{
4a7097fc 734 unsigned long flags;
d44f7746
CW
735 struct net_device *dev = (struct net_device *)vcc->proto_data;
736 struct lec_priv *priv = (struct lec_priv *)dev->priv;
1da177e4
LT
737
738#if DUMP_PACKETS >0
d44f7746
CW
739 int i = 0;
740 char buf[300];
1da177e4 741
d44f7746
CW
742 printk("%s: lec_push vcc vpi:%d vci:%d\n", dev->name,
743 vcc->vpi, vcc->vci);
1da177e4 744#endif
d44f7746
CW
745 if (!skb) {
746 DPRINTK("%s: null skb\n", dev->name);
747 lec_vcc_close(priv, vcc);
748 return;
749 }
1da177e4 750#if DUMP_PACKETS > 0
d44f7746
CW
751 printk("%s: rcv datalen:%ld lecid:%4.4x\n", dev->name,
752 skb->len, priv->lecid);
1da177e4 753#if DUMP_PACKETS >= 2
d44f7746
CW
754 for (i = 0; i < skb->len && i < 99; i++) {
755 sprintf(buf + i * 3, "%2.2x ", 0xff & skb->data[i]);
756 }
1da177e4 757#elif DUMP_PACKETS >= 1
d44f7746
CW
758 for (i = 0; i < skb->len && i < 30; i++) {
759 sprintf(buf + i * 3, "%2.2x ", 0xff & skb->data[i]);
760 }
1da177e4 761#endif /* DUMP_PACKETS >= 1 */
d44f7746
CW
762 if (i == skb->len)
763 printk("%s\n", buf);
764 else
765 printk("%s...\n", buf);
1da177e4 766#endif /* DUMP_PACKETS > 0 */
d44f7746 767 if (memcmp(skb->data, lec_ctrl_magic, 4) == 0) { /* Control frame, to daemon */
1da177e4
LT
768 struct sock *sk = sk_atm(vcc);
769
d44f7746
CW
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 */
4a7097fc 774 struct lec_arp_table *entry;
d44f7746
CW
775 unsigned char *src, *dst;
776
777 atm_return(vcc, skb->truesize);
30d492da 778 if (*(__be16 *) skb->data == htons(priv->lecid) ||
d44f7746
CW
779 !priv->lecd || !(dev->flags & IFF_UP)) {
780 /*
781 * Probably looping back, or if lecd is missing,
782 * lecd has gone down
783 */
784 DPRINTK("Ignoring frame...\n");
785 dev_kfree_skb(skb);
786 return;
787 }
1da177e4 788#ifdef CONFIG_TR
d44f7746
CW
789 if (priv->is_trdev)
790 dst = ((struct lecdatahdr_8025 *)skb->data)->h_dest;
791 else
1da177e4 792#endif
d44f7746 793 dst = ((struct lecdatahdr_8023 *)skb->data)->h_dest;
4a7097fc 794
d44f7746
CW
795 /*
796 * If this is a Data Direct VCC, and the VCC does not match
4a7097fc
ST
797 * the LE_ARP cache entry, delete the LE_ARP cache entry.
798 */
799 spin_lock_irqsave(&priv->lec_arp_lock, flags);
800 if (lec_is_data_direct(vcc)) {
801#ifdef CONFIG_TR
802 if (priv->is_trdev)
d44f7746
CW
803 src =
804 ((struct lecdatahdr_8025 *)skb->data)->
805 h_source;
4a7097fc
ST
806 else
807#endif
d44f7746
CW
808 src =
809 ((struct lecdatahdr_8023 *)skb->data)->
810 h_source;
4a7097fc
ST
811 entry = lec_arp_find(priv, src);
812 if (entry && entry->vcc != vcc) {
813 lec_arp_remove(priv, entry);
33a9c2d4 814 lec_arp_put(entry);
4a7097fc
ST
815 }
816 }
817 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1da177e4 818
d44f7746
CW
819 if (!(dst[0] & 0x01) && /* Never filter Multi/Broadcast */
820 !priv->is_proxy && /* Proxy wants all the packets */
1da177e4 821 memcmp(dst, dev->dev_addr, dev->addr_len)) {
d44f7746
CW
822 dev_kfree_skb(skb);
823 return;
824 }
d0732f64 825 if (!hlist_empty(&priv->lec_arp_empty_ones)) {
d44f7746
CW
826 lec_arp_check_empties(priv, vcc, skb);
827 }
828 skb->dev = dev;
829 skb_pull(skb, 2); /* skip lec_id */
1da177e4 830#ifdef CONFIG_TR
d44f7746
CW
831 if (priv->is_trdev)
832 skb->protocol = tr_type_trans(skb, dev);
833 else
1da177e4 834#endif
d44f7746
CW
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));
839 netif_rx(skb);
840 }
1da177e4
LT
841}
842
d44f7746 843static void lec_pop(struct atm_vcc *vcc, struct sk_buff *skb)
1da177e4
LT
844{
845 struct lec_vcc_priv *vpriv = LEC_VCC_PRIV(vcc);
846 struct net_device *dev = skb->dev;
847
848 if (vpriv == NULL) {
849 printk("lec_pop(): vpriv = NULL!?!?!?\n");
850 return;
851 }
852
853 vpriv->old_pop(vcc, skb);
854
855 if (vpriv->xoff && atm_may_send(vcc, 0)) {
856 vpriv->xoff = 0;
857 if (netif_running(dev) && netif_queue_stopped(dev))
858 netif_wake_queue(dev);
859 }
860}
861
d44f7746 862static int lec_vcc_attach(struct atm_vcc *vcc, void __user *arg)
1da177e4
LT
863{
864 struct lec_vcc_priv *vpriv;
d44f7746
CW
865 int bytes_left;
866 struct atmlec_ioc ioc_data;
867
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) {
871 printk
872 ("lec: lec_vcc_attach, copy from user failed for %d bytes\n",
873 bytes_left);
874 }
875 if (ioc_data.dev_num < 0 || ioc_data.dev_num >= MAX_LEC_ITF ||
876 !dev_lec[ioc_data.dev_num])
877 return -EINVAL;
1da177e4
LT
878 if (!(vpriv = kmalloc(sizeof(struct lec_vcc_priv), GFP_KERNEL)))
879 return -ENOMEM;
880 vpriv->xoff = 0;
881 vpriv->old_pop = vcc->pop;
882 vcc->user_back = vpriv;
883 vcc->pop = lec_pop;
d44f7746
CW
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;
888 return 0;
1da177e4
LT
889}
890
d44f7746 891static int lec_mcast_attach(struct atm_vcc *vcc, int arg)
1da177e4 892{
d44f7746
CW
893 if (arg < 0 || arg >= MAX_LEC_ITF || !dev_lec[arg])
894 return -EINVAL;
895 vcc->proto_data = dev_lec[arg];
896 return (lec_mcast_make((struct lec_priv *)dev_lec[arg]->priv, vcc));
1da177e4
LT
897}
898
899/* Initialize device. */
d44f7746
CW
900static int lecd_attach(struct atm_vcc *vcc, int arg)
901{
902 int i;
903 struct lec_priv *priv;
904
905 if (arg < 0)
906 i = 0;
907 else
908 i = arg;
1da177e4 909#ifdef CONFIG_TR
d44f7746
CW
910 if (arg >= MAX_LEC_ITF)
911 return -EINVAL;
912#else /* Reserve the top NUM_TR_DEVS for TR */
913 if (arg >= (MAX_LEC_ITF - NUM_TR_DEVS))
914 return -EINVAL;
1da177e4 915#endif
d44f7746
CW
916 if (!dev_lec[i]) {
917 int is_trdev, size;
1da177e4 918
d44f7746
CW
919 is_trdev = 0;
920 if (i >= (MAX_LEC_ITF - NUM_TR_DEVS))
921 is_trdev = 1;
1da177e4 922
d44f7746 923 size = sizeof(struct lec_priv);
1da177e4 924#ifdef CONFIG_TR
d44f7746
CW
925 if (is_trdev)
926 dev_lec[i] = alloc_trdev(size);
927 else
1da177e4 928#endif
d44f7746
CW
929 dev_lec[i] = alloc_etherdev(size);
930 if (!dev_lec[i])
931 return -ENOMEM;
932 snprintf(dev_lec[i]->name, IFNAMSIZ, "lec%d", i);
933 if (register_netdev(dev_lec[i])) {
934 free_netdev(dev_lec[i]);
935 return -EINVAL;
936 }
937
938 priv = dev_lec[i]->priv;
939 priv->is_trdev = is_trdev;
940 lec_init(dev_lec[i]);
941 } else {
942 priv = dev_lec[i]->priv;
943 if (priv->lecd)
944 return -EADDRINUSE;
945 }
946 lec_arp_init(priv);
947 priv->itfnum = i; /* LANE2 addition */
948 priv->lecd = vcc;
949 vcc->dev = &lecatm_dev;
950 vcc_insert_socket(sk_atm(vcc));
951
952 vcc->proto_data = dev_lec[i];
953 set_bit(ATM_VF_META, &vcc->flags);
954 set_bit(ATM_VF_READY, &vcc->flags);
955
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);
967
968 if (dev_lec[i]->flags & IFF_UP) {
969 netif_start_queue(dev_lec[i]);
970 }
971 __module_get(THIS_MODULE);
972 return i;
1da177e4
LT
973}
974
975#ifdef CONFIG_PROC_FS
d44f7746 976static char *lec_arp_get_status_string(unsigned char status)
1da177e4
LT
977{
978 static char *lec_arp_status_string[] = {
979 "ESI_UNKNOWN ",
980 "ESI_ARP_PENDING ",
981 "ESI_VC_PENDING ",
982 "<Undefined> ",
983 "ESI_FLUSH_PENDING ",
984 "ESI_FORWARD_DIRECT"
985 };
986
987 if (status > ESI_FORWARD_DIRECT)
988 status = 3; /* ESI_UNDEFINED */
989 return lec_arp_status_string[status];
990}
991
992static void lec_info(struct seq_file *seq, struct lec_arp_table *entry)
993{
994 int i;
995
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);
1003 if (entry->vcc)
1004 seq_printf(seq, "%3d %3d ", entry->vcc->vpi, entry->vcc->vci);
1005 else
d44f7746 1006 seq_printf(seq, " ");
1da177e4
LT
1007 if (entry->recv_vcc) {
1008 seq_printf(seq, " %3d %3d", entry->recv_vcc->vpi,
1009 entry->recv_vcc->vci);
d44f7746
CW
1010 }
1011 seq_putc(seq, '\n');
1da177e4
LT
1012}
1013
1da177e4
LT
1014struct lec_state {
1015 unsigned long flags;
1016 struct lec_priv *locked;
d0732f64 1017 struct hlist_node *node;
1da177e4
LT
1018 struct net_device *dev;
1019 int itf;
1020 int arp_table;
1021 int misc_table;
1022};
1023
d0732f64 1024static void *lec_tbl_walk(struct lec_state *state, struct hlist_head *tbl,
1da177e4
LT
1025 loff_t *l)
1026{
d0732f64
CW
1027 struct hlist_node *e = state->node;
1028 struct lec_arp_table *tmp;
1da177e4
LT
1029
1030 if (!e)
d0732f64 1031 e = tbl->first;
1da177e4 1032 if (e == (void *)1) {
d0732f64 1033 e = tbl->first;
1da177e4
LT
1034 --*l;
1035 }
d0732f64
CW
1036
1037 hlist_for_each_entry_from(tmp, e, next) {
1da177e4
LT
1038 if (--*l < 0)
1039 break;
1040 }
d0732f64
CW
1041 state->node = e;
1042
1da177e4
LT
1043 return (*l < 0) ? state : NULL;
1044}
1045
1046static void *lec_arp_walk(struct lec_state *state, loff_t *l,
d44f7746 1047 struct lec_priv *priv)
1da177e4
LT
1048{
1049 void *v = NULL;
1050 int p;
1051
1052 for (p = state->arp_table; p < LEC_ARP_TABLE_SIZE; p++) {
d0732f64 1053 v = lec_tbl_walk(state, &priv->lec_arp_tables[p], l);
1da177e4
LT
1054 if (v)
1055 break;
1056 }
1057 state->arp_table = p;
1058 return v;
1059}
1060
1061static void *lec_misc_walk(struct lec_state *state, loff_t *l,
1062 struct lec_priv *priv)
1063{
d0732f64
CW
1064 struct hlist_head *lec_misc_tables[] = {
1065 &priv->lec_arp_empty_ones,
1066 &priv->lec_no_forward,
1067 &priv->mcast_fwds
1da177e4
LT
1068 };
1069 void *v = NULL;
1070 int q;
1071
1072 for (q = state->misc_table; q < ARRAY_SIZE(lec_misc_tables); q++) {
1073 v = lec_tbl_walk(state, lec_misc_tables[q], l);
1074 if (v)
1075 break;
1076 }
1077 state->misc_table = q;
1078 return v;
1079}
1080
1081static void *lec_priv_walk(struct lec_state *state, loff_t *l,
1082 struct lec_priv *priv)
1083{
1084 if (!state->locked) {
1085 state->locked = priv;
1086 spin_lock_irqsave(&priv->lec_arp_lock, state->flags);
1087 }
d44f7746 1088 if (!lec_arp_walk(state, l, priv) && !lec_misc_walk(state, l, priv)) {
1da177e4
LT
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;
1093 }
1094 return state->locked;
1095}
1096
1097static void *lec_itf_walk(struct lec_state *state, loff_t *l)
1098{
1099 struct net_device *dev;
1100 void *v;
1101
1102 dev = state->dev ? state->dev : dev_lec[state->itf];
1103 v = (dev && dev->priv) ? lec_priv_walk(state, l, dev->priv) : NULL;
1104 if (!v && dev) {
1105 dev_put(dev);
1106 /* Partial state reset for the next time we get called */
1107 dev = NULL;
1108 }
1109 state->dev = dev;
1110 return v;
1111}
1112
1113static void *lec_get_idx(struct lec_state *state, loff_t l)
1114{
1115 void *v = NULL;
1116
1117 for (; state->itf < MAX_LEC_ITF; state->itf++) {
1118 v = lec_itf_walk(state, &l);
1119 if (v)
1120 break;
1121 }
d44f7746 1122 return v;
1da177e4
LT
1123}
1124
1125static void *lec_seq_start(struct seq_file *seq, loff_t *pos)
1126{
1127 struct lec_state *state = seq->private;
1128
1129 state->itf = 0;
1130 state->dev = NULL;
1131 state->locked = NULL;
1132 state->arp_table = 0;
1133 state->misc_table = 0;
d0732f64 1134 state->node = (void *)1;
1da177e4 1135
d44f7746 1136 return *pos ? lec_get_idx(state, *pos) : (void *)1;
1da177e4
LT
1137}
1138
1139static void lec_seq_stop(struct seq_file *seq, void *v)
1140{
1141 struct lec_state *state = seq->private;
1142
1143 if (state->dev) {
1144 spin_unlock_irqrestore(&state->locked->lec_arp_lock,
1145 state->flags);
1146 dev_put(state->dev);
1147 }
1148}
1149
1150static void *lec_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1151{
1152 struct lec_state *state = seq->private;
1153
1154 v = lec_get_idx(state, 1);
1155 *pos += !!PTR_ERR(v);
1156 return v;
1157}
1158
1159static int lec_seq_show(struct seq_file *seq, void *v)
1160{
d44f7746
CW
1161 static char lec_banner[] = "Itf MAC ATM destination"
1162 " Status Flags "
1163 "VPI/VCI Recv VPI/VCI\n";
1da177e4
LT
1164
1165 if (v == (void *)1)
1166 seq_puts(seq, lec_banner);
1167 else {
1168 struct lec_state *state = seq->private;
d44f7746 1169 struct net_device *dev = state->dev;
d0732f64 1170 struct lec_arp_table *entry = hlist_entry(state->node, struct lec_arp_table, next);
1da177e4
LT
1171
1172 seq_printf(seq, "%s ", dev->name);
d0732f64 1173 lec_info(seq, entry);
1da177e4
LT
1174 }
1175 return 0;
1176}
1177
1178static struct seq_operations lec_seq_ops = {
d44f7746
CW
1179 .start = lec_seq_start,
1180 .next = lec_seq_next,
1181 .stop = lec_seq_stop,
1182 .show = lec_seq_show,
1da177e4
LT
1183};
1184
1185static int lec_seq_open(struct inode *inode, struct file *file)
1186{
1187 struct lec_state *state;
1188 struct seq_file *seq;
1189 int rc = -EAGAIN;
1190
1191 state = kmalloc(sizeof(*state), GFP_KERNEL);
1192 if (!state) {
1193 rc = -ENOMEM;
1194 goto out;
1195 }
1196
1197 rc = seq_open(file, &lec_seq_ops);
1198 if (rc)
1199 goto out_kfree;
1200 seq = file->private_data;
1201 seq->private = state;
1202out:
1203 return rc;
1204
1205out_kfree:
1206 kfree(state);
1207 goto out;
1208}
1209
1210static int lec_seq_release(struct inode *inode, struct file *file)
1211{
1212 return seq_release_private(inode, file);
1213}
1214
1215static struct file_operations lec_seq_fops = {
d44f7746
CW
1216 .owner = THIS_MODULE,
1217 .open = lec_seq_open,
1218 .read = seq_read,
1219 .llseek = seq_lseek,
1220 .release = lec_seq_release,
1da177e4
LT
1221};
1222#endif
1223
1224static int lane_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1225{
1226 struct atm_vcc *vcc = ATM_SD(sock);
1227 int err = 0;
d44f7746 1228
1da177e4 1229 switch (cmd) {
d44f7746
CW
1230 case ATMLEC_CTRL:
1231 case ATMLEC_MCAST:
1232 case ATMLEC_DATA:
1233 if (!capable(CAP_NET_ADMIN))
1234 return -EPERM;
1235 break;
1236 default:
1237 return -ENOIOCTLCMD;
1da177e4
LT
1238 }
1239
1240 switch (cmd) {
d44f7746
CW
1241 case ATMLEC_CTRL:
1242 err = lecd_attach(vcc, (int)arg);
1243 if (err >= 0)
1244 sock->state = SS_CONNECTED;
1245 break;
1246 case ATMLEC_MCAST:
1247 err = lec_mcast_attach(vcc, (int)arg);
1248 break;
1249 case ATMLEC_DATA:
1250 err = lec_vcc_attach(vcc, (void __user *)arg);
1251 break;
1da177e4
LT
1252 }
1253
1254 return err;
1255}
1256
1257static struct atm_ioctl lane_ioctl_ops = {
d44f7746
CW
1258 .owner = THIS_MODULE,
1259 .ioctl = lane_ioctl,
1da177e4
LT
1260};
1261
1262static int __init lane_module_init(void)
1263{
1264#ifdef CONFIG_PROC_FS
1265 struct proc_dir_entry *p;
1266
1267 p = create_proc_entry("lec", S_IRUGO, atm_proc_root);
1268 if (p)
1269 p->proc_fops = &lec_seq_fops;
1270#endif
1271
1272 register_atm_ioctl(&lane_ioctl_ops);
d44f7746
CW
1273 printk("lec.c: " __DATE__ " " __TIME__ " initialized\n");
1274 return 0;
1da177e4
LT
1275}
1276
1277static void __exit lane_module_cleanup(void)
1278{
d44f7746
CW
1279 int i;
1280 struct lec_priv *priv;
1da177e4
LT
1281
1282 remove_proc_entry("lec", atm_proc_root);
1283
1284 deregister_atm_ioctl(&lane_ioctl_ops);
1285
d44f7746
CW
1286 for (i = 0; i < MAX_LEC_ITF; i++) {
1287 if (dev_lec[i] != NULL) {
1288 priv = (struct lec_priv *)dev_lec[i]->priv;
1da177e4 1289 unregister_netdev(dev_lec[i]);
d44f7746
CW
1290 free_netdev(dev_lec[i]);
1291 dev_lec[i] = NULL;
1292 }
1293 }
1da177e4 1294
d44f7746 1295 return;
1da177e4
LT
1296}
1297
1298module_init(lane_module_init);
1299module_exit(lane_module_cleanup);
1300
1301/*
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
1305 * lec will be used.
1306 * If dst_mac == NULL, targetless LE_ARP will be sent
1307 */
1308static int lane2_resolve(struct net_device *dev, u8 *dst_mac, int force,
d44f7746 1309 u8 **tlvs, u32 *sizeoftlvs)
1da177e4
LT
1310{
1311 unsigned long flags;
d44f7746
CW
1312 struct lec_priv *priv = (struct lec_priv *)dev->priv;
1313 struct lec_arp_table *table;
1314 struct sk_buff *skb;
1315 int retval;
1da177e4 1316
d44f7746 1317 if (force == 0) {
1da177e4 1318 spin_lock_irqsave(&priv->lec_arp_lock, flags);
d44f7746 1319 table = lec_arp_find(priv, dst_mac);
1da177e4 1320 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
d44f7746
CW
1321 if (table == NULL)
1322 return -1;
1323
2afe37cd 1324 *tlvs = kmemdup(table->tlvs, table->sizeoftlvs, GFP_ATOMIC);
d44f7746
CW
1325 if (*tlvs == NULL)
1326 return -1;
1327
d44f7746
CW
1328 *sizeoftlvs = table->sizeoftlvs;
1329
1330 return 0;
1331 }
1da177e4
LT
1332
1333 if (sizeoftlvs == NULL)
1334 retval = send_to_lecd(priv, l_arp_xmt, dst_mac, NULL, NULL);
d44f7746 1335
1da177e4
LT
1336 else {
1337 skb = alloc_skb(*sizeoftlvs, GFP_ATOMIC);
1338 if (skb == NULL)
1339 return -1;
1340 skb->len = *sizeoftlvs;
1341 memcpy(skb->data, *tlvs, *sizeoftlvs);
1342 retval = send_to_lecd(priv, l_arp_xmt, dst_mac, NULL, skb);
1343 }
d44f7746
CW
1344 return retval;
1345}
1da177e4
LT
1346
1347/*
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)
1352 *
1353 */
d44f7746
CW
1354static int lane2_associate_req(struct net_device *dev, u8 *lan_dst,
1355 u8 *tlvs, u32 sizeoftlvs)
1da177e4 1356{
d44f7746
CW
1357 int retval;
1358 struct sk_buff *skb;
1359 struct lec_priv *priv = (struct lec_priv *)dev->priv;
1360
1361 if (compare_ether_addr(lan_dst, dev->dev_addr))
1362 return (0); /* not our mac address */
1363
1364 kfree(priv->tlvs); /* NULL if there was no previous association */
1365
2afe37cd 1366 priv->tlvs = kmemdup(tlvs, sizeoftlvs, GFP_KERNEL);
d44f7746
CW
1367 if (priv->tlvs == NULL)
1368 return (0);
1369 priv->sizeoftlvs = sizeoftlvs;
d44f7746
CW
1370
1371 skb = alloc_skb(sizeoftlvs, GFP_ATOMIC);
1372 if (skb == NULL)
1373 return 0;
1374 skb->len = sizeoftlvs;
1375 memcpy(skb->data, tlvs, sizeoftlvs);
1376 retval = send_to_lecd(priv, l_associate_req, NULL, NULL, skb);
1377 if (retval != 0)
1378 printk("lec.c: lane2_associate_req() failed\n");
1379 /*
1380 * If the previous association has changed we must
1381 * somehow notify other LANE entities about the change
1382 */
1383 return (1);
1da177e4
LT
1384}
1385
1386/*
1387 * LANE2: 3.1.5, LE_ASSOCIATE.indication
1388 *
1389 */
d44f7746
CW
1390static void lane2_associate_ind(struct net_device *dev, u8 *mac_addr,
1391 u8 *tlvs, u32 sizeoftlvs)
1da177e4
LT
1392{
1393#if 0
d44f7746 1394 int i = 0;
1da177e4
LT
1395#endif
1396 struct lec_priv *priv = (struct lec_priv *)dev->priv;
d44f7746
CW
1397#if 0 /*
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
1402 */
1403 struct lec_arp_table *entry = lec_arp_find(priv, mac_addr);
1da177e4 1404
d44f7746
CW
1405 if (entry == NULL)
1406 return; /* should not happen */
1da177e4 1407
d44f7746 1408 kfree(entry->tlvs);
1da177e4 1409
2afe37cd 1410 entry->tlvs = kmemdup(tlvs, sizeoftlvs, GFP_KERNEL);
d44f7746
CW
1411 if (entry->tlvs == NULL)
1412 return;
d44f7746 1413 entry->sizeoftlvs = sizeoftlvs;
1da177e4
LT
1414#endif
1415#if 0
d44f7746
CW
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++]);
1420
1421 printk("\n");
1da177e4
LT
1422#endif
1423
d44f7746
CW
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,
1427 tlvs, sizeoftlvs);
1428 }
1429 return;
1da177e4
LT
1430}
1431
1432/*
1433 * Here starts what used to lec_arpc.c
1434 *
1435 * lec_arpc.c was added here when making
1436 * lane client modular. October 1997
1da177e4
LT
1437 */
1438
1439#include <linux/types.h>
1440#include <linux/sched.h>
1441#include <linux/timer.h>
1442#include <asm/param.h>
1443#include <asm/atomic.h>
1444#include <linux/inetdevice.h>
1445#include <net/route.h>
1446
1da177e4
LT
1447#if 0
1448#define DPRINTK(format,args...)
1449/*
1450#define DPRINTK printk
1451*/
1452#endif
1453#define DEBUG_ARP_TABLE 0
1454
1455#define LEC_ARP_REFRESH_INTERVAL (3*HZ)
1456
c4028958 1457static void lec_arp_check_expire(struct work_struct *work);
1da177e4
LT
1458static void lec_arp_expire_arp(unsigned long data);
1459
1460/*
1461 * Arp table funcs
1462 */
1463
1464#define HASH(ch) (ch & (LEC_ARP_TABLE_SIZE -1))
1465
1466/*
1467 * Initialization of arp-cache
1468 */
1fa9961d 1469static void lec_arp_init(struct lec_priv *priv)
1da177e4 1470{
1fa9961d 1471 unsigned short i;
1da177e4 1472
1fa9961d 1473 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
d0732f64 1474 INIT_HLIST_HEAD(&priv->lec_arp_tables[i]);
1fa9961d 1475 }
d0732f64
CW
1476 INIT_HLIST_HEAD(&priv->lec_arp_empty_ones);
1477 INIT_HLIST_HEAD(&priv->lec_no_forward);
1478 INIT_HLIST_HEAD(&priv->mcast_fwds);
1da177e4 1479 spin_lock_init(&priv->lec_arp_lock);
c4028958 1480 INIT_DELAYED_WORK(&priv->lec_arp_work, lec_arp_check_expire);
987e46bd 1481 schedule_delayed_work(&priv->lec_arp_work, LEC_ARP_REFRESH_INTERVAL);
1da177e4
LT
1482}
1483
1fa9961d 1484static void lec_arp_clear_vccs(struct lec_arp_table *entry)
1da177e4 1485{
1fa9961d 1486 if (entry->vcc) {
1da177e4
LT
1487 struct atm_vcc *vcc = entry->vcc;
1488 struct lec_vcc_priv *vpriv = LEC_VCC_PRIV(vcc);
1fa9961d 1489 struct net_device *dev = (struct net_device *)vcc->proto_data;
1da177e4 1490
1fa9961d 1491 vcc->pop = vpriv->old_pop;
1da177e4
LT
1492 if (vpriv->xoff)
1493 netif_wake_queue(dev);
1494 kfree(vpriv);
1495 vcc->user_back = NULL;
1fa9961d 1496 vcc->push = entry->old_push;
1da177e4 1497 vcc_release_async(vcc, -EPIPE);
d0732f64 1498 entry->vcc = NULL;
1fa9961d
CW
1499 }
1500 if (entry->recv_vcc) {
1501 entry->recv_vcc->push = entry->old_recv_push;
1da177e4 1502 vcc_release_async(entry->recv_vcc, -EPIPE);
1fa9961d
CW
1503 entry->recv_vcc = NULL;
1504 }
1da177e4
LT
1505}
1506
1507/*
1508 * Insert entry to lec_arp_table
1509 * LANE2: Add to the end of the list to satisfy 8.1.13
1510 */
1fa9961d 1511static inline void
d0732f64 1512lec_arp_add(struct lec_priv *priv, struct lec_arp_table *entry)
1da177e4 1513{
d0732f64 1514 struct hlist_head *tmp;
1fa9961d 1515
d0732f64
CW
1516 tmp = &priv->lec_arp_tables[HASH(entry->mac_addr[ETH_ALEN - 1])];
1517 hlist_add_head(&entry->next, tmp);
1fa9961d
CW
1518
1519 DPRINTK("LEC_ARP: Added entry:%2.2x %2.2x %2.2x %2.2x %2.2x %2.2x\n",
d0732f64
CW
1520 0xff & entry->mac_addr[0], 0xff & entry->mac_addr[1],
1521 0xff & entry->mac_addr[2], 0xff & entry->mac_addr[3],
1522 0xff & entry->mac_addr[4], 0xff & entry->mac_addr[5]);
1da177e4
LT
1523}
1524
1525/*
1526 * Remove entry from lec_arp_table
1527 */
1fa9961d
CW
1528static int
1529lec_arp_remove(struct lec_priv *priv, struct lec_arp_table *to_remove)
1da177e4 1530{
d0732f64
CW
1531 struct hlist_node *node;
1532 struct lec_arp_table *entry;
1533 int i, remove_vcc = 1;
1fa9961d
CW
1534
1535 if (!to_remove) {
1536 return -1;
1537 }
d0732f64
CW
1538
1539 hlist_del(&to_remove->next);
1fa9961d
CW
1540 del_timer(&to_remove->timer);
1541
d0732f64 1542 /* If this is the only MAC connected to this VCC, also tear down the VCC */
1fa9961d
CW
1543 if (to_remove->status >= ESI_FLUSH_PENDING) {
1544 /*
1545 * ESI_FLUSH_PENDING, ESI_FORWARD_DIRECT
1546 */
d0732f64
CW
1547 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
1548 hlist_for_each_entry(entry, node, &priv->lec_arp_tables[i], next) {
1549 if (memcmp(to_remove->atm_addr,
1550 entry->atm_addr, ATM_ESA_LEN) == 0) {
1fa9961d
CW
1551 remove_vcc = 0;
1552 break;
1553 }
1554 }
1555 }
1556 if (remove_vcc)
1557 lec_arp_clear_vccs(to_remove);
1558 }
1559 skb_queue_purge(&to_remove->tx_wait); /* FIXME: good place for this? */
1560
1561 DPRINTK("LEC_ARP: Removed entry:%2.2x %2.2x %2.2x %2.2x %2.2x %2.2x\n",
1562 0xff & to_remove->mac_addr[0], 0xff & to_remove->mac_addr[1],
1563 0xff & to_remove->mac_addr[2], 0xff & to_remove->mac_addr[3],
1564 0xff & to_remove->mac_addr[4], 0xff & to_remove->mac_addr[5]);
1565 return 0;
1da177e4
LT
1566}
1567
1568#if DEBUG_ARP_TABLE
1fa9961d 1569static char *get_status_string(unsigned char st)
1da177e4 1570{
1fa9961d
CW
1571 switch (st) {
1572 case ESI_UNKNOWN:
1573 return "ESI_UNKNOWN";
1574 case ESI_ARP_PENDING:
1575 return "ESI_ARP_PENDING";
1576 case ESI_VC_PENDING:
1577 return "ESI_VC_PENDING";
1578 case ESI_FLUSH_PENDING:
1579 return "ESI_FLUSH_PENDING";
1580 case ESI_FORWARD_DIRECT:
1581 return "ESI_FORWARD_DIRECT";
1582 default:
1583 return "<UNKNOWN>";
1584 }
1da177e4 1585}
1da177e4 1586
1fa9961d 1587static void dump_arp_table(struct lec_priv *priv)
1da177e4 1588{
d0732f64 1589 struct hlist_node *node;
1fa9961d 1590 struct lec_arp_table *rulla;
d0732f64
CW
1591 char buf[256];
1592 int i, j, offset;
1fa9961d
CW
1593
1594 printk("Dump %p:\n", priv);
1595 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
d0732f64
CW
1596 hlist_for_each_entry(rulla, node, &priv->lec_arp_tables[i], next) {
1597 offset = 0;
1598 offset += sprintf(buf, "%d: %p\n", i, rulla);
1fa9961d
CW
1599 offset += sprintf(buf + offset, "Mac:");
1600 for (j = 0; j < ETH_ALEN; j++) {
1601 offset += sprintf(buf + offset,
1602 "%2.2x ",
1603 rulla->mac_addr[j] & 0xff);
1604 }
1605 offset += sprintf(buf + offset, "Atm:");
1606 for (j = 0; j < ATM_ESA_LEN; j++) {
1607 offset += sprintf(buf + offset,
1608 "%2.2x ",
1609 rulla->atm_addr[j] & 0xff);
1610 }
1611 offset += sprintf(buf + offset,
1612 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1613 rulla->vcc ? rulla->vcc->vpi : 0,
1614 rulla->vcc ? rulla->vcc->vci : 0,
1615 rulla->recv_vcc ? rulla->recv_vcc->
1616 vpi : 0,
1617 rulla->recv_vcc ? rulla->recv_vcc->
1618 vci : 0, rulla->last_used,
1619 rulla->timestamp, rulla->no_tries);
1620 offset +=
1621 sprintf(buf + offset,
1622 "Flags:%x, Packets_flooded:%x, Status: %s ",
1623 rulla->flags, rulla->packets_flooded,
1624 get_status_string(rulla->status));
d0732f64 1625 printk("%s\n", buf);
1fa9961d 1626 }
1fa9961d 1627 }
d0732f64
CW
1628
1629 if (!hlist_empty(&priv->lec_no_forward))
1fa9961d 1630 printk("No forward\n");
d0732f64 1631 hlist_for_each_entry(rulla, node, &priv->lec_no_forward, next) {
1fa9961d
CW
1632 offset = 0;
1633 offset += sprintf(buf + offset, "Mac:");
1634 for (j = 0; j < ETH_ALEN; j++) {
1635 offset += sprintf(buf + offset, "%2.2x ",
1636 rulla->mac_addr[j] & 0xff);
1637 }
1638 offset += sprintf(buf + offset, "Atm:");
1639 for (j = 0; j < ATM_ESA_LEN; j++) {
1640 offset += sprintf(buf + offset, "%2.2x ",
1641 rulla->atm_addr[j] & 0xff);
1642 }
1643 offset += sprintf(buf + offset,
1644 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1645 rulla->vcc ? rulla->vcc->vpi : 0,
1646 rulla->vcc ? rulla->vcc->vci : 0,
1647 rulla->recv_vcc ? rulla->recv_vcc->vpi : 0,
1648 rulla->recv_vcc ? rulla->recv_vcc->vci : 0,
1649 rulla->last_used,
1650 rulla->timestamp, rulla->no_tries);
1651 offset += sprintf(buf + offset,
1652 "Flags:%x, Packets_flooded:%x, Status: %s ",
1653 rulla->flags, rulla->packets_flooded,
1654 get_status_string(rulla->status));
d0732f64 1655 printk("%s\n", buf);
1fa9961d 1656 }
d0732f64
CW
1657
1658 if (!hlist_empty(&priv->lec_arp_empty_ones))
1fa9961d 1659 printk("Empty ones\n");
d0732f64 1660 hlist_for_each_entry(rulla, node, &priv->lec_arp_empty_ones, next) {
1fa9961d
CW
1661 offset = 0;
1662 offset += sprintf(buf + offset, "Mac:");
1663 for (j = 0; j < ETH_ALEN; j++) {
1664 offset += sprintf(buf + offset, "%2.2x ",
1665 rulla->mac_addr[j] & 0xff);
1666 }
1667 offset += sprintf(buf + offset, "Atm:");
1668 for (j = 0; j < ATM_ESA_LEN; j++) {
1669 offset += sprintf(buf + offset, "%2.2x ",
1670 rulla->atm_addr[j] & 0xff);
1671 }
1672 offset += sprintf(buf + offset,
1673 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1674 rulla->vcc ? rulla->vcc->vpi : 0,
1675 rulla->vcc ? rulla->vcc->vci : 0,
1676 rulla->recv_vcc ? rulla->recv_vcc->vpi : 0,
1677 rulla->recv_vcc ? rulla->recv_vcc->vci : 0,
1678 rulla->last_used,
1679 rulla->timestamp, rulla->no_tries);
1680 offset += sprintf(buf + offset,
1681 "Flags:%x, Packets_flooded:%x, Status: %s ",
1682 rulla->flags, rulla->packets_flooded,
1683 get_status_string(rulla->status));
1fa9961d
CW
1684 printk("%s", buf);
1685 }
1686
d0732f64 1687 if (!hlist_empty(&priv->mcast_fwds))
1fa9961d 1688 printk("Multicast Forward VCCs\n");
d0732f64 1689 hlist_for_each_entry(rulla, node, &priv->mcast_fwds, next) {
1fa9961d
CW
1690 offset = 0;
1691 offset += sprintf(buf + offset, "Mac:");
1692 for (j = 0; j < ETH_ALEN; j++) {
1693 offset += sprintf(buf + offset, "%2.2x ",
1694 rulla->mac_addr[j] & 0xff);
1695 }
1696 offset += sprintf(buf + offset, "Atm:");
1697 for (j = 0; j < ATM_ESA_LEN; j++) {
1698 offset += sprintf(buf + offset, "%2.2x ",
1699 rulla->atm_addr[j] & 0xff);
1700 }
1701 offset += sprintf(buf + offset,
1702 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1703 rulla->vcc ? rulla->vcc->vpi : 0,
1704 rulla->vcc ? rulla->vcc->vci : 0,
1705 rulla->recv_vcc ? rulla->recv_vcc->vpi : 0,
1706 rulla->recv_vcc ? rulla->recv_vcc->vci : 0,
1707 rulla->last_used,
1708 rulla->timestamp, rulla->no_tries);
1709 offset += sprintf(buf + offset,
1710 "Flags:%x, Packets_flooded:%x, Status: %s ",
1711 rulla->flags, rulla->packets_flooded,
1712 get_status_string(rulla->status));
d0732f64 1713 printk("%s\n", buf);
1fa9961d 1714 }
1da177e4 1715
1da177e4 1716}
d0732f64
CW
1717#else
1718#define dump_arp_table(priv) do { } while (0)
1719#endif
1da177e4
LT
1720
1721/*
1722 * Destruction of arp-cache
1723 */
1fa9961d 1724static void lec_arp_destroy(struct lec_priv *priv)
1da177e4
LT
1725{
1726 unsigned long flags;
d0732f64
CW
1727 struct hlist_node *node, *next;
1728 struct lec_arp_table *entry;
1fa9961d
CW
1729 int i;
1730
987e46bd 1731 cancel_rearming_delayed_work(&priv->lec_arp_work);
1da177e4 1732
1fa9961d
CW
1733 /*
1734 * Remove all entries
1735 */
1da177e4
LT
1736
1737 spin_lock_irqsave(&priv->lec_arp_lock, flags);
1fa9961d 1738 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
d0732f64 1739 hlist_for_each_entry_safe(entry, node, next, &priv->lec_arp_tables[i], next) {
1fa9961d 1740 lec_arp_remove(priv, entry);
33a9c2d4 1741 lec_arp_put(entry);
1fa9961d 1742 }
d0732f64 1743 INIT_HLIST_HEAD(&priv->lec_arp_tables[i]);
1fa9961d 1744 }
d0732f64
CW
1745
1746 hlist_for_each_entry_safe(entry, node, next, &priv->lec_arp_empty_ones, next) {
1fa9961d
CW
1747 del_timer_sync(&entry->timer);
1748 lec_arp_clear_vccs(entry);
d0732f64 1749 hlist_del(&entry->next);
33a9c2d4 1750 lec_arp_put(entry);
1fa9961d 1751 }
d0732f64
CW
1752 INIT_HLIST_HEAD(&priv->lec_arp_empty_ones);
1753
1754 hlist_for_each_entry_safe(entry, node, next, &priv->lec_no_forward, next) {
1fa9961d
CW
1755 del_timer_sync(&entry->timer);
1756 lec_arp_clear_vccs(entry);
d0732f64 1757 hlist_del(&entry->next);
33a9c2d4 1758 lec_arp_put(entry);
1fa9961d 1759 }
d0732f64
CW
1760 INIT_HLIST_HEAD(&priv->lec_no_forward);
1761
1762 hlist_for_each_entry_safe(entry, node, next, &priv->mcast_fwds, next) {
1fa9961d
CW
1763 /* No timer, LANEv2 7.1.20 and 2.3.5.3 */
1764 lec_arp_clear_vccs(entry);
d0732f64 1765 hlist_del(&entry->next);
33a9c2d4 1766 lec_arp_put(entry);
1fa9961d 1767 }
d0732f64 1768 INIT_HLIST_HEAD(&priv->mcast_fwds);
1fa9961d 1769 priv->mcast_vcc = NULL;
1da177e4
LT
1770 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1771}
1772
1da177e4
LT
1773/*
1774 * Find entry by mac_address
1775 */
1fa9961d
CW
1776static struct lec_arp_table *lec_arp_find(struct lec_priv *priv,
1777 unsigned char *mac_addr)
1da177e4 1778{
d0732f64
CW
1779 struct hlist_node *node;
1780 struct hlist_head *head;
1781 struct lec_arp_table *entry;
1fa9961d
CW
1782
1783 DPRINTK("LEC_ARP: lec_arp_find :%2.2x %2.2x %2.2x %2.2x %2.2x %2.2x\n",
1784 mac_addr[0] & 0xff, mac_addr[1] & 0xff, mac_addr[2] & 0xff,
1785 mac_addr[3] & 0xff, mac_addr[4] & 0xff, mac_addr[5] & 0xff);
1fa9961d 1786
d0732f64
CW
1787 head = &priv->lec_arp_tables[HASH(mac_addr[ETH_ALEN - 1])];
1788 hlist_for_each_entry(entry, node, head, next) {
1789 if (!compare_ether_addr(mac_addr, entry->mac_addr)) {
1790 return entry;
1fa9961d 1791 }
1fa9961d
CW
1792 }
1793 return NULL;
1da177e4
LT
1794}
1795
1fa9961d
CW
1796static struct lec_arp_table *make_entry(struct lec_priv *priv,
1797 unsigned char *mac_addr)
1da177e4 1798{
1fa9961d
CW
1799 struct lec_arp_table *to_return;
1800
1801 to_return = kzalloc(sizeof(struct lec_arp_table), GFP_ATOMIC);
1802 if (!to_return) {
1803 printk("LEC: Arp entry kmalloc failed\n");
1804 return NULL;
1805 }
1806 memcpy(to_return->mac_addr, mac_addr, ETH_ALEN);
d0732f64 1807 INIT_HLIST_NODE(&to_return->next);
1fa9961d
CW
1808 init_timer(&to_return->timer);
1809 to_return->timer.function = lec_arp_expire_arp;
1810 to_return->timer.data = (unsigned long)to_return;
1811 to_return->last_used = jiffies;
1812 to_return->priv = priv;
1813 skb_queue_head_init(&to_return->tx_wait);
33a9c2d4 1814 atomic_set(&to_return->usage, 1);
1fa9961d 1815 return to_return;
1da177e4
LT
1816}
1817
1fa9961d
CW
1818/* Arp sent timer expired */
1819static void lec_arp_expire_arp(unsigned long data)
1da177e4 1820{
1fa9961d
CW
1821 struct lec_arp_table *entry;
1822
1823 entry = (struct lec_arp_table *)data;
1824
1825 DPRINTK("lec_arp_expire_arp\n");
1826 if (entry->status == ESI_ARP_PENDING) {
1827 if (entry->no_tries <= entry->priv->max_retry_count) {
1828 if (entry->is_rdesc)
1829 send_to_lecd(entry->priv, l_rdesc_arp_xmt,
1830 entry->mac_addr, NULL, NULL);
1831 else
1832 send_to_lecd(entry->priv, l_arp_xmt,
1833 entry->mac_addr, NULL, NULL);
1834 entry->no_tries++;
1835 }
1836 mod_timer(&entry->timer, jiffies + (1 * HZ));
1837 }
1da177e4
LT
1838}
1839
1fa9961d
CW
1840/* Unknown/unused vcc expire, remove associated entry */
1841static void lec_arp_expire_vcc(unsigned long data)
1da177e4
LT
1842{
1843 unsigned long flags;
1fa9961d
CW
1844 struct lec_arp_table *to_remove = (struct lec_arp_table *)data;
1845 struct lec_priv *priv = (struct lec_priv *)to_remove->priv;
1da177e4 1846
1fa9961d 1847 del_timer(&to_remove->timer);
1da177e4 1848
1fa9961d
CW
1849 DPRINTK("LEC_ARP %p %p: lec_arp_expire_vcc vpi:%d vci:%d\n",
1850 to_remove, priv,
1851 to_remove->vcc ? to_remove->recv_vcc->vpi : 0,
1852 to_remove->vcc ? to_remove->recv_vcc->vci : 0);
1da177e4
LT
1853
1854 spin_lock_irqsave(&priv->lec_arp_lock, flags);
d0732f64 1855 hlist_del(&to_remove->next);
1da177e4
LT
1856 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1857
1fa9961d 1858 lec_arp_clear_vccs(to_remove);
33a9c2d4 1859 lec_arp_put(to_remove);
1da177e4
LT
1860}
1861
1862/*
1863 * Expire entries.
1864 * 1. Re-set timer
1865 * 2. For each entry, delete entries that have aged past the age limit.
1866 * 3. For each entry, depending on the status of the entry, perform
1867 * the following maintenance.
1868 * a. If status is ESI_VC_PENDING or ESI_ARP_PENDING then if the
1869 * tick_count is above the max_unknown_frame_time, clear
1870 * the tick_count to zero and clear the packets_flooded counter
1871 * to zero. This supports the packet rate limit per address
1872 * while flooding unknowns.
1873 * b. If the status is ESI_FLUSH_PENDING and the tick_count is greater
1874 * than or equal to the path_switching_delay, change the status
1875 * to ESI_FORWARD_DIRECT. This causes the flush period to end
1876 * regardless of the progress of the flush protocol.
1877 */
c4028958 1878static void lec_arp_check_expire(struct work_struct *work)
1da177e4
LT
1879{
1880 unsigned long flags;
c4028958
DH
1881 struct lec_priv *priv =
1882 container_of(work, struct lec_priv, lec_arp_work.work);
d0732f64
CW
1883 struct hlist_node *node, *next;
1884 struct lec_arp_table *entry;
1fa9961d
CW
1885 unsigned long now;
1886 unsigned long time_to_check;
1887 int i;
1888
1889 DPRINTK("lec_arp_check_expire %p\n", priv);
1da177e4 1890 now = jiffies;
6656e3c4 1891restart:
1da177e4 1892 spin_lock_irqsave(&priv->lec_arp_lock, flags);
1fa9961d 1893 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
d0732f64 1894 hlist_for_each_entry_safe(entry, node, next, &priv->lec_arp_tables[i], next) {
1fa9961d 1895 if ((entry->flags) & LEC_REMOTE_FLAG &&
1da177e4
LT
1896 priv->topology_change)
1897 time_to_check = priv->forward_delay_time;
1898 else
1899 time_to_check = priv->aging_time;
1900
1901 DPRINTK("About to expire: %lx - %lx > %lx\n",
1fa9961d
CW
1902 now, entry->last_used, time_to_check);
1903 if (time_after(now, entry->last_used + time_to_check)
1904 && !(entry->flags & LEC_PERMANENT_FLAG)
1905 && !(entry->mac_addr[0] & 0x01)) { /* LANE2: 7.1.20 */
1da177e4
LT
1906 /* Remove entry */
1907 DPRINTK("LEC:Entry timed out\n");
1da177e4 1908 lec_arp_remove(priv, entry);
33a9c2d4 1909 lec_arp_put(entry);
1da177e4
LT
1910 } else {
1911 /* Something else */
1912 if ((entry->status == ESI_VC_PENDING ||
1fa9961d 1913 entry->status == ESI_ARP_PENDING)
1da177e4 1914 && time_after_eq(now,
1fa9961d
CW
1915 entry->timestamp +
1916 priv->
1917 max_unknown_frame_time)) {
1da177e4
LT
1918 entry->timestamp = jiffies;
1919 entry->packets_flooded = 0;
1920 if (entry->status == ESI_VC_PENDING)
1fa9961d
CW
1921 send_to_lecd(priv, l_svc_setup,
1922 entry->mac_addr,
1923 entry->atm_addr,
1924 NULL);
1da177e4 1925 }
1fa9961d
CW
1926 if (entry->status == ESI_FLUSH_PENDING
1927 &&
1928 time_after_eq(now, entry->timestamp +
1929 priv->path_switching_delay)) {
1da177e4 1930 struct sk_buff *skb;
6656e3c4 1931 struct atm_vcc *vcc = entry->vcc;
1da177e4 1932
6656e3c4
CW
1933 lec_arp_hold(entry);
1934 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1935 while ((skb = skb_dequeue(&entry->tx_wait)) != NULL)
1936 lec_send(vcc, skb, entry->priv);
1da177e4 1937 entry->last_used = jiffies;
1fa9961d 1938 entry->status = ESI_FORWARD_DIRECT;
6656e3c4
CW
1939 lec_arp_put(entry);
1940 goto restart;
1da177e4 1941 }
1da177e4
LT
1942 }
1943 }
1944 }
1945 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1946
987e46bd 1947 schedule_delayed_work(&priv->lec_arp_work, LEC_ARP_REFRESH_INTERVAL);
1da177e4 1948}
1fa9961d 1949
1da177e4
LT
1950/*
1951 * Try to find vcc where mac_address is attached.
1952 *
1953 */
1fa9961d
CW
1954static struct atm_vcc *lec_arp_resolve(struct lec_priv *priv,
1955 unsigned char *mac_to_find, int is_rdesc,
1956 struct lec_arp_table **ret_entry)
1da177e4
LT
1957{
1958 unsigned long flags;
1fa9961d 1959 struct lec_arp_table *entry;
1da177e4
LT
1960 struct atm_vcc *found;
1961
1fa9961d
CW
1962 if (mac_to_find[0] & 0x01) {
1963 switch (priv->lane_version) {
1964 case 1:
1965 return priv->mcast_vcc;
1966 break;
1967 case 2: /* LANE2 wants arp for multicast addresses */
1968 if (!compare_ether_addr(mac_to_find, bus_mac))
1969 return priv->mcast_vcc;
1970 break;
1971 default:
1972 break;
1973 }
1974 }
1da177e4
LT
1975
1976 spin_lock_irqsave(&priv->lec_arp_lock, flags);
1fa9961d
CW
1977 entry = lec_arp_find(priv, mac_to_find);
1978
1979 if (entry) {
1980 if (entry->status == ESI_FORWARD_DIRECT) {
1981 /* Connection Ok */
1982 entry->last_used = jiffies;
6656e3c4 1983 lec_arp_hold(entry);
1fa9961d
CW
1984 *ret_entry = entry;
1985 found = entry->vcc;
1da177e4 1986 goto out;
1fa9961d
CW
1987 }
1988 /*
1989 * If the LE_ARP cache entry is still pending, reset count to 0
75b895c1
ST
1990 * so another LE_ARP request can be made for this frame.
1991 */
1992 if (entry->status == ESI_ARP_PENDING) {
1993 entry->no_tries = 0;
1994 }
1fa9961d
CW
1995 /*
1996 * Data direct VC not yet set up, check to see if the unknown
1997 * frame count is greater than the limit. If the limit has
1998 * not been reached, allow the caller to send packet to
1999 * BUS.
2000 */
2001 if (entry->status != ESI_FLUSH_PENDING &&
2002 entry->packets_flooded <
2003 priv->maximum_unknown_frame_count) {
2004 entry->packets_flooded++;
2005 DPRINTK("LEC_ARP: Flooding..\n");
2006 found = priv->mcast_vcc;
1da177e4 2007 goto out;
1fa9961d
CW
2008 }
2009 /*
2010 * We got here because entry->status == ESI_FLUSH_PENDING
1da177e4
LT
2011 * or BUS flood limit was reached for an entry which is
2012 * in ESI_ARP_PENDING or ESI_VC_PENDING state.
2013 */
6656e3c4 2014 lec_arp_hold(entry);
1fa9961d
CW
2015 *ret_entry = entry;
2016 DPRINTK("lec: entry->status %d entry->vcc %p\n", entry->status,
2017 entry->vcc);
2018 found = NULL;
2019 } else {
2020 /* No matching entry was found */
2021 entry = make_entry(priv, mac_to_find);
2022 DPRINTK("LEC_ARP: Making entry\n");
2023 if (!entry) {
2024 found = priv->mcast_vcc;
1da177e4 2025 goto out;
1fa9961d
CW
2026 }
2027 lec_arp_add(priv, entry);
2028 /* We want arp-request(s) to be sent */
2029 entry->packets_flooded = 1;
2030 entry->status = ESI_ARP_PENDING;
2031 entry->no_tries = 1;
2032 entry->last_used = entry->timestamp = jiffies;
2033 entry->is_rdesc = is_rdesc;
2034 if (entry->is_rdesc)
2035 send_to_lecd(priv, l_rdesc_arp_xmt, mac_to_find, NULL,
2036 NULL);
2037 else
2038 send_to_lecd(priv, l_arp_xmt, mac_to_find, NULL, NULL);
2039 entry->timer.expires = jiffies + (1 * HZ);
2040 entry->timer.function = lec_arp_expire_arp;
2041 add_timer(&entry->timer);
2042 found = priv->mcast_vcc;
2043 }
1da177e4
LT
2044
2045out:
2046 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2047 return found;
2048}
2049
2050static int
1fa9961d
CW
2051lec_addr_delete(struct lec_priv *priv, unsigned char *atm_addr,
2052 unsigned long permanent)
1da177e4
LT
2053{
2054 unsigned long flags;
d0732f64
CW
2055 struct hlist_node *node, *next;
2056 struct lec_arp_table *entry;
1fa9961d 2057 int i;
1da177e4 2058
1fa9961d 2059 DPRINTK("lec_addr_delete\n");
1da177e4 2060 spin_lock_irqsave(&priv->lec_arp_lock, flags);
1fa9961d 2061 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
d0732f64 2062 hlist_for_each_entry_safe(entry, node, next, &priv->lec_arp_tables[i], next) {
1fa9961d
CW
2063 if (!memcmp(atm_addr, entry->atm_addr, ATM_ESA_LEN)
2064 && (permanent ||
2065 !(entry->flags & LEC_PERMANENT_FLAG))) {
1da177e4 2066 lec_arp_remove(priv, entry);
33a9c2d4 2067 lec_arp_put(entry);
1fa9961d 2068 }
1da177e4 2069 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1fa9961d
CW
2070 return 0;
2071 }
2072 }
1da177e4 2073 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1fa9961d 2074 return -1;
1da177e4
LT
2075}
2076
2077/*
2078 * Notifies: Response to arp_request (atm_addr != NULL)
2079 */
2080static void
2081lec_arp_update(struct lec_priv *priv, unsigned char *mac_addr,
1fa9961d
CW
2082 unsigned char *atm_addr, unsigned long remoteflag,
2083 unsigned int targetless_le_arp)
1da177e4
LT
2084{
2085 unsigned long flags;
d0732f64 2086 struct hlist_node *node, *next;
1fa9961d
CW
2087 struct lec_arp_table *entry, *tmp;
2088 int i;
1da177e4 2089
1fa9961d
CW
2090 DPRINTK("lec:%s", (targetless_le_arp) ? "targetless " : " ");
2091 DPRINTK("lec_arp_update mac:%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x\n",
2092 mac_addr[0], mac_addr[1], mac_addr[2], mac_addr[3],
2093 mac_addr[4], mac_addr[5]);
1da177e4
LT
2094
2095 spin_lock_irqsave(&priv->lec_arp_lock, flags);
1fa9961d
CW
2096 entry = lec_arp_find(priv, mac_addr);
2097 if (entry == NULL && targetless_le_arp)
2098 goto out; /*
2099 * LANE2: ignore targetless LE_ARPs for which
2100 * we have no entry in the cache. 7.1.30
2101 */
d0732f64
CW
2102 if (!hlist_empty(&priv->lec_arp_empty_ones)) {
2103 hlist_for_each_entry_safe(entry, node, next, &priv->lec_arp_empty_ones, next) {
2104 if (memcmp(entry->atm_addr, atm_addr, ATM_ESA_LEN) == 0) {
2105 hlist_del(&entry->next);
1fa9961d 2106 del_timer(&entry->timer);
d0732f64
CW
2107 tmp = lec_arp_find(priv, mac_addr);
2108 if (tmp) {
2109 del_timer(&tmp->timer);
2110 tmp->status = ESI_FORWARD_DIRECT;
2111 memcpy(tmp->atm_addr, atm_addr, ATM_ESA_LEN);
2112 tmp->vcc = entry->vcc;
2113 tmp->old_push = entry->old_push;
2114 tmp->last_used = jiffies;
2115 del_timer(&entry->timer);
33a9c2d4 2116 lec_arp_put(entry);
d0732f64
CW
2117 entry = tmp;
2118 } else {
2119 entry->status = ESI_FORWARD_DIRECT;
2120 memcpy(entry->mac_addr, mac_addr, ETH_ALEN);
2121 entry->last_used = jiffies;
2122 lec_arp_add(priv, entry);
2123 }
2124 if (remoteflag)
2125 entry->flags |= LEC_REMOTE_FLAG;
2126 else
2127 entry->flags &= ~LEC_REMOTE_FLAG;
2128 DPRINTK("After update\n");
2129 dump_arp_table(priv);
2130 goto out;
1fa9961d 2131 }
1fa9961d
CW
2132 }
2133 }
d0732f64 2134
1fa9961d
CW
2135 entry = lec_arp_find(priv, mac_addr);
2136 if (!entry) {
2137 entry = make_entry(priv, mac_addr);
2138 if (!entry)
2139 goto out;
2140 entry->status = ESI_UNKNOWN;
2141 lec_arp_add(priv, entry);
2142 /* Temporary, changes before end of function */
2143 }
2144 memcpy(entry->atm_addr, atm_addr, ATM_ESA_LEN);
2145 del_timer(&entry->timer);
2146 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
d0732f64 2147 hlist_for_each_entry(tmp, node, &priv->lec_arp_tables[i], next) {
1fa9961d
CW
2148 if (entry != tmp &&
2149 !memcmp(tmp->atm_addr, atm_addr, ATM_ESA_LEN)) {
2150 /* Vcc to this host exists */
2151 if (tmp->status > ESI_VC_PENDING) {
2152 /*
2153 * ESI_FLUSH_PENDING,
2154 * ESI_FORWARD_DIRECT
2155 */
2156 entry->vcc = tmp->vcc;
2157 entry->old_push = tmp->old_push;
2158 }
2159 entry->status = tmp->status;
2160 break;
2161 }
2162 }
2163 }
2164 if (remoteflag)
2165 entry->flags |= LEC_REMOTE_FLAG;
2166 else
2167 entry->flags &= ~LEC_REMOTE_FLAG;
2168 if (entry->status == ESI_ARP_PENDING || entry->status == ESI_UNKNOWN) {
2169 entry->status = ESI_VC_PENDING;
d0732f64 2170 send_to_lecd(priv, l_svc_setup, entry->mac_addr, atm_addr, NULL);
1fa9961d
CW
2171 }
2172 DPRINTK("After update2\n");
2173 dump_arp_table(priv);
1da177e4
LT
2174out:
2175 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2176}
2177
2178/*
2179 * Notifies: Vcc setup ready
2180 */
2181static void
2182lec_vcc_added(struct lec_priv *priv, struct atmlec_ioc *ioc_data,
1fa9961d
CW
2183 struct atm_vcc *vcc,
2184 void (*old_push) (struct atm_vcc *vcc, struct sk_buff *skb))
1da177e4
LT
2185{
2186 unsigned long flags;
d0732f64 2187 struct hlist_node *node;
1fa9961d
CW
2188 struct lec_arp_table *entry;
2189 int i, found_entry = 0;
1da177e4
LT
2190
2191 spin_lock_irqsave(&priv->lec_arp_lock, flags);
1fa9961d
CW
2192 if (ioc_data->receive == 2) {
2193 /* Vcc for Multicast Forward. No timer, LANEv2 7.1.20 and 2.3.5.3 */
1da177e4 2194
1fa9961d 2195 DPRINTK("LEC_ARP: Attaching mcast forward\n");
1da177e4 2196#if 0
1fa9961d
CW
2197 entry = lec_arp_find(priv, bus_mac);
2198 if (!entry) {
2199 printk("LEC_ARP: Multicast entry not found!\n");
1da177e4 2200 goto out;
1fa9961d
CW
2201 }
2202 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
2203 entry->recv_vcc = vcc;
2204 entry->old_recv_push = old_push;
1da177e4 2205#endif
1fa9961d
CW
2206 entry = make_entry(priv, bus_mac);
2207 if (entry == NULL)
1da177e4 2208 goto out;
1fa9961d
CW
2209 del_timer(&entry->timer);
2210 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
2211 entry->recv_vcc = vcc;
2212 entry->old_recv_push = old_push;
d0732f64 2213 hlist_add_head(&entry->next, &priv->mcast_fwds);
1fa9961d
CW
2214 goto out;
2215 } else if (ioc_data->receive == 1) {
2216 /*
2217 * Vcc which we don't want to make default vcc,
2218 * attach it anyway.
2219 */
2220 DPRINTK
2221 ("LEC_ARP:Attaching data direct, not default: "
2222 "%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",
2223 ioc_data->atm_addr[0], ioc_data->atm_addr[1],
2224 ioc_data->atm_addr[2], ioc_data->atm_addr[3],
2225 ioc_data->atm_addr[4], ioc_data->atm_addr[5],
2226 ioc_data->atm_addr[6], ioc_data->atm_addr[7],
2227 ioc_data->atm_addr[8], ioc_data->atm_addr[9],
2228 ioc_data->atm_addr[10], ioc_data->atm_addr[11],
2229 ioc_data->atm_addr[12], ioc_data->atm_addr[13],
2230 ioc_data->atm_addr[14], ioc_data->atm_addr[15],
2231 ioc_data->atm_addr[16], ioc_data->atm_addr[17],
2232 ioc_data->atm_addr[18], ioc_data->atm_addr[19]);
2233 entry = make_entry(priv, bus_mac);
2234 if (entry == NULL)
1da177e4 2235 goto out;
1fa9961d
CW
2236 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
2237 memset(entry->mac_addr, 0, ETH_ALEN);
2238 entry->recv_vcc = vcc;
2239 entry->old_recv_push = old_push;
2240 entry->status = ESI_UNKNOWN;
2241 entry->timer.expires = jiffies + priv->vcc_timeout_period;
2242 entry->timer.function = lec_arp_expire_vcc;
d0732f64 2243 hlist_add_head(&entry->next, &priv->lec_no_forward);
1fa9961d 2244 add_timer(&entry->timer);
1da177e4
LT
2245 dump_arp_table(priv);
2246 goto out;
1fa9961d
CW
2247 }
2248 DPRINTK
2249 ("LEC_ARP:Attaching data direct, default: "
2250 "%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",
2251 ioc_data->atm_addr[0], ioc_data->atm_addr[1],
2252 ioc_data->atm_addr[2], ioc_data->atm_addr[3],
2253 ioc_data->atm_addr[4], ioc_data->atm_addr[5],
2254 ioc_data->atm_addr[6], ioc_data->atm_addr[7],
2255 ioc_data->atm_addr[8], ioc_data->atm_addr[9],
2256 ioc_data->atm_addr[10], ioc_data->atm_addr[11],
2257 ioc_data->atm_addr[12], ioc_data->atm_addr[13],
2258 ioc_data->atm_addr[14], ioc_data->atm_addr[15],
2259 ioc_data->atm_addr[16], ioc_data->atm_addr[17],
2260 ioc_data->atm_addr[18], ioc_data->atm_addr[19]);
2261 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
d0732f64 2262 hlist_for_each_entry(entry, node, &priv->lec_arp_tables[i], next) {
1fa9961d
CW
2263 if (memcmp
2264 (ioc_data->atm_addr, entry->atm_addr,
2265 ATM_ESA_LEN) == 0) {
2266 DPRINTK("LEC_ARP: Attaching data direct\n");
2267 DPRINTK("Currently -> Vcc: %d, Rvcc:%d\n",
2268 entry->vcc ? entry->vcc->vci : 0,
2269 entry->recv_vcc ? entry->recv_vcc->
2270 vci : 0);
2271 found_entry = 1;
2272 del_timer(&entry->timer);
2273 entry->vcc = vcc;
2274 entry->old_push = old_push;
2275 if (entry->status == ESI_VC_PENDING) {
2276 if (priv->maximum_unknown_frame_count
2277 == 0)
2278 entry->status =
2279 ESI_FORWARD_DIRECT;
2280 else {
2281 entry->timestamp = jiffies;
2282 entry->status =
2283 ESI_FLUSH_PENDING;
1da177e4 2284#if 0
1fa9961d
CW
2285 send_to_lecd(priv, l_flush_xmt,
2286 NULL,
2287 entry->atm_addr,
2288 NULL);
1da177e4 2289#endif
1fa9961d
CW
2290 }
2291 } else {
2292 /*
2293 * They were forming a connection
2294 * to us, and we to them. Our
2295 * ATM address is numerically lower
2296 * than theirs, so we make connection
2297 * we formed into default VCC (8.1.11).
2298 * Connection they made gets torn
2299 * down. This might confuse some
2300 * clients. Can be changed if
2301 * someone reports trouble...
2302 */
2303 ;
2304 }
2305 }
2306 }
2307 }
2308 if (found_entry) {
2309 DPRINTK("After vcc was added\n");
2310 dump_arp_table(priv);
1da177e4 2311 goto out;
1fa9961d
CW
2312 }
2313 /*
2314 * Not found, snatch address from first data packet that arrives
2315 * from this vcc
2316 */
2317 entry = make_entry(priv, bus_mac);
2318 if (!entry)
1da177e4 2319 goto out;
1fa9961d
CW
2320 entry->vcc = vcc;
2321 entry->old_push = old_push;
2322 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
2323 memset(entry->mac_addr, 0, ETH_ALEN);
2324 entry->status = ESI_UNKNOWN;
d0732f64 2325 hlist_add_head(&entry->next, &priv->lec_arp_empty_ones);
1fa9961d
CW
2326 entry->timer.expires = jiffies + priv->vcc_timeout_period;
2327 entry->timer.function = lec_arp_expire_vcc;
2328 add_timer(&entry->timer);
2329 DPRINTK("After vcc was added\n");
1da177e4
LT
2330 dump_arp_table(priv);
2331out:
2332 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2333}
2334
1fa9961d 2335static void lec_flush_complete(struct lec_priv *priv, unsigned long tran_id)
1da177e4
LT
2336{
2337 unsigned long flags;
d0732f64 2338 struct hlist_node *node;
1fa9961d
CW
2339 struct lec_arp_table *entry;
2340 int i;
1da177e4 2341
1fa9961d 2342 DPRINTK("LEC:lec_flush_complete %lx\n", tran_id);
6656e3c4 2343restart:
1fa9961d
CW
2344 spin_lock_irqsave(&priv->lec_arp_lock, flags);
2345 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
d0732f64 2346 hlist_for_each_entry(entry, node, &priv->lec_arp_tables[i], next) {
1fa9961d
CW
2347 if (entry->flush_tran_id == tran_id
2348 && entry->status == ESI_FLUSH_PENDING) {
2349 struct sk_buff *skb;
6656e3c4 2350 struct atm_vcc *vcc = entry->vcc;
1fa9961d 2351
6656e3c4
CW
2352 lec_arp_hold(entry);
2353 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2354 while ((skb = skb_dequeue(&entry->tx_wait)) != NULL)
2355 lec_send(vcc, skb, entry->priv);
2356 entry->last_used = jiffies;
1fa9961d 2357 entry->status = ESI_FORWARD_DIRECT;
6656e3c4 2358 lec_arp_put(entry);
1fa9961d 2359 DPRINTK("LEC_ARP: Flushed\n");
6656e3c4 2360 goto restart;
1fa9961d
CW
2361 }
2362 }
2363 }
1da177e4 2364 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1fa9961d 2365 dump_arp_table(priv);
1da177e4
LT
2366}
2367
2368static void
2369lec_set_flush_tran_id(struct lec_priv *priv,
1fa9961d 2370 unsigned char *atm_addr, unsigned long tran_id)
1da177e4
LT
2371{
2372 unsigned long flags;
d0732f64 2373 struct hlist_node *node;
1fa9961d
CW
2374 struct lec_arp_table *entry;
2375 int i;
1da177e4
LT
2376
2377 spin_lock_irqsave(&priv->lec_arp_lock, flags);
1fa9961d 2378 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++)
d0732f64 2379 hlist_for_each_entry(entry, node, &priv->lec_arp_tables[i], next) {
1fa9961d
CW
2380 if (!memcmp(atm_addr, entry->atm_addr, ATM_ESA_LEN)) {
2381 entry->flush_tran_id = tran_id;
d0732f64
CW
2382 DPRINTK("Set flush transaction id to %lx for %p\n",
2383 tran_id, entry);
1fa9961d 2384 }
d0732f64 2385 }
1da177e4
LT
2386 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2387}
2388
1fa9961d 2389static int lec_mcast_make(struct lec_priv *priv, struct atm_vcc *vcc)
1da177e4
LT
2390{
2391 unsigned long flags;
1fa9961d
CW
2392 unsigned char mac_addr[] = {
2393 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
2394 };
2395 struct lec_arp_table *to_add;
1da177e4
LT
2396 struct lec_vcc_priv *vpriv;
2397 int err = 0;
1fa9961d 2398
1da177e4
LT
2399 if (!(vpriv = kmalloc(sizeof(struct lec_vcc_priv), GFP_KERNEL)))
2400 return -ENOMEM;
2401 vpriv->xoff = 0;
2402 vpriv->old_pop = vcc->pop;
2403 vcc->user_back = vpriv;
1fa9961d 2404 vcc->pop = lec_pop;
1da177e4 2405 spin_lock_irqsave(&priv->lec_arp_lock, flags);
1fa9961d
CW
2406 to_add = make_entry(priv, mac_addr);
2407 if (!to_add) {
1da177e4
LT
2408 vcc->pop = vpriv->old_pop;
2409 kfree(vpriv);
1fa9961d 2410 err = -ENOMEM;
1da177e4 2411 goto out;
1fa9961d
CW
2412 }
2413 memcpy(to_add->atm_addr, vcc->remote.sas_addr.prv, ATM_ESA_LEN);
2414 to_add->status = ESI_FORWARD_DIRECT;
2415 to_add->flags |= LEC_PERMANENT_FLAG;
2416 to_add->vcc = vcc;
2417 to_add->old_push = vcc->push;
2418 vcc->push = lec_push;
2419 priv->mcast_vcc = vcc;
2420 lec_arp_add(priv, to_add);
1da177e4
LT
2421out:
2422 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1fa9961d 2423 return err;
1da177e4
LT
2424}
2425
1fa9961d 2426static void lec_vcc_close(struct lec_priv *priv, struct atm_vcc *vcc)
1da177e4
LT
2427{
2428 unsigned long flags;
d0732f64
CW
2429 struct hlist_node *node, *next;
2430 struct lec_arp_table *entry;
1fa9961d 2431 int i;
1da177e4 2432
1fa9961d
CW
2433 DPRINTK("LEC_ARP: lec_vcc_close vpi:%d vci:%d\n", vcc->vpi, vcc->vci);
2434 dump_arp_table(priv);
d0732f64 2435
1da177e4 2436 spin_lock_irqsave(&priv->lec_arp_lock, flags);
d0732f64 2437
1fa9961d 2438 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
d0732f64 2439 hlist_for_each_entry_safe(entry, node, next, &priv->lec_arp_tables[i], next) {
1fa9961d
CW
2440 if (vcc == entry->vcc) {
2441 lec_arp_remove(priv, entry);
33a9c2d4 2442 lec_arp_put(entry);
1fa9961d
CW
2443 if (priv->mcast_vcc == vcc) {
2444 priv->mcast_vcc = NULL;
2445 }
2446 }
2447 }
2448 }
2449
d0732f64
CW
2450 hlist_for_each_entry_safe(entry, node, next, &priv->lec_arp_empty_ones, next) {
2451 if (entry->vcc == vcc) {
1fa9961d
CW
2452 lec_arp_clear_vccs(entry);
2453 del_timer(&entry->timer);
d0732f64 2454 hlist_del(&entry->next);
33a9c2d4 2455 lec_arp_put(entry);
1fa9961d 2456 }
1fa9961d
CW
2457 }
2458
d0732f64 2459 hlist_for_each_entry_safe(entry, node, next, &priv->lec_no_forward, next) {
1fa9961d
CW
2460 if (entry->recv_vcc == vcc) {
2461 lec_arp_clear_vccs(entry);
2462 del_timer(&entry->timer);
d0732f64 2463 hlist_del(&entry->next);
33a9c2d4 2464 lec_arp_put(entry);
1fa9961d 2465 }
1fa9961d
CW
2466 }
2467
d0732f64 2468 hlist_for_each_entry_safe(entry, node, next, &priv->mcast_fwds, next) {
1fa9961d
CW
2469 if (entry->recv_vcc == vcc) {
2470 lec_arp_clear_vccs(entry);
2471 /* No timer, LANEv2 7.1.20 and 2.3.5.3 */
d0732f64 2472 hlist_del(&entry->next);
33a9c2d4 2473 lec_arp_put(entry);
1fa9961d 2474 }
1fa9961d 2475 }
1da177e4
LT
2476
2477 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2478 dump_arp_table(priv);
2479}
2480
2481static void
2482lec_arp_check_empties(struct lec_priv *priv,
1fa9961d 2483 struct atm_vcc *vcc, struct sk_buff *skb)
1da177e4 2484{
1fa9961d 2485 unsigned long flags;
d0732f64
CW
2486 struct hlist_node *node, *next;
2487 struct lec_arp_table *entry, *tmp;
1fa9961d
CW
2488 struct lecdatahdr_8023 *hdr = (struct lecdatahdr_8023 *)skb->data;
2489 unsigned char *src;
1da177e4 2490#ifdef CONFIG_TR
1fa9961d 2491 struct lecdatahdr_8025 *tr_hdr = (struct lecdatahdr_8025 *)skb->data;
1da177e4 2492
1fa9961d
CW
2493 if (priv->is_trdev)
2494 src = tr_hdr->h_source;
2495 else
1da177e4 2496#endif
1fa9961d 2497 src = hdr->h_source;
1da177e4
LT
2498
2499 spin_lock_irqsave(&priv->lec_arp_lock, flags);
d0732f64
CW
2500 hlist_for_each_entry_safe(entry, node, next, &priv->lec_arp_empty_ones, next) {
2501 if (vcc == entry->vcc) {
2502 del_timer(&entry->timer);
2503 memcpy(entry->mac_addr, src, ETH_ALEN);
2504 entry->status = ESI_FORWARD_DIRECT;
2505 entry->last_used = jiffies;
2506 /* We might have got an entry */
2507 if ((tmp = lec_arp_find(priv, src))) {
2508 lec_arp_remove(priv, tmp);
33a9c2d4 2509 lec_arp_put(tmp);
d0732f64
CW
2510 }
2511 hlist_del(&entry->next);
2512 lec_arp_add(priv, entry);
2513 goto out;
1fa9961d 2514 }
1fa9961d 2515 }
d0732f64 2516 DPRINTK("LEC_ARP: Arp_check_empties: entry not found!\n");
1da177e4
LT
2517out:
2518 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2519}
1fa9961d 2520
1da177e4 2521MODULE_LICENSE("GPL");