blob: 651babdfab3845ebd11eb6cc89fe85eae1d3f8ca [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{
Wang Chen524ad0a2008-11-12 23:39:10 -0800100 return (struct br2684_dev *)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 } else { /* p_routed */
246 skb_pull(skb, ETH_HLEN);
247 }
Eric Kinzie097b19a2007-12-30 23:17:53 -0800248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 skb_debug(skb);
250
251 ATM_SKB(skb)->vcc = atmvcc = brvcc->atmvcc;
Stephen Hemminger52240062007-08-28 15:22:09 -0700252 pr_debug("atm_skb(%p)->vcc(%p)->dev(%p)\n", skb, atmvcc, atmvcc->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 atomic_add(skb->truesize, &sk_atm(atmvcc)->sk_wmem_alloc);
254 ATM_SKB(skb)->atm_options = atmvcc->atm_options;
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000255 dev->stats.tx_packets++;
256 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 atmvcc->send(atmvcc, skb);
Karl Hiramoto137742c2009-09-02 23:26:39 -0700258
259 if (!atm_may_send(atmvcc, 0)) {
260 netif_stop_queue(brvcc->device);
261 /*check for race with br2684_pop*/
262 if (atm_may_send(atmvcc, 0))
263 netif_start_queue(brvcc->device);
264 }
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return 1;
267}
268
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -0700269static inline struct br2684_vcc *pick_outgoing_vcc(const struct sk_buff *skb,
270 const struct br2684_dev *brdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
Chas Williamsfb64c732007-12-30 23:18:29 -0800272 return list_empty(&brdev->brvccs) ? NULL : list_entry_brvcc(brdev->brvccs.next); /* 1 vcc/dev right now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
Stephen Hemminger3c805a22009-08-31 19:50:42 +0000275static netdev_tx_t br2684_start_xmit(struct sk_buff *skb,
276 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
278 struct br2684_dev *brdev = BRPRIV(dev);
279 struct br2684_vcc *brvcc;
280
Joe Perches99824462010-01-26 11:40:00 +0000281 pr_debug("skb_dst(skb)=%p\n", skb_dst(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 read_lock(&devs_lock);
283 brvcc = pick_outgoing_vcc(skb, brdev);
284 if (brvcc == NULL) {
Stephen Hemminger52240062007-08-28 15:22:09 -0700285 pr_debug("no vcc attached to dev %s\n", dev->name);
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000286 dev->stats.tx_errors++;
287 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /* netif_stop_queue(dev); */
289 dev_kfree_skb(skb);
290 read_unlock(&devs_lock);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000291 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000293 if (!br2684_xmit_vcc(skb, dev, brvcc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 /*
295 * We should probably use netif_*_queue() here, but that
296 * involves added complication. We need to walk before
Chas Williamsfb64c732007-12-30 23:18:29 -0800297 * we can run.
298 *
299 * Don't free here! this pointer might be no longer valid!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 */
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000301 dev->stats.tx_errors++;
302 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
304 read_unlock(&devs_lock);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000305 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308/*
309 * We remember when the MAC gets set, so we don't override it later with
310 * the ESI of the ATM card of the first VC
311 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312static int br2684_mac_addr(struct net_device *dev, void *p)
313{
Stephen Hemminger0ba25ff2009-01-09 13:00:59 +0000314 int err = eth_mac_addr(dev, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 if (!err)
316 BRPRIV(dev)->mac_was_set = 1;
317 return err;
318}
319
320#ifdef CONFIG_ATM_BR2684_IPFILTER
321/* this IOCTL is experimental. */
Chas Williamsfb64c732007-12-30 23:18:29 -0800322static int br2684_setfilt(struct atm_vcc *atmvcc, void __user * arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324 struct br2684_vcc *brvcc;
325 struct br2684_filter_set fs;
326
327 if (copy_from_user(&fs, arg, sizeof fs))
328 return -EFAULT;
329 if (fs.ifspec.method != BR2684_FIND_BYNOTHING) {
330 /*
331 * This is really a per-vcc thing, but we can also search
Chas Williamsfb64c732007-12-30 23:18:29 -0800332 * by device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 */
334 struct br2684_dev *brdev;
335 read_lock(&devs_lock);
336 brdev = BRPRIV(br2684_find_dev(&fs.ifspec));
Joe Perches641d7292010-01-26 11:40:04 +0000337 if (brdev == NULL || list_empty(&brdev->brvccs) ||
338 brdev->brvccs.next != brdev->brvccs.prev) /* >1 VCC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 brvcc = NULL;
340 else
341 brvcc = list_entry_brvcc(brdev->brvccs.next);
342 read_unlock(&devs_lock);
343 if (brvcc == NULL)
344 return -ESRCH;
345 } else
346 brvcc = BR2684_VCC(atmvcc);
347 memcpy(&brvcc->filter, &fs.filter, sizeof(brvcc->filter));
348 return 0;
349}
350
351/* Returns 1 if packet should be dropped */
352static inline int
Al Viro30d492d2006-11-14 21:11:29 -0800353packet_fails_filter(__be16 type, struct br2684_vcc *brvcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 if (brvcc->filter.netmask == 0)
Chas Williamsfb64c732007-12-30 23:18:29 -0800356 return 0; /* no filter in place */
YOSHIFUJI Hideakiacde4852007-03-25 20:12:32 -0700357 if (type == htons(ETH_P_IP) &&
Chas Williamsfb64c732007-12-30 23:18:29 -0800358 (((struct iphdr *)(skb->data))->daddr & brvcc->filter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 netmask) == brvcc->filter.prefix)
360 return 0;
YOSHIFUJI Hideakiacde4852007-03-25 20:12:32 -0700361 if (type == htons(ETH_P_ARP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return 0;
Chas Williamsfb64c732007-12-30 23:18:29 -0800363 /*
364 * TODO: we should probably filter ARPs too.. don't want to have
365 * them returning values that don't make sense, or is that ok?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 */
367 return 1; /* drop */
368}
369#endif /* CONFIG_ATM_BR2684_IPFILTER */
370
371static void br2684_close_vcc(struct br2684_vcc *brvcc)
372{
Stephen Hemminger52240062007-08-28 15:22:09 -0700373 pr_debug("removing VCC %p from dev %p\n", brvcc, brvcc->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 write_lock_irq(&devs_lock);
375 list_del(&brvcc->brvccs);
376 write_unlock_irq(&devs_lock);
377 brvcc->atmvcc->user_back = NULL; /* what about vcc->recvq ??? */
378 brvcc->old_push(brvcc->atmvcc, NULL); /* pass on the bad news */
379 kfree(brvcc);
380 module_put(THIS_MODULE);
381}
382
383/* when AAL5 PDU comes in: */
384static void br2684_push(struct atm_vcc *atmvcc, struct sk_buff *skb)
385{
386 struct br2684_vcc *brvcc = BR2684_VCC(atmvcc);
387 struct net_device *net_dev = brvcc->device;
388 struct br2684_dev *brdev = BRPRIV(net_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Joe Perches99824462010-01-26 11:40:00 +0000390 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 if (unlikely(skb == NULL)) {
393 /* skb==NULL means VCC is being destroyed */
394 br2684_close_vcc(brvcc);
395 if (list_empty(&brdev->brvccs)) {
Pavel Emelyanov1e0ba002008-05-04 18:00:36 -0700396 write_lock_irq(&devs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 list_del(&brdev->br2684_devs);
Pavel Emelyanov1e0ba002008-05-04 18:00:36 -0700398 write_unlock_irq(&devs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 unregister_netdev(net_dev);
David S. Miller5f6b1ea2008-05-06 00:00:16 -0700400 free_netdev(net_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
Karl Hiramoto00506612010-07-08 20:55:31 +0000402 read_lock_irq(&devs_lock);
403 if (list_empty(&br2684_devs)) {
404 /* last br2684 device */
405 unregister_atmdevice_notifier(&atm_dev_notifier);
406 }
407 read_unlock_irq(&devs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return;
409 }
410
411 skb_debug(skb);
412 atm_return(atmvcc, skb->truesize);
Stephen Hemminger52240062007-08-28 15:22:09 -0700413 pr_debug("skb from brdev %p\n", brdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (brvcc->encaps == e_llc) {
Eric Kinzie097b19a2007-12-30 23:17:53 -0800415
416 if (skb->len > 7 && skb->data[7] == 0x01)
417 __skb_trim(skb, skb->len - 4);
418
419 /* accept packets that have "ipv[46]" in the snap header */
Joe Perches641d7292010-01-26 11:40:04 +0000420 if ((skb->len >= (sizeof(llc_oui_ipv4))) &&
421 (memcmp(skb->data, llc_oui_ipv4,
422 sizeof(llc_oui_ipv4) - BR2684_ETHERTYPE_LEN) == 0)) {
423 if (memcmp(skb->data + 6, ethertype_ipv6,
424 sizeof(ethertype_ipv6)) == 0)
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700425 skb->protocol = htons(ETH_P_IPV6);
Joe Perches641d7292010-01-26 11:40:04 +0000426 else if (memcmp(skb->data + 6, ethertype_ipv4,
427 sizeof(ethertype_ipv4)) == 0)
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700428 skb->protocol = htons(ETH_P_IP);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700429 else
430 goto error;
Eric Kinzie097b19a2007-12-30 23:17:53 -0800431 skb_pull(skb, sizeof(llc_oui_ipv4));
432 skb_reset_network_header(skb);
433 skb->pkt_type = PACKET_HOST;
Joe Perches641d7292010-01-26 11:40:04 +0000434 /*
435 * Let us waste some time for checking the encapsulation.
436 * Note, that only 7 char is checked so frames with a valid FCS
437 * are also accepted (but FCS is not checked of course).
438 */
Eric Kinzie097b19a2007-12-30 23:17:53 -0800439 } else if ((skb->len >= sizeof(llc_oui_pid_pad)) &&
Chas Williamsfb64c732007-12-30 23:18:29 -0800440 (memcmp(skb->data, llc_oui_pid_pad, 7) == 0)) {
Eric Kinzie097b19a2007-12-30 23:17:53 -0800441 skb_pull(skb, sizeof(llc_oui_pid_pad));
442 skb->protocol = eth_type_trans(skb, net_dev);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700443 } else
444 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Eric Kinzie7e903c22008-06-16 17:18:18 -0700446 } else { /* e_vc */
447 if (brdev->payload == p_routed) {
448 struct iphdr *iph;
449
450 skb_reset_network_header(skb);
451 iph = ip_hdr(skb);
452 if (iph->version == 4)
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700453 skb->protocol = htons(ETH_P_IP);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700454 else if (iph->version == 6)
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -0700455 skb->protocol = htons(ETH_P_IPV6);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700456 else
457 goto error;
458 skb->pkt_type = PACKET_HOST;
459 } else { /* p_bridged */
460 /* first 2 chars should be 0 */
461 if (*((u16 *) (skb->data)) != 0)
462 goto error;
463 skb_pull(skb, BR2684_PAD_LEN);
464 skb->protocol = eth_type_trans(skb, net_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468#ifdef CONFIG_ATM_BR2684_IPFILTER
Eric Kinzie7e903c22008-06-16 17:18:18 -0700469 if (unlikely(packet_fails_filter(skb->protocol, brvcc, skb)))
470 goto dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471#endif /* CONFIG_ATM_BR2684_IPFILTER */
472 skb->dev = net_dev;
473 ATM_SKB(skb)->vcc = atmvcc; /* needed ? */
Stephen Hemminger52240062007-08-28 15:22:09 -0700474 pr_debug("received packet's protocol: %x\n", ntohs(skb->protocol));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 skb_debug(skb);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700476 /* sigh, interface is down? */
477 if (unlikely(!(net_dev->flags & IFF_UP)))
478 goto dropped;
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000479 net_dev->stats.rx_packets++;
480 net_dev->stats.rx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 memset(ATM_SKB(skb), 0, sizeof(struct atm_skb_data));
482 netif_rx(skb);
Eric Kinzie7e903c22008-06-16 17:18:18 -0700483 return;
484
485dropped:
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000486 net_dev->stats.rx_dropped++;
Eric Kinzie7e903c22008-06-16 17:18:18 -0700487 goto free_skb;
488error:
Stephen Hemminger410e9d82009-01-09 13:00:58 +0000489 net_dev->stats.rx_errors++;
Eric Kinzie7e903c22008-06-16 17:18:18 -0700490free_skb:
491 dev_kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
Chas Williamsfb64c732007-12-30 23:18:29 -0800494/*
495 * Assign a vcc to a dev
496 * Note: we do not have explicit unassign, but look at _push()
497 */
498static int br2684_regvcc(struct atm_vcc *atmvcc, void __user * arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
David S. Millerb6211ae2009-05-28 16:36:47 -0700500 struct sk_buff_head queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 int err;
502 struct br2684_vcc *brvcc;
David S. Millerb6211ae2009-05-28 16:36:47 -0700503 struct sk_buff *skb, *tmp;
David S. Millerc40a27f2006-11-30 21:05:23 -0800504 struct sk_buff_head *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 struct br2684_dev *brdev;
506 struct net_device *net_dev;
507 struct atm_backend_br2684 be;
David S. Millerc40a27f2006-11-30 21:05:23 -0800508 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 if (copy_from_user(&be, arg, sizeof be))
511 return -EFAULT;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700512 brvcc = kzalloc(sizeof(struct br2684_vcc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 if (!brvcc)
514 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 write_lock_irq(&devs_lock);
516 net_dev = br2684_find_dev(&be.ifspec);
517 if (net_dev == NULL) {
Joe Perches99824462010-01-26 11:40:00 +0000518 pr_err("tried to attach to non-existant device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 err = -ENXIO;
520 goto error;
521 }
522 brdev = BRPRIV(net_dev);
523 if (atmvcc->push == NULL) {
524 err = -EBADFD;
525 goto error;
526 }
527 if (!list_empty(&brdev->brvccs)) {
528 /* Only 1 VCC/dev right now */
529 err = -EEXIST;
530 goto error;
531 }
Joe Perches641d7292010-01-26 11:40:04 +0000532 if (be.fcs_in != BR2684_FCSIN_NO ||
533 be.fcs_out != BR2684_FCSOUT_NO ||
534 be.fcs_auto || be.has_vpiid || be.send_padding ||
535 (be.encaps != BR2684_ENCAPS_VC &&
536 be.encaps != BR2684_ENCAPS_LLC) ||
537 be.min_size != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 err = -EINVAL;
539 goto error;
540 }
Joe Perches99824462010-01-26 11:40:00 +0000541 pr_debug("vcc=%p, encaps=%d, brvcc=%p\n", atmvcc, be.encaps, brvcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (list_empty(&brdev->brvccs) && !brdev->mac_was_set) {
543 unsigned char *esi = atmvcc->dev->esi;
544 if (esi[0] | esi[1] | esi[2] | esi[3] | esi[4] | esi[5])
545 memcpy(net_dev->dev_addr, esi, net_dev->addr_len);
546 else
547 net_dev->dev_addr[2] = 1;
548 }
549 list_add(&brvcc->brvccs, &brdev->brvccs);
550 write_unlock_irq(&devs_lock);
551 brvcc->device = net_dev;
552 brvcc->atmvcc = atmvcc;
553 atmvcc->user_back = brvcc;
Chas Williamsfb64c732007-12-30 23:18:29 -0800554 brvcc->encaps = (enum br2684_encaps)be.encaps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 brvcc->old_push = atmvcc->push;
Karl Hiramoto137742c2009-09-02 23:26:39 -0700556 brvcc->old_pop = atmvcc->pop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 barrier();
558 atmvcc->push = br2684_push;
Karl Hiramoto137742c2009-09-02 23:26:39 -0700559 atmvcc->pop = br2684_pop;
David S. Millerc40a27f2006-11-30 21:05:23 -0800560
David S. Millerb6211ae2009-05-28 16:36:47 -0700561 __skb_queue_head_init(&queue);
David S. Millerc40a27f2006-11-30 21:05:23 -0800562 rq = &sk_atm(atmvcc)->sk_receive_queue;
563
564 spin_lock_irqsave(&rq->lock, flags);
David S. Millerb6211ae2009-05-28 16:36:47 -0700565 skb_queue_splice_init(rq, &queue);
David S. Millerc40a27f2006-11-30 21:05:23 -0800566 spin_unlock_irqrestore(&rq->lock, flags);
567
David S. Millerb6211ae2009-05-28 16:36:47 -0700568 skb_queue_walk_safe(&queue, skb, tmp) {
569 struct net_device *dev = skb->dev;
David S. Millerc40a27f2006-11-30 21:05:23 -0800570
David S. Millerb6211ae2009-05-28 16:36:47 -0700571 dev->stats.rx_bytes -= skb->len;
572 dev->stats.rx_packets--;
573
Jorge Boncompte [DTI2]27141662008-06-16 17:15:33 -0700574 br2684_push(atmvcc, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
Karl Hiramoto00506612010-07-08 20:55:31 +0000576
577 /* initialize netdev carrier state */
578 if (atmvcc->dev->signal == ATM_PHY_SIG_LOST)
579 netif_carrier_off(net_dev);
580 else
581 netif_carrier_on(net_dev);
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 __module_get(THIS_MODULE);
584 return 0;
Joe Perches641d7292010-01-26 11:40:04 +0000585
586error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 write_unlock_irq(&devs_lock);
588 kfree(brvcc);
589 return err;
590}
591
Stephen Hemminger0ba25ff2009-01-09 13:00:59 +0000592static const struct net_device_ops br2684_netdev_ops = {
593 .ndo_start_xmit = br2684_start_xmit,
594 .ndo_set_mac_address = br2684_mac_addr,
595 .ndo_change_mtu = eth_change_mtu,
596 .ndo_validate_addr = eth_validate_addr,
597};
598
chas williams - CONTRACTOR2e302eb2009-12-04 11:06:32 +0000599static const struct net_device_ops br2684_netdev_ops_routed = {
600 .ndo_start_xmit = br2684_start_xmit,
601 .ndo_set_mac_address = br2684_mac_addr,
602 .ndo_change_mtu = eth_change_mtu
603};
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605static void br2684_setup(struct net_device *netdev)
606{
607 struct br2684_dev *brdev = BRPRIV(netdev);
608
609 ether_setup(netdev);
Rabin Vincent902e5ea2009-05-02 13:49:36 -0700610 brdev->net_dev = netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Stephen Hemminger0ba25ff2009-01-09 13:00:59 +0000612 netdev->netdev_ops = &br2684_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 INIT_LIST_HEAD(&brdev->brvccs);
615}
616
Eric Kinzie097b19a2007-12-30 23:17:53 -0800617static void br2684_setup_routed(struct net_device *netdev)
618{
619 struct br2684_dev *brdev = BRPRIV(netdev);
chas williams - CONTRACTOR2e302eb2009-12-04 11:06:32 +0000620
Eric Kinzie097b19a2007-12-30 23:17:53 -0800621 brdev->net_dev = netdev;
Eric Kinzie097b19a2007-12-30 23:17:53 -0800622 netdev->hard_header_len = 0;
chas williams - CONTRACTOR2e302eb2009-12-04 11:06:32 +0000623 netdev->netdev_ops = &br2684_netdev_ops_routed;
Eric Kinzie097b19a2007-12-30 23:17:53 -0800624 netdev->addr_len = 0;
625 netdev->mtu = 1500;
626 netdev->type = ARPHRD_PPP;
627 netdev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
628 netdev->tx_queue_len = 100;
629 INIT_LIST_HEAD(&brdev->brvccs);
630}
631
Joe Perches641d7292010-01-26 11:40:04 +0000632static int br2684_create(void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
634 int err;
635 struct net_device *netdev;
636 struct br2684_dev *brdev;
637 struct atm_newif_br2684 ni;
Eric Kinzie097b19a2007-12-30 23:17:53 -0800638 enum br2684_payload payload;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Joe Perches99824462010-01-26 11:40:00 +0000640 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Joe Perches641d7292010-01-26 11:40:04 +0000642 if (copy_from_user(&ni, arg, sizeof ni))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return -EFAULT;
Eric Kinzie097b19a2007-12-30 23:17:53 -0800644
645 if (ni.media & BR2684_FLAG_ROUTED)
646 payload = p_routed;
647 else
648 payload = p_bridged;
Chas Williamsfb64c732007-12-30 23:18:29 -0800649 ni.media &= 0xffff; /* strip flags */
Eric Kinzie097b19a2007-12-30 23:17:53 -0800650
Joe Perches641d7292010-01-26 11:40:04 +0000651 if (ni.media != BR2684_MEDIA_ETHERNET || ni.mtu != 1500)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 netdev = alloc_netdev(sizeof(struct br2684_dev),
655 ni.ifname[0] ? ni.ifname : "nas%d",
Eric Kinzie097b19a2007-12-30 23:17:53 -0800656 (payload == p_routed) ?
Chas Williamsfb64c732007-12-30 23:18:29 -0800657 br2684_setup_routed : br2684_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (!netdev)
659 return -ENOMEM;
660
661 brdev = BRPRIV(netdev);
662
Stephen Hemminger52240062007-08-28 15:22:09 -0700663 pr_debug("registered netdev %s\n", netdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 /* open, stop, do_ioctl ? */
665 err = register_netdev(netdev);
666 if (err < 0) {
Joe Perches99824462010-01-26 11:40:00 +0000667 pr_err("register_netdev failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 free_netdev(netdev);
669 return err;
670 }
671
672 write_lock_irq(&devs_lock);
Karl Hiramoto00506612010-07-08 20:55:31 +0000673
Eric Kinzie097b19a2007-12-30 23:17:53 -0800674 brdev->payload = payload;
Karl Hiramoto00506612010-07-08 20:55:31 +0000675
676 if (list_empty(&br2684_devs)) {
677 /* 1st br2684 device */
678 register_atmdevice_notifier(&atm_dev_notifier);
679 brdev->number = 1;
680 } else
681 brdev->number = BRPRIV(list_entry_brdev(br2684_devs.prev))->number + 1;
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 list_add_tail(&brdev->br2684_devs, &br2684_devs);
684 write_unlock_irq(&devs_lock);
685 return 0;
686}
687
688/*
689 * This handles ioctls actually performed on our vcc - we must return
690 * -ENOIOCTLCMD for any unrecognized ioctl
691 */
692static int br2684_ioctl(struct socket *sock, unsigned int cmd,
Chas Williamsfb64c732007-12-30 23:18:29 -0800693 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
695 struct atm_vcc *atmvcc = ATM_SD(sock);
696 void __user *argp = (void __user *)arg;
Chas Williamsfb64c732007-12-30 23:18:29 -0800697 atm_backend_t b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 int err;
Chas Williamsfb64c732007-12-30 23:18:29 -0800700 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 case ATM_SETBACKEND:
Chas Williamsfb64c732007-12-30 23:18:29 -0800702 case ATM_NEWBACKENDIF:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 err = get_user(b, (atm_backend_t __user *) argp);
704 if (err)
705 return -EFAULT;
706 if (b != ATM_BACKEND_BR2684)
707 return -ENOIOCTLCMD;
708 if (!capable(CAP_NET_ADMIN))
709 return -EPERM;
710 if (cmd == ATM_SETBACKEND)
711 return br2684_regvcc(atmvcc, argp);
712 else
713 return br2684_create(argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714#ifdef CONFIG_ATM_BR2684_IPFILTER
715 case BR2684_SETFILT:
716 if (atmvcc->push != br2684_push)
717 return -ENOIOCTLCMD;
718 if (!capable(CAP_NET_ADMIN))
719 return -EPERM;
720 err = br2684_setfilt(atmvcc, argp);
Chas Williamsfb64c732007-12-30 23:18:29 -0800721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return err;
723#endif /* CONFIG_ATM_BR2684_IPFILTER */
724 }
725 return -ENOIOCTLCMD;
726}
727
728static struct atm_ioctl br2684_ioctl_ops = {
Chas Williamsfb64c732007-12-30 23:18:29 -0800729 .owner = THIS_MODULE,
730 .ioctl = br2684_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731};
732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733#ifdef CONFIG_PROC_FS
Chas Williamsfb64c732007-12-30 23:18:29 -0800734static void *br2684_seq_start(struct seq_file *seq, loff_t * pos)
Eric Dumazet5c17d5f2008-01-15 03:29:50 -0800735 __acquires(devs_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 read_lock(&devs_lock);
Pavel Emelianov9af97182007-07-09 13:12:24 -0700738 return seq_list_start(&br2684_devs, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
740
Chas Williamsfb64c732007-12-30 23:18:29 -0800741static void *br2684_seq_next(struct seq_file *seq, void *v, loff_t * pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
Pavel Emelianov9af97182007-07-09 13:12:24 -0700743 return seq_list_next(v, &br2684_devs, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
746static void br2684_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet5c17d5f2008-01-15 03:29:50 -0800747 __releases(devs_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
749 read_unlock(&devs_lock);
750}
751
752static int br2684_seq_show(struct seq_file *seq, void *v)
753{
Pavel Emelianov9af97182007-07-09 13:12:24 -0700754 const struct br2684_dev *brdev = list_entry(v, struct br2684_dev,
Chas Williamsfb64c732007-12-30 23:18:29 -0800755 br2684_devs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 const struct net_device *net_dev = brdev->net_dev;
757 const struct br2684_vcc *brvcc;
758
Johannes Berge1749612008-10-27 15:59:26 -0700759 seq_printf(seq, "dev %.16s: num=%d, mac=%pM (%s)\n",
Joe Perches0795af52007-10-03 17:59:30 -0700760 net_dev->name,
761 brdev->number,
Johannes Berge1749612008-10-27 15:59:26 -0700762 net_dev->dev_addr,
Joe Perches0795af52007-10-03 17:59:30 -0700763 brdev->mac_was_set ? "set" : "auto");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 list_for_each_entry(brvcc, &brdev->brvccs, brvccs) {
Eric Kinzie097b19a2007-12-30 23:17:53 -0800766 seq_printf(seq, " vcc %d.%d.%d: encaps=%s payload=%s"
Chas Williamsfb64c732007-12-30 23:18:29 -0800767 ", failed copies %u/%u"
768 "\n", brvcc->atmvcc->dev->number,
769 brvcc->atmvcc->vpi, brvcc->atmvcc->vci,
770 (brvcc->encaps == e_llc) ? "LLC" : "VC",
771 (brdev->payload == p_bridged) ? "bridged" : "routed",
772 brvcc->copies_failed, brvcc->copies_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773#ifdef CONFIG_ATM_BR2684_IPFILTER
774#define b1(var, byte) ((u8 *) &brvcc->filter.var)[byte]
775#define bs(var) b1(var, 0), b1(var, 1), b1(var, 2), b1(var, 3)
Chas Williamsfb64c732007-12-30 23:18:29 -0800776 if (brvcc->filter.netmask != 0)
777 seq_printf(seq, " filter=%d.%d.%d.%d/"
778 "%d.%d.%d.%d\n", bs(prefix), bs(netmask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779#undef bs
780#undef b1
781#endif /* CONFIG_ATM_BR2684_IPFILTER */
782 }
783 return 0;
784}
785
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700786static const struct seq_operations br2684_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 .start = br2684_seq_start,
Chas Williamsfb64c732007-12-30 23:18:29 -0800788 .next = br2684_seq_next,
789 .stop = br2684_seq_stop,
790 .show = br2684_seq_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791};
792
793static int br2684_proc_open(struct inode *inode, struct file *file)
794{
795 return seq_open(file, &br2684_seq_ops);
796}
797
Arjan van de Ven9a321442007-02-12 00:55:35 -0800798static const struct file_operations br2684_proc_ops = {
Chas Williamsfb64c732007-12-30 23:18:29 -0800799 .owner = THIS_MODULE,
800 .open = br2684_proc_open,
801 .read = seq_read,
802 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 .release = seq_release,
804};
805
806extern struct proc_dir_entry *atm_proc_root; /* from proc.c */
Chas Williamsfb64c732007-12-30 23:18:29 -0800807#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809static int __init br2684_init(void)
810{
811#ifdef CONFIG_PROC_FS
812 struct proc_dir_entry *p;
Wang Chen16e297b2008-02-28 13:55:45 -0800813 p = proc_create("br2684", 0, atm_proc_root, &br2684_proc_ops);
814 if (p == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816#endif
817 register_atm_ioctl(&br2684_ioctl_ops);
818 return 0;
819}
820
821static void __exit br2684_exit(void)
822{
823 struct net_device *net_dev;
824 struct br2684_dev *brdev;
825 struct br2684_vcc *brvcc;
826 deregister_atm_ioctl(&br2684_ioctl_ops);
827
828#ifdef CONFIG_PROC_FS
829 remove_proc_entry("br2684", atm_proc_root);
830#endif
831
Karl Hiramoto00506612010-07-08 20:55:31 +0000832
833 /* if not already empty */
834 if (!list_empty(&br2684_devs))
835 unregister_atmdevice_notifier(&atm_dev_notifier);
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 while (!list_empty(&br2684_devs)) {
838 net_dev = list_entry_brdev(br2684_devs.next);
839 brdev = BRPRIV(net_dev);
840 while (!list_empty(&brdev->brvccs)) {
841 brvcc = list_entry_brvcc(brdev->brvccs.next);
842 br2684_close_vcc(brvcc);
843 }
844
845 list_del(&brdev->br2684_devs);
846 unregister_netdev(net_dev);
David S. Miller5f6b1ea2008-05-06 00:00:16 -0700847 free_netdev(net_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
849}
850
851module_init(br2684_init);
852module_exit(br2684_exit);
853
854MODULE_AUTHOR("Marcell GAL");
855MODULE_DESCRIPTION("RFC2684 bridged protocols over ATM/AAL5");
856MODULE_LICENSE("GPL");