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