blob: d07223c834af2a6b2bc45606d64d0093f30d9897 [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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 int minheadroom = (brvcc->encaps == e_llc) ? 10 : 2;
Eric Kinzie097b19a2007-12-30 23:17:53 -0800206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (skb_headroom(skb) < minheadroom) {
208 struct sk_buff *skb2 = skb_realloc_headroom(skb, minheadroom);
209 brvcc->copies_needed++;
210 dev_kfree_skb(skb);
211 if (skb2 == NULL) {
212 brvcc->copies_failed++;
213 return 0;
214 }
215 skb = skb2;
216 }
Eric Kinzie097b19a2007-12-30 23:17:53 -0800217
218 if (brvcc->encaps == e_llc) {
219 if (brdev->payload == p_bridged) {
220 skb_push(skb, sizeof(llc_oui_pid_pad));
Chas Williamsfb64c732007-12-30 23:18:29 -0800221 skb_copy_to_linear_data(skb, llc_oui_pid_pad,
222 sizeof(llc_oui_pid_pad));
Eric Kinzie097b19a2007-12-30 23:17:53 -0800223 } else if (brdev->payload == p_routed) {
224 unsigned short prot = ntohs(skb->protocol);
225
226 skb_push(skb, sizeof(llc_oui_ipv4));
227 switch (prot) {
Chas Williamsfb64c732007-12-30 23:18:29 -0800228 case ETH_P_IP:
229 skb_copy_to_linear_data(skb, llc_oui_ipv4,
230 sizeof(llc_oui_ipv4));
231 break;
232 case ETH_P_IPV6:
233 skb_copy_to_linear_data(skb, llc_oui_ipv6,
234 sizeof(llc_oui_ipv6));
235 break;
236 default:
237 dev_kfree_skb(skb);
238 return 0;
Eric Kinzie097b19a2007-12-30 23:17:53 -0800239 }
240 }
Eric Kinzie7e903c22008-06-16 17:18:18 -0700241 } else { /* e_vc */
242 if (brdev->payload == p_bridged) {
243 skb_push(skb, 2);
Eric Kinzie097b19a2007-12-30 23:17:53 -0800244 memset(skb->data, 0, 2);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700245 }
Eric Kinzie097b19a2007-12-30 23:17:53 -0800246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 skb_debug(skb);
248
249 ATM_SKB(skb)->vcc = atmvcc = brvcc->atmvcc;
Stephen Hemminger52240062007-08-28 15:22:09 -0700250 pr_debug("atm_skb(%p)->vcc(%p)->dev(%p)\n", skb, atmvcc, atmvcc->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 atomic_add(skb->truesize, &sk_atm(atmvcc)->sk_wmem_alloc);
252 ATM_SKB(skb)->atm_options = atmvcc->atm_options;
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000253 dev->stats.tx_packets++;
254 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 atmvcc->send(atmvcc, skb);
Karl Hiramoto137742c2009-09-02 23:26:39 -0700256
257 if (!atm_may_send(atmvcc, 0)) {
258 netif_stop_queue(brvcc->device);
259 /*check for race with br2684_pop*/
260 if (atm_may_send(atmvcc, 0))
261 netif_start_queue(brvcc->device);
262 }
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 return 1;
265}
266
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -0700267static inline struct br2684_vcc *pick_outgoing_vcc(const struct sk_buff *skb,
268 const struct br2684_dev *brdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Chas Williamsfb64c732007-12-30 23:18:29 -0800270 return list_empty(&brdev->brvccs) ? NULL : list_entry_brvcc(brdev->brvccs.next); /* 1 vcc/dev right now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
Stephen Hemminger3c805a22009-08-31 19:50:42 +0000273static netdev_tx_t br2684_start_xmit(struct sk_buff *skb,
274 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276 struct br2684_dev *brdev = BRPRIV(dev);
277 struct br2684_vcc *brvcc;
278
Joe Perches99824462010-01-26 11:40:00 +0000279 pr_debug("skb_dst(skb)=%p\n", skb_dst(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 read_lock(&devs_lock);
281 brvcc = pick_outgoing_vcc(skb, brdev);
282 if (brvcc == NULL) {
Stephen Hemminger52240062007-08-28 15:22:09 -0700283 pr_debug("no vcc attached to dev %s\n", dev->name);
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000284 dev->stats.tx_errors++;
285 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 /* netif_stop_queue(dev); */
287 dev_kfree_skb(skb);
288 read_unlock(&devs_lock);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000289 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000291 if (!br2684_xmit_vcc(skb, dev, brvcc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 /*
293 * We should probably use netif_*_queue() here, but that
294 * involves added complication. We need to walk before
Chas Williamsfb64c732007-12-30 23:18:29 -0800295 * we can run.
296 *
297 * Don't free here! this pointer might be no longer valid!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 */
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000299 dev->stats.tx_errors++;
300 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302 read_unlock(&devs_lock);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000303 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306/*
307 * We remember when the MAC gets set, so we don't override it later with
308 * the ESI of the ATM card of the first VC
309 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310static int br2684_mac_addr(struct net_device *dev, void *p)
311{
Stephen Hemminger0ba25ff2009-01-09 13:00:59 +0000312 int err = eth_mac_addr(dev, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 if (!err)
314 BRPRIV(dev)->mac_was_set = 1;
315 return err;
316}
317
318#ifdef CONFIG_ATM_BR2684_IPFILTER
319/* this IOCTL is experimental. */
Chas Williamsfb64c732007-12-30 23:18:29 -0800320static int br2684_setfilt(struct atm_vcc *atmvcc, void __user * arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 struct br2684_vcc *brvcc;
323 struct br2684_filter_set fs;
324
325 if (copy_from_user(&fs, arg, sizeof fs))
326 return -EFAULT;
327 if (fs.ifspec.method != BR2684_FIND_BYNOTHING) {
328 /*
329 * This is really a per-vcc thing, but we can also search
Chas Williamsfb64c732007-12-30 23:18:29 -0800330 * by device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 */
332 struct br2684_dev *brdev;
333 read_lock(&devs_lock);
334 brdev = BRPRIV(br2684_find_dev(&fs.ifspec));
Joe Perches641d7292010-01-26 11:40:04 +0000335 if (brdev == NULL || list_empty(&brdev->brvccs) ||
336 brdev->brvccs.next != brdev->brvccs.prev) /* >1 VCC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 brvcc = NULL;
338 else
339 brvcc = list_entry_brvcc(brdev->brvccs.next);
340 read_unlock(&devs_lock);
341 if (brvcc == NULL)
342 return -ESRCH;
343 } else
344 brvcc = BR2684_VCC(atmvcc);
345 memcpy(&brvcc->filter, &fs.filter, sizeof(brvcc->filter));
346 return 0;
347}
348
349/* Returns 1 if packet should be dropped */
350static inline int
Al Viro30d492d2006-11-14 21:11:29 -0800351packet_fails_filter(__be16 type, struct br2684_vcc *brvcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 if (brvcc->filter.netmask == 0)
Chas Williamsfb64c732007-12-30 23:18:29 -0800354 return 0; /* no filter in place */
YOSHIFUJI Hideakiacde4852007-03-25 20:12:32 -0700355 if (type == htons(ETH_P_IP) &&
Chas Williamsfb64c732007-12-30 23:18:29 -0800356 (((struct iphdr *)(skb->data))->daddr & brvcc->filter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 netmask) == brvcc->filter.prefix)
358 return 0;
YOSHIFUJI Hideakiacde4852007-03-25 20:12:32 -0700359 if (type == htons(ETH_P_ARP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return 0;
Chas Williamsfb64c732007-12-30 23:18:29 -0800361 /*
362 * TODO: we should probably filter ARPs too.. don't want to have
363 * them returning values that don't make sense, or is that ok?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 */
365 return 1; /* drop */
366}
367#endif /* CONFIG_ATM_BR2684_IPFILTER */
368
369static void br2684_close_vcc(struct br2684_vcc *brvcc)
370{
Stephen Hemminger52240062007-08-28 15:22:09 -0700371 pr_debug("removing VCC %p from dev %p\n", brvcc, brvcc->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 write_lock_irq(&devs_lock);
373 list_del(&brvcc->brvccs);
374 write_unlock_irq(&devs_lock);
375 brvcc->atmvcc->user_back = NULL; /* what about vcc->recvq ??? */
376 brvcc->old_push(brvcc->atmvcc, NULL); /* pass on the bad news */
377 kfree(brvcc);
378 module_put(THIS_MODULE);
379}
380
381/* when AAL5 PDU comes in: */
382static void br2684_push(struct atm_vcc *atmvcc, struct sk_buff *skb)
383{
384 struct br2684_vcc *brvcc = BR2684_VCC(atmvcc);
385 struct net_device *net_dev = brvcc->device;
386 struct br2684_dev *brdev = BRPRIV(net_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Joe Perches99824462010-01-26 11:40:00 +0000388 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 if (unlikely(skb == NULL)) {
391 /* skb==NULL means VCC is being destroyed */
392 br2684_close_vcc(brvcc);
393 if (list_empty(&brdev->brvccs)) {
Pavel Emelyanov1e0ba002008-05-04 18:00:36 -0700394 write_lock_irq(&devs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 list_del(&brdev->br2684_devs);
Pavel Emelyanov1e0ba002008-05-04 18:00:36 -0700396 write_unlock_irq(&devs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 unregister_netdev(net_dev);
David S. Miller5f6b1ea2008-05-06 00:00:16 -0700398 free_netdev(net_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
400 return;
401 }
402
403 skb_debug(skb);
404 atm_return(atmvcc, skb->truesize);
Stephen Hemminger52240062007-08-28 15:22:09 -0700405 pr_debug("skb from brdev %p\n", brdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (brvcc->encaps == e_llc) {
Eric Kinzie097b19a2007-12-30 23:17:53 -0800407
408 if (skb->len > 7 && skb->data[7] == 0x01)
409 __skb_trim(skb, skb->len - 4);
410
411 /* accept packets that have "ipv[46]" in the snap header */
Joe Perches641d7292010-01-26 11:40:04 +0000412 if ((skb->len >= (sizeof(llc_oui_ipv4))) &&
413 (memcmp(skb->data, llc_oui_ipv4,
414 sizeof(llc_oui_ipv4) - BR2684_ETHERTYPE_LEN) == 0)) {
415 if (memcmp(skb->data + 6, ethertype_ipv6,
416 sizeof(ethertype_ipv6)) == 0)
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700417 skb->protocol = htons(ETH_P_IPV6);
Joe Perches641d7292010-01-26 11:40:04 +0000418 else if (memcmp(skb->data + 6, ethertype_ipv4,
419 sizeof(ethertype_ipv4)) == 0)
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700420 skb->protocol = htons(ETH_P_IP);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700421 else
422 goto error;
Eric Kinzie097b19a2007-12-30 23:17:53 -0800423 skb_pull(skb, sizeof(llc_oui_ipv4));
424 skb_reset_network_header(skb);
425 skb->pkt_type = PACKET_HOST;
Joe Perches641d7292010-01-26 11:40:04 +0000426 /*
427 * Let us waste some time for checking the encapsulation.
428 * Note, that only 7 char is checked so frames with a valid FCS
429 * are also accepted (but FCS is not checked of course).
430 */
Eric Kinzie097b19a2007-12-30 23:17:53 -0800431 } else if ((skb->len >= sizeof(llc_oui_pid_pad)) &&
Chas Williamsfb64c732007-12-30 23:18:29 -0800432 (memcmp(skb->data, llc_oui_pid_pad, 7) == 0)) {
Eric Kinzie097b19a2007-12-30 23:17:53 -0800433 skb_pull(skb, sizeof(llc_oui_pid_pad));
434 skb->protocol = eth_type_trans(skb, net_dev);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700435 } else
436 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Eric Kinzie7e903c22008-06-16 17:18:18 -0700438 } else { /* e_vc */
439 if (brdev->payload == p_routed) {
440 struct iphdr *iph;
441
442 skb_reset_network_header(skb);
443 iph = ip_hdr(skb);
444 if (iph->version == 4)
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700445 skb->protocol = htons(ETH_P_IP);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700446 else if (iph->version == 6)
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700447 skb->protocol = htons(ETH_P_IPV6);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700448 else
449 goto error;
450 skb->pkt_type = PACKET_HOST;
451 } else { /* p_bridged */
452 /* first 2 chars should be 0 */
453 if (*((u16 *) (skb->data)) != 0)
454 goto error;
455 skb_pull(skb, BR2684_PAD_LEN);
456 skb->protocol = eth_type_trans(skb, net_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460#ifdef CONFIG_ATM_BR2684_IPFILTER
Eric Kinzie7e903c22008-06-16 17:18:18 -0700461 if (unlikely(packet_fails_filter(skb->protocol, brvcc, skb)))
462 goto dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463#endif /* CONFIG_ATM_BR2684_IPFILTER */
464 skb->dev = net_dev;
465 ATM_SKB(skb)->vcc = atmvcc; /* needed ? */
Stephen Hemminger52240062007-08-28 15:22:09 -0700466 pr_debug("received packet's protocol: %x\n", ntohs(skb->protocol));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 skb_debug(skb);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700468 /* sigh, interface is down? */
469 if (unlikely(!(net_dev->flags & IFF_UP)))
470 goto dropped;
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000471 net_dev->stats.rx_packets++;
472 net_dev->stats.rx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 memset(ATM_SKB(skb), 0, sizeof(struct atm_skb_data));
474 netif_rx(skb);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700475 return;
476
477dropped:
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000478 net_dev->stats.rx_dropped++;
Eric Kinzie7e903c22008-06-16 17:18:18 -0700479 goto free_skb;
480error:
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000481 net_dev->stats.rx_errors++;
Eric Kinzie7e903c22008-06-16 17:18:18 -0700482free_skb:
483 dev_kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
Chas Williamsfb64c732007-12-30 23:18:29 -0800486/*
487 * Assign a vcc to a dev
488 * Note: we do not have explicit unassign, but look at _push()
489 */
490static int br2684_regvcc(struct atm_vcc *atmvcc, void __user * arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
David S. Millerb6211ae2009-05-28 16:36:47 -0700492 struct sk_buff_head queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 int err;
494 struct br2684_vcc *brvcc;
David S. Millerb6211ae2009-05-28 16:36:47 -0700495 struct sk_buff *skb, *tmp;
David S. Millerc40a27f2006-11-30 21:05:23 -0800496 struct sk_buff_head *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 struct br2684_dev *brdev;
498 struct net_device *net_dev;
499 struct atm_backend_br2684 be;
David S. Millerc40a27f2006-11-30 21:05:23 -0800500 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 if (copy_from_user(&be, arg, sizeof be))
503 return -EFAULT;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700504 brvcc = kzalloc(sizeof(struct br2684_vcc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if (!brvcc)
506 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 write_lock_irq(&devs_lock);
508 net_dev = br2684_find_dev(&be.ifspec);
509 if (net_dev == NULL) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300510 pr_err("tried to attach to non-existent device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 err = -ENXIO;
512 goto error;
513 }
514 brdev = BRPRIV(net_dev);
515 if (atmvcc->push == NULL) {
516 err = -EBADFD;
517 goto error;
518 }
519 if (!list_empty(&brdev->brvccs)) {
520 /* Only 1 VCC/dev right now */
521 err = -EEXIST;
522 goto error;
523 }
Joe Perches641d7292010-01-26 11:40:04 +0000524 if (be.fcs_in != BR2684_FCSIN_NO ||
525 be.fcs_out != BR2684_FCSOUT_NO ||
526 be.fcs_auto || be.has_vpiid || be.send_padding ||
527 (be.encaps != BR2684_ENCAPS_VC &&
528 be.encaps != BR2684_ENCAPS_LLC) ||
529 be.min_size != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 err = -EINVAL;
531 goto error;
532 }
Joe Perches99824462010-01-26 11:40:00 +0000533 pr_debug("vcc=%p, encaps=%d, brvcc=%p\n", atmvcc, be.encaps, brvcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 if (list_empty(&brdev->brvccs) && !brdev->mac_was_set) {
535 unsigned char *esi = atmvcc->dev->esi;
536 if (esi[0] | esi[1] | esi[2] | esi[3] | esi[4] | esi[5])
537 memcpy(net_dev->dev_addr, esi, net_dev->addr_len);
538 else
539 net_dev->dev_addr[2] = 1;
540 }
541 list_add(&brvcc->brvccs, &brdev->brvccs);
542 write_unlock_irq(&devs_lock);
543 brvcc->device = net_dev;
544 brvcc->atmvcc = atmvcc;
545 atmvcc->user_back = brvcc;
Chas Williamsfb64c732007-12-30 23:18:29 -0800546 brvcc->encaps = (enum br2684_encaps)be.encaps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 brvcc->old_push = atmvcc->push;
Karl Hiramoto137742c2009-09-02 23:26:39 -0700548 brvcc->old_pop = atmvcc->pop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 barrier();
550 atmvcc->push = br2684_push;
Karl Hiramoto137742c2009-09-02 23:26:39 -0700551 atmvcc->pop = br2684_pop;
David S. Millerc40a27f2006-11-30 21:05:23 -0800552
David S. Millerb6211ae2009-05-28 16:36:47 -0700553 __skb_queue_head_init(&queue);
David S. Millerc40a27f2006-11-30 21:05:23 -0800554 rq = &sk_atm(atmvcc)->sk_receive_queue;
555
556 spin_lock_irqsave(&rq->lock, flags);
David S. Millerb6211ae2009-05-28 16:36:47 -0700557 skb_queue_splice_init(rq, &queue);
David S. Millerc40a27f2006-11-30 21:05:23 -0800558 spin_unlock_irqrestore(&rq->lock, flags);
559
David S. Millerb6211ae2009-05-28 16:36:47 -0700560 skb_queue_walk_safe(&queue, skb, tmp) {
Daniel Schwierzeckfbe5e292011-08-19 12:04:20 +0000561 struct net_device *dev;
562
563 br2684_push(atmvcc, skb);
564 dev = skb->dev;
David S. Millerc40a27f2006-11-30 21:05:23 -0800565
David S. Millerb6211ae2009-05-28 16:36:47 -0700566 dev->stats.rx_bytes -= skb->len;
567 dev->stats.rx_packets--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
Karl Hiramoto00506612010-07-08 20:55:31 +0000569
570 /* initialize netdev carrier state */
571 if (atmvcc->dev->signal == ATM_PHY_SIG_LOST)
572 netif_carrier_off(net_dev);
573 else
574 netif_carrier_on(net_dev);
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 __module_get(THIS_MODULE);
577 return 0;
Joe Perches641d7292010-01-26 11:40:04 +0000578
579error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 write_unlock_irq(&devs_lock);
581 kfree(brvcc);
582 return err;
583}
584
Stephen Hemminger0ba25ff2009-01-09 13:00:59 +0000585static const struct net_device_ops br2684_netdev_ops = {
586 .ndo_start_xmit = br2684_start_xmit,
587 .ndo_set_mac_address = br2684_mac_addr,
588 .ndo_change_mtu = eth_change_mtu,
589 .ndo_validate_addr = eth_validate_addr,
590};
591
chas williams - CONTRACTOR2e302eb2009-12-04 11:06:32 +0000592static const struct net_device_ops br2684_netdev_ops_routed = {
593 .ndo_start_xmit = br2684_start_xmit,
594 .ndo_set_mac_address = br2684_mac_addr,
595 .ndo_change_mtu = eth_change_mtu
596};
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598static void br2684_setup(struct net_device *netdev)
599{
600 struct br2684_dev *brdev = BRPRIV(netdev);
601
602 ether_setup(netdev);
Rabin Vincent902e5ea2009-05-02 13:49:36 -0700603 brdev->net_dev = netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Stephen Hemminger0ba25ff2009-01-09 13:00:59 +0000605 netdev->netdev_ops = &br2684_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 INIT_LIST_HEAD(&brdev->brvccs);
608}
609
Eric Kinzie097b19a2007-12-30 23:17:53 -0800610static void br2684_setup_routed(struct net_device *netdev)
611{
612 struct br2684_dev *brdev = BRPRIV(netdev);
chas williams - CONTRACTOR2e302eb2009-12-04 11:06:32 +0000613
Eric Kinzie097b19a2007-12-30 23:17:53 -0800614 brdev->net_dev = netdev;
Eric Kinzie097b19a2007-12-30 23:17:53 -0800615 netdev->hard_header_len = 0;
chas williams - CONTRACTOR2e302eb2009-12-04 11:06:32 +0000616 netdev->netdev_ops = &br2684_netdev_ops_routed;
Eric Kinzie097b19a2007-12-30 23:17:53 -0800617 netdev->addr_len = 0;
618 netdev->mtu = 1500;
619 netdev->type = ARPHRD_PPP;
620 netdev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
621 netdev->tx_queue_len = 100;
622 INIT_LIST_HEAD(&brdev->brvccs);
623}
624
Joe Perches641d7292010-01-26 11:40:04 +0000625static int br2684_create(void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
627 int err;
628 struct net_device *netdev;
629 struct br2684_dev *brdev;
630 struct atm_newif_br2684 ni;
Eric Kinzie097b19a2007-12-30 23:17:53 -0800631 enum br2684_payload payload;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Joe Perches99824462010-01-26 11:40:00 +0000633 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Joe Perches641d7292010-01-26 11:40:04 +0000635 if (copy_from_user(&ni, arg, sizeof ni))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return -EFAULT;
Eric Kinzie097b19a2007-12-30 23:17:53 -0800637
638 if (ni.media & BR2684_FLAG_ROUTED)
639 payload = p_routed;
640 else
641 payload = p_bridged;
Chas Williamsfb64c732007-12-30 23:18:29 -0800642 ni.media &= 0xffff; /* strip flags */
Eric Kinzie097b19a2007-12-30 23:17:53 -0800643
Joe Perches641d7292010-01-26 11:40:04 +0000644 if (ni.media != BR2684_MEDIA_ETHERNET || ni.mtu != 1500)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 netdev = alloc_netdev(sizeof(struct br2684_dev),
648 ni.ifname[0] ? ni.ifname : "nas%d",
Eric Kinzie097b19a2007-12-30 23:17:53 -0800649 (payload == p_routed) ?
Chas Williamsfb64c732007-12-30 23:18:29 -0800650 br2684_setup_routed : br2684_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (!netdev)
652 return -ENOMEM;
653
654 brdev = BRPRIV(netdev);
655
Stephen Hemminger52240062007-08-28 15:22:09 -0700656 pr_debug("registered netdev %s\n", netdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /* open, stop, do_ioctl ? */
658 err = register_netdev(netdev);
659 if (err < 0) {
Joe Perches99824462010-01-26 11:40:00 +0000660 pr_err("register_netdev failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 free_netdev(netdev);
662 return err;
663 }
664
665 write_lock_irq(&devs_lock);
Karl Hiramoto00506612010-07-08 20:55:31 +0000666
Eric Kinzie097b19a2007-12-30 23:17:53 -0800667 brdev->payload = payload;
Karl Hiramoto00506612010-07-08 20:55:31 +0000668
669 if (list_empty(&br2684_devs)) {
670 /* 1st br2684 device */
Karl Hiramoto00506612010-07-08 20:55:31 +0000671 brdev->number = 1;
672 } else
673 brdev->number = BRPRIV(list_entry_brdev(br2684_devs.prev))->number + 1;
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 list_add_tail(&brdev->br2684_devs, &br2684_devs);
676 write_unlock_irq(&devs_lock);
677 return 0;
678}
679
680/*
681 * This handles ioctls actually performed on our vcc - we must return
682 * -ENOIOCTLCMD for any unrecognized ioctl
683 */
684static int br2684_ioctl(struct socket *sock, unsigned int cmd,
Chas Williamsfb64c732007-12-30 23:18:29 -0800685 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
687 struct atm_vcc *atmvcc = ATM_SD(sock);
688 void __user *argp = (void __user *)arg;
Chas Williamsfb64c732007-12-30 23:18:29 -0800689 atm_backend_t b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 int err;
Chas Williamsfb64c732007-12-30 23:18:29 -0800692 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 case ATM_SETBACKEND:
Chas Williamsfb64c732007-12-30 23:18:29 -0800694 case ATM_NEWBACKENDIF:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 err = get_user(b, (atm_backend_t __user *) argp);
696 if (err)
697 return -EFAULT;
698 if (b != ATM_BACKEND_BR2684)
699 return -ENOIOCTLCMD;
700 if (!capable(CAP_NET_ADMIN))
701 return -EPERM;
702 if (cmd == ATM_SETBACKEND)
703 return br2684_regvcc(atmvcc, argp);
704 else
705 return br2684_create(argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706#ifdef CONFIG_ATM_BR2684_IPFILTER
707 case BR2684_SETFILT:
708 if (atmvcc->push != br2684_push)
709 return -ENOIOCTLCMD;
710 if (!capable(CAP_NET_ADMIN))
711 return -EPERM;
712 err = br2684_setfilt(atmvcc, argp);
Chas Williamsfb64c732007-12-30 23:18:29 -0800713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 return err;
715#endif /* CONFIG_ATM_BR2684_IPFILTER */
716 }
717 return -ENOIOCTLCMD;
718}
719
720static struct atm_ioctl br2684_ioctl_ops = {
Chas Williamsfb64c732007-12-30 23:18:29 -0800721 .owner = THIS_MODULE,
722 .ioctl = br2684_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723};
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725#ifdef CONFIG_PROC_FS
Chas Williamsfb64c732007-12-30 23:18:29 -0800726static void *br2684_seq_start(struct seq_file *seq, loff_t * pos)
Eric Dumazet5c17d5f2008-01-15 03:29:50 -0800727 __acquires(devs_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 read_lock(&devs_lock);
Pavel Emelianov9af97182007-07-09 13:12:24 -0700730 return seq_list_start(&br2684_devs, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731}
732
Chas Williamsfb64c732007-12-30 23:18:29 -0800733static void *br2684_seq_next(struct seq_file *seq, void *v, loff_t * pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
Pavel Emelianov9af97182007-07-09 13:12:24 -0700735 return seq_list_next(v, &br2684_devs, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
738static void br2684_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet5c17d5f2008-01-15 03:29:50 -0800739 __releases(devs_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
741 read_unlock(&devs_lock);
742}
743
744static int br2684_seq_show(struct seq_file *seq, void *v)
745{
Pavel Emelianov9af97182007-07-09 13:12:24 -0700746 const struct br2684_dev *brdev = list_entry(v, struct br2684_dev,
Chas Williamsfb64c732007-12-30 23:18:29 -0800747 br2684_devs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 const struct net_device *net_dev = brdev->net_dev;
749 const struct br2684_vcc *brvcc;
750
Johannes Berge1749612008-10-27 15:59:26 -0700751 seq_printf(seq, "dev %.16s: num=%d, mac=%pM (%s)\n",
Joe Perches0795af52007-10-03 17:59:30 -0700752 net_dev->name,
753 brdev->number,
Johannes Berge1749612008-10-27 15:59:26 -0700754 net_dev->dev_addr,
Joe Perches0795af52007-10-03 17:59:30 -0700755 brdev->mac_was_set ? "set" : "auto");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 list_for_each_entry(brvcc, &brdev->brvccs, brvccs) {
Eric Kinzie097b19a2007-12-30 23:17:53 -0800758 seq_printf(seq, " vcc %d.%d.%d: encaps=%s payload=%s"
Chas Williamsfb64c732007-12-30 23:18:29 -0800759 ", failed copies %u/%u"
760 "\n", brvcc->atmvcc->dev->number,
761 brvcc->atmvcc->vpi, brvcc->atmvcc->vci,
762 (brvcc->encaps == e_llc) ? "LLC" : "VC",
763 (brdev->payload == p_bridged) ? "bridged" : "routed",
764 brvcc->copies_failed, brvcc->copies_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765#ifdef CONFIG_ATM_BR2684_IPFILTER
766#define b1(var, byte) ((u8 *) &brvcc->filter.var)[byte]
767#define bs(var) b1(var, 0), b1(var, 1), b1(var, 2), b1(var, 3)
Chas Williamsfb64c732007-12-30 23:18:29 -0800768 if (brvcc->filter.netmask != 0)
769 seq_printf(seq, " filter=%d.%d.%d.%d/"
770 "%d.%d.%d.%d\n", bs(prefix), bs(netmask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771#undef bs
772#undef b1
773#endif /* CONFIG_ATM_BR2684_IPFILTER */
774 }
775 return 0;
776}
777
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700778static const struct seq_operations br2684_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 .start = br2684_seq_start,
Chas Williamsfb64c732007-12-30 23:18:29 -0800780 .next = br2684_seq_next,
781 .stop = br2684_seq_stop,
782 .show = br2684_seq_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783};
784
785static int br2684_proc_open(struct inode *inode, struct file *file)
786{
787 return seq_open(file, &br2684_seq_ops);
788}
789
Arjan van de Ven9a321442007-02-12 00:55:35 -0800790static const struct file_operations br2684_proc_ops = {
Chas Williamsfb64c732007-12-30 23:18:29 -0800791 .owner = THIS_MODULE,
792 .open = br2684_proc_open,
793 .read = seq_read,
794 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 .release = seq_release,
796};
797
798extern struct proc_dir_entry *atm_proc_root; /* from proc.c */
Chas Williamsfb64c732007-12-30 23:18:29 -0800799#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801static int __init br2684_init(void)
802{
803#ifdef CONFIG_PROC_FS
804 struct proc_dir_entry *p;
Wang Chen16e297b2008-02-28 13:55:45 -0800805 p = proc_create("br2684", 0, atm_proc_root, &br2684_proc_ops);
806 if (p == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808#endif
809 register_atm_ioctl(&br2684_ioctl_ops);
Karl Hiramotoa3d67132010-09-23 01:50:54 +0000810 register_atmdevice_notifier(&atm_dev_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return 0;
812}
813
814static void __exit br2684_exit(void)
815{
816 struct net_device *net_dev;
817 struct br2684_dev *brdev;
818 struct br2684_vcc *brvcc;
819 deregister_atm_ioctl(&br2684_ioctl_ops);
820
821#ifdef CONFIG_PROC_FS
822 remove_proc_entry("br2684", atm_proc_root);
823#endif
824
Karl Hiramoto00506612010-07-08 20:55:31 +0000825
Karl Hiramotoa3d67132010-09-23 01:50:54 +0000826 unregister_atmdevice_notifier(&atm_dev_notifier);
Karl Hiramoto00506612010-07-08 20:55:31 +0000827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 while (!list_empty(&br2684_devs)) {
829 net_dev = list_entry_brdev(br2684_devs.next);
830 brdev = BRPRIV(net_dev);
831 while (!list_empty(&brdev->brvccs)) {
832 brvcc = list_entry_brvcc(brdev->brvccs.next);
833 br2684_close_vcc(brvcc);
834 }
835
836 list_del(&brdev->br2684_devs);
837 unregister_netdev(net_dev);
David S. Miller5f6b1ea2008-05-06 00:00:16 -0700838 free_netdev(net_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
840}
841
842module_init(br2684_init);
843module_exit(br2684_exit);
844
845MODULE_AUTHOR("Marcell GAL");
846MODULE_DESCRIPTION("RFC2684 bridged protocols over ATM/AAL5");
847MODULE_LICENSE("GPL");