blob: ed72263d0dc78c3a0dffbf9f2ceab8e071717e5c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Chas Williamsfb64c732007-12-30 23:18:29 -08002 * Ethernet netdevice using ATM AAL5 as underlying carrier
3 * (RFC1483 obsoleted by RFC2684) for Linux
4 *
5 * Authors: Marcell GAL, 2000, XDSL Ltd, Hungary
6 * Eric Kinzie, 2006-2007, US Naval Research Laboratory
7 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
Joe Perches99824462010-01-26 11:40:00 +00009#define pr_fmt(fmt) KBUILD_MODNAME ":%s: " fmt, __func__
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/init.h>
13#include <linux/kernel.h>
14#include <linux/list.h>
15#include <linux/netdevice.h>
16#include <linux/skbuff.h>
17#include <linux/etherdevice.h>
18#include <linux/rtnetlink.h>
19#include <linux/ip.h>
Joe Perches641d7292010-01-26 11:40:04 +000020#include <linux/uaccess.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <net/arp.h>
23#include <linux/atm.h>
24#include <linux/atmdev.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080025#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/seq_file.h>
27
28#include <linux/atmbr2684.h>
29
30#include "common.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032static void skb_debug(const struct sk_buff *skb)
33{
Joe Perches641d7292010-01-26 11:40:04 +000034#ifdef SKB_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#define NUM2PRINT 50
Joe Perches641d7292010-01-26 11:40:04 +000036 print_hex_dump(KERN_DEBUG, "br2684: skb: ", DUMP_OFFSET,
37 16, 1, skb->data, min(NUM2PRINT, skb->len), true);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#endif
Joe Perches641d7292010-01-26 11:40:04 +000039}
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Eric Kinzie097b19a2007-12-30 23:17:53 -080041#define BR2684_ETHERTYPE_LEN 2
42#define BR2684_PAD_LEN 2
43
44#define LLC 0xaa, 0xaa, 0x03
45#define SNAP_BRIDGED 0x00, 0x80, 0xc2
46#define SNAP_ROUTED 0x00, 0x00, 0x00
47#define PID_ETHERNET 0x00, 0x07
48#define ETHERTYPE_IPV4 0x08, 0x00
49#define ETHERTYPE_IPV6 0x86, 0xdd
50#define PAD_BRIDGED 0x00, 0x00
51
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -070052static const unsigned char ethertype_ipv4[] = { ETHERTYPE_IPV4 };
53static const unsigned char ethertype_ipv6[] = { ETHERTYPE_IPV6 };
54static const unsigned char llc_oui_pid_pad[] =
Chas Williamsfb64c732007-12-30 23:18:29 -080055 { LLC, SNAP_BRIDGED, PID_ETHERNET, PAD_BRIDGED };
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -070056static const unsigned char llc_oui_ipv4[] = { LLC, SNAP_ROUTED, ETHERTYPE_IPV4 };
57static const unsigned char llc_oui_ipv6[] = { LLC, SNAP_ROUTED, ETHERTYPE_IPV6 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59enum br2684_encaps {
Chas Williamsfb64c732007-12-30 23:18:29 -080060 e_vc = BR2684_ENCAPS_VC,
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 e_llc = BR2684_ENCAPS_LLC,
62};
63
64struct br2684_vcc {
Chas Williamsfb64c732007-12-30 23:18:29 -080065 struct atm_vcc *atmvcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 struct net_device *device;
Chas Williamsfb64c732007-12-30 23:18:29 -080067 /* keep old push, pop functions for chaining */
Joe Perches641d7292010-01-26 11:40:04 +000068 void (*old_push)(struct atm_vcc *vcc, struct sk_buff *skb);
Karl Hiramoto137742c2009-09-02 23:26:39 -070069 void (*old_pop)(struct atm_vcc *vcc, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 enum br2684_encaps encaps;
71 struct list_head brvccs;
72#ifdef CONFIG_ATM_BR2684_IPFILTER
73 struct br2684_filter filter;
74#endif /* CONFIG_ATM_BR2684_IPFILTER */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 unsigned copies_needed, copies_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076};
77
78struct br2684_dev {
79 struct net_device *net_dev;
80 struct list_head br2684_devs;
81 int number;
Chas Williamsfb64c732007-12-30 23:18:29 -080082 struct list_head brvccs; /* one device <=> one vcc (before xmas) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 int mac_was_set;
Eric Kinzie097b19a2007-12-30 23:17:53 -080084 enum br2684_payload payload;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085};
86
87/*
88 * This lock should be held for writing any time the list of devices or
89 * their attached vcc's could be altered. It should be held for reading
90 * any time these are being queried. Note that we sometimes need to
91 * do read-locking under interrupt context, so write locking must block
92 * the current CPU's interrupts
93 */
94static DEFINE_RWLOCK(devs_lock);
95
96static LIST_HEAD(br2684_devs);
97
98static inline struct br2684_dev *BRPRIV(const struct net_device *net_dev)
99{
Joe Perches37d66802010-11-15 11:12:33 +0000100 return netdev_priv(net_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
103static inline struct net_device *list_entry_brdev(const struct list_head *le)
104{
105 return list_entry(le, struct br2684_dev, br2684_devs)->net_dev;
106}
107
108static inline struct br2684_vcc *BR2684_VCC(const struct atm_vcc *atmvcc)
109{
Chas Williamsfb64c732007-12-30 23:18:29 -0800110 return (struct br2684_vcc *)(atmvcc->user_back);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113static inline struct br2684_vcc *list_entry_brvcc(const struct list_head *le)
114{
115 return list_entry(le, struct br2684_vcc, brvccs);
116}
117
118/* Caller should hold read_lock(&devs_lock) */
119static struct net_device *br2684_find_dev(const struct br2684_if_spec *s)
120{
121 struct list_head *lh;
122 struct net_device *net_dev;
123 switch (s->method) {
124 case BR2684_FIND_BYNUM:
125 list_for_each(lh, &br2684_devs) {
126 net_dev = list_entry_brdev(lh);
127 if (BRPRIV(net_dev)->number == s->spec.devnum)
128 return net_dev;
129 }
130 break;
131 case BR2684_FIND_BYIFNAME:
132 list_for_each(lh, &br2684_devs) {
133 net_dev = list_entry_brdev(lh);
134 if (!strncmp(net_dev->name, s->spec.ifname, IFNAMSIZ))
135 return net_dev;
136 }
137 break;
138 }
139 return NULL;
140}
141
Karl Hiramoto00506612010-07-08 20:55:31 +0000142static int atm_dev_event(struct notifier_block *this, unsigned long event,
143 void *arg)
144{
145 struct atm_dev *atm_dev = arg;
146 struct list_head *lh;
147 struct net_device *net_dev;
148 struct br2684_vcc *brvcc;
149 struct atm_vcc *atm_vcc;
150 unsigned long flags;
151
152 pr_debug("event=%ld dev=%p\n", event, atm_dev);
153
154 read_lock_irqsave(&devs_lock, flags);
155 list_for_each(lh, &br2684_devs) {
156 net_dev = list_entry_brdev(lh);
157
158 list_for_each_entry(brvcc, &BRPRIV(net_dev)->brvccs, brvccs) {
159 atm_vcc = brvcc->atmvcc;
160 if (atm_vcc && brvcc->atmvcc->dev == atm_dev) {
161
162 if (atm_vcc->dev->signal == ATM_PHY_SIG_LOST)
163 netif_carrier_off(net_dev);
164 else
165 netif_carrier_on(net_dev);
166
167 }
168 }
169 }
170 read_unlock_irqrestore(&devs_lock, flags);
171
172 return NOTIFY_DONE;
173}
174
175static struct notifier_block atm_dev_notifier = {
176 .notifier_call = atm_dev_event,
177};
178
Karl Hiramoto137742c2009-09-02 23:26:39 -0700179/* chained vcc->pop function. Check if we should wake the netif_queue */
180static void br2684_pop(struct atm_vcc *vcc, struct sk_buff *skb)
181{
182 struct br2684_vcc *brvcc = BR2684_VCC(vcc);
183 struct net_device *net_dev = skb->dev;
184
Joe Perches99824462010-01-26 11:40:00 +0000185 pr_debug("(vcc %p ; net_dev %p )\n", vcc, net_dev);
Karl Hiramoto137742c2009-09-02 23:26:39 -0700186 brvcc->old_pop(vcc, skb);
187
188 if (!net_dev)
189 return;
190
191 if (atm_may_send(vcc, 0))
192 netif_wake_queue(net_dev);
193
194}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195/*
196 * Send a packet out a particular vcc. Not to useful right now, but paves
197 * the way for multiple vcc's per itf. Returns true if we can send,
198 * otherwise false
199 */
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000200static int br2684_xmit_vcc(struct sk_buff *skb, struct net_device *dev,
Chas Williamsfb64c732007-12-30 23:18:29 -0800201 struct br2684_vcc *brvcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000203 struct br2684_dev *brdev = BRPRIV(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 struct atm_vcc *atmvcc;
Pascal Hambourg9e667b22011-08-17 08:37:18 +0200205 int minheadroom = (brvcc->encaps == e_llc) ?
206 ((brdev->payload == p_bridged) ?
207 sizeof(llc_oui_pid_pad) : sizeof(llc_oui_ipv4)) :
208 ((brdev->payload == p_bridged) ? BR2684_PAD_LEN : 0);
Eric Kinzie097b19a2007-12-30 23:17:53 -0800209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (skb_headroom(skb) < minheadroom) {
211 struct sk_buff *skb2 = skb_realloc_headroom(skb, minheadroom);
212 brvcc->copies_needed++;
213 dev_kfree_skb(skb);
214 if (skb2 == NULL) {
215 brvcc->copies_failed++;
216 return 0;
217 }
218 skb = skb2;
219 }
Eric Kinzie097b19a2007-12-30 23:17:53 -0800220
221 if (brvcc->encaps == e_llc) {
222 if (brdev->payload == p_bridged) {
223 skb_push(skb, sizeof(llc_oui_pid_pad));
Chas Williamsfb64c732007-12-30 23:18:29 -0800224 skb_copy_to_linear_data(skb, llc_oui_pid_pad,
225 sizeof(llc_oui_pid_pad));
Eric Kinzie097b19a2007-12-30 23:17:53 -0800226 } else if (brdev->payload == p_routed) {
227 unsigned short prot = ntohs(skb->protocol);
228
229 skb_push(skb, sizeof(llc_oui_ipv4));
230 switch (prot) {
Chas Williamsfb64c732007-12-30 23:18:29 -0800231 case ETH_P_IP:
232 skb_copy_to_linear_data(skb, llc_oui_ipv4,
233 sizeof(llc_oui_ipv4));
234 break;
235 case ETH_P_IPV6:
236 skb_copy_to_linear_data(skb, llc_oui_ipv6,
237 sizeof(llc_oui_ipv6));
238 break;
239 default:
240 dev_kfree_skb(skb);
241 return 0;
Eric Kinzie097b19a2007-12-30 23:17:53 -0800242 }
243 }
Eric Kinzie7e903c22008-06-16 17:18:18 -0700244 } else { /* e_vc */
245 if (brdev->payload == p_bridged) {
246 skb_push(skb, 2);
Eric Kinzie097b19a2007-12-30 23:17:53 -0800247 memset(skb->data, 0, 2);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700248 }
Eric Kinzie097b19a2007-12-30 23:17:53 -0800249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 skb_debug(skb);
251
252 ATM_SKB(skb)->vcc = atmvcc = brvcc->atmvcc;
Stephen Hemminger52240062007-08-28 15:22:09 -0700253 pr_debug("atm_skb(%p)->vcc(%p)->dev(%p)\n", skb, atmvcc, atmvcc->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 atomic_add(skb->truesize, &sk_atm(atmvcc)->sk_wmem_alloc);
255 ATM_SKB(skb)->atm_options = atmvcc->atm_options;
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000256 dev->stats.tx_packets++;
257 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 atmvcc->send(atmvcc, skb);
Karl Hiramoto137742c2009-09-02 23:26:39 -0700259
260 if (!atm_may_send(atmvcc, 0)) {
261 netif_stop_queue(brvcc->device);
262 /*check for race with br2684_pop*/
263 if (atm_may_send(atmvcc, 0))
264 netif_start_queue(brvcc->device);
265 }
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return 1;
268}
269
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -0700270static inline struct br2684_vcc *pick_outgoing_vcc(const struct sk_buff *skb,
271 const struct br2684_dev *brdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Chas Williamsfb64c732007-12-30 23:18:29 -0800273 return list_empty(&brdev->brvccs) ? NULL : list_entry_brvcc(brdev->brvccs.next); /* 1 vcc/dev right now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
Stephen Hemminger3c805a22009-08-31 19:50:42 +0000276static netdev_tx_t br2684_start_xmit(struct sk_buff *skb,
277 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 struct br2684_dev *brdev = BRPRIV(dev);
280 struct br2684_vcc *brvcc;
281
Joe Perches99824462010-01-26 11:40:00 +0000282 pr_debug("skb_dst(skb)=%p\n", skb_dst(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 read_lock(&devs_lock);
284 brvcc = pick_outgoing_vcc(skb, brdev);
285 if (brvcc == NULL) {
Stephen Hemminger52240062007-08-28 15:22:09 -0700286 pr_debug("no vcc attached to dev %s\n", dev->name);
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000287 dev->stats.tx_errors++;
288 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 /* netif_stop_queue(dev); */
290 dev_kfree_skb(skb);
291 read_unlock(&devs_lock);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000292 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000294 if (!br2684_xmit_vcc(skb, dev, brvcc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /*
296 * We should probably use netif_*_queue() here, but that
297 * involves added complication. We need to walk before
Chas Williamsfb64c732007-12-30 23:18:29 -0800298 * we can run.
299 *
300 * Don't free here! this pointer might be no longer valid!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 */
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000302 dev->stats.tx_errors++;
303 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 }
305 read_unlock(&devs_lock);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000306 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309/*
310 * We remember when the MAC gets set, so we don't override it later with
311 * the ESI of the ATM card of the first VC
312 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313static int br2684_mac_addr(struct net_device *dev, void *p)
314{
Stephen Hemminger0ba25ff2009-01-09 13:00:59 +0000315 int err = eth_mac_addr(dev, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if (!err)
317 BRPRIV(dev)->mac_was_set = 1;
318 return err;
319}
320
321#ifdef CONFIG_ATM_BR2684_IPFILTER
322/* this IOCTL is experimental. */
Chas Williamsfb64c732007-12-30 23:18:29 -0800323static int br2684_setfilt(struct atm_vcc *atmvcc, void __user * arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
325 struct br2684_vcc *brvcc;
326 struct br2684_filter_set fs;
327
328 if (copy_from_user(&fs, arg, sizeof fs))
329 return -EFAULT;
330 if (fs.ifspec.method != BR2684_FIND_BYNOTHING) {
331 /*
332 * This is really a per-vcc thing, but we can also search
Chas Williamsfb64c732007-12-30 23:18:29 -0800333 * by device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 */
335 struct br2684_dev *brdev;
336 read_lock(&devs_lock);
337 brdev = BRPRIV(br2684_find_dev(&fs.ifspec));
Joe Perches641d7292010-01-26 11:40:04 +0000338 if (brdev == NULL || list_empty(&brdev->brvccs) ||
339 brdev->brvccs.next != brdev->brvccs.prev) /* >1 VCC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 brvcc = NULL;
341 else
342 brvcc = list_entry_brvcc(brdev->brvccs.next);
343 read_unlock(&devs_lock);
344 if (brvcc == NULL)
345 return -ESRCH;
346 } else
347 brvcc = BR2684_VCC(atmvcc);
348 memcpy(&brvcc->filter, &fs.filter, sizeof(brvcc->filter));
349 return 0;
350}
351
352/* Returns 1 if packet should be dropped */
353static inline int
Al Viro30d492d2006-11-14 21:11:29 -0800354packet_fails_filter(__be16 type, struct br2684_vcc *brvcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
356 if (brvcc->filter.netmask == 0)
Chas Williamsfb64c732007-12-30 23:18:29 -0800357 return 0; /* no filter in place */
YOSHIFUJI Hideakiacde4852007-03-25 20:12:32 -0700358 if (type == htons(ETH_P_IP) &&
Chas Williamsfb64c732007-12-30 23:18:29 -0800359 (((struct iphdr *)(skb->data))->daddr & brvcc->filter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 netmask) == brvcc->filter.prefix)
361 return 0;
YOSHIFUJI Hideakiacde4852007-03-25 20:12:32 -0700362 if (type == htons(ETH_P_ARP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return 0;
Chas Williamsfb64c732007-12-30 23:18:29 -0800364 /*
365 * TODO: we should probably filter ARPs too.. don't want to have
366 * them returning values that don't make sense, or is that ok?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 */
368 return 1; /* drop */
369}
370#endif /* CONFIG_ATM_BR2684_IPFILTER */
371
372static void br2684_close_vcc(struct br2684_vcc *brvcc)
373{
Stephen Hemminger52240062007-08-28 15:22:09 -0700374 pr_debug("removing VCC %p from dev %p\n", brvcc, brvcc->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 write_lock_irq(&devs_lock);
376 list_del(&brvcc->brvccs);
377 write_unlock_irq(&devs_lock);
378 brvcc->atmvcc->user_back = NULL; /* what about vcc->recvq ??? */
379 brvcc->old_push(brvcc->atmvcc, NULL); /* pass on the bad news */
380 kfree(brvcc);
381 module_put(THIS_MODULE);
382}
383
384/* when AAL5 PDU comes in: */
385static void br2684_push(struct atm_vcc *atmvcc, struct sk_buff *skb)
386{
387 struct br2684_vcc *brvcc = BR2684_VCC(atmvcc);
388 struct net_device *net_dev = brvcc->device;
389 struct br2684_dev *brdev = BRPRIV(net_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Joe Perches99824462010-01-26 11:40:00 +0000391 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 if (unlikely(skb == NULL)) {
394 /* skb==NULL means VCC is being destroyed */
395 br2684_close_vcc(brvcc);
396 if (list_empty(&brdev->brvccs)) {
Pavel Emelyanov1e0ba002008-05-04 18:00:36 -0700397 write_lock_irq(&devs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 list_del(&brdev->br2684_devs);
Pavel Emelyanov1e0ba002008-05-04 18:00:36 -0700399 write_unlock_irq(&devs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 unregister_netdev(net_dev);
David S. Miller5f6b1ea2008-05-06 00:00:16 -0700401 free_netdev(net_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
403 return;
404 }
405
406 skb_debug(skb);
407 atm_return(atmvcc, skb->truesize);
Stephen Hemminger52240062007-08-28 15:22:09 -0700408 pr_debug("skb from brdev %p\n", brdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 if (brvcc->encaps == e_llc) {
Eric Kinzie097b19a2007-12-30 23:17:53 -0800410
411 if (skb->len > 7 && skb->data[7] == 0x01)
412 __skb_trim(skb, skb->len - 4);
413
414 /* accept packets that have "ipv[46]" in the snap header */
Joe Perches641d7292010-01-26 11:40:04 +0000415 if ((skb->len >= (sizeof(llc_oui_ipv4))) &&
416 (memcmp(skb->data, llc_oui_ipv4,
417 sizeof(llc_oui_ipv4) - BR2684_ETHERTYPE_LEN) == 0)) {
418 if (memcmp(skb->data + 6, ethertype_ipv6,
419 sizeof(ethertype_ipv6)) == 0)
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700420 skb->protocol = htons(ETH_P_IPV6);
Joe Perches641d7292010-01-26 11:40:04 +0000421 else if (memcmp(skb->data + 6, ethertype_ipv4,
422 sizeof(ethertype_ipv4)) == 0)
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700423 skb->protocol = htons(ETH_P_IP);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700424 else
425 goto error;
Eric Kinzie097b19a2007-12-30 23:17:53 -0800426 skb_pull(skb, sizeof(llc_oui_ipv4));
427 skb_reset_network_header(skb);
428 skb->pkt_type = PACKET_HOST;
Joe Perches641d7292010-01-26 11:40:04 +0000429 /*
430 * Let us waste some time for checking the encapsulation.
431 * Note, that only 7 char is checked so frames with a valid FCS
432 * are also accepted (but FCS is not checked of course).
433 */
Eric Kinzie097b19a2007-12-30 23:17:53 -0800434 } else if ((skb->len >= sizeof(llc_oui_pid_pad)) &&
Chas Williamsfb64c732007-12-30 23:18:29 -0800435 (memcmp(skb->data, llc_oui_pid_pad, 7) == 0)) {
Eric Kinzie097b19a2007-12-30 23:17:53 -0800436 skb_pull(skb, sizeof(llc_oui_pid_pad));
437 skb->protocol = eth_type_trans(skb, net_dev);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700438 } else
439 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Eric Kinzie7e903c22008-06-16 17:18:18 -0700441 } else { /* e_vc */
442 if (brdev->payload == p_routed) {
443 struct iphdr *iph;
444
445 skb_reset_network_header(skb);
446 iph = ip_hdr(skb);
447 if (iph->version == 4)
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700448 skb->protocol = htons(ETH_P_IP);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700449 else if (iph->version == 6)
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700450 skb->protocol = htons(ETH_P_IPV6);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700451 else
452 goto error;
453 skb->pkt_type = PACKET_HOST;
454 } else { /* p_bridged */
455 /* first 2 chars should be 0 */
456 if (*((u16 *) (skb->data)) != 0)
457 goto error;
458 skb_pull(skb, BR2684_PAD_LEN);
459 skb->protocol = eth_type_trans(skb, net_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463#ifdef CONFIG_ATM_BR2684_IPFILTER
Eric Kinzie7e903c22008-06-16 17:18:18 -0700464 if (unlikely(packet_fails_filter(skb->protocol, brvcc, skb)))
465 goto dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466#endif /* CONFIG_ATM_BR2684_IPFILTER */
467 skb->dev = net_dev;
468 ATM_SKB(skb)->vcc = atmvcc; /* needed ? */
Stephen Hemminger52240062007-08-28 15:22:09 -0700469 pr_debug("received packet's protocol: %x\n", ntohs(skb->protocol));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 skb_debug(skb);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700471 /* sigh, interface is down? */
472 if (unlikely(!(net_dev->flags & IFF_UP)))
473 goto dropped;
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000474 net_dev->stats.rx_packets++;
475 net_dev->stats.rx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 memset(ATM_SKB(skb), 0, sizeof(struct atm_skb_data));
477 netif_rx(skb);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700478 return;
479
480dropped:
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000481 net_dev->stats.rx_dropped++;
Eric Kinzie7e903c22008-06-16 17:18:18 -0700482 goto free_skb;
483error:
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000484 net_dev->stats.rx_errors++;
Eric Kinzie7e903c22008-06-16 17:18:18 -0700485free_skb:
486 dev_kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
Chas Williamsfb64c732007-12-30 23:18:29 -0800489/*
490 * Assign a vcc to a dev
491 * Note: we do not have explicit unassign, but look at _push()
492 */
493static int br2684_regvcc(struct atm_vcc *atmvcc, void __user * arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 struct br2684_vcc *brvcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 struct br2684_dev *brdev;
497 struct net_device *net_dev;
498 struct atm_backend_br2684 be;
Jorge Boncompte [DTI2]4e55f572011-11-21 10:25:57 +0000499 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 if (copy_from_user(&be, arg, sizeof be))
502 return -EFAULT;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700503 brvcc = kzalloc(sizeof(struct br2684_vcc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (!brvcc)
505 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 write_lock_irq(&devs_lock);
507 net_dev = br2684_find_dev(&be.ifspec);
508 if (net_dev == NULL) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300509 pr_err("tried to attach to non-existent device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 err = -ENXIO;
511 goto error;
512 }
513 brdev = BRPRIV(net_dev);
514 if (atmvcc->push == NULL) {
515 err = -EBADFD;
516 goto error;
517 }
518 if (!list_empty(&brdev->brvccs)) {
519 /* Only 1 VCC/dev right now */
520 err = -EEXIST;
521 goto error;
522 }
Joe Perches641d7292010-01-26 11:40:04 +0000523 if (be.fcs_in != BR2684_FCSIN_NO ||
524 be.fcs_out != BR2684_FCSOUT_NO ||
525 be.fcs_auto || be.has_vpiid || be.send_padding ||
526 (be.encaps != BR2684_ENCAPS_VC &&
527 be.encaps != BR2684_ENCAPS_LLC) ||
528 be.min_size != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 err = -EINVAL;
530 goto error;
531 }
Joe Perches99824462010-01-26 11:40:00 +0000532 pr_debug("vcc=%p, encaps=%d, brvcc=%p\n", atmvcc, be.encaps, brvcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (list_empty(&brdev->brvccs) && !brdev->mac_was_set) {
534 unsigned char *esi = atmvcc->dev->esi;
535 if (esi[0] | esi[1] | esi[2] | esi[3] | esi[4] | esi[5])
536 memcpy(net_dev->dev_addr, esi, net_dev->addr_len);
537 else
538 net_dev->dev_addr[2] = 1;
539 }
540 list_add(&brvcc->brvccs, &brdev->brvccs);
541 write_unlock_irq(&devs_lock);
542 brvcc->device = net_dev;
543 brvcc->atmvcc = atmvcc;
544 atmvcc->user_back = brvcc;
Chas Williamsfb64c732007-12-30 23:18:29 -0800545 brvcc->encaps = (enum br2684_encaps)be.encaps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 brvcc->old_push = atmvcc->push;
Karl Hiramoto137742c2009-09-02 23:26:39 -0700547 brvcc->old_pop = atmvcc->pop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 barrier();
549 atmvcc->push = br2684_push;
Karl Hiramoto137742c2009-09-02 23:26:39 -0700550 atmvcc->pop = br2684_pop;
David S. Millerc40a27f2006-11-30 21:05:23 -0800551
Karl Hiramoto00506612010-07-08 20:55:31 +0000552 /* initialize netdev carrier state */
553 if (atmvcc->dev->signal == ATM_PHY_SIG_LOST)
554 netif_carrier_off(net_dev);
555 else
556 netif_carrier_on(net_dev);
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 __module_get(THIS_MODULE);
Jorge Boncompte [DTI2]4e55f572011-11-21 10:25:57 +0000559
560 /* re-process everything received between connection setup and
561 backend setup */
562 vcc_process_recv_queue(atmvcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return 0;
Joe Perches641d7292010-01-26 11:40:04 +0000564
565error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 write_unlock_irq(&devs_lock);
567 kfree(brvcc);
568 return err;
569}
570
Stephen Hemminger0ba25ff2009-01-09 13:00:59 +0000571static const struct net_device_ops br2684_netdev_ops = {
572 .ndo_start_xmit = br2684_start_xmit,
573 .ndo_set_mac_address = br2684_mac_addr,
574 .ndo_change_mtu = eth_change_mtu,
575 .ndo_validate_addr = eth_validate_addr,
576};
577
chas williams - CONTRACTOR2e302eb2009-12-04 11:06:32 +0000578static const struct net_device_ops br2684_netdev_ops_routed = {
579 .ndo_start_xmit = br2684_start_xmit,
580 .ndo_set_mac_address = br2684_mac_addr,
581 .ndo_change_mtu = eth_change_mtu
582};
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584static void br2684_setup(struct net_device *netdev)
585{
586 struct br2684_dev *brdev = BRPRIV(netdev);
587
588 ether_setup(netdev);
Pascal Hambourg9e667b22011-08-17 08:37:18 +0200589 netdev->hard_header_len += sizeof(llc_oui_pid_pad); /* worst case */
Rabin Vincent902e5ea2009-05-02 13:49:36 -0700590 brdev->net_dev = netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Stephen Hemminger0ba25ff2009-01-09 13:00:59 +0000592 netdev->netdev_ops = &br2684_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 INIT_LIST_HEAD(&brdev->brvccs);
595}
596
Eric Kinzie097b19a2007-12-30 23:17:53 -0800597static void br2684_setup_routed(struct net_device *netdev)
598{
599 struct br2684_dev *brdev = BRPRIV(netdev);
chas williams - CONTRACTOR2e302eb2009-12-04 11:06:32 +0000600
Eric Kinzie097b19a2007-12-30 23:17:53 -0800601 brdev->net_dev = netdev;
Pascal Hambourg9e667b22011-08-17 08:37:18 +0200602 netdev->hard_header_len = sizeof(llc_oui_ipv4); /* worst case */
chas williams - CONTRACTOR2e302eb2009-12-04 11:06:32 +0000603 netdev->netdev_ops = &br2684_netdev_ops_routed;
Eric Kinzie097b19a2007-12-30 23:17:53 -0800604 netdev->addr_len = 0;
605 netdev->mtu = 1500;
606 netdev->type = ARPHRD_PPP;
607 netdev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
608 netdev->tx_queue_len = 100;
609 INIT_LIST_HEAD(&brdev->brvccs);
610}
611
Joe Perches641d7292010-01-26 11:40:04 +0000612static int br2684_create(void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
614 int err;
615 struct net_device *netdev;
616 struct br2684_dev *brdev;
617 struct atm_newif_br2684 ni;
Eric Kinzie097b19a2007-12-30 23:17:53 -0800618 enum br2684_payload payload;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Joe Perches99824462010-01-26 11:40:00 +0000620 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Joe Perches641d7292010-01-26 11:40:04 +0000622 if (copy_from_user(&ni, arg, sizeof ni))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return -EFAULT;
Eric Kinzie097b19a2007-12-30 23:17:53 -0800624
625 if (ni.media & BR2684_FLAG_ROUTED)
626 payload = p_routed;
627 else
628 payload = p_bridged;
Chas Williamsfb64c732007-12-30 23:18:29 -0800629 ni.media &= 0xffff; /* strip flags */
Eric Kinzie097b19a2007-12-30 23:17:53 -0800630
Joe Perches641d7292010-01-26 11:40:04 +0000631 if (ni.media != BR2684_MEDIA_ETHERNET || ni.mtu != 1500)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 netdev = alloc_netdev(sizeof(struct br2684_dev),
635 ni.ifname[0] ? ni.ifname : "nas%d",
Eric Kinzie097b19a2007-12-30 23:17:53 -0800636 (payload == p_routed) ?
Chas Williamsfb64c732007-12-30 23:18:29 -0800637 br2684_setup_routed : br2684_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 if (!netdev)
639 return -ENOMEM;
640
641 brdev = BRPRIV(netdev);
642
Stephen Hemminger52240062007-08-28 15:22:09 -0700643 pr_debug("registered netdev %s\n", netdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 /* open, stop, do_ioctl ? */
645 err = register_netdev(netdev);
646 if (err < 0) {
Joe Perches99824462010-01-26 11:40:00 +0000647 pr_err("register_netdev failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 free_netdev(netdev);
649 return err;
650 }
651
652 write_lock_irq(&devs_lock);
Karl Hiramoto00506612010-07-08 20:55:31 +0000653
Eric Kinzie097b19a2007-12-30 23:17:53 -0800654 brdev->payload = payload;
Karl Hiramoto00506612010-07-08 20:55:31 +0000655
656 if (list_empty(&br2684_devs)) {
657 /* 1st br2684 device */
Karl Hiramoto00506612010-07-08 20:55:31 +0000658 brdev->number = 1;
659 } else
660 brdev->number = BRPRIV(list_entry_brdev(br2684_devs.prev))->number + 1;
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 list_add_tail(&brdev->br2684_devs, &br2684_devs);
663 write_unlock_irq(&devs_lock);
664 return 0;
665}
666
667/*
668 * This handles ioctls actually performed on our vcc - we must return
669 * -ENOIOCTLCMD for any unrecognized ioctl
670 */
671static int br2684_ioctl(struct socket *sock, unsigned int cmd,
Chas Williamsfb64c732007-12-30 23:18:29 -0800672 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
674 struct atm_vcc *atmvcc = ATM_SD(sock);
675 void __user *argp = (void __user *)arg;
Chas Williamsfb64c732007-12-30 23:18:29 -0800676 atm_backend_t b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678 int err;
Chas Williamsfb64c732007-12-30 23:18:29 -0800679 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 case ATM_SETBACKEND:
Chas Williamsfb64c732007-12-30 23:18:29 -0800681 case ATM_NEWBACKENDIF:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 err = get_user(b, (atm_backend_t __user *) argp);
683 if (err)
684 return -EFAULT;
685 if (b != ATM_BACKEND_BR2684)
686 return -ENOIOCTLCMD;
687 if (!capable(CAP_NET_ADMIN))
688 return -EPERM;
689 if (cmd == ATM_SETBACKEND)
690 return br2684_regvcc(atmvcc, argp);
691 else
692 return br2684_create(argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693#ifdef CONFIG_ATM_BR2684_IPFILTER
694 case BR2684_SETFILT:
695 if (atmvcc->push != br2684_push)
696 return -ENOIOCTLCMD;
697 if (!capable(CAP_NET_ADMIN))
698 return -EPERM;
699 err = br2684_setfilt(atmvcc, argp);
Chas Williamsfb64c732007-12-30 23:18:29 -0800700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return err;
702#endif /* CONFIG_ATM_BR2684_IPFILTER */
703 }
704 return -ENOIOCTLCMD;
705}
706
707static struct atm_ioctl br2684_ioctl_ops = {
Chas Williamsfb64c732007-12-30 23:18:29 -0800708 .owner = THIS_MODULE,
709 .ioctl = br2684_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710};
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712#ifdef CONFIG_PROC_FS
Chas Williamsfb64c732007-12-30 23:18:29 -0800713static void *br2684_seq_start(struct seq_file *seq, loff_t * pos)
Eric Dumazet5c17d5f2008-01-15 03:29:50 -0800714 __acquires(devs_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 read_lock(&devs_lock);
Pavel Emelianov9af97182007-07-09 13:12:24 -0700717 return seq_list_start(&br2684_devs, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
719
Chas Williamsfb64c732007-12-30 23:18:29 -0800720static void *br2684_seq_next(struct seq_file *seq, void *v, loff_t * pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
Pavel Emelianov9af97182007-07-09 13:12:24 -0700722 return seq_list_next(v, &br2684_devs, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
724
725static void br2684_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet5c17d5f2008-01-15 03:29:50 -0800726 __releases(devs_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
728 read_unlock(&devs_lock);
729}
730
731static int br2684_seq_show(struct seq_file *seq, void *v)
732{
Pavel Emelianov9af97182007-07-09 13:12:24 -0700733 const struct br2684_dev *brdev = list_entry(v, struct br2684_dev,
Chas Williamsfb64c732007-12-30 23:18:29 -0800734 br2684_devs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 const struct net_device *net_dev = brdev->net_dev;
736 const struct br2684_vcc *brvcc;
737
Johannes Berge1749612008-10-27 15:59:26 -0700738 seq_printf(seq, "dev %.16s: num=%d, mac=%pM (%s)\n",
Joe Perches0795af52007-10-03 17:59:30 -0700739 net_dev->name,
740 brdev->number,
Johannes Berge1749612008-10-27 15:59:26 -0700741 net_dev->dev_addr,
Joe Perches0795af52007-10-03 17:59:30 -0700742 brdev->mac_was_set ? "set" : "auto");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 list_for_each_entry(brvcc, &brdev->brvccs, brvccs) {
Eric Kinzie097b19a2007-12-30 23:17:53 -0800745 seq_printf(seq, " vcc %d.%d.%d: encaps=%s payload=%s"
Chas Williamsfb64c732007-12-30 23:18:29 -0800746 ", failed copies %u/%u"
747 "\n", brvcc->atmvcc->dev->number,
748 brvcc->atmvcc->vpi, brvcc->atmvcc->vci,
749 (brvcc->encaps == e_llc) ? "LLC" : "VC",
750 (brdev->payload == p_bridged) ? "bridged" : "routed",
751 brvcc->copies_failed, brvcc->copies_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752#ifdef CONFIG_ATM_BR2684_IPFILTER
753#define b1(var, byte) ((u8 *) &brvcc->filter.var)[byte]
754#define bs(var) b1(var, 0), b1(var, 1), b1(var, 2), b1(var, 3)
Chas Williamsfb64c732007-12-30 23:18:29 -0800755 if (brvcc->filter.netmask != 0)
756 seq_printf(seq, " filter=%d.%d.%d.%d/"
757 "%d.%d.%d.%d\n", bs(prefix), bs(netmask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758#undef bs
759#undef b1
760#endif /* CONFIG_ATM_BR2684_IPFILTER */
761 }
762 return 0;
763}
764
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700765static const struct seq_operations br2684_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 .start = br2684_seq_start,
Chas Williamsfb64c732007-12-30 23:18:29 -0800767 .next = br2684_seq_next,
768 .stop = br2684_seq_stop,
769 .show = br2684_seq_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770};
771
772static int br2684_proc_open(struct inode *inode, struct file *file)
773{
774 return seq_open(file, &br2684_seq_ops);
775}
776
Arjan van de Ven9a321442007-02-12 00:55:35 -0800777static const struct file_operations br2684_proc_ops = {
Chas Williamsfb64c732007-12-30 23:18:29 -0800778 .owner = THIS_MODULE,
779 .open = br2684_proc_open,
780 .read = seq_read,
781 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 .release = seq_release,
783};
784
785extern struct proc_dir_entry *atm_proc_root; /* from proc.c */
Chas Williamsfb64c732007-12-30 23:18:29 -0800786#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788static int __init br2684_init(void)
789{
790#ifdef CONFIG_PROC_FS
791 struct proc_dir_entry *p;
Wang Chen16e297b2008-02-28 13:55:45 -0800792 p = proc_create("br2684", 0, atm_proc_root, &br2684_proc_ops);
793 if (p == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795#endif
796 register_atm_ioctl(&br2684_ioctl_ops);
Karl Hiramotoa3d67132010-09-23 01:50:54 +0000797 register_atmdevice_notifier(&atm_dev_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return 0;
799}
800
801static void __exit br2684_exit(void)
802{
803 struct net_device *net_dev;
804 struct br2684_dev *brdev;
805 struct br2684_vcc *brvcc;
806 deregister_atm_ioctl(&br2684_ioctl_ops);
807
808#ifdef CONFIG_PROC_FS
809 remove_proc_entry("br2684", atm_proc_root);
810#endif
811
Karl Hiramoto00506612010-07-08 20:55:31 +0000812
Karl Hiramotoa3d67132010-09-23 01:50:54 +0000813 unregister_atmdevice_notifier(&atm_dev_notifier);
Karl Hiramoto00506612010-07-08 20:55:31 +0000814
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 while (!list_empty(&br2684_devs)) {
816 net_dev = list_entry_brdev(br2684_devs.next);
817 brdev = BRPRIV(net_dev);
818 while (!list_empty(&brdev->brvccs)) {
819 brvcc = list_entry_brvcc(brdev->brvccs.next);
820 br2684_close_vcc(brvcc);
821 }
822
823 list_del(&brdev->br2684_devs);
824 unregister_netdev(net_dev);
David S. Miller5f6b1ea2008-05-06 00:00:16 -0700825 free_netdev(net_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
827}
828
829module_init(br2684_init);
830module_exit(br2684_exit);
831
832MODULE_AUTHOR("Marcell GAL");
833MODULE_DESCRIPTION("RFC2684 bridged protocols over ATM/AAL5");
834MODULE_LICENSE("GPL");