blob: 29acfb0e6d04c9cf1adb57f339617dd0365a15d6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * lec.c: Lan Emulation driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Chas Williamsd44f7742006-09-29 17:11:14 -07004 * Marko Kiiskila <mkiiskila@yahoo.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/kernel.h>
8#include <linux/bitops.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -08009#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
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
Chas Williamsd44f7742006-09-29 17:11:14 -070041static unsigned char bridge_ula_lec[] = { 0x01, 0x80, 0xc2, 0x00, 0x00 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#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
Chas Williamsd44f7742006-09-29 17:11:14 -070058#define DUMP_PACKETS 0 /*
59 * 0 = None,
60 * 1 = 30 first bytes
61 * 2 = Whole packet
62 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Chas Williamsd44f7742006-09-29 17:11:14 -070064#define LEC_UNRES_QUE_LEN 8 /*
65 * number of tx packets to queue for a
66 * single destination while waiting for SVC
67 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69static int lec_open(struct net_device *dev);
70static int lec_start_xmit(struct sk_buff *skb, struct net_device *dev);
71static int lec_close(struct net_device *dev);
72static struct net_device_stats *lec_get_stats(struct net_device *dev);
73static void lec_init(struct net_device *dev);
Chas Williamsd44f7742006-09-29 17:11:14 -070074static struct lec_arp_table *lec_arp_find(struct lec_priv *priv,
75 unsigned char *mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static int lec_arp_remove(struct lec_priv *priv,
Chas Williamsd44f7742006-09-29 17:11:14 -070077 struct lec_arp_table *to_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078/* LANE2 functions */
Chas Williamsd44f7742006-09-29 17:11:14 -070079static void lane2_associate_ind(struct net_device *dev, u8 *mac_address,
80 u8 *tlvs, u32 sizeoftlvs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static int lane2_resolve(struct net_device *dev, u8 *dst_mac, int force,
Chas Williamsd44f7742006-09-29 17:11:14 -070082 u8 **tlvs, u32 *sizeoftlvs);
83static int lane2_associate_req(struct net_device *dev, u8 *lan_dst,
84 u8 *tlvs, u32 sizeoftlvs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Chas Williamsd44f7742006-09-29 17:11:14 -070086static int lec_addr_delete(struct lec_priv *priv, unsigned char *atm_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 unsigned long permanent);
88static void lec_arp_check_empties(struct lec_priv *priv,
89 struct atm_vcc *vcc, struct sk_buff *skb);
90static void lec_arp_destroy(struct lec_priv *priv);
91static void lec_arp_init(struct lec_priv *priv);
Chas Williamsd44f7742006-09-29 17:11:14 -070092static struct atm_vcc *lec_arp_resolve(struct lec_priv *priv,
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 unsigned char *mac_to_find,
94 int is_rdesc,
95 struct lec_arp_table **ret_entry);
96static void lec_arp_update(struct lec_priv *priv, unsigned char *mac_addr,
97 unsigned char *atm_addr, unsigned long remoteflag,
98 unsigned int targetless_le_arp);
99static void lec_flush_complete(struct lec_priv *priv, unsigned long tran_id);
100static int lec_mcast_make(struct lec_priv *priv, struct atm_vcc *vcc);
101static void lec_set_flush_tran_id(struct lec_priv *priv,
102 unsigned char *atm_addr,
103 unsigned long tran_id);
104static void lec_vcc_added(struct lec_priv *priv, struct atmlec_ioc *ioc_data,
105 struct atm_vcc *vcc,
Chas Williamsd44f7742006-09-29 17:11:14 -0700106 void (*old_push) (struct atm_vcc *vcc,
107 struct sk_buff *skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108static void lec_vcc_close(struct lec_priv *priv, struct atm_vcc *vcc);
109
110static struct lane2_ops lane2_ops = {
Chas Williamsd44f7742006-09-29 17:11:14 -0700111 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114};
115
Chas Williamsd44f7742006-09-29 17:11:14 -0700116static unsigned char bus_mac[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118/* Device structures */
119static struct net_device *dev_lec[MAX_LEC_ITF];
120
121#if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
122static void lec_handle_bridge(struct sk_buff *skb, struct net_device *dev)
123{
Chas Williamsd44f7742006-09-29 17:11:14 -0700124 struct ethhdr *eth;
125 char *buff;
126 struct lec_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Chas Williamsd44f7742006-09-29 17:11:14 -0700128 /*
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) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 struct sock *sk;
Chas Williamsd44f7742006-09-29 17:11:14 -0700137 struct sk_buff *skb2;
138 struct atmlec_msg *mesg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Chas Williamsd44f7742006-09-29 17:11:14 -0700140 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Chas Williamsd44f7742006-09-29 17:11:14 -0700149 priv = (struct lec_priv *)dev->priv;
150 atm_force_charge(priv->lecd, skb2->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 sk = sk_atm(priv->lecd);
Chas Williamsd44f7742006-09-29 17:11:14 -0700152 skb_queue_tail(&sk->sk_receive_queue, skb2);
153 sk->sk_data_ready(sk, skb2->len);
154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Chas Williamsd44f7742006-09-29 17:11:14 -0700156 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
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
170static unsigned char *get_tr_dst(unsigned char *packet, unsigned char *rdesc)
171{
Chas Williamsd44f7742006-09-29 17:11:14 -0700172 struct trh_hdr *trh;
173 int riflen, num_rdsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Chas Williamsd44f7742006-09-29 17:11:14 -0700175 trh = (struct trh_hdr *)packet;
176 if (trh->daddr[0] & (uint8_t) 0x80)
177 return bus_mac; /* multicast */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Chas Williamsd44f7742006-09-29 17:11:14 -0700179 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Chas Williamsd44f7742006-09-29 17:11:14 -0700186 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
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
Chas Williamsd44f7742006-09-29 17:11:14 -0700213static int lec_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Chas Williamsd44f7742006-09-29 17:11:14 -0700215 struct lec_priv *priv = (struct lec_priv *)dev->priv;
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 netif_start_queue(dev);
Chas Williamsd44f7742006-09-29 17:11:14 -0700218 memset(&priv->stats, 0, sizeof(struct net_device_stats));
219
220 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
223static __inline__ void
224lec_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
Chas Williamsd44f7742006-09-29 17:11:14 -0700239static void lec_tx_timeout(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
241 printk(KERN_INFO "%s: tx timeout\n", dev->name);
242 dev->trans_start = jiffies;
243 netif_wake_queue(dev);
244}
245
Chas Williamsd44f7742006-09-29 17:11:14 -0700246static int lec_start_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Chas Williamsd44f7742006-09-29 17:11:14 -0700248 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 struct lec_arp_table *entry;
Chas Williamsd44f7742006-09-29 17:11:14 -0700253 unsigned char *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 int min_frame_size;
255#ifdef CONFIG_TR
Chas Williamsd44f7742006-09-29 17:11:14 -0700256 unsigned char rdesc[ETH_ALEN]; /* Token Ring route descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700258 int is_rdesc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259#if DUMP_PACKETS > 0
Chas Williamsd44f7742006-09-29 17:11:14 -0700260 char buf[300];
261 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262#endif /* DUMP_PACKETS >0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Chas Williamsd44f7742006-09-29 17:11:14 -0700264 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275#if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
Chas Williamsd44f7742006-09-29 17:11:14 -0700276 if (memcmp(skb->data, bridge_ula_lec, sizeof(bridge_ula_lec)) == 0)
277 lec_handle_bridge(skb, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278#endif
279
Chas Williamsd44f7742006-09-29 17:11:14 -0700280 /* Make sure we have room for lec_id */
281 if (skb_headroom(skb) < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Chas Williamsd44f7742006-09-29 17:11:14 -0700283 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Chas Williamsd44f7742006-09-29 17:11:14 -0700292 /* 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296#ifdef CONFIG_TR
Chas Williamsd44f7742006-09-29 17:11:14 -0700297 /*
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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308#endif
309
310#if DUMP_PACKETS > 0
Chas Williamsd44f7742006-09-29 17:11:14 -0700311 printk("%s: send datalen:%ld lecid:%4.4x\n", dev->name,
312 skb->len, priv->lecid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313#if DUMP_PACKETS >= 2
Chas Williamsd44f7742006-09-29 17:11:14 -0700314 for (i = 0; i < skb->len && i < 99; i++) {
315 sprintf(buf + i * 3, "%2.2x ", 0xff & skb->data[i]);
316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317#elif DUMP_PACKETS >= 1
Chas Williamsd44f7742006-09-29 17:11:14 -0700318 for (i = 0; i < skb->len && i < 30; i++) {
319 sprintf(buf + i * 3, "%2.2x ", 0xff & skb->data[i]);
320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321#endif /* DUMP_PACKETS >= 1 */
Chas Williamsd44f7742006-09-29 17:11:14 -0700322 if (i == skb->len)
323 printk("%s\n", buf);
324 else
325 printk("%s...\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326#endif /* DUMP_PACKETS > 0 */
327
Chas Williamsd44f7742006-09-29 17:11:14 -0700328 /* Minimum ethernet-frame size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329#ifdef CONFIG_TR
Chas Williamsd44f7742006-09-29 17:11:14 -0700330 if (priv->is_trdev)
331 min_frame_size = LEC_MINIMUM_8025_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 else
333#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700334 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 skb_put(skb, min_frame_size - skb->len);
Chas Williamsd44f7742006-09-29 17:11:14 -0700348 }
349
350 /* Send to right vcc */
351 is_rdesc = 0;
352 dst = lec_h->h_dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353#ifdef CONFIG_TR
Chas Williamsd44f7742006-09-29 17:11:14 -0700354 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700362 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390#endif /* DUMP_PACKETS > 0 */
Chas Williamsd44f7742006-09-29 17:11:14 -0700391
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]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 lec_send(vcc, skb2, priv);
Chas Williamsd44f7742006-09-29 17:11:14 -0700398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
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;
Chas Williamsd44f7742006-09-29 17:11:14 -0700419 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
422/* The inverse routine to net_open(). */
Chas Williamsd44f7742006-09-29 17:11:14 -0700423static int lec_close(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Chas Williamsd44f7742006-09-29 17:11:14 -0700425 netif_stop_queue(dev);
426 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
429/*
430 * Get the current statistics.
431 * This may be called with the card open or closed.
432 */
Chas Williamsd44f7742006-09-29 17:11:14 -0700433static struct net_device_stats *lec_get_stats(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Chas Williamsd44f7742006-09-29 17:11:14 -0700435 return &((struct lec_priv *)dev->priv)->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
Chas Williamsd44f7742006-09-29 17:11:14 -0700438static int lec_atm_send(struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 unsigned long flags;
Chas Williamsd44f7742006-09-29 17:11:14 -0700441 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 atomic_sub(skb->truesize, &sk_atm(vcc)->sk_wmem_alloc);
Chas Williamsd44f7742006-09-29 17:11:14 -0700449 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd44f7742006-09-29 17:11:14 -0700476 entry = lec_arp_find(priv, mesg->content.normal.mac_addr);
477 lec_arp_remove(priv, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
479
Chas Williamsd44f7742006-09-29 17:11:14 -0700480 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 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,
Chas Williamsd44f7742006-09-29 17:11:14 -0700516 mesg->content.config.mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 priv->is_proxy = mesg->content.config.is_proxy;
Chas Williamsd44f7742006-09-29 17:11:14 -0700518 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:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528#if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
Chas Williamsd44f7742006-09-29 17:11:14 -0700529 {
530 struct net_bridge_fdb_entry *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Chas Williamsd44f7742006-09-29 17:11:14 -0700532 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]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Chas Williamsd44f7742006-09-29 17:11:14 -0700541 if (br_fdb_get_hook == NULL || dev->br_port == NULL)
542 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Chas Williamsd44f7742006-09-29 17:11:14 -0700544 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Chas Williamsd44f7742006-09-29 17:11:14 -0700552 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573#endif /* defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE) */
Chas Williamsd44f7742006-09-29 17:11:14 -0700574 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
Chas Williamsd44f7742006-09-29 17:11:14 -0700584static void lec_atm_close(struct atm_vcc *vcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Chas Williamsd44f7742006-09-29 17:11:14 -0700586 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Chas Williamsd44f7742006-09-29 17:11:14 -0700590 priv->lecd = NULL;
591 /* Do something needful? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Chas Williamsd44f7742006-09-29 17:11:14 -0700593 netif_stop_queue(dev);
594 lec_arp_destroy(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Chas Williamsd44f7742006-09-29 17:11:14 -0700596 if (skb_peek(&sk_atm(vcc)->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 printk("%s lec_atm_close: closing with messages pending\n",
Chas Williamsd44f7742006-09-29 17:11:14 -0700598 dev->name);
599 while ((skb = skb_dequeue(&sk_atm(vcc)->sk_receive_queue)) != NULL) {
600 atm_return(vcc, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 dev_kfree_skb(skb);
Chas Williamsd44f7742006-09-29 17:11:14 -0700602 }
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 printk("%s: Shut down!\n", dev->name);
Chas Williamsd44f7742006-09-29 17:11:14 -0700605 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
608static struct atmdev_ops lecdev_ops = {
Chas Williamsd44f7742006-09-29 17:11:14 -0700609 .close = lec_atm_close,
610 .send = lec_atm_send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611};
612
613static struct atm_dev lecatm_dev = {
Chas Williamsd44f7742006-09-29 17:11:14 -0700614 .ops = &lecdev_ops,
615 .type = "lec",
616 .number = 999, /* dummy device number */
617 .lock = SPIN_LOCK_UNLOCKED
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618};
619
620/*
621 * LANE2: new argument struct sk_buff *data contains
622 * the LE_ARP based TLVs introduced in the LANE2 spec
623 */
Chas Williamsd44f7742006-09-29 17:11:14 -0700624static int
625send_to_lecd(struct lec_priv *priv, atmlec_msg_type type,
626 unsigned char *mac_addr, unsigned char *atm_addr,
627 struct sk_buff *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
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;
Chas Williamsd44f7742006-09-29 17:11:14 -0700641 memset(mesg, 0, sizeof(struct atmlec_msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 mesg->type = type;
Chas Williamsd44f7742006-09-29 17:11:14 -0700643 if (data != NULL)
644 mesg->sizeoftlvs = data->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (mac_addr)
646 memcpy(&mesg->content.normal.mac_addr, mac_addr, ETH_ALEN);
Chas Williamsd44f7742006-09-29 17:11:14 -0700647 else
648 mesg->content.normal.targetless_le_arp = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (atm_addr)
650 memcpy(&mesg->content.normal.atm_addr, atm_addr, ATM_ESA_LEN);
651
Chas Williamsd44f7742006-09-29 17:11:14 -0700652 atm_force_charge(priv->lecd, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 sk = sk_atm(priv->lecd);
654 skb_queue_tail(&sk->sk_receive_queue, skb);
Chas Williamsd44f7742006-09-29 17:11:14 -0700655 sk->sk_data_ready(sk, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Chas Williamsd44f7742006-09-29 17:11:14 -0700657 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Chas Williamsd44f7742006-09-29 17:11:14 -0700664 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
667/* shamelessly stolen from drivers/net/net_init.c */
668static int lec_change_mtu(struct net_device *dev, int new_mtu)
669{
Chas Williamsd44f7742006-09-29 17:11:14 -0700670 if ((new_mtu < 68) || (new_mtu > 18190))
671 return -EINVAL;
672 dev->mtu = new_mtu;
673 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
676static void lec_set_multicast_list(struct net_device *dev)
677{
Chas Williamsd44f7742006-09-29 17:11:14 -0700678 /*
679 * by default, all multicast frames arrive over the bus.
680 * eventually support selective multicast service
681 */
682 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
Chas Williamsd44f7742006-09-29 17:11:14 -0700685static void lec_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
Chas Williamsd44f7742006-09-29 17:11:14 -0700687 dev->change_mtu = lec_change_mtu;
688 dev->open = lec_open;
689 dev->stop = lec_close;
690 dev->hard_start_xmit = lec_start_xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 dev->tx_timeout = lec_tx_timeout;
692
Chas Williamsd44f7742006-09-29 17:11:14 -0700693 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
700static unsigned char lec_ctrl_magic[] = {
Chas Williamsd44f7742006-09-29 17:11:14 -0700701 0xff,
702 0x00,
703 0x01,
704 0x01
705};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Scott Talbert4a7097f2005-09-29 17:30:54 -0700707#define LEC_DATA_DIRECT_8023 2
708#define LEC_DATA_DIRECT_8025 3
709
710static int lec_is_data_direct(struct atm_vcc *vcc)
Chas Williamsd44f7742006-09-29 17:11:14 -0700711{
Scott Talbert4a7097f2005-09-29 17:30:54 -0700712 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));
Chas Williamsd44f7742006-09-29 17:11:14 -0700714}
Scott Talbert4a7097f2005-09-29 17:30:54 -0700715
Chas Williamsd44f7742006-09-29 17:11:14 -0700716static void lec_push(struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Scott Talbert4a7097f2005-09-29 17:30:54 -0700718 unsigned long flags;
Chas Williamsd44f7742006-09-29 17:11:14 -0700719 struct net_device *dev = (struct net_device *)vcc->proto_data;
720 struct lec_priv *priv = (struct lec_priv *)dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722#if DUMP_PACKETS >0
Chas Williamsd44f7742006-09-29 17:11:14 -0700723 int i = 0;
724 char buf[300];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Chas Williamsd44f7742006-09-29 17:11:14 -0700726 printk("%s: lec_push vcc vpi:%d vci:%d\n", dev->name,
727 vcc->vpi, vcc->vci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700729 if (!skb) {
730 DPRINTK("%s: null skb\n", dev->name);
731 lec_vcc_close(priv, vcc);
732 return;
733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734#if DUMP_PACKETS > 0
Chas Williamsd44f7742006-09-29 17:11:14 -0700735 printk("%s: rcv datalen:%ld lecid:%4.4x\n", dev->name,
736 skb->len, priv->lecid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737#if DUMP_PACKETS >= 2
Chas Williamsd44f7742006-09-29 17:11:14 -0700738 for (i = 0; i < skb->len && i < 99; i++) {
739 sprintf(buf + i * 3, "%2.2x ", 0xff & skb->data[i]);
740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741#elif DUMP_PACKETS >= 1
Chas Williamsd44f7742006-09-29 17:11:14 -0700742 for (i = 0; i < skb->len && i < 30; i++) {
743 sprintf(buf + i * 3, "%2.2x ", 0xff & skb->data[i]);
744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745#endif /* DUMP_PACKETS >= 1 */
Chas Williamsd44f7742006-09-29 17:11:14 -0700746 if (i == skb->len)
747 printk("%s\n", buf);
748 else
749 printk("%s...\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750#endif /* DUMP_PACKETS > 0 */
Chas Williamsd44f7742006-09-29 17:11:14 -0700751 if (memcmp(skb->data, lec_ctrl_magic, 4) == 0) { /* Control frame, to daemon */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 struct sock *sk = sk_atm(vcc);
753
Chas Williamsd44f7742006-09-29 17:11:14 -0700754 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 */
Scott Talbert4a7097f2005-09-29 17:30:54 -0700758 struct lec_arp_table *entry;
Chas Williamsd44f7742006-09-29 17:11:14 -0700759 unsigned char *src, *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Chas Williamsd44f7742006-09-29 17:11:14 -0700761 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772#ifdef CONFIG_TR
Chas Williamsd44f7742006-09-29 17:11:14 -0700773 if (priv->is_trdev)
774 dst = ((struct lecdatahdr_8025 *)skb->data)->h_dest;
775 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700777 dst = ((struct lecdatahdr_8023 *)skb->data)->h_dest;
Scott Talbert4a7097f2005-09-29 17:30:54 -0700778
Chas Williamsd44f7742006-09-29 17:11:14 -0700779 /*
780 * If this is a Data Direct VCC, and the VCC does not match
Scott Talbert4a7097f2005-09-29 17:30:54 -0700781 * 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)
Chas Williamsd44f7742006-09-29 17:11:14 -0700787 src =
788 ((struct lecdatahdr_8025 *)skb->data)->
789 h_source;
Scott Talbert4a7097f2005-09-29 17:30:54 -0700790 else
791#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700792 src =
793 ((struct lecdatahdr_8023 *)skb->data)->
794 h_source;
Scott Talbert4a7097f2005-09-29 17:30:54 -0700795 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Chas Williamsd44f7742006-09-29 17:11:14 -0700803 if (!(dst[0] & 0x01) && /* Never filter Multi/Broadcast */
804 !priv->is_proxy && /* Proxy wants all the packets */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 memcmp(dst, dev->dev_addr, dev->addr_len)) {
Chas Williamsd44f7742006-09-29 17:11:14 -0700806 dev_kfree_skb(skb);
807 return;
808 }
Chas Williamsd0732f62006-09-29 17:14:27 -0700809 if (!hlist_empty(&priv->lec_arp_empty_ones)) {
Chas Williamsd44f7742006-09-29 17:11:14 -0700810 lec_arp_check_empties(priv, vcc, skb);
811 }
812 skb->dev = dev;
813 skb_pull(skb, 2); /* skip lec_id */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814#ifdef CONFIG_TR
Chas Williamsd44f7742006-09-29 17:11:14 -0700815 if (priv->is_trdev)
816 skb->protocol = tr_type_trans(skb, dev);
817 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700819 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
Chas Williamsd44f7742006-09-29 17:11:14 -0700827static void lec_pop(struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
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
Chas Williamsd44f7742006-09-29 17:11:14 -0700846static int lec_vcc_attach(struct atm_vcc *vcc, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
848 struct lec_vcc_priv *vpriv;
Chas Williamsd44f7742006-09-29 17:11:14 -0700849 int bytes_left;
850 struct atmlec_ioc ioc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Chas Williamsd44f7742006-09-29 17:11:14 -0700852 /* 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 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;
Chas Williamsd44f7742006-09-29 17:11:14 -0700868 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873}
874
Chas Williamsd44f7742006-09-29 17:11:14 -0700875static int lec_mcast_attach(struct atm_vcc *vcc, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
Chas Williamsd44f7742006-09-29 17:11:14 -0700877 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));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882
883/* Initialize device. */
Chas Williamsd44f7742006-09-29 17:11:14 -0700884static int lecd_attach(struct atm_vcc *vcc, int arg)
885{
886 int i;
887 struct lec_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Chas Williamsd44f7742006-09-29 17:11:14 -0700889 if (arg < 0)
890 i = 0;
891 else
892 i = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893#ifdef CONFIG_TR
Chas Williamsd44f7742006-09-29 17:11:14 -0700894 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700900 if (!dev_lec[i]) {
901 int is_trdev, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Chas Williamsd44f7742006-09-29 17:11:14 -0700903 is_trdev = 0;
904 if (i >= (MAX_LEC_ITF - NUM_TR_DEVS))
905 is_trdev = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Chas Williamsd44f7742006-09-29 17:11:14 -0700907 size = sizeof(struct lec_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908#ifdef CONFIG_TR
Chas Williamsd44f7742006-09-29 17:11:14 -0700909 if (is_trdev)
910 dev_lec[i] = alloc_trdev(size);
911 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700913 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Chas Williamsd44f7742006-09-29 17:11:14 -0700922 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));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Chas Williamsd44f7742006-09-29 17:11:14 -0700936 vcc->proto_data = dev_lec[i];
937 set_bit(ATM_VF_META, &vcc->flags);
938 set_bit(ATM_VF_READY, &vcc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Chas Williamsd44f7742006-09-29 17:11:14 -0700940 /* 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957}
958
959#ifdef CONFIG_PROC_FS
Chas Williamsd44f7742006-09-29 17:11:14 -0700960static char *lec_arp_get_status_string(unsigned char status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
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
976static 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
Chas Williamsd44f7742006-09-29 17:11:14 -0700990 seq_printf(seq, " ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 if (entry->recv_vcc) {
992 seq_printf(seq, " %3d %3d", entry->recv_vcc->vpi,
993 entry->recv_vcc->vci);
Chas Williamsd44f7742006-09-29 17:11:14 -0700994 }
995 seq_putc(seq, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998struct lec_state {
999 unsigned long flags;
1000 struct lec_priv *locked;
Chas Williamsd0732f62006-09-29 17:14:27 -07001001 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 struct net_device *dev;
1003 int itf;
1004 int arp_table;
1005 int misc_table;
1006};
1007
Chas Williamsd0732f62006-09-29 17:14:27 -07001008static void *lec_tbl_walk(struct lec_state *state, struct hlist_head *tbl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 loff_t *l)
1010{
Chas Williamsd0732f62006-09-29 17:14:27 -07001011 struct hlist_node *e = state->node;
1012 struct lec_arp_table *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 if (!e)
Chas Williamsd0732f62006-09-29 17:14:27 -07001015 e = tbl->first;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 if (e == (void *)1) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001017 e = tbl->first;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 --*l;
1019 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001020
1021 hlist_for_each_entry_from(tmp, e, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (--*l < 0)
1023 break;
1024 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001025 state->node = e;
1026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 return (*l < 0) ? state : NULL;
1028}
1029
1030static void *lec_arp_walk(struct lec_state *state, loff_t *l,
Chas Williamsd44f7742006-09-29 17:11:14 -07001031 struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
1033 void *v = NULL;
1034 int p;
1035
1036 for (p = state->arp_table; p < LEC_ARP_TABLE_SIZE; p++) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001037 v = lec_tbl_walk(state, &priv->lec_arp_tables[p], l);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 if (v)
1039 break;
1040 }
1041 state->arp_table = p;
1042 return v;
1043}
1044
1045static void *lec_misc_walk(struct lec_state *state, loff_t *l,
1046 struct lec_priv *priv)
1047{
Chas Williamsd0732f62006-09-29 17:14:27 -07001048 struct hlist_head *lec_misc_tables[] = {
1049 &priv->lec_arp_empty_ones,
1050 &priv->lec_no_forward,
1051 &priv->mcast_fwds
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 };
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
1065static 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 }
Chas Williamsd44f7742006-09-29 17:11:14 -07001072 if (!lec_arp_walk(state, l, priv) && !lec_misc_walk(state, l, priv)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 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
1081static 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
1097static 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 }
Chas Williamsd44f7742006-09-29 17:11:14 -07001106 return v;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107}
1108
1109static 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;
Chas Williamsd0732f62006-09-29 17:14:27 -07001118 state->node = (void *)1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Chas Williamsd44f7742006-09-29 17:11:14 -07001120 return *pos ? lec_get_idx(state, *pos) : (void *)1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121}
1122
1123static 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
1134static 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
1143static int lec_seq_show(struct seq_file *seq, void *v)
1144{
Chas Williamsd44f7742006-09-29 17:11:14 -07001145 static char lec_banner[] = "Itf MAC ATM destination"
1146 " Status Flags "
1147 "VPI/VCI Recv VPI/VCI\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149 if (v == (void *)1)
1150 seq_puts(seq, lec_banner);
1151 else {
1152 struct lec_state *state = seq->private;
Chas Williamsd44f7742006-09-29 17:11:14 -07001153 struct net_device *dev = state->dev;
Chas Williamsd0732f62006-09-29 17:14:27 -07001154 struct lec_arp_table *entry = hlist_entry(state->node, struct lec_arp_table, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
1156 seq_printf(seq, "%s ", dev->name);
Chas Williamsd0732f62006-09-29 17:14:27 -07001157 lec_info(seq, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 }
1159 return 0;
1160}
1161
1162static struct seq_operations lec_seq_ops = {
Chas Williamsd44f7742006-09-29 17:11:14 -07001163 .start = lec_seq_start,
1164 .next = lec_seq_next,
1165 .stop = lec_seq_stop,
1166 .show = lec_seq_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167};
1168
1169static 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;
1186out:
1187 return rc;
1188
1189out_kfree:
1190 kfree(state);
1191 goto out;
1192}
1193
1194static int lec_seq_release(struct inode *inode, struct file *file)
1195{
1196 return seq_release_private(inode, file);
1197}
1198
1199static struct file_operations lec_seq_fops = {
Chas Williamsd44f7742006-09-29 17:11:14 -07001200 .owner = THIS_MODULE,
1201 .open = lec_seq_open,
1202 .read = seq_read,
1203 .llseek = seq_lseek,
1204 .release = lec_seq_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205};
1206#endif
1207
1208static 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;
Chas Williamsd44f7742006-09-29 17:11:14 -07001212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 switch (cmd) {
Chas Williamsd44f7742006-09-29 17:11:14 -07001214 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
1223
1224 switch (cmd) {
Chas Williamsd44f7742006-09-29 17:11:14 -07001225 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
1237
1238 return err;
1239}
1240
1241static struct atm_ioctl lane_ioctl_ops = {
Chas Williamsd44f7742006-09-29 17:11:14 -07001242 .owner = THIS_MODULE,
1243 .ioctl = lane_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244};
1245
1246static 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);
Chas Williamsd44f7742006-09-29 17:11:14 -07001257 printk("lec.c: " __DATE__ " " __TIME__ " initialized\n");
1258 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259}
1260
1261static void __exit lane_module_cleanup(void)
1262{
Chas Williamsd44f7742006-09-29 17:11:14 -07001263 int i;
1264 struct lec_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 remove_proc_entry("lec", atm_proc_root);
1267
1268 deregister_atm_ioctl(&lane_ioctl_ops);
1269
Chas Williamsd44f7742006-09-29 17:11:14 -07001270 for (i = 0; i < MAX_LEC_ITF; i++) {
1271 if (dev_lec[i] != NULL) {
1272 priv = (struct lec_priv *)dev_lec[i]->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 unregister_netdev(dev_lec[i]);
Chas Williamsd44f7742006-09-29 17:11:14 -07001274 free_netdev(dev_lec[i]);
1275 dev_lec[i] = NULL;
1276 }
1277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Chas Williamsd44f7742006-09-29 17:11:14 -07001279 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280}
1281
1282module_init(lane_module_init);
1283module_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 */
1292static int lane2_resolve(struct net_device *dev, u8 *dst_mac, int force,
Chas Williamsd44f7742006-09-29 17:11:14 -07001293 u8 **tlvs, u32 *sizeoftlvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
1295 unsigned long flags;
Chas Williamsd44f7742006-09-29 17:11:14 -07001296 struct lec_priv *priv = (struct lec_priv *)dev->priv;
1297 struct lec_arp_table *table;
1298 struct sk_buff *skb;
1299 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Chas Williamsd44f7742006-09-29 17:11:14 -07001301 if (force == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd44f7742006-09-29 17:11:14 -07001303 table = lec_arp_find(priv, dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williamsd44f7742006-09-29 17:11:14 -07001305 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
1318 if (sizeoftlvs == NULL)
1319 retval = send_to_lecd(priv, l_arp_xmt, dst_mac, NULL, NULL);
Chas Williamsd44f7742006-09-29 17:11:14 -07001320
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 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 }
Chas Williamsd44f7742006-09-29 17:11:14 -07001329 return retval;
1330}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
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 */
Chas Williamsd44f7742006-09-29 17:11:14 -07001339static int lane2_associate_req(struct net_device *dev, u8 *lan_dst,
1340 u8 *tlvs, u32 sizeoftlvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
Chas Williamsd44f7742006-09-29 17:11:14 -07001342 int retval;
1343 struct sk_buff *skb;
1344 struct lec_priv *priv = (struct lec_priv *)dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Chas Williamsd44f7742006-09-29 17:11:14 -07001346 if (compare_ether_addr(lan_dst, dev->dev_addr))
1347 return (0); /* not our mac address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Chas Williamsd44f7742006-09-29 17:11:14 -07001349 kfree(priv->tlvs); /* NULL if there was no previous association */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Chas Williamsd44f7742006-09-29 17:11:14 -07001351 priv->tlvs = kmalloc(sizeoftlvs, GFP_KERNEL);
1352 if (priv->tlvs == NULL)
1353 return (0);
1354 priv->sizeoftlvs = sizeoftlvs;
1355 memcpy(priv->tlvs, tlvs, sizeoftlvs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Chas Williamsd44f7742006-09-29 17:11:14 -07001357 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
1371
1372/*
1373 * LANE2: 3.1.5, LE_ASSOCIATE.indication
1374 *
1375 */
Chas Williamsd44f7742006-09-29 17:11:14 -07001376static void lane2_associate_ind(struct net_device *dev, u8 *mac_addr,
1377 u8 *tlvs, u32 sizeoftlvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
1379#if 0
Chas Williamsd44f7742006-09-29 17:11:14 -07001380 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381#endif
1382 struct lec_priv *priv = (struct lec_priv *)dev->priv;
Chas Williamsd44f7742006-09-29 17:11:14 -07001383#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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Chas Williamsd44f7742006-09-29 17:11:14 -07001391 if (entry == NULL)
1392 return; /* should not happen */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Chas Williamsd44f7742006-09-29 17:11:14 -07001394 kfree(entry->tlvs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Chas Williamsd44f7742006-09-29 17:11:14 -07001396 entry->tlvs = kmalloc(sizeoftlvs, GFP_KERNEL);
1397 if (entry->tlvs == NULL)
1398 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Chas Williamsd44f7742006-09-29 17:11:14 -07001400 entry->sizeoftlvs = sizeoftlvs;
1401 memcpy(entry->tlvs, tlvs, sizeoftlvs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402#endif
1403#if 0
Chas Williamsd44f7742006-09-29 17:11:14 -07001404 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");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410#endif
1411
Chas Williamsd44f7742006-09-29 17:11:14 -07001412 /* 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418}
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 */
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435#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
Chas Williams987e46b2006-09-29 17:15:59 -07001445static void lec_arp_check_expire(void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446static 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 */
Chas Williams1fa99612006-09-29 17:11:47 -07001457static void lec_arp_init(struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458{
Chas Williams1fa99612006-09-29 17:11:47 -07001459 unsigned short i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Chas Williams1fa99612006-09-29 17:11:47 -07001461 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001462 INIT_HLIST_HEAD(&priv->lec_arp_tables[i]);
Chas Williams1fa99612006-09-29 17:11:47 -07001463 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001464 INIT_HLIST_HEAD(&priv->lec_arp_empty_ones);
1465 INIT_HLIST_HEAD(&priv->lec_no_forward);
1466 INIT_HLIST_HEAD(&priv->mcast_fwds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 spin_lock_init(&priv->lec_arp_lock);
Chas Williams987e46b2006-09-29 17:15:59 -07001468 INIT_WORK(&priv->lec_arp_work, lec_arp_check_expire, priv);
1469 schedule_delayed_work(&priv->lec_arp_work, LEC_ARP_REFRESH_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470}
1471
Chas Williams1fa99612006-09-29 17:11:47 -07001472static void lec_arp_clear_vccs(struct lec_arp_table *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473{
Chas Williams1fa99612006-09-29 17:11:47 -07001474 if (entry->vcc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 struct atm_vcc *vcc = entry->vcc;
1476 struct lec_vcc_priv *vpriv = LEC_VCC_PRIV(vcc);
Chas Williams1fa99612006-09-29 17:11:47 -07001477 struct net_device *dev = (struct net_device *)vcc->proto_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Chas Williams1fa99612006-09-29 17:11:47 -07001479 vcc->pop = vpriv->old_pop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 if (vpriv->xoff)
1481 netif_wake_queue(dev);
1482 kfree(vpriv);
1483 vcc->user_back = NULL;
Chas Williams1fa99612006-09-29 17:11:47 -07001484 vcc->push = entry->old_push;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 vcc_release_async(vcc, -EPIPE);
Chas Williamsd0732f62006-09-29 17:14:27 -07001486 entry->vcc = NULL;
Chas Williams1fa99612006-09-29 17:11:47 -07001487 }
1488 if (entry->recv_vcc) {
1489 entry->recv_vcc->push = entry->old_recv_push;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 vcc_release_async(entry->recv_vcc, -EPIPE);
Chas Williams1fa99612006-09-29 17:11:47 -07001491 entry->recv_vcc = NULL;
1492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493}
1494
1495/*
1496 * Insert entry to lec_arp_table
1497 * LANE2: Add to the end of the list to satisfy 8.1.13
1498 */
Chas Williams1fa99612006-09-29 17:11:47 -07001499static inline void
Chas Williamsd0732f62006-09-29 17:14:27 -07001500lec_arp_add(struct lec_priv *priv, struct lec_arp_table *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501{
Chas Williamsd0732f62006-09-29 17:14:27 -07001502 struct hlist_head *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Chas Williamsd0732f62006-09-29 17:14:27 -07001504 tmp = &priv->lec_arp_tables[HASH(entry->mac_addr[ETH_ALEN - 1])];
1505 hlist_add_head(&entry->next, tmp);
Chas Williams1fa99612006-09-29 17:11:47 -07001506
1507 DPRINTK("LEC_ARP: Added entry:%2.2x %2.2x %2.2x %2.2x %2.2x %2.2x\n",
Chas Williamsd0732f62006-09-29 17:14:27 -07001508 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]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511}
1512
1513/*
1514 * Remove entry from lec_arp_table
1515 */
Chas Williams1fa99612006-09-29 17:11:47 -07001516static int
1517lec_arp_remove(struct lec_priv *priv, struct lec_arp_table *to_remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
Chas Williamsd0732f62006-09-29 17:14:27 -07001519 struct hlist_node *node;
1520 struct lec_arp_table *entry;
1521 int i, remove_vcc = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Chas Williams1fa99612006-09-29 17:11:47 -07001523 if (!to_remove) {
1524 return -1;
1525 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001526
1527 hlist_del(&to_remove->next);
Chas Williams1fa99612006-09-29 17:11:47 -07001528 del_timer(&to_remove->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Chas Williamsd0732f62006-09-29 17:14:27 -07001530 /* If this is the only MAC connected to this VCC, also tear down the VCC */
Chas Williams1fa99612006-09-29 17:11:47 -07001531 if (to_remove->status >= ESI_FLUSH_PENDING) {
1532 /*
1533 * ESI_FLUSH_PENDING, ESI_FORWARD_DIRECT
1534 */
Chas Williamsd0732f62006-09-29 17:14:27 -07001535 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) {
Chas Williams1fa99612006-09-29 17:11:47 -07001539 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554}
1555
1556#if DEBUG_ARP_TABLE
Chas Williams1fa99612006-09-29 17:11:47 -07001557static char *get_status_string(unsigned char st)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
Chas Williams1fa99612006-09-29 17:11:47 -07001559 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Chas Williams1fa99612006-09-29 17:11:47 -07001575static void dump_arp_table(struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
Chas Williamsd0732f62006-09-29 17:14:27 -07001577 struct hlist_node *node;
Chas Williams1fa99612006-09-29 17:11:47 -07001578 struct lec_arp_table *rulla;
Chas Williamsd0732f62006-09-29 17:14:27 -07001579 char buf[256];
1580 int i, j, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Chas Williams1fa99612006-09-29 17:11:47 -07001582 printk("Dump %p:\n", priv);
1583 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001584 hlist_for_each_entry(rulla, node, &priv->lec_arp_tables[i], next) {
1585 offset = 0;
1586 offset += sprintf(buf, "%d: %p\n", i, rulla);
Chas Williams1fa99612006-09-29 17:11:47 -07001587 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));
Chas Williamsd0732f62006-09-29 17:14:27 -07001613 printk("%s\n", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001614 }
Chas Williams1fa99612006-09-29 17:11:47 -07001615 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001616
1617 if (!hlist_empty(&priv->lec_no_forward))
Chas Williams1fa99612006-09-29 17:11:47 -07001618 printk("No forward\n");
Chas Williamsd0732f62006-09-29 17:14:27 -07001619 hlist_for_each_entry(rulla, node, &priv->lec_no_forward, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001620 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));
Chas Williamsd0732f62006-09-29 17:14:27 -07001643 printk("%s\n", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001644 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001645
1646 if (!hlist_empty(&priv->lec_arp_empty_ones))
Chas Williams1fa99612006-09-29 17:11:47 -07001647 printk("Empty ones\n");
Chas Williamsd0732f62006-09-29 17:14:27 -07001648 hlist_for_each_entry(rulla, node, &priv->lec_arp_empty_ones, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001649 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));
Chas Williams1fa99612006-09-29 17:11:47 -07001672 printk("%s", buf);
1673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Chas Williamsd0732f62006-09-29 17:14:27 -07001675 if (!hlist_empty(&priv->mcast_fwds))
Chas Williams1fa99612006-09-29 17:11:47 -07001676 printk("Multicast Forward VCCs\n");
Chas Williamsd0732f62006-09-29 17:14:27 -07001677 hlist_for_each_entry(rulla, node, &priv->mcast_fwds, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001678 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));
Chas Williamsd0732f62006-09-29 17:14:27 -07001701 printk("%s\n", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704}
Chas Williamsd0732f62006-09-29 17:14:27 -07001705#else
1706#define dump_arp_table(priv) do { } while (0)
1707#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
1709/*
1710 * Destruction of arp-cache
1711 */
Chas Williams1fa99612006-09-29 17:11:47 -07001712static void lec_arp_destroy(struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
1714 unsigned long flags;
Chas Williamsd0732f62006-09-29 17:14:27 -07001715 struct hlist_node *node, *next;
1716 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001717 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Chas Williams987e46b2006-09-29 17:15:59 -07001719 cancel_rearming_delayed_work(&priv->lec_arp_work);
Chas Williams1fa99612006-09-29 17:11:47 -07001720
1721 /*
1722 * Remove all entries
1723 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
1725 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001726 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001727 hlist_for_each_entry_safe(entry, node, next, &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001728 lec_arp_remove(priv, entry);
1729 kfree(entry);
1730 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001731 INIT_HLIST_HEAD(&priv->lec_arp_tables[i]);
Chas Williams1fa99612006-09-29 17:11:47 -07001732 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001733
1734 hlist_for_each_entry_safe(entry, node, next, &priv->lec_arp_empty_ones, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001735 del_timer_sync(&entry->timer);
1736 lec_arp_clear_vccs(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001737 hlist_del(&entry->next);
Chas Williams1fa99612006-09-29 17:11:47 -07001738 kfree(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001739 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001740 INIT_HLIST_HEAD(&priv->lec_arp_empty_ones);
1741
1742 hlist_for_each_entry_safe(entry, node, next, &priv->lec_no_forward, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001743 del_timer_sync(&entry->timer);
1744 lec_arp_clear_vccs(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001745 hlist_del(&entry->next);
Chas Williams1fa99612006-09-29 17:11:47 -07001746 kfree(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001747 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001748 INIT_HLIST_HEAD(&priv->lec_no_forward);
1749
1750 hlist_for_each_entry_safe(entry, node, next, &priv->mcast_fwds, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001751 /* No timer, LANEv2 7.1.20 and 2.3.5.3 */
1752 lec_arp_clear_vccs(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001753 hlist_del(&entry->next);
Chas Williams1fa99612006-09-29 17:11:47 -07001754 kfree(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001755 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001756 INIT_HLIST_HEAD(&priv->mcast_fwds);
Chas Williams1fa99612006-09-29 17:11:47 -07001757 priv->mcast_vcc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1759}
1760
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761/*
1762 * Find entry by mac_address
1763 */
Chas Williams1fa99612006-09-29 17:11:47 -07001764static struct lec_arp_table *lec_arp_find(struct lec_priv *priv,
1765 unsigned char *mac_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
Chas Williamsd0732f62006-09-29 17:14:27 -07001767 struct hlist_node *node;
1768 struct hlist_head *head;
1769 struct lec_arp_table *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Chas Williams1fa99612006-09-29 17:11:47 -07001771 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);
Chas Williams1fa99612006-09-29 17:11:47 -07001774
Chas Williamsd0732f62006-09-29 17:14:27 -07001775 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;
Chas Williams1fa99612006-09-29 17:11:47 -07001779 }
Chas Williams1fa99612006-09-29 17:11:47 -07001780 }
1781 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782}
1783
Chas Williams1fa99612006-09-29 17:11:47 -07001784static struct lec_arp_table *make_entry(struct lec_priv *priv,
1785 unsigned char *mac_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786{
Chas Williams1fa99612006-09-29 17:11:47 -07001787 struct lec_arp_table *to_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Chas Williams1fa99612006-09-29 17:11:47 -07001789 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);
Chas Williamsd0732f62006-09-29 17:14:27 -07001795 INIT_HLIST_NODE(&to_return->next);
Chas Williams1fa99612006-09-29 17:11:47 -07001796 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803}
1804
Chas Williams1fa99612006-09-29 17:11:47 -07001805/* Arp sent timer expired */
1806static void lec_arp_expire_arp(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807{
Chas Williams1fa99612006-09-29 17:11:47 -07001808 struct lec_arp_table *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Chas Williams1fa99612006-09-29 17:11:47 -07001810 entry = (struct lec_arp_table *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Chas Williams1fa99612006-09-29 17:11:47 -07001812 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825}
1826
Chas Williams1fa99612006-09-29 17:11:47 -07001827/* Unknown/unused vcc expire, remove associated entry */
1828static void lec_arp_expire_vcc(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
1830 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07001831 struct lec_arp_table *to_remove = (struct lec_arp_table *)data;
1832 struct lec_priv *priv = (struct lec_priv *)to_remove->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Chas Williams1fa99612006-09-29 17:11:47 -07001834 del_timer(&to_remove->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
Chas Williams1fa99612006-09-29 17:11:47 -07001836 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
1841 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd0732f62006-09-29 17:14:27 -07001842 hlist_del(&to_remove->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1844
Chas Williams1fa99612006-09-29 17:11:47 -07001845 lec_arp_clear_vccs(to_remove);
1846 kfree(to_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847}
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 */
Chas Williams987e46b2006-09-29 17:15:59 -07001865static void lec_arp_check_expire(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866{
1867 unsigned long flags;
Chas Williams987e46b2006-09-29 17:15:59 -07001868 struct lec_priv *priv = data;
Chas Williamsd0732f62006-09-29 17:14:27 -07001869 struct hlist_node *node, *next;
1870 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001871 unsigned long now;
1872 unsigned long time_to_check;
1873 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Chas Williams1fa99612006-09-29 17:11:47 -07001875 DPRINTK("lec_arp_check_expire %p\n", priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 now = jiffies;
1877 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001878 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001879 hlist_for_each_entry_safe(entry, node, next, &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001880 if ((entry->flags) & LEC_REMOTE_FLAG &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 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",
Chas Williams1fa99612006-09-29 17:11:47 -07001887 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 /* Remove entry */
1892 DPRINTK("LEC:Entry timed out\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 lec_arp_remove(priv, entry);
1894 kfree(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 } else {
1896 /* Something else */
1897 if ((entry->status == ESI_VC_PENDING ||
Chas Williams1fa99612006-09-29 17:11:47 -07001898 entry->status == ESI_ARP_PENDING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 && time_after_eq(now,
Chas Williams1fa99612006-09-29 17:11:47 -07001900 entry->timestamp +
1901 priv->
1902 max_unknown_frame_time)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 entry->timestamp = jiffies;
1904 entry->packets_flooded = 0;
1905 if (entry->status == ESI_VC_PENDING)
Chas Williams1fa99612006-09-29 17:11:47 -07001906 send_to_lecd(priv, l_svc_setup,
1907 entry->mac_addr,
1908 entry->atm_addr,
1909 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 }
Chas Williams1fa99612006-09-29 17:11:47 -07001911 if (entry->status == ESI_FLUSH_PENDING
1912 &&
1913 time_after_eq(now, entry->timestamp +
1914 priv->path_switching_delay)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 struct sk_buff *skb;
1916
Chas Williams1fa99612006-09-29 17:11:47 -07001917 while ((skb =
1918 skb_dequeue(&entry->tx_wait)) !=
1919 NULL)
1920 lec_send(entry->vcc, skb,
1921 entry->priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 entry->last_used = jiffies;
Chas Williams1fa99612006-09-29 17:11:47 -07001923 entry->status = ESI_FORWARD_DIRECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 }
1926 }
1927 }
1928 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1929
Chas Williams987e46b2006-09-29 17:15:59 -07001930 schedule_delayed_work(&priv->lec_arp_work, LEC_ARP_REFRESH_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931}
Chas Williams1fa99612006-09-29 17:11:47 -07001932
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933/*
1934 * Try to find vcc where mac_address is attached.
1935 *
1936 */
Chas Williams1fa99612006-09-29 17:11:47 -07001937static 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940{
1941 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07001942 struct lec_arp_table *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 struct atm_vcc *found;
1944
Chas Williams1fa99612006-09-29 17:11:47 -07001945 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
1959 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001960 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001969 }
1970 /*
1971 * If the LE_ARP cache entry is still pending, reset count to 0
Scott Talbert75b895c2005-09-29 17:31:30 -07001972 * 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 }
Chas Williams1fa99612006-09-29 17:11:47 -07001977 /*
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001990 }
1991 /*
1992 * We got here because entry->status == ESI_FLUSH_PENDING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 * or BUS flood limit was reached for an entry which is
1994 * in ESI_ARP_PENDING or ESI_VC_PENDING state.
1995 */
Chas Williams1fa99612006-09-29 17:11:47 -07001996 *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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002007 }
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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
2026out:
2027 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2028 return found;
2029}
2030
2031static int
Chas Williams1fa99612006-09-29 17:11:47 -07002032lec_addr_delete(struct lec_priv *priv, unsigned char *atm_addr,
2033 unsigned long permanent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034{
2035 unsigned long flags;
Chas Williamsd0732f62006-09-29 17:14:27 -07002036 struct hlist_node *node, *next;
2037 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07002038 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Chas Williams1fa99612006-09-29 17:11:47 -07002040 DPRINTK("lec_addr_delete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002042 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002043 hlist_for_each_entry_safe(entry, node, next, &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002044 if (!memcmp(atm_addr, entry->atm_addr, ATM_ESA_LEN)
2045 && (permanent ||
2046 !(entry->flags & LEC_PERMANENT_FLAG))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 lec_arp_remove(priv, entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002048 kfree(entry);
2049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002051 return 0;
2052 }
2053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002055 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056}
2057
2058/*
2059 * Notifies: Response to arp_request (atm_addr != NULL)
2060 */
2061static void
2062lec_arp_update(struct lec_priv *priv, unsigned char *mac_addr,
Chas Williams1fa99612006-09-29 17:11:47 -07002063 unsigned char *atm_addr, unsigned long remoteflag,
2064 unsigned int targetless_le_arp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065{
2066 unsigned long flags;
Chas Williamsd0732f62006-09-29 17:14:27 -07002067 struct hlist_node *node, *next;
Chas Williams1fa99612006-09-29 17:11:47 -07002068 struct lec_arp_table *entry, *tmp;
2069 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Chas Williams1fa99612006-09-29 17:11:47 -07002071 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]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
2076 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002077 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 */
Chas Williamsd0732f62006-09-29 17:14:27 -07002083 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);
Chas Williams1fa99612006-09-29 17:11:47 -07002087 del_timer(&entry->timer);
Chas Williamsd0732f62006-09-29 17:14:27 -07002088 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;
Chas Williams1fa99612006-09-29 17:11:47 -07002112 }
Chas Williams1fa99612006-09-29 17:11:47 -07002113 }
2114 }
Chas Williamsd0732f62006-09-29 17:14:27 -07002115
Chas Williams1fa99612006-09-29 17:11:47 -07002116 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++) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002128 hlist_for_each_entry(tmp, node, &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002129 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;
Chas Williamsd0732f62006-09-29 17:14:27 -07002151 send_to_lecd(priv, l_svc_setup, entry->mac_addr, atm_addr, NULL);
Chas Williams1fa99612006-09-29 17:11:47 -07002152 }
2153 DPRINTK("After update2\n");
2154 dump_arp_table(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155out:
2156 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2157}
2158
2159/*
2160 * Notifies: Vcc setup ready
2161 */
2162static void
2163lec_vcc_added(struct lec_priv *priv, struct atmlec_ioc *ioc_data,
Chas Williams1fa99612006-09-29 17:11:47 -07002164 struct atm_vcc *vcc,
2165 void (*old_push) (struct atm_vcc *vcc, struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166{
2167 unsigned long flags;
Chas Williamsd0732f62006-09-29 17:14:27 -07002168 struct hlist_node *node;
Chas Williams1fa99612006-09-29 17:11:47 -07002169 struct lec_arp_table *entry;
2170 int i, found_entry = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
2172 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002173 if (ioc_data->receive == 2) {
2174 /* Vcc for Multicast Forward. No timer, LANEv2 7.1.20 and 2.3.5.3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Chas Williams1fa99612006-09-29 17:11:47 -07002176 DPRINTK("LEC_ARP: Attaching mcast forward\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177#if 0
Chas Williams1fa99612006-09-29 17:11:47 -07002178 entry = lec_arp_find(priv, bus_mac);
2179 if (!entry) {
2180 printk("LEC_ARP: Multicast entry not found!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002182 }
2183 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
2184 entry->recv_vcc = vcc;
2185 entry->old_recv_push = old_push;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186#endif
Chas Williams1fa99612006-09-29 17:11:47 -07002187 entry = make_entry(priv, bus_mac);
2188 if (entry == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002190 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;
Chas Williamsd0732f62006-09-29 17:14:27 -07002194 hlist_add_head(&entry->next, &priv->mcast_fwds);
Chas Williams1fa99612006-09-29 17:11:47 -07002195 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002217 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;
Chas Williamsd0732f62006-09-29 17:14:27 -07002224 hlist_add_head(&entry->next, &priv->lec_no_forward);
Chas Williams1fa99612006-09-29 17:11:47 -07002225 add_timer(&entry->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 dump_arp_table(priv);
2227 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002228 }
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++) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002243 hlist_for_each_entry(entry, node, &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002244 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265#if 0
Chas Williams1fa99612006-09-29 17:11:47 -07002266 send_to_lecd(priv, l_flush_xmt,
2267 NULL,
2268 entry->atm_addr,
2269 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270#endif
Chas Williams1fa99612006-09-29 17:11:47 -07002271 }
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002293 }
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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002301 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;
Chas Williamsd0732f62006-09-29 17:14:27 -07002306 hlist_add_head(&entry->next, &priv->lec_arp_empty_ones);
Chas Williams1fa99612006-09-29 17:11:47 -07002307 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");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 dump_arp_table(priv);
2312out:
2313 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2314}
2315
Chas Williams1fa99612006-09-29 17:11:47 -07002316static void lec_flush_complete(struct lec_priv *priv, unsigned long tran_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317{
2318 unsigned long flags;
Chas Williamsd0732f62006-09-29 17:14:27 -07002319 struct hlist_node *node;
Chas Williams1fa99612006-09-29 17:11:47 -07002320 struct lec_arp_table *entry;
2321 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
Chas Williams1fa99612006-09-29 17:11:47 -07002323 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++) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002326 hlist_for_each_entry(entry, node, &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002327 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 lec_send(entry->vcc, skb, entry->priv);
Chas Williams1fa99612006-09-29 17:11:47 -07002334 entry->status = ESI_FORWARD_DIRECT;
2335 DPRINTK("LEC_ARP: Flushed\n");
2336 }
2337 }
2338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002340 dump_arp_table(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341}
2342
2343static void
2344lec_set_flush_tran_id(struct lec_priv *priv,
Chas Williams1fa99612006-09-29 17:11:47 -07002345 unsigned char *atm_addr, unsigned long tran_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346{
2347 unsigned long flags;
Chas Williamsd0732f62006-09-29 17:14:27 -07002348 struct hlist_node *node;
Chas Williams1fa99612006-09-29 17:11:47 -07002349 struct lec_arp_table *entry;
2350 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
2352 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002353 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++)
Chas Williamsd0732f62006-09-29 17:14:27 -07002354 hlist_for_each_entry(entry, node, &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002355 if (!memcmp(atm_addr, entry->atm_addr, ATM_ESA_LEN)) {
2356 entry->flush_tran_id = tran_id;
Chas Williamsd0732f62006-09-29 17:14:27 -07002357 DPRINTK("Set flush transaction id to %lx for %p\n",
2358 tran_id, entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002359 }
Chas Williamsd0732f62006-09-29 17:14:27 -07002360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2362}
2363
Chas Williams1fa99612006-09-29 17:11:47 -07002364static int lec_mcast_make(struct lec_priv *priv, struct atm_vcc *vcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365{
2366 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07002367 unsigned char mac_addr[] = {
2368 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
2369 };
2370 struct lec_arp_table *to_add;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 struct lec_vcc_priv *vpriv;
2372 int err = 0;
Chas Williams1fa99612006-09-29 17:11:47 -07002373
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 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;
Chas Williams1fa99612006-09-29 17:11:47 -07002379 vcc->pop = lec_pop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002381 to_add = make_entry(priv, mac_addr);
2382 if (!to_add) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 vcc->pop = vpriv->old_pop;
2384 kfree(vpriv);
Chas Williams1fa99612006-09-29 17:11:47 -07002385 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002387 }
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396out:
2397 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002398 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399}
2400
Chas Williams1fa99612006-09-29 17:11:47 -07002401static void lec_vcc_close(struct lec_priv *priv, struct atm_vcc *vcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402{
2403 unsigned long flags;
Chas Williamsd0732f62006-09-29 17:14:27 -07002404 struct hlist_node *node, *next;
2405 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07002406 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
Chas Williams1fa99612006-09-29 17:11:47 -07002408 DPRINTK("LEC_ARP: lec_vcc_close vpi:%d vci:%d\n", vcc->vpi, vcc->vci);
2409 dump_arp_table(priv);
Chas Williamsd0732f62006-09-29 17:14:27 -07002410
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd0732f62006-09-29 17:14:27 -07002412
Chas Williams1fa99612006-09-29 17:11:47 -07002413 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002414 hlist_for_each_entry_safe(entry, node, next, &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002415 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
Chas Williamsd0732f62006-09-29 17:14:27 -07002425 hlist_for_each_entry_safe(entry, node, next, &priv->lec_arp_empty_ones, next) {
2426 if (entry->vcc == vcc) {
Chas Williams1fa99612006-09-29 17:11:47 -07002427 lec_arp_clear_vccs(entry);
2428 del_timer(&entry->timer);
Chas Williamsd0732f62006-09-29 17:14:27 -07002429 hlist_del(&entry->next);
Chas Williams1fa99612006-09-29 17:11:47 -07002430 kfree(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002431 }
Chas Williams1fa99612006-09-29 17:11:47 -07002432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
Chas Williamsd0732f62006-09-29 17:14:27 -07002434 hlist_for_each_entry_safe(entry, node, next, &priv->lec_no_forward, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002435 if (entry->recv_vcc == vcc) {
2436 lec_arp_clear_vccs(entry);
2437 del_timer(&entry->timer);
Chas Williamsd0732f62006-09-29 17:14:27 -07002438 hlist_del(&entry->next);
Chas Williams1fa99612006-09-29 17:11:47 -07002439 kfree(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002440 }
Chas Williams1fa99612006-09-29 17:11:47 -07002441 }
2442
Chas Williamsd0732f62006-09-29 17:14:27 -07002443 hlist_for_each_entry_safe(entry, node, next, &priv->mcast_fwds, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002444 if (entry->recv_vcc == vcc) {
2445 lec_arp_clear_vccs(entry);
2446 /* No timer, LANEv2 7.1.20 and 2.3.5.3 */
Chas Williamsd0732f62006-09-29 17:14:27 -07002447 hlist_del(&entry->next);
Chas Williams1fa99612006-09-29 17:11:47 -07002448 kfree(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002449 }
Chas Williams1fa99612006-09-29 17:11:47 -07002450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
2452 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2453 dump_arp_table(priv);
2454}
2455
2456static void
2457lec_arp_check_empties(struct lec_priv *priv,
Chas Williams1fa99612006-09-29 17:11:47 -07002458 struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459{
Chas Williams1fa99612006-09-29 17:11:47 -07002460 unsigned long flags;
Chas Williamsd0732f62006-09-29 17:14:27 -07002461 struct hlist_node *node, *next;
2462 struct lec_arp_table *entry, *tmp;
Chas Williams1fa99612006-09-29 17:11:47 -07002463 struct lecdatahdr_8023 *hdr = (struct lecdatahdr_8023 *)skb->data;
2464 unsigned char *src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465#ifdef CONFIG_TR
Chas Williams1fa99612006-09-29 17:11:47 -07002466 struct lecdatahdr_8025 *tr_hdr = (struct lecdatahdr_8025 *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
Chas Williams1fa99612006-09-29 17:11:47 -07002468 if (priv->is_trdev)
2469 src = tr_hdr->h_source;
2470 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471#endif
Chas Williams1fa99612006-09-29 17:11:47 -07002472 src = hdr->h_source;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473
2474 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd0732f62006-09-29 17:14:27 -07002475 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;
Chas Williams1fa99612006-09-29 17:11:47 -07002489 }
Chas Williams1fa99612006-09-29 17:11:47 -07002490 }
Chas Williamsd0732f62006-09-29 17:14:27 -07002491 DPRINTK("LEC_ARP: Arp_check_empties: entry not found!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492out:
2493 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2494}
Chas Williams1fa99612006-09-29 17:11:47 -07002495
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496MODULE_LICENSE("GPL");