blob: d7f5cf5b7594d0ea4e766e06fbc07e6fce590e3b [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;
David Woodhouse9bbe60a2018-06-16 11:55:44 +0100185 atm_account_tx(vcc, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (vcc->send(vcc, skb) < 0) {
Stephen Hemminger162619e2009-01-09 13:01:01 +0000188 dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return;
190 }
191
Stephen Hemminger162619e2009-01-09 13:01:01 +0000192 dev->stats.tx_packets++;
193 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
Chas Williamsd44f7742006-09-29 17:11:14 -0700196static void lec_tx_timeout(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Joe Perches99824462010-01-26 11:40:00 +0000198 pr_info("%s\n", dev->name);
Florian Westphal860e9532016-05-03 16:33:13 +0200199 netif_trans_update(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 netif_wake_queue(dev);
201}
202
Stephen Hemminger3c805a22009-08-31 19:50:42 +0000203static netdev_tx_t lec_start_xmit(struct sk_buff *skb,
204 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Chas Williamsd44f7742006-09-29 17:11:14 -0700206 struct sk_buff *skb2;
Wang Chen524ad0a2008-11-12 23:39:10 -0800207 struct lec_priv *priv = netdev_priv(dev);
Chas Williamsd44f7742006-09-29 17:11:14 -0700208 struct lecdatahdr_8023 *lec_h;
209 struct atm_vcc *vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 struct lec_arp_table *entry;
Chas Williamsd44f7742006-09-29 17:11:14 -0700211 unsigned char *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 int min_frame_size;
Chas Williamsd44f7742006-09-29 17:11:14 -0700213 int is_rdesc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Joe Perches99824462010-01-26 11:40:00 +0000215 pr_debug("called\n");
Chas Williamsd44f7742006-09-29 17:11:14 -0700216 if (!priv->lecd) {
Joe Perchesc48192a2010-01-26 11:40:08 +0000217 pr_info("%s:No lecd attached\n", dev->name);
Stephen Hemminger162619e2009-01-09 13:01:01 +0000218 dev->stats.tx_errors++;
Chas Williamsd44f7742006-09-29 17:11:14 -0700219 netif_stop_queue(dev);
Patrick McHardy81fbbf62009-06-12 05:34:37 +0000220 kfree_skb(skb);
221 return NETDEV_TX_OK;
Chas Williamsd44f7742006-09-29 17:11:14 -0700222 }
223
Stephen Hemminger52240062007-08-28 15:22:09 -0700224 pr_debug("skbuff head:%lx data:%lx tail:%lx end:%lx\n",
Joe Perches99824462010-01-26 11:40:00 +0000225 (long)skb->head, (long)skb->data, (long)skb_tail_pointer(skb),
226 (long)skb_end_pointer(skb));
Javier Martinez Canillas9a81c342016-09-09 08:43:14 -0400227#if IS_ENABLED(CONFIG_BRIDGE)
Chas Williamsd44f7742006-09-29 17:11:14 -0700228 if (memcmp(skb->data, bridge_ula_lec, sizeof(bridge_ula_lec)) == 0)
229 lec_handle_bridge(skb, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230#endif
231
Chas Williamsd44f7742006-09-29 17:11:14 -0700232 /* Make sure we have room for lec_id */
233 if (skb_headroom(skb) < 2) {
Joe Perches99824462010-01-26 11:40:00 +0000234 pr_debug("reallocating skb\n");
Chas Williamsd44f7742006-09-29 17:11:14 -0700235 skb2 = skb_realloc_headroom(skb, LEC_HEADER_LEN);
Eric Dumazet5d0ba552012-06-04 01:17:19 +0000236 if (unlikely(!skb2)) {
237 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000238 return NETDEV_TX_OK;
Eric Dumazet5d0ba552012-06-04 01:17:19 +0000239 }
240 consume_skb(skb);
Chas Williamsd44f7742006-09-29 17:11:14 -0700241 skb = skb2;
242 }
243 skb_push(skb, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Paul Gortmaker60eea6c2012-05-10 16:17:00 -0400245 /* Put le header to place */
Chas Williamsd44f7742006-09-29 17:11:14 -0700246 lec_h = (struct lecdatahdr_8023 *)skb->data;
247 lec_h->le_header = htons(priv->lecid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249#if DUMP_PACKETS >= 2
Joe Perchesc48192a2010-01-26 11:40:08 +0000250#define MAX_DUMP_SKB 99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251#elif DUMP_PACKETS >= 1
Joe Perchesc48192a2010-01-26 11:40:08 +0000252#define MAX_DUMP_SKB 30
253#endif
254#if DUMP_PACKETS >= 1
255 printk(KERN_DEBUG "%s: send datalen:%ld lecid:%4.4x\n",
256 dev->name, skb->len, priv->lecid);
257 print_hex_dump(KERN_DEBUG, "", DUMP_OFFSET, 16, 1,
258 skb->data, min(skb->len, MAX_DUMP_SKB), true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259#endif /* DUMP_PACKETS >= 1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Chas Williamsd44f7742006-09-29 17:11:14 -0700261 /* Minimum ethernet-frame size */
Paul Gortmaker60eea6c2012-05-10 16:17:00 -0400262 min_frame_size = LEC_MINIMUM_8023_SIZE;
Chas Williamsd44f7742006-09-29 17:11:14 -0700263 if (skb->len < min_frame_size) {
264 if ((skb->len + skb_tailroom(skb)) < min_frame_size) {
265 skb2 = skb_copy_expand(skb, 0,
266 min_frame_size - skb->truesize,
267 GFP_ATOMIC);
268 dev_kfree_skb(skb);
269 if (skb2 == NULL) {
Stephen Hemminger162619e2009-01-09 13:01:01 +0000270 dev->stats.tx_dropped++;
Patrick McHardy6ed10652009-06-23 06:03:08 +0000271 return NETDEV_TX_OK;
Chas Williamsd44f7742006-09-29 17:11:14 -0700272 }
273 skb = skb2;
274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 skb_put(skb, min_frame_size - skb->len);
Chas Williamsd44f7742006-09-29 17:11:14 -0700276 }
277
278 /* Send to right vcc */
279 is_rdesc = 0;
280 dst = lec_h->h_dest;
Chas Williamsd44f7742006-09-29 17:11:14 -0700281 entry = NULL;
282 vcc = lec_arp_resolve(priv, dst, is_rdesc, &entry);
Joe Perches99824462010-01-26 11:40:00 +0000283 pr_debug("%s:vcc:%p vcc_flags:%lx, entry:%p\n",
284 dev->name, vcc, vcc ? vcc->flags : 0, entry);
Chas Williamsd44f7742006-09-29 17:11:14 -0700285 if (!vcc || !test_bit(ATM_VF_READY, &vcc->flags)) {
286 if (entry && (entry->tx_wait.qlen < LEC_UNRES_QUE_LEN)) {
Joe Perches99824462010-01-26 11:40:00 +0000287 pr_debug("%s:queuing packet, MAC address %pM\n",
288 dev->name, lec_h->h_dest);
Chas Williamsd44f7742006-09-29 17:11:14 -0700289 skb_queue_tail(&entry->tx_wait, skb);
290 } else {
Joe Perches99824462010-01-26 11:40:00 +0000291 pr_debug("%s:tx queue full or no arp entry, dropping, MAC address: %pM\n",
292 dev->name, lec_h->h_dest);
Stephen Hemminger162619e2009-01-09 13:01:01 +0000293 dev->stats.tx_dropped++;
Chas Williamsd44f7742006-09-29 17:11:14 -0700294 dev_kfree_skb(skb);
295 }
Chas Williams6656e3c2006-09-29 17:17:17 -0700296 goto out;
Chas Williamsd44f7742006-09-29 17:11:14 -0700297 }
298#if DUMP_PACKETS > 0
Joe Perchesc48192a2010-01-26 11:40:08 +0000299 printk(KERN_DEBUG "%s:sending to vpi:%d vci:%d\n",
300 dev->name, vcc->vpi, vcc->vci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301#endif /* DUMP_PACKETS > 0 */
Chas Williamsd44f7742006-09-29 17:11:14 -0700302
303 while (entry && (skb2 = skb_dequeue(&entry->tx_wait))) {
Joe Perches99824462010-01-26 11:40:00 +0000304 pr_debug("emptying tx queue, MAC address %pM\n", lec_h->h_dest);
Stephen Hemminger162619e2009-01-09 13:01:01 +0000305 lec_send(vcc, skb2);
Chas Williamsd44f7742006-09-29 17:11:14 -0700306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Stephen Hemminger162619e2009-01-09 13:01:01 +0000308 lec_send(vcc, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 if (!atm_may_send(vcc, 0)) {
311 struct lec_vcc_priv *vpriv = LEC_VCC_PRIV(vcc);
312
313 vpriv->xoff = 1;
314 netif_stop_queue(dev);
315
316 /*
317 * vcc->pop() might have occurred in between, making
318 * the vcc usuable again. Since xmit is serialized,
319 * this is the only situation we have to re-test.
320 */
321
322 if (atm_may_send(vcc, 0))
323 netif_wake_queue(dev);
324 }
325
Chas Williams6656e3c2006-09-29 17:17:17 -0700326out:
327 if (entry)
328 lec_arp_put(entry);
Florian Westphal860e9532016-05-03 16:33:13 +0200329 netif_trans_update(dev);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000330 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
333/* The inverse routine to net_open(). */
Chas Williamsd44f7742006-09-29 17:11:14 -0700334static int lec_close(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Chas Williamsd44f7742006-09-29 17:11:14 -0700336 netif_stop_queue(dev);
337 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
Chas Williamsd44f7742006-09-29 17:11:14 -0700340static int lec_atm_send(struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
342 unsigned long flags;
Chas Williamsd44f7742006-09-29 17:11:14 -0700343 struct net_device *dev = (struct net_device *)vcc->proto_data;
Wang Chen524ad0a2008-11-12 23:39:10 -0800344 struct lec_priv *priv = netdev_priv(dev);
Chas Williamsd44f7742006-09-29 17:11:14 -0700345 struct atmlec_msg *mesg;
346 struct lec_arp_table *entry;
347 int i;
348 char *tmp; /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Reshetova, Elena14afee42017-06-30 13:08:00 +0300350 WARN_ON(refcount_sub_and_test(skb->truesize, &sk_atm(vcc)->sk_wmem_alloc));
Chas Williamsd44f7742006-09-29 17:11:14 -0700351 mesg = (struct atmlec_msg *)skb->data;
352 tmp = skb->data;
353 tmp += sizeof(struct atmlec_msg);
Stephen Hemminger52240062007-08-28 15:22:09 -0700354 pr_debug("%s: msg from zeppelin:%d\n", dev->name, mesg->type);
Chas Williamsd44f7742006-09-29 17:11:14 -0700355 switch (mesg->type) {
356 case l_set_mac_addr:
Joe Perchesc48192a2010-01-26 11:40:08 +0000357 for (i = 0; i < 6; i++)
Chas Williamsd44f7742006-09-29 17:11:14 -0700358 dev->dev_addr[i] = mesg->content.normal.mac_addr[i];
Chas Williamsd44f7742006-09-29 17:11:14 -0700359 break;
360 case l_del_mac_addr:
Joe Perchesc48192a2010-01-26 11:40:08 +0000361 for (i = 0; i < 6; i++)
Chas Williamsd44f7742006-09-29 17:11:14 -0700362 dev->dev_addr[i] = 0;
Chas Williamsd44f7742006-09-29 17:11:14 -0700363 break;
364 case l_addr_delete:
365 lec_addr_delete(priv, mesg->content.normal.atm_addr,
366 mesg->content.normal.flag);
367 break;
368 case l_topology_change:
369 priv->topology_change = mesg->content.normal.flag;
370 break;
371 case l_flush_complete:
372 lec_flush_complete(priv, mesg->content.normal.flag);
373 break;
374 case l_narp_req: /* LANE2: see 7.1.35 in the lane2 spec */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd44f7742006-09-29 17:11:14 -0700376 entry = lec_arp_find(priv, mesg->content.normal.mac_addr);
377 lec_arp_remove(priv, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
379
Chas Williamsd44f7742006-09-29 17:11:14 -0700380 if (mesg->content.normal.no_source_le_narp)
381 break;
382 /* FALL THROUGH */
383 case l_arp_update:
384 lec_arp_update(priv, mesg->content.normal.mac_addr,
385 mesg->content.normal.atm_addr,
386 mesg->content.normal.flag,
387 mesg->content.normal.targetless_le_arp);
Joe Perches99824462010-01-26 11:40:00 +0000388 pr_debug("in l_arp_update\n");
Chas Williamsd44f7742006-09-29 17:11:14 -0700389 if (mesg->sizeoftlvs != 0) { /* LANE2 3.1.5 */
Joe Perches99824462010-01-26 11:40:00 +0000390 pr_debug("LANE2 3.1.5, got tlvs, size %d\n",
391 mesg->sizeoftlvs);
Chas Williamsd44f7742006-09-29 17:11:14 -0700392 lane2_associate_ind(dev, mesg->content.normal.mac_addr,
393 tmp, mesg->sizeoftlvs);
394 }
395 break;
396 case l_config:
397 priv->maximum_unknown_frame_count =
398 mesg->content.config.maximum_unknown_frame_count;
399 priv->max_unknown_frame_time =
400 (mesg->content.config.max_unknown_frame_time * HZ);
401 priv->max_retry_count = mesg->content.config.max_retry_count;
402 priv->aging_time = (mesg->content.config.aging_time * HZ);
403 priv->forward_delay_time =
404 (mesg->content.config.forward_delay_time * HZ);
405 priv->arp_response_time =
406 (mesg->content.config.arp_response_time * HZ);
407 priv->flush_timeout = (mesg->content.config.flush_timeout * HZ);
408 priv->path_switching_delay =
409 (mesg->content.config.path_switching_delay * HZ);
Joe Perchesc48192a2010-01-26 11:40:08 +0000410 priv->lane_version = mesg->content.config.lane_version;
411 /* LANE2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 priv->lane2_ops = NULL;
413 if (priv->lane_version > 1)
414 priv->lane2_ops = &lane2_ops;
chas williams - CONTRACTOR6df378d2014-08-14 09:19:47 -0400415 rtnl_lock();
Stephen Hemminger1f1900f2009-03-21 13:37:28 -0700416 if (dev_set_mtu(dev, mesg->content.config.mtu))
Joe Perchesc48192a2010-01-26 11:40:08 +0000417 pr_info("%s: change_mtu to %d failed\n",
418 dev->name, mesg->content.config.mtu);
chas williams - CONTRACTOR6df378d2014-08-14 09:19:47 -0400419 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 priv->is_proxy = mesg->content.config.is_proxy;
Chas Williamsd44f7742006-09-29 17:11:14 -0700421 break;
422 case l_flush_tran_id:
423 lec_set_flush_tran_id(priv, mesg->content.normal.atm_addr,
424 mesg->content.normal.flag);
425 break;
426 case l_set_lecid:
427 priv->lecid =
428 (unsigned short)(0xffff & mesg->content.normal.flag);
429 break;
430 case l_should_bridge:
Javier Martinez Canillas9a81c342016-09-09 08:43:14 -0400431#if IS_ENABLED(CONFIG_BRIDGE)
Joe Perchesb4c84ec2010-01-26 11:40:19 +0000432 {
433 pr_debug("%s: bridge zeppelin asks about %pM\n",
434 dev->name, mesg->content.proxy.mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Joe Perchesb4c84ec2010-01-26 11:40:19 +0000436 if (br_fdb_test_addr_hook == NULL)
437 break;
438
439 if (br_fdb_test_addr_hook(dev, mesg->content.proxy.mac_addr)) {
440 /* hit from bridge table, send LE_ARP_RESPONSE */
441 struct sk_buff *skb2;
442 struct sock *sk;
443
444 pr_debug("%s: entry found, responding to zeppelin\n",
445 dev->name);
446 skb2 = alloc_skb(sizeof(struct atmlec_msg), GFP_ATOMIC);
447 if (skb2 == NULL)
Chas Williamsd44f7742006-09-29 17:11:14 -0700448 break;
Joe Perchesb4c84ec2010-01-26 11:40:19 +0000449 skb2->len = sizeof(struct atmlec_msg);
450 skb_copy_to_linear_data(skb2, mesg, sizeof(*mesg));
451 atm_force_charge(priv->lecd, skb2->truesize);
452 sk = sk_atm(priv->lecd);
453 skb_queue_tail(&sk->sk_receive_queue, skb2);
David S. Miller676d2362014-04-11 16:15:36 -0400454 sk->sk_data_ready(sk);
Chas Williamsd44f7742006-09-29 17:11:14 -0700455 }
Joe Perchesb4c84ec2010-01-26 11:40:19 +0000456 }
Javier Martinez Canillas9a81c342016-09-09 08:43:14 -0400457#endif /* IS_ENABLED(CONFIG_BRIDGE) */
Chas Williamsd44f7742006-09-29 17:11:14 -0700458 break;
459 default:
Joe Perchesc48192a2010-01-26 11:40:08 +0000460 pr_info("%s: Unknown message type %d\n", dev->name, mesg->type);
Chas Williamsd44f7742006-09-29 17:11:14 -0700461 dev_kfree_skb(skb);
462 return -EINVAL;
463 }
464 dev_kfree_skb(skb);
465 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
Chas Williamsd44f7742006-09-29 17:11:14 -0700468static void lec_atm_close(struct atm_vcc *vcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Chas Williamsd44f7742006-09-29 17:11:14 -0700470 struct sk_buff *skb;
471 struct net_device *dev = (struct net_device *)vcc->proto_data;
Wang Chen524ad0a2008-11-12 23:39:10 -0800472 struct lec_priv *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Chas Williamsd44f7742006-09-29 17:11:14 -0700474 priv->lecd = NULL;
475 /* Do something needful? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Chas Williamsd44f7742006-09-29 17:11:14 -0700477 netif_stop_queue(dev);
478 lec_arp_destroy(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Chas Williamsd44f7742006-09-29 17:11:14 -0700480 if (skb_peek(&sk_atm(vcc)->sk_receive_queue))
Joe Perchesc48192a2010-01-26 11:40:08 +0000481 pr_info("%s closing with messages pending\n", dev->name);
Joe Perchesb4c84ec2010-01-26 11:40:19 +0000482 while ((skb = skb_dequeue(&sk_atm(vcc)->sk_receive_queue))) {
Chas Williamsd44f7742006-09-29 17:11:14 -0700483 atm_return(vcc, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 dev_kfree_skb(skb);
Chas Williamsd44f7742006-09-29 17:11:14 -0700485 }
486
Joe Perchesc48192a2010-01-26 11:40:08 +0000487 pr_info("%s: Shut down!\n", dev->name);
Chas Williamsd44f7742006-09-29 17:11:14 -0700488 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489}
490
Bhumika Goyal800bb472017-08-09 15:02:08 +0530491static const struct atmdev_ops lecdev_ops = {
Chas Williamsd44f7742006-09-29 17:11:14 -0700492 .close = lec_atm_close,
493 .send = lec_atm_send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494};
495
496static struct atm_dev lecatm_dev = {
Chas Williamsd44f7742006-09-29 17:11:14 -0700497 .ops = &lecdev_ops,
498 .type = "lec",
499 .number = 999, /* dummy device number */
Milind Arun Choudhary4ef8d0a2007-04-26 01:37:44 -0700500 .lock = __SPIN_LOCK_UNLOCKED(lecatm_dev.lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501};
502
503/*
504 * LANE2: new argument struct sk_buff *data contains
505 * the LE_ARP based TLVs introduced in the LANE2 spec
506 */
Chas Williamsd44f7742006-09-29 17:11:14 -0700507static int
508send_to_lecd(struct lec_priv *priv, atmlec_msg_type type,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -0700509 const unsigned char *mac_addr, const unsigned char *atm_addr,
Chas Williamsd44f7742006-09-29 17:11:14 -0700510 struct sk_buff *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
512 struct sock *sk;
513 struct sk_buff *skb;
514 struct atmlec_msg *mesg;
515
Joe Perchesc48192a2010-01-26 11:40:08 +0000516 if (!priv || !priv->lecd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 skb = alloc_skb(sizeof(struct atmlec_msg), GFP_ATOMIC);
519 if (!skb)
520 return -1;
521 skb->len = sizeof(struct atmlec_msg);
522 mesg = (struct atmlec_msg *)skb->data;
Chas Williamsd44f7742006-09-29 17:11:14 -0700523 memset(mesg, 0, sizeof(struct atmlec_msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 mesg->type = type;
Chas Williamsd44f7742006-09-29 17:11:14 -0700525 if (data != NULL)
526 mesg->sizeoftlvs = data->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (mac_addr)
David S. Miller9be68c12014-01-21 18:55:22 -0800528 ether_addr_copy(mesg->content.normal.mac_addr, mac_addr);
Chas Williamsd44f7742006-09-29 17:11:14 -0700529 else
530 mesg->content.normal.targetless_le_arp = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (atm_addr)
532 memcpy(&mesg->content.normal.atm_addr, atm_addr, ATM_ESA_LEN);
533
Chas Williamsd44f7742006-09-29 17:11:14 -0700534 atm_force_charge(priv->lecd, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 sk = sk_atm(priv->lecd);
536 skb_queue_tail(&sk->sk_receive_queue, skb);
David S. Miller676d2362014-04-11 16:15:36 -0400537 sk->sk_data_ready(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Chas Williamsd44f7742006-09-29 17:11:14 -0700539 if (data != NULL) {
Joe Perches99824462010-01-26 11:40:00 +0000540 pr_debug("about to send %d bytes of data\n", data->len);
Chas Williamsd44f7742006-09-29 17:11:14 -0700541 atm_force_charge(priv->lecd, data->truesize);
542 skb_queue_tail(&sk->sk_receive_queue, data);
David S. Miller676d2362014-04-11 16:15:36 -0400543 sk->sk_data_ready(sk);
Chas Williamsd44f7742006-09-29 17:11:14 -0700544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Chas Williamsd44f7742006-09-29 17:11:14 -0700546 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549static void lec_set_multicast_list(struct net_device *dev)
550{
Chas Williamsd44f7742006-09-29 17:11:14 -0700551 /*
552 * by default, all multicast frames arrive over the bus.
553 * eventually support selective multicast service
554 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
Stephen Hemminger004b3222009-01-09 13:01:02 +0000557static const struct net_device_ops lec_netdev_ops = {
558 .ndo_open = lec_open,
559 .ndo_stop = lec_close,
560 .ndo_start_xmit = lec_start_xmit,
Stephen Hemminger004b3222009-01-09 13:01:02 +0000561 .ndo_tx_timeout = lec_tx_timeout,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000562 .ndo_set_rx_mode = lec_set_multicast_list,
Stephen Hemminger004b3222009-01-09 13:01:02 +0000563};
564
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -0700565static const unsigned char lec_ctrl_magic[] = {
Chas Williamsd44f7742006-09-29 17:11:14 -0700566 0xff,
567 0x00,
568 0x01,
569 0x01
570};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Scott Talbert4a7097f2005-09-29 17:30:54 -0700572#define LEC_DATA_DIRECT_8023 2
573#define LEC_DATA_DIRECT_8025 3
574
575static int lec_is_data_direct(struct atm_vcc *vcc)
Chas Williamsd44f7742006-09-29 17:11:14 -0700576{
Scott Talbert4a7097f2005-09-29 17:30:54 -0700577 return ((vcc->sap.blli[0].l3.tr9577.snap[4] == LEC_DATA_DIRECT_8023) ||
578 (vcc->sap.blli[0].l3.tr9577.snap[4] == LEC_DATA_DIRECT_8025));
Chas Williamsd44f7742006-09-29 17:11:14 -0700579}
Scott Talbert4a7097f2005-09-29 17:30:54 -0700580
Chas Williamsd44f7742006-09-29 17:11:14 -0700581static void lec_push(struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
Scott Talbert4a7097f2005-09-29 17:30:54 -0700583 unsigned long flags;
Chas Williamsd44f7742006-09-29 17:11:14 -0700584 struct net_device *dev = (struct net_device *)vcc->proto_data;
Wang Chen524ad0a2008-11-12 23:39:10 -0800585 struct lec_priv *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Joe Perchesc48192a2010-01-26 11:40:08 +0000587#if DUMP_PACKETS > 0
Joe Perches99824462010-01-26 11:40:00 +0000588 printk(KERN_DEBUG "%s: vcc vpi:%d vci:%d\n",
589 dev->name, vcc->vpi, vcc->vci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590#endif
Chas Williamsd44f7742006-09-29 17:11:14 -0700591 if (!skb) {
Stephen Hemminger52240062007-08-28 15:22:09 -0700592 pr_debug("%s: null skb\n", dev->name);
Chas Williamsd44f7742006-09-29 17:11:14 -0700593 lec_vcc_close(priv, vcc);
594 return;
595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596#if DUMP_PACKETS >= 2
Joe Perches99824462010-01-26 11:40:00 +0000597#define MAX_SKB_DUMP 99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598#elif DUMP_PACKETS >= 1
Joe Perches99824462010-01-26 11:40:00 +0000599#define MAX_SKB_DUMP 30
600#endif
601#if DUMP_PACKETS > 0
602 printk(KERN_DEBUG "%s: rcv datalen:%ld lecid:%4.4x\n",
603 dev->name, skb->len, priv->lecid);
604 print_hex_dump(KERN_DEBUG, "", DUMP_OFFSET, 16, 1,
605 skb->data, min(MAX_SKB_DUMP, skb->len), true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606#endif /* DUMP_PACKETS > 0 */
Joe Perches99824462010-01-26 11:40:00 +0000607 if (memcmp(skb->data, lec_ctrl_magic, 4) == 0) {
608 /* Control frame, to daemon */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 struct sock *sk = sk_atm(vcc);
610
Stephen Hemminger52240062007-08-28 15:22:09 -0700611 pr_debug("%s: To daemon\n", dev->name);
Chas Williamsd44f7742006-09-29 17:11:14 -0700612 skb_queue_tail(&sk->sk_receive_queue, skb);
David S. Miller676d2362014-04-11 16:15:36 -0400613 sk->sk_data_ready(sk);
Chas Williamsd44f7742006-09-29 17:11:14 -0700614 } else { /* Data frame, queue to protocol handlers */
Scott Talbert4a7097f2005-09-29 17:30:54 -0700615 struct lec_arp_table *entry;
Chas Williamsd44f7742006-09-29 17:11:14 -0700616 unsigned char *src, *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Chas Williamsd44f7742006-09-29 17:11:14 -0700618 atm_return(vcc, skb->truesize);
Al Viro30d492d2006-11-14 21:11:29 -0800619 if (*(__be16 *) skb->data == htons(priv->lecid) ||
Chas Williamsd44f7742006-09-29 17:11:14 -0700620 !priv->lecd || !(dev->flags & IFF_UP)) {
621 /*
622 * Probably looping back, or if lecd is missing,
623 * lecd has gone down
624 */
Stephen Hemminger52240062007-08-28 15:22:09 -0700625 pr_debug("Ignoring frame...\n");
Chas Williamsd44f7742006-09-29 17:11:14 -0700626 dev_kfree_skb(skb);
627 return;
628 }
Paul Gortmaker60eea6c2012-05-10 16:17:00 -0400629 dst = ((struct lecdatahdr_8023 *)skb->data)->h_dest;
Scott Talbert4a7097f2005-09-29 17:30:54 -0700630
Chas Williamsd44f7742006-09-29 17:11:14 -0700631 /*
632 * If this is a Data Direct VCC, and the VCC does not match
Scott Talbert4a7097f2005-09-29 17:30:54 -0700633 * the LE_ARP cache entry, delete the LE_ARP cache entry.
634 */
635 spin_lock_irqsave(&priv->lec_arp_lock, flags);
636 if (lec_is_data_direct(vcc)) {
Paul Gortmaker60eea6c2012-05-10 16:17:00 -0400637 src = ((struct lecdatahdr_8023 *)skb->data)->h_source;
Scott Talbert4a7097f2005-09-29 17:30:54 -0700638 entry = lec_arp_find(priv, src);
639 if (entry && entry->vcc != vcc) {
640 lec_arp_remove(priv, entry);
Chas Williams33a9c2d2006-09-29 17:16:48 -0700641 lec_arp_put(entry);
Scott Talbert4a7097f2005-09-29 17:30:54 -0700642 }
643 }
644 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Chas Williamsd44f7742006-09-29 17:11:14 -0700646 if (!(dst[0] & 0x01) && /* Never filter Multi/Broadcast */
647 !priv->is_proxy && /* Proxy wants all the packets */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 memcmp(dst, dev->dev_addr, dev->addr_len)) {
Chas Williamsd44f7742006-09-29 17:11:14 -0700649 dev_kfree_skb(skb);
650 return;
651 }
Joe Perchesc48192a2010-01-26 11:40:08 +0000652 if (!hlist_empty(&priv->lec_arp_empty_ones))
Chas Williamsd44f7742006-09-29 17:11:14 -0700653 lec_arp_check_empties(priv, vcc, skb);
Chas Williamsd44f7742006-09-29 17:11:14 -0700654 skb_pull(skb, 2); /* skip lec_id */
Paul Gortmaker60eea6c2012-05-10 16:17:00 -0400655 skb->protocol = eth_type_trans(skb, dev);
Stephen Hemminger162619e2009-01-09 13:01:01 +0000656 dev->stats.rx_packets++;
657 dev->stats.rx_bytes += skb->len;
Chas Williamsd44f7742006-09-29 17:11:14 -0700658 memset(ATM_SKB(skb), 0, sizeof(struct atm_skb_data));
659 netif_rx(skb);
660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
Chas Williamsd44f7742006-09-29 17:11:14 -0700663static void lec_pop(struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
665 struct lec_vcc_priv *vpriv = LEC_VCC_PRIV(vcc);
666 struct net_device *dev = skb->dev;
667
668 if (vpriv == NULL) {
Joe Perches99824462010-01-26 11:40:00 +0000669 pr_info("vpriv = NULL!?!?!?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return;
671 }
672
673 vpriv->old_pop(vcc, skb);
674
675 if (vpriv->xoff && atm_may_send(vcc, 0)) {
676 vpriv->xoff = 0;
677 if (netif_running(dev) && netif_queue_stopped(dev))
678 netif_wake_queue(dev);
679 }
680}
681
Chas Williamsd44f7742006-09-29 17:11:14 -0700682static int lec_vcc_attach(struct atm_vcc *vcc, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
684 struct lec_vcc_priv *vpriv;
Chas Williamsd44f7742006-09-29 17:11:14 -0700685 int bytes_left;
686 struct atmlec_ioc ioc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Chas Williamsd44f7742006-09-29 17:11:14 -0700688 /* Lecd must be up in this case */
689 bytes_left = copy_from_user(&ioc_data, arg, sizeof(struct atmlec_ioc));
Joe Perches99824462010-01-26 11:40:00 +0000690 if (bytes_left != 0)
691 pr_info("copy from user failed for %d bytes\n", bytes_left);
Gustavo A. R. Silvaacf784b2018-05-03 13:45:58 -0500692 if (ioc_data.dev_num < 0 || ioc_data.dev_num >= MAX_LEC_ITF)
693 return -EINVAL;
694 ioc_data.dev_num = array_index_nospec(ioc_data.dev_num, MAX_LEC_ITF);
695 if (!dev_lec[ioc_data.dev_num])
Chas Williamsd44f7742006-09-29 17:11:14 -0700696 return -EINVAL;
Joe Perchesc48192a2010-01-26 11:40:08 +0000697 vpriv = kmalloc(sizeof(struct lec_vcc_priv), GFP_KERNEL);
698 if (!vpriv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return -ENOMEM;
700 vpriv->xoff = 0;
701 vpriv->old_pop = vcc->pop;
702 vcc->user_back = vpriv;
703 vcc->pop = lec_pop;
Wang Chen524ad0a2008-11-12 23:39:10 -0800704 lec_vcc_added(netdev_priv(dev_lec[ioc_data.dev_num]),
Chas Williamsd44f7742006-09-29 17:11:14 -0700705 &ioc_data, vcc, vcc->push);
706 vcc->proto_data = dev_lec[ioc_data.dev_num];
707 vcc->push = lec_push;
708 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
710
Chas Williamsd44f7742006-09-29 17:11:14 -0700711static int lec_mcast_attach(struct atm_vcc *vcc, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Chas Williamsd44f7742006-09-29 17:11:14 -0700713 if (arg < 0 || arg >= MAX_LEC_ITF || !dev_lec[arg])
714 return -EINVAL;
715 vcc->proto_data = dev_lec[arg];
Joe Perches37d66802010-11-15 11:12:33 +0000716 return lec_mcast_make(netdev_priv(dev_lec[arg]), vcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
719/* Initialize device. */
Chas Williamsd44f7742006-09-29 17:11:14 -0700720static int lecd_attach(struct atm_vcc *vcc, int arg)
721{
722 int i;
723 struct lec_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Chas Williamsd44f7742006-09-29 17:11:14 -0700725 if (arg < 0)
726 i = 0;
727 else
728 i = arg;
Chas Williamsd44f7742006-09-29 17:11:14 -0700729 if (arg >= MAX_LEC_ITF)
730 return -EINVAL;
Chas Williamsd44f7742006-09-29 17:11:14 -0700731 if (!dev_lec[i]) {
Paul Gortmaker60eea6c2012-05-10 16:17:00 -0400732 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Chas Williamsd44f7742006-09-29 17:11:14 -0700734 size = sizeof(struct lec_priv);
Paul Gortmaker60eea6c2012-05-10 16:17:00 -0400735 dev_lec[i] = alloc_etherdev(size);
Chas Williamsd44f7742006-09-29 17:11:14 -0700736 if (!dev_lec[i])
737 return -ENOMEM;
chas williams - CONTRACTOReb044582009-12-04 05:19:30 +0000738 dev_lec[i]->netdev_ops = &lec_netdev_ops;
Jarod Wilson8b6b4132016-10-20 13:55:19 -0400739 dev_lec[i]->max_mtu = 18190;
Chas Williamsd44f7742006-09-29 17:11:14 -0700740 snprintf(dev_lec[i]->name, IFNAMSIZ, "lec%d", i);
741 if (register_netdev(dev_lec[i])) {
742 free_netdev(dev_lec[i]);
743 return -EINVAL;
744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Wang Chen524ad0a2008-11-12 23:39:10 -0800746 priv = netdev_priv(dev_lec[i]);
Chas Williamsd44f7742006-09-29 17:11:14 -0700747 } else {
Wang Chen524ad0a2008-11-12 23:39:10 -0800748 priv = netdev_priv(dev_lec[i]);
Chas Williamsd44f7742006-09-29 17:11:14 -0700749 if (priv->lecd)
750 return -EADDRINUSE;
751 }
752 lec_arp_init(priv);
753 priv->itfnum = i; /* LANE2 addition */
754 priv->lecd = vcc;
755 vcc->dev = &lecatm_dev;
756 vcc_insert_socket(sk_atm(vcc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Chas Williamsd44f7742006-09-29 17:11:14 -0700758 vcc->proto_data = dev_lec[i];
759 set_bit(ATM_VF_META, &vcc->flags);
760 set_bit(ATM_VF_READY, &vcc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Chas Williamsd44f7742006-09-29 17:11:14 -0700762 /* Set default values to these variables */
763 priv->maximum_unknown_frame_count = 1;
764 priv->max_unknown_frame_time = (1 * HZ);
765 priv->vcc_timeout_period = (1200 * HZ);
766 priv->max_retry_count = 1;
767 priv->aging_time = (300 * HZ);
768 priv->forward_delay_time = (15 * HZ);
769 priv->topology_change = 0;
770 priv->arp_response_time = (1 * HZ);
771 priv->flush_timeout = (4 * HZ);
772 priv->path_switching_delay = (6 * HZ);
773
Joe Perchesc48192a2010-01-26 11:40:08 +0000774 if (dev_lec[i]->flags & IFF_UP)
Chas Williamsd44f7742006-09-29 17:11:14 -0700775 netif_start_queue(dev_lec[i]);
Chas Williamsd44f7742006-09-29 17:11:14 -0700776 __module_get(THIS_MODULE);
777 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
779
780#ifdef CONFIG_PROC_FS
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700781static const char *lec_arp_get_status_string(unsigned char status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700783 static const char *const lec_arp_status_string[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 "ESI_UNKNOWN ",
785 "ESI_ARP_PENDING ",
786 "ESI_VC_PENDING ",
787 "<Undefined> ",
788 "ESI_FLUSH_PENDING ",
789 "ESI_FORWARD_DIRECT"
790 };
791
792 if (status > ESI_FORWARD_DIRECT)
793 status = 3; /* ESI_UNDEFINED */
794 return lec_arp_status_string[status];
795}
796
797static void lec_info(struct seq_file *seq, struct lec_arp_table *entry)
798{
799 int i;
800
801 for (i = 0; i < ETH_ALEN; i++)
802 seq_printf(seq, "%2.2x", entry->mac_addr[i] & 0xff);
803 seq_printf(seq, " ");
804 for (i = 0; i < ATM_ESA_LEN; i++)
805 seq_printf(seq, "%2.2x", entry->atm_addr[i] & 0xff);
806 seq_printf(seq, " %s %4.4x", lec_arp_get_status_string(entry->status),
807 entry->flags & 0xffff);
808 if (entry->vcc)
809 seq_printf(seq, "%3d %3d ", entry->vcc->vpi, entry->vcc->vci);
810 else
Chas Williamsd44f7742006-09-29 17:11:14 -0700811 seq_printf(seq, " ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 if (entry->recv_vcc) {
813 seq_printf(seq, " %3d %3d", entry->recv_vcc->vpi,
814 entry->recv_vcc->vci);
Chas Williamsd44f7742006-09-29 17:11:14 -0700815 }
816 seq_putc(seq, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819struct lec_state {
820 unsigned long flags;
821 struct lec_priv *locked;
Chas Williamsd0732f62006-09-29 17:14:27 -0700822 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 struct net_device *dev;
824 int itf;
825 int arp_table;
826 int misc_table;
827};
828
Chas Williamsd0732f62006-09-29 17:14:27 -0700829static void *lec_tbl_walk(struct lec_state *state, struct hlist_head *tbl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 loff_t *l)
831{
Chas Williamsd0732f62006-09-29 17:14:27 -0700832 struct hlist_node *e = state->node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 if (!e)
Chas Williamsd0732f62006-09-29 17:14:27 -0700835 e = tbl->first;
Joe Perches2e1e9842008-04-10 03:33:03 -0700836 if (e == SEQ_START_TOKEN) {
Chas Williamsd0732f62006-09-29 17:14:27 -0700837 e = tbl->first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 --*l;
839 }
Chas Williamsd0732f62006-09-29 17:14:27 -0700840
chas williams - CONTRACTOR8356f9d2014-08-12 09:00:36 -0400841 for (; e; e = e->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 if (--*l < 0)
843 break;
844 }
Chas Williamsd0732f62006-09-29 17:14:27 -0700845 state->node = e;
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return (*l < 0) ? state : NULL;
848}
849
850static void *lec_arp_walk(struct lec_state *state, loff_t *l,
Chas Williamsd44f7742006-09-29 17:11:14 -0700851 struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
853 void *v = NULL;
854 int p;
855
856 for (p = state->arp_table; p < LEC_ARP_TABLE_SIZE; p++) {
Chas Williamsd0732f62006-09-29 17:14:27 -0700857 v = lec_tbl_walk(state, &priv->lec_arp_tables[p], l);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 if (v)
859 break;
860 }
861 state->arp_table = p;
862 return v;
863}
864
865static void *lec_misc_walk(struct lec_state *state, loff_t *l,
866 struct lec_priv *priv)
867{
Chas Williamsd0732f62006-09-29 17:14:27 -0700868 struct hlist_head *lec_misc_tables[] = {
869 &priv->lec_arp_empty_ones,
870 &priv->lec_no_forward,
871 &priv->mcast_fwds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 };
873 void *v = NULL;
874 int q;
875
876 for (q = state->misc_table; q < ARRAY_SIZE(lec_misc_tables); q++) {
877 v = lec_tbl_walk(state, lec_misc_tables[q], l);
878 if (v)
879 break;
880 }
881 state->misc_table = q;
882 return v;
883}
884
885static void *lec_priv_walk(struct lec_state *state, loff_t *l,
886 struct lec_priv *priv)
887{
888 if (!state->locked) {
889 state->locked = priv;
890 spin_lock_irqsave(&priv->lec_arp_lock, state->flags);
891 }
Chas Williamsd44f7742006-09-29 17:11:14 -0700892 if (!lec_arp_walk(state, l, priv) && !lec_misc_walk(state, l, priv)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 spin_unlock_irqrestore(&priv->lec_arp_lock, state->flags);
894 state->locked = NULL;
895 /* Partial state reset for the next time we get called */
896 state->arp_table = state->misc_table = 0;
897 }
898 return state->locked;
899}
900
901static void *lec_itf_walk(struct lec_state *state, loff_t *l)
902{
903 struct net_device *dev;
904 void *v;
905
906 dev = state->dev ? state->dev : dev_lec[state->itf];
Wang Chen524ad0a2008-11-12 23:39:10 -0800907 v = (dev && netdev_priv(dev)) ?
908 lec_priv_walk(state, l, netdev_priv(dev)) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (!v && dev) {
910 dev_put(dev);
911 /* Partial state reset for the next time we get called */
912 dev = NULL;
913 }
914 state->dev = dev;
915 return v;
916}
917
918static void *lec_get_idx(struct lec_state *state, loff_t l)
919{
920 void *v = NULL;
921
922 for (; state->itf < MAX_LEC_ITF; state->itf++) {
923 v = lec_itf_walk(state, &l);
924 if (v)
925 break;
926 }
Chas Williamsd44f7742006-09-29 17:11:14 -0700927 return v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928}
929
930static void *lec_seq_start(struct seq_file *seq, loff_t *pos)
931{
932 struct lec_state *state = seq->private;
933
934 state->itf = 0;
935 state->dev = NULL;
936 state->locked = NULL;
937 state->arp_table = 0;
938 state->misc_table = 0;
Joe Perches2e1e9842008-04-10 03:33:03 -0700939 state->node = SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Joe Perches2e1e9842008-04-10 03:33:03 -0700941 return *pos ? lec_get_idx(state, *pos) : SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
944static void lec_seq_stop(struct seq_file *seq, void *v)
945{
946 struct lec_state *state = seq->private;
947
948 if (state->dev) {
949 spin_unlock_irqrestore(&state->locked->lec_arp_lock,
950 state->flags);
951 dev_put(state->dev);
952 }
953}
954
955static void *lec_seq_next(struct seq_file *seq, void *v, loff_t *pos)
956{
957 struct lec_state *state = seq->private;
958
959 v = lec_get_idx(state, 1);
960 *pos += !!PTR_ERR(v);
961 return v;
962}
963
964static int lec_seq_show(struct seq_file *seq, void *v)
965{
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700966 static const char lec_banner[] =
967 "Itf MAC ATM destination"
Chas Williamsd44f7742006-09-29 17:11:14 -0700968 " Status Flags "
969 "VPI/VCI Recv VPI/VCI\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Joe Perches2e1e9842008-04-10 03:33:03 -0700971 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 seq_puts(seq, lec_banner);
973 else {
974 struct lec_state *state = seq->private;
Chas Williamsd44f7742006-09-29 17:11:14 -0700975 struct net_device *dev = state->dev;
Joe Perchesc48192a2010-01-26 11:40:08 +0000976 struct lec_arp_table *entry = hlist_entry(state->node,
977 struct lec_arp_table,
978 next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
980 seq_printf(seq, "%s ", dev->name);
Chas Williamsd0732f62006-09-29 17:14:27 -0700981 lec_info(seq, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 }
983 return 0;
984}
985
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700986static const struct seq_operations lec_seq_ops = {
Chas Williamsd44f7742006-09-29 17:11:14 -0700987 .start = lec_seq_start,
988 .next = lec_seq_next,
989 .stop = lec_seq_stop,
990 .show = lec_seq_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992#endif
993
994static int lane_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
995{
996 struct atm_vcc *vcc = ATM_SD(sock);
997 int err = 0;
Chas Williamsd44f7742006-09-29 17:11:14 -0700998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 switch (cmd) {
Chas Williamsd44f7742006-09-29 17:11:14 -07001000 case ATMLEC_CTRL:
1001 case ATMLEC_MCAST:
1002 case ATMLEC_DATA:
1003 if (!capable(CAP_NET_ADMIN))
1004 return -EPERM;
1005 break;
1006 default:
1007 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 }
1009
1010 switch (cmd) {
Chas Williamsd44f7742006-09-29 17:11:14 -07001011 case ATMLEC_CTRL:
1012 err = lecd_attach(vcc, (int)arg);
1013 if (err >= 0)
1014 sock->state = SS_CONNECTED;
1015 break;
1016 case ATMLEC_MCAST:
1017 err = lec_mcast_attach(vcc, (int)arg);
1018 break;
1019 case ATMLEC_DATA:
1020 err = lec_vcc_attach(vcc, (void __user *)arg);
1021 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
1023
1024 return err;
1025}
1026
1027static struct atm_ioctl lane_ioctl_ops = {
Chas Williamsd44f7742006-09-29 17:11:14 -07001028 .owner = THIS_MODULE,
1029 .ioctl = lane_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030};
1031
1032static int __init lane_module_init(void)
1033{
1034#ifdef CONFIG_PROC_FS
1035 struct proc_dir_entry *p;
1036
Christoph Hellwig44414d82018-04-24 17:05:17 +02001037 p = proc_create_seq_private("lec", 0444, atm_proc_root, &lec_seq_ops,
1038 sizeof(struct lec_state), NULL);
Wang Chendbee0d32008-03-23 21:45:36 -07001039 if (!p) {
Joe Perches99824462010-01-26 11:40:00 +00001040 pr_err("Unable to initialize /proc/net/atm/lec\n");
Wang Chendbee0d32008-03-23 21:45:36 -07001041 return -ENOMEM;
1042 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043#endif
1044
1045 register_atm_ioctl(&lane_ioctl_ops);
Michal Marek36a9f772011-04-01 12:41:20 +02001046 pr_info("lec.c: initialized\n");
Chas Williamsd44f7742006-09-29 17:11:14 -07001047 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048}
1049
1050static void __exit lane_module_cleanup(void)
1051{
Chas Williamsd44f7742006-09-29 17:11:14 -07001052 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Augusto Mecking Caringi9dd0f892016-12-28 16:02:05 +00001054#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 remove_proc_entry("lec", atm_proc_root);
Augusto Mecking Caringi9dd0f892016-12-28 16:02:05 +00001056#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 deregister_atm_ioctl(&lane_ioctl_ops);
1059
Chas Williamsd44f7742006-09-29 17:11:14 -07001060 for (i = 0; i < MAX_LEC_ITF; i++) {
1061 if (dev_lec[i] != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 unregister_netdev(dev_lec[i]);
Chas Williamsd44f7742006-09-29 17:11:14 -07001063 free_netdev(dev_lec[i]);
1064 dev_lec[i] = NULL;
1065 }
1066 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067}
1068
1069module_init(lane_module_init);
1070module_exit(lane_module_cleanup);
1071
1072/*
1073 * LANE2: 3.1.3, LE_RESOLVE.request
1074 * Non force allocates memory and fills in *tlvs, fills in *sizeoftlvs.
1075 * If sizeoftlvs == NULL the default TLVs associated with with this
1076 * lec will be used.
1077 * If dst_mac == NULL, targetless LE_ARP will be sent
1078 */
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001079static int lane2_resolve(struct net_device *dev, const u8 *dst_mac, int force,
Chas Williamsd44f7742006-09-29 17:11:14 -07001080 u8 **tlvs, u32 *sizeoftlvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081{
1082 unsigned long flags;
Wang Chen524ad0a2008-11-12 23:39:10 -08001083 struct lec_priv *priv = netdev_priv(dev);
Chas Williamsd44f7742006-09-29 17:11:14 -07001084 struct lec_arp_table *table;
1085 struct sk_buff *skb;
1086 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Chas Williamsd44f7742006-09-29 17:11:14 -07001088 if (force == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd44f7742006-09-29 17:11:14 -07001090 table = lec_arp_find(priv, dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williamsd44f7742006-09-29 17:11:14 -07001092 if (table == NULL)
1093 return -1;
1094
Arnaldo Carvalho de Melo2afe37c2006-11-21 01:14:33 -02001095 *tlvs = kmemdup(table->tlvs, table->sizeoftlvs, GFP_ATOMIC);
Chas Williamsd44f7742006-09-29 17:11:14 -07001096 if (*tlvs == NULL)
1097 return -1;
1098
Chas Williamsd44f7742006-09-29 17:11:14 -07001099 *sizeoftlvs = table->sizeoftlvs;
1100
1101 return 0;
1102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 if (sizeoftlvs == NULL)
1105 retval = send_to_lecd(priv, l_arp_xmt, dst_mac, NULL, NULL);
Chas Williamsd44f7742006-09-29 17:11:14 -07001106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 else {
1108 skb = alloc_skb(*sizeoftlvs, GFP_ATOMIC);
1109 if (skb == NULL)
1110 return -1;
1111 skb->len = *sizeoftlvs;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001112 skb_copy_to_linear_data(skb, *tlvs, *sizeoftlvs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 retval = send_to_lecd(priv, l_arp_xmt, dst_mac, NULL, skb);
1114 }
Chas Williamsd44f7742006-09-29 17:11:14 -07001115 return retval;
1116}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
1118/*
1119 * LANE2: 3.1.4, LE_ASSOCIATE.request
1120 * Associate the *tlvs with the *lan_dst address.
1121 * Will overwrite any previous association
1122 * Returns 1 for success, 0 for failure (out of memory)
1123 *
1124 */
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001125static int lane2_associate_req(struct net_device *dev, const u8 *lan_dst,
1126 const u8 *tlvs, u32 sizeoftlvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127{
Chas Williamsd44f7742006-09-29 17:11:14 -07001128 int retval;
1129 struct sk_buff *skb;
Wang Chen524ad0a2008-11-12 23:39:10 -08001130 struct lec_priv *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Joe Perches150238e2012-05-08 18:56:50 +00001132 if (!ether_addr_equal(lan_dst, dev->dev_addr))
Joe Perchesc48192a2010-01-26 11:40:08 +00001133 return 0; /* not our mac address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Chas Williamsd44f7742006-09-29 17:11:14 -07001135 kfree(priv->tlvs); /* NULL if there was no previous association */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Arnaldo Carvalho de Melo2afe37c2006-11-21 01:14:33 -02001137 priv->tlvs = kmemdup(tlvs, sizeoftlvs, GFP_KERNEL);
Chas Williamsd44f7742006-09-29 17:11:14 -07001138 if (priv->tlvs == NULL)
Joe Perchesc48192a2010-01-26 11:40:08 +00001139 return 0;
Chas Williamsd44f7742006-09-29 17:11:14 -07001140 priv->sizeoftlvs = sizeoftlvs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Chas Williamsd44f7742006-09-29 17:11:14 -07001142 skb = alloc_skb(sizeoftlvs, GFP_ATOMIC);
1143 if (skb == NULL)
1144 return 0;
1145 skb->len = sizeoftlvs;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001146 skb_copy_to_linear_data(skb, tlvs, sizeoftlvs);
Chas Williamsd44f7742006-09-29 17:11:14 -07001147 retval = send_to_lecd(priv, l_associate_req, NULL, NULL, skb);
1148 if (retval != 0)
Joe Perchesc48192a2010-01-26 11:40:08 +00001149 pr_info("lec.c: lane2_associate_req() failed\n");
Chas Williamsd44f7742006-09-29 17:11:14 -07001150 /*
1151 * If the previous association has changed we must
1152 * somehow notify other LANE entities about the change
1153 */
Joe Perchesc48192a2010-01-26 11:40:08 +00001154 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155}
1156
1157/*
1158 * LANE2: 3.1.5, LE_ASSOCIATE.indication
1159 *
1160 */
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001161static void lane2_associate_ind(struct net_device *dev, const u8 *mac_addr,
1162 const u8 *tlvs, u32 sizeoftlvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
1164#if 0
Chas Williamsd44f7742006-09-29 17:11:14 -07001165 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166#endif
Wang Chen524ad0a2008-11-12 23:39:10 -08001167 struct lec_priv *priv = netdev_priv(dev);
Chas Williamsd44f7742006-09-29 17:11:14 -07001168#if 0 /*
1169 * Why have the TLVs in LE_ARP entries
1170 * since we do not use them? When you
1171 * uncomment this code, make sure the
1172 * TLVs get freed when entry is killed
1173 */
1174 struct lec_arp_table *entry = lec_arp_find(priv, mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Chas Williamsd44f7742006-09-29 17:11:14 -07001176 if (entry == NULL)
1177 return; /* should not happen */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Chas Williamsd44f7742006-09-29 17:11:14 -07001179 kfree(entry->tlvs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Arnaldo Carvalho de Melo2afe37c2006-11-21 01:14:33 -02001181 entry->tlvs = kmemdup(tlvs, sizeoftlvs, GFP_KERNEL);
Chas Williamsd44f7742006-09-29 17:11:14 -07001182 if (entry->tlvs == NULL)
1183 return;
Chas Williamsd44f7742006-09-29 17:11:14 -07001184 entry->sizeoftlvs = sizeoftlvs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185#endif
1186#if 0
Joe Perchesc48192a2010-01-26 11:40:08 +00001187 pr_info("\n");
1188 pr_info("dump of tlvs, sizeoftlvs=%d\n", sizeoftlvs);
Chas Williamsd44f7742006-09-29 17:11:14 -07001189 while (i < sizeoftlvs)
Joe Perchesc48192a2010-01-26 11:40:08 +00001190 pr_cont("%02x ", tlvs[i++]);
Chas Williamsd44f7742006-09-29 17:11:14 -07001191
Joe Perchesc48192a2010-01-26 11:40:08 +00001192 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193#endif
1194
Chas Williamsd44f7742006-09-29 17:11:14 -07001195 /* tell MPOA about the TLVs we saw */
1196 if (priv->lane2_ops && priv->lane2_ops->associate_indicator) {
1197 priv->lane2_ops->associate_indicator(dev, mac_addr,
1198 tlvs, sizeoftlvs);
1199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
1202/*
1203 * Here starts what used to lec_arpc.c
1204 *
1205 * lec_arpc.c was added here when making
1206 * lane client modular. October 1997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 */
1208
1209#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210#include <linux/timer.h>
Joe Perchesc48192a2010-01-26 11:40:08 +00001211#include <linux/param.h>
Arun Sharma600634972011-07-26 16:09:06 -07001212#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213#include <linux/inetdevice.h>
1214#include <net/route.h>
1215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216#if 0
Joe Perchesc48192a2010-01-26 11:40:08 +00001217#define pr_debug(format, args...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218/*
Joe Perches99824462010-01-26 11:40:00 +00001219 #define pr_debug printk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220*/
1221#endif
1222#define DEBUG_ARP_TABLE 0
1223
1224#define LEC_ARP_REFRESH_INTERVAL (3*HZ)
1225
David Howellsc4028952006-11-22 14:57:56 +00001226static void lec_arp_check_expire(struct work_struct *work);
Kees Cookba421792017-10-16 17:29:37 -07001227static void lec_arp_expire_arp(struct timer_list *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001229/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 * Arp table funcs
1231 */
1232
Joe Perchesc48192a2010-01-26 11:40:08 +00001233#define HASH(ch) (ch & (LEC_ARP_TABLE_SIZE - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235/*
1236 * Initialization of arp-cache
1237 */
Chas Williams1fa99612006-09-29 17:11:47 -07001238static void lec_arp_init(struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
Chas Williams1fa99612006-09-29 17:11:47 -07001240 unsigned short i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Joe Perchesc48192a2010-01-26 11:40:08 +00001242 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++)
Chas Williamsd0732f62006-09-29 17:14:27 -07001243 INIT_HLIST_HEAD(&priv->lec_arp_tables[i]);
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001244 INIT_HLIST_HEAD(&priv->lec_arp_empty_ones);
1245 INIT_HLIST_HEAD(&priv->lec_no_forward);
1246 INIT_HLIST_HEAD(&priv->mcast_fwds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 spin_lock_init(&priv->lec_arp_lock);
David Howellsc4028952006-11-22 14:57:56 +00001248 INIT_DELAYED_WORK(&priv->lec_arp_work, lec_arp_check_expire);
Chas Williams987e46b2006-09-29 17:15:59 -07001249 schedule_delayed_work(&priv->lec_arp_work, LEC_ARP_REFRESH_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250}
1251
Chas Williams1fa99612006-09-29 17:11:47 -07001252static void lec_arp_clear_vccs(struct lec_arp_table *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253{
Chas Williams1fa99612006-09-29 17:11:47 -07001254 if (entry->vcc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 struct atm_vcc *vcc = entry->vcc;
1256 struct lec_vcc_priv *vpriv = LEC_VCC_PRIV(vcc);
Chas Williams1fa99612006-09-29 17:11:47 -07001257 struct net_device *dev = (struct net_device *)vcc->proto_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Chas Williams1fa99612006-09-29 17:11:47 -07001259 vcc->pop = vpriv->old_pop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 if (vpriv->xoff)
1261 netif_wake_queue(dev);
1262 kfree(vpriv);
1263 vcc->user_back = NULL;
Chas Williams1fa99612006-09-29 17:11:47 -07001264 vcc->push = entry->old_push;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 vcc_release_async(vcc, -EPIPE);
Chas Williamsd0732f62006-09-29 17:14:27 -07001266 entry->vcc = NULL;
Chas Williams1fa99612006-09-29 17:11:47 -07001267 }
1268 if (entry->recv_vcc) {
1269 entry->recv_vcc->push = entry->old_recv_push;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 vcc_release_async(entry->recv_vcc, -EPIPE);
Chas Williams1fa99612006-09-29 17:11:47 -07001271 entry->recv_vcc = NULL;
1272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273}
1274
1275/*
1276 * Insert entry to lec_arp_table
1277 * LANE2: Add to the end of the list to satisfy 8.1.13
1278 */
Chas Williams1fa99612006-09-29 17:11:47 -07001279static inline void
Chas Williamsd0732f62006-09-29 17:14:27 -07001280lec_arp_add(struct lec_priv *priv, struct lec_arp_table *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
Chas Williamsd0732f62006-09-29 17:14:27 -07001282 struct hlist_head *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Chas Williamsd0732f62006-09-29 17:14:27 -07001284 tmp = &priv->lec_arp_tables[HASH(entry->mac_addr[ETH_ALEN - 1])];
1285 hlist_add_head(&entry->next, tmp);
Chas Williams1fa99612006-09-29 17:11:47 -07001286
Joe Perches99824462010-01-26 11:40:00 +00001287 pr_debug("Added entry:%pM\n", entry->mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288}
1289
1290/*
1291 * Remove entry from lec_arp_table
1292 */
Chas Williams1fa99612006-09-29 17:11:47 -07001293static int
1294lec_arp_remove(struct lec_priv *priv, struct lec_arp_table *to_remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295{
Chas Williamsd0732f62006-09-29 17:14:27 -07001296 struct lec_arp_table *entry;
1297 int i, remove_vcc = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Joe Perchesc48192a2010-01-26 11:40:08 +00001299 if (!to_remove)
Chas Williams1fa99612006-09-29 17:11:47 -07001300 return -1;
Chas Williamsd0732f62006-09-29 17:14:27 -07001301
1302 hlist_del(&to_remove->next);
Chas Williams1fa99612006-09-29 17:11:47 -07001303 del_timer(&to_remove->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Joe Perchesc48192a2010-01-26 11:40:08 +00001305 /*
1306 * If this is the only MAC connected to this VCC,
1307 * also tear down the VCC
1308 */
Chas Williams1fa99612006-09-29 17:11:47 -07001309 if (to_remove->status >= ESI_FLUSH_PENDING) {
1310 /*
1311 * ESI_FLUSH_PENDING, ESI_FORWARD_DIRECT
1312 */
Chas Williamsd0732f62006-09-29 17:14:27 -07001313 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001314 hlist_for_each_entry(entry,
Joe Perchesc48192a2010-01-26 11:40:08 +00001315 &priv->lec_arp_tables[i], next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001316 if (memcmp(to_remove->atm_addr,
1317 entry->atm_addr, ATM_ESA_LEN) == 0) {
Chas Williams1fa99612006-09-29 17:11:47 -07001318 remove_vcc = 0;
1319 break;
1320 }
1321 }
1322 }
1323 if (remove_vcc)
1324 lec_arp_clear_vccs(to_remove);
1325 }
1326 skb_queue_purge(&to_remove->tx_wait); /* FIXME: good place for this? */
1327
Joe Perches99824462010-01-26 11:40:00 +00001328 pr_debug("Removed entry:%pM\n", to_remove->mac_addr);
Chas Williams1fa99612006-09-29 17:11:47 -07001329 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330}
1331
1332#if DEBUG_ARP_TABLE
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -07001333static const char *get_status_string(unsigned char st)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
Chas Williams1fa99612006-09-29 17:11:47 -07001335 switch (st) {
1336 case ESI_UNKNOWN:
1337 return "ESI_UNKNOWN";
1338 case ESI_ARP_PENDING:
1339 return "ESI_ARP_PENDING";
1340 case ESI_VC_PENDING:
1341 return "ESI_VC_PENDING";
1342 case ESI_FLUSH_PENDING:
1343 return "ESI_FLUSH_PENDING";
1344 case ESI_FORWARD_DIRECT:
1345 return "ESI_FORWARD_DIRECT";
Chas Williams1fa99612006-09-29 17:11:47 -07001346 }
Joe Perchesc48192a2010-01-26 11:40:08 +00001347 return "<UNKNOWN>";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Chas Williams1fa99612006-09-29 17:11:47 -07001350static void dump_arp_table(struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
Chas Williams1fa99612006-09-29 17:11:47 -07001352 struct lec_arp_table *rulla;
Chas Williamsd0732f62006-09-29 17:14:27 -07001353 char buf[256];
1354 int i, j, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Joe Perchesc48192a2010-01-26 11:40:08 +00001356 pr_info("Dump %p:\n", priv);
Chas Williams1fa99612006-09-29 17:11:47 -07001357 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001358 hlist_for_each_entry(rulla,
Joe Perchesc48192a2010-01-26 11:40:08 +00001359 &priv->lec_arp_tables[i], next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001360 offset = 0;
1361 offset += sprintf(buf, "%d: %p\n", i, rulla);
Joe Perchesc48192a2010-01-26 11:40:08 +00001362 offset += sprintf(buf + offset, "Mac: %pM",
1363 rulla->mac_addr);
1364 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001365 for (j = 0; j < ATM_ESA_LEN; j++) {
1366 offset += sprintf(buf + offset,
1367 "%2.2x ",
1368 rulla->atm_addr[j] & 0xff);
1369 }
1370 offset += sprintf(buf + offset,
1371 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1372 rulla->vcc ? rulla->vcc->vpi : 0,
1373 rulla->vcc ? rulla->vcc->vci : 0,
1374 rulla->recv_vcc ? rulla->recv_vcc->
1375 vpi : 0,
1376 rulla->recv_vcc ? rulla->recv_vcc->
1377 vci : 0, rulla->last_used,
1378 rulla->timestamp, rulla->no_tries);
1379 offset +=
1380 sprintf(buf + offset,
1381 "Flags:%x, Packets_flooded:%x, Status: %s ",
1382 rulla->flags, rulla->packets_flooded,
1383 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001384 pr_info("%s\n", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001385 }
Chas Williams1fa99612006-09-29 17:11:47 -07001386 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001387
1388 if (!hlist_empty(&priv->lec_no_forward))
Joe Perchesc48192a2010-01-26 11:40:08 +00001389 pr_info("No forward\n");
Sasha Levinb67bfe02013-02-27 17:06:00 -08001390 hlist_for_each_entry(rulla, &priv->lec_no_forward, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001391 offset = 0;
Joe Perchesc48192a2010-01-26 11:40:08 +00001392 offset += sprintf(buf + offset, "Mac: %pM", rulla->mac_addr);
1393 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001394 for (j = 0; j < ATM_ESA_LEN; j++) {
1395 offset += sprintf(buf + offset, "%2.2x ",
1396 rulla->atm_addr[j] & 0xff);
1397 }
1398 offset += sprintf(buf + offset,
1399 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1400 rulla->vcc ? rulla->vcc->vpi : 0,
1401 rulla->vcc ? rulla->vcc->vci : 0,
1402 rulla->recv_vcc ? rulla->recv_vcc->vpi : 0,
1403 rulla->recv_vcc ? rulla->recv_vcc->vci : 0,
1404 rulla->last_used,
1405 rulla->timestamp, rulla->no_tries);
1406 offset += sprintf(buf + offset,
1407 "Flags:%x, Packets_flooded:%x, Status: %s ",
1408 rulla->flags, rulla->packets_flooded,
1409 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001410 pr_info("%s\n", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001411 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001412
1413 if (!hlist_empty(&priv->lec_arp_empty_ones))
Joe Perchesc48192a2010-01-26 11:40:08 +00001414 pr_info("Empty ones\n");
Sasha Levinb67bfe02013-02-27 17:06:00 -08001415 hlist_for_each_entry(rulla, &priv->lec_arp_empty_ones, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001416 offset = 0;
Joe Perchesc48192a2010-01-26 11:40:08 +00001417 offset += sprintf(buf + offset, "Mac: %pM", rulla->mac_addr);
1418 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001419 for (j = 0; j < ATM_ESA_LEN; j++) {
1420 offset += sprintf(buf + offset, "%2.2x ",
1421 rulla->atm_addr[j] & 0xff);
1422 }
1423 offset += sprintf(buf + offset,
1424 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1425 rulla->vcc ? rulla->vcc->vpi : 0,
1426 rulla->vcc ? rulla->vcc->vci : 0,
1427 rulla->recv_vcc ? rulla->recv_vcc->vpi : 0,
1428 rulla->recv_vcc ? rulla->recv_vcc->vci : 0,
1429 rulla->last_used,
1430 rulla->timestamp, rulla->no_tries);
1431 offset += sprintf(buf + offset,
1432 "Flags:%x, Packets_flooded:%x, Status: %s ",
1433 rulla->flags, rulla->packets_flooded,
1434 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001435 pr_info("%s", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Chas Williamsd0732f62006-09-29 17:14:27 -07001438 if (!hlist_empty(&priv->mcast_fwds))
Joe Perchesc48192a2010-01-26 11:40:08 +00001439 pr_info("Multicast Forward VCCs\n");
Sasha Levinb67bfe02013-02-27 17:06:00 -08001440 hlist_for_each_entry(rulla, &priv->mcast_fwds, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001441 offset = 0;
Joe Perchesc48192a2010-01-26 11:40:08 +00001442 offset += sprintf(buf + offset, "Mac: %pM", rulla->mac_addr);
1443 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001444 for (j = 0; j < ATM_ESA_LEN; j++) {
1445 offset += sprintf(buf + offset, "%2.2x ",
1446 rulla->atm_addr[j] & 0xff);
1447 }
1448 offset += sprintf(buf + offset,
1449 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1450 rulla->vcc ? rulla->vcc->vpi : 0,
1451 rulla->vcc ? rulla->vcc->vci : 0,
1452 rulla->recv_vcc ? rulla->recv_vcc->vpi : 0,
1453 rulla->recv_vcc ? rulla->recv_vcc->vci : 0,
1454 rulla->last_used,
1455 rulla->timestamp, rulla->no_tries);
1456 offset += sprintf(buf + offset,
1457 "Flags:%x, Packets_flooded:%x, Status: %s ",
1458 rulla->flags, rulla->packets_flooded,
1459 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001460 pr_info("%s\n", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463}
Chas Williamsd0732f62006-09-29 17:14:27 -07001464#else
1465#define dump_arp_table(priv) do { } while (0)
1466#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
1468/*
1469 * Destruction of arp-cache
1470 */
Chas Williams1fa99612006-09-29 17:11:47 -07001471static void lec_arp_destroy(struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472{
1473 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001474 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07001475 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001476 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Tejun Heoafe2c512010-12-14 16:21:17 +01001478 cancel_delayed_work_sync(&priv->lec_arp_work);
Chas Williams1fa99612006-09-29 17:11:47 -07001479
1480 /*
1481 * Remove all entries
1482 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
1484 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001485 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001486 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001487 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001488 lec_arp_remove(priv, entry);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001489 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001490 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001491 INIT_HLIST_HEAD(&priv->lec_arp_tables[i]);
Chas Williams1fa99612006-09-29 17:11:47 -07001492 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001493
Sasha Levinb67bfe02013-02-27 17:06:00 -08001494 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001495 &priv->lec_arp_empty_ones, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001496 del_timer_sync(&entry->timer);
1497 lec_arp_clear_vccs(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001498 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001499 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001500 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001501 INIT_HLIST_HEAD(&priv->lec_arp_empty_ones);
1502
Sasha Levinb67bfe02013-02-27 17:06:00 -08001503 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001504 &priv->lec_no_forward, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001505 del_timer_sync(&entry->timer);
1506 lec_arp_clear_vccs(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001507 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001508 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001509 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001510 INIT_HLIST_HEAD(&priv->lec_no_forward);
1511
Sasha Levinb67bfe02013-02-27 17:06:00 -08001512 hlist_for_each_entry_safe(entry, next, &priv->mcast_fwds, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001513 /* No timer, LANEv2 7.1.20 and 2.3.5.3 */
1514 lec_arp_clear_vccs(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001515 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001516 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001517 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001518 INIT_HLIST_HEAD(&priv->mcast_fwds);
Chas Williams1fa99612006-09-29 17:11:47 -07001519 priv->mcast_vcc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1521}
1522
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001523/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 * Find entry by mac_address
1525 */
Chas Williams1fa99612006-09-29 17:11:47 -07001526static struct lec_arp_table *lec_arp_find(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001527 const unsigned char *mac_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
Chas Williamsd0732f62006-09-29 17:14:27 -07001529 struct hlist_head *head;
1530 struct lec_arp_table *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Joe Perches99824462010-01-26 11:40:00 +00001532 pr_debug("%pM\n", mac_addr);
Chas Williams1fa99612006-09-29 17:11:47 -07001533
Chas Williamsd0732f62006-09-29 17:14:27 -07001534 head = &priv->lec_arp_tables[HASH(mac_addr[ETH_ALEN - 1])];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001535 hlist_for_each_entry(entry, head, next) {
Joe Perches150238e2012-05-08 18:56:50 +00001536 if (ether_addr_equal(mac_addr, entry->mac_addr))
Chas Williamsd0732f62006-09-29 17:14:27 -07001537 return entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001538 }
1539 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540}
1541
Chas Williams1fa99612006-09-29 17:11:47 -07001542static struct lec_arp_table *make_entry(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001543 const unsigned char *mac_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
Chas Williams1fa99612006-09-29 17:11:47 -07001545 struct lec_arp_table *to_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Chas Williams1fa99612006-09-29 17:11:47 -07001547 to_return = kzalloc(sizeof(struct lec_arp_table), GFP_ATOMIC);
1548 if (!to_return) {
Joe Perchesc48192a2010-01-26 11:40:08 +00001549 pr_info("LEC: Arp entry kmalloc failed\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001550 return NULL;
1551 }
Joe Perches116e8532014-01-20 09:52:16 -08001552 ether_addr_copy(to_return->mac_addr, mac_addr);
Chas Williamsd0732f62006-09-29 17:14:27 -07001553 INIT_HLIST_NODE(&to_return->next);
Kees Cookba421792017-10-16 17:29:37 -07001554 timer_setup(&to_return->timer, lec_arp_expire_arp, 0);
Chas Williams1fa99612006-09-29 17:11:47 -07001555 to_return->last_used = jiffies;
1556 to_return->priv = priv;
1557 skb_queue_head_init(&to_return->tx_wait);
Reshetova, Elena78893662017-07-04 15:53:02 +03001558 refcount_set(&to_return->usage, 1);
Chas Williams1fa99612006-09-29 17:11:47 -07001559 return to_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560}
1561
Chas Williams1fa99612006-09-29 17:11:47 -07001562/* Arp sent timer expired */
Kees Cookba421792017-10-16 17:29:37 -07001563static void lec_arp_expire_arp(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
Chas Williams1fa99612006-09-29 17:11:47 -07001565 struct lec_arp_table *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Kees Cookba421792017-10-16 17:29:37 -07001567 entry = from_timer(entry, t, timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Joe Perches99824462010-01-26 11:40:00 +00001569 pr_debug("\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001570 if (entry->status == ESI_ARP_PENDING) {
1571 if (entry->no_tries <= entry->priv->max_retry_count) {
1572 if (entry->is_rdesc)
1573 send_to_lecd(entry->priv, l_rdesc_arp_xmt,
1574 entry->mac_addr, NULL, NULL);
1575 else
1576 send_to_lecd(entry->priv, l_arp_xmt,
1577 entry->mac_addr, NULL, NULL);
1578 entry->no_tries++;
1579 }
1580 mod_timer(&entry->timer, jiffies + (1 * HZ));
1581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
1583
Chas Williams1fa99612006-09-29 17:11:47 -07001584/* Unknown/unused vcc expire, remove associated entry */
Kees Cookba421792017-10-16 17:29:37 -07001585static void lec_arp_expire_vcc(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586{
1587 unsigned long flags;
Kees Cookba421792017-10-16 17:29:37 -07001588 struct lec_arp_table *to_remove = from_timer(to_remove, t, timer);
Joe Perchese3192692012-06-03 17:41:40 +00001589 struct lec_priv *priv = to_remove->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Chas Williams1fa99612006-09-29 17:11:47 -07001591 del_timer(&to_remove->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Joe Perches99824462010-01-26 11:40:00 +00001593 pr_debug("%p %p: vpi:%d vci:%d\n",
1594 to_remove, priv,
1595 to_remove->vcc ? to_remove->recv_vcc->vpi : 0,
1596 to_remove->vcc ? to_remove->recv_vcc->vci : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
1598 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd0732f62006-09-29 17:14:27 -07001599 hlist_del(&to_remove->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1601
Chas Williams1fa99612006-09-29 17:11:47 -07001602 lec_arp_clear_vccs(to_remove);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001603 lec_arp_put(to_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604}
1605
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001606static bool __lec_arp_check_expire(struct lec_arp_table *entry,
1607 unsigned long now,
1608 struct lec_priv *priv)
1609{
1610 unsigned long time_to_check;
1611
1612 if ((entry->flags) & LEC_REMOTE_FLAG && priv->topology_change)
1613 time_to_check = priv->forward_delay_time;
1614 else
1615 time_to_check = priv->aging_time;
1616
1617 pr_debug("About to expire: %lx - %lx > %lx\n",
1618 now, entry->last_used, time_to_check);
1619 if (time_after(now, entry->last_used + time_to_check) &&
1620 !(entry->flags & LEC_PERMANENT_FLAG) &&
1621 !(entry->mac_addr[0] & 0x01)) { /* LANE2: 7.1.20 */
1622 /* Remove entry */
1623 pr_debug("Entry timed out\n");
1624 lec_arp_remove(priv, entry);
1625 lec_arp_put(entry);
1626 } else {
1627 /* Something else */
1628 if ((entry->status == ESI_VC_PENDING ||
1629 entry->status == ESI_ARP_PENDING) &&
1630 time_after_eq(now, entry->timestamp +
1631 priv->max_unknown_frame_time)) {
1632 entry->timestamp = jiffies;
1633 entry->packets_flooded = 0;
1634 if (entry->status == ESI_VC_PENDING)
1635 send_to_lecd(priv, l_svc_setup,
1636 entry->mac_addr,
1637 entry->atm_addr,
1638 NULL);
1639 }
1640 if (entry->status == ESI_FLUSH_PENDING &&
1641 time_after_eq(now, entry->timestamp +
1642 priv->path_switching_delay)) {
1643 lec_arp_hold(entry);
1644 return true;
1645 }
1646 }
1647
1648 return false;
1649}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650/*
1651 * Expire entries.
1652 * 1. Re-set timer
1653 * 2. For each entry, delete entries that have aged past the age limit.
1654 * 3. For each entry, depending on the status of the entry, perform
1655 * the following maintenance.
1656 * a. If status is ESI_VC_PENDING or ESI_ARP_PENDING then if the
1657 * tick_count is above the max_unknown_frame_time, clear
1658 * the tick_count to zero and clear the packets_flooded counter
1659 * to zero. This supports the packet rate limit per address
1660 * while flooding unknowns.
1661 * b. If the status is ESI_FLUSH_PENDING and the tick_count is greater
1662 * than or equal to the path_switching_delay, change the status
1663 * to ESI_FORWARD_DIRECT. This causes the flush period to end
1664 * regardless of the progress of the flush protocol.
1665 */
David Howellsc4028952006-11-22 14:57:56 +00001666static void lec_arp_check_expire(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667{
1668 unsigned long flags;
David Howellsc4028952006-11-22 14:57:56 +00001669 struct lec_priv *priv =
1670 container_of(work, struct lec_priv, lec_arp_work.work);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001671 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07001672 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001673 unsigned long now;
Chas Williams1fa99612006-09-29 17:11:47 -07001674 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
Joe Perches99824462010-01-26 11:40:00 +00001676 pr_debug("%p\n", priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 now = jiffies;
Chas Williams6656e3c2006-09-29 17:17:17 -07001678restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001680 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001681 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001682 &priv->lec_arp_tables[i], next) {
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001683 if (__lec_arp_check_expire(entry, now, priv)) {
1684 struct sk_buff *skb;
1685 struct atm_vcc *vcc = entry->vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001687 spin_unlock_irqrestore(&priv->lec_arp_lock,
1688 flags);
1689 while ((skb = skb_dequeue(&entry->tx_wait)))
1690 lec_send(vcc, skb);
1691 entry->last_used = jiffies;
1692 entry->status = ESI_FORWARD_DIRECT;
Chas Williams33a9c2d2006-09-29 17:16:48 -07001693 lec_arp_put(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001695 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 }
1697 }
1698 }
1699 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1700
Chas Williams987e46b2006-09-29 17:15:59 -07001701 schedule_delayed_work(&priv->lec_arp_work, LEC_ARP_REFRESH_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702}
Chas Williams1fa99612006-09-29 17:11:47 -07001703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704/*
1705 * Try to find vcc where mac_address is attached.
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001706 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 */
Chas Williams1fa99612006-09-29 17:11:47 -07001708static struct atm_vcc *lec_arp_resolve(struct lec_priv *priv,
Joe Perchesc48192a2010-01-26 11:40:08 +00001709 const unsigned char *mac_to_find,
1710 int is_rdesc,
Chas Williams1fa99612006-09-29 17:11:47 -07001711 struct lec_arp_table **ret_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712{
1713 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07001714 struct lec_arp_table *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 struct atm_vcc *found;
1716
Chas Williams1fa99612006-09-29 17:11:47 -07001717 if (mac_to_find[0] & 0x01) {
1718 switch (priv->lane_version) {
1719 case 1:
1720 return priv->mcast_vcc;
Chas Williams1fa99612006-09-29 17:11:47 -07001721 case 2: /* LANE2 wants arp for multicast addresses */
Joe Perches150238e2012-05-08 18:56:50 +00001722 if (ether_addr_equal(mac_to_find, bus_mac))
Chas Williams1fa99612006-09-29 17:11:47 -07001723 return priv->mcast_vcc;
1724 break;
1725 default:
1726 break;
1727 }
1728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
1730 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001731 entry = lec_arp_find(priv, mac_to_find);
1732
1733 if (entry) {
1734 if (entry->status == ESI_FORWARD_DIRECT) {
1735 /* Connection Ok */
1736 entry->last_used = jiffies;
Chas Williams6656e3c2006-09-29 17:17:17 -07001737 lec_arp_hold(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001738 *ret_entry = entry;
1739 found = entry->vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001741 }
1742 /*
1743 * If the LE_ARP cache entry is still pending, reset count to 0
Scott Talbert75b895c2005-09-29 17:31:30 -07001744 * so another LE_ARP request can be made for this frame.
1745 */
Joe Perchesc48192a2010-01-26 11:40:08 +00001746 if (entry->status == ESI_ARP_PENDING)
Scott Talbert75b895c2005-09-29 17:31:30 -07001747 entry->no_tries = 0;
Chas Williams1fa99612006-09-29 17:11:47 -07001748 /*
1749 * Data direct VC not yet set up, check to see if the unknown
1750 * frame count is greater than the limit. If the limit has
1751 * not been reached, allow the caller to send packet to
1752 * BUS.
1753 */
1754 if (entry->status != ESI_FLUSH_PENDING &&
1755 entry->packets_flooded <
1756 priv->maximum_unknown_frame_count) {
1757 entry->packets_flooded++;
Joe Perches99824462010-01-26 11:40:00 +00001758 pr_debug("Flooding..\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001759 found = priv->mcast_vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001761 }
1762 /*
1763 * We got here because entry->status == ESI_FLUSH_PENDING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 * or BUS flood limit was reached for an entry which is
1765 * in ESI_ARP_PENDING or ESI_VC_PENDING state.
1766 */
Chas Williams6656e3c2006-09-29 17:17:17 -07001767 lec_arp_hold(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001768 *ret_entry = entry;
Joe Perches99824462010-01-26 11:40:00 +00001769 pr_debug("entry->status %d entry->vcc %p\n", entry->status,
1770 entry->vcc);
Chas Williams1fa99612006-09-29 17:11:47 -07001771 found = NULL;
1772 } else {
1773 /* No matching entry was found */
1774 entry = make_entry(priv, mac_to_find);
Joe Perches99824462010-01-26 11:40:00 +00001775 pr_debug("Making entry\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001776 if (!entry) {
1777 found = priv->mcast_vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001779 }
1780 lec_arp_add(priv, entry);
1781 /* We want arp-request(s) to be sent */
1782 entry->packets_flooded = 1;
1783 entry->status = ESI_ARP_PENDING;
1784 entry->no_tries = 1;
1785 entry->last_used = entry->timestamp = jiffies;
1786 entry->is_rdesc = is_rdesc;
1787 if (entry->is_rdesc)
1788 send_to_lecd(priv, l_rdesc_arp_xmt, mac_to_find, NULL,
1789 NULL);
1790 else
1791 send_to_lecd(priv, l_arp_xmt, mac_to_find, NULL, NULL);
1792 entry->timer.expires = jiffies + (1 * HZ);
Kees Cook841b86f2017-10-23 09:40:42 +02001793 entry->timer.function = lec_arp_expire_arp;
Chas Williams1fa99612006-09-29 17:11:47 -07001794 add_timer(&entry->timer);
1795 found = priv->mcast_vcc;
1796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
1798out:
1799 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1800 return found;
1801}
1802
1803static int
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001804lec_addr_delete(struct lec_priv *priv, const unsigned char *atm_addr,
Chas Williams1fa99612006-09-29 17:11:47 -07001805 unsigned long permanent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806{
1807 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001808 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07001809 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001810 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Joe Perches99824462010-01-26 11:40:00 +00001812 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001814 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001815 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001816 &priv->lec_arp_tables[i], next) {
1817 if (!memcmp(atm_addr, entry->atm_addr, ATM_ESA_LEN) &&
1818 (permanent ||
1819 !(entry->flags & LEC_PERMANENT_FLAG))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 lec_arp_remove(priv, entry);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001821 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001824 return 0;
1825 }
1826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001828 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829}
1830
1831/*
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001832 * Notifies: Response to arp_request (atm_addr != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 */
1834static void
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001835lec_arp_update(struct lec_priv *priv, const unsigned char *mac_addr,
1836 const unsigned char *atm_addr, unsigned long remoteflag,
Chas Williams1fa99612006-09-29 17:11:47 -07001837 unsigned int targetless_le_arp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838{
1839 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001840 struct hlist_node *next;
Chas Williams1fa99612006-09-29 17:11:47 -07001841 struct lec_arp_table *entry, *tmp;
1842 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Joe Perches99824462010-01-26 11:40:00 +00001844 pr_debug("%smac:%pM\n",
1845 (targetless_le_arp) ? "targetless " : "", mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
1847 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001848 entry = lec_arp_find(priv, mac_addr);
1849 if (entry == NULL && targetless_le_arp)
1850 goto out; /*
1851 * LANE2: ignore targetless LE_ARPs for which
1852 * we have no entry in the cache. 7.1.30
1853 */
Chas Williamsd0732f62006-09-29 17:14:27 -07001854 if (!hlist_empty(&priv->lec_arp_empty_ones)) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001855 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001856 &priv->lec_arp_empty_ones, next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001857 if (memcmp(entry->atm_addr, atm_addr, ATM_ESA_LEN) == 0) {
1858 hlist_del(&entry->next);
Chas Williams1fa99612006-09-29 17:11:47 -07001859 del_timer(&entry->timer);
Chas Williamsd0732f62006-09-29 17:14:27 -07001860 tmp = lec_arp_find(priv, mac_addr);
1861 if (tmp) {
1862 del_timer(&tmp->timer);
1863 tmp->status = ESI_FORWARD_DIRECT;
1864 memcpy(tmp->atm_addr, atm_addr, ATM_ESA_LEN);
1865 tmp->vcc = entry->vcc;
1866 tmp->old_push = entry->old_push;
1867 tmp->last_used = jiffies;
1868 del_timer(&entry->timer);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001869 lec_arp_put(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001870 entry = tmp;
1871 } else {
1872 entry->status = ESI_FORWARD_DIRECT;
Joe Perches116e8532014-01-20 09:52:16 -08001873 ether_addr_copy(entry->mac_addr,
1874 mac_addr);
Chas Williamsd0732f62006-09-29 17:14:27 -07001875 entry->last_used = jiffies;
1876 lec_arp_add(priv, entry);
1877 }
1878 if (remoteflag)
1879 entry->flags |= LEC_REMOTE_FLAG;
1880 else
1881 entry->flags &= ~LEC_REMOTE_FLAG;
Stephen Hemminger52240062007-08-28 15:22:09 -07001882 pr_debug("After update\n");
Chas Williamsd0732f62006-09-29 17:14:27 -07001883 dump_arp_table(priv);
1884 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001885 }
Chas Williams1fa99612006-09-29 17:11:47 -07001886 }
1887 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001888
Chas Williams1fa99612006-09-29 17:11:47 -07001889 entry = lec_arp_find(priv, mac_addr);
1890 if (!entry) {
1891 entry = make_entry(priv, mac_addr);
1892 if (!entry)
1893 goto out;
1894 entry->status = ESI_UNKNOWN;
1895 lec_arp_add(priv, entry);
1896 /* Temporary, changes before end of function */
1897 }
1898 memcpy(entry->atm_addr, atm_addr, ATM_ESA_LEN);
1899 del_timer(&entry->timer);
1900 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001901 hlist_for_each_entry(tmp,
Joe Perchesc48192a2010-01-26 11:40:08 +00001902 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001903 if (entry != tmp &&
1904 !memcmp(tmp->atm_addr, atm_addr, ATM_ESA_LEN)) {
1905 /* Vcc to this host exists */
1906 if (tmp->status > ESI_VC_PENDING) {
1907 /*
1908 * ESI_FLUSH_PENDING,
1909 * ESI_FORWARD_DIRECT
1910 */
1911 entry->vcc = tmp->vcc;
1912 entry->old_push = tmp->old_push;
1913 }
1914 entry->status = tmp->status;
1915 break;
1916 }
1917 }
1918 }
1919 if (remoteflag)
1920 entry->flags |= LEC_REMOTE_FLAG;
1921 else
1922 entry->flags &= ~LEC_REMOTE_FLAG;
1923 if (entry->status == ESI_ARP_PENDING || entry->status == ESI_UNKNOWN) {
1924 entry->status = ESI_VC_PENDING;
Chas Williamsd0732f62006-09-29 17:14:27 -07001925 send_to_lecd(priv, l_svc_setup, entry->mac_addr, atm_addr, NULL);
Chas Williams1fa99612006-09-29 17:11:47 -07001926 }
Stephen Hemminger52240062007-08-28 15:22:09 -07001927 pr_debug("After update2\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001928 dump_arp_table(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929out:
1930 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1931}
1932
1933/*
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001934 * Notifies: Vcc setup ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 */
1936static void
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001937lec_vcc_added(struct lec_priv *priv, const struct atmlec_ioc *ioc_data,
Chas Williams1fa99612006-09-29 17:11:47 -07001938 struct atm_vcc *vcc,
1939 void (*old_push) (struct atm_vcc *vcc, struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940{
1941 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07001942 struct lec_arp_table *entry;
1943 int i, found_entry = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
1945 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Joe Perchesc48192a2010-01-26 11:40:08 +00001946 /* Vcc for Multicast Forward. No timer, LANEv2 7.1.20 and 2.3.5.3 */
Chas Williams1fa99612006-09-29 17:11:47 -07001947 if (ioc_data->receive == 2) {
Stephen Hemminger52240062007-08-28 15:22:09 -07001948 pr_debug("LEC_ARP: Attaching mcast forward\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949#if 0
Chas Williams1fa99612006-09-29 17:11:47 -07001950 entry = lec_arp_find(priv, bus_mac);
1951 if (!entry) {
Joe Perchesc48192a2010-01-26 11:40:08 +00001952 pr_info("LEC_ARP: Multicast entry not found!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001954 }
1955 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
1956 entry->recv_vcc = vcc;
1957 entry->old_recv_push = old_push;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958#endif
Chas Williams1fa99612006-09-29 17:11:47 -07001959 entry = make_entry(priv, bus_mac);
1960 if (entry == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001962 del_timer(&entry->timer);
1963 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
1964 entry->recv_vcc = vcc;
1965 entry->old_recv_push = old_push;
Chas Williamsd0732f62006-09-29 17:14:27 -07001966 hlist_add_head(&entry->next, &priv->mcast_fwds);
Chas Williams1fa99612006-09-29 17:11:47 -07001967 goto out;
1968 } else if (ioc_data->receive == 1) {
1969 /*
1970 * Vcc which we don't want to make default vcc,
1971 * attach it anyway.
1972 */
Joe Perches99824462010-01-26 11:40:00 +00001973 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",
1974 ioc_data->atm_addr[0], ioc_data->atm_addr[1],
1975 ioc_data->atm_addr[2], ioc_data->atm_addr[3],
1976 ioc_data->atm_addr[4], ioc_data->atm_addr[5],
1977 ioc_data->atm_addr[6], ioc_data->atm_addr[7],
1978 ioc_data->atm_addr[8], ioc_data->atm_addr[9],
1979 ioc_data->atm_addr[10], ioc_data->atm_addr[11],
1980 ioc_data->atm_addr[12], ioc_data->atm_addr[13],
1981 ioc_data->atm_addr[14], ioc_data->atm_addr[15],
1982 ioc_data->atm_addr[16], ioc_data->atm_addr[17],
1983 ioc_data->atm_addr[18], ioc_data->atm_addr[19]);
Chas Williams1fa99612006-09-29 17:11:47 -07001984 entry = make_entry(priv, bus_mac);
1985 if (entry == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001987 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
Joe Perches19ffa562015-03-02 19:54:54 -08001988 eth_zero_addr(entry->mac_addr);
Chas Williams1fa99612006-09-29 17:11:47 -07001989 entry->recv_vcc = vcc;
1990 entry->old_recv_push = old_push;
1991 entry->status = ESI_UNKNOWN;
1992 entry->timer.expires = jiffies + priv->vcc_timeout_period;
Kees Cook841b86f2017-10-23 09:40:42 +02001993 entry->timer.function = lec_arp_expire_vcc;
Chas Williamsd0732f62006-09-29 17:14:27 -07001994 hlist_add_head(&entry->next, &priv->lec_no_forward);
Chas Williams1fa99612006-09-29 17:11:47 -07001995 add_timer(&entry->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 dump_arp_table(priv);
1997 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001998 }
Joe Perches99824462010-01-26 11:40:00 +00001999 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",
2000 ioc_data->atm_addr[0], ioc_data->atm_addr[1],
2001 ioc_data->atm_addr[2], ioc_data->atm_addr[3],
2002 ioc_data->atm_addr[4], ioc_data->atm_addr[5],
2003 ioc_data->atm_addr[6], ioc_data->atm_addr[7],
2004 ioc_data->atm_addr[8], ioc_data->atm_addr[9],
2005 ioc_data->atm_addr[10], ioc_data->atm_addr[11],
2006 ioc_data->atm_addr[12], ioc_data->atm_addr[13],
2007 ioc_data->atm_addr[14], ioc_data->atm_addr[15],
2008 ioc_data->atm_addr[16], ioc_data->atm_addr[17],
2009 ioc_data->atm_addr[18], ioc_data->atm_addr[19]);
Chas Williams1fa99612006-09-29 17:11:47 -07002010 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08002011 hlist_for_each_entry(entry,
Joe Perchesc48192a2010-01-26 11:40:08 +00002012 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002013 if (memcmp
2014 (ioc_data->atm_addr, entry->atm_addr,
2015 ATM_ESA_LEN) == 0) {
Stephen Hemminger52240062007-08-28 15:22:09 -07002016 pr_debug("LEC_ARP: Attaching data direct\n");
2017 pr_debug("Currently -> Vcc: %d, Rvcc:%d\n",
Joe Perches99824462010-01-26 11:40:00 +00002018 entry->vcc ? entry->vcc->vci : 0,
2019 entry->recv_vcc ? entry->recv_vcc->
2020 vci : 0);
Chas Williams1fa99612006-09-29 17:11:47 -07002021 found_entry = 1;
2022 del_timer(&entry->timer);
2023 entry->vcc = vcc;
2024 entry->old_push = old_push;
2025 if (entry->status == ESI_VC_PENDING) {
2026 if (priv->maximum_unknown_frame_count
2027 == 0)
2028 entry->status =
2029 ESI_FORWARD_DIRECT;
2030 else {
2031 entry->timestamp = jiffies;
2032 entry->status =
2033 ESI_FLUSH_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034#if 0
Chas Williams1fa99612006-09-29 17:11:47 -07002035 send_to_lecd(priv, l_flush_xmt,
2036 NULL,
2037 entry->atm_addr,
2038 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039#endif
Chas Williams1fa99612006-09-29 17:11:47 -07002040 }
2041 } else {
2042 /*
2043 * They were forming a connection
2044 * to us, and we to them. Our
2045 * ATM address is numerically lower
2046 * than theirs, so we make connection
2047 * we formed into default VCC (8.1.11).
2048 * Connection they made gets torn
2049 * down. This might confuse some
2050 * clients. Can be changed if
2051 * someone reports trouble...
2052 */
2053 ;
2054 }
2055 }
2056 }
2057 }
2058 if (found_entry) {
Stephen Hemminger52240062007-08-28 15:22:09 -07002059 pr_debug("After vcc was added\n");
Chas Williams1fa99612006-09-29 17:11:47 -07002060 dump_arp_table(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002062 }
2063 /*
2064 * Not found, snatch address from first data packet that arrives
2065 * from this vcc
2066 */
2067 entry = make_entry(priv, bus_mac);
2068 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002070 entry->vcc = vcc;
2071 entry->old_push = old_push;
2072 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
Joe Perches19ffa562015-03-02 19:54:54 -08002073 eth_zero_addr(entry->mac_addr);
Chas Williams1fa99612006-09-29 17:11:47 -07002074 entry->status = ESI_UNKNOWN;
Chas Williamsd0732f62006-09-29 17:14:27 -07002075 hlist_add_head(&entry->next, &priv->lec_arp_empty_ones);
Chas Williams1fa99612006-09-29 17:11:47 -07002076 entry->timer.expires = jiffies + priv->vcc_timeout_period;
Kees Cook841b86f2017-10-23 09:40:42 +02002077 entry->timer.function = lec_arp_expire_vcc;
Chas Williams1fa99612006-09-29 17:11:47 -07002078 add_timer(&entry->timer);
Stephen Hemminger52240062007-08-28 15:22:09 -07002079 pr_debug("After vcc was added\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 dump_arp_table(priv);
2081out:
2082 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2083}
2084
Chas Williams1fa99612006-09-29 17:11:47 -07002085static void lec_flush_complete(struct lec_priv *priv, unsigned long tran_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086{
2087 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07002088 struct lec_arp_table *entry;
2089 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Joe Perches99824462010-01-26 11:40:00 +00002091 pr_debug("%lx\n", tran_id);
Chas Williams6656e3c2006-09-29 17:17:17 -07002092restart:
Chas Williams1fa99612006-09-29 17:11:47 -07002093 spin_lock_irqsave(&priv->lec_arp_lock, flags);
2094 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08002095 hlist_for_each_entry(entry,
Joe Perchesc48192a2010-01-26 11:40:08 +00002096 &priv->lec_arp_tables[i], next) {
2097 if (entry->flush_tran_id == tran_id &&
2098 entry->status == ESI_FLUSH_PENDING) {
Chas Williams1fa99612006-09-29 17:11:47 -07002099 struct sk_buff *skb;
Chas Williams6656e3c2006-09-29 17:17:17 -07002100 struct atm_vcc *vcc = entry->vcc;
Chas Williams1fa99612006-09-29 17:11:47 -07002101
Chas Williams6656e3c2006-09-29 17:17:17 -07002102 lec_arp_hold(entry);
Joe Perchesc48192a2010-01-26 11:40:08 +00002103 spin_unlock_irqrestore(&priv->lec_arp_lock,
2104 flags);
Joe Perchesb4c84ec2010-01-26 11:40:19 +00002105 while ((skb = skb_dequeue(&entry->tx_wait)))
Stephen Hemminger162619e2009-01-09 13:01:01 +00002106 lec_send(vcc, skb);
Chas Williams6656e3c2006-09-29 17:17:17 -07002107 entry->last_used = jiffies;
Chas Williams1fa99612006-09-29 17:11:47 -07002108 entry->status = ESI_FORWARD_DIRECT;
Chas Williams6656e3c2006-09-29 17:17:17 -07002109 lec_arp_put(entry);
Stephen Hemminger52240062007-08-28 15:22:09 -07002110 pr_debug("LEC_ARP: Flushed\n");
Chas Williams6656e3c2006-09-29 17:17:17 -07002111 goto restart;
Chas Williams1fa99612006-09-29 17:11:47 -07002112 }
2113 }
2114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002116 dump_arp_table(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117}
2118
2119static void
2120lec_set_flush_tran_id(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07002121 const unsigned char *atm_addr, unsigned long tran_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122{
2123 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07002124 struct lec_arp_table *entry;
2125 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002128 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++)
Sasha Levinb67bfe02013-02-27 17:06:00 -08002129 hlist_for_each_entry(entry,
Joe Perchesc48192a2010-01-26 11:40:08 +00002130 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002131 if (!memcmp(atm_addr, entry->atm_addr, ATM_ESA_LEN)) {
2132 entry->flush_tran_id = tran_id;
Stephen Hemminger52240062007-08-28 15:22:09 -07002133 pr_debug("Set flush transaction id to %lx for %p\n",
Joe Perches99824462010-01-26 11:40:00 +00002134 tran_id, entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002135 }
Chas Williamsd0732f62006-09-29 17:14:27 -07002136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2138}
2139
Chas Williams1fa99612006-09-29 17:11:47 -07002140static int lec_mcast_make(struct lec_priv *priv, struct atm_vcc *vcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141{
2142 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07002143 unsigned char mac_addr[] = {
2144 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
2145 };
2146 struct lec_arp_table *to_add;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 struct lec_vcc_priv *vpriv;
2148 int err = 0;
Chas Williams1fa99612006-09-29 17:11:47 -07002149
Joe Perchesc48192a2010-01-26 11:40:08 +00002150 vpriv = kmalloc(sizeof(struct lec_vcc_priv), GFP_KERNEL);
2151 if (!vpriv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 return -ENOMEM;
2153 vpriv->xoff = 0;
2154 vpriv->old_pop = vcc->pop;
2155 vcc->user_back = vpriv;
Chas Williams1fa99612006-09-29 17:11:47 -07002156 vcc->pop = lec_pop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002158 to_add = make_entry(priv, mac_addr);
2159 if (!to_add) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 vcc->pop = vpriv->old_pop;
2161 kfree(vpriv);
Chas Williams1fa99612006-09-29 17:11:47 -07002162 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002164 }
2165 memcpy(to_add->atm_addr, vcc->remote.sas_addr.prv, ATM_ESA_LEN);
2166 to_add->status = ESI_FORWARD_DIRECT;
2167 to_add->flags |= LEC_PERMANENT_FLAG;
2168 to_add->vcc = vcc;
2169 to_add->old_push = vcc->push;
2170 vcc->push = lec_push;
2171 priv->mcast_vcc = vcc;
2172 lec_arp_add(priv, to_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173out:
2174 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002175 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176}
2177
Chas Williams1fa99612006-09-29 17:11:47 -07002178static void lec_vcc_close(struct lec_priv *priv, struct atm_vcc *vcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
2180 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002181 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07002182 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07002183 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
Stephen Hemminger52240062007-08-28 15:22:09 -07002185 pr_debug("LEC_ARP: lec_vcc_close vpi:%d vci:%d\n", vcc->vpi, vcc->vci);
Chas Williams1fa99612006-09-29 17:11:47 -07002186 dump_arp_table(priv);
Chas Williamsd0732f62006-09-29 17:14:27 -07002187
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd0732f62006-09-29 17:14:27 -07002189
Chas Williams1fa99612006-09-29 17:11:47 -07002190 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08002191 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00002192 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002193 if (vcc == entry->vcc) {
2194 lec_arp_remove(priv, entry);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002195 lec_arp_put(entry);
Joe Perchesc48192a2010-01-26 11:40:08 +00002196 if (priv->mcast_vcc == vcc)
Chas Williams1fa99612006-09-29 17:11:47 -07002197 priv->mcast_vcc = NULL;
Chas Williams1fa99612006-09-29 17:11:47 -07002198 }
2199 }
2200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
Sasha Levinb67bfe02013-02-27 17:06:00 -08002202 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00002203 &priv->lec_arp_empty_ones, next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002204 if (entry->vcc == vcc) {
Chas Williams1fa99612006-09-29 17:11:47 -07002205 lec_arp_clear_vccs(entry);
2206 del_timer(&entry->timer);
Chas Williamsd0732f62006-09-29 17:14:27 -07002207 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002208 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002209 }
Chas Williams1fa99612006-09-29 17:11:47 -07002210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Sasha Levinb67bfe02013-02-27 17:06:00 -08002212 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00002213 &priv->lec_no_forward, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002214 if (entry->recv_vcc == vcc) {
2215 lec_arp_clear_vccs(entry);
2216 del_timer(&entry->timer);
Chas Williamsd0732f62006-09-29 17:14:27 -07002217 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002218 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002219 }
Chas Williams1fa99612006-09-29 17:11:47 -07002220 }
2221
Sasha Levinb67bfe02013-02-27 17:06:00 -08002222 hlist_for_each_entry_safe(entry, next, &priv->mcast_fwds, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002223 if (entry->recv_vcc == vcc) {
2224 lec_arp_clear_vccs(entry);
2225 /* No timer, LANEv2 7.1.20 and 2.3.5.3 */
Chas Williamsd0732f62006-09-29 17:14:27 -07002226 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002227 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002228 }
Chas Williams1fa99612006-09-29 17:11:47 -07002229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
2231 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2232 dump_arp_table(priv);
2233}
2234
2235static void
2236lec_arp_check_empties(struct lec_priv *priv,
Chas Williams1fa99612006-09-29 17:11:47 -07002237 struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238{
Chas Williams1fa99612006-09-29 17:11:47 -07002239 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002240 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07002241 struct lec_arp_table *entry, *tmp;
Chas Williams1fa99612006-09-29 17:11:47 -07002242 struct lecdatahdr_8023 *hdr = (struct lecdatahdr_8023 *)skb->data;
Paul Gortmaker60eea6c2012-05-10 16:17:00 -04002243 unsigned char *src = hdr->h_source;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
2245 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Sasha Levinb67bfe02013-02-27 17:06:00 -08002246 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00002247 &priv->lec_arp_empty_ones, next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002248 if (vcc == entry->vcc) {
2249 del_timer(&entry->timer);
Joe Perches116e8532014-01-20 09:52:16 -08002250 ether_addr_copy(entry->mac_addr, src);
Chas Williamsd0732f62006-09-29 17:14:27 -07002251 entry->status = ESI_FORWARD_DIRECT;
2252 entry->last_used = jiffies;
2253 /* We might have got an entry */
Joe Perchesc48192a2010-01-26 11:40:08 +00002254 tmp = lec_arp_find(priv, src);
2255 if (tmp) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002256 lec_arp_remove(priv, tmp);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002257 lec_arp_put(tmp);
Chas Williamsd0732f62006-09-29 17:14:27 -07002258 }
2259 hlist_del(&entry->next);
2260 lec_arp_add(priv, entry);
2261 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002262 }
Chas Williams1fa99612006-09-29 17:11:47 -07002263 }
Stephen Hemminger52240062007-08-28 15:22:09 -07002264 pr_debug("LEC_ARP: Arp_check_empties: entry not found!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265out:
2266 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2267}
Chas Williams1fa99612006-09-29 17:11:47 -07002268
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269MODULE_LICENSE("GPL");