blob: ad4f829193f053c8a0c0846f1e9f619617dcd18e [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{
Gustavo A. R. Silva899537b2019-04-15 15:57:23 -0500713 if (arg < 0 || arg >= MAX_LEC_ITF)
714 return -EINVAL;
715 arg = array_index_nospec(arg, MAX_LEC_ITF);
716 if (!dev_lec[arg])
Chas Williamsd44f7742006-09-29 17:11:14 -0700717 return -EINVAL;
718 vcc->proto_data = dev_lec[arg];
Joe Perches37d66802010-11-15 11:12:33 +0000719 return lec_mcast_make(netdev_priv(dev_lec[arg]), vcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
722/* Initialize device. */
Chas Williamsd44f7742006-09-29 17:11:14 -0700723static int lecd_attach(struct atm_vcc *vcc, int arg)
724{
725 int i;
726 struct lec_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Chas Williamsd44f7742006-09-29 17:11:14 -0700728 if (arg < 0)
729 i = 0;
730 else
731 i = arg;
Chas Williamsd44f7742006-09-29 17:11:14 -0700732 if (arg >= MAX_LEC_ITF)
733 return -EINVAL;
Gustavo A. R. Silva899537b2019-04-15 15:57:23 -0500734 i = array_index_nospec(arg, MAX_LEC_ITF);
Chas Williamsd44f7742006-09-29 17:11:14 -0700735 if (!dev_lec[i]) {
Paul Gortmaker60eea6c2012-05-10 16:17:00 -0400736 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Chas Williamsd44f7742006-09-29 17:11:14 -0700738 size = sizeof(struct lec_priv);
Paul Gortmaker60eea6c2012-05-10 16:17:00 -0400739 dev_lec[i] = alloc_etherdev(size);
Chas Williamsd44f7742006-09-29 17:11:14 -0700740 if (!dev_lec[i])
741 return -ENOMEM;
chas williams - CONTRACTOReb044582009-12-04 05:19:30 +0000742 dev_lec[i]->netdev_ops = &lec_netdev_ops;
Jarod Wilson8b6b4132016-10-20 13:55:19 -0400743 dev_lec[i]->max_mtu = 18190;
Chas Williamsd44f7742006-09-29 17:11:14 -0700744 snprintf(dev_lec[i]->name, IFNAMSIZ, "lec%d", i);
745 if (register_netdev(dev_lec[i])) {
746 free_netdev(dev_lec[i]);
747 return -EINVAL;
748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Wang Chen524ad0a2008-11-12 23:39:10 -0800750 priv = netdev_priv(dev_lec[i]);
Chas Williamsd44f7742006-09-29 17:11:14 -0700751 } else {
Wang Chen524ad0a2008-11-12 23:39:10 -0800752 priv = netdev_priv(dev_lec[i]);
Chas Williamsd44f7742006-09-29 17:11:14 -0700753 if (priv->lecd)
754 return -EADDRINUSE;
755 }
756 lec_arp_init(priv);
757 priv->itfnum = i; /* LANE2 addition */
758 priv->lecd = vcc;
759 vcc->dev = &lecatm_dev;
760 vcc_insert_socket(sk_atm(vcc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Chas Williamsd44f7742006-09-29 17:11:14 -0700762 vcc->proto_data = dev_lec[i];
763 set_bit(ATM_VF_META, &vcc->flags);
764 set_bit(ATM_VF_READY, &vcc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Chas Williamsd44f7742006-09-29 17:11:14 -0700766 /* Set default values to these variables */
767 priv->maximum_unknown_frame_count = 1;
768 priv->max_unknown_frame_time = (1 * HZ);
769 priv->vcc_timeout_period = (1200 * HZ);
770 priv->max_retry_count = 1;
771 priv->aging_time = (300 * HZ);
772 priv->forward_delay_time = (15 * HZ);
773 priv->topology_change = 0;
774 priv->arp_response_time = (1 * HZ);
775 priv->flush_timeout = (4 * HZ);
776 priv->path_switching_delay = (6 * HZ);
777
Joe Perchesc48192a2010-01-26 11:40:08 +0000778 if (dev_lec[i]->flags & IFF_UP)
Chas Williamsd44f7742006-09-29 17:11:14 -0700779 netif_start_queue(dev_lec[i]);
Chas Williamsd44f7742006-09-29 17:11:14 -0700780 __module_get(THIS_MODULE);
781 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
784#ifdef CONFIG_PROC_FS
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700785static const char *lec_arp_get_status_string(unsigned char status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700787 static const char *const lec_arp_status_string[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 "ESI_UNKNOWN ",
789 "ESI_ARP_PENDING ",
790 "ESI_VC_PENDING ",
791 "<Undefined> ",
792 "ESI_FLUSH_PENDING ",
793 "ESI_FORWARD_DIRECT"
794 };
795
796 if (status > ESI_FORWARD_DIRECT)
797 status = 3; /* ESI_UNDEFINED */
798 return lec_arp_status_string[status];
799}
800
801static void lec_info(struct seq_file *seq, struct lec_arp_table *entry)
802{
803 int i;
804
805 for (i = 0; i < ETH_ALEN; i++)
806 seq_printf(seq, "%2.2x", entry->mac_addr[i] & 0xff);
807 seq_printf(seq, " ");
808 for (i = 0; i < ATM_ESA_LEN; i++)
809 seq_printf(seq, "%2.2x", entry->atm_addr[i] & 0xff);
810 seq_printf(seq, " %s %4.4x", lec_arp_get_status_string(entry->status),
811 entry->flags & 0xffff);
812 if (entry->vcc)
813 seq_printf(seq, "%3d %3d ", entry->vcc->vpi, entry->vcc->vci);
814 else
Chas Williamsd44f7742006-09-29 17:11:14 -0700815 seq_printf(seq, " ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (entry->recv_vcc) {
817 seq_printf(seq, " %3d %3d", entry->recv_vcc->vpi,
818 entry->recv_vcc->vci);
Chas Williamsd44f7742006-09-29 17:11:14 -0700819 }
820 seq_putc(seq, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823struct lec_state {
824 unsigned long flags;
825 struct lec_priv *locked;
Chas Williamsd0732f62006-09-29 17:14:27 -0700826 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 struct net_device *dev;
828 int itf;
829 int arp_table;
830 int misc_table;
831};
832
Chas Williamsd0732f62006-09-29 17:14:27 -0700833static void *lec_tbl_walk(struct lec_state *state, struct hlist_head *tbl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 loff_t *l)
835{
Chas Williamsd0732f62006-09-29 17:14:27 -0700836 struct hlist_node *e = state->node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 if (!e)
Chas Williamsd0732f62006-09-29 17:14:27 -0700839 e = tbl->first;
Joe Perches2e1e9842008-04-10 03:33:03 -0700840 if (e == SEQ_START_TOKEN) {
Chas Williamsd0732f62006-09-29 17:14:27 -0700841 e = tbl->first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 --*l;
843 }
Chas Williamsd0732f62006-09-29 17:14:27 -0700844
chas williams - CONTRACTOR8356f9d2014-08-12 09:00:36 -0400845 for (; e; e = e->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 if (--*l < 0)
847 break;
848 }
Chas Williamsd0732f62006-09-29 17:14:27 -0700849 state->node = e;
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 return (*l < 0) ? state : NULL;
852}
853
854static void *lec_arp_walk(struct lec_state *state, loff_t *l,
Chas Williamsd44f7742006-09-29 17:11:14 -0700855 struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
857 void *v = NULL;
858 int p;
859
860 for (p = state->arp_table; p < LEC_ARP_TABLE_SIZE; p++) {
Chas Williamsd0732f62006-09-29 17:14:27 -0700861 v = lec_tbl_walk(state, &priv->lec_arp_tables[p], l);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 if (v)
863 break;
864 }
865 state->arp_table = p;
866 return v;
867}
868
869static void *lec_misc_walk(struct lec_state *state, loff_t *l,
870 struct lec_priv *priv)
871{
Chas Williamsd0732f62006-09-29 17:14:27 -0700872 struct hlist_head *lec_misc_tables[] = {
873 &priv->lec_arp_empty_ones,
874 &priv->lec_no_forward,
875 &priv->mcast_fwds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 };
877 void *v = NULL;
878 int q;
879
880 for (q = state->misc_table; q < ARRAY_SIZE(lec_misc_tables); q++) {
881 v = lec_tbl_walk(state, lec_misc_tables[q], l);
882 if (v)
883 break;
884 }
885 state->misc_table = q;
886 return v;
887}
888
889static void *lec_priv_walk(struct lec_state *state, loff_t *l,
890 struct lec_priv *priv)
891{
892 if (!state->locked) {
893 state->locked = priv;
894 spin_lock_irqsave(&priv->lec_arp_lock, state->flags);
895 }
Chas Williamsd44f7742006-09-29 17:11:14 -0700896 if (!lec_arp_walk(state, l, priv) && !lec_misc_walk(state, l, priv)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 spin_unlock_irqrestore(&priv->lec_arp_lock, state->flags);
898 state->locked = NULL;
899 /* Partial state reset for the next time we get called */
900 state->arp_table = state->misc_table = 0;
901 }
902 return state->locked;
903}
904
905static void *lec_itf_walk(struct lec_state *state, loff_t *l)
906{
907 struct net_device *dev;
908 void *v;
909
910 dev = state->dev ? state->dev : dev_lec[state->itf];
Wang Chen524ad0a2008-11-12 23:39:10 -0800911 v = (dev && netdev_priv(dev)) ?
912 lec_priv_walk(state, l, netdev_priv(dev)) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 if (!v && dev) {
914 dev_put(dev);
915 /* Partial state reset for the next time we get called */
916 dev = NULL;
917 }
918 state->dev = dev;
919 return v;
920}
921
922static void *lec_get_idx(struct lec_state *state, loff_t l)
923{
924 void *v = NULL;
925
926 for (; state->itf < MAX_LEC_ITF; state->itf++) {
927 v = lec_itf_walk(state, &l);
928 if (v)
929 break;
930 }
Chas Williamsd44f7742006-09-29 17:11:14 -0700931 return v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
934static void *lec_seq_start(struct seq_file *seq, loff_t *pos)
935{
936 struct lec_state *state = seq->private;
937
938 state->itf = 0;
939 state->dev = NULL;
940 state->locked = NULL;
941 state->arp_table = 0;
942 state->misc_table = 0;
Joe Perches2e1e9842008-04-10 03:33:03 -0700943 state->node = SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Joe Perches2e1e9842008-04-10 03:33:03 -0700945 return *pos ? lec_get_idx(state, *pos) : SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
948static void lec_seq_stop(struct seq_file *seq, void *v)
949{
950 struct lec_state *state = seq->private;
951
952 if (state->dev) {
953 spin_unlock_irqrestore(&state->locked->lec_arp_lock,
954 state->flags);
955 dev_put(state->dev);
956 }
957}
958
959static void *lec_seq_next(struct seq_file *seq, void *v, loff_t *pos)
960{
961 struct lec_state *state = seq->private;
962
963 v = lec_get_idx(state, 1);
964 *pos += !!PTR_ERR(v);
965 return v;
966}
967
968static int lec_seq_show(struct seq_file *seq, void *v)
969{
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700970 static const char lec_banner[] =
971 "Itf MAC ATM destination"
Chas Williamsd44f7742006-09-29 17:11:14 -0700972 " Status Flags "
973 "VPI/VCI Recv VPI/VCI\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Joe Perches2e1e9842008-04-10 03:33:03 -0700975 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 seq_puts(seq, lec_banner);
977 else {
978 struct lec_state *state = seq->private;
Chas Williamsd44f7742006-09-29 17:11:14 -0700979 struct net_device *dev = state->dev;
Joe Perchesc48192a2010-01-26 11:40:08 +0000980 struct lec_arp_table *entry = hlist_entry(state->node,
981 struct lec_arp_table,
982 next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 seq_printf(seq, "%s ", dev->name);
Chas Williamsd0732f62006-09-29 17:14:27 -0700985 lec_info(seq, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987 return 0;
988}
989
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700990static const struct seq_operations lec_seq_ops = {
Chas Williamsd44f7742006-09-29 17:11:14 -0700991 .start = lec_seq_start,
992 .next = lec_seq_next,
993 .stop = lec_seq_stop,
994 .show = lec_seq_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996#endif
997
998static int lane_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
999{
1000 struct atm_vcc *vcc = ATM_SD(sock);
1001 int err = 0;
Chas Williamsd44f7742006-09-29 17:11:14 -07001002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 switch (cmd) {
Chas Williamsd44f7742006-09-29 17:11:14 -07001004 case ATMLEC_CTRL:
1005 case ATMLEC_MCAST:
1006 case ATMLEC_DATA:
1007 if (!capable(CAP_NET_ADMIN))
1008 return -EPERM;
1009 break;
1010 default:
1011 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 }
1013
1014 switch (cmd) {
Chas Williamsd44f7742006-09-29 17:11:14 -07001015 case ATMLEC_CTRL:
1016 err = lecd_attach(vcc, (int)arg);
1017 if (err >= 0)
1018 sock->state = SS_CONNECTED;
1019 break;
1020 case ATMLEC_MCAST:
1021 err = lec_mcast_attach(vcc, (int)arg);
1022 break;
1023 case ATMLEC_DATA:
1024 err = lec_vcc_attach(vcc, (void __user *)arg);
1025 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
1027
1028 return err;
1029}
1030
1031static struct atm_ioctl lane_ioctl_ops = {
Chas Williamsd44f7742006-09-29 17:11:14 -07001032 .owner = THIS_MODULE,
1033 .ioctl = lane_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034};
1035
1036static int __init lane_module_init(void)
1037{
1038#ifdef CONFIG_PROC_FS
1039 struct proc_dir_entry *p;
1040
Christoph Hellwig44414d82018-04-24 17:05:17 +02001041 p = proc_create_seq_private("lec", 0444, atm_proc_root, &lec_seq_ops,
1042 sizeof(struct lec_state), NULL);
Wang Chendbee0d32008-03-23 21:45:36 -07001043 if (!p) {
Joe Perches99824462010-01-26 11:40:00 +00001044 pr_err("Unable to initialize /proc/net/atm/lec\n");
Wang Chendbee0d32008-03-23 21:45:36 -07001045 return -ENOMEM;
1046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047#endif
1048
1049 register_atm_ioctl(&lane_ioctl_ops);
Michal Marek36a9f772011-04-01 12:41:20 +02001050 pr_info("lec.c: initialized\n");
Chas Williamsd44f7742006-09-29 17:11:14 -07001051 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052}
1053
1054static void __exit lane_module_cleanup(void)
1055{
Chas Williamsd44f7742006-09-29 17:11:14 -07001056 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Augusto Mecking Caringi9dd0f892016-12-28 16:02:05 +00001058#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 remove_proc_entry("lec", atm_proc_root);
Augusto Mecking Caringi9dd0f892016-12-28 16:02:05 +00001060#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
1062 deregister_atm_ioctl(&lane_ioctl_ops);
1063
Chas Williamsd44f7742006-09-29 17:11:14 -07001064 for (i = 0; i < MAX_LEC_ITF; i++) {
1065 if (dev_lec[i] != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 unregister_netdev(dev_lec[i]);
Chas Williamsd44f7742006-09-29 17:11:14 -07001067 free_netdev(dev_lec[i]);
1068 dev_lec[i] = NULL;
1069 }
1070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071}
1072
1073module_init(lane_module_init);
1074module_exit(lane_module_cleanup);
1075
1076/*
1077 * LANE2: 3.1.3, LE_RESOLVE.request
1078 * Non force allocates memory and fills in *tlvs, fills in *sizeoftlvs.
1079 * If sizeoftlvs == NULL the default TLVs associated with with this
1080 * lec will be used.
1081 * If dst_mac == NULL, targetless LE_ARP will be sent
1082 */
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001083static int lane2_resolve(struct net_device *dev, const u8 *dst_mac, int force,
Chas Williamsd44f7742006-09-29 17:11:14 -07001084 u8 **tlvs, u32 *sizeoftlvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
1086 unsigned long flags;
Wang Chen524ad0a2008-11-12 23:39:10 -08001087 struct lec_priv *priv = netdev_priv(dev);
Chas Williamsd44f7742006-09-29 17:11:14 -07001088 struct lec_arp_table *table;
1089 struct sk_buff *skb;
1090 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Chas Williamsd44f7742006-09-29 17:11:14 -07001092 if (force == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd44f7742006-09-29 17:11:14 -07001094 table = lec_arp_find(priv, dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williamsd44f7742006-09-29 17:11:14 -07001096 if (table == NULL)
1097 return -1;
1098
Arnaldo Carvalho de Melo2afe37c2006-11-21 01:14:33 -02001099 *tlvs = kmemdup(table->tlvs, table->sizeoftlvs, GFP_ATOMIC);
Chas Williamsd44f7742006-09-29 17:11:14 -07001100 if (*tlvs == NULL)
1101 return -1;
1102
Chas Williamsd44f7742006-09-29 17:11:14 -07001103 *sizeoftlvs = table->sizeoftlvs;
1104
1105 return 0;
1106 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
1108 if (sizeoftlvs == NULL)
1109 retval = send_to_lecd(priv, l_arp_xmt, dst_mac, NULL, NULL);
Chas Williamsd44f7742006-09-29 17:11:14 -07001110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 else {
1112 skb = alloc_skb(*sizeoftlvs, GFP_ATOMIC);
1113 if (skb == NULL)
1114 return -1;
1115 skb->len = *sizeoftlvs;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001116 skb_copy_to_linear_data(skb, *tlvs, *sizeoftlvs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 retval = send_to_lecd(priv, l_arp_xmt, dst_mac, NULL, skb);
1118 }
Chas Williamsd44f7742006-09-29 17:11:14 -07001119 return retval;
1120}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122/*
1123 * LANE2: 3.1.4, LE_ASSOCIATE.request
1124 * Associate the *tlvs with the *lan_dst address.
1125 * Will overwrite any previous association
1126 * Returns 1 for success, 0 for failure (out of memory)
1127 *
1128 */
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001129static int lane2_associate_req(struct net_device *dev, const u8 *lan_dst,
1130 const u8 *tlvs, u32 sizeoftlvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131{
Chas Williamsd44f7742006-09-29 17:11:14 -07001132 int retval;
1133 struct sk_buff *skb;
Wang Chen524ad0a2008-11-12 23:39:10 -08001134 struct lec_priv *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Joe Perches150238e2012-05-08 18:56:50 +00001136 if (!ether_addr_equal(lan_dst, dev->dev_addr))
Joe Perchesc48192a2010-01-26 11:40:08 +00001137 return 0; /* not our mac address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Chas Williamsd44f7742006-09-29 17:11:14 -07001139 kfree(priv->tlvs); /* NULL if there was no previous association */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Arnaldo Carvalho de Melo2afe37c2006-11-21 01:14:33 -02001141 priv->tlvs = kmemdup(tlvs, sizeoftlvs, GFP_KERNEL);
Chas Williamsd44f7742006-09-29 17:11:14 -07001142 if (priv->tlvs == NULL)
Joe Perchesc48192a2010-01-26 11:40:08 +00001143 return 0;
Chas Williamsd44f7742006-09-29 17:11:14 -07001144 priv->sizeoftlvs = sizeoftlvs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Chas Williamsd44f7742006-09-29 17:11:14 -07001146 skb = alloc_skb(sizeoftlvs, GFP_ATOMIC);
1147 if (skb == NULL)
1148 return 0;
1149 skb->len = sizeoftlvs;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001150 skb_copy_to_linear_data(skb, tlvs, sizeoftlvs);
Chas Williamsd44f7742006-09-29 17:11:14 -07001151 retval = send_to_lecd(priv, l_associate_req, NULL, NULL, skb);
1152 if (retval != 0)
Joe Perchesc48192a2010-01-26 11:40:08 +00001153 pr_info("lec.c: lane2_associate_req() failed\n");
Chas Williamsd44f7742006-09-29 17:11:14 -07001154 /*
1155 * If the previous association has changed we must
1156 * somehow notify other LANE entities about the change
1157 */
Joe Perchesc48192a2010-01-26 11:40:08 +00001158 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159}
1160
1161/*
1162 * LANE2: 3.1.5, LE_ASSOCIATE.indication
1163 *
1164 */
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001165static void lane2_associate_ind(struct net_device *dev, const u8 *mac_addr,
1166 const u8 *tlvs, u32 sizeoftlvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
1168#if 0
Chas Williamsd44f7742006-09-29 17:11:14 -07001169 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170#endif
Wang Chen524ad0a2008-11-12 23:39:10 -08001171 struct lec_priv *priv = netdev_priv(dev);
Chas Williamsd44f7742006-09-29 17:11:14 -07001172#if 0 /*
1173 * Why have the TLVs in LE_ARP entries
1174 * since we do not use them? When you
1175 * uncomment this code, make sure the
1176 * TLVs get freed when entry is killed
1177 */
1178 struct lec_arp_table *entry = lec_arp_find(priv, mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Chas Williamsd44f7742006-09-29 17:11:14 -07001180 if (entry == NULL)
1181 return; /* should not happen */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Chas Williamsd44f7742006-09-29 17:11:14 -07001183 kfree(entry->tlvs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Arnaldo Carvalho de Melo2afe37c2006-11-21 01:14:33 -02001185 entry->tlvs = kmemdup(tlvs, sizeoftlvs, GFP_KERNEL);
Chas Williamsd44f7742006-09-29 17:11:14 -07001186 if (entry->tlvs == NULL)
1187 return;
Chas Williamsd44f7742006-09-29 17:11:14 -07001188 entry->sizeoftlvs = sizeoftlvs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189#endif
1190#if 0
Joe Perchesc48192a2010-01-26 11:40:08 +00001191 pr_info("\n");
1192 pr_info("dump of tlvs, sizeoftlvs=%d\n", sizeoftlvs);
Chas Williamsd44f7742006-09-29 17:11:14 -07001193 while (i < sizeoftlvs)
Joe Perchesc48192a2010-01-26 11:40:08 +00001194 pr_cont("%02x ", tlvs[i++]);
Chas Williamsd44f7742006-09-29 17:11:14 -07001195
Joe Perchesc48192a2010-01-26 11:40:08 +00001196 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197#endif
1198
Chas Williamsd44f7742006-09-29 17:11:14 -07001199 /* tell MPOA about the TLVs we saw */
1200 if (priv->lane2_ops && priv->lane2_ops->associate_indicator) {
1201 priv->lane2_ops->associate_indicator(dev, mac_addr,
1202 tlvs, sizeoftlvs);
1203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204}
1205
1206/*
1207 * Here starts what used to lec_arpc.c
1208 *
1209 * lec_arpc.c was added here when making
1210 * lane client modular. October 1997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 */
1212
1213#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214#include <linux/timer.h>
Joe Perchesc48192a2010-01-26 11:40:08 +00001215#include <linux/param.h>
Arun Sharma600634972011-07-26 16:09:06 -07001216#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217#include <linux/inetdevice.h>
1218#include <net/route.h>
1219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220#if 0
Joe Perchesc48192a2010-01-26 11:40:08 +00001221#define pr_debug(format, args...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222/*
Joe Perches99824462010-01-26 11:40:00 +00001223 #define pr_debug printk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224*/
1225#endif
1226#define DEBUG_ARP_TABLE 0
1227
1228#define LEC_ARP_REFRESH_INTERVAL (3*HZ)
1229
David Howellsc4028952006-11-22 14:57:56 +00001230static void lec_arp_check_expire(struct work_struct *work);
Kees Cookba421792017-10-16 17:29:37 -07001231static void lec_arp_expire_arp(struct timer_list *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001233/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 * Arp table funcs
1235 */
1236
Joe Perchesc48192a2010-01-26 11:40:08 +00001237#define HASH(ch) (ch & (LEC_ARP_TABLE_SIZE - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239/*
1240 * Initialization of arp-cache
1241 */
Chas Williams1fa99612006-09-29 17:11:47 -07001242static void lec_arp_init(struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
Chas Williams1fa99612006-09-29 17:11:47 -07001244 unsigned short i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Joe Perchesc48192a2010-01-26 11:40:08 +00001246 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++)
Chas Williamsd0732f62006-09-29 17:14:27 -07001247 INIT_HLIST_HEAD(&priv->lec_arp_tables[i]);
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001248 INIT_HLIST_HEAD(&priv->lec_arp_empty_ones);
1249 INIT_HLIST_HEAD(&priv->lec_no_forward);
1250 INIT_HLIST_HEAD(&priv->mcast_fwds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 spin_lock_init(&priv->lec_arp_lock);
David Howellsc4028952006-11-22 14:57:56 +00001252 INIT_DELAYED_WORK(&priv->lec_arp_work, lec_arp_check_expire);
Chas Williams987e46b2006-09-29 17:15:59 -07001253 schedule_delayed_work(&priv->lec_arp_work, LEC_ARP_REFRESH_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254}
1255
Chas Williams1fa99612006-09-29 17:11:47 -07001256static void lec_arp_clear_vccs(struct lec_arp_table *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
Chas Williams1fa99612006-09-29 17:11:47 -07001258 if (entry->vcc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 struct atm_vcc *vcc = entry->vcc;
1260 struct lec_vcc_priv *vpriv = LEC_VCC_PRIV(vcc);
Chas Williams1fa99612006-09-29 17:11:47 -07001261 struct net_device *dev = (struct net_device *)vcc->proto_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Chas Williams1fa99612006-09-29 17:11:47 -07001263 vcc->pop = vpriv->old_pop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 if (vpriv->xoff)
1265 netif_wake_queue(dev);
1266 kfree(vpriv);
1267 vcc->user_back = NULL;
Chas Williams1fa99612006-09-29 17:11:47 -07001268 vcc->push = entry->old_push;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 vcc_release_async(vcc, -EPIPE);
Chas Williamsd0732f62006-09-29 17:14:27 -07001270 entry->vcc = NULL;
Chas Williams1fa99612006-09-29 17:11:47 -07001271 }
1272 if (entry->recv_vcc) {
1273 entry->recv_vcc->push = entry->old_recv_push;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 vcc_release_async(entry->recv_vcc, -EPIPE);
Chas Williams1fa99612006-09-29 17:11:47 -07001275 entry->recv_vcc = NULL;
1276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
1278
1279/*
1280 * Insert entry to lec_arp_table
1281 * LANE2: Add to the end of the list to satisfy 8.1.13
1282 */
Chas Williams1fa99612006-09-29 17:11:47 -07001283static inline void
Chas Williamsd0732f62006-09-29 17:14:27 -07001284lec_arp_add(struct lec_priv *priv, struct lec_arp_table *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285{
Chas Williamsd0732f62006-09-29 17:14:27 -07001286 struct hlist_head *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Chas Williamsd0732f62006-09-29 17:14:27 -07001288 tmp = &priv->lec_arp_tables[HASH(entry->mac_addr[ETH_ALEN - 1])];
1289 hlist_add_head(&entry->next, tmp);
Chas Williams1fa99612006-09-29 17:11:47 -07001290
Joe Perches99824462010-01-26 11:40:00 +00001291 pr_debug("Added entry:%pM\n", entry->mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292}
1293
1294/*
1295 * Remove entry from lec_arp_table
1296 */
Chas Williams1fa99612006-09-29 17:11:47 -07001297static int
1298lec_arp_remove(struct lec_priv *priv, struct lec_arp_table *to_remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
Chas Williamsd0732f62006-09-29 17:14:27 -07001300 struct lec_arp_table *entry;
1301 int i, remove_vcc = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Joe Perchesc48192a2010-01-26 11:40:08 +00001303 if (!to_remove)
Chas Williams1fa99612006-09-29 17:11:47 -07001304 return -1;
Chas Williamsd0732f62006-09-29 17:14:27 -07001305
1306 hlist_del(&to_remove->next);
Chas Williams1fa99612006-09-29 17:11:47 -07001307 del_timer(&to_remove->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Joe Perchesc48192a2010-01-26 11:40:08 +00001309 /*
1310 * If this is the only MAC connected to this VCC,
1311 * also tear down the VCC
1312 */
Chas Williams1fa99612006-09-29 17:11:47 -07001313 if (to_remove->status >= ESI_FLUSH_PENDING) {
1314 /*
1315 * ESI_FLUSH_PENDING, ESI_FORWARD_DIRECT
1316 */
Chas Williamsd0732f62006-09-29 17:14:27 -07001317 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001318 hlist_for_each_entry(entry,
Joe Perchesc48192a2010-01-26 11:40:08 +00001319 &priv->lec_arp_tables[i], next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001320 if (memcmp(to_remove->atm_addr,
1321 entry->atm_addr, ATM_ESA_LEN) == 0) {
Chas Williams1fa99612006-09-29 17:11:47 -07001322 remove_vcc = 0;
1323 break;
1324 }
1325 }
1326 }
1327 if (remove_vcc)
1328 lec_arp_clear_vccs(to_remove);
1329 }
1330 skb_queue_purge(&to_remove->tx_wait); /* FIXME: good place for this? */
1331
Joe Perches99824462010-01-26 11:40:00 +00001332 pr_debug("Removed entry:%pM\n", to_remove->mac_addr);
Chas Williams1fa99612006-09-29 17:11:47 -07001333 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334}
1335
1336#if DEBUG_ARP_TABLE
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -07001337static const char *get_status_string(unsigned char st)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
Chas Williams1fa99612006-09-29 17:11:47 -07001339 switch (st) {
1340 case ESI_UNKNOWN:
1341 return "ESI_UNKNOWN";
1342 case ESI_ARP_PENDING:
1343 return "ESI_ARP_PENDING";
1344 case ESI_VC_PENDING:
1345 return "ESI_VC_PENDING";
1346 case ESI_FLUSH_PENDING:
1347 return "ESI_FLUSH_PENDING";
1348 case ESI_FORWARD_DIRECT:
1349 return "ESI_FORWARD_DIRECT";
Chas Williams1fa99612006-09-29 17:11:47 -07001350 }
Joe Perchesc48192a2010-01-26 11:40:08 +00001351 return "<UNKNOWN>";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Chas Williams1fa99612006-09-29 17:11:47 -07001354static void dump_arp_table(struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
Chas Williams1fa99612006-09-29 17:11:47 -07001356 struct lec_arp_table *rulla;
Chas Williamsd0732f62006-09-29 17:14:27 -07001357 char buf[256];
1358 int i, j, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Joe Perchesc48192a2010-01-26 11:40:08 +00001360 pr_info("Dump %p:\n", priv);
Chas Williams1fa99612006-09-29 17:11:47 -07001361 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001362 hlist_for_each_entry(rulla,
Joe Perchesc48192a2010-01-26 11:40:08 +00001363 &priv->lec_arp_tables[i], next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001364 offset = 0;
1365 offset += sprintf(buf, "%d: %p\n", i, rulla);
Joe Perchesc48192a2010-01-26 11:40:08 +00001366 offset += sprintf(buf + offset, "Mac: %pM",
1367 rulla->mac_addr);
1368 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001369 for (j = 0; j < ATM_ESA_LEN; j++) {
1370 offset += sprintf(buf + offset,
1371 "%2.2x ",
1372 rulla->atm_addr[j] & 0xff);
1373 }
1374 offset += sprintf(buf + offset,
1375 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1376 rulla->vcc ? rulla->vcc->vpi : 0,
1377 rulla->vcc ? rulla->vcc->vci : 0,
1378 rulla->recv_vcc ? rulla->recv_vcc->
1379 vpi : 0,
1380 rulla->recv_vcc ? rulla->recv_vcc->
1381 vci : 0, rulla->last_used,
1382 rulla->timestamp, rulla->no_tries);
1383 offset +=
1384 sprintf(buf + offset,
1385 "Flags:%x, Packets_flooded:%x, Status: %s ",
1386 rulla->flags, rulla->packets_flooded,
1387 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001388 pr_info("%s\n", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001389 }
Chas Williams1fa99612006-09-29 17:11:47 -07001390 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001391
1392 if (!hlist_empty(&priv->lec_no_forward))
Joe Perchesc48192a2010-01-26 11:40:08 +00001393 pr_info("No forward\n");
Sasha Levinb67bfe02013-02-27 17:06:00 -08001394 hlist_for_each_entry(rulla, &priv->lec_no_forward, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001395 offset = 0;
Joe Perchesc48192a2010-01-26 11:40:08 +00001396 offset += sprintf(buf + offset, "Mac: %pM", rulla->mac_addr);
1397 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001398 for (j = 0; j < ATM_ESA_LEN; j++) {
1399 offset += sprintf(buf + offset, "%2.2x ",
1400 rulla->atm_addr[j] & 0xff);
1401 }
1402 offset += sprintf(buf + offset,
1403 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1404 rulla->vcc ? rulla->vcc->vpi : 0,
1405 rulla->vcc ? rulla->vcc->vci : 0,
1406 rulla->recv_vcc ? rulla->recv_vcc->vpi : 0,
1407 rulla->recv_vcc ? rulla->recv_vcc->vci : 0,
1408 rulla->last_used,
1409 rulla->timestamp, rulla->no_tries);
1410 offset += sprintf(buf + offset,
1411 "Flags:%x, Packets_flooded:%x, Status: %s ",
1412 rulla->flags, rulla->packets_flooded,
1413 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001414 pr_info("%s\n", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001415 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001416
1417 if (!hlist_empty(&priv->lec_arp_empty_ones))
Joe Perchesc48192a2010-01-26 11:40:08 +00001418 pr_info("Empty ones\n");
Sasha Levinb67bfe02013-02-27 17:06:00 -08001419 hlist_for_each_entry(rulla, &priv->lec_arp_empty_ones, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001420 offset = 0;
Joe Perchesc48192a2010-01-26 11:40:08 +00001421 offset += sprintf(buf + offset, "Mac: %pM", rulla->mac_addr);
1422 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001423 for (j = 0; j < ATM_ESA_LEN; j++) {
1424 offset += sprintf(buf + offset, "%2.2x ",
1425 rulla->atm_addr[j] & 0xff);
1426 }
1427 offset += sprintf(buf + offset,
1428 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1429 rulla->vcc ? rulla->vcc->vpi : 0,
1430 rulla->vcc ? rulla->vcc->vci : 0,
1431 rulla->recv_vcc ? rulla->recv_vcc->vpi : 0,
1432 rulla->recv_vcc ? rulla->recv_vcc->vci : 0,
1433 rulla->last_used,
1434 rulla->timestamp, rulla->no_tries);
1435 offset += sprintf(buf + offset,
1436 "Flags:%x, Packets_flooded:%x, Status: %s ",
1437 rulla->flags, rulla->packets_flooded,
1438 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001439 pr_info("%s", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Chas Williamsd0732f62006-09-29 17:14:27 -07001442 if (!hlist_empty(&priv->mcast_fwds))
Joe Perchesc48192a2010-01-26 11:40:08 +00001443 pr_info("Multicast Forward VCCs\n");
Sasha Levinb67bfe02013-02-27 17:06:00 -08001444 hlist_for_each_entry(rulla, &priv->mcast_fwds, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001445 offset = 0;
Joe Perchesc48192a2010-01-26 11:40:08 +00001446 offset += sprintf(buf + offset, "Mac: %pM", rulla->mac_addr);
1447 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001448 for (j = 0; j < ATM_ESA_LEN; j++) {
1449 offset += sprintf(buf + offset, "%2.2x ",
1450 rulla->atm_addr[j] & 0xff);
1451 }
1452 offset += sprintf(buf + offset,
1453 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1454 rulla->vcc ? rulla->vcc->vpi : 0,
1455 rulla->vcc ? rulla->vcc->vci : 0,
1456 rulla->recv_vcc ? rulla->recv_vcc->vpi : 0,
1457 rulla->recv_vcc ? rulla->recv_vcc->vci : 0,
1458 rulla->last_used,
1459 rulla->timestamp, rulla->no_tries);
1460 offset += sprintf(buf + offset,
1461 "Flags:%x, Packets_flooded:%x, Status: %s ",
1462 rulla->flags, rulla->packets_flooded,
1463 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001464 pr_info("%s\n", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467}
Chas Williamsd0732f62006-09-29 17:14:27 -07001468#else
1469#define dump_arp_table(priv) do { } while (0)
1470#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
1472/*
1473 * Destruction of arp-cache
1474 */
Chas Williams1fa99612006-09-29 17:11:47 -07001475static void lec_arp_destroy(struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476{
1477 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001478 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07001479 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001480 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Tejun Heoafe2c512010-12-14 16:21:17 +01001482 cancel_delayed_work_sync(&priv->lec_arp_work);
Chas Williams1fa99612006-09-29 17:11:47 -07001483
1484 /*
1485 * Remove all entries
1486 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
1488 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001489 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001490 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001491 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001492 lec_arp_remove(priv, entry);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001493 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001494 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001495 INIT_HLIST_HEAD(&priv->lec_arp_tables[i]);
Chas Williams1fa99612006-09-29 17:11:47 -07001496 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001497
Sasha Levinb67bfe02013-02-27 17:06:00 -08001498 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001499 &priv->lec_arp_empty_ones, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001500 del_timer_sync(&entry->timer);
1501 lec_arp_clear_vccs(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001502 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001503 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001504 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001505 INIT_HLIST_HEAD(&priv->lec_arp_empty_ones);
1506
Sasha Levinb67bfe02013-02-27 17:06:00 -08001507 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001508 &priv->lec_no_forward, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001509 del_timer_sync(&entry->timer);
1510 lec_arp_clear_vccs(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001511 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001512 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001513 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001514 INIT_HLIST_HEAD(&priv->lec_no_forward);
1515
Sasha Levinb67bfe02013-02-27 17:06:00 -08001516 hlist_for_each_entry_safe(entry, next, &priv->mcast_fwds, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001517 /* No timer, LANEv2 7.1.20 and 2.3.5.3 */
1518 lec_arp_clear_vccs(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001519 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001520 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001521 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001522 INIT_HLIST_HEAD(&priv->mcast_fwds);
Chas Williams1fa99612006-09-29 17:11:47 -07001523 priv->mcast_vcc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1525}
1526
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001527/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 * Find entry by mac_address
1529 */
Chas Williams1fa99612006-09-29 17:11:47 -07001530static struct lec_arp_table *lec_arp_find(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001531 const unsigned char *mac_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532{
Chas Williamsd0732f62006-09-29 17:14:27 -07001533 struct hlist_head *head;
1534 struct lec_arp_table *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Joe Perches99824462010-01-26 11:40:00 +00001536 pr_debug("%pM\n", mac_addr);
Chas Williams1fa99612006-09-29 17:11:47 -07001537
Chas Williamsd0732f62006-09-29 17:14:27 -07001538 head = &priv->lec_arp_tables[HASH(mac_addr[ETH_ALEN - 1])];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001539 hlist_for_each_entry(entry, head, next) {
Joe Perches150238e2012-05-08 18:56:50 +00001540 if (ether_addr_equal(mac_addr, entry->mac_addr))
Chas Williamsd0732f62006-09-29 17:14:27 -07001541 return entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001542 }
1543 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544}
1545
Chas Williams1fa99612006-09-29 17:11:47 -07001546static struct lec_arp_table *make_entry(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001547 const unsigned char *mac_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
Chas Williams1fa99612006-09-29 17:11:47 -07001549 struct lec_arp_table *to_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Chas Williams1fa99612006-09-29 17:11:47 -07001551 to_return = kzalloc(sizeof(struct lec_arp_table), GFP_ATOMIC);
1552 if (!to_return) {
Joe Perchesc48192a2010-01-26 11:40:08 +00001553 pr_info("LEC: Arp entry kmalloc failed\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001554 return NULL;
1555 }
Joe Perches116e8532014-01-20 09:52:16 -08001556 ether_addr_copy(to_return->mac_addr, mac_addr);
Chas Williamsd0732f62006-09-29 17:14:27 -07001557 INIT_HLIST_NODE(&to_return->next);
Kees Cookba421792017-10-16 17:29:37 -07001558 timer_setup(&to_return->timer, lec_arp_expire_arp, 0);
Chas Williams1fa99612006-09-29 17:11:47 -07001559 to_return->last_used = jiffies;
1560 to_return->priv = priv;
1561 skb_queue_head_init(&to_return->tx_wait);
Reshetova, Elena78893662017-07-04 15:53:02 +03001562 refcount_set(&to_return->usage, 1);
Chas Williams1fa99612006-09-29 17:11:47 -07001563 return to_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564}
1565
Chas Williams1fa99612006-09-29 17:11:47 -07001566/* Arp sent timer expired */
Kees Cookba421792017-10-16 17:29:37 -07001567static void lec_arp_expire_arp(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568{
Chas Williams1fa99612006-09-29 17:11:47 -07001569 struct lec_arp_table *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Kees Cookba421792017-10-16 17:29:37 -07001571 entry = from_timer(entry, t, timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Joe Perches99824462010-01-26 11:40:00 +00001573 pr_debug("\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001574 if (entry->status == ESI_ARP_PENDING) {
1575 if (entry->no_tries <= entry->priv->max_retry_count) {
1576 if (entry->is_rdesc)
1577 send_to_lecd(entry->priv, l_rdesc_arp_xmt,
1578 entry->mac_addr, NULL, NULL);
1579 else
1580 send_to_lecd(entry->priv, l_arp_xmt,
1581 entry->mac_addr, NULL, NULL);
1582 entry->no_tries++;
1583 }
1584 mod_timer(&entry->timer, jiffies + (1 * HZ));
1585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586}
1587
Chas Williams1fa99612006-09-29 17:11:47 -07001588/* Unknown/unused vcc expire, remove associated entry */
Kees Cookba421792017-10-16 17:29:37 -07001589static void lec_arp_expire_vcc(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
1591 unsigned long flags;
Kees Cookba421792017-10-16 17:29:37 -07001592 struct lec_arp_table *to_remove = from_timer(to_remove, t, timer);
Joe Perchese3192692012-06-03 17:41:40 +00001593 struct lec_priv *priv = to_remove->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Chas Williams1fa99612006-09-29 17:11:47 -07001595 del_timer(&to_remove->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Joe Perches99824462010-01-26 11:40:00 +00001597 pr_debug("%p %p: vpi:%d vci:%d\n",
1598 to_remove, priv,
1599 to_remove->vcc ? to_remove->recv_vcc->vpi : 0,
1600 to_remove->vcc ? to_remove->recv_vcc->vci : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
1602 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd0732f62006-09-29 17:14:27 -07001603 hlist_del(&to_remove->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1605
Chas Williams1fa99612006-09-29 17:11:47 -07001606 lec_arp_clear_vccs(to_remove);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001607 lec_arp_put(to_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608}
1609
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001610static bool __lec_arp_check_expire(struct lec_arp_table *entry,
1611 unsigned long now,
1612 struct lec_priv *priv)
1613{
1614 unsigned long time_to_check;
1615
1616 if ((entry->flags) & LEC_REMOTE_FLAG && priv->topology_change)
1617 time_to_check = priv->forward_delay_time;
1618 else
1619 time_to_check = priv->aging_time;
1620
1621 pr_debug("About to expire: %lx - %lx > %lx\n",
1622 now, entry->last_used, time_to_check);
1623 if (time_after(now, entry->last_used + time_to_check) &&
1624 !(entry->flags & LEC_PERMANENT_FLAG) &&
1625 !(entry->mac_addr[0] & 0x01)) { /* LANE2: 7.1.20 */
1626 /* Remove entry */
1627 pr_debug("Entry timed out\n");
1628 lec_arp_remove(priv, entry);
1629 lec_arp_put(entry);
1630 } else {
1631 /* Something else */
1632 if ((entry->status == ESI_VC_PENDING ||
1633 entry->status == ESI_ARP_PENDING) &&
1634 time_after_eq(now, entry->timestamp +
1635 priv->max_unknown_frame_time)) {
1636 entry->timestamp = jiffies;
1637 entry->packets_flooded = 0;
1638 if (entry->status == ESI_VC_PENDING)
1639 send_to_lecd(priv, l_svc_setup,
1640 entry->mac_addr,
1641 entry->atm_addr,
1642 NULL);
1643 }
1644 if (entry->status == ESI_FLUSH_PENDING &&
1645 time_after_eq(now, entry->timestamp +
1646 priv->path_switching_delay)) {
1647 lec_arp_hold(entry);
1648 return true;
1649 }
1650 }
1651
1652 return false;
1653}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654/*
1655 * Expire entries.
1656 * 1. Re-set timer
1657 * 2. For each entry, delete entries that have aged past the age limit.
1658 * 3. For each entry, depending on the status of the entry, perform
1659 * the following maintenance.
1660 * a. If status is ESI_VC_PENDING or ESI_ARP_PENDING then if the
1661 * tick_count is above the max_unknown_frame_time, clear
1662 * the tick_count to zero and clear the packets_flooded counter
1663 * to zero. This supports the packet rate limit per address
1664 * while flooding unknowns.
1665 * b. If the status is ESI_FLUSH_PENDING and the tick_count is greater
1666 * than or equal to the path_switching_delay, change the status
1667 * to ESI_FORWARD_DIRECT. This causes the flush period to end
1668 * regardless of the progress of the flush protocol.
1669 */
David Howellsc4028952006-11-22 14:57:56 +00001670static void lec_arp_check_expire(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671{
1672 unsigned long flags;
David Howellsc4028952006-11-22 14:57:56 +00001673 struct lec_priv *priv =
1674 container_of(work, struct lec_priv, lec_arp_work.work);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001675 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07001676 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001677 unsigned long now;
Chas Williams1fa99612006-09-29 17:11:47 -07001678 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Joe Perches99824462010-01-26 11:40:00 +00001680 pr_debug("%p\n", priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 now = jiffies;
Chas Williams6656e3c2006-09-29 17:17:17 -07001682restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001684 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001685 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001686 &priv->lec_arp_tables[i], next) {
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001687 if (__lec_arp_check_expire(entry, now, priv)) {
1688 struct sk_buff *skb;
1689 struct atm_vcc *vcc = entry->vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001691 spin_unlock_irqrestore(&priv->lec_arp_lock,
1692 flags);
1693 while ((skb = skb_dequeue(&entry->tx_wait)))
1694 lec_send(vcc, skb);
1695 entry->last_used = jiffies;
1696 entry->status = ESI_FORWARD_DIRECT;
Chas Williams33a9c2d2006-09-29 17:16:48 -07001697 lec_arp_put(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001699 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 }
1701 }
1702 }
1703 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1704
Chas Williams987e46b2006-09-29 17:15:59 -07001705 schedule_delayed_work(&priv->lec_arp_work, LEC_ARP_REFRESH_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706}
Chas Williams1fa99612006-09-29 17:11:47 -07001707
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708/*
1709 * Try to find vcc where mac_address is attached.
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001710 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 */
Chas Williams1fa99612006-09-29 17:11:47 -07001712static struct atm_vcc *lec_arp_resolve(struct lec_priv *priv,
Joe Perchesc48192a2010-01-26 11:40:08 +00001713 const unsigned char *mac_to_find,
1714 int is_rdesc,
Chas Williams1fa99612006-09-29 17:11:47 -07001715 struct lec_arp_table **ret_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716{
1717 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07001718 struct lec_arp_table *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 struct atm_vcc *found;
1720
Chas Williams1fa99612006-09-29 17:11:47 -07001721 if (mac_to_find[0] & 0x01) {
1722 switch (priv->lane_version) {
1723 case 1:
1724 return priv->mcast_vcc;
Chas Williams1fa99612006-09-29 17:11:47 -07001725 case 2: /* LANE2 wants arp for multicast addresses */
Joe Perches150238e2012-05-08 18:56:50 +00001726 if (ether_addr_equal(mac_to_find, bus_mac))
Chas Williams1fa99612006-09-29 17:11:47 -07001727 return priv->mcast_vcc;
1728 break;
1729 default:
1730 break;
1731 }
1732 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
1734 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001735 entry = lec_arp_find(priv, mac_to_find);
1736
1737 if (entry) {
1738 if (entry->status == ESI_FORWARD_DIRECT) {
1739 /* Connection Ok */
1740 entry->last_used = jiffies;
Chas Williams6656e3c2006-09-29 17:17:17 -07001741 lec_arp_hold(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001742 *ret_entry = entry;
1743 found = entry->vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001745 }
1746 /*
1747 * If the LE_ARP cache entry is still pending, reset count to 0
Scott Talbert75b895c2005-09-29 17:31:30 -07001748 * so another LE_ARP request can be made for this frame.
1749 */
Joe Perchesc48192a2010-01-26 11:40:08 +00001750 if (entry->status == ESI_ARP_PENDING)
Scott Talbert75b895c2005-09-29 17:31:30 -07001751 entry->no_tries = 0;
Chas Williams1fa99612006-09-29 17:11:47 -07001752 /*
1753 * Data direct VC not yet set up, check to see if the unknown
1754 * frame count is greater than the limit. If the limit has
1755 * not been reached, allow the caller to send packet to
1756 * BUS.
1757 */
1758 if (entry->status != ESI_FLUSH_PENDING &&
1759 entry->packets_flooded <
1760 priv->maximum_unknown_frame_count) {
1761 entry->packets_flooded++;
Joe Perches99824462010-01-26 11:40:00 +00001762 pr_debug("Flooding..\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001763 found = priv->mcast_vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001765 }
1766 /*
1767 * We got here because entry->status == ESI_FLUSH_PENDING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 * or BUS flood limit was reached for an entry which is
1769 * in ESI_ARP_PENDING or ESI_VC_PENDING state.
1770 */
Chas Williams6656e3c2006-09-29 17:17:17 -07001771 lec_arp_hold(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001772 *ret_entry = entry;
Joe Perches99824462010-01-26 11:40:00 +00001773 pr_debug("entry->status %d entry->vcc %p\n", entry->status,
1774 entry->vcc);
Chas Williams1fa99612006-09-29 17:11:47 -07001775 found = NULL;
1776 } else {
1777 /* No matching entry was found */
1778 entry = make_entry(priv, mac_to_find);
Joe Perches99824462010-01-26 11:40:00 +00001779 pr_debug("Making entry\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001780 if (!entry) {
1781 found = priv->mcast_vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001783 }
1784 lec_arp_add(priv, entry);
1785 /* We want arp-request(s) to be sent */
1786 entry->packets_flooded = 1;
1787 entry->status = ESI_ARP_PENDING;
1788 entry->no_tries = 1;
1789 entry->last_used = entry->timestamp = jiffies;
1790 entry->is_rdesc = is_rdesc;
1791 if (entry->is_rdesc)
1792 send_to_lecd(priv, l_rdesc_arp_xmt, mac_to_find, NULL,
1793 NULL);
1794 else
1795 send_to_lecd(priv, l_arp_xmt, mac_to_find, NULL, NULL);
1796 entry->timer.expires = jiffies + (1 * HZ);
Kees Cook841b86f2017-10-23 09:40:42 +02001797 entry->timer.function = lec_arp_expire_arp;
Chas Williams1fa99612006-09-29 17:11:47 -07001798 add_timer(&entry->timer);
1799 found = priv->mcast_vcc;
1800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802out:
1803 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1804 return found;
1805}
1806
1807static int
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001808lec_addr_delete(struct lec_priv *priv, const unsigned char *atm_addr,
Chas Williams1fa99612006-09-29 17:11:47 -07001809 unsigned long permanent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810{
1811 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001812 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07001813 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001814 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Joe Perches99824462010-01-26 11:40:00 +00001816 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001818 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001819 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001820 &priv->lec_arp_tables[i], next) {
1821 if (!memcmp(atm_addr, entry->atm_addr, ATM_ESA_LEN) &&
1822 (permanent ||
1823 !(entry->flags & LEC_PERMANENT_FLAG))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 lec_arp_remove(priv, entry);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001825 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001826 }
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 0;
1829 }
1830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001832 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833}
1834
1835/*
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001836 * Notifies: Response to arp_request (atm_addr != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 */
1838static void
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001839lec_arp_update(struct lec_priv *priv, const unsigned char *mac_addr,
1840 const unsigned char *atm_addr, unsigned long remoteflag,
Chas Williams1fa99612006-09-29 17:11:47 -07001841 unsigned int targetless_le_arp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842{
1843 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001844 struct hlist_node *next;
Chas Williams1fa99612006-09-29 17:11:47 -07001845 struct lec_arp_table *entry, *tmp;
1846 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Joe Perches99824462010-01-26 11:40:00 +00001848 pr_debug("%smac:%pM\n",
1849 (targetless_le_arp) ? "targetless " : "", mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
1851 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001852 entry = lec_arp_find(priv, mac_addr);
1853 if (entry == NULL && targetless_le_arp)
1854 goto out; /*
1855 * LANE2: ignore targetless LE_ARPs for which
1856 * we have no entry in the cache. 7.1.30
1857 */
Chas Williamsd0732f62006-09-29 17:14:27 -07001858 if (!hlist_empty(&priv->lec_arp_empty_ones)) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001859 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001860 &priv->lec_arp_empty_ones, next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001861 if (memcmp(entry->atm_addr, atm_addr, ATM_ESA_LEN) == 0) {
1862 hlist_del(&entry->next);
Chas Williams1fa99612006-09-29 17:11:47 -07001863 del_timer(&entry->timer);
Chas Williamsd0732f62006-09-29 17:14:27 -07001864 tmp = lec_arp_find(priv, mac_addr);
1865 if (tmp) {
1866 del_timer(&tmp->timer);
1867 tmp->status = ESI_FORWARD_DIRECT;
1868 memcpy(tmp->atm_addr, atm_addr, ATM_ESA_LEN);
1869 tmp->vcc = entry->vcc;
1870 tmp->old_push = entry->old_push;
1871 tmp->last_used = jiffies;
1872 del_timer(&entry->timer);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001873 lec_arp_put(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001874 entry = tmp;
1875 } else {
1876 entry->status = ESI_FORWARD_DIRECT;
Joe Perches116e8532014-01-20 09:52:16 -08001877 ether_addr_copy(entry->mac_addr,
1878 mac_addr);
Chas Williamsd0732f62006-09-29 17:14:27 -07001879 entry->last_used = jiffies;
1880 lec_arp_add(priv, entry);
1881 }
1882 if (remoteflag)
1883 entry->flags |= LEC_REMOTE_FLAG;
1884 else
1885 entry->flags &= ~LEC_REMOTE_FLAG;
Stephen Hemminger52240062007-08-28 15:22:09 -07001886 pr_debug("After update\n");
Chas Williamsd0732f62006-09-29 17:14:27 -07001887 dump_arp_table(priv);
1888 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001889 }
Chas Williams1fa99612006-09-29 17:11:47 -07001890 }
1891 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001892
Chas Williams1fa99612006-09-29 17:11:47 -07001893 entry = lec_arp_find(priv, mac_addr);
1894 if (!entry) {
1895 entry = make_entry(priv, mac_addr);
1896 if (!entry)
1897 goto out;
1898 entry->status = ESI_UNKNOWN;
1899 lec_arp_add(priv, entry);
1900 /* Temporary, changes before end of function */
1901 }
1902 memcpy(entry->atm_addr, atm_addr, ATM_ESA_LEN);
1903 del_timer(&entry->timer);
1904 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001905 hlist_for_each_entry(tmp,
Joe Perchesc48192a2010-01-26 11:40:08 +00001906 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001907 if (entry != tmp &&
1908 !memcmp(tmp->atm_addr, atm_addr, ATM_ESA_LEN)) {
1909 /* Vcc to this host exists */
1910 if (tmp->status > ESI_VC_PENDING) {
1911 /*
1912 * ESI_FLUSH_PENDING,
1913 * ESI_FORWARD_DIRECT
1914 */
1915 entry->vcc = tmp->vcc;
1916 entry->old_push = tmp->old_push;
1917 }
1918 entry->status = tmp->status;
1919 break;
1920 }
1921 }
1922 }
1923 if (remoteflag)
1924 entry->flags |= LEC_REMOTE_FLAG;
1925 else
1926 entry->flags &= ~LEC_REMOTE_FLAG;
1927 if (entry->status == ESI_ARP_PENDING || entry->status == ESI_UNKNOWN) {
1928 entry->status = ESI_VC_PENDING;
Chas Williamsd0732f62006-09-29 17:14:27 -07001929 send_to_lecd(priv, l_svc_setup, entry->mac_addr, atm_addr, NULL);
Chas Williams1fa99612006-09-29 17:11:47 -07001930 }
Stephen Hemminger52240062007-08-28 15:22:09 -07001931 pr_debug("After update2\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001932 dump_arp_table(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933out:
1934 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1935}
1936
1937/*
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001938 * Notifies: Vcc setup ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 */
1940static void
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001941lec_vcc_added(struct lec_priv *priv, const struct atmlec_ioc *ioc_data,
Chas Williams1fa99612006-09-29 17:11:47 -07001942 struct atm_vcc *vcc,
1943 void (*old_push) (struct atm_vcc *vcc, struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944{
1945 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07001946 struct lec_arp_table *entry;
1947 int i, found_entry = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
1949 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Joe Perchesc48192a2010-01-26 11:40:08 +00001950 /* Vcc for Multicast Forward. No timer, LANEv2 7.1.20 and 2.3.5.3 */
Chas Williams1fa99612006-09-29 17:11:47 -07001951 if (ioc_data->receive == 2) {
Stephen Hemminger52240062007-08-28 15:22:09 -07001952 pr_debug("LEC_ARP: Attaching mcast forward\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953#if 0
Chas Williams1fa99612006-09-29 17:11:47 -07001954 entry = lec_arp_find(priv, bus_mac);
1955 if (!entry) {
Joe Perchesc48192a2010-01-26 11:40:08 +00001956 pr_info("LEC_ARP: Multicast entry not found!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001958 }
1959 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
1960 entry->recv_vcc = vcc;
1961 entry->old_recv_push = old_push;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962#endif
Chas Williams1fa99612006-09-29 17:11:47 -07001963 entry = make_entry(priv, bus_mac);
1964 if (entry == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001966 del_timer(&entry->timer);
1967 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
1968 entry->recv_vcc = vcc;
1969 entry->old_recv_push = old_push;
Chas Williamsd0732f62006-09-29 17:14:27 -07001970 hlist_add_head(&entry->next, &priv->mcast_fwds);
Chas Williams1fa99612006-09-29 17:11:47 -07001971 goto out;
1972 } else if (ioc_data->receive == 1) {
1973 /*
1974 * Vcc which we don't want to make default vcc,
1975 * attach it anyway.
1976 */
Joe Perches99824462010-01-26 11:40:00 +00001977 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",
1978 ioc_data->atm_addr[0], ioc_data->atm_addr[1],
1979 ioc_data->atm_addr[2], ioc_data->atm_addr[3],
1980 ioc_data->atm_addr[4], ioc_data->atm_addr[5],
1981 ioc_data->atm_addr[6], ioc_data->atm_addr[7],
1982 ioc_data->atm_addr[8], ioc_data->atm_addr[9],
1983 ioc_data->atm_addr[10], ioc_data->atm_addr[11],
1984 ioc_data->atm_addr[12], ioc_data->atm_addr[13],
1985 ioc_data->atm_addr[14], ioc_data->atm_addr[15],
1986 ioc_data->atm_addr[16], ioc_data->atm_addr[17],
1987 ioc_data->atm_addr[18], ioc_data->atm_addr[19]);
Chas Williams1fa99612006-09-29 17:11:47 -07001988 entry = make_entry(priv, bus_mac);
1989 if (entry == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001991 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
Joe Perches19ffa562015-03-02 19:54:54 -08001992 eth_zero_addr(entry->mac_addr);
Chas Williams1fa99612006-09-29 17:11:47 -07001993 entry->recv_vcc = vcc;
1994 entry->old_recv_push = old_push;
1995 entry->status = ESI_UNKNOWN;
1996 entry->timer.expires = jiffies + priv->vcc_timeout_period;
Kees Cook841b86f2017-10-23 09:40:42 +02001997 entry->timer.function = lec_arp_expire_vcc;
Chas Williamsd0732f62006-09-29 17:14:27 -07001998 hlist_add_head(&entry->next, &priv->lec_no_forward);
Chas Williams1fa99612006-09-29 17:11:47 -07001999 add_timer(&entry->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 dump_arp_table(priv);
2001 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002002 }
Joe Perches99824462010-01-26 11:40:00 +00002003 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",
2004 ioc_data->atm_addr[0], ioc_data->atm_addr[1],
2005 ioc_data->atm_addr[2], ioc_data->atm_addr[3],
2006 ioc_data->atm_addr[4], ioc_data->atm_addr[5],
2007 ioc_data->atm_addr[6], ioc_data->atm_addr[7],
2008 ioc_data->atm_addr[8], ioc_data->atm_addr[9],
2009 ioc_data->atm_addr[10], ioc_data->atm_addr[11],
2010 ioc_data->atm_addr[12], ioc_data->atm_addr[13],
2011 ioc_data->atm_addr[14], ioc_data->atm_addr[15],
2012 ioc_data->atm_addr[16], ioc_data->atm_addr[17],
2013 ioc_data->atm_addr[18], ioc_data->atm_addr[19]);
Chas Williams1fa99612006-09-29 17:11:47 -07002014 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08002015 hlist_for_each_entry(entry,
Joe Perchesc48192a2010-01-26 11:40:08 +00002016 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002017 if (memcmp
2018 (ioc_data->atm_addr, entry->atm_addr,
2019 ATM_ESA_LEN) == 0) {
Stephen Hemminger52240062007-08-28 15:22:09 -07002020 pr_debug("LEC_ARP: Attaching data direct\n");
2021 pr_debug("Currently -> Vcc: %d, Rvcc:%d\n",
Joe Perches99824462010-01-26 11:40:00 +00002022 entry->vcc ? entry->vcc->vci : 0,
2023 entry->recv_vcc ? entry->recv_vcc->
2024 vci : 0);
Chas Williams1fa99612006-09-29 17:11:47 -07002025 found_entry = 1;
2026 del_timer(&entry->timer);
2027 entry->vcc = vcc;
2028 entry->old_push = old_push;
2029 if (entry->status == ESI_VC_PENDING) {
2030 if (priv->maximum_unknown_frame_count
2031 == 0)
2032 entry->status =
2033 ESI_FORWARD_DIRECT;
2034 else {
2035 entry->timestamp = jiffies;
2036 entry->status =
2037 ESI_FLUSH_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038#if 0
Chas Williams1fa99612006-09-29 17:11:47 -07002039 send_to_lecd(priv, l_flush_xmt,
2040 NULL,
2041 entry->atm_addr,
2042 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043#endif
Chas Williams1fa99612006-09-29 17:11:47 -07002044 }
2045 } else {
2046 /*
2047 * They were forming a connection
2048 * to us, and we to them. Our
2049 * ATM address is numerically lower
2050 * than theirs, so we make connection
2051 * we formed into default VCC (8.1.11).
2052 * Connection they made gets torn
2053 * down. This might confuse some
2054 * clients. Can be changed if
2055 * someone reports trouble...
2056 */
2057 ;
2058 }
2059 }
2060 }
2061 }
2062 if (found_entry) {
Stephen Hemminger52240062007-08-28 15:22:09 -07002063 pr_debug("After vcc was added\n");
Chas Williams1fa99612006-09-29 17:11:47 -07002064 dump_arp_table(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002066 }
2067 /*
2068 * Not found, snatch address from first data packet that arrives
2069 * from this vcc
2070 */
2071 entry = make_entry(priv, bus_mac);
2072 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002074 entry->vcc = vcc;
2075 entry->old_push = old_push;
2076 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
Joe Perches19ffa562015-03-02 19:54:54 -08002077 eth_zero_addr(entry->mac_addr);
Chas Williams1fa99612006-09-29 17:11:47 -07002078 entry->status = ESI_UNKNOWN;
Chas Williamsd0732f62006-09-29 17:14:27 -07002079 hlist_add_head(&entry->next, &priv->lec_arp_empty_ones);
Chas Williams1fa99612006-09-29 17:11:47 -07002080 entry->timer.expires = jiffies + priv->vcc_timeout_period;
Kees Cook841b86f2017-10-23 09:40:42 +02002081 entry->timer.function = lec_arp_expire_vcc;
Chas Williams1fa99612006-09-29 17:11:47 -07002082 add_timer(&entry->timer);
Stephen Hemminger52240062007-08-28 15:22:09 -07002083 pr_debug("After vcc was added\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 dump_arp_table(priv);
2085out:
2086 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2087}
2088
Chas Williams1fa99612006-09-29 17:11:47 -07002089static void lec_flush_complete(struct lec_priv *priv, unsigned long tran_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090{
2091 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07002092 struct lec_arp_table *entry;
2093 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Joe Perches99824462010-01-26 11:40:00 +00002095 pr_debug("%lx\n", tran_id);
Chas Williams6656e3c2006-09-29 17:17:17 -07002096restart:
Chas Williams1fa99612006-09-29 17:11:47 -07002097 spin_lock_irqsave(&priv->lec_arp_lock, flags);
2098 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08002099 hlist_for_each_entry(entry,
Joe Perchesc48192a2010-01-26 11:40:08 +00002100 &priv->lec_arp_tables[i], next) {
2101 if (entry->flush_tran_id == tran_id &&
2102 entry->status == ESI_FLUSH_PENDING) {
Chas Williams1fa99612006-09-29 17:11:47 -07002103 struct sk_buff *skb;
Chas Williams6656e3c2006-09-29 17:17:17 -07002104 struct atm_vcc *vcc = entry->vcc;
Chas Williams1fa99612006-09-29 17:11:47 -07002105
Chas Williams6656e3c2006-09-29 17:17:17 -07002106 lec_arp_hold(entry);
Joe Perchesc48192a2010-01-26 11:40:08 +00002107 spin_unlock_irqrestore(&priv->lec_arp_lock,
2108 flags);
Joe Perchesb4c84ec2010-01-26 11:40:19 +00002109 while ((skb = skb_dequeue(&entry->tx_wait)))
Stephen Hemminger162619e2009-01-09 13:01:01 +00002110 lec_send(vcc, skb);
Chas Williams6656e3c2006-09-29 17:17:17 -07002111 entry->last_used = jiffies;
Chas Williams1fa99612006-09-29 17:11:47 -07002112 entry->status = ESI_FORWARD_DIRECT;
Chas Williams6656e3c2006-09-29 17:17:17 -07002113 lec_arp_put(entry);
Stephen Hemminger52240062007-08-28 15:22:09 -07002114 pr_debug("LEC_ARP: Flushed\n");
Chas Williams6656e3c2006-09-29 17:17:17 -07002115 goto restart;
Chas Williams1fa99612006-09-29 17:11:47 -07002116 }
2117 }
2118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002120 dump_arp_table(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121}
2122
2123static void
2124lec_set_flush_tran_id(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07002125 const unsigned char *atm_addr, unsigned long tran_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126{
2127 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07002128 struct lec_arp_table *entry;
2129 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
2131 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002132 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++)
Sasha Levinb67bfe02013-02-27 17:06:00 -08002133 hlist_for_each_entry(entry,
Joe Perchesc48192a2010-01-26 11:40:08 +00002134 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002135 if (!memcmp(atm_addr, entry->atm_addr, ATM_ESA_LEN)) {
2136 entry->flush_tran_id = tran_id;
Stephen Hemminger52240062007-08-28 15:22:09 -07002137 pr_debug("Set flush transaction id to %lx for %p\n",
Joe Perches99824462010-01-26 11:40:00 +00002138 tran_id, entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002139 }
Chas Williamsd0732f62006-09-29 17:14:27 -07002140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2142}
2143
Chas Williams1fa99612006-09-29 17:11:47 -07002144static int lec_mcast_make(struct lec_priv *priv, struct atm_vcc *vcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145{
2146 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07002147 unsigned char mac_addr[] = {
2148 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
2149 };
2150 struct lec_arp_table *to_add;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 struct lec_vcc_priv *vpriv;
2152 int err = 0;
Chas Williams1fa99612006-09-29 17:11:47 -07002153
Joe Perchesc48192a2010-01-26 11:40:08 +00002154 vpriv = kmalloc(sizeof(struct lec_vcc_priv), GFP_KERNEL);
2155 if (!vpriv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 return -ENOMEM;
2157 vpriv->xoff = 0;
2158 vpriv->old_pop = vcc->pop;
2159 vcc->user_back = vpriv;
Chas Williams1fa99612006-09-29 17:11:47 -07002160 vcc->pop = lec_pop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002162 to_add = make_entry(priv, mac_addr);
2163 if (!to_add) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 vcc->pop = vpriv->old_pop;
2165 kfree(vpriv);
Chas Williams1fa99612006-09-29 17:11:47 -07002166 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002168 }
2169 memcpy(to_add->atm_addr, vcc->remote.sas_addr.prv, ATM_ESA_LEN);
2170 to_add->status = ESI_FORWARD_DIRECT;
2171 to_add->flags |= LEC_PERMANENT_FLAG;
2172 to_add->vcc = vcc;
2173 to_add->old_push = vcc->push;
2174 vcc->push = lec_push;
2175 priv->mcast_vcc = vcc;
2176 lec_arp_add(priv, to_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177out:
2178 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002179 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180}
2181
Chas Williams1fa99612006-09-29 17:11:47 -07002182static void lec_vcc_close(struct lec_priv *priv, struct atm_vcc *vcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183{
2184 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002185 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07002186 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07002187 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
Stephen Hemminger52240062007-08-28 15:22:09 -07002189 pr_debug("LEC_ARP: lec_vcc_close vpi:%d vci:%d\n", vcc->vpi, vcc->vci);
Chas Williams1fa99612006-09-29 17:11:47 -07002190 dump_arp_table(priv);
Chas Williamsd0732f62006-09-29 17:14:27 -07002191
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd0732f62006-09-29 17:14:27 -07002193
Chas Williams1fa99612006-09-29 17:11:47 -07002194 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08002195 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00002196 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002197 if (vcc == entry->vcc) {
2198 lec_arp_remove(priv, entry);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002199 lec_arp_put(entry);
Joe Perchesc48192a2010-01-26 11:40:08 +00002200 if (priv->mcast_vcc == vcc)
Chas Williams1fa99612006-09-29 17:11:47 -07002201 priv->mcast_vcc = NULL;
Chas Williams1fa99612006-09-29 17:11:47 -07002202 }
2203 }
2204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Sasha Levinb67bfe02013-02-27 17:06:00 -08002206 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00002207 &priv->lec_arp_empty_ones, next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002208 if (entry->vcc == vcc) {
Chas Williams1fa99612006-09-29 17:11:47 -07002209 lec_arp_clear_vccs(entry);
2210 del_timer(&entry->timer);
Chas Williamsd0732f62006-09-29 17:14:27 -07002211 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002212 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002213 }
Chas Williams1fa99612006-09-29 17:11:47 -07002214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Sasha Levinb67bfe02013-02-27 17:06:00 -08002216 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00002217 &priv->lec_no_forward, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002218 if (entry->recv_vcc == vcc) {
2219 lec_arp_clear_vccs(entry);
2220 del_timer(&entry->timer);
Chas Williamsd0732f62006-09-29 17:14:27 -07002221 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002222 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002223 }
Chas Williams1fa99612006-09-29 17:11:47 -07002224 }
2225
Sasha Levinb67bfe02013-02-27 17:06:00 -08002226 hlist_for_each_entry_safe(entry, next, &priv->mcast_fwds, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002227 if (entry->recv_vcc == vcc) {
2228 lec_arp_clear_vccs(entry);
2229 /* No timer, LANEv2 7.1.20 and 2.3.5.3 */
Chas Williamsd0732f62006-09-29 17:14:27 -07002230 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002231 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002232 }
Chas Williams1fa99612006-09-29 17:11:47 -07002233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
2235 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2236 dump_arp_table(priv);
2237}
2238
2239static void
2240lec_arp_check_empties(struct lec_priv *priv,
Chas Williams1fa99612006-09-29 17:11:47 -07002241 struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242{
Chas Williams1fa99612006-09-29 17:11:47 -07002243 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002244 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07002245 struct lec_arp_table *entry, *tmp;
Chas Williams1fa99612006-09-29 17:11:47 -07002246 struct lecdatahdr_8023 *hdr = (struct lecdatahdr_8023 *)skb->data;
Paul Gortmaker60eea6c2012-05-10 16:17:00 -04002247 unsigned char *src = hdr->h_source;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
2249 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Sasha Levinb67bfe02013-02-27 17:06:00 -08002250 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00002251 &priv->lec_arp_empty_ones, next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002252 if (vcc == entry->vcc) {
2253 del_timer(&entry->timer);
Joe Perches116e8532014-01-20 09:52:16 -08002254 ether_addr_copy(entry->mac_addr, src);
Chas Williamsd0732f62006-09-29 17:14:27 -07002255 entry->status = ESI_FORWARD_DIRECT;
2256 entry->last_used = jiffies;
2257 /* We might have got an entry */
Joe Perchesc48192a2010-01-26 11:40:08 +00002258 tmp = lec_arp_find(priv, src);
2259 if (tmp) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002260 lec_arp_remove(priv, tmp);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002261 lec_arp_put(tmp);
Chas Williamsd0732f62006-09-29 17:14:27 -07002262 }
2263 hlist_del(&entry->next);
2264 lec_arp_add(priv, entry);
2265 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002266 }
Chas Williams1fa99612006-09-29 17:11:47 -07002267 }
Stephen Hemminger52240062007-08-28 15:22:09 -07002268 pr_debug("LEC_ARP: Arp_check_empties: entry not found!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269out:
2270 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2271}
Chas Williams1fa99612006-09-29 17:11:47 -07002272
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273MODULE_LICENSE("GPL");