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