blob: d98bde1a0ac8ffafb95ef961382a51e2d2c179cb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09002 * 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
Joe Perches99824462010-01-26 11:40:00 +00007#define pr_fmt(fmt) KBUILD_MODNAME ":%s: " fmt, __func__
8
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/kernel.h>
11#include <linux/bitops.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080012#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14/* We are ethernet device */
15#include <linux/if_ether.h>
16#include <linux/netdevice.h>
17#include <linux/etherdevice.h>
18#include <net/sock.h>
19#include <linux/skbuff.h>
20#include <linux/ip.h>
21#include <asm/byteorder.h>
Joe Perchesc48192a2010-01-26 11:40:08 +000022#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <net/arp.h>
24#include <net/dst.h>
25#include <linux/proc_fs.h>
26#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/seq_file.h>
28
29/* TokenRing if needed */
30#ifdef CONFIG_TR
31#include <linux/trdevice.h>
32#endif
33
34/* And atm device */
35#include <linux/atmdev.h>
36#include <linux/atmlec.h>
37
38/* Proxy LEC knows about bridging */
39#if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "../bridge/br_private.h"
41
Chas Williamsd44f7742006-09-29 17:11:14 -070042static unsigned char bridge_ula_lec[] = { 0x01, 0x80, 0xc2, 0x00, 0x00 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#endif
44
45/* Modular too */
46#include <linux/module.h>
47#include <linux/init.h>
48
49#include "lec.h"
50#include "lec_arpc.h"
51#include "resources.h"
52
Chas Williamsd44f7742006-09-29 17:11:14 -070053#define DUMP_PACKETS 0 /*
54 * 0 = None,
55 * 1 = 30 first bytes
56 * 2 = Whole packet
57 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Chas Williamsd44f7742006-09-29 17:11:14 -070059#define LEC_UNRES_QUE_LEN 8 /*
60 * number of tx packets to queue for a
61 * single destination while waiting for SVC
62 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64static int lec_open(struct net_device *dev);
Stephen Hemminger3c805a22009-08-31 19:50:42 +000065static netdev_tx_t lec_start_xmit(struct sk_buff *skb,
66 struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static int lec_close(struct net_device *dev);
Chas Williamsd44f7742006-09-29 17:11:14 -070068static struct lec_arp_table *lec_arp_find(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -070069 const unsigned char *mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070static int lec_arp_remove(struct lec_priv *priv,
Chas Williamsd44f7742006-09-29 17:11:14 -070071 struct lec_arp_table *to_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/* LANE2 functions */
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -070073static void lane2_associate_ind(struct net_device *dev, const u8 *mac_address,
74 const u8 *tlvs, u32 sizeoftlvs);
75static int lane2_resolve(struct net_device *dev, const u8 *dst_mac, int force,
Chas Williamsd44f7742006-09-29 17:11:14 -070076 u8 **tlvs, u32 *sizeoftlvs);
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -070077static int lane2_associate_req(struct net_device *dev, const u8 *lan_dst,
78 const u8 *tlvs, u32 sizeoftlvs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -070080static int lec_addr_delete(struct lec_priv *priv, const unsigned char *atm_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 unsigned long permanent);
82static void lec_arp_check_empties(struct lec_priv *priv,
83 struct atm_vcc *vcc, struct sk_buff *skb);
84static void lec_arp_destroy(struct lec_priv *priv);
85static void lec_arp_init(struct lec_priv *priv);
Chas Williamsd44f7742006-09-29 17:11:14 -070086static struct atm_vcc *lec_arp_resolve(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -070087 const unsigned char *mac_to_find,
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 int is_rdesc,
89 struct lec_arp_table **ret_entry);
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -070090static void lec_arp_update(struct lec_priv *priv, const unsigned char *mac_addr,
Joe Perchesc48192a2010-01-26 11:40:08 +000091 const unsigned char *atm_addr,
92 unsigned long remoteflag,
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 unsigned int targetless_le_arp);
94static void lec_flush_complete(struct lec_priv *priv, unsigned long tran_id);
95static int lec_mcast_make(struct lec_priv *priv, struct atm_vcc *vcc);
96static void lec_set_flush_tran_id(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -070097 const unsigned char *atm_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 unsigned long tran_id);
Joe Perchesc48192a2010-01-26 11:40:08 +000099static void lec_vcc_added(struct lec_priv *priv,
100 const struct atmlec_ioc *ioc_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 struct atm_vcc *vcc,
Joe Perchesc48192a2010-01-26 11:40:08 +0000102 void (*old_push)(struct atm_vcc *vcc,
103 struct sk_buff *skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static void lec_vcc_close(struct lec_priv *priv, struct atm_vcc *vcc);
105
Chas Williams33a9c2d2006-09-29 17:16:48 -0700106/* must be done under lec_arp_lock */
107static inline void lec_arp_hold(struct lec_arp_table *entry)
108{
109 atomic_inc(&entry->usage);
110}
111
112static inline void lec_arp_put(struct lec_arp_table *entry)
113{
114 if (atomic_dec_and_test(&entry->usage))
115 kfree(entry);
116}
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118static struct lane2_ops lane2_ops = {
Chas Williamsd44f7742006-09-29 17:11:14 -0700119 lane2_resolve, /* resolve, spec 3.1.3 */
120 lane2_associate_req, /* associate_req, spec 3.1.4 */
121 NULL /* associate indicator, spec 3.1.5 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122};
123
Chas Williamsd44f7742006-09-29 17:11:14 -0700124static unsigned char bus_mac[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126/* Device structures */
127static struct net_device *dev_lec[MAX_LEC_ITF];
128
129#if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
130static void lec_handle_bridge(struct sk_buff *skb, struct net_device *dev)
131{
Chas Williamsd44f7742006-09-29 17:11:14 -0700132 struct ethhdr *eth;
133 char *buff;
134 struct lec_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Chas Williamsd44f7742006-09-29 17:11:14 -0700136 /*
137 * Check if this is a BPDU. If so, ask zeppelin to send
138 * LE_TOPOLOGY_REQUEST with the same value of Topology Change bit
139 * as the Config BPDU has
140 */
141 eth = (struct ethhdr *)skb->data;
142 buff = skb->data + skb->dev->hard_header_len;
143 if (*buff++ == 0x42 && *buff++ == 0x42 && *buff++ == 0x03) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 struct sock *sk;
Chas Williamsd44f7742006-09-29 17:11:14 -0700145 struct sk_buff *skb2;
146 struct atmlec_msg *mesg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Chas Williamsd44f7742006-09-29 17:11:14 -0700148 skb2 = alloc_skb(sizeof(struct atmlec_msg), GFP_ATOMIC);
149 if (skb2 == NULL)
150 return;
151 skb2->len = sizeof(struct atmlec_msg);
152 mesg = (struct atmlec_msg *)skb2->data;
153 mesg->type = l_topology_change;
154 buff += 4;
Joe Perchesc48192a2010-01-26 11:40:08 +0000155 mesg->content.normal.flag = *buff & 0x01;
156 /* 0x01 is topology change */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Wang Chen524ad0a2008-11-12 23:39:10 -0800158 priv = netdev_priv(dev);
Chas Williamsd44f7742006-09-29 17:11:14 -0700159 atm_force_charge(priv->lecd, skb2->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 sk = sk_atm(priv->lecd);
Chas Williamsd44f7742006-09-29 17:11:14 -0700161 skb_queue_tail(&sk->sk_receive_queue, skb2);
162 sk->sk_data_ready(sk, skb2->len);
163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165#endif /* defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE) */
166
167/*
168 * Modelled after tr_type_trans
169 * All multicast and ARE or STE frames go to BUS.
170 * Non source routed frames go by destination address.
171 * Last hop source routed frames go by destination address.
172 * Not last hop source routed frames go by _next_ route descriptor.
173 * Returns pointer to destination MAC address or fills in rdesc
174 * and returns NULL.
175 */
176#ifdef CONFIG_TR
177static unsigned char *get_tr_dst(unsigned char *packet, unsigned char *rdesc)
178{
Chas Williamsd44f7742006-09-29 17:11:14 -0700179 struct trh_hdr *trh;
Eric Dumazet5c17d5f2008-01-15 03:29:50 -0800180 unsigned int riflen, num_rdsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Chas Williamsd44f7742006-09-29 17:11:14 -0700182 trh = (struct trh_hdr *)packet;
183 if (trh->daddr[0] & (uint8_t) 0x80)
184 return bus_mac; /* multicast */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Chas Williamsd44f7742006-09-29 17:11:14 -0700186 if (trh->saddr[0] & TR_RII) {
187 riflen = (ntohs(trh->rcf) & TR_RCF_LEN_MASK) >> 8;
188 if ((ntohs(trh->rcf) >> 13) != 0)
189 return bus_mac; /* ARE or STE */
190 } else
191 return trh->daddr; /* not source routed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Chas Williamsd44f7742006-09-29 17:11:14 -0700193 if (riflen < 6)
194 return trh->daddr; /* last hop, source routed */
195
196 /* riflen is 6 or more, packet has more than one route descriptor */
197 num_rdsc = (riflen / 2) - 1;
198 memset(rdesc, 0, ETH_ALEN);
199 /* offset 4 comes from LAN destination field in LE control frames */
200 if (trh->rcf & htons((uint16_t) TR_RCF_DIR_BIT))
Al Viro30d492d2006-11-14 21:11:29 -0800201 memcpy(&rdesc[4], &trh->rseg[num_rdsc - 2], sizeof(__be16));
Chas Williamsd44f7742006-09-29 17:11:14 -0700202 else {
Al Viro30d492d2006-11-14 21:11:29 -0800203 memcpy(&rdesc[4], &trh->rseg[1], sizeof(__be16));
Chas Williamsd44f7742006-09-29 17:11:14 -0700204 rdesc[5] = ((ntohs(trh->rseg[0]) & 0x000f) | (rdesc[5] & 0xf0));
205 }
206
207 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209#endif /* CONFIG_TR */
210
211/*
212 * Open/initialize the netdevice. This is called (in the current kernel)
213 * sometime after booting when the 'ifconfig' program is run.
214 *
215 * This routine should set everything up anew at each open, even
216 * registers that "should" only need to be set once at boot, so that
217 * there is non-reboot way to recover if something goes wrong.
218 */
219
Chas Williamsd44f7742006-09-29 17:11:14 -0700220static int lec_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 netif_start_queue(dev);
Stephen Hemminger162619e2009-01-09 13:01:01 +0000223 memset(&dev->stats, 0, sizeof(struct net_device_stats));
Chas Williamsd44f7742006-09-29 17:11:14 -0700224
225 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
Stephen Hemminger162619e2009-01-09 13:01:01 +0000228static void
229lec_send(struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Stephen Hemminger162619e2009-01-09 13:01:01 +0000231 struct net_device *dev = skb->dev;
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 ATM_SKB(skb)->vcc = vcc;
234 ATM_SKB(skb)->atm_options = vcc->atm_options;
235
236 atomic_add(skb->truesize, &sk_atm(vcc)->sk_wmem_alloc);
237 if (vcc->send(vcc, skb) < 0) {
Stephen Hemminger162619e2009-01-09 13:01:01 +0000238 dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return;
240 }
241
Stephen Hemminger162619e2009-01-09 13:01:01 +0000242 dev->stats.tx_packets++;
243 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245
Chas Williamsd44f7742006-09-29 17:11:14 -0700246static void lec_tx_timeout(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Joe Perches99824462010-01-26 11:40:00 +0000248 pr_info("%s\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 dev->trans_start = jiffies;
250 netif_wake_queue(dev);
251}
252
Stephen Hemminger3c805a22009-08-31 19:50:42 +0000253static netdev_tx_t lec_start_xmit(struct sk_buff *skb,
254 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Chas Williamsd44f7742006-09-29 17:11:14 -0700256 struct sk_buff *skb2;
Wang Chen524ad0a2008-11-12 23:39:10 -0800257 struct lec_priv *priv = netdev_priv(dev);
Chas Williamsd44f7742006-09-29 17:11:14 -0700258 struct lecdatahdr_8023 *lec_h;
259 struct atm_vcc *vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 struct lec_arp_table *entry;
Chas Williamsd44f7742006-09-29 17:11:14 -0700261 unsigned char *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 int min_frame_size;
263#ifdef CONFIG_TR
Chas Williamsd44f7742006-09-29 17:11:14 -0700264 unsigned char rdesc[ETH_ALEN]; /* Token Ring route descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700266 int is_rdesc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Joe Perches99824462010-01-26 11:40:00 +0000268 pr_debug("called\n");
Chas Williamsd44f7742006-09-29 17:11:14 -0700269 if (!priv->lecd) {
Joe Perchesc48192a2010-01-26 11:40:08 +0000270 pr_info("%s:No lecd attached\n", dev->name);
Stephen Hemminger162619e2009-01-09 13:01:01 +0000271 dev->stats.tx_errors++;
Chas Williamsd44f7742006-09-29 17:11:14 -0700272 netif_stop_queue(dev);
Patrick McHardy81fbbf62009-06-12 05:34:37 +0000273 kfree_skb(skb);
274 return NETDEV_TX_OK;
Chas Williamsd44f7742006-09-29 17:11:14 -0700275 }
276
Stephen Hemminger52240062007-08-28 15:22:09 -0700277 pr_debug("skbuff head:%lx data:%lx tail:%lx end:%lx\n",
Joe Perches99824462010-01-26 11:40:00 +0000278 (long)skb->head, (long)skb->data, (long)skb_tail_pointer(skb),
279 (long)skb_end_pointer(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280#if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
Chas Williamsd44f7742006-09-29 17:11:14 -0700281 if (memcmp(skb->data, bridge_ula_lec, sizeof(bridge_ula_lec)) == 0)
282 lec_handle_bridge(skb, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283#endif
284
Chas Williamsd44f7742006-09-29 17:11:14 -0700285 /* Make sure we have room for lec_id */
286 if (skb_headroom(skb) < 2) {
Joe Perches99824462010-01-26 11:40:00 +0000287 pr_debug("reallocating skb\n");
Chas Williamsd44f7742006-09-29 17:11:14 -0700288 skb2 = skb_realloc_headroom(skb, LEC_HEADER_LEN);
289 kfree_skb(skb);
290 if (skb2 == NULL)
Patrick McHardy6ed10652009-06-23 06:03:08 +0000291 return NETDEV_TX_OK;
Chas Williamsd44f7742006-09-29 17:11:14 -0700292 skb = skb2;
293 }
294 skb_push(skb, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Chas Williamsd44f7742006-09-29 17:11:14 -0700296 /* Put le header to place, works for TokenRing too */
297 lec_h = (struct lecdatahdr_8023 *)skb->data;
298 lec_h->le_header = htons(priv->lecid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300#ifdef CONFIG_TR
Chas Williamsd44f7742006-09-29 17:11:14 -0700301 /*
302 * Ugly. Use this to realign Token Ring packets for
303 * e.g. PCA-200E driver.
304 */
305 if (priv->is_trdev) {
306 skb2 = skb_realloc_headroom(skb, LEC_HEADER_LEN);
307 kfree_skb(skb);
308 if (skb2 == NULL)
Patrick McHardy6ed10652009-06-23 06:03:08 +0000309 return NETDEV_TX_OK;
Chas Williamsd44f7742006-09-29 17:11:14 -0700310 skb = skb2;
311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312#endif
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314#if DUMP_PACKETS >= 2
Joe Perchesc48192a2010-01-26 11:40:08 +0000315#define MAX_DUMP_SKB 99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316#elif DUMP_PACKETS >= 1
Joe Perchesc48192a2010-01-26 11:40:08 +0000317#define MAX_DUMP_SKB 30
318#endif
319#if DUMP_PACKETS >= 1
320 printk(KERN_DEBUG "%s: send datalen:%ld lecid:%4.4x\n",
321 dev->name, skb->len, priv->lecid);
322 print_hex_dump(KERN_DEBUG, "", DUMP_OFFSET, 16, 1,
323 skb->data, min(skb->len, MAX_DUMP_SKB), true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324#endif /* DUMP_PACKETS >= 1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Chas Williamsd44f7742006-09-29 17:11:14 -0700326 /* Minimum ethernet-frame size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327#ifdef CONFIG_TR
Chas Williamsd44f7742006-09-29 17:11:14 -0700328 if (priv->is_trdev)
329 min_frame_size = LEC_MINIMUM_8025_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 else
331#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700332 min_frame_size = LEC_MINIMUM_8023_SIZE;
333 if (skb->len < min_frame_size) {
334 if ((skb->len + skb_tailroom(skb)) < min_frame_size) {
335 skb2 = skb_copy_expand(skb, 0,
336 min_frame_size - skb->truesize,
337 GFP_ATOMIC);
338 dev_kfree_skb(skb);
339 if (skb2 == NULL) {
Stephen Hemminger162619e2009-01-09 13:01:01 +0000340 dev->stats.tx_dropped++;
Patrick McHardy6ed10652009-06-23 06:03:08 +0000341 return NETDEV_TX_OK;
Chas Williamsd44f7742006-09-29 17:11:14 -0700342 }
343 skb = skb2;
344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 skb_put(skb, min_frame_size - skb->len);
Chas Williamsd44f7742006-09-29 17:11:14 -0700346 }
347
348 /* Send to right vcc */
349 is_rdesc = 0;
350 dst = lec_h->h_dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351#ifdef CONFIG_TR
Chas Williamsd44f7742006-09-29 17:11:14 -0700352 if (priv->is_trdev) {
353 dst = get_tr_dst(skb->data + 2, rdesc);
354 if (dst == NULL) {
355 dst = rdesc;
356 is_rdesc = 1;
357 }
358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700360 entry = NULL;
361 vcc = lec_arp_resolve(priv, dst, is_rdesc, &entry);
Joe Perches99824462010-01-26 11:40:00 +0000362 pr_debug("%s:vcc:%p vcc_flags:%lx, entry:%p\n",
363 dev->name, vcc, vcc ? vcc->flags : 0, entry);
Chas Williamsd44f7742006-09-29 17:11:14 -0700364 if (!vcc || !test_bit(ATM_VF_READY, &vcc->flags)) {
365 if (entry && (entry->tx_wait.qlen < LEC_UNRES_QUE_LEN)) {
Joe Perches99824462010-01-26 11:40:00 +0000366 pr_debug("%s:queuing packet, MAC address %pM\n",
367 dev->name, lec_h->h_dest);
Chas Williamsd44f7742006-09-29 17:11:14 -0700368 skb_queue_tail(&entry->tx_wait, skb);
369 } else {
Joe Perches99824462010-01-26 11:40:00 +0000370 pr_debug("%s:tx queue full or no arp entry, dropping, MAC address: %pM\n",
371 dev->name, lec_h->h_dest);
Stephen Hemminger162619e2009-01-09 13:01:01 +0000372 dev->stats.tx_dropped++;
Chas Williamsd44f7742006-09-29 17:11:14 -0700373 dev_kfree_skb(skb);
374 }
Chas Williams6656e3c2006-09-29 17:17:17 -0700375 goto out;
Chas Williamsd44f7742006-09-29 17:11:14 -0700376 }
377#if DUMP_PACKETS > 0
Joe Perchesc48192a2010-01-26 11:40:08 +0000378 printk(KERN_DEBUG "%s:sending to vpi:%d vci:%d\n",
379 dev->name, vcc->vpi, vcc->vci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380#endif /* DUMP_PACKETS > 0 */
Chas Williamsd44f7742006-09-29 17:11:14 -0700381
382 while (entry && (skb2 = skb_dequeue(&entry->tx_wait))) {
Joe Perches99824462010-01-26 11:40:00 +0000383 pr_debug("emptying tx queue, MAC address %pM\n", lec_h->h_dest);
Stephen Hemminger162619e2009-01-09 13:01:01 +0000384 lec_send(vcc, skb2);
Chas Williamsd44f7742006-09-29 17:11:14 -0700385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Stephen Hemminger162619e2009-01-09 13:01:01 +0000387 lec_send(vcc, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 if (!atm_may_send(vcc, 0)) {
390 struct lec_vcc_priv *vpriv = LEC_VCC_PRIV(vcc);
391
392 vpriv->xoff = 1;
393 netif_stop_queue(dev);
394
395 /*
396 * vcc->pop() might have occurred in between, making
397 * the vcc usuable again. Since xmit is serialized,
398 * this is the only situation we have to re-test.
399 */
400
401 if (atm_may_send(vcc, 0))
402 netif_wake_queue(dev);
403 }
404
Chas Williams6656e3c2006-09-29 17:17:17 -0700405out:
406 if (entry)
407 lec_arp_put(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 dev->trans_start = jiffies;
Patrick McHardy6ed10652009-06-23 06:03:08 +0000409 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
411
412/* The inverse routine to net_open(). */
Chas Williamsd44f7742006-09-29 17:11:14 -0700413static int lec_close(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Chas Williamsd44f7742006-09-29 17:11:14 -0700415 netif_stop_queue(dev);
416 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
Chas Williamsd44f7742006-09-29 17:11:14 -0700419static int lec_atm_send(struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
421 unsigned long flags;
Chas Williamsd44f7742006-09-29 17:11:14 -0700422 struct net_device *dev = (struct net_device *)vcc->proto_data;
Wang Chen524ad0a2008-11-12 23:39:10 -0800423 struct lec_priv *priv = netdev_priv(dev);
Chas Williamsd44f7742006-09-29 17:11:14 -0700424 struct atmlec_msg *mesg;
425 struct lec_arp_table *entry;
426 int i;
427 char *tmp; /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 atomic_sub(skb->truesize, &sk_atm(vcc)->sk_wmem_alloc);
Chas Williamsd44f7742006-09-29 17:11:14 -0700430 mesg = (struct atmlec_msg *)skb->data;
431 tmp = skb->data;
432 tmp += sizeof(struct atmlec_msg);
Stephen Hemminger52240062007-08-28 15:22:09 -0700433 pr_debug("%s: msg from zeppelin:%d\n", dev->name, mesg->type);
Chas Williamsd44f7742006-09-29 17:11:14 -0700434 switch (mesg->type) {
435 case l_set_mac_addr:
Joe Perchesc48192a2010-01-26 11:40:08 +0000436 for (i = 0; i < 6; i++)
Chas Williamsd44f7742006-09-29 17:11:14 -0700437 dev->dev_addr[i] = mesg->content.normal.mac_addr[i];
Chas Williamsd44f7742006-09-29 17:11:14 -0700438 break;
439 case l_del_mac_addr:
Joe Perchesc48192a2010-01-26 11:40:08 +0000440 for (i = 0; i < 6; i++)
Chas Williamsd44f7742006-09-29 17:11:14 -0700441 dev->dev_addr[i] = 0;
Chas Williamsd44f7742006-09-29 17:11:14 -0700442 break;
443 case l_addr_delete:
444 lec_addr_delete(priv, mesg->content.normal.atm_addr,
445 mesg->content.normal.flag);
446 break;
447 case l_topology_change:
448 priv->topology_change = mesg->content.normal.flag;
449 break;
450 case l_flush_complete:
451 lec_flush_complete(priv, mesg->content.normal.flag);
452 break;
453 case l_narp_req: /* LANE2: see 7.1.35 in the lane2 spec */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd44f7742006-09-29 17:11:14 -0700455 entry = lec_arp_find(priv, mesg->content.normal.mac_addr);
456 lec_arp_remove(priv, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
458
Chas Williamsd44f7742006-09-29 17:11:14 -0700459 if (mesg->content.normal.no_source_le_narp)
460 break;
461 /* FALL THROUGH */
462 case l_arp_update:
463 lec_arp_update(priv, mesg->content.normal.mac_addr,
464 mesg->content.normal.atm_addr,
465 mesg->content.normal.flag,
466 mesg->content.normal.targetless_le_arp);
Joe Perches99824462010-01-26 11:40:00 +0000467 pr_debug("in l_arp_update\n");
Chas Williamsd44f7742006-09-29 17:11:14 -0700468 if (mesg->sizeoftlvs != 0) { /* LANE2 3.1.5 */
Joe Perches99824462010-01-26 11:40:00 +0000469 pr_debug("LANE2 3.1.5, got tlvs, size %d\n",
470 mesg->sizeoftlvs);
Chas Williamsd44f7742006-09-29 17:11:14 -0700471 lane2_associate_ind(dev, mesg->content.normal.mac_addr,
472 tmp, mesg->sizeoftlvs);
473 }
474 break;
475 case l_config:
476 priv->maximum_unknown_frame_count =
477 mesg->content.config.maximum_unknown_frame_count;
478 priv->max_unknown_frame_time =
479 (mesg->content.config.max_unknown_frame_time * HZ);
480 priv->max_retry_count = mesg->content.config.max_retry_count;
481 priv->aging_time = (mesg->content.config.aging_time * HZ);
482 priv->forward_delay_time =
483 (mesg->content.config.forward_delay_time * HZ);
484 priv->arp_response_time =
485 (mesg->content.config.arp_response_time * HZ);
486 priv->flush_timeout = (mesg->content.config.flush_timeout * HZ);
487 priv->path_switching_delay =
488 (mesg->content.config.path_switching_delay * HZ);
Joe Perchesc48192a2010-01-26 11:40:08 +0000489 priv->lane_version = mesg->content.config.lane_version;
490 /* LANE2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 priv->lane2_ops = NULL;
492 if (priv->lane_version > 1)
493 priv->lane2_ops = &lane2_ops;
Stephen Hemminger1f1900f2009-03-21 13:37:28 -0700494 if (dev_set_mtu(dev, mesg->content.config.mtu))
Joe Perchesc48192a2010-01-26 11:40:08 +0000495 pr_info("%s: change_mtu to %d failed\n",
496 dev->name, mesg->content.config.mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 priv->is_proxy = mesg->content.config.is_proxy;
Chas Williamsd44f7742006-09-29 17:11:14 -0700498 break;
499 case l_flush_tran_id:
500 lec_set_flush_tran_id(priv, mesg->content.normal.atm_addr,
501 mesg->content.normal.flag);
502 break;
503 case l_set_lecid:
504 priv->lecid =
505 (unsigned short)(0xffff & mesg->content.normal.flag);
506 break;
507 case l_should_bridge:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508#if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
Joe Perchesb4c84ec2010-01-26 11:40:19 +0000509 {
510 pr_debug("%s: bridge zeppelin asks about %pM\n",
511 dev->name, mesg->content.proxy.mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Joe Perchesb4c84ec2010-01-26 11:40:19 +0000513 if (br_fdb_test_addr_hook == NULL)
514 break;
515
516 if (br_fdb_test_addr_hook(dev, mesg->content.proxy.mac_addr)) {
517 /* hit from bridge table, send LE_ARP_RESPONSE */
518 struct sk_buff *skb2;
519 struct sock *sk;
520
521 pr_debug("%s: entry found, responding to zeppelin\n",
522 dev->name);
523 skb2 = alloc_skb(sizeof(struct atmlec_msg), GFP_ATOMIC);
524 if (skb2 == NULL)
Chas Williamsd44f7742006-09-29 17:11:14 -0700525 break;
Joe Perchesb4c84ec2010-01-26 11:40:19 +0000526 skb2->len = sizeof(struct atmlec_msg);
527 skb_copy_to_linear_data(skb2, mesg, sizeof(*mesg));
528 atm_force_charge(priv->lecd, skb2->truesize);
529 sk = sk_atm(priv->lecd);
530 skb_queue_tail(&sk->sk_receive_queue, skb2);
531 sk->sk_data_ready(sk, skb2->len);
Chas Williamsd44f7742006-09-29 17:11:14 -0700532 }
Joe Perchesb4c84ec2010-01-26 11:40:19 +0000533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534#endif /* defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE) */
Chas Williamsd44f7742006-09-29 17:11:14 -0700535 break;
536 default:
Joe Perchesc48192a2010-01-26 11:40:08 +0000537 pr_info("%s: Unknown message type %d\n", dev->name, mesg->type);
Chas Williamsd44f7742006-09-29 17:11:14 -0700538 dev_kfree_skb(skb);
539 return -EINVAL;
540 }
541 dev_kfree_skb(skb);
542 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
Chas Williamsd44f7742006-09-29 17:11:14 -0700545static void lec_atm_close(struct atm_vcc *vcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Chas Williamsd44f7742006-09-29 17:11:14 -0700547 struct sk_buff *skb;
548 struct net_device *dev = (struct net_device *)vcc->proto_data;
Wang Chen524ad0a2008-11-12 23:39:10 -0800549 struct lec_priv *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Chas Williamsd44f7742006-09-29 17:11:14 -0700551 priv->lecd = NULL;
552 /* Do something needful? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Chas Williamsd44f7742006-09-29 17:11:14 -0700554 netif_stop_queue(dev);
555 lec_arp_destroy(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Chas Williamsd44f7742006-09-29 17:11:14 -0700557 if (skb_peek(&sk_atm(vcc)->sk_receive_queue))
Joe Perchesc48192a2010-01-26 11:40:08 +0000558 pr_info("%s closing with messages pending\n", dev->name);
Joe Perchesb4c84ec2010-01-26 11:40:19 +0000559 while ((skb = skb_dequeue(&sk_atm(vcc)->sk_receive_queue))) {
Chas Williamsd44f7742006-09-29 17:11:14 -0700560 atm_return(vcc, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 dev_kfree_skb(skb);
Chas Williamsd44f7742006-09-29 17:11:14 -0700562 }
563
Joe Perchesc48192a2010-01-26 11:40:08 +0000564 pr_info("%s: Shut down!\n", dev->name);
Chas Williamsd44f7742006-09-29 17:11:14 -0700565 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
568static struct atmdev_ops lecdev_ops = {
Chas Williamsd44f7742006-09-29 17:11:14 -0700569 .close = lec_atm_close,
570 .send = lec_atm_send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571};
572
573static struct atm_dev lecatm_dev = {
Chas Williamsd44f7742006-09-29 17:11:14 -0700574 .ops = &lecdev_ops,
575 .type = "lec",
576 .number = 999, /* dummy device number */
Milind Arun Choudhary4ef8d0a2007-04-26 01:37:44 -0700577 .lock = __SPIN_LOCK_UNLOCKED(lecatm_dev.lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578};
579
580/*
581 * LANE2: new argument struct sk_buff *data contains
582 * the LE_ARP based TLVs introduced in the LANE2 spec
583 */
Chas Williamsd44f7742006-09-29 17:11:14 -0700584static int
585send_to_lecd(struct lec_priv *priv, atmlec_msg_type type,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -0700586 const unsigned char *mac_addr, const unsigned char *atm_addr,
Chas Williamsd44f7742006-09-29 17:11:14 -0700587 struct sk_buff *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
589 struct sock *sk;
590 struct sk_buff *skb;
591 struct atmlec_msg *mesg;
592
Joe Perchesc48192a2010-01-26 11:40:08 +0000593 if (!priv || !priv->lecd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 skb = alloc_skb(sizeof(struct atmlec_msg), GFP_ATOMIC);
596 if (!skb)
597 return -1;
598 skb->len = sizeof(struct atmlec_msg);
599 mesg = (struct atmlec_msg *)skb->data;
Chas Williamsd44f7742006-09-29 17:11:14 -0700600 memset(mesg, 0, sizeof(struct atmlec_msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 mesg->type = type;
Chas Williamsd44f7742006-09-29 17:11:14 -0700602 if (data != NULL)
603 mesg->sizeoftlvs = data->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (mac_addr)
605 memcpy(&mesg->content.normal.mac_addr, mac_addr, ETH_ALEN);
Chas Williamsd44f7742006-09-29 17:11:14 -0700606 else
607 mesg->content.normal.targetless_le_arp = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if (atm_addr)
609 memcpy(&mesg->content.normal.atm_addr, atm_addr, ATM_ESA_LEN);
610
Chas Williamsd44f7742006-09-29 17:11:14 -0700611 atm_force_charge(priv->lecd, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 sk = sk_atm(priv->lecd);
613 skb_queue_tail(&sk->sk_receive_queue, skb);
Chas Williamsd44f7742006-09-29 17:11:14 -0700614 sk->sk_data_ready(sk, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Chas Williamsd44f7742006-09-29 17:11:14 -0700616 if (data != NULL) {
Joe Perches99824462010-01-26 11:40:00 +0000617 pr_debug("about to send %d bytes of data\n", data->len);
Chas Williamsd44f7742006-09-29 17:11:14 -0700618 atm_force_charge(priv->lecd, data->truesize);
619 skb_queue_tail(&sk->sk_receive_queue, data);
620 sk->sk_data_ready(sk, skb->len);
621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Chas Williamsd44f7742006-09-29 17:11:14 -0700623 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
626/* shamelessly stolen from drivers/net/net_init.c */
627static int lec_change_mtu(struct net_device *dev, int new_mtu)
628{
Chas Williamsd44f7742006-09-29 17:11:14 -0700629 if ((new_mtu < 68) || (new_mtu > 18190))
630 return -EINVAL;
631 dev->mtu = new_mtu;
632 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
635static void lec_set_multicast_list(struct net_device *dev)
636{
Chas Williamsd44f7742006-09-29 17:11:14 -0700637 /*
638 * by default, all multicast frames arrive over the bus.
639 * eventually support selective multicast service
640 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
642
Stephen Hemminger004b3222009-01-09 13:01:02 +0000643static const struct net_device_ops lec_netdev_ops = {
644 .ndo_open = lec_open,
645 .ndo_stop = lec_close,
646 .ndo_start_xmit = lec_start_xmit,
647 .ndo_change_mtu = lec_change_mtu,
648 .ndo_tx_timeout = lec_tx_timeout,
649 .ndo_set_multicast_list = lec_set_multicast_list,
650};
651
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -0700652static const unsigned char lec_ctrl_magic[] = {
Chas Williamsd44f7742006-09-29 17:11:14 -0700653 0xff,
654 0x00,
655 0x01,
656 0x01
657};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Scott Talbert4a7097f2005-09-29 17:30:54 -0700659#define LEC_DATA_DIRECT_8023 2
660#define LEC_DATA_DIRECT_8025 3
661
662static int lec_is_data_direct(struct atm_vcc *vcc)
Chas Williamsd44f7742006-09-29 17:11:14 -0700663{
Scott Talbert4a7097f2005-09-29 17:30:54 -0700664 return ((vcc->sap.blli[0].l3.tr9577.snap[4] == LEC_DATA_DIRECT_8023) ||
665 (vcc->sap.blli[0].l3.tr9577.snap[4] == LEC_DATA_DIRECT_8025));
Chas Williamsd44f7742006-09-29 17:11:14 -0700666}
Scott Talbert4a7097f2005-09-29 17:30:54 -0700667
Chas Williamsd44f7742006-09-29 17:11:14 -0700668static void lec_push(struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
Scott Talbert4a7097f2005-09-29 17:30:54 -0700670 unsigned long flags;
Chas Williamsd44f7742006-09-29 17:11:14 -0700671 struct net_device *dev = (struct net_device *)vcc->proto_data;
Wang Chen524ad0a2008-11-12 23:39:10 -0800672 struct lec_priv *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Joe Perchesc48192a2010-01-26 11:40:08 +0000674#if DUMP_PACKETS > 0
Joe Perches99824462010-01-26 11:40:00 +0000675 printk(KERN_DEBUG "%s: vcc vpi:%d vci:%d\n",
676 dev->name, vcc->vpi, vcc->vci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700678 if (!skb) {
Stephen Hemminger52240062007-08-28 15:22:09 -0700679 pr_debug("%s: null skb\n", dev->name);
Chas Williamsd44f7742006-09-29 17:11:14 -0700680 lec_vcc_close(priv, vcc);
681 return;
682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683#if DUMP_PACKETS >= 2
Joe Perches99824462010-01-26 11:40:00 +0000684#define MAX_SKB_DUMP 99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685#elif DUMP_PACKETS >= 1
Joe Perches99824462010-01-26 11:40:00 +0000686#define MAX_SKB_DUMP 30
687#endif
688#if DUMP_PACKETS > 0
689 printk(KERN_DEBUG "%s: rcv datalen:%ld lecid:%4.4x\n",
690 dev->name, skb->len, priv->lecid);
691 print_hex_dump(KERN_DEBUG, "", DUMP_OFFSET, 16, 1,
692 skb->data, min(MAX_SKB_DUMP, skb->len), true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693#endif /* DUMP_PACKETS > 0 */
Joe Perches99824462010-01-26 11:40:00 +0000694 if (memcmp(skb->data, lec_ctrl_magic, 4) == 0) {
695 /* Control frame, to daemon */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 struct sock *sk = sk_atm(vcc);
697
Stephen Hemminger52240062007-08-28 15:22:09 -0700698 pr_debug("%s: To daemon\n", dev->name);
Chas Williamsd44f7742006-09-29 17:11:14 -0700699 skb_queue_tail(&sk->sk_receive_queue, skb);
700 sk->sk_data_ready(sk, skb->len);
701 } else { /* Data frame, queue to protocol handlers */
Scott Talbert4a7097f2005-09-29 17:30:54 -0700702 struct lec_arp_table *entry;
Chas Williamsd44f7742006-09-29 17:11:14 -0700703 unsigned char *src, *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Chas Williamsd44f7742006-09-29 17:11:14 -0700705 atm_return(vcc, skb->truesize);
Al Viro30d492d2006-11-14 21:11:29 -0800706 if (*(__be16 *) skb->data == htons(priv->lecid) ||
Chas Williamsd44f7742006-09-29 17:11:14 -0700707 !priv->lecd || !(dev->flags & IFF_UP)) {
708 /*
709 * Probably looping back, or if lecd is missing,
710 * lecd has gone down
711 */
Stephen Hemminger52240062007-08-28 15:22:09 -0700712 pr_debug("Ignoring frame...\n");
Chas Williamsd44f7742006-09-29 17:11:14 -0700713 dev_kfree_skb(skb);
714 return;
715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716#ifdef CONFIG_TR
Chas Williamsd44f7742006-09-29 17:11:14 -0700717 if (priv->is_trdev)
718 dst = ((struct lecdatahdr_8025 *)skb->data)->h_dest;
719 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700721 dst = ((struct lecdatahdr_8023 *)skb->data)->h_dest;
Scott Talbert4a7097f2005-09-29 17:30:54 -0700722
Chas Williamsd44f7742006-09-29 17:11:14 -0700723 /*
724 * If this is a Data Direct VCC, and the VCC does not match
Scott Talbert4a7097f2005-09-29 17:30:54 -0700725 * the LE_ARP cache entry, delete the LE_ARP cache entry.
726 */
727 spin_lock_irqsave(&priv->lec_arp_lock, flags);
728 if (lec_is_data_direct(vcc)) {
729#ifdef CONFIG_TR
730 if (priv->is_trdev)
Chas Williamsd44f7742006-09-29 17:11:14 -0700731 src =
732 ((struct lecdatahdr_8025 *)skb->data)->
733 h_source;
Scott Talbert4a7097f2005-09-29 17:30:54 -0700734 else
735#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700736 src =
737 ((struct lecdatahdr_8023 *)skb->data)->
738 h_source;
Scott Talbert4a7097f2005-09-29 17:30:54 -0700739 entry = lec_arp_find(priv, src);
740 if (entry && entry->vcc != vcc) {
741 lec_arp_remove(priv, entry);
Chas Williams33a9c2d2006-09-29 17:16:48 -0700742 lec_arp_put(entry);
Scott Talbert4a7097f2005-09-29 17:30:54 -0700743 }
744 }
745 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Chas Williamsd44f7742006-09-29 17:11:14 -0700747 if (!(dst[0] & 0x01) && /* Never filter Multi/Broadcast */
748 !priv->is_proxy && /* Proxy wants all the packets */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 memcmp(dst, dev->dev_addr, dev->addr_len)) {
Chas Williamsd44f7742006-09-29 17:11:14 -0700750 dev_kfree_skb(skb);
751 return;
752 }
Joe Perchesc48192a2010-01-26 11:40:08 +0000753 if (!hlist_empty(&priv->lec_arp_empty_ones))
Chas Williamsd44f7742006-09-29 17:11:14 -0700754 lec_arp_check_empties(priv, vcc, skb);
Chas Williamsd44f7742006-09-29 17:11:14 -0700755 skb_pull(skb, 2); /* skip lec_id */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756#ifdef CONFIG_TR
Chas Williamsd44f7742006-09-29 17:11:14 -0700757 if (priv->is_trdev)
758 skb->protocol = tr_type_trans(skb, dev);
759 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700761 skb->protocol = eth_type_trans(skb, dev);
Stephen Hemminger162619e2009-01-09 13:01:01 +0000762 dev->stats.rx_packets++;
763 dev->stats.rx_bytes += skb->len;
Chas Williamsd44f7742006-09-29 17:11:14 -0700764 memset(ATM_SKB(skb), 0, sizeof(struct atm_skb_data));
765 netif_rx(skb);
766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
Chas Williamsd44f7742006-09-29 17:11:14 -0700769static void lec_pop(struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
771 struct lec_vcc_priv *vpriv = LEC_VCC_PRIV(vcc);
772 struct net_device *dev = skb->dev;
773
774 if (vpriv == NULL) {
Joe Perches99824462010-01-26 11:40:00 +0000775 pr_info("vpriv = NULL!?!?!?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 return;
777 }
778
779 vpriv->old_pop(vcc, skb);
780
781 if (vpriv->xoff && atm_may_send(vcc, 0)) {
782 vpriv->xoff = 0;
783 if (netif_running(dev) && netif_queue_stopped(dev))
784 netif_wake_queue(dev);
785 }
786}
787
Chas Williamsd44f7742006-09-29 17:11:14 -0700788static int lec_vcc_attach(struct atm_vcc *vcc, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
790 struct lec_vcc_priv *vpriv;
Chas Williamsd44f7742006-09-29 17:11:14 -0700791 int bytes_left;
792 struct atmlec_ioc ioc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Chas Williamsd44f7742006-09-29 17:11:14 -0700794 /* Lecd must be up in this case */
795 bytes_left = copy_from_user(&ioc_data, arg, sizeof(struct atmlec_ioc));
Joe Perches99824462010-01-26 11:40:00 +0000796 if (bytes_left != 0)
797 pr_info("copy from user failed for %d bytes\n", bytes_left);
Chas Williamsd44f7742006-09-29 17:11:14 -0700798 if (ioc_data.dev_num < 0 || ioc_data.dev_num >= MAX_LEC_ITF ||
799 !dev_lec[ioc_data.dev_num])
800 return -EINVAL;
Joe Perchesc48192a2010-01-26 11:40:08 +0000801 vpriv = kmalloc(sizeof(struct lec_vcc_priv), GFP_KERNEL);
802 if (!vpriv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return -ENOMEM;
804 vpriv->xoff = 0;
805 vpriv->old_pop = vcc->pop;
806 vcc->user_back = vpriv;
807 vcc->pop = lec_pop;
Wang Chen524ad0a2008-11-12 23:39:10 -0800808 lec_vcc_added(netdev_priv(dev_lec[ioc_data.dev_num]),
Chas Williamsd44f7742006-09-29 17:11:14 -0700809 &ioc_data, vcc, vcc->push);
810 vcc->proto_data = dev_lec[ioc_data.dev_num];
811 vcc->push = lec_push;
812 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813}
814
Chas Williamsd44f7742006-09-29 17:11:14 -0700815static int lec_mcast_attach(struct atm_vcc *vcc, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
Chas Williamsd44f7742006-09-29 17:11:14 -0700817 if (arg < 0 || arg >= MAX_LEC_ITF || !dev_lec[arg])
818 return -EINVAL;
819 vcc->proto_data = dev_lec[arg];
Wang Chen524ad0a2008-11-12 23:39:10 -0800820 return lec_mcast_make((struct lec_priv *)netdev_priv(dev_lec[arg]),
821 vcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
824/* Initialize device. */
Chas Williamsd44f7742006-09-29 17:11:14 -0700825static int lecd_attach(struct atm_vcc *vcc, int arg)
826{
827 int i;
828 struct lec_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Chas Williamsd44f7742006-09-29 17:11:14 -0700830 if (arg < 0)
831 i = 0;
832 else
833 i = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834#ifdef CONFIG_TR
Chas Williamsd44f7742006-09-29 17:11:14 -0700835 if (arg >= MAX_LEC_ITF)
836 return -EINVAL;
837#else /* Reserve the top NUM_TR_DEVS for TR */
838 if (arg >= (MAX_LEC_ITF - NUM_TR_DEVS))
839 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700841 if (!dev_lec[i]) {
842 int is_trdev, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Chas Williamsd44f7742006-09-29 17:11:14 -0700844 is_trdev = 0;
845 if (i >= (MAX_LEC_ITF - NUM_TR_DEVS))
846 is_trdev = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Chas Williamsd44f7742006-09-29 17:11:14 -0700848 size = sizeof(struct lec_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849#ifdef CONFIG_TR
Chas Williamsd44f7742006-09-29 17:11:14 -0700850 if (is_trdev)
851 dev_lec[i] = alloc_trdev(size);
852 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700854 dev_lec[i] = alloc_etherdev(size);
855 if (!dev_lec[i])
856 return -ENOMEM;
chas williams - CONTRACTOReb044582009-12-04 05:19:30 +0000857 dev_lec[i]->netdev_ops = &lec_netdev_ops;
Chas Williamsd44f7742006-09-29 17:11:14 -0700858 snprintf(dev_lec[i]->name, IFNAMSIZ, "lec%d", i);
859 if (register_netdev(dev_lec[i])) {
860 free_netdev(dev_lec[i]);
861 return -EINVAL;
862 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Wang Chen524ad0a2008-11-12 23:39:10 -0800864 priv = netdev_priv(dev_lec[i]);
Chas Williamsd44f7742006-09-29 17:11:14 -0700865 priv->is_trdev = is_trdev;
Chas Williamsd44f7742006-09-29 17:11:14 -0700866 } else {
Wang Chen524ad0a2008-11-12 23:39:10 -0800867 priv = netdev_priv(dev_lec[i]);
Chas Williamsd44f7742006-09-29 17:11:14 -0700868 if (priv->lecd)
869 return -EADDRINUSE;
870 }
871 lec_arp_init(priv);
872 priv->itfnum = i; /* LANE2 addition */
873 priv->lecd = vcc;
874 vcc->dev = &lecatm_dev;
875 vcc_insert_socket(sk_atm(vcc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Chas Williamsd44f7742006-09-29 17:11:14 -0700877 vcc->proto_data = dev_lec[i];
878 set_bit(ATM_VF_META, &vcc->flags);
879 set_bit(ATM_VF_READY, &vcc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Chas Williamsd44f7742006-09-29 17:11:14 -0700881 /* Set default values to these variables */
882 priv->maximum_unknown_frame_count = 1;
883 priv->max_unknown_frame_time = (1 * HZ);
884 priv->vcc_timeout_period = (1200 * HZ);
885 priv->max_retry_count = 1;
886 priv->aging_time = (300 * HZ);
887 priv->forward_delay_time = (15 * HZ);
888 priv->topology_change = 0;
889 priv->arp_response_time = (1 * HZ);
890 priv->flush_timeout = (4 * HZ);
891 priv->path_switching_delay = (6 * HZ);
892
Joe Perchesc48192a2010-01-26 11:40:08 +0000893 if (dev_lec[i]->flags & IFF_UP)
Chas Williamsd44f7742006-09-29 17:11:14 -0700894 netif_start_queue(dev_lec[i]);
Chas Williamsd44f7742006-09-29 17:11:14 -0700895 __module_get(THIS_MODULE);
896 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
899#ifdef CONFIG_PROC_FS
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700900static const char *lec_arp_get_status_string(unsigned char status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700902 static const char *const lec_arp_status_string[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 "ESI_UNKNOWN ",
904 "ESI_ARP_PENDING ",
905 "ESI_VC_PENDING ",
906 "<Undefined> ",
907 "ESI_FLUSH_PENDING ",
908 "ESI_FORWARD_DIRECT"
909 };
910
911 if (status > ESI_FORWARD_DIRECT)
912 status = 3; /* ESI_UNDEFINED */
913 return lec_arp_status_string[status];
914}
915
916static void lec_info(struct seq_file *seq, struct lec_arp_table *entry)
917{
918 int i;
919
920 for (i = 0; i < ETH_ALEN; i++)
921 seq_printf(seq, "%2.2x", entry->mac_addr[i] & 0xff);
922 seq_printf(seq, " ");
923 for (i = 0; i < ATM_ESA_LEN; i++)
924 seq_printf(seq, "%2.2x", entry->atm_addr[i] & 0xff);
925 seq_printf(seq, " %s %4.4x", lec_arp_get_status_string(entry->status),
926 entry->flags & 0xffff);
927 if (entry->vcc)
928 seq_printf(seq, "%3d %3d ", entry->vcc->vpi, entry->vcc->vci);
929 else
Chas Williamsd44f7742006-09-29 17:11:14 -0700930 seq_printf(seq, " ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 if (entry->recv_vcc) {
932 seq_printf(seq, " %3d %3d", entry->recv_vcc->vpi,
933 entry->recv_vcc->vci);
Chas Williamsd44f7742006-09-29 17:11:14 -0700934 }
935 seq_putc(seq, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938struct lec_state {
939 unsigned long flags;
940 struct lec_priv *locked;
Chas Williamsd0732f62006-09-29 17:14:27 -0700941 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 struct net_device *dev;
943 int itf;
944 int arp_table;
945 int misc_table;
946};
947
Chas Williamsd0732f62006-09-29 17:14:27 -0700948static void *lec_tbl_walk(struct lec_state *state, struct hlist_head *tbl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 loff_t *l)
950{
Chas Williamsd0732f62006-09-29 17:14:27 -0700951 struct hlist_node *e = state->node;
952 struct lec_arp_table *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954 if (!e)
Chas Williamsd0732f62006-09-29 17:14:27 -0700955 e = tbl->first;
Joe Perches2e1e9842008-04-10 03:33:03 -0700956 if (e == SEQ_START_TOKEN) {
Chas Williamsd0732f62006-09-29 17:14:27 -0700957 e = tbl->first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 --*l;
959 }
Chas Williamsd0732f62006-09-29 17:14:27 -0700960
961 hlist_for_each_entry_from(tmp, e, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (--*l < 0)
963 break;
964 }
Chas Williamsd0732f62006-09-29 17:14:27 -0700965 state->node = e;
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 return (*l < 0) ? state : NULL;
968}
969
970static void *lec_arp_walk(struct lec_state *state, loff_t *l,
Chas Williamsd44f7742006-09-29 17:11:14 -0700971 struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
973 void *v = NULL;
974 int p;
975
976 for (p = state->arp_table; p < LEC_ARP_TABLE_SIZE; p++) {
Chas Williamsd0732f62006-09-29 17:14:27 -0700977 v = lec_tbl_walk(state, &priv->lec_arp_tables[p], l);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if (v)
979 break;
980 }
981 state->arp_table = p;
982 return v;
983}
984
985static void *lec_misc_walk(struct lec_state *state, loff_t *l,
986 struct lec_priv *priv)
987{
Chas Williamsd0732f62006-09-29 17:14:27 -0700988 struct hlist_head *lec_misc_tables[] = {
989 &priv->lec_arp_empty_ones,
990 &priv->lec_no_forward,
991 &priv->mcast_fwds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 };
993 void *v = NULL;
994 int q;
995
996 for (q = state->misc_table; q < ARRAY_SIZE(lec_misc_tables); q++) {
997 v = lec_tbl_walk(state, lec_misc_tables[q], l);
998 if (v)
999 break;
1000 }
1001 state->misc_table = q;
1002 return v;
1003}
1004
1005static void *lec_priv_walk(struct lec_state *state, loff_t *l,
1006 struct lec_priv *priv)
1007{
1008 if (!state->locked) {
1009 state->locked = priv;
1010 spin_lock_irqsave(&priv->lec_arp_lock, state->flags);
1011 }
Chas Williamsd44f7742006-09-29 17:11:14 -07001012 if (!lec_arp_walk(state, l, priv) && !lec_misc_walk(state, l, priv)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 spin_unlock_irqrestore(&priv->lec_arp_lock, state->flags);
1014 state->locked = NULL;
1015 /* Partial state reset for the next time we get called */
1016 state->arp_table = state->misc_table = 0;
1017 }
1018 return state->locked;
1019}
1020
1021static void *lec_itf_walk(struct lec_state *state, loff_t *l)
1022{
1023 struct net_device *dev;
1024 void *v;
1025
1026 dev = state->dev ? state->dev : dev_lec[state->itf];
Wang Chen524ad0a2008-11-12 23:39:10 -08001027 v = (dev && netdev_priv(dev)) ?
1028 lec_priv_walk(state, l, netdev_priv(dev)) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 if (!v && dev) {
1030 dev_put(dev);
1031 /* Partial state reset for the next time we get called */
1032 dev = NULL;
1033 }
1034 state->dev = dev;
1035 return v;
1036}
1037
1038static void *lec_get_idx(struct lec_state *state, loff_t l)
1039{
1040 void *v = NULL;
1041
1042 for (; state->itf < MAX_LEC_ITF; state->itf++) {
1043 v = lec_itf_walk(state, &l);
1044 if (v)
1045 break;
1046 }
Chas Williamsd44f7742006-09-29 17:11:14 -07001047 return v;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048}
1049
1050static void *lec_seq_start(struct seq_file *seq, loff_t *pos)
1051{
1052 struct lec_state *state = seq->private;
1053
1054 state->itf = 0;
1055 state->dev = NULL;
1056 state->locked = NULL;
1057 state->arp_table = 0;
1058 state->misc_table = 0;
Joe Perches2e1e9842008-04-10 03:33:03 -07001059 state->node = SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Joe Perches2e1e9842008-04-10 03:33:03 -07001061 return *pos ? lec_get_idx(state, *pos) : SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062}
1063
1064static void lec_seq_stop(struct seq_file *seq, void *v)
1065{
1066 struct lec_state *state = seq->private;
1067
1068 if (state->dev) {
1069 spin_unlock_irqrestore(&state->locked->lec_arp_lock,
1070 state->flags);
1071 dev_put(state->dev);
1072 }
1073}
1074
1075static void *lec_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1076{
1077 struct lec_state *state = seq->private;
1078
1079 v = lec_get_idx(state, 1);
1080 *pos += !!PTR_ERR(v);
1081 return v;
1082}
1083
1084static int lec_seq_show(struct seq_file *seq, void *v)
1085{
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -07001086 static const char lec_banner[] =
1087 "Itf MAC ATM destination"
Chas Williamsd44f7742006-09-29 17:11:14 -07001088 " Status Flags "
1089 "VPI/VCI Recv VPI/VCI\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Joe Perches2e1e9842008-04-10 03:33:03 -07001091 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 seq_puts(seq, lec_banner);
1093 else {
1094 struct lec_state *state = seq->private;
Chas Williamsd44f7742006-09-29 17:11:14 -07001095 struct net_device *dev = state->dev;
Joe Perchesc48192a2010-01-26 11:40:08 +00001096 struct lec_arp_table *entry = hlist_entry(state->node,
1097 struct lec_arp_table,
1098 next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 seq_printf(seq, "%s ", dev->name);
Chas Williamsd0732f62006-09-29 17:14:27 -07001101 lec_info(seq, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
1103 return 0;
1104}
1105
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001106static const struct seq_operations lec_seq_ops = {
Chas Williamsd44f7742006-09-29 17:11:14 -07001107 .start = lec_seq_start,
1108 .next = lec_seq_next,
1109 .stop = lec_seq_stop,
1110 .show = lec_seq_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111};
1112
1113static int lec_seq_open(struct inode *inode, struct file *file)
1114{
Pavel Emelyanov9a8c09e2008-02-29 11:37:02 -08001115 return seq_open_private(file, &lec_seq_ops, sizeof(struct lec_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116}
1117
Arjan van de Ven9a321442007-02-12 00:55:35 -08001118static const struct file_operations lec_seq_fops = {
Chas Williamsd44f7742006-09-29 17:11:14 -07001119 .owner = THIS_MODULE,
1120 .open = lec_seq_open,
1121 .read = seq_read,
1122 .llseek = seq_lseek,
Pavel Emelyanov9a8c09e2008-02-29 11:37:02 -08001123 .release = seq_release_private,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124};
1125#endif
1126
1127static int lane_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1128{
1129 struct atm_vcc *vcc = ATM_SD(sock);
1130 int err = 0;
Chas Williamsd44f7742006-09-29 17:11:14 -07001131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 switch (cmd) {
Chas Williamsd44f7742006-09-29 17:11:14 -07001133 case ATMLEC_CTRL:
1134 case ATMLEC_MCAST:
1135 case ATMLEC_DATA:
1136 if (!capable(CAP_NET_ADMIN))
1137 return -EPERM;
1138 break;
1139 default:
1140 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 }
1142
1143 switch (cmd) {
Chas Williamsd44f7742006-09-29 17:11:14 -07001144 case ATMLEC_CTRL:
1145 err = lecd_attach(vcc, (int)arg);
1146 if (err >= 0)
1147 sock->state = SS_CONNECTED;
1148 break;
1149 case ATMLEC_MCAST:
1150 err = lec_mcast_attach(vcc, (int)arg);
1151 break;
1152 case ATMLEC_DATA:
1153 err = lec_vcc_attach(vcc, (void __user *)arg);
1154 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
1156
1157 return err;
1158}
1159
1160static struct atm_ioctl lane_ioctl_ops = {
Chas Williamsd44f7742006-09-29 17:11:14 -07001161 .owner = THIS_MODULE,
1162 .ioctl = lane_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163};
1164
1165static int __init lane_module_init(void)
1166{
1167#ifdef CONFIG_PROC_FS
1168 struct proc_dir_entry *p;
1169
Wang Chen16e297b2008-02-28 13:55:45 -08001170 p = proc_create("lec", S_IRUGO, atm_proc_root, &lec_seq_fops);
Wang Chendbee0d32008-03-23 21:45:36 -07001171 if (!p) {
Joe Perches99824462010-01-26 11:40:00 +00001172 pr_err("Unable to initialize /proc/net/atm/lec\n");
Wang Chendbee0d32008-03-23 21:45:36 -07001173 return -ENOMEM;
1174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175#endif
1176
1177 register_atm_ioctl(&lane_ioctl_ops);
Joe Perchesc48192a2010-01-26 11:40:08 +00001178 pr_info("lec.c: " __DATE__ " " __TIME__ " initialized\n");
Chas Williamsd44f7742006-09-29 17:11:14 -07001179 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180}
1181
1182static void __exit lane_module_cleanup(void)
1183{
Chas Williamsd44f7742006-09-29 17:11:14 -07001184 int i;
1185 struct lec_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
1187 remove_proc_entry("lec", atm_proc_root);
1188
1189 deregister_atm_ioctl(&lane_ioctl_ops);
1190
Chas Williamsd44f7742006-09-29 17:11:14 -07001191 for (i = 0; i < MAX_LEC_ITF; i++) {
1192 if (dev_lec[i] != NULL) {
Wang Chen524ad0a2008-11-12 23:39:10 -08001193 priv = netdev_priv(dev_lec[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 unregister_netdev(dev_lec[i]);
Chas Williamsd44f7742006-09-29 17:11:14 -07001195 free_netdev(dev_lec[i]);
1196 dev_lec[i] = NULL;
1197 }
1198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199}
1200
1201module_init(lane_module_init);
1202module_exit(lane_module_cleanup);
1203
1204/*
1205 * LANE2: 3.1.3, LE_RESOLVE.request
1206 * Non force allocates memory and fills in *tlvs, fills in *sizeoftlvs.
1207 * If sizeoftlvs == NULL the default TLVs associated with with this
1208 * lec will be used.
1209 * If dst_mac == NULL, targetless LE_ARP will be sent
1210 */
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001211static int lane2_resolve(struct net_device *dev, const u8 *dst_mac, int force,
Chas Williamsd44f7742006-09-29 17:11:14 -07001212 u8 **tlvs, u32 *sizeoftlvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
1214 unsigned long flags;
Wang Chen524ad0a2008-11-12 23:39:10 -08001215 struct lec_priv *priv = netdev_priv(dev);
Chas Williamsd44f7742006-09-29 17:11:14 -07001216 struct lec_arp_table *table;
1217 struct sk_buff *skb;
1218 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Chas Williamsd44f7742006-09-29 17:11:14 -07001220 if (force == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd44f7742006-09-29 17:11:14 -07001222 table = lec_arp_find(priv, dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williamsd44f7742006-09-29 17:11:14 -07001224 if (table == NULL)
1225 return -1;
1226
Arnaldo Carvalho de Melo2afe37c2006-11-21 01:14:33 -02001227 *tlvs = kmemdup(table->tlvs, table->sizeoftlvs, GFP_ATOMIC);
Chas Williamsd44f7742006-09-29 17:11:14 -07001228 if (*tlvs == NULL)
1229 return -1;
1230
Chas Williamsd44f7742006-09-29 17:11:14 -07001231 *sizeoftlvs = table->sizeoftlvs;
1232
1233 return 0;
1234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 if (sizeoftlvs == NULL)
1237 retval = send_to_lecd(priv, l_arp_xmt, dst_mac, NULL, NULL);
Chas Williamsd44f7742006-09-29 17:11:14 -07001238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 else {
1240 skb = alloc_skb(*sizeoftlvs, GFP_ATOMIC);
1241 if (skb == NULL)
1242 return -1;
1243 skb->len = *sizeoftlvs;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001244 skb_copy_to_linear_data(skb, *tlvs, *sizeoftlvs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 retval = send_to_lecd(priv, l_arp_xmt, dst_mac, NULL, skb);
1246 }
Chas Williamsd44f7742006-09-29 17:11:14 -07001247 return retval;
1248}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250/*
1251 * LANE2: 3.1.4, LE_ASSOCIATE.request
1252 * Associate the *tlvs with the *lan_dst address.
1253 * Will overwrite any previous association
1254 * Returns 1 for success, 0 for failure (out of memory)
1255 *
1256 */
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001257static int lane2_associate_req(struct net_device *dev, const u8 *lan_dst,
1258 const u8 *tlvs, u32 sizeoftlvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Chas Williamsd44f7742006-09-29 17:11:14 -07001260 int retval;
1261 struct sk_buff *skb;
Wang Chen524ad0a2008-11-12 23:39:10 -08001262 struct lec_priv *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Chas Williamsd44f7742006-09-29 17:11:14 -07001264 if (compare_ether_addr(lan_dst, dev->dev_addr))
Joe Perchesc48192a2010-01-26 11:40:08 +00001265 return 0; /* not our mac address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Chas Williamsd44f7742006-09-29 17:11:14 -07001267 kfree(priv->tlvs); /* NULL if there was no previous association */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Arnaldo Carvalho de Melo2afe37c2006-11-21 01:14:33 -02001269 priv->tlvs = kmemdup(tlvs, sizeoftlvs, GFP_KERNEL);
Chas Williamsd44f7742006-09-29 17:11:14 -07001270 if (priv->tlvs == NULL)
Joe Perchesc48192a2010-01-26 11:40:08 +00001271 return 0;
Chas Williamsd44f7742006-09-29 17:11:14 -07001272 priv->sizeoftlvs = sizeoftlvs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Chas Williamsd44f7742006-09-29 17:11:14 -07001274 skb = alloc_skb(sizeoftlvs, GFP_ATOMIC);
1275 if (skb == NULL)
1276 return 0;
1277 skb->len = sizeoftlvs;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001278 skb_copy_to_linear_data(skb, tlvs, sizeoftlvs);
Chas Williamsd44f7742006-09-29 17:11:14 -07001279 retval = send_to_lecd(priv, l_associate_req, NULL, NULL, skb);
1280 if (retval != 0)
Joe Perchesc48192a2010-01-26 11:40:08 +00001281 pr_info("lec.c: lane2_associate_req() failed\n");
Chas Williamsd44f7742006-09-29 17:11:14 -07001282 /*
1283 * If the previous association has changed we must
1284 * somehow notify other LANE entities about the change
1285 */
Joe Perchesc48192a2010-01-26 11:40:08 +00001286 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287}
1288
1289/*
1290 * LANE2: 3.1.5, LE_ASSOCIATE.indication
1291 *
1292 */
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001293static void lane2_associate_ind(struct net_device *dev, const u8 *mac_addr,
1294 const u8 *tlvs, u32 sizeoftlvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295{
1296#if 0
Chas Williamsd44f7742006-09-29 17:11:14 -07001297 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298#endif
Wang Chen524ad0a2008-11-12 23:39:10 -08001299 struct lec_priv *priv = netdev_priv(dev);
Chas Williamsd44f7742006-09-29 17:11:14 -07001300#if 0 /*
1301 * Why have the TLVs in LE_ARP entries
1302 * since we do not use them? When you
1303 * uncomment this code, make sure the
1304 * TLVs get freed when entry is killed
1305 */
1306 struct lec_arp_table *entry = lec_arp_find(priv, mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Chas Williamsd44f7742006-09-29 17:11:14 -07001308 if (entry == NULL)
1309 return; /* should not happen */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Chas Williamsd44f7742006-09-29 17:11:14 -07001311 kfree(entry->tlvs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Arnaldo Carvalho de Melo2afe37c2006-11-21 01:14:33 -02001313 entry->tlvs = kmemdup(tlvs, sizeoftlvs, GFP_KERNEL);
Chas Williamsd44f7742006-09-29 17:11:14 -07001314 if (entry->tlvs == NULL)
1315 return;
Chas Williamsd44f7742006-09-29 17:11:14 -07001316 entry->sizeoftlvs = sizeoftlvs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317#endif
1318#if 0
Joe Perchesc48192a2010-01-26 11:40:08 +00001319 pr_info("\n");
1320 pr_info("dump of tlvs, sizeoftlvs=%d\n", sizeoftlvs);
Chas Williamsd44f7742006-09-29 17:11:14 -07001321 while (i < sizeoftlvs)
Joe Perchesc48192a2010-01-26 11:40:08 +00001322 pr_cont("%02x ", tlvs[i++]);
Chas Williamsd44f7742006-09-29 17:11:14 -07001323
Joe Perchesc48192a2010-01-26 11:40:08 +00001324 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325#endif
1326
Chas Williamsd44f7742006-09-29 17:11:14 -07001327 /* tell MPOA about the TLVs we saw */
1328 if (priv->lane2_ops && priv->lane2_ops->associate_indicator) {
1329 priv->lane2_ops->associate_indicator(dev, mac_addr,
1330 tlvs, sizeoftlvs);
1331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332}
1333
1334/*
1335 * Here starts what used to lec_arpc.c
1336 *
1337 * lec_arpc.c was added here when making
1338 * lane client modular. October 1997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 */
1340
1341#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342#include <linux/timer.h>
Joe Perchesc48192a2010-01-26 11:40:08 +00001343#include <linux/param.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344#include <asm/atomic.h>
1345#include <linux/inetdevice.h>
1346#include <net/route.h>
1347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348#if 0
Joe Perchesc48192a2010-01-26 11:40:08 +00001349#define pr_debug(format, args...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350/*
Joe Perches99824462010-01-26 11:40:00 +00001351 #define pr_debug printk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352*/
1353#endif
1354#define DEBUG_ARP_TABLE 0
1355
1356#define LEC_ARP_REFRESH_INTERVAL (3*HZ)
1357
David Howellsc4028952006-11-22 14:57:56 +00001358static void lec_arp_check_expire(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359static void lec_arp_expire_arp(unsigned long data);
1360
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001361/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 * Arp table funcs
1363 */
1364
Joe Perchesc48192a2010-01-26 11:40:08 +00001365#define HASH(ch) (ch & (LEC_ARP_TABLE_SIZE - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367/*
1368 * Initialization of arp-cache
1369 */
Chas Williams1fa99612006-09-29 17:11:47 -07001370static void lec_arp_init(struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371{
Chas Williams1fa99612006-09-29 17:11:47 -07001372 unsigned short i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Joe Perchesc48192a2010-01-26 11:40:08 +00001374 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++)
Chas Williamsd0732f62006-09-29 17:14:27 -07001375 INIT_HLIST_HEAD(&priv->lec_arp_tables[i]);
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001376 INIT_HLIST_HEAD(&priv->lec_arp_empty_ones);
1377 INIT_HLIST_HEAD(&priv->lec_no_forward);
1378 INIT_HLIST_HEAD(&priv->mcast_fwds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 spin_lock_init(&priv->lec_arp_lock);
David Howellsc4028952006-11-22 14:57:56 +00001380 INIT_DELAYED_WORK(&priv->lec_arp_work, lec_arp_check_expire);
Chas Williams987e46b2006-09-29 17:15:59 -07001381 schedule_delayed_work(&priv->lec_arp_work, LEC_ARP_REFRESH_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382}
1383
Chas Williams1fa99612006-09-29 17:11:47 -07001384static void lec_arp_clear_vccs(struct lec_arp_table *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385{
Chas Williams1fa99612006-09-29 17:11:47 -07001386 if (entry->vcc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 struct atm_vcc *vcc = entry->vcc;
1388 struct lec_vcc_priv *vpriv = LEC_VCC_PRIV(vcc);
Chas Williams1fa99612006-09-29 17:11:47 -07001389 struct net_device *dev = (struct net_device *)vcc->proto_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Chas Williams1fa99612006-09-29 17:11:47 -07001391 vcc->pop = vpriv->old_pop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 if (vpriv->xoff)
1393 netif_wake_queue(dev);
1394 kfree(vpriv);
1395 vcc->user_back = NULL;
Chas Williams1fa99612006-09-29 17:11:47 -07001396 vcc->push = entry->old_push;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 vcc_release_async(vcc, -EPIPE);
Chas Williamsd0732f62006-09-29 17:14:27 -07001398 entry->vcc = NULL;
Chas Williams1fa99612006-09-29 17:11:47 -07001399 }
1400 if (entry->recv_vcc) {
1401 entry->recv_vcc->push = entry->old_recv_push;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 vcc_release_async(entry->recv_vcc, -EPIPE);
Chas Williams1fa99612006-09-29 17:11:47 -07001403 entry->recv_vcc = NULL;
1404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405}
1406
1407/*
1408 * Insert entry to lec_arp_table
1409 * LANE2: Add to the end of the list to satisfy 8.1.13
1410 */
Chas Williams1fa99612006-09-29 17:11:47 -07001411static inline void
Chas Williamsd0732f62006-09-29 17:14:27 -07001412lec_arp_add(struct lec_priv *priv, struct lec_arp_table *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413{
Chas Williamsd0732f62006-09-29 17:14:27 -07001414 struct hlist_head *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Chas Williamsd0732f62006-09-29 17:14:27 -07001416 tmp = &priv->lec_arp_tables[HASH(entry->mac_addr[ETH_ALEN - 1])];
1417 hlist_add_head(&entry->next, tmp);
Chas Williams1fa99612006-09-29 17:11:47 -07001418
Joe Perches99824462010-01-26 11:40:00 +00001419 pr_debug("Added entry:%pM\n", entry->mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420}
1421
1422/*
1423 * Remove entry from lec_arp_table
1424 */
Chas Williams1fa99612006-09-29 17:11:47 -07001425static int
1426lec_arp_remove(struct lec_priv *priv, struct lec_arp_table *to_remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
Chas Williamsd0732f62006-09-29 17:14:27 -07001428 struct hlist_node *node;
1429 struct lec_arp_table *entry;
1430 int i, remove_vcc = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Joe Perchesc48192a2010-01-26 11:40:08 +00001432 if (!to_remove)
Chas Williams1fa99612006-09-29 17:11:47 -07001433 return -1;
Chas Williamsd0732f62006-09-29 17:14:27 -07001434
1435 hlist_del(&to_remove->next);
Chas Williams1fa99612006-09-29 17:11:47 -07001436 del_timer(&to_remove->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Joe Perchesc48192a2010-01-26 11:40:08 +00001438 /*
1439 * If this is the only MAC connected to this VCC,
1440 * also tear down the VCC
1441 */
Chas Williams1fa99612006-09-29 17:11:47 -07001442 if (to_remove->status >= ESI_FLUSH_PENDING) {
1443 /*
1444 * ESI_FLUSH_PENDING, ESI_FORWARD_DIRECT
1445 */
Chas Williamsd0732f62006-09-29 17:14:27 -07001446 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Joe Perchesc48192a2010-01-26 11:40:08 +00001447 hlist_for_each_entry(entry, node,
1448 &priv->lec_arp_tables[i], next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001449 if (memcmp(to_remove->atm_addr,
1450 entry->atm_addr, ATM_ESA_LEN) == 0) {
Chas Williams1fa99612006-09-29 17:11:47 -07001451 remove_vcc = 0;
1452 break;
1453 }
1454 }
1455 }
1456 if (remove_vcc)
1457 lec_arp_clear_vccs(to_remove);
1458 }
1459 skb_queue_purge(&to_remove->tx_wait); /* FIXME: good place for this? */
1460
Joe Perches99824462010-01-26 11:40:00 +00001461 pr_debug("Removed entry:%pM\n", to_remove->mac_addr);
Chas Williams1fa99612006-09-29 17:11:47 -07001462 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463}
1464
1465#if DEBUG_ARP_TABLE
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -07001466static const char *get_status_string(unsigned char st)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
Chas Williams1fa99612006-09-29 17:11:47 -07001468 switch (st) {
1469 case ESI_UNKNOWN:
1470 return "ESI_UNKNOWN";
1471 case ESI_ARP_PENDING:
1472 return "ESI_ARP_PENDING";
1473 case ESI_VC_PENDING:
1474 return "ESI_VC_PENDING";
1475 case ESI_FLUSH_PENDING:
1476 return "ESI_FLUSH_PENDING";
1477 case ESI_FORWARD_DIRECT:
1478 return "ESI_FORWARD_DIRECT";
Chas Williams1fa99612006-09-29 17:11:47 -07001479 }
Joe Perchesc48192a2010-01-26 11:40:08 +00001480 return "<UNKNOWN>";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Chas Williams1fa99612006-09-29 17:11:47 -07001483static void dump_arp_table(struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484{
Chas Williamsd0732f62006-09-29 17:14:27 -07001485 struct hlist_node *node;
Chas Williams1fa99612006-09-29 17:11:47 -07001486 struct lec_arp_table *rulla;
Chas Williamsd0732f62006-09-29 17:14:27 -07001487 char buf[256];
1488 int i, j, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Joe Perchesc48192a2010-01-26 11:40:08 +00001490 pr_info("Dump %p:\n", priv);
Chas Williams1fa99612006-09-29 17:11:47 -07001491 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Joe Perchesc48192a2010-01-26 11:40:08 +00001492 hlist_for_each_entry(rulla, node,
1493 &priv->lec_arp_tables[i], next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001494 offset = 0;
1495 offset += sprintf(buf, "%d: %p\n", i, rulla);
Joe Perchesc48192a2010-01-26 11:40:08 +00001496 offset += sprintf(buf + offset, "Mac: %pM",
1497 rulla->mac_addr);
1498 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001499 for (j = 0; j < ATM_ESA_LEN; j++) {
1500 offset += sprintf(buf + offset,
1501 "%2.2x ",
1502 rulla->atm_addr[j] & 0xff);
1503 }
1504 offset += sprintf(buf + offset,
1505 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1506 rulla->vcc ? rulla->vcc->vpi : 0,
1507 rulla->vcc ? rulla->vcc->vci : 0,
1508 rulla->recv_vcc ? rulla->recv_vcc->
1509 vpi : 0,
1510 rulla->recv_vcc ? rulla->recv_vcc->
1511 vci : 0, rulla->last_used,
1512 rulla->timestamp, rulla->no_tries);
1513 offset +=
1514 sprintf(buf + offset,
1515 "Flags:%x, Packets_flooded:%x, Status: %s ",
1516 rulla->flags, rulla->packets_flooded,
1517 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001518 pr_info("%s\n", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001519 }
Chas Williams1fa99612006-09-29 17:11:47 -07001520 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001521
1522 if (!hlist_empty(&priv->lec_no_forward))
Joe Perchesc48192a2010-01-26 11:40:08 +00001523 pr_info("No forward\n");
Chas Williamsd0732f62006-09-29 17:14:27 -07001524 hlist_for_each_entry(rulla, node, &priv->lec_no_forward, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001525 offset = 0;
Joe Perchesc48192a2010-01-26 11:40:08 +00001526 offset += sprintf(buf + offset, "Mac: %pM", rulla->mac_addr);
1527 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001528 for (j = 0; j < ATM_ESA_LEN; j++) {
1529 offset += sprintf(buf + offset, "%2.2x ",
1530 rulla->atm_addr[j] & 0xff);
1531 }
1532 offset += sprintf(buf + offset,
1533 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1534 rulla->vcc ? rulla->vcc->vpi : 0,
1535 rulla->vcc ? rulla->vcc->vci : 0,
1536 rulla->recv_vcc ? rulla->recv_vcc->vpi : 0,
1537 rulla->recv_vcc ? rulla->recv_vcc->vci : 0,
1538 rulla->last_used,
1539 rulla->timestamp, rulla->no_tries);
1540 offset += sprintf(buf + offset,
1541 "Flags:%x, Packets_flooded:%x, Status: %s ",
1542 rulla->flags, rulla->packets_flooded,
1543 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001544 pr_info("%s\n", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001545 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001546
1547 if (!hlist_empty(&priv->lec_arp_empty_ones))
Joe Perchesc48192a2010-01-26 11:40:08 +00001548 pr_info("Empty ones\n");
Chas Williamsd0732f62006-09-29 17:14:27 -07001549 hlist_for_each_entry(rulla, node, &priv->lec_arp_empty_ones, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001550 offset = 0;
Joe Perchesc48192a2010-01-26 11:40:08 +00001551 offset += sprintf(buf + offset, "Mac: %pM", rulla->mac_addr);
1552 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001553 for (j = 0; j < ATM_ESA_LEN; j++) {
1554 offset += sprintf(buf + offset, "%2.2x ",
1555 rulla->atm_addr[j] & 0xff);
1556 }
1557 offset += sprintf(buf + offset,
1558 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1559 rulla->vcc ? rulla->vcc->vpi : 0,
1560 rulla->vcc ? rulla->vcc->vci : 0,
1561 rulla->recv_vcc ? rulla->recv_vcc->vpi : 0,
1562 rulla->recv_vcc ? rulla->recv_vcc->vci : 0,
1563 rulla->last_used,
1564 rulla->timestamp, rulla->no_tries);
1565 offset += sprintf(buf + offset,
1566 "Flags:%x, Packets_flooded:%x, Status: %s ",
1567 rulla->flags, rulla->packets_flooded,
1568 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001569 pr_info("%s", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Chas Williamsd0732f62006-09-29 17:14:27 -07001572 if (!hlist_empty(&priv->mcast_fwds))
Joe Perchesc48192a2010-01-26 11:40:08 +00001573 pr_info("Multicast Forward VCCs\n");
Chas Williamsd0732f62006-09-29 17:14:27 -07001574 hlist_for_each_entry(rulla, node, &priv->mcast_fwds, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001575 offset = 0;
Joe Perchesc48192a2010-01-26 11:40:08 +00001576 offset += sprintf(buf + offset, "Mac: %pM", rulla->mac_addr);
1577 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001578 for (j = 0; j < ATM_ESA_LEN; j++) {
1579 offset += sprintf(buf + offset, "%2.2x ",
1580 rulla->atm_addr[j] & 0xff);
1581 }
1582 offset += sprintf(buf + offset,
1583 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1584 rulla->vcc ? rulla->vcc->vpi : 0,
1585 rulla->vcc ? rulla->vcc->vci : 0,
1586 rulla->recv_vcc ? rulla->recv_vcc->vpi : 0,
1587 rulla->recv_vcc ? rulla->recv_vcc->vci : 0,
1588 rulla->last_used,
1589 rulla->timestamp, rulla->no_tries);
1590 offset += sprintf(buf + offset,
1591 "Flags:%x, Packets_flooded:%x, Status: %s ",
1592 rulla->flags, rulla->packets_flooded,
1593 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001594 pr_info("%s\n", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597}
Chas Williamsd0732f62006-09-29 17:14:27 -07001598#else
1599#define dump_arp_table(priv) do { } while (0)
1600#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
1602/*
1603 * Destruction of arp-cache
1604 */
Chas Williams1fa99612006-09-29 17:11:47 -07001605static void lec_arp_destroy(struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
1607 unsigned long flags;
Chas Williamsd0732f62006-09-29 17:14:27 -07001608 struct hlist_node *node, *next;
1609 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001610 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Chas Williams987e46b2006-09-29 17:15:59 -07001612 cancel_rearming_delayed_work(&priv->lec_arp_work);
Chas Williams1fa99612006-09-29 17:11:47 -07001613
1614 /*
1615 * Remove all entries
1616 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
1618 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001619 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Joe Perchesc48192a2010-01-26 11:40:08 +00001620 hlist_for_each_entry_safe(entry, node, next,
1621 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001622 lec_arp_remove(priv, entry);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001623 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001624 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001625 INIT_HLIST_HEAD(&priv->lec_arp_tables[i]);
Chas Williams1fa99612006-09-29 17:11:47 -07001626 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001627
Joe Perchesc48192a2010-01-26 11:40:08 +00001628 hlist_for_each_entry_safe(entry, node, next,
1629 &priv->lec_arp_empty_ones, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001630 del_timer_sync(&entry->timer);
1631 lec_arp_clear_vccs(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001632 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001633 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001634 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001635 INIT_HLIST_HEAD(&priv->lec_arp_empty_ones);
1636
Joe Perchesc48192a2010-01-26 11:40:08 +00001637 hlist_for_each_entry_safe(entry, node, next,
1638 &priv->lec_no_forward, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001639 del_timer_sync(&entry->timer);
1640 lec_arp_clear_vccs(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001641 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001642 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001643 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001644 INIT_HLIST_HEAD(&priv->lec_no_forward);
1645
1646 hlist_for_each_entry_safe(entry, node, next, &priv->mcast_fwds, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001647 /* No timer, LANEv2 7.1.20 and 2.3.5.3 */
1648 lec_arp_clear_vccs(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001649 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001650 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001651 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001652 INIT_HLIST_HEAD(&priv->mcast_fwds);
Chas Williams1fa99612006-09-29 17:11:47 -07001653 priv->mcast_vcc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1655}
1656
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001657/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 * Find entry by mac_address
1659 */
Chas Williams1fa99612006-09-29 17:11:47 -07001660static struct lec_arp_table *lec_arp_find(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001661 const unsigned char *mac_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662{
Chas Williamsd0732f62006-09-29 17:14:27 -07001663 struct hlist_node *node;
1664 struct hlist_head *head;
1665 struct lec_arp_table *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
Joe Perches99824462010-01-26 11:40:00 +00001667 pr_debug("%pM\n", mac_addr);
Chas Williams1fa99612006-09-29 17:11:47 -07001668
Chas Williamsd0732f62006-09-29 17:14:27 -07001669 head = &priv->lec_arp_tables[HASH(mac_addr[ETH_ALEN - 1])];
1670 hlist_for_each_entry(entry, node, head, next) {
Joe Perchesc48192a2010-01-26 11:40:08 +00001671 if (!compare_ether_addr(mac_addr, entry->mac_addr))
Chas Williamsd0732f62006-09-29 17:14:27 -07001672 return entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001673 }
1674 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675}
1676
Chas Williams1fa99612006-09-29 17:11:47 -07001677static struct lec_arp_table *make_entry(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001678 const unsigned char *mac_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679{
Chas Williams1fa99612006-09-29 17:11:47 -07001680 struct lec_arp_table *to_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Chas Williams1fa99612006-09-29 17:11:47 -07001682 to_return = kzalloc(sizeof(struct lec_arp_table), GFP_ATOMIC);
1683 if (!to_return) {
Joe Perchesc48192a2010-01-26 11:40:08 +00001684 pr_info("LEC: Arp entry kmalloc failed\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001685 return NULL;
1686 }
1687 memcpy(to_return->mac_addr, mac_addr, ETH_ALEN);
Chas Williamsd0732f62006-09-29 17:14:27 -07001688 INIT_HLIST_NODE(&to_return->next);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08001689 setup_timer(&to_return->timer, lec_arp_expire_arp,
1690 (unsigned long)to_return);
Chas Williams1fa99612006-09-29 17:11:47 -07001691 to_return->last_used = jiffies;
1692 to_return->priv = priv;
1693 skb_queue_head_init(&to_return->tx_wait);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001694 atomic_set(&to_return->usage, 1);
Chas Williams1fa99612006-09-29 17:11:47 -07001695 return to_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696}
1697
Chas Williams1fa99612006-09-29 17:11:47 -07001698/* Arp sent timer expired */
1699static void lec_arp_expire_arp(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
Chas Williams1fa99612006-09-29 17:11:47 -07001701 struct lec_arp_table *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Chas Williams1fa99612006-09-29 17:11:47 -07001703 entry = (struct lec_arp_table *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Joe Perches99824462010-01-26 11:40:00 +00001705 pr_debug("\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001706 if (entry->status == ESI_ARP_PENDING) {
1707 if (entry->no_tries <= entry->priv->max_retry_count) {
1708 if (entry->is_rdesc)
1709 send_to_lecd(entry->priv, l_rdesc_arp_xmt,
1710 entry->mac_addr, NULL, NULL);
1711 else
1712 send_to_lecd(entry->priv, l_arp_xmt,
1713 entry->mac_addr, NULL, NULL);
1714 entry->no_tries++;
1715 }
1716 mod_timer(&entry->timer, jiffies + (1 * HZ));
1717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718}
1719
Chas Williams1fa99612006-09-29 17:11:47 -07001720/* Unknown/unused vcc expire, remove associated entry */
1721static void lec_arp_expire_vcc(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722{
1723 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07001724 struct lec_arp_table *to_remove = (struct lec_arp_table *)data;
1725 struct lec_priv *priv = (struct lec_priv *)to_remove->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
Chas Williams1fa99612006-09-29 17:11:47 -07001727 del_timer(&to_remove->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Joe Perches99824462010-01-26 11:40:00 +00001729 pr_debug("%p %p: vpi:%d vci:%d\n",
1730 to_remove, priv,
1731 to_remove->vcc ? to_remove->recv_vcc->vpi : 0,
1732 to_remove->vcc ? to_remove->recv_vcc->vci : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
1734 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd0732f62006-09-29 17:14:27 -07001735 hlist_del(&to_remove->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1737
Chas Williams1fa99612006-09-29 17:11:47 -07001738 lec_arp_clear_vccs(to_remove);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001739 lec_arp_put(to_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740}
1741
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001742static bool __lec_arp_check_expire(struct lec_arp_table *entry,
1743 unsigned long now,
1744 struct lec_priv *priv)
1745{
1746 unsigned long time_to_check;
1747
1748 if ((entry->flags) & LEC_REMOTE_FLAG && priv->topology_change)
1749 time_to_check = priv->forward_delay_time;
1750 else
1751 time_to_check = priv->aging_time;
1752
1753 pr_debug("About to expire: %lx - %lx > %lx\n",
1754 now, entry->last_used, time_to_check);
1755 if (time_after(now, entry->last_used + time_to_check) &&
1756 !(entry->flags & LEC_PERMANENT_FLAG) &&
1757 !(entry->mac_addr[0] & 0x01)) { /* LANE2: 7.1.20 */
1758 /* Remove entry */
1759 pr_debug("Entry timed out\n");
1760 lec_arp_remove(priv, entry);
1761 lec_arp_put(entry);
1762 } else {
1763 /* Something else */
1764 if ((entry->status == ESI_VC_PENDING ||
1765 entry->status == ESI_ARP_PENDING) &&
1766 time_after_eq(now, entry->timestamp +
1767 priv->max_unknown_frame_time)) {
1768 entry->timestamp = jiffies;
1769 entry->packets_flooded = 0;
1770 if (entry->status == ESI_VC_PENDING)
1771 send_to_lecd(priv, l_svc_setup,
1772 entry->mac_addr,
1773 entry->atm_addr,
1774 NULL);
1775 }
1776 if (entry->status == ESI_FLUSH_PENDING &&
1777 time_after_eq(now, entry->timestamp +
1778 priv->path_switching_delay)) {
1779 lec_arp_hold(entry);
1780 return true;
1781 }
1782 }
1783
1784 return false;
1785}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786/*
1787 * Expire entries.
1788 * 1. Re-set timer
1789 * 2. For each entry, delete entries that have aged past the age limit.
1790 * 3. For each entry, depending on the status of the entry, perform
1791 * the following maintenance.
1792 * a. If status is ESI_VC_PENDING or ESI_ARP_PENDING then if the
1793 * tick_count is above the max_unknown_frame_time, clear
1794 * the tick_count to zero and clear the packets_flooded counter
1795 * to zero. This supports the packet rate limit per address
1796 * while flooding unknowns.
1797 * b. If the status is ESI_FLUSH_PENDING and the tick_count is greater
1798 * than or equal to the path_switching_delay, change the status
1799 * to ESI_FORWARD_DIRECT. This causes the flush period to end
1800 * regardless of the progress of the flush protocol.
1801 */
David Howellsc4028952006-11-22 14:57:56 +00001802static void lec_arp_check_expire(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803{
1804 unsigned long flags;
David Howellsc4028952006-11-22 14:57:56 +00001805 struct lec_priv *priv =
1806 container_of(work, struct lec_priv, lec_arp_work.work);
Chas Williamsd0732f62006-09-29 17:14:27 -07001807 struct hlist_node *node, *next;
1808 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001809 unsigned long now;
Chas Williams1fa99612006-09-29 17:11:47 -07001810 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Joe Perches99824462010-01-26 11:40:00 +00001812 pr_debug("%p\n", priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 now = jiffies;
Chas Williams6656e3c2006-09-29 17:17:17 -07001814restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001816 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Joe Perchesc48192a2010-01-26 11:40:08 +00001817 hlist_for_each_entry_safe(entry, node, next,
1818 &priv->lec_arp_tables[i], next) {
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001819 if (__lec_arp_check_expire(entry, now, priv)) {
1820 struct sk_buff *skb;
1821 struct atm_vcc *vcc = entry->vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001823 spin_unlock_irqrestore(&priv->lec_arp_lock,
1824 flags);
1825 while ((skb = skb_dequeue(&entry->tx_wait)))
1826 lec_send(vcc, skb);
1827 entry->last_used = jiffies;
1828 entry->status = ESI_FORWARD_DIRECT;
Chas Williams33a9c2d2006-09-29 17:16:48 -07001829 lec_arp_put(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001831 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 }
1833 }
1834 }
1835 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1836
Chas Williams987e46b2006-09-29 17:15:59 -07001837 schedule_delayed_work(&priv->lec_arp_work, LEC_ARP_REFRESH_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838}
Chas Williams1fa99612006-09-29 17:11:47 -07001839
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840/*
1841 * Try to find vcc where mac_address is attached.
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001842 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 */
Chas Williams1fa99612006-09-29 17:11:47 -07001844static struct atm_vcc *lec_arp_resolve(struct lec_priv *priv,
Joe Perchesc48192a2010-01-26 11:40:08 +00001845 const unsigned char *mac_to_find,
1846 int is_rdesc,
Chas Williams1fa99612006-09-29 17:11:47 -07001847 struct lec_arp_table **ret_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
1849 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07001850 struct lec_arp_table *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 struct atm_vcc *found;
1852
Chas Williams1fa99612006-09-29 17:11:47 -07001853 if (mac_to_find[0] & 0x01) {
1854 switch (priv->lane_version) {
1855 case 1:
1856 return priv->mcast_vcc;
Chas Williams1fa99612006-09-29 17:11:47 -07001857 case 2: /* LANE2 wants arp for multicast addresses */
1858 if (!compare_ether_addr(mac_to_find, bus_mac))
1859 return priv->mcast_vcc;
1860 break;
1861 default:
1862 break;
1863 }
1864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
1866 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001867 entry = lec_arp_find(priv, mac_to_find);
1868
1869 if (entry) {
1870 if (entry->status == ESI_FORWARD_DIRECT) {
1871 /* Connection Ok */
1872 entry->last_used = jiffies;
Chas Williams6656e3c2006-09-29 17:17:17 -07001873 lec_arp_hold(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001874 *ret_entry = entry;
1875 found = entry->vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001877 }
1878 /*
1879 * If the LE_ARP cache entry is still pending, reset count to 0
Scott Talbert75b895c2005-09-29 17:31:30 -07001880 * so another LE_ARP request can be made for this frame.
1881 */
Joe Perchesc48192a2010-01-26 11:40:08 +00001882 if (entry->status == ESI_ARP_PENDING)
Scott Talbert75b895c2005-09-29 17:31:30 -07001883 entry->no_tries = 0;
Chas Williams1fa99612006-09-29 17:11:47 -07001884 /*
1885 * Data direct VC not yet set up, check to see if the unknown
1886 * frame count is greater than the limit. If the limit has
1887 * not been reached, allow the caller to send packet to
1888 * BUS.
1889 */
1890 if (entry->status != ESI_FLUSH_PENDING &&
1891 entry->packets_flooded <
1892 priv->maximum_unknown_frame_count) {
1893 entry->packets_flooded++;
Joe Perches99824462010-01-26 11:40:00 +00001894 pr_debug("Flooding..\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001895 found = priv->mcast_vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001897 }
1898 /*
1899 * We got here because entry->status == ESI_FLUSH_PENDING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 * or BUS flood limit was reached for an entry which is
1901 * in ESI_ARP_PENDING or ESI_VC_PENDING state.
1902 */
Chas Williams6656e3c2006-09-29 17:17:17 -07001903 lec_arp_hold(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001904 *ret_entry = entry;
Joe Perches99824462010-01-26 11:40:00 +00001905 pr_debug("entry->status %d entry->vcc %p\n", entry->status,
1906 entry->vcc);
Chas Williams1fa99612006-09-29 17:11:47 -07001907 found = NULL;
1908 } else {
1909 /* No matching entry was found */
1910 entry = make_entry(priv, mac_to_find);
Joe Perches99824462010-01-26 11:40:00 +00001911 pr_debug("Making entry\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001912 if (!entry) {
1913 found = priv->mcast_vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001915 }
1916 lec_arp_add(priv, entry);
1917 /* We want arp-request(s) to be sent */
1918 entry->packets_flooded = 1;
1919 entry->status = ESI_ARP_PENDING;
1920 entry->no_tries = 1;
1921 entry->last_used = entry->timestamp = jiffies;
1922 entry->is_rdesc = is_rdesc;
1923 if (entry->is_rdesc)
1924 send_to_lecd(priv, l_rdesc_arp_xmt, mac_to_find, NULL,
1925 NULL);
1926 else
1927 send_to_lecd(priv, l_arp_xmt, mac_to_find, NULL, NULL);
1928 entry->timer.expires = jiffies + (1 * HZ);
1929 entry->timer.function = lec_arp_expire_arp;
1930 add_timer(&entry->timer);
1931 found = priv->mcast_vcc;
1932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934out:
1935 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1936 return found;
1937}
1938
1939static int
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001940lec_addr_delete(struct lec_priv *priv, const unsigned char *atm_addr,
Chas Williams1fa99612006-09-29 17:11:47 -07001941 unsigned long permanent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942{
1943 unsigned long flags;
Chas Williamsd0732f62006-09-29 17:14:27 -07001944 struct hlist_node *node, *next;
1945 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001946 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
Joe Perches99824462010-01-26 11:40:00 +00001948 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001950 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Joe Perchesc48192a2010-01-26 11:40:08 +00001951 hlist_for_each_entry_safe(entry, node, next,
1952 &priv->lec_arp_tables[i], next) {
1953 if (!memcmp(atm_addr, entry->atm_addr, ATM_ESA_LEN) &&
1954 (permanent ||
1955 !(entry->flags & LEC_PERMANENT_FLAG))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 lec_arp_remove(priv, entry);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001957 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001958 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001960 return 0;
1961 }
1962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001964 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965}
1966
1967/*
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001968 * Notifies: Response to arp_request (atm_addr != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 */
1970static void
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001971lec_arp_update(struct lec_priv *priv, const unsigned char *mac_addr,
1972 const unsigned char *atm_addr, unsigned long remoteflag,
Chas Williams1fa99612006-09-29 17:11:47 -07001973 unsigned int targetless_le_arp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974{
1975 unsigned long flags;
Chas Williamsd0732f62006-09-29 17:14:27 -07001976 struct hlist_node *node, *next;
Chas Williams1fa99612006-09-29 17:11:47 -07001977 struct lec_arp_table *entry, *tmp;
1978 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
Joe Perches99824462010-01-26 11:40:00 +00001980 pr_debug("%smac:%pM\n",
1981 (targetless_le_arp) ? "targetless " : "", mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
1983 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001984 entry = lec_arp_find(priv, mac_addr);
1985 if (entry == NULL && targetless_le_arp)
1986 goto out; /*
1987 * LANE2: ignore targetless LE_ARPs for which
1988 * we have no entry in the cache. 7.1.30
1989 */
Chas Williamsd0732f62006-09-29 17:14:27 -07001990 if (!hlist_empty(&priv->lec_arp_empty_ones)) {
Joe Perchesc48192a2010-01-26 11:40:08 +00001991 hlist_for_each_entry_safe(entry, node, next,
1992 &priv->lec_arp_empty_ones, next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001993 if (memcmp(entry->atm_addr, atm_addr, ATM_ESA_LEN) == 0) {
1994 hlist_del(&entry->next);
Chas Williams1fa99612006-09-29 17:11:47 -07001995 del_timer(&entry->timer);
Chas Williamsd0732f62006-09-29 17:14:27 -07001996 tmp = lec_arp_find(priv, mac_addr);
1997 if (tmp) {
1998 del_timer(&tmp->timer);
1999 tmp->status = ESI_FORWARD_DIRECT;
2000 memcpy(tmp->atm_addr, atm_addr, ATM_ESA_LEN);
2001 tmp->vcc = entry->vcc;
2002 tmp->old_push = entry->old_push;
2003 tmp->last_used = jiffies;
2004 del_timer(&entry->timer);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002005 lec_arp_put(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07002006 entry = tmp;
2007 } else {
2008 entry->status = ESI_FORWARD_DIRECT;
2009 memcpy(entry->mac_addr, mac_addr, ETH_ALEN);
2010 entry->last_used = jiffies;
2011 lec_arp_add(priv, entry);
2012 }
2013 if (remoteflag)
2014 entry->flags |= LEC_REMOTE_FLAG;
2015 else
2016 entry->flags &= ~LEC_REMOTE_FLAG;
Stephen Hemminger52240062007-08-28 15:22:09 -07002017 pr_debug("After update\n");
Chas Williamsd0732f62006-09-29 17:14:27 -07002018 dump_arp_table(priv);
2019 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002020 }
Chas Williams1fa99612006-09-29 17:11:47 -07002021 }
2022 }
Chas Williamsd0732f62006-09-29 17:14:27 -07002023
Chas Williams1fa99612006-09-29 17:11:47 -07002024 entry = lec_arp_find(priv, mac_addr);
2025 if (!entry) {
2026 entry = make_entry(priv, mac_addr);
2027 if (!entry)
2028 goto out;
2029 entry->status = ESI_UNKNOWN;
2030 lec_arp_add(priv, entry);
2031 /* Temporary, changes before end of function */
2032 }
2033 memcpy(entry->atm_addr, atm_addr, ATM_ESA_LEN);
2034 del_timer(&entry->timer);
2035 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Joe Perchesc48192a2010-01-26 11:40:08 +00002036 hlist_for_each_entry(tmp, node,
2037 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002038 if (entry != tmp &&
2039 !memcmp(tmp->atm_addr, atm_addr, ATM_ESA_LEN)) {
2040 /* Vcc to this host exists */
2041 if (tmp->status > ESI_VC_PENDING) {
2042 /*
2043 * ESI_FLUSH_PENDING,
2044 * ESI_FORWARD_DIRECT
2045 */
2046 entry->vcc = tmp->vcc;
2047 entry->old_push = tmp->old_push;
2048 }
2049 entry->status = tmp->status;
2050 break;
2051 }
2052 }
2053 }
2054 if (remoteflag)
2055 entry->flags |= LEC_REMOTE_FLAG;
2056 else
2057 entry->flags &= ~LEC_REMOTE_FLAG;
2058 if (entry->status == ESI_ARP_PENDING || entry->status == ESI_UNKNOWN) {
2059 entry->status = ESI_VC_PENDING;
Chas Williamsd0732f62006-09-29 17:14:27 -07002060 send_to_lecd(priv, l_svc_setup, entry->mac_addr, atm_addr, NULL);
Chas Williams1fa99612006-09-29 17:11:47 -07002061 }
Stephen Hemminger52240062007-08-28 15:22:09 -07002062 pr_debug("After update2\n");
Chas Williams1fa99612006-09-29 17:11:47 -07002063 dump_arp_table(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064out:
2065 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2066}
2067
2068/*
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09002069 * Notifies: Vcc setup ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 */
2071static void
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07002072lec_vcc_added(struct lec_priv *priv, const struct atmlec_ioc *ioc_data,
Chas Williams1fa99612006-09-29 17:11:47 -07002073 struct atm_vcc *vcc,
2074 void (*old_push) (struct atm_vcc *vcc, struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075{
2076 unsigned long flags;
Chas Williamsd0732f62006-09-29 17:14:27 -07002077 struct hlist_node *node;
Chas Williams1fa99612006-09-29 17:11:47 -07002078 struct lec_arp_table *entry;
2079 int i, found_entry = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
2081 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Joe Perchesc48192a2010-01-26 11:40:08 +00002082 /* Vcc for Multicast Forward. No timer, LANEv2 7.1.20 and 2.3.5.3 */
Chas Williams1fa99612006-09-29 17:11:47 -07002083 if (ioc_data->receive == 2) {
Stephen Hemminger52240062007-08-28 15:22:09 -07002084 pr_debug("LEC_ARP: Attaching mcast forward\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085#if 0
Chas Williams1fa99612006-09-29 17:11:47 -07002086 entry = lec_arp_find(priv, bus_mac);
2087 if (!entry) {
Joe Perchesc48192a2010-01-26 11:40:08 +00002088 pr_info("LEC_ARP: Multicast entry not found!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002090 }
2091 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
2092 entry->recv_vcc = vcc;
2093 entry->old_recv_push = old_push;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094#endif
Chas Williams1fa99612006-09-29 17:11:47 -07002095 entry = make_entry(priv, bus_mac);
2096 if (entry == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002098 del_timer(&entry->timer);
2099 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
2100 entry->recv_vcc = vcc;
2101 entry->old_recv_push = old_push;
Chas Williamsd0732f62006-09-29 17:14:27 -07002102 hlist_add_head(&entry->next, &priv->mcast_fwds);
Chas Williams1fa99612006-09-29 17:11:47 -07002103 goto out;
2104 } else if (ioc_data->receive == 1) {
2105 /*
2106 * Vcc which we don't want to make default vcc,
2107 * attach it anyway.
2108 */
Joe Perches99824462010-01-26 11:40:00 +00002109 pr_debug("LEC_ARP:Attaching data direct, not default: %2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x\n",
2110 ioc_data->atm_addr[0], ioc_data->atm_addr[1],
2111 ioc_data->atm_addr[2], ioc_data->atm_addr[3],
2112 ioc_data->atm_addr[4], ioc_data->atm_addr[5],
2113 ioc_data->atm_addr[6], ioc_data->atm_addr[7],
2114 ioc_data->atm_addr[8], ioc_data->atm_addr[9],
2115 ioc_data->atm_addr[10], ioc_data->atm_addr[11],
2116 ioc_data->atm_addr[12], ioc_data->atm_addr[13],
2117 ioc_data->atm_addr[14], ioc_data->atm_addr[15],
2118 ioc_data->atm_addr[16], ioc_data->atm_addr[17],
2119 ioc_data->atm_addr[18], ioc_data->atm_addr[19]);
Chas Williams1fa99612006-09-29 17:11:47 -07002120 entry = make_entry(priv, bus_mac);
2121 if (entry == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002123 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
2124 memset(entry->mac_addr, 0, ETH_ALEN);
2125 entry->recv_vcc = vcc;
2126 entry->old_recv_push = old_push;
2127 entry->status = ESI_UNKNOWN;
2128 entry->timer.expires = jiffies + priv->vcc_timeout_period;
2129 entry->timer.function = lec_arp_expire_vcc;
Chas Williamsd0732f62006-09-29 17:14:27 -07002130 hlist_add_head(&entry->next, &priv->lec_no_forward);
Chas Williams1fa99612006-09-29 17:11:47 -07002131 add_timer(&entry->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 dump_arp_table(priv);
2133 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002134 }
Joe Perches99824462010-01-26 11:40:00 +00002135 pr_debug("LEC_ARP:Attaching data direct, default: %2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x\n",
2136 ioc_data->atm_addr[0], ioc_data->atm_addr[1],
2137 ioc_data->atm_addr[2], ioc_data->atm_addr[3],
2138 ioc_data->atm_addr[4], ioc_data->atm_addr[5],
2139 ioc_data->atm_addr[6], ioc_data->atm_addr[7],
2140 ioc_data->atm_addr[8], ioc_data->atm_addr[9],
2141 ioc_data->atm_addr[10], ioc_data->atm_addr[11],
2142 ioc_data->atm_addr[12], ioc_data->atm_addr[13],
2143 ioc_data->atm_addr[14], ioc_data->atm_addr[15],
2144 ioc_data->atm_addr[16], ioc_data->atm_addr[17],
2145 ioc_data->atm_addr[18], ioc_data->atm_addr[19]);
Chas Williams1fa99612006-09-29 17:11:47 -07002146 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Joe Perchesc48192a2010-01-26 11:40:08 +00002147 hlist_for_each_entry(entry, node,
2148 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002149 if (memcmp
2150 (ioc_data->atm_addr, entry->atm_addr,
2151 ATM_ESA_LEN) == 0) {
Stephen Hemminger52240062007-08-28 15:22:09 -07002152 pr_debug("LEC_ARP: Attaching data direct\n");
2153 pr_debug("Currently -> Vcc: %d, Rvcc:%d\n",
Joe Perches99824462010-01-26 11:40:00 +00002154 entry->vcc ? entry->vcc->vci : 0,
2155 entry->recv_vcc ? entry->recv_vcc->
2156 vci : 0);
Chas Williams1fa99612006-09-29 17:11:47 -07002157 found_entry = 1;
2158 del_timer(&entry->timer);
2159 entry->vcc = vcc;
2160 entry->old_push = old_push;
2161 if (entry->status == ESI_VC_PENDING) {
2162 if (priv->maximum_unknown_frame_count
2163 == 0)
2164 entry->status =
2165 ESI_FORWARD_DIRECT;
2166 else {
2167 entry->timestamp = jiffies;
2168 entry->status =
2169 ESI_FLUSH_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170#if 0
Chas Williams1fa99612006-09-29 17:11:47 -07002171 send_to_lecd(priv, l_flush_xmt,
2172 NULL,
2173 entry->atm_addr,
2174 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175#endif
Chas Williams1fa99612006-09-29 17:11:47 -07002176 }
2177 } else {
2178 /*
2179 * They were forming a connection
2180 * to us, and we to them. Our
2181 * ATM address is numerically lower
2182 * than theirs, so we make connection
2183 * we formed into default VCC (8.1.11).
2184 * Connection they made gets torn
2185 * down. This might confuse some
2186 * clients. Can be changed if
2187 * someone reports trouble...
2188 */
2189 ;
2190 }
2191 }
2192 }
2193 }
2194 if (found_entry) {
Stephen Hemminger52240062007-08-28 15:22:09 -07002195 pr_debug("After vcc was added\n");
Chas Williams1fa99612006-09-29 17:11:47 -07002196 dump_arp_table(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002198 }
2199 /*
2200 * Not found, snatch address from first data packet that arrives
2201 * from this vcc
2202 */
2203 entry = make_entry(priv, bus_mac);
2204 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002206 entry->vcc = vcc;
2207 entry->old_push = old_push;
2208 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
2209 memset(entry->mac_addr, 0, ETH_ALEN);
2210 entry->status = ESI_UNKNOWN;
Chas Williamsd0732f62006-09-29 17:14:27 -07002211 hlist_add_head(&entry->next, &priv->lec_arp_empty_ones);
Chas Williams1fa99612006-09-29 17:11:47 -07002212 entry->timer.expires = jiffies + priv->vcc_timeout_period;
2213 entry->timer.function = lec_arp_expire_vcc;
2214 add_timer(&entry->timer);
Stephen Hemminger52240062007-08-28 15:22:09 -07002215 pr_debug("After vcc was added\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 dump_arp_table(priv);
2217out:
2218 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2219}
2220
Chas Williams1fa99612006-09-29 17:11:47 -07002221static void lec_flush_complete(struct lec_priv *priv, unsigned long tran_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222{
2223 unsigned long flags;
Chas Williamsd0732f62006-09-29 17:14:27 -07002224 struct hlist_node *node;
Chas Williams1fa99612006-09-29 17:11:47 -07002225 struct lec_arp_table *entry;
2226 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
Joe Perches99824462010-01-26 11:40:00 +00002228 pr_debug("%lx\n", tran_id);
Chas Williams6656e3c2006-09-29 17:17:17 -07002229restart:
Chas Williams1fa99612006-09-29 17:11:47 -07002230 spin_lock_irqsave(&priv->lec_arp_lock, flags);
2231 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Joe Perchesc48192a2010-01-26 11:40:08 +00002232 hlist_for_each_entry(entry, node,
2233 &priv->lec_arp_tables[i], next) {
2234 if (entry->flush_tran_id == tran_id &&
2235 entry->status == ESI_FLUSH_PENDING) {
Chas Williams1fa99612006-09-29 17:11:47 -07002236 struct sk_buff *skb;
Chas Williams6656e3c2006-09-29 17:17:17 -07002237 struct atm_vcc *vcc = entry->vcc;
Chas Williams1fa99612006-09-29 17:11:47 -07002238
Chas Williams6656e3c2006-09-29 17:17:17 -07002239 lec_arp_hold(entry);
Joe Perchesc48192a2010-01-26 11:40:08 +00002240 spin_unlock_irqrestore(&priv->lec_arp_lock,
2241 flags);
Joe Perchesb4c84ec2010-01-26 11:40:19 +00002242 while ((skb = skb_dequeue(&entry->tx_wait)))
Stephen Hemminger162619e2009-01-09 13:01:01 +00002243 lec_send(vcc, skb);
Chas Williams6656e3c2006-09-29 17:17:17 -07002244 entry->last_used = jiffies;
Chas Williams1fa99612006-09-29 17:11:47 -07002245 entry->status = ESI_FORWARD_DIRECT;
Chas Williams6656e3c2006-09-29 17:17:17 -07002246 lec_arp_put(entry);
Stephen Hemminger52240062007-08-28 15:22:09 -07002247 pr_debug("LEC_ARP: Flushed\n");
Chas Williams6656e3c2006-09-29 17:17:17 -07002248 goto restart;
Chas Williams1fa99612006-09-29 17:11:47 -07002249 }
2250 }
2251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002253 dump_arp_table(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254}
2255
2256static void
2257lec_set_flush_tran_id(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07002258 const unsigned char *atm_addr, unsigned long tran_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259{
2260 unsigned long flags;
Chas Williamsd0732f62006-09-29 17:14:27 -07002261 struct hlist_node *node;
Chas Williams1fa99612006-09-29 17:11:47 -07002262 struct lec_arp_table *entry;
2263 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
2265 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002266 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++)
Joe Perchesc48192a2010-01-26 11:40:08 +00002267 hlist_for_each_entry(entry, node,
2268 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002269 if (!memcmp(atm_addr, entry->atm_addr, ATM_ESA_LEN)) {
2270 entry->flush_tran_id = tran_id;
Stephen Hemminger52240062007-08-28 15:22:09 -07002271 pr_debug("Set flush transaction id to %lx for %p\n",
Joe Perches99824462010-01-26 11:40:00 +00002272 tran_id, entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002273 }
Chas Williamsd0732f62006-09-29 17:14:27 -07002274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2276}
2277
Chas Williams1fa99612006-09-29 17:11:47 -07002278static int lec_mcast_make(struct lec_priv *priv, struct atm_vcc *vcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279{
2280 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07002281 unsigned char mac_addr[] = {
2282 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
2283 };
2284 struct lec_arp_table *to_add;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 struct lec_vcc_priv *vpriv;
2286 int err = 0;
Chas Williams1fa99612006-09-29 17:11:47 -07002287
Joe Perchesc48192a2010-01-26 11:40:08 +00002288 vpriv = kmalloc(sizeof(struct lec_vcc_priv), GFP_KERNEL);
2289 if (!vpriv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 return -ENOMEM;
2291 vpriv->xoff = 0;
2292 vpriv->old_pop = vcc->pop;
2293 vcc->user_back = vpriv;
Chas Williams1fa99612006-09-29 17:11:47 -07002294 vcc->pop = lec_pop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002296 to_add = make_entry(priv, mac_addr);
2297 if (!to_add) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 vcc->pop = vpriv->old_pop;
2299 kfree(vpriv);
Chas Williams1fa99612006-09-29 17:11:47 -07002300 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002302 }
2303 memcpy(to_add->atm_addr, vcc->remote.sas_addr.prv, ATM_ESA_LEN);
2304 to_add->status = ESI_FORWARD_DIRECT;
2305 to_add->flags |= LEC_PERMANENT_FLAG;
2306 to_add->vcc = vcc;
2307 to_add->old_push = vcc->push;
2308 vcc->push = lec_push;
2309 priv->mcast_vcc = vcc;
2310 lec_arp_add(priv, to_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311out:
2312 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002313 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314}
2315
Chas Williams1fa99612006-09-29 17:11:47 -07002316static void lec_vcc_close(struct lec_priv *priv, struct atm_vcc *vcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317{
2318 unsigned long flags;
Chas Williamsd0732f62006-09-29 17:14:27 -07002319 struct hlist_node *node, *next;
2320 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07002321 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
Stephen Hemminger52240062007-08-28 15:22:09 -07002323 pr_debug("LEC_ARP: lec_vcc_close vpi:%d vci:%d\n", vcc->vpi, vcc->vci);
Chas Williams1fa99612006-09-29 17:11:47 -07002324 dump_arp_table(priv);
Chas Williamsd0732f62006-09-29 17:14:27 -07002325
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd0732f62006-09-29 17:14:27 -07002327
Chas Williams1fa99612006-09-29 17:11:47 -07002328 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Joe Perchesc48192a2010-01-26 11:40:08 +00002329 hlist_for_each_entry_safe(entry, node, next,
2330 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002331 if (vcc == entry->vcc) {
2332 lec_arp_remove(priv, entry);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002333 lec_arp_put(entry);
Joe Perchesc48192a2010-01-26 11:40:08 +00002334 if (priv->mcast_vcc == vcc)
Chas Williams1fa99612006-09-29 17:11:47 -07002335 priv->mcast_vcc = NULL;
Chas Williams1fa99612006-09-29 17:11:47 -07002336 }
2337 }
2338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
Joe Perchesc48192a2010-01-26 11:40:08 +00002340 hlist_for_each_entry_safe(entry, node, next,
2341 &priv->lec_arp_empty_ones, next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002342 if (entry->vcc == vcc) {
Chas Williams1fa99612006-09-29 17:11:47 -07002343 lec_arp_clear_vccs(entry);
2344 del_timer(&entry->timer);
Chas Williamsd0732f62006-09-29 17:14:27 -07002345 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002346 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002347 }
Chas Williams1fa99612006-09-29 17:11:47 -07002348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
Joe Perchesc48192a2010-01-26 11:40:08 +00002350 hlist_for_each_entry_safe(entry, node, next,
2351 &priv->lec_no_forward, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002352 if (entry->recv_vcc == vcc) {
2353 lec_arp_clear_vccs(entry);
2354 del_timer(&entry->timer);
Chas Williamsd0732f62006-09-29 17:14:27 -07002355 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002356 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002357 }
Chas Williams1fa99612006-09-29 17:11:47 -07002358 }
2359
Chas Williamsd0732f62006-09-29 17:14:27 -07002360 hlist_for_each_entry_safe(entry, node, next, &priv->mcast_fwds, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002361 if (entry->recv_vcc == vcc) {
2362 lec_arp_clear_vccs(entry);
2363 /* No timer, LANEv2 7.1.20 and 2.3.5.3 */
Chas Williamsd0732f62006-09-29 17:14:27 -07002364 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002365 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002366 }
Chas Williams1fa99612006-09-29 17:11:47 -07002367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
2369 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2370 dump_arp_table(priv);
2371}
2372
2373static void
2374lec_arp_check_empties(struct lec_priv *priv,
Chas Williams1fa99612006-09-29 17:11:47 -07002375 struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376{
Chas Williams1fa99612006-09-29 17:11:47 -07002377 unsigned long flags;
Chas Williamsd0732f62006-09-29 17:14:27 -07002378 struct hlist_node *node, *next;
2379 struct lec_arp_table *entry, *tmp;
Chas Williams1fa99612006-09-29 17:11:47 -07002380 struct lecdatahdr_8023 *hdr = (struct lecdatahdr_8023 *)skb->data;
2381 unsigned char *src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382#ifdef CONFIG_TR
Chas Williams1fa99612006-09-29 17:11:47 -07002383 struct lecdatahdr_8025 *tr_hdr = (struct lecdatahdr_8025 *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
Chas Williams1fa99612006-09-29 17:11:47 -07002385 if (priv->is_trdev)
2386 src = tr_hdr->h_source;
2387 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388#endif
Chas Williams1fa99612006-09-29 17:11:47 -07002389 src = hdr->h_source;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
2391 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Joe Perchesc48192a2010-01-26 11:40:08 +00002392 hlist_for_each_entry_safe(entry, node, next,
2393 &priv->lec_arp_empty_ones, next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002394 if (vcc == entry->vcc) {
2395 del_timer(&entry->timer);
2396 memcpy(entry->mac_addr, src, ETH_ALEN);
2397 entry->status = ESI_FORWARD_DIRECT;
2398 entry->last_used = jiffies;
2399 /* We might have got an entry */
Joe Perchesc48192a2010-01-26 11:40:08 +00002400 tmp = lec_arp_find(priv, src);
2401 if (tmp) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002402 lec_arp_remove(priv, tmp);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002403 lec_arp_put(tmp);
Chas Williamsd0732f62006-09-29 17:14:27 -07002404 }
2405 hlist_del(&entry->next);
2406 lec_arp_add(priv, entry);
2407 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002408 }
Chas Williams1fa99612006-09-29 17:11:47 -07002409 }
Stephen Hemminger52240062007-08-28 15:22:09 -07002410 pr_debug("LEC_ARP: Arp_check_empties: entry not found!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411out:
2412 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2413}
Chas Williams1fa99612006-09-29 17:11:47 -07002414
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415MODULE_LICENSE("GPL");