blob: 5a6186b809874ecaa0f2239019292dc7abdde5c0 [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. Silvabcb96402019-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. Silvabcb96402019-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) {
Cong Wang68dc33f2020-05-01 11:11:09 -07001273 struct atm_vcc *vcc = entry->recv_vcc;
1274 struct lec_vcc_priv *vpriv = LEC_VCC_PRIV(vcc);
1275
1276 kfree(vpriv);
1277 vcc->user_back = NULL;
1278
Chas Williams1fa99612006-09-29 17:11:47 -07001279 entry->recv_vcc->push = entry->old_recv_push;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 vcc_release_async(entry->recv_vcc, -EPIPE);
Chas Williams1fa99612006-09-29 17:11:47 -07001281 entry->recv_vcc = NULL;
1282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283}
1284
1285/*
1286 * Insert entry to lec_arp_table
1287 * LANE2: Add to the end of the list to satisfy 8.1.13
1288 */
Chas Williams1fa99612006-09-29 17:11:47 -07001289static inline void
Chas Williamsd0732f62006-09-29 17:14:27 -07001290lec_arp_add(struct lec_priv *priv, struct lec_arp_table *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291{
Chas Williamsd0732f62006-09-29 17:14:27 -07001292 struct hlist_head *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Chas Williamsd0732f62006-09-29 17:14:27 -07001294 tmp = &priv->lec_arp_tables[HASH(entry->mac_addr[ETH_ALEN - 1])];
1295 hlist_add_head(&entry->next, tmp);
Chas Williams1fa99612006-09-29 17:11:47 -07001296
Joe Perches99824462010-01-26 11:40:00 +00001297 pr_debug("Added entry:%pM\n", entry->mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298}
1299
1300/*
1301 * Remove entry from lec_arp_table
1302 */
Chas Williams1fa99612006-09-29 17:11:47 -07001303static int
1304lec_arp_remove(struct lec_priv *priv, struct lec_arp_table *to_remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
Chas Williamsd0732f62006-09-29 17:14:27 -07001306 struct lec_arp_table *entry;
1307 int i, remove_vcc = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Joe Perchesc48192a2010-01-26 11:40:08 +00001309 if (!to_remove)
Chas Williams1fa99612006-09-29 17:11:47 -07001310 return -1;
Chas Williamsd0732f62006-09-29 17:14:27 -07001311
1312 hlist_del(&to_remove->next);
Chas Williams1fa99612006-09-29 17:11:47 -07001313 del_timer(&to_remove->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Joe Perchesc48192a2010-01-26 11:40:08 +00001315 /*
1316 * If this is the only MAC connected to this VCC,
1317 * also tear down the VCC
1318 */
Chas Williams1fa99612006-09-29 17:11:47 -07001319 if (to_remove->status >= ESI_FLUSH_PENDING) {
1320 /*
1321 * ESI_FLUSH_PENDING, ESI_FORWARD_DIRECT
1322 */
Chas Williamsd0732f62006-09-29 17:14:27 -07001323 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001324 hlist_for_each_entry(entry,
Joe Perchesc48192a2010-01-26 11:40:08 +00001325 &priv->lec_arp_tables[i], next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001326 if (memcmp(to_remove->atm_addr,
1327 entry->atm_addr, ATM_ESA_LEN) == 0) {
Chas Williams1fa99612006-09-29 17:11:47 -07001328 remove_vcc = 0;
1329 break;
1330 }
1331 }
1332 }
1333 if (remove_vcc)
1334 lec_arp_clear_vccs(to_remove);
1335 }
1336 skb_queue_purge(&to_remove->tx_wait); /* FIXME: good place for this? */
1337
Joe Perches99824462010-01-26 11:40:00 +00001338 pr_debug("Removed entry:%pM\n", to_remove->mac_addr);
Chas Williams1fa99612006-09-29 17:11:47 -07001339 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340}
1341
1342#if DEBUG_ARP_TABLE
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -07001343static const char *get_status_string(unsigned char st)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344{
Chas Williams1fa99612006-09-29 17:11:47 -07001345 switch (st) {
1346 case ESI_UNKNOWN:
1347 return "ESI_UNKNOWN";
1348 case ESI_ARP_PENDING:
1349 return "ESI_ARP_PENDING";
1350 case ESI_VC_PENDING:
1351 return "ESI_VC_PENDING";
1352 case ESI_FLUSH_PENDING:
1353 return "ESI_FLUSH_PENDING";
1354 case ESI_FORWARD_DIRECT:
1355 return "ESI_FORWARD_DIRECT";
Chas Williams1fa99612006-09-29 17:11:47 -07001356 }
Joe Perchesc48192a2010-01-26 11:40:08 +00001357 return "<UNKNOWN>";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Chas Williams1fa99612006-09-29 17:11:47 -07001360static void dump_arp_table(struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361{
Chas Williams1fa99612006-09-29 17:11:47 -07001362 struct lec_arp_table *rulla;
Chas Williamsd0732f62006-09-29 17:14:27 -07001363 char buf[256];
1364 int i, j, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Joe Perchesc48192a2010-01-26 11:40:08 +00001366 pr_info("Dump %p:\n", priv);
Chas Williams1fa99612006-09-29 17:11:47 -07001367 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001368 hlist_for_each_entry(rulla,
Joe Perchesc48192a2010-01-26 11:40:08 +00001369 &priv->lec_arp_tables[i], next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001370 offset = 0;
1371 offset += sprintf(buf, "%d: %p\n", i, rulla);
Joe Perchesc48192a2010-01-26 11:40:08 +00001372 offset += sprintf(buf + offset, "Mac: %pM",
1373 rulla->mac_addr);
1374 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001375 for (j = 0; j < ATM_ESA_LEN; j++) {
1376 offset += sprintf(buf + offset,
1377 "%2.2x ",
1378 rulla->atm_addr[j] & 0xff);
1379 }
1380 offset += sprintf(buf + offset,
1381 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1382 rulla->vcc ? rulla->vcc->vpi : 0,
1383 rulla->vcc ? rulla->vcc->vci : 0,
1384 rulla->recv_vcc ? rulla->recv_vcc->
1385 vpi : 0,
1386 rulla->recv_vcc ? rulla->recv_vcc->
1387 vci : 0, rulla->last_used,
1388 rulla->timestamp, rulla->no_tries);
1389 offset +=
1390 sprintf(buf + offset,
1391 "Flags:%x, Packets_flooded:%x, Status: %s ",
1392 rulla->flags, rulla->packets_flooded,
1393 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001394 pr_info("%s\n", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001395 }
Chas Williams1fa99612006-09-29 17:11:47 -07001396 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001397
1398 if (!hlist_empty(&priv->lec_no_forward))
Joe Perchesc48192a2010-01-26 11:40:08 +00001399 pr_info("No forward\n");
Sasha Levinb67bfe02013-02-27 17:06:00 -08001400 hlist_for_each_entry(rulla, &priv->lec_no_forward, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001401 offset = 0;
Joe Perchesc48192a2010-01-26 11:40:08 +00001402 offset += sprintf(buf + offset, "Mac: %pM", rulla->mac_addr);
1403 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001404 for (j = 0; j < ATM_ESA_LEN; j++) {
1405 offset += sprintf(buf + offset, "%2.2x ",
1406 rulla->atm_addr[j] & 0xff);
1407 }
1408 offset += sprintf(buf + offset,
1409 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1410 rulla->vcc ? rulla->vcc->vpi : 0,
1411 rulla->vcc ? rulla->vcc->vci : 0,
1412 rulla->recv_vcc ? rulla->recv_vcc->vpi : 0,
1413 rulla->recv_vcc ? rulla->recv_vcc->vci : 0,
1414 rulla->last_used,
1415 rulla->timestamp, rulla->no_tries);
1416 offset += sprintf(buf + offset,
1417 "Flags:%x, Packets_flooded:%x, Status: %s ",
1418 rulla->flags, rulla->packets_flooded,
1419 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001420 pr_info("%s\n", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001421 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001422
1423 if (!hlist_empty(&priv->lec_arp_empty_ones))
Joe Perchesc48192a2010-01-26 11:40:08 +00001424 pr_info("Empty ones\n");
Sasha Levinb67bfe02013-02-27 17:06:00 -08001425 hlist_for_each_entry(rulla, &priv->lec_arp_empty_ones, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001426 offset = 0;
Joe Perchesc48192a2010-01-26 11:40:08 +00001427 offset += sprintf(buf + offset, "Mac: %pM", rulla->mac_addr);
1428 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001429 for (j = 0; j < ATM_ESA_LEN; j++) {
1430 offset += sprintf(buf + offset, "%2.2x ",
1431 rulla->atm_addr[j] & 0xff);
1432 }
1433 offset += sprintf(buf + offset,
1434 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1435 rulla->vcc ? rulla->vcc->vpi : 0,
1436 rulla->vcc ? rulla->vcc->vci : 0,
1437 rulla->recv_vcc ? rulla->recv_vcc->vpi : 0,
1438 rulla->recv_vcc ? rulla->recv_vcc->vci : 0,
1439 rulla->last_used,
1440 rulla->timestamp, rulla->no_tries);
1441 offset += sprintf(buf + offset,
1442 "Flags:%x, Packets_flooded:%x, Status: %s ",
1443 rulla->flags, rulla->packets_flooded,
1444 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001445 pr_info("%s", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Chas Williamsd0732f62006-09-29 17:14:27 -07001448 if (!hlist_empty(&priv->mcast_fwds))
Joe Perchesc48192a2010-01-26 11:40:08 +00001449 pr_info("Multicast Forward VCCs\n");
Sasha Levinb67bfe02013-02-27 17:06:00 -08001450 hlist_for_each_entry(rulla, &priv->mcast_fwds, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001451 offset = 0;
Joe Perchesc48192a2010-01-26 11:40:08 +00001452 offset += sprintf(buf + offset, "Mac: %pM", rulla->mac_addr);
1453 offset += sprintf(buf + offset, " Atm:");
Chas Williams1fa99612006-09-29 17:11:47 -07001454 for (j = 0; j < ATM_ESA_LEN; j++) {
1455 offset += sprintf(buf + offset, "%2.2x ",
1456 rulla->atm_addr[j] & 0xff);
1457 }
1458 offset += sprintf(buf + offset,
1459 "Vcc vpi:%d vci:%d, Recv_vcc vpi:%d vci:%d Last_used:%lx, Timestamp:%lx, No_tries:%d ",
1460 rulla->vcc ? rulla->vcc->vpi : 0,
1461 rulla->vcc ? rulla->vcc->vci : 0,
1462 rulla->recv_vcc ? rulla->recv_vcc->vpi : 0,
1463 rulla->recv_vcc ? rulla->recv_vcc->vci : 0,
1464 rulla->last_used,
1465 rulla->timestamp, rulla->no_tries);
1466 offset += sprintf(buf + offset,
1467 "Flags:%x, Packets_flooded:%x, Status: %s ",
1468 rulla->flags, rulla->packets_flooded,
1469 get_status_string(rulla->status));
Joe Perchesc48192a2010-01-26 11:40:08 +00001470 pr_info("%s\n", buf);
Chas Williams1fa99612006-09-29 17:11:47 -07001471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473}
Chas Williamsd0732f62006-09-29 17:14:27 -07001474#else
1475#define dump_arp_table(priv) do { } while (0)
1476#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478/*
1479 * Destruction of arp-cache
1480 */
Chas Williams1fa99612006-09-29 17:11:47 -07001481static void lec_arp_destroy(struct lec_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482{
1483 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001484 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07001485 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001486 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Tejun Heoafe2c512010-12-14 16:21:17 +01001488 cancel_delayed_work_sync(&priv->lec_arp_work);
Chas Williams1fa99612006-09-29 17:11:47 -07001489
1490 /*
1491 * Remove all entries
1492 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
1494 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001495 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001496 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001497 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001498 lec_arp_remove(priv, entry);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001499 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001500 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001501 INIT_HLIST_HEAD(&priv->lec_arp_tables[i]);
Chas Williams1fa99612006-09-29 17:11:47 -07001502 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001503
Sasha Levinb67bfe02013-02-27 17:06:00 -08001504 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001505 &priv->lec_arp_empty_ones, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001506 del_timer_sync(&entry->timer);
1507 lec_arp_clear_vccs(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001508 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001509 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001510 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001511 INIT_HLIST_HEAD(&priv->lec_arp_empty_ones);
1512
Sasha Levinb67bfe02013-02-27 17:06:00 -08001513 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001514 &priv->lec_no_forward, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001515 del_timer_sync(&entry->timer);
1516 lec_arp_clear_vccs(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001517 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001518 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001519 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001520 INIT_HLIST_HEAD(&priv->lec_no_forward);
1521
Sasha Levinb67bfe02013-02-27 17:06:00 -08001522 hlist_for_each_entry_safe(entry, next, &priv->mcast_fwds, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001523 /* No timer, LANEv2 7.1.20 and 2.3.5.3 */
1524 lec_arp_clear_vccs(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001525 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001526 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001527 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001528 INIT_HLIST_HEAD(&priv->mcast_fwds);
Chas Williams1fa99612006-09-29 17:11:47 -07001529 priv->mcast_vcc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1531}
1532
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001533/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 * Find entry by mac_address
1535 */
Chas Williams1fa99612006-09-29 17:11:47 -07001536static struct lec_arp_table *lec_arp_find(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001537 const unsigned char *mac_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
Chas Williamsd0732f62006-09-29 17:14:27 -07001539 struct hlist_head *head;
1540 struct lec_arp_table *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Joe Perches99824462010-01-26 11:40:00 +00001542 pr_debug("%pM\n", mac_addr);
Chas Williams1fa99612006-09-29 17:11:47 -07001543
Chas Williamsd0732f62006-09-29 17:14:27 -07001544 head = &priv->lec_arp_tables[HASH(mac_addr[ETH_ALEN - 1])];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001545 hlist_for_each_entry(entry, head, next) {
Joe Perches150238e2012-05-08 18:56:50 +00001546 if (ether_addr_equal(mac_addr, entry->mac_addr))
Chas Williamsd0732f62006-09-29 17:14:27 -07001547 return entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001548 }
1549 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550}
1551
Chas Williams1fa99612006-09-29 17:11:47 -07001552static struct lec_arp_table *make_entry(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001553 const unsigned char *mac_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554{
Chas Williams1fa99612006-09-29 17:11:47 -07001555 struct lec_arp_table *to_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Chas Williams1fa99612006-09-29 17:11:47 -07001557 to_return = kzalloc(sizeof(struct lec_arp_table), GFP_ATOMIC);
1558 if (!to_return) {
Joe Perchesc48192a2010-01-26 11:40:08 +00001559 pr_info("LEC: Arp entry kmalloc failed\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001560 return NULL;
1561 }
Joe Perches116e8532014-01-20 09:52:16 -08001562 ether_addr_copy(to_return->mac_addr, mac_addr);
Chas Williamsd0732f62006-09-29 17:14:27 -07001563 INIT_HLIST_NODE(&to_return->next);
Kees Cookba421792017-10-16 17:29:37 -07001564 timer_setup(&to_return->timer, lec_arp_expire_arp, 0);
Chas Williams1fa99612006-09-29 17:11:47 -07001565 to_return->last_used = jiffies;
1566 to_return->priv = priv;
1567 skb_queue_head_init(&to_return->tx_wait);
Reshetova, Elena78893662017-07-04 15:53:02 +03001568 refcount_set(&to_return->usage, 1);
Chas Williams1fa99612006-09-29 17:11:47 -07001569 return to_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570}
1571
Chas Williams1fa99612006-09-29 17:11:47 -07001572/* Arp sent timer expired */
Kees Cookba421792017-10-16 17:29:37 -07001573static void lec_arp_expire_arp(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574{
Chas Williams1fa99612006-09-29 17:11:47 -07001575 struct lec_arp_table *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Kees Cookba421792017-10-16 17:29:37 -07001577 entry = from_timer(entry, t, timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
Joe Perches99824462010-01-26 11:40:00 +00001579 pr_debug("\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001580 if (entry->status == ESI_ARP_PENDING) {
1581 if (entry->no_tries <= entry->priv->max_retry_count) {
1582 if (entry->is_rdesc)
1583 send_to_lecd(entry->priv, l_rdesc_arp_xmt,
1584 entry->mac_addr, NULL, NULL);
1585 else
1586 send_to_lecd(entry->priv, l_arp_xmt,
1587 entry->mac_addr, NULL, NULL);
1588 entry->no_tries++;
1589 }
1590 mod_timer(&entry->timer, jiffies + (1 * HZ));
1591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592}
1593
Chas Williams1fa99612006-09-29 17:11:47 -07001594/* Unknown/unused vcc expire, remove associated entry */
Kees Cookba421792017-10-16 17:29:37 -07001595static void lec_arp_expire_vcc(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
1597 unsigned long flags;
Kees Cookba421792017-10-16 17:29:37 -07001598 struct lec_arp_table *to_remove = from_timer(to_remove, t, timer);
Joe Perchese3192692012-06-03 17:41:40 +00001599 struct lec_priv *priv = to_remove->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Chas Williams1fa99612006-09-29 17:11:47 -07001601 del_timer(&to_remove->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Joe Perches99824462010-01-26 11:40:00 +00001603 pr_debug("%p %p: vpi:%d vci:%d\n",
1604 to_remove, priv,
1605 to_remove->vcc ? to_remove->recv_vcc->vpi : 0,
1606 to_remove->vcc ? to_remove->recv_vcc->vci : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
1608 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd0732f62006-09-29 17:14:27 -07001609 hlist_del(&to_remove->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1611
Chas Williams1fa99612006-09-29 17:11:47 -07001612 lec_arp_clear_vccs(to_remove);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001613 lec_arp_put(to_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614}
1615
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001616static bool __lec_arp_check_expire(struct lec_arp_table *entry,
1617 unsigned long now,
1618 struct lec_priv *priv)
1619{
1620 unsigned long time_to_check;
1621
1622 if ((entry->flags) & LEC_REMOTE_FLAG && priv->topology_change)
1623 time_to_check = priv->forward_delay_time;
1624 else
1625 time_to_check = priv->aging_time;
1626
1627 pr_debug("About to expire: %lx - %lx > %lx\n",
1628 now, entry->last_used, time_to_check);
1629 if (time_after(now, entry->last_used + time_to_check) &&
1630 !(entry->flags & LEC_PERMANENT_FLAG) &&
1631 !(entry->mac_addr[0] & 0x01)) { /* LANE2: 7.1.20 */
1632 /* Remove entry */
1633 pr_debug("Entry timed out\n");
1634 lec_arp_remove(priv, entry);
1635 lec_arp_put(entry);
1636 } else {
1637 /* Something else */
1638 if ((entry->status == ESI_VC_PENDING ||
1639 entry->status == ESI_ARP_PENDING) &&
1640 time_after_eq(now, entry->timestamp +
1641 priv->max_unknown_frame_time)) {
1642 entry->timestamp = jiffies;
1643 entry->packets_flooded = 0;
1644 if (entry->status == ESI_VC_PENDING)
1645 send_to_lecd(priv, l_svc_setup,
1646 entry->mac_addr,
1647 entry->atm_addr,
1648 NULL);
1649 }
1650 if (entry->status == ESI_FLUSH_PENDING &&
1651 time_after_eq(now, entry->timestamp +
1652 priv->path_switching_delay)) {
1653 lec_arp_hold(entry);
1654 return true;
1655 }
1656 }
1657
1658 return false;
1659}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660/*
1661 * Expire entries.
1662 * 1. Re-set timer
1663 * 2. For each entry, delete entries that have aged past the age limit.
1664 * 3. For each entry, depending on the status of the entry, perform
1665 * the following maintenance.
1666 * a. If status is ESI_VC_PENDING or ESI_ARP_PENDING then if the
1667 * tick_count is above the max_unknown_frame_time, clear
1668 * the tick_count to zero and clear the packets_flooded counter
1669 * to zero. This supports the packet rate limit per address
1670 * while flooding unknowns.
1671 * b. If the status is ESI_FLUSH_PENDING and the tick_count is greater
1672 * than or equal to the path_switching_delay, change the status
1673 * to ESI_FORWARD_DIRECT. This causes the flush period to end
1674 * regardless of the progress of the flush protocol.
1675 */
David Howellsc4028952006-11-22 14:57:56 +00001676static void lec_arp_check_expire(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677{
1678 unsigned long flags;
David Howellsc4028952006-11-22 14:57:56 +00001679 struct lec_priv *priv =
1680 container_of(work, struct lec_priv, lec_arp_work.work);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001681 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07001682 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001683 unsigned long now;
Chas Williams1fa99612006-09-29 17:11:47 -07001684 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Joe Perches99824462010-01-26 11:40:00 +00001686 pr_debug("%p\n", priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 now = jiffies;
Chas Williams6656e3c2006-09-29 17:17:17 -07001688restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001690 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001691 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001692 &priv->lec_arp_tables[i], next) {
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001693 if (__lec_arp_check_expire(entry, now, priv)) {
1694 struct sk_buff *skb;
1695 struct atm_vcc *vcc = entry->vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001697 spin_unlock_irqrestore(&priv->lec_arp_lock,
1698 flags);
1699 while ((skb = skb_dequeue(&entry->tx_wait)))
1700 lec_send(vcc, skb);
1701 entry->last_used = jiffies;
1702 entry->status = ESI_FORWARD_DIRECT;
Chas Williams33a9c2d2006-09-29 17:16:48 -07001703 lec_arp_put(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Joe Perchesb4c84ec2010-01-26 11:40:19 +00001705 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 }
1707 }
1708 }
1709 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1710
Chas Williams987e46b2006-09-29 17:15:59 -07001711 schedule_delayed_work(&priv->lec_arp_work, LEC_ARP_REFRESH_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712}
Chas Williams1fa99612006-09-29 17:11:47 -07001713
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714/*
1715 * Try to find vcc where mac_address is attached.
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001716 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 */
Chas Williams1fa99612006-09-29 17:11:47 -07001718static struct atm_vcc *lec_arp_resolve(struct lec_priv *priv,
Joe Perchesc48192a2010-01-26 11:40:08 +00001719 const unsigned char *mac_to_find,
1720 int is_rdesc,
Chas Williams1fa99612006-09-29 17:11:47 -07001721 struct lec_arp_table **ret_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722{
1723 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07001724 struct lec_arp_table *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 struct atm_vcc *found;
1726
Chas Williams1fa99612006-09-29 17:11:47 -07001727 if (mac_to_find[0] & 0x01) {
1728 switch (priv->lane_version) {
1729 case 1:
1730 return priv->mcast_vcc;
Chas Williams1fa99612006-09-29 17:11:47 -07001731 case 2: /* LANE2 wants arp for multicast addresses */
Joe Perches150238e2012-05-08 18:56:50 +00001732 if (ether_addr_equal(mac_to_find, bus_mac))
Chas Williams1fa99612006-09-29 17:11:47 -07001733 return priv->mcast_vcc;
1734 break;
1735 default:
1736 break;
1737 }
1738 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
1740 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001741 entry = lec_arp_find(priv, mac_to_find);
1742
1743 if (entry) {
1744 if (entry->status == ESI_FORWARD_DIRECT) {
1745 /* Connection Ok */
1746 entry->last_used = jiffies;
Chas Williams6656e3c2006-09-29 17:17:17 -07001747 lec_arp_hold(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001748 *ret_entry = entry;
1749 found = entry->vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001751 }
1752 /*
1753 * If the LE_ARP cache entry is still pending, reset count to 0
Scott Talbert75b895c2005-09-29 17:31:30 -07001754 * so another LE_ARP request can be made for this frame.
1755 */
Joe Perchesc48192a2010-01-26 11:40:08 +00001756 if (entry->status == ESI_ARP_PENDING)
Scott Talbert75b895c2005-09-29 17:31:30 -07001757 entry->no_tries = 0;
Chas Williams1fa99612006-09-29 17:11:47 -07001758 /*
1759 * Data direct VC not yet set up, check to see if the unknown
1760 * frame count is greater than the limit. If the limit has
1761 * not been reached, allow the caller to send packet to
1762 * BUS.
1763 */
1764 if (entry->status != ESI_FLUSH_PENDING &&
1765 entry->packets_flooded <
1766 priv->maximum_unknown_frame_count) {
1767 entry->packets_flooded++;
Joe Perches99824462010-01-26 11:40:00 +00001768 pr_debug("Flooding..\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001769 found = priv->mcast_vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001771 }
1772 /*
1773 * We got here because entry->status == ESI_FLUSH_PENDING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 * or BUS flood limit was reached for an entry which is
1775 * in ESI_ARP_PENDING or ESI_VC_PENDING state.
1776 */
Chas Williams6656e3c2006-09-29 17:17:17 -07001777 lec_arp_hold(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001778 *ret_entry = entry;
Joe Perches99824462010-01-26 11:40:00 +00001779 pr_debug("entry->status %d entry->vcc %p\n", entry->status,
1780 entry->vcc);
Chas Williams1fa99612006-09-29 17:11:47 -07001781 found = NULL;
1782 } else {
1783 /* No matching entry was found */
1784 entry = make_entry(priv, mac_to_find);
Joe Perches99824462010-01-26 11:40:00 +00001785 pr_debug("Making entry\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001786 if (!entry) {
1787 found = priv->mcast_vcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001789 }
1790 lec_arp_add(priv, entry);
1791 /* We want arp-request(s) to be sent */
1792 entry->packets_flooded = 1;
1793 entry->status = ESI_ARP_PENDING;
1794 entry->no_tries = 1;
1795 entry->last_used = entry->timestamp = jiffies;
1796 entry->is_rdesc = is_rdesc;
1797 if (entry->is_rdesc)
1798 send_to_lecd(priv, l_rdesc_arp_xmt, mac_to_find, NULL,
1799 NULL);
1800 else
1801 send_to_lecd(priv, l_arp_xmt, mac_to_find, NULL, NULL);
1802 entry->timer.expires = jiffies + (1 * HZ);
Kees Cook841b86f2017-10-23 09:40:42 +02001803 entry->timer.function = lec_arp_expire_arp;
Chas Williams1fa99612006-09-29 17:11:47 -07001804 add_timer(&entry->timer);
1805 found = priv->mcast_vcc;
1806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
1808out:
1809 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1810 return found;
1811}
1812
1813static int
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001814lec_addr_delete(struct lec_priv *priv, const unsigned char *atm_addr,
Chas Williams1fa99612006-09-29 17:11:47 -07001815 unsigned long permanent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816{
1817 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001818 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07001819 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07001820 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Joe Perches99824462010-01-26 11:40:00 +00001822 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001824 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001825 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001826 &priv->lec_arp_tables[i], next) {
1827 if (!memcmp(atm_addr, entry->atm_addr, ATM_ESA_LEN) &&
1828 (permanent ||
1829 !(entry->flags & LEC_PERMANENT_FLAG))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 lec_arp_remove(priv, entry);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001831 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07001832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001834 return 0;
1835 }
1836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001838 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839}
1840
1841/*
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001842 * Notifies: Response to arp_request (atm_addr != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 */
1844static void
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001845lec_arp_update(struct lec_priv *priv, const unsigned char *mac_addr,
1846 const unsigned char *atm_addr, unsigned long remoteflag,
Chas Williams1fa99612006-09-29 17:11:47 -07001847 unsigned int targetless_le_arp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
1849 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001850 struct hlist_node *next;
Chas Williams1fa99612006-09-29 17:11:47 -07001851 struct lec_arp_table *entry, *tmp;
1852 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Joe Perches99824462010-01-26 11:40:00 +00001854 pr_debug("%smac:%pM\n",
1855 (targetless_le_arp) ? "targetless " : "", mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
1857 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07001858 entry = lec_arp_find(priv, mac_addr);
1859 if (entry == NULL && targetless_le_arp)
1860 goto out; /*
1861 * LANE2: ignore targetless LE_ARPs for which
1862 * we have no entry in the cache. 7.1.30
1863 */
Chas Williamsd0732f62006-09-29 17:14:27 -07001864 if (!hlist_empty(&priv->lec_arp_empty_ones)) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001865 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00001866 &priv->lec_arp_empty_ones, next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07001867 if (memcmp(entry->atm_addr, atm_addr, ATM_ESA_LEN) == 0) {
1868 hlist_del(&entry->next);
Chas Williams1fa99612006-09-29 17:11:47 -07001869 del_timer(&entry->timer);
Chas Williamsd0732f62006-09-29 17:14:27 -07001870 tmp = lec_arp_find(priv, mac_addr);
1871 if (tmp) {
1872 del_timer(&tmp->timer);
1873 tmp->status = ESI_FORWARD_DIRECT;
1874 memcpy(tmp->atm_addr, atm_addr, ATM_ESA_LEN);
1875 tmp->vcc = entry->vcc;
1876 tmp->old_push = entry->old_push;
1877 tmp->last_used = jiffies;
1878 del_timer(&entry->timer);
Chas Williams33a9c2d2006-09-29 17:16:48 -07001879 lec_arp_put(entry);
Chas Williamsd0732f62006-09-29 17:14:27 -07001880 entry = tmp;
1881 } else {
1882 entry->status = ESI_FORWARD_DIRECT;
Joe Perches116e8532014-01-20 09:52:16 -08001883 ether_addr_copy(entry->mac_addr,
1884 mac_addr);
Chas Williamsd0732f62006-09-29 17:14:27 -07001885 entry->last_used = jiffies;
1886 lec_arp_add(priv, entry);
1887 }
1888 if (remoteflag)
1889 entry->flags |= LEC_REMOTE_FLAG;
1890 else
1891 entry->flags &= ~LEC_REMOTE_FLAG;
Stephen Hemminger52240062007-08-28 15:22:09 -07001892 pr_debug("After update\n");
Chas Williamsd0732f62006-09-29 17:14:27 -07001893 dump_arp_table(priv);
1894 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001895 }
Chas Williams1fa99612006-09-29 17:11:47 -07001896 }
1897 }
Chas Williamsd0732f62006-09-29 17:14:27 -07001898
Chas Williams1fa99612006-09-29 17:11:47 -07001899 entry = lec_arp_find(priv, mac_addr);
1900 if (!entry) {
1901 entry = make_entry(priv, mac_addr);
1902 if (!entry)
1903 goto out;
1904 entry->status = ESI_UNKNOWN;
1905 lec_arp_add(priv, entry);
1906 /* Temporary, changes before end of function */
1907 }
1908 memcpy(entry->atm_addr, atm_addr, ATM_ESA_LEN);
1909 del_timer(&entry->timer);
1910 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001911 hlist_for_each_entry(tmp,
Joe Perchesc48192a2010-01-26 11:40:08 +00001912 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07001913 if (entry != tmp &&
1914 !memcmp(tmp->atm_addr, atm_addr, ATM_ESA_LEN)) {
1915 /* Vcc to this host exists */
1916 if (tmp->status > ESI_VC_PENDING) {
1917 /*
1918 * ESI_FLUSH_PENDING,
1919 * ESI_FORWARD_DIRECT
1920 */
1921 entry->vcc = tmp->vcc;
1922 entry->old_push = tmp->old_push;
1923 }
1924 entry->status = tmp->status;
1925 break;
1926 }
1927 }
1928 }
1929 if (remoteflag)
1930 entry->flags |= LEC_REMOTE_FLAG;
1931 else
1932 entry->flags &= ~LEC_REMOTE_FLAG;
1933 if (entry->status == ESI_ARP_PENDING || entry->status == ESI_UNKNOWN) {
1934 entry->status = ESI_VC_PENDING;
Chas Williamsd0732f62006-09-29 17:14:27 -07001935 send_to_lecd(priv, l_svc_setup, entry->mac_addr, atm_addr, NULL);
Chas Williams1fa99612006-09-29 17:11:47 -07001936 }
Stephen Hemminger52240062007-08-28 15:22:09 -07001937 pr_debug("After update2\n");
Chas Williams1fa99612006-09-29 17:11:47 -07001938 dump_arp_table(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939out:
1940 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
1941}
1942
1943/*
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +09001944 * Notifies: Vcc setup ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 */
1946static void
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07001947lec_vcc_added(struct lec_priv *priv, const struct atmlec_ioc *ioc_data,
Chas Williams1fa99612006-09-29 17:11:47 -07001948 struct atm_vcc *vcc,
1949 void (*old_push) (struct atm_vcc *vcc, struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950{
1951 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07001952 struct lec_arp_table *entry;
1953 int i, found_entry = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
1955 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Joe Perchesc48192a2010-01-26 11:40:08 +00001956 /* Vcc for Multicast Forward. No timer, LANEv2 7.1.20 and 2.3.5.3 */
Chas Williams1fa99612006-09-29 17:11:47 -07001957 if (ioc_data->receive == 2) {
Stephen Hemminger52240062007-08-28 15:22:09 -07001958 pr_debug("LEC_ARP: Attaching mcast forward\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959#if 0
Chas Williams1fa99612006-09-29 17:11:47 -07001960 entry = lec_arp_find(priv, bus_mac);
1961 if (!entry) {
Joe Perchesc48192a2010-01-26 11:40:08 +00001962 pr_info("LEC_ARP: Multicast entry not found!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001964 }
1965 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
1966 entry->recv_vcc = vcc;
1967 entry->old_recv_push = old_push;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968#endif
Chas Williams1fa99612006-09-29 17:11:47 -07001969 entry = make_entry(priv, bus_mac);
1970 if (entry == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001972 del_timer(&entry->timer);
1973 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
1974 entry->recv_vcc = vcc;
1975 entry->old_recv_push = old_push;
Chas Williamsd0732f62006-09-29 17:14:27 -07001976 hlist_add_head(&entry->next, &priv->mcast_fwds);
Chas Williams1fa99612006-09-29 17:11:47 -07001977 goto out;
1978 } else if (ioc_data->receive == 1) {
1979 /*
1980 * Vcc which we don't want to make default vcc,
1981 * attach it anyway.
1982 */
Joe Perches99824462010-01-26 11:40:00 +00001983 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",
1984 ioc_data->atm_addr[0], ioc_data->atm_addr[1],
1985 ioc_data->atm_addr[2], ioc_data->atm_addr[3],
1986 ioc_data->atm_addr[4], ioc_data->atm_addr[5],
1987 ioc_data->atm_addr[6], ioc_data->atm_addr[7],
1988 ioc_data->atm_addr[8], ioc_data->atm_addr[9],
1989 ioc_data->atm_addr[10], ioc_data->atm_addr[11],
1990 ioc_data->atm_addr[12], ioc_data->atm_addr[13],
1991 ioc_data->atm_addr[14], ioc_data->atm_addr[15],
1992 ioc_data->atm_addr[16], ioc_data->atm_addr[17],
1993 ioc_data->atm_addr[18], ioc_data->atm_addr[19]);
Chas Williams1fa99612006-09-29 17:11:47 -07001994 entry = make_entry(priv, bus_mac);
1995 if (entry == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07001997 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
Joe Perches19ffa562015-03-02 19:54:54 -08001998 eth_zero_addr(entry->mac_addr);
Chas Williams1fa99612006-09-29 17:11:47 -07001999 entry->recv_vcc = vcc;
2000 entry->old_recv_push = old_push;
2001 entry->status = ESI_UNKNOWN;
2002 entry->timer.expires = jiffies + priv->vcc_timeout_period;
Kees Cook841b86f2017-10-23 09:40:42 +02002003 entry->timer.function = lec_arp_expire_vcc;
Chas Williamsd0732f62006-09-29 17:14:27 -07002004 hlist_add_head(&entry->next, &priv->lec_no_forward);
Chas Williams1fa99612006-09-29 17:11:47 -07002005 add_timer(&entry->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 dump_arp_table(priv);
2007 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002008 }
Joe Perches99824462010-01-26 11:40:00 +00002009 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",
2010 ioc_data->atm_addr[0], ioc_data->atm_addr[1],
2011 ioc_data->atm_addr[2], ioc_data->atm_addr[3],
2012 ioc_data->atm_addr[4], ioc_data->atm_addr[5],
2013 ioc_data->atm_addr[6], ioc_data->atm_addr[7],
2014 ioc_data->atm_addr[8], ioc_data->atm_addr[9],
2015 ioc_data->atm_addr[10], ioc_data->atm_addr[11],
2016 ioc_data->atm_addr[12], ioc_data->atm_addr[13],
2017 ioc_data->atm_addr[14], ioc_data->atm_addr[15],
2018 ioc_data->atm_addr[16], ioc_data->atm_addr[17],
2019 ioc_data->atm_addr[18], ioc_data->atm_addr[19]);
Chas Williams1fa99612006-09-29 17:11:47 -07002020 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08002021 hlist_for_each_entry(entry,
Joe Perchesc48192a2010-01-26 11:40:08 +00002022 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002023 if (memcmp
2024 (ioc_data->atm_addr, entry->atm_addr,
2025 ATM_ESA_LEN) == 0) {
Stephen Hemminger52240062007-08-28 15:22:09 -07002026 pr_debug("LEC_ARP: Attaching data direct\n");
2027 pr_debug("Currently -> Vcc: %d, Rvcc:%d\n",
Joe Perches99824462010-01-26 11:40:00 +00002028 entry->vcc ? entry->vcc->vci : 0,
2029 entry->recv_vcc ? entry->recv_vcc->
2030 vci : 0);
Chas Williams1fa99612006-09-29 17:11:47 -07002031 found_entry = 1;
2032 del_timer(&entry->timer);
2033 entry->vcc = vcc;
2034 entry->old_push = old_push;
2035 if (entry->status == ESI_VC_PENDING) {
2036 if (priv->maximum_unknown_frame_count
2037 == 0)
2038 entry->status =
2039 ESI_FORWARD_DIRECT;
2040 else {
2041 entry->timestamp = jiffies;
2042 entry->status =
2043 ESI_FLUSH_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044#if 0
Chas Williams1fa99612006-09-29 17:11:47 -07002045 send_to_lecd(priv, l_flush_xmt,
2046 NULL,
2047 entry->atm_addr,
2048 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049#endif
Chas Williams1fa99612006-09-29 17:11:47 -07002050 }
2051 } else {
2052 /*
2053 * They were forming a connection
2054 * to us, and we to them. Our
2055 * ATM address is numerically lower
2056 * than theirs, so we make connection
2057 * we formed into default VCC (8.1.11).
2058 * Connection they made gets torn
2059 * down. This might confuse some
2060 * clients. Can be changed if
2061 * someone reports trouble...
2062 */
2063 ;
2064 }
2065 }
2066 }
2067 }
2068 if (found_entry) {
Stephen Hemminger52240062007-08-28 15:22:09 -07002069 pr_debug("After vcc was added\n");
Chas Williams1fa99612006-09-29 17:11:47 -07002070 dump_arp_table(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002072 }
2073 /*
2074 * Not found, snatch address from first data packet that arrives
2075 * from this vcc
2076 */
2077 entry = make_entry(priv, bus_mac);
2078 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002080 entry->vcc = vcc;
2081 entry->old_push = old_push;
2082 memcpy(entry->atm_addr, ioc_data->atm_addr, ATM_ESA_LEN);
Joe Perches19ffa562015-03-02 19:54:54 -08002083 eth_zero_addr(entry->mac_addr);
Chas Williams1fa99612006-09-29 17:11:47 -07002084 entry->status = ESI_UNKNOWN;
Chas Williamsd0732f62006-09-29 17:14:27 -07002085 hlist_add_head(&entry->next, &priv->lec_arp_empty_ones);
Chas Williams1fa99612006-09-29 17:11:47 -07002086 entry->timer.expires = jiffies + priv->vcc_timeout_period;
Kees Cook841b86f2017-10-23 09:40:42 +02002087 entry->timer.function = lec_arp_expire_vcc;
Chas Williams1fa99612006-09-29 17:11:47 -07002088 add_timer(&entry->timer);
Stephen Hemminger52240062007-08-28 15:22:09 -07002089 pr_debug("After vcc was added\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 dump_arp_table(priv);
2091out:
2092 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2093}
2094
Chas Williams1fa99612006-09-29 17:11:47 -07002095static void lec_flush_complete(struct lec_priv *priv, unsigned long tran_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096{
2097 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07002098 struct lec_arp_table *entry;
2099 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
Joe Perches99824462010-01-26 11:40:00 +00002101 pr_debug("%lx\n", tran_id);
Chas Williams6656e3c2006-09-29 17:17:17 -07002102restart:
Chas Williams1fa99612006-09-29 17:11:47 -07002103 spin_lock_irqsave(&priv->lec_arp_lock, flags);
2104 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08002105 hlist_for_each_entry(entry,
Joe Perchesc48192a2010-01-26 11:40:08 +00002106 &priv->lec_arp_tables[i], next) {
2107 if (entry->flush_tran_id == tran_id &&
2108 entry->status == ESI_FLUSH_PENDING) {
Chas Williams1fa99612006-09-29 17:11:47 -07002109 struct sk_buff *skb;
Chas Williams6656e3c2006-09-29 17:17:17 -07002110 struct atm_vcc *vcc = entry->vcc;
Chas Williams1fa99612006-09-29 17:11:47 -07002111
Chas Williams6656e3c2006-09-29 17:17:17 -07002112 lec_arp_hold(entry);
Joe Perchesc48192a2010-01-26 11:40:08 +00002113 spin_unlock_irqrestore(&priv->lec_arp_lock,
2114 flags);
Joe Perchesb4c84ec2010-01-26 11:40:19 +00002115 while ((skb = skb_dequeue(&entry->tx_wait)))
Stephen Hemminger162619e2009-01-09 13:01:01 +00002116 lec_send(vcc, skb);
Chas Williams6656e3c2006-09-29 17:17:17 -07002117 entry->last_used = jiffies;
Chas Williams1fa99612006-09-29 17:11:47 -07002118 entry->status = ESI_FORWARD_DIRECT;
Chas Williams6656e3c2006-09-29 17:17:17 -07002119 lec_arp_put(entry);
Stephen Hemminger52240062007-08-28 15:22:09 -07002120 pr_debug("LEC_ARP: Flushed\n");
Chas Williams6656e3c2006-09-29 17:17:17 -07002121 goto restart;
Chas Williams1fa99612006-09-29 17:11:47 -07002122 }
2123 }
2124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002126 dump_arp_table(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127}
2128
2129static void
2130lec_set_flush_tran_id(struct lec_priv *priv,
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -07002131 const unsigned char *atm_addr, unsigned long tran_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
2133 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07002134 struct lec_arp_table *entry;
2135 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
2137 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002138 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++)
Sasha Levinb67bfe02013-02-27 17:06:00 -08002139 hlist_for_each_entry(entry,
Joe Perchesc48192a2010-01-26 11:40:08 +00002140 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002141 if (!memcmp(atm_addr, entry->atm_addr, ATM_ESA_LEN)) {
2142 entry->flush_tran_id = tran_id;
Stephen Hemminger52240062007-08-28 15:22:09 -07002143 pr_debug("Set flush transaction id to %lx for %p\n",
Joe Perches99824462010-01-26 11:40:00 +00002144 tran_id, entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002145 }
Chas Williamsd0732f62006-09-29 17:14:27 -07002146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2148}
2149
Chas Williams1fa99612006-09-29 17:11:47 -07002150static int lec_mcast_make(struct lec_priv *priv, struct atm_vcc *vcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151{
2152 unsigned long flags;
Chas Williams1fa99612006-09-29 17:11:47 -07002153 unsigned char mac_addr[] = {
2154 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
2155 };
2156 struct lec_arp_table *to_add;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 struct lec_vcc_priv *vpriv;
2158 int err = 0;
Chas Williams1fa99612006-09-29 17:11:47 -07002159
Joe Perchesc48192a2010-01-26 11:40:08 +00002160 vpriv = kmalloc(sizeof(struct lec_vcc_priv), GFP_KERNEL);
2161 if (!vpriv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 return -ENOMEM;
2163 vpriv->xoff = 0;
2164 vpriv->old_pop = vcc->pop;
2165 vcc->user_back = vpriv;
Chas Williams1fa99612006-09-29 17:11:47 -07002166 vcc->pop = lec_pop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002168 to_add = make_entry(priv, mac_addr);
2169 if (!to_add) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 vcc->pop = vpriv->old_pop;
2171 kfree(vpriv);
Chas Williams1fa99612006-09-29 17:11:47 -07002172 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002174 }
2175 memcpy(to_add->atm_addr, vcc->remote.sas_addr.prv, ATM_ESA_LEN);
2176 to_add->status = ESI_FORWARD_DIRECT;
2177 to_add->flags |= LEC_PERMANENT_FLAG;
2178 to_add->vcc = vcc;
2179 to_add->old_push = vcc->push;
2180 vcc->push = lec_push;
2181 priv->mcast_vcc = vcc;
2182 lec_arp_add(priv, to_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183out:
2184 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
Chas Williams1fa99612006-09-29 17:11:47 -07002185 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186}
2187
Chas Williams1fa99612006-09-29 17:11:47 -07002188static void lec_vcc_close(struct lec_priv *priv, struct atm_vcc *vcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189{
2190 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002191 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07002192 struct lec_arp_table *entry;
Chas Williams1fa99612006-09-29 17:11:47 -07002193 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
Stephen Hemminger52240062007-08-28 15:22:09 -07002195 pr_debug("LEC_ARP: lec_vcc_close vpi:%d vci:%d\n", vcc->vpi, vcc->vci);
Chas Williams1fa99612006-09-29 17:11:47 -07002196 dump_arp_table(priv);
Chas Williamsd0732f62006-09-29 17:14:27 -07002197
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Chas Williamsd0732f62006-09-29 17:14:27 -07002199
Chas Williams1fa99612006-09-29 17:11:47 -07002200 for (i = 0; i < LEC_ARP_TABLE_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08002201 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00002202 &priv->lec_arp_tables[i], next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002203 if (vcc == entry->vcc) {
2204 lec_arp_remove(priv, entry);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002205 lec_arp_put(entry);
Joe Perchesc48192a2010-01-26 11:40:08 +00002206 if (priv->mcast_vcc == vcc)
Chas Williams1fa99612006-09-29 17:11:47 -07002207 priv->mcast_vcc = NULL;
Chas Williams1fa99612006-09-29 17:11:47 -07002208 }
2209 }
2210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Sasha Levinb67bfe02013-02-27 17:06:00 -08002212 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00002213 &priv->lec_arp_empty_ones, next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002214 if (entry->vcc == vcc) {
Chas Williams1fa99612006-09-29 17:11:47 -07002215 lec_arp_clear_vccs(entry);
2216 del_timer(&entry->timer);
Chas Williamsd0732f62006-09-29 17:14:27 -07002217 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002218 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002219 }
Chas Williams1fa99612006-09-29 17:11:47 -07002220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
Sasha Levinb67bfe02013-02-27 17:06:00 -08002222 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00002223 &priv->lec_no_forward, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002224 if (entry->recv_vcc == vcc) {
2225 lec_arp_clear_vccs(entry);
2226 del_timer(&entry->timer);
Chas Williamsd0732f62006-09-29 17:14:27 -07002227 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002228 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002229 }
Chas Williams1fa99612006-09-29 17:11:47 -07002230 }
2231
Sasha Levinb67bfe02013-02-27 17:06:00 -08002232 hlist_for_each_entry_safe(entry, next, &priv->mcast_fwds, next) {
Chas Williams1fa99612006-09-29 17:11:47 -07002233 if (entry->recv_vcc == vcc) {
2234 lec_arp_clear_vccs(entry);
2235 /* No timer, LANEv2 7.1.20 and 2.3.5.3 */
Chas Williamsd0732f62006-09-29 17:14:27 -07002236 hlist_del(&entry->next);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002237 lec_arp_put(entry);
Chas Williams1fa99612006-09-29 17:11:47 -07002238 }
Chas Williams1fa99612006-09-29 17:11:47 -07002239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
2241 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2242 dump_arp_table(priv);
2243}
2244
2245static void
2246lec_arp_check_empties(struct lec_priv *priv,
Chas Williams1fa99612006-09-29 17:11:47 -07002247 struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248{
Chas Williams1fa99612006-09-29 17:11:47 -07002249 unsigned long flags;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002250 struct hlist_node *next;
Chas Williamsd0732f62006-09-29 17:14:27 -07002251 struct lec_arp_table *entry, *tmp;
Chas Williams1fa99612006-09-29 17:11:47 -07002252 struct lecdatahdr_8023 *hdr = (struct lecdatahdr_8023 *)skb->data;
Paul Gortmaker60eea6c2012-05-10 16:17:00 -04002253 unsigned char *src = hdr->h_source;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
2255 spin_lock_irqsave(&priv->lec_arp_lock, flags);
Sasha Levinb67bfe02013-02-27 17:06:00 -08002256 hlist_for_each_entry_safe(entry, next,
Joe Perchesc48192a2010-01-26 11:40:08 +00002257 &priv->lec_arp_empty_ones, next) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002258 if (vcc == entry->vcc) {
2259 del_timer(&entry->timer);
Joe Perches116e8532014-01-20 09:52:16 -08002260 ether_addr_copy(entry->mac_addr, src);
Chas Williamsd0732f62006-09-29 17:14:27 -07002261 entry->status = ESI_FORWARD_DIRECT;
2262 entry->last_used = jiffies;
2263 /* We might have got an entry */
Joe Perchesc48192a2010-01-26 11:40:08 +00002264 tmp = lec_arp_find(priv, src);
2265 if (tmp) {
Chas Williamsd0732f62006-09-29 17:14:27 -07002266 lec_arp_remove(priv, tmp);
Chas Williams33a9c2d2006-09-29 17:16:48 -07002267 lec_arp_put(tmp);
Chas Williamsd0732f62006-09-29 17:14:27 -07002268 }
2269 hlist_del(&entry->next);
2270 lec_arp_add(priv, entry);
2271 goto out;
Chas Williams1fa99612006-09-29 17:11:47 -07002272 }
Chas Williams1fa99612006-09-29 17:11:47 -07002273 }
Stephen Hemminger52240062007-08-28 15:22:09 -07002274 pr_debug("LEC_ARP: Arp_check_empties: entry not found!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275out:
2276 spin_unlock_irqrestore(&priv->lec_arp_lock, flags);
2277}
Chas Williams1fa99612006-09-29 17:11:47 -07002278
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279MODULE_LICENSE("GPL");