blob: 5a95fcf6f9b6cc62ced5480910dac7e41f2e7f06 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070029/* And atm device */
30#include <linux/atmdev.h>
31#include <linux/atmlec.h>
32
33/* Proxy LEC knows about bridging */
Javier Martinez Canillas9a81c342016-09-09 08:43:14 -040034#if IS_ENABLED(CONFIG_BRIDGE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "../bridge/br_private.h"
36
Chas Williamsd44f7742006-09-29 17:11:14 -070037static unsigned char bridge_ula_lec[] = { 0x01, 0x80, 0xc2, 0x00, 0x00 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#endif
39
40/* Modular too */
41#include <linux/module.h>
42#include <linux/init.h>
43
Gustavo A. R. Silvaacf784b2018-05-03 13:45:58 -050044/* Hardening for Spectre-v1 */
45#include <linux/nospec.h>
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include "lec.h"
48#include "lec_arpc.h"
49#include "resources.h"
50
Chas Williamsd44f7742006-09-29 17:11:14 -070051#define DUMP_PACKETS 0 /*
52 * 0 = None,
53 * 1 = 30 first bytes
54 * 2 = Whole packet
55 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Chas Williamsd44f7742006-09-29 17:11:14 -070057#define LEC_UNRES_QUE_LEN 8 /*
58 * number of tx packets to queue for a
59 * single destination while waiting for SVC
60 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62static int lec_open(struct net_device *dev);
Stephen Hemminger3c805a22009-08-31 19:50:42 +000063static netdev_tx_t lec_start_xmit(struct sk_buff *skb,
64 struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static int lec_close(struct net_device *dev);
Chas Williamsd44f7742006-09-29 17:11:14 -070066static struct lec_arp_table *lec_arp_find(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -070067 const unsigned char *mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068static int lec_arp_remove(struct lec_priv *priv,
Chas Williamsd44f7742006-09-29 17:11:14 -070069 struct lec_arp_table *to_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/* LANE2 functions */
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -070071static void lane2_associate_ind(struct net_device *dev, const u8 *mac_address,
72 const u8 *tlvs, u32 sizeoftlvs);
73static int lane2_resolve(struct net_device *dev, const u8 *dst_mac, int force,
Chas Williamsd44f7742006-09-29 17:11:14 -070074 u8 **tlvs, u32 *sizeoftlvs);
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -070075static int lane2_associate_req(struct net_device *dev, const u8 *lan_dst,
76 const u8 *tlvs, u32 sizeoftlvs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -070078static int lec_addr_delete(struct lec_priv *priv, const unsigned char *atm_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 unsigned long permanent);
80static void lec_arp_check_empties(struct lec_priv *priv,
81 struct atm_vcc *vcc, struct sk_buff *skb);
82static void lec_arp_destroy(struct lec_priv *priv);
83static void lec_arp_init(struct lec_priv *priv);
Chas Williamsd44f7742006-09-29 17:11:14 -070084static struct atm_vcc *lec_arp_resolve(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -070085 const unsigned char *mac_to_find,
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 int is_rdesc,
87 struct lec_arp_table **ret_entry);
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -070088static void lec_arp_update(struct lec_priv *priv, const unsigned char *mac_addr,
Joe Perchesc48192a2010-01-26 11:40:08 +000089 const unsigned char *atm_addr,
90 unsigned long remoteflag,
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 unsigned int targetless_le_arp);
92static void lec_flush_complete(struct lec_priv *priv, unsigned long tran_id);
93static int lec_mcast_make(struct lec_priv *priv, struct atm_vcc *vcc);
94static void lec_set_flush_tran_id(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -070095 const unsigned char *atm_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 unsigned long tran_id);
Joe Perchesc48192a2010-01-26 11:40:08 +000097static void lec_vcc_added(struct lec_priv *priv,
98 const struct atmlec_ioc *ioc_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 struct atm_vcc *vcc,
Joe Perchesc48192a2010-01-26 11:40:08 +0000100 void (*old_push)(struct atm_vcc *vcc,
101 struct sk_buff *skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static void lec_vcc_close(struct lec_priv *priv, struct atm_vcc *vcc);
103
Chas Williams33a9c2d2006-09-29 17:16:48 -0700104/* must be done under lec_arp_lock */
105static inline void lec_arp_hold(struct lec_arp_table *entry)
106{
Reshetova, Elena78893662017-07-04 15:53:02 +0300107 refcount_inc(&entry->usage);
Chas Williams33a9c2d2006-09-29 17:16:48 -0700108}
109
110static inline void lec_arp_put(struct lec_arp_table *entry)
111{
Reshetova, Elena78893662017-07-04 15:53:02 +0300112 if (refcount_dec_and_test(&entry->usage))
Chas Williams33a9c2d2006-09-29 17:16:48 -0700113 kfree(entry);
114}
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116static struct lane2_ops lane2_ops = {
Kees Cook99a5e172016-12-16 16:58:43 -0800117 .resolve = lane2_resolve, /* spec 3.1.3 */
118 .associate_req = lane2_associate_req, /* spec 3.1.4 */
119 .associate_indicator = NULL /* spec 3.1.5 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
Chas Williamsd44f7742006-09-29 17:11:14 -0700122static unsigned char bus_mac[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124/* Device structures */
125static struct net_device *dev_lec[MAX_LEC_ITF];
126
Javier Martinez Canillas9a81c342016-09-09 08:43:14 -0400127#if IS_ENABLED(CONFIG_BRIDGE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128static void lec_handle_bridge(struct sk_buff *skb, struct net_device *dev)
129{
Chas Williamsd44f7742006-09-29 17:11:14 -0700130 char *buff;
131 struct lec_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Chas Williamsd44f7742006-09-29 17:11:14 -0700133 /*
134 * Check if this is a BPDU. If so, ask zeppelin to send
135 * LE_TOPOLOGY_REQUEST with the same value of Topology Change bit
136 * as the Config BPDU has
137 */
Chas Williamsd44f7742006-09-29 17:11:14 -0700138 buff = skb->data + skb->dev->hard_header_len;
139 if (*buff++ == 0x42 && *buff++ == 0x42 && *buff++ == 0x03) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 struct sock *sk;
Chas Williamsd44f7742006-09-29 17:11:14 -0700141 struct sk_buff *skb2;
142 struct atmlec_msg *mesg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Chas Williamsd44f7742006-09-29 17:11:14 -0700144 skb2 = alloc_skb(sizeof(struct atmlec_msg), GFP_ATOMIC);
145 if (skb2 == NULL)
146 return;
147 skb2->len = sizeof(struct atmlec_msg);
148 mesg = (struct atmlec_msg *)skb2->data;
149 mesg->type = l_topology_change;
150 buff += 4;
Joe Perchesc48192a2010-01-26 11:40:08 +0000151 mesg->content.normal.flag = *buff & 0x01;
152 /* 0x01 is topology change */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Wang Chen524ad0a2008-11-12 23:39:10 -0800154 priv = netdev_priv(dev);
Chas Williamsd44f7742006-09-29 17:11:14 -0700155 atm_force_charge(priv->lecd, skb2->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 sk = sk_atm(priv->lecd);
Chas Williamsd44f7742006-09-29 17:11:14 -0700157 skb_queue_tail(&sk->sk_receive_queue, skb2);
David S. Miller676d2362014-04-11 16:15:36 -0400158 sk->sk_data_ready(sk);
Chas Williamsd44f7742006-09-29 17:11:14 -0700159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
Javier Martinez Canillas9a81c342016-09-09 08:43:14 -0400161#endif /* IS_ENABLED(CONFIG_BRIDGE) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 * Open/initialize the netdevice. This is called (in the current kernel)
165 * sometime after booting when the 'ifconfig' program is run.
166 *
167 * This routine should set everything up anew at each open, even
168 * registers that "should" only need to be set once at boot, so that
169 * there is non-reboot way to recover if something goes wrong.
170 */
171
Chas Williamsd44f7742006-09-29 17:11:14 -0700172static int lec_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 netif_start_queue(dev);
Chas Williamsd44f7742006-09-29 17:11:14 -0700175
176 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
Stephen Hemminger162619e2009-01-09 13:01:01 +0000179static void
180lec_send(struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Stephen Hemminger162619e2009-01-09 13:01:01 +0000182 struct net_device *dev = skb->dev;
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 ATM_SKB(skb)->vcc = vcc;
185 ATM_SKB(skb)->atm_options = vcc->atm_options;
186
Reshetova, Elena14afee42017-06-30 13:08:00 +0300187 refcount_add(skb->truesize, &sk_atm(vcc)->sk_wmem_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (vcc->send(vcc, skb) < 0) {
Stephen Hemminger162619e2009-01-09 13:01:01 +0000189 dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return;
191 }
192
Stephen Hemminger162619e2009-01-09 13:01:01 +0000193 dev->stats.tx_packets++;
194 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
Chas Williamsd44f7742006-09-29 17:11:14 -0700197static void lec_tx_timeout(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Joe Perches99824462010-01-26 11:40:00 +0000199 pr_info("%s\n", dev->name);
Florian Westphal860e9532016-05-03 16:33:13 +0200200 netif_trans_update(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 netif_wake_queue(dev);
202}
203
Stephen Hemminger3c805a22009-08-31 19:50:42 +0000204static netdev_tx_t lec_start_xmit(struct sk_buff *skb,
205 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Chas Williamsd44f7742006-09-29 17:11:14 -0700207 struct sk_buff *skb2;
Wang Chen524ad0a2008-11-12 23:39:10 -0800208 struct lec_priv *priv = netdev_priv(dev);
Chas Williamsd44f7742006-09-29 17:11:14 -0700209 struct lecdatahdr_8023 *lec_h;
210 struct atm_vcc *vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 struct lec_arp_table *entry;
Chas Williamsd44f7742006-09-29 17:11:14 -0700212 unsigned char *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 int min_frame_size;
Chas Williamsd44f7742006-09-29 17:11:14 -0700214 int is_rdesc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Joe Perches99824462010-01-26 11:40:00 +0000216 pr_debug("called\n");
Chas Williamsd44f7742006-09-29 17:11:14 -0700217 if (!priv->lecd) {
Joe Perchesc48192a2010-01-26 11:40:08 +0000218 pr_info("%s:No lecd attached\n", dev->name);
Stephen Hemminger162619e2009-01-09 13:01:01 +0000219 dev->stats.tx_errors++;
Chas Williamsd44f7742006-09-29 17:11:14 -0700220 netif_stop_queue(dev);
Patrick McHardy81fbbf62009-06-12 05:34:37 +0000221 kfree_skb(skb);
222 return NETDEV_TX_OK;
Chas Williamsd44f7742006-09-29 17:11:14 -0700223 }
224
Stephen Hemminger52240062007-08-28 15:22:09 -0700225 pr_debug("skbuff head:%lx data:%lx tail:%lx end:%lx\n",
Joe Perches99824462010-01-26 11:40:00 +0000226 (long)skb->head, (long)skb->data, (long)skb_tail_pointer(skb),
227 (long)skb_end_pointer(skb));
Javier Martinez Canillas9a81c342016-09-09 08:43:14 -0400228#if IS_ENABLED(CONFIG_BRIDGE)
Chas Williamsd44f7742006-09-29 17:11:14 -0700229 if (memcmp(skb->data, bridge_ula_lec, sizeof(bridge_ula_lec)) == 0)
230 lec_handle_bridge(skb, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231#endif
232
Chas Williamsd44f7742006-09-29 17:11:14 -0700233 /* Make sure we have room for lec_id */
234 if (skb_headroom(skb) < 2) {
Joe Perches99824462010-01-26 11:40:00 +0000235 pr_debug("reallocating skb\n");
Chas Williamsd44f7742006-09-29 17:11:14 -0700236 skb2 = skb_realloc_headroom(skb, LEC_HEADER_LEN);
Eric Dumazet5d0ba552012-06-04 01:17:19 +0000237 if (unlikely(!skb2)) {
238 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000239 return NETDEV_TX_OK;
Eric Dumazet5d0ba552012-06-04 01:17:19 +0000240 }
241 consume_skb(skb);
Chas Williamsd44f7742006-09-29 17:11:14 -0700242 skb = skb2;
243 }
244 skb_push(skb, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Paul Gortmaker60eea6c2012-05-10 16:17:00 -0400246 /* Put le header to place */
Chas Williamsd44f7742006-09-29 17:11:14 -0700247 lec_h = (struct lecdatahdr_8023 *)skb->data;
248 lec_h->le_header = htons(priv->lecid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250#if DUMP_PACKETS >= 2
Joe Perchesc48192a2010-01-26 11:40:08 +0000251#define MAX_DUMP_SKB 99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252#elif DUMP_PACKETS >= 1
Joe Perchesc48192a2010-01-26 11:40:08 +0000253#define MAX_DUMP_SKB 30
254#endif
255#if DUMP_PACKETS >= 1
256 printk(KERN_DEBUG "%s: send datalen:%ld lecid:%4.4x\n",
257 dev->name, skb->len, priv->lecid);
258 print_hex_dump(KERN_DEBUG, "", DUMP_OFFSET, 16, 1,
259 skb->data, min(skb->len, MAX_DUMP_SKB), true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260#endif /* DUMP_PACKETS >= 1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Chas Williamsd44f7742006-09-29 17:11:14 -0700262 /* Minimum ethernet-frame size */
Paul Gortmaker60eea6c2012-05-10 16:17:00 -0400263 min_frame_size = LEC_MINIMUM_8023_SIZE;
Chas Williamsd44f7742006-09-29 17:11:14 -0700264 if (skb->len < min_frame_size) {
265 if ((skb->len + skb_tailroom(skb)) < min_frame_size) {
266 skb2 = skb_copy_expand(skb, 0,
267 min_frame_size - skb->truesize,
268 GFP_ATOMIC);
269 dev_kfree_skb(skb);
270 if (skb2 == NULL) {
Stephen Hemminger162619e2009-01-09 13:01:01 +0000271 dev->stats.tx_dropped++;
Patrick McHardy6ed10652009-06-23 06:03:08 +0000272 return NETDEV_TX_OK;
Chas Williamsd44f7742006-09-29 17:11:14 -0700273 }
274 skb = skb2;
275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 skb_put(skb, min_frame_size - skb->len);
Chas Williamsd44f7742006-09-29 17:11:14 -0700277 }
278
279 /* Send to right vcc */
280 is_rdesc = 0;
281 dst = lec_h->h_dest;
Chas Williamsd44f7742006-09-29 17:11:14 -0700282 entry = NULL;
283 vcc = lec_arp_resolve(priv, dst, is_rdesc, &entry);
Joe Perches99824462010-01-26 11:40:00 +0000284 pr_debug("%s:vcc:%p vcc_flags:%lx, entry:%p\n",
285 dev->name, vcc, vcc ? vcc->flags : 0, entry);
Chas Williamsd44f7742006-09-29 17:11:14 -0700286 if (!vcc || !test_bit(ATM_VF_READY, &vcc->flags)) {
287 if (entry && (entry->tx_wait.qlen < LEC_UNRES_QUE_LEN)) {
Joe Perches99824462010-01-26 11:40:00 +0000288 pr_debug("%s:queuing packet, MAC address %pM\n",
289 dev->name, lec_h->h_dest);
Chas Williamsd44f7742006-09-29 17:11:14 -0700290 skb_queue_tail(&entry->tx_wait, skb);
291 } else {
Joe Perches99824462010-01-26 11:40:00 +0000292 pr_debug("%s:tx queue full or no arp entry, dropping, MAC address: %pM\n",
293 dev->name, lec_h->h_dest);
Stephen Hemminger162619e2009-01-09 13:01:01 +0000294 dev->stats.tx_dropped++;
Chas Williamsd44f7742006-09-29 17:11:14 -0700295 dev_kfree_skb(skb);
296 }
Chas Williams6656e3c2006-09-29 17:17:17 -0700297 goto out;
Chas Williamsd44f7742006-09-29 17:11:14 -0700298 }
299#if DUMP_PACKETS > 0
Joe Perchesc48192a2010-01-26 11:40:08 +0000300 printk(KERN_DEBUG "%s:sending to vpi:%d vci:%d\n",
301 dev->name, vcc->vpi, vcc->vci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302#endif /* DUMP_PACKETS > 0 */
Chas Williamsd44f7742006-09-29 17:11:14 -0700303
304 while (entry && (skb2 = skb_dequeue(&entry->tx_wait))) {
Joe Perches99824462010-01-26 11:40:00 +0000305 pr_debug("emptying tx queue, MAC address %pM\n", lec_h->h_dest);
Stephen Hemminger162619e2009-01-09 13:01:01 +0000306 lec_send(vcc, skb2);
Chas Williamsd44f7742006-09-29 17:11:14 -0700307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Stephen Hemminger162619e2009-01-09 13:01:01 +0000309 lec_send(vcc, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 if (!atm_may_send(vcc, 0)) {
312 struct lec_vcc_priv *vpriv = LEC_VCC_PRIV(vcc);
313
314 vpriv->xoff = 1;
315 netif_stop_queue(dev);
316
317 /*
318 * vcc->pop() might have occurred in between, making
319 * the vcc usuable again. Since xmit is serialized,
320 * this is the only situation we have to re-test.
321 */
322
323 if (atm_may_send(vcc, 0))
324 netif_wake_queue(dev);
325 }
326
Chas Williams6656e3c2006-09-29 17:17:17 -0700327out:
328 if (entry)
329 lec_arp_put(entry);
Florian Westphal860e9532016-05-03 16:33:13 +0200330 netif_trans_update(dev);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000331 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
334/* The inverse routine to net_open(). */
Chas Williamsd44f7742006-09-29 17:11:14 -0700335static int lec_close(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Chas Williamsd44f7742006-09-29 17:11:14 -0700337 netif_stop_queue(dev);
338 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
Chas Williamsd44f7742006-09-29 17:11:14 -0700341static int lec_atm_send(struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
343 unsigned long flags;
Chas Williamsd44f7742006-09-29 17:11:14 -0700344 struct net_device *dev = (struct net_device *)vcc->proto_data;
Wang Chen524ad0a2008-11-12 23:39:10 -0800345 struct lec_priv *priv = netdev_priv(dev);
Chas Williamsd44f7742006-09-29 17:11:14 -0700346 struct atmlec_msg *mesg;
347 struct lec_arp_table *entry;
348 int i;
349 char *tmp; /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Reshetova, Elena14afee42017-06-30 13:08:00 +0300351 WARN_ON(refcount_sub_and_test(skb->truesize, &sk_atm(vcc)->sk_wmem_alloc));
Chas Williamsd44f7742006-09-29 17:11:14 -0700352 mesg = (struct atmlec_msg *)skb->data;
353 tmp = skb->data;
354 tmp += sizeof(struct atmlec_msg);
Stephen Hemminger52240062007-08-28 15:22:09 -0700355 pr_debug("%s: msg from zeppelin:%d\n", dev->name, mesg->type);
Chas Williamsd44f7742006-09-29 17:11:14 -0700356 switch (mesg->type) {
357 case l_set_mac_addr:
Joe Perchesc48192a2010-01-26 11:40:08 +0000358 for (i = 0; i < 6; i++)
Chas Williamsd44f7742006-09-29 17:11:14 -0700359 dev->dev_addr[i] = mesg->content.normal.mac_addr[i];
Chas Williamsd44f7742006-09-29 17:11:14 -0700360 break;
361 case l_del_mac_addr:
Joe Perchesc48192a2010-01-26 11:40:08 +0000362 for (i = 0; i < 6; i++)
Chas Williamsd44f7742006-09-29 17:11:14 -0700363 dev->dev_addr[i] = 0;
Chas Williamsd44f7742006-09-29 17:11:14 -0700364 break;
365 case l_addr_delete:
366 lec_addr_delete(priv, mesg->content.normal.atm_addr,
367 mesg->content.normal.flag);
368 break;
369 case l_topology_change:
370 priv->topology_change = mesg->content.normal.flag;
371 break;
372 case l_flush_complete:
373 lec_flush_complete(priv, mesg->content.normal.flag);
374 break;
375 case l_narp_req: /* LANE2: see 7.1.35 in the lane2 spec */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd44f7742006-09-29 17:11:14 -0700377 entry = lec_arp_find(priv, mesg->content.normal.mac_addr);
378 lec_arp_remove(priv, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
380
Chas Williamsd44f7742006-09-29 17:11:14 -0700381 if (mesg->content.normal.no_source_le_narp)
382 break;
383 /* FALL THROUGH */
384 case l_arp_update:
385 lec_arp_update(priv, mesg->content.normal.mac_addr,
386 mesg->content.normal.atm_addr,
387 mesg->content.normal.flag,
388 mesg->content.normal.targetless_le_arp);
Joe Perches99824462010-01-26 11:40:00 +0000389 pr_debug("in l_arp_update\n");
Chas Williamsd44f7742006-09-29 17:11:14 -0700390 if (mesg->sizeoftlvs != 0) { /* LANE2 3.1.5 */
Joe Perches99824462010-01-26 11:40:00 +0000391 pr_debug("LANE2 3.1.5, got tlvs, size %d\n",
392 mesg->sizeoftlvs);
Chas Williamsd44f7742006-09-29 17:11:14 -0700393 lane2_associate_ind(dev, mesg->content.normal.mac_addr,
394 tmp, mesg->sizeoftlvs);
395 }
396 break;
397 case l_config:
398 priv->maximum_unknown_frame_count =
399 mesg->content.config.maximum_unknown_frame_count;
400 priv->max_unknown_frame_time =
401 (mesg->content.config.max_unknown_frame_time * HZ);
402 priv->max_retry_count = mesg->content.config.max_retry_count;
403 priv->aging_time = (mesg->content.config.aging_time * HZ);
404 priv->forward_delay_time =
405 (mesg->content.config.forward_delay_time * HZ);
406 priv->arp_response_time =
407 (mesg->content.config.arp_response_time * HZ);
408 priv->flush_timeout = (mesg->content.config.flush_timeout * HZ);
409 priv->path_switching_delay =
410 (mesg->content.config.path_switching_delay * HZ);
Joe Perchesc48192a2010-01-26 11:40:08 +0000411 priv->lane_version = mesg->content.config.lane_version;
412 /* LANE2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 priv->lane2_ops = NULL;
414 if (priv->lane_version > 1)
415 priv->lane2_ops = &lane2_ops;
chas williams - CONTRACTOR6df378d2014-08-14 09:19:47 -0400416 rtnl_lock();
Stephen Hemminger1f1900f2009-03-21 13:37:28 -0700417 if (dev_set_mtu(dev, mesg->content.config.mtu))
Joe Perchesc48192a2010-01-26 11:40:08 +0000418 pr_info("%s: change_mtu to %d failed\n",
419 dev->name, mesg->content.config.mtu);
chas williams - CONTRACTOR6df378d2014-08-14 09:19:47 -0400420 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 priv->is_proxy = mesg->content.config.is_proxy;
Chas Williamsd44f7742006-09-29 17:11:14 -0700422 break;
423 case l_flush_tran_id:
424 lec_set_flush_tran_id(priv, mesg->content.normal.atm_addr,
425 mesg->content.normal.flag);
426 break;
427 case l_set_lecid:
428 priv->lecid =
429 (unsigned short)(0xffff & mesg->content.normal.flag);
430 break;
431 case l_should_bridge:
Javier Martinez Canillas9a81c342016-09-09 08:43:14 -0400432#if IS_ENABLED(CONFIG_BRIDGE)
Joe Perchesb4c84ec2010-01-26 11:40:19 +0000433 {
434 pr_debug("%s: bridge zeppelin asks about %pM\n",
435 dev->name, mesg->content.proxy.mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Joe Perchesb4c84ec2010-01-26 11:40:19 +0000437 if (br_fdb_test_addr_hook == NULL)
438 break;
439
440 if (br_fdb_test_addr_hook(dev, mesg->content.proxy.mac_addr)) {
441 /* hit from bridge table, send LE_ARP_RESPONSE */
442 struct sk_buff *skb2;
443 struct sock *sk;
444
445 pr_debug("%s: entry found, responding to zeppelin\n",
446 dev->name);
447 skb2 = alloc_skb(sizeof(struct atmlec_msg), GFP_ATOMIC);
448 if (skb2 == NULL)
Chas Williamsd44f7742006-09-29 17:11:14 -0700449 break;
Joe Perchesb4c84ec2010-01-26 11:40:19 +0000450 skb2->len = sizeof(struct atmlec_msg);
451 skb_copy_to_linear_data(skb2, mesg, sizeof(*mesg));
452 atm_force_charge(priv->lecd, skb2->truesize);
453 sk = sk_atm(priv->lecd);
454 skb_queue_tail(&sk->sk_receive_queue, skb2);
David S. Miller676d2362014-04-11 16:15:36 -0400455 sk->sk_data_ready(sk);
Chas Williamsd44f7742006-09-29 17:11:14 -0700456 }
Joe Perchesb4c84ec2010-01-26 11:40:19 +0000457 }
Javier Martinez Canillas9a81c342016-09-09 08:43:14 -0400458#endif /* IS_ENABLED(CONFIG_BRIDGE) */
Chas Williamsd44f7742006-09-29 17:11:14 -0700459 break;
460 default:
Joe Perchesc48192a2010-01-26 11:40:08 +0000461 pr_info("%s: Unknown message type %d\n", dev->name, mesg->type);
Chas Williamsd44f7742006-09-29 17:11:14 -0700462 dev_kfree_skb(skb);
463 return -EINVAL;
464 }
465 dev_kfree_skb(skb);
466 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
Chas Williamsd44f7742006-09-29 17:11:14 -0700469static void lec_atm_close(struct atm_vcc *vcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Chas Williamsd44f7742006-09-29 17:11:14 -0700471 struct sk_buff *skb;
472 struct net_device *dev = (struct net_device *)vcc->proto_data;
Wang Chen524ad0a2008-11-12 23:39:10 -0800473 struct lec_priv *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Chas Williamsd44f7742006-09-29 17:11:14 -0700475 priv->lecd = NULL;
476 /* Do something needful? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Chas Williamsd44f7742006-09-29 17:11:14 -0700478 netif_stop_queue(dev);
479 lec_arp_destroy(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Chas Williamsd44f7742006-09-29 17:11:14 -0700481 if (skb_peek(&sk_atm(vcc)->sk_receive_queue))
Joe Perchesc48192a2010-01-26 11:40:08 +0000482 pr_info("%s closing with messages pending\n", dev->name);
Joe Perchesb4c84ec2010-01-26 11:40:19 +0000483 while ((skb = skb_dequeue(&sk_atm(vcc)->sk_receive_queue))) {
Chas Williamsd44f7742006-09-29 17:11:14 -0700484 atm_return(vcc, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 dev_kfree_skb(skb);
Chas Williamsd44f7742006-09-29 17:11:14 -0700486 }
487
Joe Perchesc48192a2010-01-26 11:40:08 +0000488 pr_info("%s: Shut down!\n", dev->name);
Chas Williamsd44f7742006-09-29 17:11:14 -0700489 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
Bhumika Goyal800bb472017-08-09 15:02:08 +0530492static const struct atmdev_ops lecdev_ops = {
Chas Williamsd44f7742006-09-29 17:11:14 -0700493 .close = lec_atm_close,
494 .send = lec_atm_send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495};
496
497static struct atm_dev lecatm_dev = {
Chas Williamsd44f7742006-09-29 17:11:14 -0700498 .ops = &lecdev_ops,
499 .type = "lec",
500 .number = 999, /* dummy device number */
Milind Arun Choudhary4ef8d0a2007-04-26 01:37:44 -0700501 .lock = __SPIN_LOCK_UNLOCKED(lecatm_dev.lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502};
503
504/*
505 * LANE2: new argument struct sk_buff *data contains
506 * the LE_ARP based TLVs introduced in the LANE2 spec
507 */
Chas Williamsd44f7742006-09-29 17:11:14 -0700508static int
509send_to_lecd(struct lec_priv *priv, atmlec_msg_type type,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -0700510 const unsigned char *mac_addr, const unsigned char *atm_addr,
Chas Williamsd44f7742006-09-29 17:11:14 -0700511 struct sk_buff *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
513 struct sock *sk;
514 struct sk_buff *skb;
515 struct atmlec_msg *mesg;
516
Joe Perchesc48192a2010-01-26 11:40:08 +0000517 if (!priv || !priv->lecd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 skb = alloc_skb(sizeof(struct atmlec_msg), GFP_ATOMIC);
520 if (!skb)
521 return -1;
522 skb->len = sizeof(struct atmlec_msg);
523 mesg = (struct atmlec_msg *)skb->data;
Chas Williamsd44f7742006-09-29 17:11:14 -0700524 memset(mesg, 0, sizeof(struct atmlec_msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 mesg->type = type;
Chas Williamsd44f7742006-09-29 17:11:14 -0700526 if (data != NULL)
527 mesg->sizeoftlvs = data->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 if (mac_addr)
David S. Miller9be68c12014-01-21 18:55:22 -0800529 ether_addr_copy(mesg->content.normal.mac_addr, mac_addr);
Chas Williamsd44f7742006-09-29 17:11:14 -0700530 else
531 mesg->content.normal.targetless_le_arp = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (atm_addr)
533 memcpy(&mesg->content.normal.atm_addr, atm_addr, ATM_ESA_LEN);
534
Chas Williamsd44f7742006-09-29 17:11:14 -0700535 atm_force_charge(priv->lecd, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 sk = sk_atm(priv->lecd);
537 skb_queue_tail(&sk->sk_receive_queue, skb);
David S. Miller676d2362014-04-11 16:15:36 -0400538 sk->sk_data_ready(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Chas Williamsd44f7742006-09-29 17:11:14 -0700540 if (data != NULL) {
Joe Perches99824462010-01-26 11:40:00 +0000541 pr_debug("about to send %d bytes of data\n", data->len);
Chas Williamsd44f7742006-09-29 17:11:14 -0700542 atm_force_charge(priv->lecd, data->truesize);
543 skb_queue_tail(&sk->sk_receive_queue, data);
David S. Miller676d2362014-04-11 16:15:36 -0400544 sk->sk_data_ready(sk);
Chas Williamsd44f7742006-09-29 17:11:14 -0700545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Chas Williamsd44f7742006-09-29 17:11:14 -0700547 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550static void lec_set_multicast_list(struct net_device *dev)
551{
Chas Williamsd44f7742006-09-29 17:11:14 -0700552 /*
553 * by default, all multicast frames arrive over the bus.
554 * eventually support selective multicast service
555 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
Stephen Hemminger004b3222009-01-09 13:01:02 +0000558static const struct net_device_ops lec_netdev_ops = {
559 .ndo_open = lec_open,
560 .ndo_stop = lec_close,
561 .ndo_start_xmit = lec_start_xmit,
Stephen Hemminger004b3222009-01-09 13:01:02 +0000562 .ndo_tx_timeout = lec_tx_timeout,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000563 .ndo_set_rx_mode = lec_set_multicast_list,
Stephen Hemminger004b3222009-01-09 13:01:02 +0000564};
565
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -0700566static const unsigned char lec_ctrl_magic[] = {
Chas Williamsd44f7742006-09-29 17:11:14 -0700567 0xff,
568 0x00,
569 0x01,
570 0x01
571};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Scott Talbert4a7097f2005-09-29 17:30:54 -0700573#define LEC_DATA_DIRECT_8023 2
574#define LEC_DATA_DIRECT_8025 3
575
576static int lec_is_data_direct(struct atm_vcc *vcc)
Chas Williamsd44f7742006-09-29 17:11:14 -0700577{
Scott Talbert4a7097f2005-09-29 17:30:54 -0700578 return ((vcc->sap.blli[0].l3.tr9577.snap[4] == LEC_DATA_DIRECT_8023) ||
579 (vcc->sap.blli[0].l3.tr9577.snap[4] == LEC_DATA_DIRECT_8025));
Chas Williamsd44f7742006-09-29 17:11:14 -0700580}
Scott Talbert4a7097f2005-09-29 17:30:54 -0700581
Chas Williamsd44f7742006-09-29 17:11:14 -0700582static void lec_push(struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Scott Talbert4a7097f2005-09-29 17:30:54 -0700584 unsigned long flags;
Chas Williamsd44f7742006-09-29 17:11:14 -0700585 struct net_device *dev = (struct net_device *)vcc->proto_data;
Wang Chen524ad0a2008-11-12 23:39:10 -0800586 struct lec_priv *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Joe Perchesc48192a2010-01-26 11:40:08 +0000588#if DUMP_PACKETS > 0
Joe Perches99824462010-01-26 11:40:00 +0000589 printk(KERN_DEBUG "%s: vcc vpi:%d vci:%d\n",
590 dev->name, vcc->vpi, vcc->vci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700592 if (!skb) {
Stephen Hemminger52240062007-08-28 15:22:09 -0700593 pr_debug("%s: null skb\n", dev->name);
Chas Williamsd44f7742006-09-29 17:11:14 -0700594 lec_vcc_close(priv, vcc);
595 return;
596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597#if DUMP_PACKETS >= 2
Joe Perches99824462010-01-26 11:40:00 +0000598#define MAX_SKB_DUMP 99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599#elif DUMP_PACKETS >= 1
Joe Perches99824462010-01-26 11:40:00 +0000600#define MAX_SKB_DUMP 30
601#endif
602#if DUMP_PACKETS > 0
603 printk(KERN_DEBUG "%s: rcv datalen:%ld lecid:%4.4x\n",
604 dev->name, skb->len, priv->lecid);
605 print_hex_dump(KERN_DEBUG, "", DUMP_OFFSET, 16, 1,
606 skb->data, min(MAX_SKB_DUMP, skb->len), true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607#endif /* DUMP_PACKETS > 0 */
Joe Perches99824462010-01-26 11:40:00 +0000608 if (memcmp(skb->data, lec_ctrl_magic, 4) == 0) {
609 /* Control frame, to daemon */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 struct sock *sk = sk_atm(vcc);
611
Stephen Hemminger52240062007-08-28 15:22:09 -0700612 pr_debug("%s: To daemon\n", dev->name);
Chas Williamsd44f7742006-09-29 17:11:14 -0700613 skb_queue_tail(&sk->sk_receive_queue, skb);
David S. Miller676d2362014-04-11 16:15:36 -0400614 sk->sk_data_ready(sk);
Chas Williamsd44f7742006-09-29 17:11:14 -0700615 } else { /* Data frame, queue to protocol handlers */
Scott Talbert4a7097f2005-09-29 17:30:54 -0700616 struct lec_arp_table *entry;
Chas Williamsd44f7742006-09-29 17:11:14 -0700617 unsigned char *src, *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Chas Williamsd44f7742006-09-29 17:11:14 -0700619 atm_return(vcc, skb->truesize);
Al Viro30d492d2006-11-14 21:11:29 -0800620 if (*(__be16 *) skb->data == htons(priv->lecid) ||
Chas Williamsd44f7742006-09-29 17:11:14 -0700621 !priv->lecd || !(dev->flags & IFF_UP)) {
622 /*
623 * Probably looping back, or if lecd is missing,
624 * lecd has gone down
625 */
Stephen Hemminger52240062007-08-28 15:22:09 -0700626 pr_debug("Ignoring frame...\n");
Chas Williamsd44f7742006-09-29 17:11:14 -0700627 dev_kfree_skb(skb);
628 return;
629 }
Paul Gortmaker60eea6c2012-05-10 16:17:00 -0400630 dst = ((struct lecdatahdr_8023 *)skb->data)->h_dest;
Scott Talbert4a7097f2005-09-29 17:30:54 -0700631
Chas Williamsd44f7742006-09-29 17:11:14 -0700632 /*
633 * If this is a Data Direct VCC, and the VCC does not match
Scott Talbert4a7097f2005-09-29 17:30:54 -0700634 * the LE_ARP cache entry, delete the LE_ARP cache entry.
635 */
636 spin_lock_irqsave(&priv->lec_arp_lock, flags);
637 if (lec_is_data_direct(vcc)) {
Paul Gortmaker60eea6c2012-05-10 16:17:00 -0400638 src = ((struct lecdatahdr_8023 *)skb->data)->h_source;
Scott Talbert4a7097f2005-09-29 17:30:54 -0700639 entry = lec_arp_find(priv, src);
640 if (entry && entry->vcc != vcc) {
641 lec_arp_remove(priv, entry);
Chas Williams33a9c2d2006-09-29 17:16:48 -0700642 lec_arp_put(entry);
Scott Talbert4a7097f2005-09-29 17:30:54 -0700643 }
644 }
645 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Chas Williamsd44f7742006-09-29 17:11:14 -0700647 if (!(dst[0] & 0x01) && /* Never filter Multi/Broadcast */
648 !priv->is_proxy && /* Proxy wants all the packets */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 memcmp(dst, dev->dev_addr, dev->addr_len)) {
Chas Williamsd44f7742006-09-29 17:11:14 -0700650 dev_kfree_skb(skb);
651 return;
652 }
Joe Perchesc48192a2010-01-26 11:40:08 +0000653 if (!hlist_empty(&priv->lec_arp_empty_ones))
Chas Williamsd44f7742006-09-29 17:11:14 -0700654 lec_arp_check_empties(priv, vcc, skb);
Chas Williamsd44f7742006-09-29 17:11:14 -0700655 skb_pull(skb, 2); /* skip lec_id */
Paul Gortmaker60eea6c2012-05-10 16:17:00 -0400656 skb->protocol = eth_type_trans(skb, dev);
Stephen Hemminger162619e2009-01-09 13:01:01 +0000657 dev->stats.rx_packets++;
658 dev->stats.rx_bytes += skb->len;
Chas Williamsd44f7742006-09-29 17:11:14 -0700659 memset(ATM_SKB(skb), 0, sizeof(struct atm_skb_data));
660 netif_rx(skb);
661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
Chas Williamsd44f7742006-09-29 17:11:14 -0700664static void lec_pop(struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666 struct lec_vcc_priv *vpriv = LEC_VCC_PRIV(vcc);
667 struct net_device *dev = skb->dev;
668
669 if (vpriv == NULL) {
Joe Perches99824462010-01-26 11:40:00 +0000670 pr_info("vpriv = NULL!?!?!?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return;
672 }
673
674 vpriv->old_pop(vcc, skb);
675
676 if (vpriv->xoff && atm_may_send(vcc, 0)) {
677 vpriv->xoff = 0;
678 if (netif_running(dev) && netif_queue_stopped(dev))
679 netif_wake_queue(dev);
680 }
681}
682
Chas Williamsd44f7742006-09-29 17:11:14 -0700683static int lec_vcc_attach(struct atm_vcc *vcc, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
685 struct lec_vcc_priv *vpriv;
Chas Williamsd44f7742006-09-29 17:11:14 -0700686 int bytes_left;
687 struct atmlec_ioc ioc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Chas Williamsd44f7742006-09-29 17:11:14 -0700689 /* Lecd must be up in this case */
690 bytes_left = copy_from_user(&ioc_data, arg, sizeof(struct atmlec_ioc));
Joe Perches99824462010-01-26 11:40:00 +0000691 if (bytes_left != 0)
692 pr_info("copy from user failed for %d bytes\n", bytes_left);
Gustavo A. R. Silvaacf784b2018-05-03 13:45:58 -0500693 if (ioc_data.dev_num < 0 || ioc_data.dev_num >= MAX_LEC_ITF)
694 return -EINVAL;
695 ioc_data.dev_num = array_index_nospec(ioc_data.dev_num, MAX_LEC_ITF);
696 if (!dev_lec[ioc_data.dev_num])
Chas Williamsd44f7742006-09-29 17:11:14 -0700697 return -EINVAL;
Joe Perchesc48192a2010-01-26 11:40:08 +0000698 vpriv = kmalloc(sizeof(struct lec_vcc_priv), GFP_KERNEL);
699 if (!vpriv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return -ENOMEM;
701 vpriv->xoff = 0;
702 vpriv->old_pop = vcc->pop;
703 vcc->user_back = vpriv;
704 vcc->pop = lec_pop;
Wang Chen524ad0a2008-11-12 23:39:10 -0800705 lec_vcc_added(netdev_priv(dev_lec[ioc_data.dev_num]),
Chas Williamsd44f7742006-09-29 17:11:14 -0700706 &ioc_data, vcc, vcc->push);
707 vcc->proto_data = dev_lec[ioc_data.dev_num];
708 vcc->push = lec_push;
709 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
711
Chas Williamsd44f7742006-09-29 17:11:14 -0700712static int lec_mcast_attach(struct atm_vcc *vcc, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Chas Williamsd44f7742006-09-29 17:11:14 -0700714 if (arg < 0 || arg >= MAX_LEC_ITF || !dev_lec[arg])
715 return -EINVAL;
716 vcc->proto_data = dev_lec[arg];
Joe Perches37d66802010-11-15 11:12:33 +0000717 return lec_mcast_make(netdev_priv(dev_lec[arg]), vcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
719
720/* Initialize device. */
Chas Williamsd44f7742006-09-29 17:11:14 -0700721static int lecd_attach(struct atm_vcc *vcc, int arg)
722{
723 int i;
724 struct lec_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Chas Williamsd44f7742006-09-29 17:11:14 -0700726 if (arg < 0)
727 i = 0;
728 else
729 i = arg;
Chas Williamsd44f7742006-09-29 17:11:14 -0700730 if (arg >= MAX_LEC_ITF)
731 return -EINVAL;
Chas Williamsd44f7742006-09-29 17:11:14 -0700732 if (!dev_lec[i]) {
Paul Gortmaker60eea6c2012-05-10 16:17:00 -0400733 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Chas Williamsd44f7742006-09-29 17:11:14 -0700735 size = sizeof(struct lec_priv);
Paul Gortmaker60eea6c2012-05-10 16:17:00 -0400736 dev_lec[i] = alloc_etherdev(size);
Chas Williamsd44f7742006-09-29 17:11:14 -0700737 if (!dev_lec[i])
738 return -ENOMEM;
chas williams - CONTRACTOReb044582009-12-04 05:19:30 +0000739 dev_lec[i]->netdev_ops = &lec_netdev_ops;
Jarod Wilson8b6b4132016-10-20 13:55:19 -0400740 dev_lec[i]->max_mtu = 18190;
Chas Williamsd44f7742006-09-29 17:11:14 -0700741 snprintf(dev_lec[i]->name, IFNAMSIZ, "lec%d", i);
742 if (register_netdev(dev_lec[i])) {
743 free_netdev(dev_lec[i]);
744 return -EINVAL;
745 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Wang Chen524ad0a2008-11-12 23:39:10 -0800747 priv = netdev_priv(dev_lec[i]);
Chas Williamsd44f7742006-09-29 17:11:14 -0700748 } else {
Wang Chen524ad0a2008-11-12 23:39:10 -0800749 priv = netdev_priv(dev_lec[i]);
Chas Williamsd44f7742006-09-29 17:11:14 -0700750 if (priv->lecd)
751 return -EADDRINUSE;
752 }
753 lec_arp_init(priv);
754 priv->itfnum = i; /* LANE2 addition */
755 priv->lecd = vcc;
756 vcc->dev = &lecatm_dev;
757 vcc_insert_socket(sk_atm(vcc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Chas Williamsd44f7742006-09-29 17:11:14 -0700759 vcc->proto_data = dev_lec[i];
760 set_bit(ATM_VF_META, &vcc->flags);
761 set_bit(ATM_VF_READY, &vcc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Chas Williamsd44f7742006-09-29 17:11:14 -0700763 /* Set default values to these variables */
764 priv->maximum_unknown_frame_count = 1;
765 priv->max_unknown_frame_time = (1 * HZ);
766 priv->vcc_timeout_period = (1200 * HZ);
767 priv->max_retry_count = 1;
768 priv->aging_time = (300 * HZ);
769 priv->forward_delay_time = (15 * HZ);
770 priv->topology_change = 0;
771 priv->arp_response_time = (1 * HZ);
772 priv->flush_timeout = (4 * HZ);
773 priv->path_switching_delay = (6 * HZ);
774
Joe Perchesc48192a2010-01-26 11:40:08 +0000775 if (dev_lec[i]->flags & IFF_UP)
Chas Williamsd44f7742006-09-29 17:11:14 -0700776 netif_start_queue(dev_lec[i]);
Chas Williamsd44f7742006-09-29 17:11:14 -0700777 __module_get(THIS_MODULE);
778 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779}
780
781#ifdef CONFIG_PROC_FS
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700782static const char *lec_arp_get_status_string(unsigned char status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700784 static const char *const lec_arp_status_string[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 "ESI_UNKNOWN ",
786 "ESI_ARP_PENDING ",
787 "ESI_VC_PENDING ",
788 "<Undefined> ",
789 "ESI_FLUSH_PENDING ",
790 "ESI_FORWARD_DIRECT"
791 };
792
793 if (status > ESI_FORWARD_DIRECT)
794 status = 3; /* ESI_UNDEFINED */
795 return lec_arp_status_string[status];
796}
797
798static void lec_info(struct seq_file *seq, struct lec_arp_table *entry)
799{
800 int i;
801
802 for (i = 0; i < ETH_ALEN; i++)
803 seq_printf(seq, "%2.2x", entry->mac_addr[i] & 0xff);
804 seq_printf(seq, " ");
805 for (i = 0; i < ATM_ESA_LEN; i++)
806 seq_printf(seq, "%2.2x", entry->atm_addr[i] & 0xff);
807 seq_printf(seq, " %s %4.4x", lec_arp_get_status_string(entry->status),
808 entry->flags & 0xffff);
809 if (entry->vcc)
810 seq_printf(seq, "%3d %3d ", entry->vcc->vpi, entry->vcc->vci);
811 else
Chas Williamsd44f7742006-09-29 17:11:14 -0700812 seq_printf(seq, " ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (entry->recv_vcc) {
814 seq_printf(seq, " %3d %3d", entry->recv_vcc->vpi,
815 entry->recv_vcc->vci);
Chas Williamsd44f7742006-09-29 17:11:14 -0700816 }
817 seq_putc(seq, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820struct lec_state {
821 unsigned long flags;
822 struct lec_priv *locked;
Chas Williamsd0732f62006-09-29 17:14:27 -0700823 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 struct net_device *dev;
825 int itf;
826 int arp_table;
827 int misc_table;
828};
829
Chas Williamsd0732f62006-09-29 17:14:27 -0700830static void *lec_tbl_walk(struct lec_state *state, struct hlist_head *tbl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 loff_t *l)
832{
Chas Williamsd0732f62006-09-29 17:14:27 -0700833 struct hlist_node *e = state->node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 if (!e)
Chas Williamsd0732f62006-09-29 17:14:27 -0700836 e = tbl->first;
Joe Perches2e1e9842008-04-10 03:33:03 -0700837 if (e == SEQ_START_TOKEN) {
Chas Williamsd0732f62006-09-29 17:14:27 -0700838 e = tbl->first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 --*l;
840 }
Chas Williamsd0732f62006-09-29 17:14:27 -0700841
chas williams - CONTRACTOR8356f9d2014-08-12 09:00:36 -0400842 for (; e; e = e->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (--*l < 0)
844 break;
845 }
Chas Williamsd0732f62006-09-29 17:14:27 -0700846 state->node = e;
847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 return (*l < 0) ? state : NULL;
849}
850
851static void *lec_arp_walk(struct lec_state *state, loff_t *l,
Chas Williamsd44f7742006-09-29 17:11:14 -0700852 struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
854 void *v = NULL;
855 int p;
856
857 for (p = state->arp_table; p < LEC_ARP_TABLE_SIZE; p++) {
Chas Williamsd0732f62006-09-29 17:14:27 -0700858 v = lec_tbl_walk(state, &priv->lec_arp_tables[p], l);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (v)
860 break;
861 }
862 state->arp_table = p;
863 return v;
864}
865
866static void *lec_misc_walk(struct lec_state *state, loff_t *l,
867 struct lec_priv *priv)
868{
Chas Williamsd0732f62006-09-29 17:14:27 -0700869 struct hlist_head *lec_misc_tables[] = {
870 &priv->lec_arp_empty_ones,
871 &priv->lec_no_forward,
872 &priv->mcast_fwds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 };
874 void *v = NULL;
875 int q;
876
877 for (q = state->misc_table; q < ARRAY_SIZE(lec_misc_tables); q++) {
878 v = lec_tbl_walk(state, lec_misc_tables[q], l);
879 if (v)
880 break;
881 }
882 state->misc_table = q;
883 return v;
884}
885
886static void *lec_priv_walk(struct lec_state *state, loff_t *l,
887 struct lec_priv *priv)
888{
889 if (!state->locked) {
890 state->locked = priv;
891 spin_lock_irqsave(&priv->lec_arp_lock, state->flags);
892 }
Chas Williamsd44f7742006-09-29 17:11:14 -0700893 if (!lec_arp_walk(state, l, priv) && !lec_misc_walk(state, l, priv)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 spin_unlock_irqrestore(&priv->lec_arp_lock, state->flags);
895 state->locked = NULL;
896 /* Partial state reset for the next time we get called */
897 state->arp_table = state->misc_table = 0;
898 }
899 return state->locked;
900}
901
902static void *lec_itf_walk(struct lec_state *state, loff_t *l)
903{
904 struct net_device *dev;
905 void *v;
906
907 dev = state->dev ? state->dev : dev_lec[state->itf];
Wang Chen524ad0a2008-11-12 23:39:10 -0800908 v = (dev && netdev_priv(dev)) ?
909 lec_priv_walk(state, l, netdev_priv(dev)) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 if (!v && dev) {
911 dev_put(dev);
912 /* Partial state reset for the next time we get called */
913 dev = NULL;
914 }
915 state->dev = dev;
916 return v;
917}
918
919static void *lec_get_idx(struct lec_state *state, loff_t l)
920{
921 void *v = NULL;
922
923 for (; state->itf < MAX_LEC_ITF; state->itf++) {
924 v = lec_itf_walk(state, &l);
925 if (v)
926 break;
927 }
Chas Williamsd44f7742006-09-29 17:11:14 -0700928 return v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929}
930
931static void *lec_seq_start(struct seq_file *seq, loff_t *pos)
932{
933 struct lec_state *state = seq->private;
934
935 state->itf = 0;
936 state->dev = NULL;
937 state->locked = NULL;
938 state->arp_table = 0;
939 state->misc_table = 0;
Joe Perches2e1e9842008-04-10 03:33:03 -0700940 state->node = SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Joe Perches2e1e9842008-04-10 03:33:03 -0700942 return *pos ? lec_get_idx(state, *pos) : SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943}
944
945static void lec_seq_stop(struct seq_file *seq, void *v)
946{
947 struct lec_state *state = seq->private;
948
949 if (state->dev) {
950 spin_unlock_irqrestore(&state->locked->lec_arp_lock,
951 state->flags);
952 dev_put(state->dev);
953 }
954}
955
956static void *lec_seq_next(struct seq_file *seq, void *v, loff_t *pos)
957{
958 struct lec_state *state = seq->private;
959
960 v = lec_get_idx(state, 1);
961 *pos += !!PTR_ERR(v);
962 return v;
963}
964
965static int lec_seq_show(struct seq_file *seq, void *v)
966{
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700967 static const char lec_banner[] =
968 "Itf MAC ATM destination"
Chas Williamsd44f7742006-09-29 17:11:14 -0700969 " Status Flags "
970 "VPI/VCI Recv VPI/VCI\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Joe Perches2e1e9842008-04-10 03:33:03 -0700972 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 seq_puts(seq, lec_banner);
974 else {
975 struct lec_state *state = seq->private;
Chas Williamsd44f7742006-09-29 17:11:14 -0700976 struct net_device *dev = state->dev;
Joe Perchesc48192a2010-01-26 11:40:08 +0000977 struct lec_arp_table *entry = hlist_entry(state->node,
978 struct lec_arp_table,
979 next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
981 seq_printf(seq, "%s ", dev->name);
Chas Williamsd0732f62006-09-29 17:14:27 -0700982 lec_info(seq, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 }
984 return 0;
985}
986
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700987static const struct seq_operations lec_seq_ops = {
Chas Williamsd44f7742006-09-29 17:11:14 -0700988 .start = lec_seq_start,
989 .next = lec_seq_next,
990 .stop = lec_seq_stop,
991 .show = lec_seq_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993#endif
994
995static int lane_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
996{
997 struct atm_vcc *vcc = ATM_SD(sock);
998 int err = 0;
Chas Williamsd44f7742006-09-29 17:11:14 -0700999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 switch (cmd) {
Chas Williamsd44f7742006-09-29 17:11:14 -07001001 case ATMLEC_CTRL:
1002 case ATMLEC_MCAST:
1003 case ATMLEC_DATA:
1004 if (!capable(CAP_NET_ADMIN))
1005 return -EPERM;
1006 break;
1007 default:
1008 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 }
1010
1011 switch (cmd) {
Chas Williamsd44f7742006-09-29 17:11:14 -07001012 case ATMLEC_CTRL:
1013 err = lecd_attach(vcc, (int)arg);
1014 if (err >= 0)
1015 sock->state = SS_CONNECTED;
1016 break;
1017 case ATMLEC_MCAST:
1018 err = lec_mcast_attach(vcc, (int)arg);
1019 break;
1020 case ATMLEC_DATA:
1021 err = lec_vcc_attach(vcc, (void __user *)arg);
1022 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 }
1024
1025 return err;
1026}
1027
1028static struct atm_ioctl lane_ioctl_ops = {
Chas Williamsd44f7742006-09-29 17:11:14 -07001029 .owner = THIS_MODULE,
1030 .ioctl = lane_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031};
1032
1033static int __init lane_module_init(void)
1034{
1035#ifdef CONFIG_PROC_FS
1036 struct proc_dir_entry *p;
1037
Christoph Hellwig44414d82018-04-24 17:05:17 +02001038 p = proc_create_seq_private("lec", 0444, atm_proc_root, &lec_seq_ops,
1039 sizeof(struct lec_state), NULL);
Wang Chendbee0d32008-03-23 21:45:36 -07001040 if (!p) {
Joe Perches99824462010-01-26 11:40:00 +00001041 pr_err("Unable to initialize /proc/net/atm/lec\n");
Wang Chendbee0d32008-03-23 21:45:36 -07001042 return -ENOMEM;
1043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044#endif
1045
1046 register_atm_ioctl(&lane_ioctl_ops);
Michal Marek36a9f772011-04-01 12:41:20 +02001047 pr_info("lec.c: initialized\n");
Chas Williamsd44f7742006-09-29 17:11:14 -07001048 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049}
1050
1051static void __exit lane_module_cleanup(void)
1052{
Chas Williamsd44f7742006-09-29 17:11:14 -07001053 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Augusto Mecking Caringi9dd0f892016-12-28 16:02:05 +00001055#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 remove_proc_entry("lec", atm_proc_root);
Augusto Mecking Caringi9dd0f892016-12-28 16:02:05 +00001057#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 deregister_atm_ioctl(&lane_ioctl_ops);
1060
Chas Williamsd44f7742006-09-29 17:11:14 -07001061 for (i = 0; i < MAX_LEC_ITF; i++) {
1062 if (dev_lec[i] != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 unregister_netdev(dev_lec[i]);
Chas Williamsd44f7742006-09-29 17:11:14 -07001064 free_netdev(dev_lec[i]);
1065 dev_lec[i] = NULL;
1066 }
1067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068}
1069
1070module_init(lane_module_init);
1071module_exit(lane_module_cleanup);
1072
1073/*
1074 * LANE2: 3.1.3, LE_RESOLVE.request
1075 * Non force allocates memory and fills in *tlvs, fills in *sizeoftlvs.
1076 * If sizeoftlvs == NULL the default TLVs associated with with this
1077 * lec will be used.
1078 * If dst_mac == NULL, targetless LE_ARP will be sent
1079 */
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001080static int lane2_resolve(struct net_device *dev, const u8 *dst_mac, int force,
Chas Williamsd44f7742006-09-29 17:11:14 -07001081 u8 **tlvs, u32 *sizeoftlvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
1083 unsigned long flags;
Wang Chen524ad0a2008-11-12 23:39:10 -08001084 struct lec_priv *priv = netdev_priv(dev);
Chas Williamsd44f7742006-09-29 17:11:14 -07001085 struct lec_arp_table *table;
1086 struct sk_buff *skb;
1087 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Chas Williamsd44f7742006-09-29 17:11:14 -07001089 if (force == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd44f7742006-09-29 17:11:14 -07001091 table = lec_arp_find(priv, dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williamsd44f7742006-09-29 17:11:14 -07001093 if (table == NULL)
1094 return -1;
1095
Arnaldo Carvalho de Melo2afe37c2006-11-21 01:14:33 -02001096 *tlvs = kmemdup(table->tlvs, table->sizeoftlvs, GFP_ATOMIC);
Chas Williamsd44f7742006-09-29 17:11:14 -07001097 if (*tlvs == NULL)
1098 return -1;
1099
Chas Williamsd44f7742006-09-29 17:11:14 -07001100 *sizeoftlvs = table->sizeoftlvs;
1101
1102 return 0;
1103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105 if (sizeoftlvs == NULL)
1106 retval = send_to_lecd(priv, l_arp_xmt, dst_mac, NULL, NULL);
Chas Williamsd44f7742006-09-29 17:11:14 -07001107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 else {
1109 skb = alloc_skb(*sizeoftlvs, GFP_ATOMIC);
1110 if (skb == NULL)
1111 return -1;
1112 skb->len = *sizeoftlvs;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001113 skb_copy_to_linear_data(skb, *tlvs, *sizeoftlvs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 retval = send_to_lecd(priv, l_arp_xmt, dst_mac, NULL, skb);
1115 }
Chas Williamsd44f7742006-09-29 17:11:14 -07001116 return retval;
1117}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119/*
1120 * LANE2: 3.1.4, LE_ASSOCIATE.request
1121 * Associate the *tlvs with the *lan_dst address.
1122 * Will overwrite any previous association
1123 * Returns 1 for success, 0 for failure (out of memory)
1124 *
1125 */
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001126static int lane2_associate_req(struct net_device *dev, const u8 *lan_dst,
1127 const u8 *tlvs, u32 sizeoftlvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
Chas Williamsd44f7742006-09-29 17:11:14 -07001129 int retval;
1130 struct sk_buff *skb;
Wang Chen524ad0a2008-11-12 23:39:10 -08001131 struct lec_priv *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Joe Perches150238e2012-05-08 18:56:50 +00001133 if (!ether_addr_equal(lan_dst, dev->dev_addr))
Joe Perchesc48192a2010-01-26 11:40:08 +00001134 return 0; /* not our mac address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Chas Williamsd44f7742006-09-29 17:11:14 -07001136 kfree(priv->tlvs); /* NULL if there was no previous association */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Arnaldo Carvalho de Melo2afe37c2006-11-21 01:14:33 -02001138 priv->tlvs = kmemdup(tlvs, sizeoftlvs, GFP_KERNEL);
Chas Williamsd44f7742006-09-29 17:11:14 -07001139 if (priv->tlvs == NULL)
Joe Perchesc48192a2010-01-26 11:40:08 +00001140 return 0;
Chas Williamsd44f7742006-09-29 17:11:14 -07001141 priv->sizeoftlvs = sizeoftlvs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Chas Williamsd44f7742006-09-29 17:11:14 -07001143 skb = alloc_skb(sizeoftlvs, GFP_ATOMIC);
1144 if (skb == NULL)
1145 return 0;
1146 skb->len = sizeoftlvs;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001147 skb_copy_to_linear_data(skb, tlvs, sizeoftlvs);
Chas Williamsd44f7742006-09-29 17:11:14 -07001148 retval = send_to_lecd(priv, l_associate_req, NULL, NULL, skb);
1149 if (retval != 0)
Joe Perchesc48192a2010-01-26 11:40:08 +00001150 pr_info("lec.c: lane2_associate_req() failed\n");
Chas Williamsd44f7742006-09-29 17:11:14 -07001151 /*
1152 * If the previous association has changed we must
1153 * somehow notify other LANE entities about the change
1154 */
Joe Perchesc48192a2010-01-26 11:40:08 +00001155 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
1157
1158/*
1159 * LANE2: 3.1.5, LE_ASSOCIATE.indication
1160 *
1161 */
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001162static void lane2_associate_ind(struct net_device *dev, const u8 *mac_addr,
1163 const u8 *tlvs, u32 sizeoftlvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164{
1165#if 0
Chas Williamsd44f7742006-09-29 17:11:14 -07001166 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167#endif
Wang Chen524ad0a2008-11-12 23:39:10 -08001168 struct lec_priv *priv = netdev_priv(dev);
Chas Williamsd44f7742006-09-29 17:11:14 -07001169#if 0 /*
1170 * Why have the TLVs in LE_ARP entries
1171 * since we do not use them? When you
1172 * uncomment this code, make sure the
1173 * TLVs get freed when entry is killed
1174 */
1175 struct lec_arp_table *entry = lec_arp_find(priv, mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Chas Williamsd44f7742006-09-29 17:11:14 -07001177 if (entry == NULL)
1178 return; /* should not happen */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Chas Williamsd44f7742006-09-29 17:11:14 -07001180 kfree(entry->tlvs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Arnaldo Carvalho de Melo2afe37c2006-11-21 01:14:33 -02001182 entry->tlvs = kmemdup(tlvs, sizeoftlvs, GFP_KERNEL);
Chas Williamsd44f7742006-09-29 17:11:14 -07001183 if (entry->tlvs == NULL)
1184 return;
Chas Williamsd44f7742006-09-29 17:11:14 -07001185 entry->sizeoftlvs = sizeoftlvs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186#endif
1187#if 0
Joe Perchesc48192a2010-01-26 11:40:08 +00001188 pr_info("\n");
1189 pr_info("dump of tlvs, sizeoftlvs=%d\n", sizeoftlvs);
Chas Williamsd44f7742006-09-29 17:11:14 -07001190 while (i < sizeoftlvs)
Joe Perchesc48192a2010-01-26 11:40:08 +00001191 pr_cont("%02x ", tlvs[i++]);
Chas Williamsd44f7742006-09-29 17:11:14 -07001192
Joe Perchesc48192a2010-01-26 11:40:08 +00001193 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194#endif
1195
Chas Williamsd44f7742006-09-29 17:11:14 -07001196 /* tell MPOA about the TLVs we saw */
1197 if (priv->lane2_ops && priv->lane2_ops->associate_indicator) {
1198 priv->lane2_ops->associate_indicator(dev, mac_addr,
1199 tlvs, sizeoftlvs);
1200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
1203/*
1204 * Here starts what used to lec_arpc.c
1205 *
1206 * lec_arpc.c was added here when making
1207 * lane client modular. October 1997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 */
1209
1210#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211#include <linux/timer.h>
Joe Perchesc48192a2010-01-26 11:40:08 +00001212#include <linux/param.h>
Arun Sharma600634972011-07-26 16:09:06 -07001213#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214#include <linux/inetdevice.h>
1215#include <net/route.h>
1216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217#if 0
Joe Perchesc48192a2010-01-26 11:40:08 +00001218#define pr_debug(format, args...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219/*
Joe Perches99824462010-01-26 11:40:00 +00001220 #define pr_debug printk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221*/
1222#endif
1223#define DEBUG_ARP_TABLE 0
1224
1225#define LEC_ARP_REFRESH_INTERVAL (3*HZ)
1226
David Howellsc4028952006-11-22 14:57:56 +00001227static void lec_arp_check_expire(struct work_struct *work);
Kees Cookba421792017-10-16 17:29:37 -07001228static void lec_arp_expire_arp(struct timer_list *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001230/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 * Arp table funcs
1232 */
1233
Joe Perchesc48192a2010-01-26 11:40:08 +00001234#define HASH(ch) (ch & (LEC_ARP_TABLE_SIZE - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236/*
1237 * Initialization of arp-cache
1238 */
Chas Williams1fa99612006-09-29 17:11:47 -07001239static void lec_arp_init(struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
Chas Williams1fa99612006-09-29 17:11:47 -07001241 unsigned short i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Joe Perchesc48192a2010-01-26 11:40:08 +00001243 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++)
Chas Williamsd0732f62006-09-29 17:14:27 -07001244 INIT_HLIST_HEAD(&priv->lec_arp_tables[i]);
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001245 INIT_HLIST_HEAD(&priv->lec_arp_empty_ones);
1246 INIT_HLIST_HEAD(&priv->lec_no_forward);
1247 INIT_HLIST_HEAD(&priv->mcast_fwds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 spin_lock_init(&priv->lec_arp_lock);
David Howellsc4028952006-11-22 14:57:56 +00001249 INIT_DELAYED_WORK(&priv->lec_arp_work, lec_arp_check_expire);
Chas Williams987e46b2006-09-29 17:15:59 -07001250 schedule_delayed_work(&priv->lec_arp_work, LEC_ARP_REFRESH_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251}
1252
Chas Williams1fa99612006-09-29 17:11:47 -07001253static void lec_arp_clear_vccs(struct lec_arp_table *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
Chas Williams1fa99612006-09-29 17:11:47 -07001255 if (entry->vcc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 struct atm_vcc *vcc = entry->vcc;
1257 struct lec_vcc_priv *vpriv = LEC_VCC_PRIV(vcc);
Chas Williams1fa99612006-09-29 17:11:47 -07001258 struct net_device *dev = (struct net_device *)vcc->proto_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Chas Williams1fa99612006-09-29 17:11:47 -07001260 vcc->pop = vpriv->old_pop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 if (vpriv->xoff)
1262 netif_wake_queue(dev);
1263 kfree(vpriv);
1264 vcc->user_back = NULL;
Chas Williams1fa99612006-09-29 17:11:47 -07001265 vcc->push = entry->old_push;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 vcc_release_async(vcc, -EPIPE);
Chas Williamsd0732f62006-09-29 17:14:27 -07001267 entry->vcc = NULL;
Chas Williams1fa99612006-09-29 17:11:47 -07001268 }
1269 if (entry->recv_vcc) {
1270 entry->recv_vcc->push = entry->old_recv_push;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 vcc_release_async(entry->recv_vcc, -EPIPE);
Chas Williams1fa99612006-09-29 17:11:47 -07001272 entry->recv_vcc = NULL;
1273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
1275
1276/*
1277 * Insert entry to lec_arp_table
1278 * LANE2: Add to the end of the list to satisfy 8.1.13
1279 */
Chas Williams1fa99612006-09-29 17:11:47 -07001280static inline void
Chas Williamsd0732f62006-09-29 17:14:27 -07001281lec_arp_add(struct lec_priv *priv, struct lec_arp_table *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
Chas Williamsd0732f62006-09-29 17:14:27 -07001283 struct hlist_head *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Chas Williamsd0732f62006-09-29 17:14:27 -07001285 tmp = &priv->lec_arp_tables[HASH(entry->mac_addr[ETH_ALEN - 1])];
1286 hlist_add_head(&entry->next, tmp);
Chas Williams1fa99612006-09-29 17:11:47 -07001287
Joe Perches99824462010-01-26 11:40:00 +00001288 pr_debug("Added entry:%pM\n", entry->mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289}
1290
1291/*
1292 * Remove entry from lec_arp_table
1293 */
Chas Williams1fa99612006-09-29 17:11:47 -07001294static int
1295lec_arp_remove(struct lec_priv *priv, struct lec_arp_table *to_remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296{
Chas Williamsd0732f62006-09-29 17:14:27 -07001297 struct lec_arp_table *entry;
1298 int i, remove_vcc = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Joe Perchesc48192a2010-01-26 11:40:08 +00001300 if (!to_remove)
Chas Williams1fa99612006-09-29 17:11:47 -07001301 return -1;
Chas Williamsd0732f62006-09-29 17:14:27 -07001302
1303 hlist_del(&to_remove->next);
Chas Williams1fa99612006-09-29 17:11:47 -07001304 del_timer(&to_remove->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Joe Perchesc48192a2010-01-26 11:40:08 +00001306 /*
1307 * If this is the only MAC connected to this VCC,
1308 * also tear down the VCC
1309 */
Chas Williams1fa99612006-09-29 17:11:47 -07001310 if (to_remove->status >= ESI_FLUSH_PENDING) {
1311 /*
1312 * ESI_FLUSH_PENDING, ESI_FORWARD_DIRECT
1313 */
Chas Williamsd0732f62006-09-29 17:14:27 -07001314 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001315 hlist_for_each_entry(entry,
Joe Perchesc48192a2010-01-26 11:40:08 +00001316 &priv->lec_arp_tables[i], next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001317 if (memcmp(to_remove->atm_addr,
1318 entry->atm_addr, ATM_ESA_LEN) == 0) {
Chas Williams1fa99612006-09-29 17:11:47 -07001319 remove_vcc = 0;
1320 break;
1321 }
1322 }
1323 }
1324 if (remove_vcc)
1325 lec_arp_clear_vccs(to_remove);
1326 }
1327 skb_queue_purge(&to_remove->tx_wait); /* FIXME: good place for this? */
1328
Joe Perches99824462010-01-26 11:40:00 +00001329 pr_debug("Removed entry:%pM\n", to_remove->mac_addr);
Chas Williams1fa99612006-09-29 17:11:47 -07001330 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331}
1332
1333#if DEBUG_ARP_TABLE
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -07001334static const char *get_status_string(unsigned char st)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335{
Chas Williams1fa99612006-09-29 17:11:47 -07001336 switch (st) {
1337 case ESI_UNKNOWN:
1338 return "ESI_UNKNOWN";
1339 case ESI_ARP_PENDING:
1340 return "ESI_ARP_PENDING";
1341 case ESI_VC_PENDING:
1342 return "ESI_VC_PENDING";
1343 case ESI_FLUSH_PENDING:
1344 return "ESI_FLUSH_PENDING";
1345 case ESI_FORWARD_DIRECT:
1346 return "ESI_FORWARD_DIRECT";
Chas Williams1fa99612006-09-29 17:11:47 -07001347 }
Joe Perchesc48192a2010-01-26 11:40:08 +00001348 return "<UNKNOWN>";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Chas Williams1fa99612006-09-29 17:11:47 -07001351static void dump_arp_table(struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
Chas Williams1fa99612006-09-29 17:11:47 -07001353 struct lec_arp_table *rulla;
Chas Williamsd0732f62006-09-29 17:14:27 -07001354 char buf[256];
1355 int i, j, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Joe Perchesc48192a2010-01-26 11:40:08 +00001357 pr_info("Dump %p:\n", priv);
Chas Williams1fa99612006-09-29 17:11:47 -07001358 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001359 hlist_for_each_entry(rulla,
Joe Perchesc48192a2010-01-26 11:40:08 +00001360 &priv->lec_arp_tables[i], next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001361 offset = 0;
1362 offset += sprintf(buf, "%d: %p\n", i, rulla);
Joe Perchesc48192a2010-01-26 11:40:08 +00001363 offset += sprintf(buf + offset, "Mac: %pM",
1364 rulla->mac_addr);
1365 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001366 for (j = 0; j < ATM_ESA_LEN; j++) {
1367 offset += sprintf(buf + offset,
1368 "%2.2x ",
1369 rulla->atm_addr[j] & 0xff);
1370 }
1371 offset += sprintf(buf + offset,
1372 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1373 rulla->vcc ? rulla->vcc->vpi : 0,
1374 rulla->vcc ? rulla->vcc->vci : 0,
1375 rulla->recv_vcc ? rulla->recv_vcc->
1376 vpi : 0,
1377 rulla->recv_vcc ? rulla->recv_vcc->
1378 vci : 0, rulla->last_used,
1379 rulla->timestamp, rulla->no_tries);
1380 offset +=
1381 sprintf(buf + offset,
1382 "Flags:%x, Packets_flooded:%x, Status: %s ",
1383 rulla->flags, rulla->packets_flooded,
1384 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001385 pr_info("%s\n", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001386 }
Chas Williams1fa99612006-09-29 17:11:47 -07001387 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001388
1389 if (!hlist_empty(&priv->lec_no_forward))
Joe Perchesc48192a2010-01-26 11:40:08 +00001390 pr_info("No forward\n");
Sasha Levinb67bfe02013-02-27 17:06:00 -08001391 hlist_for_each_entry(rulla, &priv->lec_no_forward, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001392 offset = 0;
Joe Perchesc48192a2010-01-26 11:40:08 +00001393 offset += sprintf(buf + offset, "Mac: %pM", rulla->mac_addr);
1394 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001395 for (j = 0; j < ATM_ESA_LEN; j++) {
1396 offset += sprintf(buf + offset, "%2.2x ",
1397 rulla->atm_addr[j] & 0xff);
1398 }
1399 offset += sprintf(buf + offset,
1400 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1401 rulla->vcc ? rulla->vcc->vpi : 0,
1402 rulla->vcc ? rulla->vcc->vci : 0,
1403 rulla->recv_vcc ? rulla->recv_vcc->vpi : 0,
1404 rulla->recv_vcc ? rulla->recv_vcc->vci : 0,
1405 rulla->last_used,
1406 rulla->timestamp, rulla->no_tries);
1407 offset += sprintf(buf + offset,
1408 "Flags:%x, Packets_flooded:%x, Status: %s ",
1409 rulla->flags, rulla->packets_flooded,
1410 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001411 pr_info("%s\n", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001412 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001413
1414 if (!hlist_empty(&priv->lec_arp_empty_ones))
Joe Perchesc48192a2010-01-26 11:40:08 +00001415 pr_info("Empty ones\n");
Sasha Levinb67bfe02013-02-27 17:06:00 -08001416 hlist_for_each_entry(rulla, &priv->lec_arp_empty_ones, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001417 offset = 0;
Joe Perchesc48192a2010-01-26 11:40:08 +00001418 offset += sprintf(buf + offset, "Mac: %pM", rulla->mac_addr);
1419 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001420 for (j = 0; j < ATM_ESA_LEN; j++) {
1421 offset += sprintf(buf + offset, "%2.2x ",
1422 rulla->atm_addr[j] & 0xff);
1423 }
1424 offset += sprintf(buf + offset,
1425 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1426 rulla->vcc ? rulla->vcc->vpi : 0,
1427 rulla->vcc ? rulla->vcc->vci : 0,
1428 rulla->recv_vcc ? rulla->recv_vcc->vpi : 0,
1429 rulla->recv_vcc ? rulla->recv_vcc->vci : 0,
1430 rulla->last_used,
1431 rulla->timestamp, rulla->no_tries);
1432 offset += sprintf(buf + offset,
1433 "Flags:%x, Packets_flooded:%x, Status: %s ",
1434 rulla->flags, rulla->packets_flooded,
1435 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001436 pr_info("%s", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Chas Williamsd0732f62006-09-29 17:14:27 -07001439 if (!hlist_empty(&priv->mcast_fwds))
Joe Perchesc48192a2010-01-26 11:40:08 +00001440 pr_info("Multicast Forward VCCs\n");
Sasha Levinb67bfe02013-02-27 17:06:00 -08001441 hlist_for_each_entry(rulla, &priv->mcast_fwds, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001442 offset = 0;
Joe Perchesc48192a2010-01-26 11:40:08 +00001443 offset += sprintf(buf + offset, "Mac: %pM", rulla->mac_addr);
1444 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001445 for (j = 0; j < ATM_ESA_LEN; j++) {
1446 offset += sprintf(buf + offset, "%2.2x ",
1447 rulla->atm_addr[j] & 0xff);
1448 }
1449 offset += sprintf(buf + offset,
1450 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1451 rulla->vcc ? rulla->vcc->vpi : 0,
1452 rulla->vcc ? rulla->vcc->vci : 0,
1453 rulla->recv_vcc ? rulla->recv_vcc->vpi : 0,
1454 rulla->recv_vcc ? rulla->recv_vcc->vci : 0,
1455 rulla->last_used,
1456 rulla->timestamp, rulla->no_tries);
1457 offset += sprintf(buf + offset,
1458 "Flags:%x, Packets_flooded:%x, Status: %s ",
1459 rulla->flags, rulla->packets_flooded,
1460 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001461 pr_info("%s\n", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464}
Chas Williamsd0732f62006-09-29 17:14:27 -07001465#else
1466#define dump_arp_table(priv) do { } while (0)
1467#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
1469/*
1470 * Destruction of arp-cache
1471 */
Chas Williams1fa99612006-09-29 17:11:47 -07001472static void lec_arp_destroy(struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473{
1474 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001475 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07001476 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001477 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Tejun Heoafe2c512010-12-14 16:21:17 +01001479 cancel_delayed_work_sync(&priv->lec_arp_work);
Chas Williams1fa99612006-09-29 17:11:47 -07001480
1481 /*
1482 * Remove all entries
1483 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
1485 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001486 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001487 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001488 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001489 lec_arp_remove(priv, entry);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001490 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001491 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001492 INIT_HLIST_HEAD(&priv->lec_arp_tables[i]);
Chas Williams1fa99612006-09-29 17:11:47 -07001493 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001494
Sasha Levinb67bfe02013-02-27 17:06:00 -08001495 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001496 &priv->lec_arp_empty_ones, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001497 del_timer_sync(&entry->timer);
1498 lec_arp_clear_vccs(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001499 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001500 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001501 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001502 INIT_HLIST_HEAD(&priv->lec_arp_empty_ones);
1503
Sasha Levinb67bfe02013-02-27 17:06:00 -08001504 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001505 &priv->lec_no_forward, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001506 del_timer_sync(&entry->timer);
1507 lec_arp_clear_vccs(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001508 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001509 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001510 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001511 INIT_HLIST_HEAD(&priv->lec_no_forward);
1512
Sasha Levinb67bfe02013-02-27 17:06:00 -08001513 hlist_for_each_entry_safe(entry, next, &priv->mcast_fwds, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001514 /* No timer, LANEv2 7.1.20 and 2.3.5.3 */
1515 lec_arp_clear_vccs(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001516 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001517 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001518 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001519 INIT_HLIST_HEAD(&priv->mcast_fwds);
Chas Williams1fa99612006-09-29 17:11:47 -07001520 priv->mcast_vcc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1522}
1523
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001524/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 * Find entry by mac_address
1526 */
Chas Williams1fa99612006-09-29 17:11:47 -07001527static struct lec_arp_table *lec_arp_find(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001528 const unsigned char *mac_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529{
Chas Williamsd0732f62006-09-29 17:14:27 -07001530 struct hlist_head *head;
1531 struct lec_arp_table *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Joe Perches99824462010-01-26 11:40:00 +00001533 pr_debug("%pM\n", mac_addr);
Chas Williams1fa99612006-09-29 17:11:47 -07001534
Chas Williamsd0732f62006-09-29 17:14:27 -07001535 head = &priv->lec_arp_tables[HASH(mac_addr[ETH_ALEN - 1])];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001536 hlist_for_each_entry(entry, head, next) {
Joe Perches150238e2012-05-08 18:56:50 +00001537 if (ether_addr_equal(mac_addr, entry->mac_addr))
Chas Williamsd0732f62006-09-29 17:14:27 -07001538 return entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001539 }
1540 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541}
1542
Chas Williams1fa99612006-09-29 17:11:47 -07001543static struct lec_arp_table *make_entry(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001544 const unsigned char *mac_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545{
Chas Williams1fa99612006-09-29 17:11:47 -07001546 struct lec_arp_table *to_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
Chas Williams1fa99612006-09-29 17:11:47 -07001548 to_return = kzalloc(sizeof(struct lec_arp_table), GFP_ATOMIC);
1549 if (!to_return) {
Joe Perchesc48192a2010-01-26 11:40:08 +00001550 pr_info("LEC: Arp entry kmalloc failed\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001551 return NULL;
1552 }
Joe Perches116e8532014-01-20 09:52:16 -08001553 ether_addr_copy(to_return->mac_addr, mac_addr);
Chas Williamsd0732f62006-09-29 17:14:27 -07001554 INIT_HLIST_NODE(&to_return->next);
Kees Cookba421792017-10-16 17:29:37 -07001555 timer_setup(&to_return->timer, lec_arp_expire_arp, 0);
Chas Williams1fa99612006-09-29 17:11:47 -07001556 to_return->last_used = jiffies;
1557 to_return->priv = priv;
1558 skb_queue_head_init(&to_return->tx_wait);
Reshetova, Elena78893662017-07-04 15:53:02 +03001559 refcount_set(&to_return->usage, 1);
Chas Williams1fa99612006-09-29 17:11:47 -07001560 return to_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561}
1562
Chas Williams1fa99612006-09-29 17:11:47 -07001563/* Arp sent timer expired */
Kees Cookba421792017-10-16 17:29:37 -07001564static void lec_arp_expire_arp(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565{
Chas Williams1fa99612006-09-29 17:11:47 -07001566 struct lec_arp_table *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Kees Cookba421792017-10-16 17:29:37 -07001568 entry = from_timer(entry, t, timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Joe Perches99824462010-01-26 11:40:00 +00001570 pr_debug("\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001571 if (entry->status == ESI_ARP_PENDING) {
1572 if (entry->no_tries <= entry->priv->max_retry_count) {
1573 if (entry->is_rdesc)
1574 send_to_lecd(entry->priv, l_rdesc_arp_xmt,
1575 entry->mac_addr, NULL, NULL);
1576 else
1577 send_to_lecd(entry->priv, l_arp_xmt,
1578 entry->mac_addr, NULL, NULL);
1579 entry->no_tries++;
1580 }
1581 mod_timer(&entry->timer, jiffies + (1 * HZ));
1582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583}
1584
Chas Williams1fa99612006-09-29 17:11:47 -07001585/* Unknown/unused vcc expire, remove associated entry */
Kees Cookba421792017-10-16 17:29:37 -07001586static void lec_arp_expire_vcc(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
1588 unsigned long flags;
Kees Cookba421792017-10-16 17:29:37 -07001589 struct lec_arp_table *to_remove = from_timer(to_remove, t, timer);
Joe Perchese3192692012-06-03 17:41:40 +00001590 struct lec_priv *priv = to_remove->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Chas Williams1fa99612006-09-29 17:11:47 -07001592 del_timer(&to_remove->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Joe Perches99824462010-01-26 11:40:00 +00001594 pr_debug("%p %p: vpi:%d vci:%d\n",
1595 to_remove, priv,
1596 to_remove->vcc ? to_remove->recv_vcc->vpi : 0,
1597 to_remove->vcc ? to_remove->recv_vcc->vci : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
1599 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd0732f62006-09-29 17:14:27 -07001600 hlist_del(&to_remove->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1602
Chas Williams1fa99612006-09-29 17:11:47 -07001603 lec_arp_clear_vccs(to_remove);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001604 lec_arp_put(to_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605}
1606
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001607static bool __lec_arp_check_expire(struct lec_arp_table *entry,
1608 unsigned long now,
1609 struct lec_priv *priv)
1610{
1611 unsigned long time_to_check;
1612
1613 if ((entry->flags) & LEC_REMOTE_FLAG && priv->topology_change)
1614 time_to_check = priv->forward_delay_time;
1615 else
1616 time_to_check = priv->aging_time;
1617
1618 pr_debug("About to expire: %lx - %lx > %lx\n",
1619 now, entry->last_used, time_to_check);
1620 if (time_after(now, entry->last_used + time_to_check) &&
1621 !(entry->flags & LEC_PERMANENT_FLAG) &&
1622 !(entry->mac_addr[0] & 0x01)) { /* LANE2: 7.1.20 */
1623 /* Remove entry */
1624 pr_debug("Entry timed out\n");
1625 lec_arp_remove(priv, entry);
1626 lec_arp_put(entry);
1627 } else {
1628 /* Something else */
1629 if ((entry->status == ESI_VC_PENDING ||
1630 entry->status == ESI_ARP_PENDING) &&
1631 time_after_eq(now, entry->timestamp +
1632 priv->max_unknown_frame_time)) {
1633 entry->timestamp = jiffies;
1634 entry->packets_flooded = 0;
1635 if (entry->status == ESI_VC_PENDING)
1636 send_to_lecd(priv, l_svc_setup,
1637 entry->mac_addr,
1638 entry->atm_addr,
1639 NULL);
1640 }
1641 if (entry->status == ESI_FLUSH_PENDING &&
1642 time_after_eq(now, entry->timestamp +
1643 priv->path_switching_delay)) {
1644 lec_arp_hold(entry);
1645 return true;
1646 }
1647 }
1648
1649 return false;
1650}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651/*
1652 * Expire entries.
1653 * 1. Re-set timer
1654 * 2. For each entry, delete entries that have aged past the age limit.
1655 * 3. For each entry, depending on the status of the entry, perform
1656 * the following maintenance.
1657 * a. If status is ESI_VC_PENDING or ESI_ARP_PENDING then if the
1658 * tick_count is above the max_unknown_frame_time, clear
1659 * the tick_count to zero and clear the packets_flooded counter
1660 * to zero. This supports the packet rate limit per address
1661 * while flooding unknowns.
1662 * b. If the status is ESI_FLUSH_PENDING and the tick_count is greater
1663 * than or equal to the path_switching_delay, change the status
1664 * to ESI_FORWARD_DIRECT. This causes the flush period to end
1665 * regardless of the progress of the flush protocol.
1666 */
David Howellsc4028952006-11-22 14:57:56 +00001667static void lec_arp_check_expire(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668{
1669 unsigned long flags;
David Howellsc4028952006-11-22 14:57:56 +00001670 struct lec_priv *priv =
1671 container_of(work, struct lec_priv, lec_arp_work.work);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001672 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07001673 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001674 unsigned long now;
Chas Williams1fa99612006-09-29 17:11:47 -07001675 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
Joe Perches99824462010-01-26 11:40:00 +00001677 pr_debug("%p\n", priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 now = jiffies;
Chas Williams6656e3c2006-09-29 17:17:17 -07001679restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001681 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001682 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001683 &priv->lec_arp_tables[i], next) {
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001684 if (__lec_arp_check_expire(entry, now, priv)) {
1685 struct sk_buff *skb;
1686 struct atm_vcc *vcc = entry->vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001688 spin_unlock_irqrestore(&priv->lec_arp_lock,
1689 flags);
1690 while ((skb = skb_dequeue(&entry->tx_wait)))
1691 lec_send(vcc, skb);
1692 entry->last_used = jiffies;
1693 entry->status = ESI_FORWARD_DIRECT;
Chas Williams33a9c2d2006-09-29 17:16:48 -07001694 lec_arp_put(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001696 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 }
1698 }
1699 }
1700 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1701
Chas Williams987e46b2006-09-29 17:15:59 -07001702 schedule_delayed_work(&priv->lec_arp_work, LEC_ARP_REFRESH_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703}
Chas Williams1fa99612006-09-29 17:11:47 -07001704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705/*
1706 * Try to find vcc where mac_address is attached.
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001707 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 */
Chas Williams1fa99612006-09-29 17:11:47 -07001709static struct atm_vcc *lec_arp_resolve(struct lec_priv *priv,
Joe Perchesc48192a2010-01-26 11:40:08 +00001710 const unsigned char *mac_to_find,
1711 int is_rdesc,
Chas Williams1fa99612006-09-29 17:11:47 -07001712 struct lec_arp_table **ret_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
1714 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07001715 struct lec_arp_table *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 struct atm_vcc *found;
1717
Chas Williams1fa99612006-09-29 17:11:47 -07001718 if (mac_to_find[0] & 0x01) {
1719 switch (priv->lane_version) {
1720 case 1:
1721 return priv->mcast_vcc;
Chas Williams1fa99612006-09-29 17:11:47 -07001722 case 2: /* LANE2 wants arp for multicast addresses */
Joe Perches150238e2012-05-08 18:56:50 +00001723 if (ether_addr_equal(mac_to_find, bus_mac))
Chas Williams1fa99612006-09-29 17:11:47 -07001724 return priv->mcast_vcc;
1725 break;
1726 default:
1727 break;
1728 }
1729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
1731 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001732 entry = lec_arp_find(priv, mac_to_find);
1733
1734 if (entry) {
1735 if (entry->status == ESI_FORWARD_DIRECT) {
1736 /* Connection Ok */
1737 entry->last_used = jiffies;
Chas Williams6656e3c2006-09-29 17:17:17 -07001738 lec_arp_hold(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001739 *ret_entry = entry;
1740 found = entry->vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001742 }
1743 /*
1744 * If the LE_ARP cache entry is still pending, reset count to 0
Scott Talbert75b895c2005-09-29 17:31:30 -07001745 * so another LE_ARP request can be made for this frame.
1746 */
Joe Perchesc48192a2010-01-26 11:40:08 +00001747 if (entry->status == ESI_ARP_PENDING)
Scott Talbert75b895c2005-09-29 17:31:30 -07001748 entry->no_tries = 0;
Chas Williams1fa99612006-09-29 17:11:47 -07001749 /*
1750 * Data direct VC not yet set up, check to see if the unknown
1751 * frame count is greater than the limit. If the limit has
1752 * not been reached, allow the caller to send packet to
1753 * BUS.
1754 */
1755 if (entry->status != ESI_FLUSH_PENDING &&
1756 entry->packets_flooded <
1757 priv->maximum_unknown_frame_count) {
1758 entry->packets_flooded++;
Joe Perches99824462010-01-26 11:40:00 +00001759 pr_debug("Flooding..\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001760 found = priv->mcast_vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001762 }
1763 /*
1764 * We got here because entry->status == ESI_FLUSH_PENDING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 * or BUS flood limit was reached for an entry which is
1766 * in ESI_ARP_PENDING or ESI_VC_PENDING state.
1767 */
Chas Williams6656e3c2006-09-29 17:17:17 -07001768 lec_arp_hold(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001769 *ret_entry = entry;
Joe Perches99824462010-01-26 11:40:00 +00001770 pr_debug("entry->status %d entry->vcc %p\n", entry->status,
1771 entry->vcc);
Chas Williams1fa99612006-09-29 17:11:47 -07001772 found = NULL;
1773 } else {
1774 /* No matching entry was found */
1775 entry = make_entry(priv, mac_to_find);
Joe Perches99824462010-01-26 11:40:00 +00001776 pr_debug("Making entry\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001777 if (!entry) {
1778 found = priv->mcast_vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001780 }
1781 lec_arp_add(priv, entry);
1782 /* We want arp-request(s) to be sent */
1783 entry->packets_flooded = 1;
1784 entry->status = ESI_ARP_PENDING;
1785 entry->no_tries = 1;
1786 entry->last_used = entry->timestamp = jiffies;
1787 entry->is_rdesc = is_rdesc;
1788 if (entry->is_rdesc)
1789 send_to_lecd(priv, l_rdesc_arp_xmt, mac_to_find, NULL,
1790 NULL);
1791 else
1792 send_to_lecd(priv, l_arp_xmt, mac_to_find, NULL, NULL);
1793 entry->timer.expires = jiffies + (1 * HZ);
Kees Cook841b86f2017-10-23 09:40:42 +02001794 entry->timer.function = lec_arp_expire_arp;
Chas Williams1fa99612006-09-29 17:11:47 -07001795 add_timer(&entry->timer);
1796 found = priv->mcast_vcc;
1797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
1799out:
1800 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1801 return found;
1802}
1803
1804static int
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001805lec_addr_delete(struct lec_priv *priv, const unsigned char *atm_addr,
Chas Williams1fa99612006-09-29 17:11:47 -07001806 unsigned long permanent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807{
1808 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001809 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07001810 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001811 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Joe Perches99824462010-01-26 11:40:00 +00001813 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001815 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001816 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001817 &priv->lec_arp_tables[i], next) {
1818 if (!memcmp(atm_addr, entry->atm_addr, ATM_ESA_LEN) &&
1819 (permanent ||
1820 !(entry->flags & LEC_PERMANENT_FLAG))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 lec_arp_remove(priv, entry);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001822 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001825 return 0;
1826 }
1827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001829 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830}
1831
1832/*
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001833 * Notifies: Response to arp_request (atm_addr != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 */
1835static void
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001836lec_arp_update(struct lec_priv *priv, const unsigned char *mac_addr,
1837 const unsigned char *atm_addr, unsigned long remoteflag,
Chas Williams1fa99612006-09-29 17:11:47 -07001838 unsigned int targetless_le_arp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839{
1840 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001841 struct hlist_node *next;
Chas Williams1fa99612006-09-29 17:11:47 -07001842 struct lec_arp_table *entry, *tmp;
1843 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Joe Perches99824462010-01-26 11:40:00 +00001845 pr_debug("%smac:%pM\n",
1846 (targetless_le_arp) ? "targetless " : "", mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
1848 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001849 entry = lec_arp_find(priv, mac_addr);
1850 if (entry == NULL && targetless_le_arp)
1851 goto out; /*
1852 * LANE2: ignore targetless LE_ARPs for which
1853 * we have no entry in the cache. 7.1.30
1854 */
Chas Williamsd0732f62006-09-29 17:14:27 -07001855 if (!hlist_empty(&priv->lec_arp_empty_ones)) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001856 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001857 &priv->lec_arp_empty_ones, next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001858 if (memcmp(entry->atm_addr, atm_addr, ATM_ESA_LEN) == 0) {
1859 hlist_del(&entry->next);
Chas Williams1fa99612006-09-29 17:11:47 -07001860 del_timer(&entry->timer);
Chas Williamsd0732f62006-09-29 17:14:27 -07001861 tmp = lec_arp_find(priv, mac_addr);
1862 if (tmp) {
1863 del_timer(&tmp->timer);
1864 tmp->status = ESI_FORWARD_DIRECT;
1865 memcpy(tmp->atm_addr, atm_addr, ATM_ESA_LEN);
1866 tmp->vcc = entry->vcc;
1867 tmp->old_push = entry->old_push;
1868 tmp->last_used = jiffies;
1869 del_timer(&entry->timer);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001870 lec_arp_put(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001871 entry = tmp;
1872 } else {
1873 entry->status = ESI_FORWARD_DIRECT;
Joe Perches116e8532014-01-20 09:52:16 -08001874 ether_addr_copy(entry->mac_addr,
1875 mac_addr);
Chas Williamsd0732f62006-09-29 17:14:27 -07001876 entry->last_used = jiffies;
1877 lec_arp_add(priv, entry);
1878 }
1879 if (remoteflag)
1880 entry->flags |= LEC_REMOTE_FLAG;
1881 else
1882 entry->flags &= ~LEC_REMOTE_FLAG;
Stephen Hemminger52240062007-08-28 15:22:09 -07001883 pr_debug("After update\n");
Chas Williamsd0732f62006-09-29 17:14:27 -07001884 dump_arp_table(priv);
1885 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001886 }
Chas Williams1fa99612006-09-29 17:11:47 -07001887 }
1888 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001889
Chas Williams1fa99612006-09-29 17:11:47 -07001890 entry = lec_arp_find(priv, mac_addr);
1891 if (!entry) {
1892 entry = make_entry(priv, mac_addr);
1893 if (!entry)
1894 goto out;
1895 entry->status = ESI_UNKNOWN;
1896 lec_arp_add(priv, entry);
1897 /* Temporary, changes before end of function */
1898 }
1899 memcpy(entry->atm_addr, atm_addr, ATM_ESA_LEN);
1900 del_timer(&entry->timer);
1901 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001902 hlist_for_each_entry(tmp,
Joe Perchesc48192a2010-01-26 11:40:08 +00001903 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001904 if (entry != tmp &&
1905 !memcmp(tmp->atm_addr, atm_addr, ATM_ESA_LEN)) {
1906 /* Vcc to this host exists */
1907 if (tmp->status > ESI_VC_PENDING) {
1908 /*
1909 * ESI_FLUSH_PENDING,
1910 * ESI_FORWARD_DIRECT
1911 */
1912 entry->vcc = tmp->vcc;
1913 entry->old_push = tmp->old_push;
1914 }
1915 entry->status = tmp->status;
1916 break;
1917 }
1918 }
1919 }
1920 if (remoteflag)
1921 entry->flags |= LEC_REMOTE_FLAG;
1922 else
1923 entry->flags &= ~LEC_REMOTE_FLAG;
1924 if (entry->status == ESI_ARP_PENDING || entry->status == ESI_UNKNOWN) {
1925 entry->status = ESI_VC_PENDING;
Chas Williamsd0732f62006-09-29 17:14:27 -07001926 send_to_lecd(priv, l_svc_setup, entry->mac_addr, atm_addr, NULL);
Chas Williams1fa99612006-09-29 17:11:47 -07001927 }
Stephen Hemminger52240062007-08-28 15:22:09 -07001928 pr_debug("After update2\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001929 dump_arp_table(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930out:
1931 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1932}
1933
1934/*
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001935 * Notifies: Vcc setup ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 */
1937static void
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001938lec_vcc_added(struct lec_priv *priv, const struct atmlec_ioc *ioc_data,
Chas Williams1fa99612006-09-29 17:11:47 -07001939 struct atm_vcc *vcc,
1940 void (*old_push) (struct atm_vcc *vcc, struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941{
1942 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07001943 struct lec_arp_table *entry;
1944 int i, found_entry = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
1946 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Joe Perchesc48192a2010-01-26 11:40:08 +00001947 /* Vcc for Multicast Forward. No timer, LANEv2 7.1.20 and 2.3.5.3 */
Chas Williams1fa99612006-09-29 17:11:47 -07001948 if (ioc_data->receive == 2) {
Stephen Hemminger52240062007-08-28 15:22:09 -07001949 pr_debug("LEC_ARP: Attaching mcast forward\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950#if 0
Chas Williams1fa99612006-09-29 17:11:47 -07001951 entry = lec_arp_find(priv, bus_mac);
1952 if (!entry) {
Joe Perchesc48192a2010-01-26 11:40:08 +00001953 pr_info("LEC_ARP: Multicast entry not found!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001955 }
1956 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
1957 entry->recv_vcc = vcc;
1958 entry->old_recv_push = old_push;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959#endif
Chas Williams1fa99612006-09-29 17:11:47 -07001960 entry = make_entry(priv, bus_mac);
1961 if (entry == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001963 del_timer(&entry->timer);
1964 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
1965 entry->recv_vcc = vcc;
1966 entry->old_recv_push = old_push;
Chas Williamsd0732f62006-09-29 17:14:27 -07001967 hlist_add_head(&entry->next, &priv->mcast_fwds);
Chas Williams1fa99612006-09-29 17:11:47 -07001968 goto out;
1969 } else if (ioc_data->receive == 1) {
1970 /*
1971 * Vcc which we don't want to make default vcc,
1972 * attach it anyway.
1973 */
Joe Perches99824462010-01-26 11:40:00 +00001974 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",
1975 ioc_data->atm_addr[0], ioc_data->atm_addr[1],
1976 ioc_data->atm_addr[2], ioc_data->atm_addr[3],
1977 ioc_data->atm_addr[4], ioc_data->atm_addr[5],
1978 ioc_data->atm_addr[6], ioc_data->atm_addr[7],
1979 ioc_data->atm_addr[8], ioc_data->atm_addr[9],
1980 ioc_data->atm_addr[10], ioc_data->atm_addr[11],
1981 ioc_data->atm_addr[12], ioc_data->atm_addr[13],
1982 ioc_data->atm_addr[14], ioc_data->atm_addr[15],
1983 ioc_data->atm_addr[16], ioc_data->atm_addr[17],
1984 ioc_data->atm_addr[18], ioc_data->atm_addr[19]);
Chas Williams1fa99612006-09-29 17:11:47 -07001985 entry = make_entry(priv, bus_mac);
1986 if (entry == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001988 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
Joe Perches19ffa562015-03-02 19:54:54 -08001989 eth_zero_addr(entry->mac_addr);
Chas Williams1fa99612006-09-29 17:11:47 -07001990 entry->recv_vcc = vcc;
1991 entry->old_recv_push = old_push;
1992 entry->status = ESI_UNKNOWN;
1993 entry->timer.expires = jiffies + priv->vcc_timeout_period;
Kees Cook841b86f2017-10-23 09:40:42 +02001994 entry->timer.function = lec_arp_expire_vcc;
Chas Williamsd0732f62006-09-29 17:14:27 -07001995 hlist_add_head(&entry->next, &priv->lec_no_forward);
Chas Williams1fa99612006-09-29 17:11:47 -07001996 add_timer(&entry->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 dump_arp_table(priv);
1998 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001999 }
Joe Perches99824462010-01-26 11:40:00 +00002000 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",
2001 ioc_data->atm_addr[0], ioc_data->atm_addr[1],
2002 ioc_data->atm_addr[2], ioc_data->atm_addr[3],
2003 ioc_data->atm_addr[4], ioc_data->atm_addr[5],
2004 ioc_data->atm_addr[6], ioc_data->atm_addr[7],
2005 ioc_data->atm_addr[8], ioc_data->atm_addr[9],
2006 ioc_data->atm_addr[10], ioc_data->atm_addr[11],
2007 ioc_data->atm_addr[12], ioc_data->atm_addr[13],
2008 ioc_data->atm_addr[14], ioc_data->atm_addr[15],
2009 ioc_data->atm_addr[16], ioc_data->atm_addr[17],
2010 ioc_data->atm_addr[18], ioc_data->atm_addr[19]);
Chas Williams1fa99612006-09-29 17:11:47 -07002011 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08002012 hlist_for_each_entry(entry,
Joe Perchesc48192a2010-01-26 11:40:08 +00002013 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002014 if (memcmp
2015 (ioc_data->atm_addr, entry->atm_addr,
2016 ATM_ESA_LEN) == 0) {
Stephen Hemminger52240062007-08-28 15:22:09 -07002017 pr_debug("LEC_ARP: Attaching data direct\n");
2018 pr_debug("Currently -> Vcc: %d, Rvcc:%d\n",
Joe Perches99824462010-01-26 11:40:00 +00002019 entry->vcc ? entry->vcc->vci : 0,
2020 entry->recv_vcc ? entry->recv_vcc->
2021 vci : 0);
Chas Williams1fa99612006-09-29 17:11:47 -07002022 found_entry = 1;
2023 del_timer(&entry->timer);
2024 entry->vcc = vcc;
2025 entry->old_push = old_push;
2026 if (entry->status == ESI_VC_PENDING) {
2027 if (priv->maximum_unknown_frame_count
2028 == 0)
2029 entry->status =
2030 ESI_FORWARD_DIRECT;
2031 else {
2032 entry->timestamp = jiffies;
2033 entry->status =
2034 ESI_FLUSH_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035#if 0
Chas Williams1fa99612006-09-29 17:11:47 -07002036 send_to_lecd(priv, l_flush_xmt,
2037 NULL,
2038 entry->atm_addr,
2039 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040#endif
Chas Williams1fa99612006-09-29 17:11:47 -07002041 }
2042 } else {
2043 /*
2044 * They were forming a connection
2045 * to us, and we to them. Our
2046 * ATM address is numerically lower
2047 * than theirs, so we make connection
2048 * we formed into default VCC (8.1.11).
2049 * Connection they made gets torn
2050 * down. This might confuse some
2051 * clients. Can be changed if
2052 * someone reports trouble...
2053 */
2054 ;
2055 }
2056 }
2057 }
2058 }
2059 if (found_entry) {
Stephen Hemminger52240062007-08-28 15:22:09 -07002060 pr_debug("After vcc was added\n");
Chas Williams1fa99612006-09-29 17:11:47 -07002061 dump_arp_table(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002063 }
2064 /*
2065 * Not found, snatch address from first data packet that arrives
2066 * from this vcc
2067 */
2068 entry = make_entry(priv, bus_mac);
2069 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002071 entry->vcc = vcc;
2072 entry->old_push = old_push;
2073 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
Joe Perches19ffa562015-03-02 19:54:54 -08002074 eth_zero_addr(entry->mac_addr);
Chas Williams1fa99612006-09-29 17:11:47 -07002075 entry->status = ESI_UNKNOWN;
Chas Williamsd0732f62006-09-29 17:14:27 -07002076 hlist_add_head(&entry->next, &priv->lec_arp_empty_ones);
Chas Williams1fa99612006-09-29 17:11:47 -07002077 entry->timer.expires = jiffies + priv->vcc_timeout_period;
Kees Cook841b86f2017-10-23 09:40:42 +02002078 entry->timer.function = lec_arp_expire_vcc;
Chas Williams1fa99612006-09-29 17:11:47 -07002079 add_timer(&entry->timer);
Stephen Hemminger52240062007-08-28 15:22:09 -07002080 pr_debug("After vcc was added\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 dump_arp_table(priv);
2082out:
2083 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2084}
2085
Chas Williams1fa99612006-09-29 17:11:47 -07002086static void lec_flush_complete(struct lec_priv *priv, unsigned long tran_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087{
2088 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07002089 struct lec_arp_table *entry;
2090 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
Joe Perches99824462010-01-26 11:40:00 +00002092 pr_debug("%lx\n", tran_id);
Chas Williams6656e3c2006-09-29 17:17:17 -07002093restart:
Chas Williams1fa99612006-09-29 17:11:47 -07002094 spin_lock_irqsave(&priv->lec_arp_lock, flags);
2095 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08002096 hlist_for_each_entry(entry,
Joe Perchesc48192a2010-01-26 11:40:08 +00002097 &priv->lec_arp_tables[i], next) {
2098 if (entry->flush_tran_id == tran_id &&
2099 entry->status == ESI_FLUSH_PENDING) {
Chas Williams1fa99612006-09-29 17:11:47 -07002100 struct sk_buff *skb;
Chas Williams6656e3c2006-09-29 17:17:17 -07002101 struct atm_vcc *vcc = entry->vcc;
Chas Williams1fa99612006-09-29 17:11:47 -07002102
Chas Williams6656e3c2006-09-29 17:17:17 -07002103 lec_arp_hold(entry);
Joe Perchesc48192a2010-01-26 11:40:08 +00002104 spin_unlock_irqrestore(&priv->lec_arp_lock,
2105 flags);
Joe Perchesb4c84ec2010-01-26 11:40:19 +00002106 while ((skb = skb_dequeue(&entry->tx_wait)))
Stephen Hemminger162619e2009-01-09 13:01:01 +00002107 lec_send(vcc, skb);
Chas Williams6656e3c2006-09-29 17:17:17 -07002108 entry->last_used = jiffies;
Chas Williams1fa99612006-09-29 17:11:47 -07002109 entry->status = ESI_FORWARD_DIRECT;
Chas Williams6656e3c2006-09-29 17:17:17 -07002110 lec_arp_put(entry);
Stephen Hemminger52240062007-08-28 15:22:09 -07002111 pr_debug("LEC_ARP: Flushed\n");
Chas Williams6656e3c2006-09-29 17:17:17 -07002112 goto restart;
Chas Williams1fa99612006-09-29 17:11:47 -07002113 }
2114 }
2115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002117 dump_arp_table(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118}
2119
2120static void
2121lec_set_flush_tran_id(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07002122 const unsigned char *atm_addr, unsigned long tran_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123{
2124 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07002125 struct lec_arp_table *entry;
2126 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
2128 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002129 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++)
Sasha Levinb67bfe02013-02-27 17:06:00 -08002130 hlist_for_each_entry(entry,
Joe Perchesc48192a2010-01-26 11:40:08 +00002131 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002132 if (!memcmp(atm_addr, entry->atm_addr, ATM_ESA_LEN)) {
2133 entry->flush_tran_id = tran_id;
Stephen Hemminger52240062007-08-28 15:22:09 -07002134 pr_debug("Set flush transaction id to %lx for %p\n",
Joe Perches99824462010-01-26 11:40:00 +00002135 tran_id, entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002136 }
Chas Williamsd0732f62006-09-29 17:14:27 -07002137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2139}
2140
Chas Williams1fa99612006-09-29 17:11:47 -07002141static int lec_mcast_make(struct lec_priv *priv, struct atm_vcc *vcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142{
2143 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07002144 unsigned char mac_addr[] = {
2145 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
2146 };
2147 struct lec_arp_table *to_add;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 struct lec_vcc_priv *vpriv;
2149 int err = 0;
Chas Williams1fa99612006-09-29 17:11:47 -07002150
Joe Perchesc48192a2010-01-26 11:40:08 +00002151 vpriv = kmalloc(sizeof(struct lec_vcc_priv), GFP_KERNEL);
2152 if (!vpriv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 return -ENOMEM;
2154 vpriv->xoff = 0;
2155 vpriv->old_pop = vcc->pop;
2156 vcc->user_back = vpriv;
Chas Williams1fa99612006-09-29 17:11:47 -07002157 vcc->pop = lec_pop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002159 to_add = make_entry(priv, mac_addr);
2160 if (!to_add) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 vcc->pop = vpriv->old_pop;
2162 kfree(vpriv);
Chas Williams1fa99612006-09-29 17:11:47 -07002163 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002165 }
2166 memcpy(to_add->atm_addr, vcc->remote.sas_addr.prv, ATM_ESA_LEN);
2167 to_add->status = ESI_FORWARD_DIRECT;
2168 to_add->flags |= LEC_PERMANENT_FLAG;
2169 to_add->vcc = vcc;
2170 to_add->old_push = vcc->push;
2171 vcc->push = lec_push;
2172 priv->mcast_vcc = vcc;
2173 lec_arp_add(priv, to_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174out:
2175 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002176 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177}
2178
Chas Williams1fa99612006-09-29 17:11:47 -07002179static void lec_vcc_close(struct lec_priv *priv, struct atm_vcc *vcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180{
2181 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002182 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07002183 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07002184 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Stephen Hemminger52240062007-08-28 15:22:09 -07002186 pr_debug("LEC_ARP: lec_vcc_close vpi:%d vci:%d\n", vcc->vpi, vcc->vci);
Chas Williams1fa99612006-09-29 17:11:47 -07002187 dump_arp_table(priv);
Chas Williamsd0732f62006-09-29 17:14:27 -07002188
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd0732f62006-09-29 17:14:27 -07002190
Chas Williams1fa99612006-09-29 17:11:47 -07002191 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08002192 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00002193 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002194 if (vcc == entry->vcc) {
2195 lec_arp_remove(priv, entry);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002196 lec_arp_put(entry);
Joe Perchesc48192a2010-01-26 11:40:08 +00002197 if (priv->mcast_vcc == vcc)
Chas Williams1fa99612006-09-29 17:11:47 -07002198 priv->mcast_vcc = NULL;
Chas Williams1fa99612006-09-29 17:11:47 -07002199 }
2200 }
2201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Sasha Levinb67bfe02013-02-27 17:06:00 -08002203 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00002204 &priv->lec_arp_empty_ones, next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002205 if (entry->vcc == vcc) {
Chas Williams1fa99612006-09-29 17:11:47 -07002206 lec_arp_clear_vccs(entry);
2207 del_timer(&entry->timer);
Chas Williamsd0732f62006-09-29 17:14:27 -07002208 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002209 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002210 }
Chas Williams1fa99612006-09-29 17:11:47 -07002211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
Sasha Levinb67bfe02013-02-27 17:06:00 -08002213 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00002214 &priv->lec_no_forward, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002215 if (entry->recv_vcc == vcc) {
2216 lec_arp_clear_vccs(entry);
2217 del_timer(&entry->timer);
Chas Williamsd0732f62006-09-29 17:14:27 -07002218 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002219 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002220 }
Chas Williams1fa99612006-09-29 17:11:47 -07002221 }
2222
Sasha Levinb67bfe02013-02-27 17:06:00 -08002223 hlist_for_each_entry_safe(entry, next, &priv->mcast_fwds, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002224 if (entry->recv_vcc == vcc) {
2225 lec_arp_clear_vccs(entry);
2226 /* No timer, LANEv2 7.1.20 and 2.3.5.3 */
Chas Williamsd0732f62006-09-29 17:14:27 -07002227 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002228 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002229 }
Chas Williams1fa99612006-09-29 17:11:47 -07002230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
2232 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2233 dump_arp_table(priv);
2234}
2235
2236static void
2237lec_arp_check_empties(struct lec_priv *priv,
Chas Williams1fa99612006-09-29 17:11:47 -07002238 struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239{
Chas Williams1fa99612006-09-29 17:11:47 -07002240 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002241 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07002242 struct lec_arp_table *entry, *tmp;
Chas Williams1fa99612006-09-29 17:11:47 -07002243 struct lecdatahdr_8023 *hdr = (struct lecdatahdr_8023 *)skb->data;
Paul Gortmaker60eea6c2012-05-10 16:17:00 -04002244 unsigned char *src = hdr->h_source;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
2246 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Sasha Levinb67bfe02013-02-27 17:06:00 -08002247 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00002248 &priv->lec_arp_empty_ones, next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002249 if (vcc == entry->vcc) {
2250 del_timer(&entry->timer);
Joe Perches116e8532014-01-20 09:52:16 -08002251 ether_addr_copy(entry->mac_addr, src);
Chas Williamsd0732f62006-09-29 17:14:27 -07002252 entry->status = ESI_FORWARD_DIRECT;
2253 entry->last_used = jiffies;
2254 /* We might have got an entry */
Joe Perchesc48192a2010-01-26 11:40:08 +00002255 tmp = lec_arp_find(priv, src);
2256 if (tmp) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002257 lec_arp_remove(priv, tmp);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002258 lec_arp_put(tmp);
Chas Williamsd0732f62006-09-29 17:14:27 -07002259 }
2260 hlist_del(&entry->next);
2261 lec_arp_add(priv, entry);
2262 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002263 }
Chas Williams1fa99612006-09-29 17:11:47 -07002264 }
Stephen Hemminger52240062007-08-28 15:22:09 -07002265 pr_debug("LEC_ARP: Arp_check_empties: entry not found!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266out:
2267 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2268}
Chas Williams1fa99612006-09-29 17:11:47 -07002269
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270MODULE_LICENSE("GPL");