1 // SPDX-License-Identifier: GPL-2.0-only
3 * Ethernet netdevice using ATM AAL5 as underlying carrier
4 * (RFC1483 obsoleted by RFC2684) for Linux
6 * Authors: Marcell GAL, 2000, XDSL Ltd, Hungary
7 * Eric Kinzie, 2006-2007, US Naval Research Laboratory
10 #define pr_fmt(fmt) KBUILD_MODNAME ":%s: " fmt, __func__
12 #include <linux/module.h>
13 #include <linux/init.h>
14 #include <linux/kernel.h>
15 #include <linux/list.h>
16 #include <linux/netdevice.h>
17 #include <linux/skbuff.h>
18 #include <linux/etherdevice.h>
19 #include <linux/rtnetlink.h>
21 #include <linux/uaccess.h>
22 #include <linux/slab.h>
24 #include <linux/atm.h>
25 #include <linux/atmdev.h>
26 #include <linux/capability.h>
27 #include <linux/seq_file.h>
29 #include <linux/atmbr2684.h>
33 static void skb_debug(const struct sk_buff *skb)
37 print_hex_dump(KERN_DEBUG, "br2684: skb: ", DUMP_OFFSET,
38 16, 1, skb->data, min(NUM2PRINT, skb->len), true);
42 #define BR2684_ETHERTYPE_LEN 2
43 #define BR2684_PAD_LEN 2
45 #define LLC 0xaa, 0xaa, 0x03
46 #define SNAP_BRIDGED 0x00, 0x80, 0xc2
47 #define SNAP_ROUTED 0x00, 0x00, 0x00
48 #define PID_ETHERNET 0x00, 0x07
49 #define ETHERTYPE_IPV4 0x08, 0x00
50 #define ETHERTYPE_IPV6 0x86, 0xdd
51 #define PAD_BRIDGED 0x00, 0x00
53 static const unsigned char ethertype_ipv4[] = { ETHERTYPE_IPV4 };
54 static const unsigned char ethertype_ipv6[] = { ETHERTYPE_IPV6 };
55 static const unsigned char llc_oui_pid_pad[] =
56 { LLC, SNAP_BRIDGED, PID_ETHERNET, PAD_BRIDGED };
57 static const unsigned char pad[] = { PAD_BRIDGED };
58 static const unsigned char llc_oui_ipv4[] = { LLC, SNAP_ROUTED, ETHERTYPE_IPV4 };
59 static const unsigned char llc_oui_ipv6[] = { LLC, SNAP_ROUTED, ETHERTYPE_IPV6 };
62 e_vc = BR2684_ENCAPS_VC,
63 e_llc = BR2684_ENCAPS_LLC,
67 struct atm_vcc *atmvcc;
68 struct net_device *device;
69 /* keep old push, pop functions for chaining */
70 void (*old_push)(struct atm_vcc *vcc, struct sk_buff *skb);
71 void (*old_pop)(struct atm_vcc *vcc, struct sk_buff *skb);
72 void (*old_release_cb)(struct atm_vcc *vcc);
73 struct module *old_owner;
74 enum br2684_encaps encaps;
75 struct list_head brvccs;
76 #ifdef CONFIG_ATM_BR2684_IPFILTER
77 struct br2684_filter filter;
78 #endif /* CONFIG_ATM_BR2684_IPFILTER */
79 unsigned int copies_needed, copies_failed;
84 struct net_device *net_dev;
85 struct list_head br2684_devs;
87 struct list_head brvccs; /* one device <=> one vcc (before xmas) */
89 enum br2684_payload payload;
93 * This lock should be held for writing any time the list of devices or
94 * their attached vcc's could be altered. It should be held for reading
95 * any time these are being queried. Note that we sometimes need to
96 * do read-locking under interrupting context, so write locking must block
97 * the current CPU's interrupts.
99 static DEFINE_RWLOCK(devs_lock);
101 static LIST_HEAD(br2684_devs);
103 static inline struct br2684_dev *BRPRIV(const struct net_device *net_dev)
105 return netdev_priv(net_dev);
108 static inline struct net_device *list_entry_brdev(const struct list_head *le)
110 return list_entry(le, struct br2684_dev, br2684_devs)->net_dev;
113 static inline struct br2684_vcc *BR2684_VCC(const struct atm_vcc *atmvcc)
115 return (struct br2684_vcc *)(atmvcc->user_back);
118 static inline struct br2684_vcc *list_entry_brvcc(const struct list_head *le)
120 return list_entry(le, struct br2684_vcc, brvccs);
123 /* Caller should hold read_lock(&devs_lock) */
124 static struct net_device *br2684_find_dev(const struct br2684_if_spec *s)
126 struct list_head *lh;
127 struct net_device *net_dev;
129 case BR2684_FIND_BYNUM:
130 list_for_each(lh, &br2684_devs) {
131 net_dev = list_entry_brdev(lh);
132 if (BRPRIV(net_dev)->number == s->spec.devnum)
136 case BR2684_FIND_BYIFNAME:
137 list_for_each(lh, &br2684_devs) {
138 net_dev = list_entry_brdev(lh);
139 if (!strncmp(net_dev->name, s->spec.ifname, IFNAMSIZ))
147 static int atm_dev_event(struct notifier_block *this, unsigned long event,
150 struct atm_dev *atm_dev = arg;
151 struct list_head *lh;
152 struct net_device *net_dev;
153 struct br2684_vcc *brvcc;
154 struct atm_vcc *atm_vcc;
157 pr_debug("event=%ld dev=%p\n", event, atm_dev);
159 read_lock_irqsave(&devs_lock, flags);
160 list_for_each(lh, &br2684_devs) {
161 net_dev = list_entry_brdev(lh);
163 list_for_each_entry(brvcc, &BRPRIV(net_dev)->brvccs, brvccs) {
164 atm_vcc = brvcc->atmvcc;
165 if (atm_vcc && brvcc->atmvcc->dev == atm_dev) {
167 if (atm_vcc->dev->signal == ATM_PHY_SIG_LOST)
168 netif_carrier_off(net_dev);
170 netif_carrier_on(net_dev);
175 read_unlock_irqrestore(&devs_lock, flags);
180 static struct notifier_block atm_dev_notifier = {
181 .notifier_call = atm_dev_event,
184 /* chained vcc->pop function. Check if we should wake the netif_queue */
185 static void br2684_pop(struct atm_vcc *vcc, struct sk_buff *skb)
187 struct br2684_vcc *brvcc = BR2684_VCC(vcc);
189 pr_debug("(vcc %p ; net_dev %p )\n", vcc, brvcc->device);
190 brvcc->old_pop(vcc, skb);
192 /* If the queue space just went up from zero, wake */
193 if (atomic_inc_return(&brvcc->qspace) == 1)
194 netif_wake_queue(brvcc->device);
198 * Send a packet out a particular vcc. Not to useful right now, but paves
199 * the way for multiple vcc's per itf. Returns true if we can send,
202 static int br2684_xmit_vcc(struct sk_buff *skb, struct net_device *dev,
203 struct br2684_vcc *brvcc)
205 struct br2684_dev *brdev = BRPRIV(dev);
206 struct atm_vcc *atmvcc;
207 int minheadroom = (brvcc->encaps == e_llc) ?
208 ((brdev->payload == p_bridged) ?
209 sizeof(llc_oui_pid_pad) : sizeof(llc_oui_ipv4)) :
210 ((brdev->payload == p_bridged) ? BR2684_PAD_LEN : 0);
212 if (skb_headroom(skb) < minheadroom) {
213 struct sk_buff *skb2 = skb_realloc_headroom(skb, minheadroom);
214 brvcc->copies_needed++;
217 brvcc->copies_failed++;
223 if (brvcc->encaps == e_llc) {
224 if (brdev->payload == p_bridged) {
225 skb_push(skb, sizeof(llc_oui_pid_pad));
226 skb_copy_to_linear_data(skb, llc_oui_pid_pad,
227 sizeof(llc_oui_pid_pad));
228 } else if (brdev->payload == p_routed) {
229 unsigned short prot = ntohs(skb->protocol);
231 skb_push(skb, sizeof(llc_oui_ipv4));
234 skb_copy_to_linear_data(skb, llc_oui_ipv4,
235 sizeof(llc_oui_ipv4));
238 skb_copy_to_linear_data(skb, llc_oui_ipv6,
239 sizeof(llc_oui_ipv6));
247 if (brdev->payload == p_bridged) {
249 memset(skb->data, 0, 2);
254 ATM_SKB(skb)->vcc = atmvcc = brvcc->atmvcc;
255 pr_debug("atm_skb(%p)->vcc(%p)->dev(%p)\n", skb, atmvcc, atmvcc->dev);
256 atm_account_tx(atmvcc, skb);
257 dev->stats.tx_packets++;
258 dev->stats.tx_bytes += skb->len;
260 if (atomic_dec_return(&brvcc->qspace) < 1) {
261 /* No more please! */
262 netif_stop_queue(brvcc->device);
263 /* We might have raced with br2684_pop() */
264 if (unlikely(atomic_read(&brvcc->qspace) > 0))
265 netif_wake_queue(brvcc->device);
268 /* If this fails immediately, the skb will be freed and br2684_pop()
269 will wake the queue if appropriate. Just return an error so that
270 the stats are updated correctly */
271 return !atmvcc->send(atmvcc, skb);
274 static void br2684_release_cb(struct atm_vcc *atmvcc)
276 struct br2684_vcc *brvcc = BR2684_VCC(atmvcc);
278 if (atomic_read(&brvcc->qspace) > 0)
279 netif_wake_queue(brvcc->device);
281 if (brvcc->old_release_cb)
282 brvcc->old_release_cb(atmvcc);
285 static inline struct br2684_vcc *pick_outgoing_vcc(const struct sk_buff *skb,
286 const struct br2684_dev *brdev)
288 return list_empty(&brdev->brvccs) ? NULL : list_entry_brvcc(brdev->brvccs.next); /* 1 vcc/dev right now */
291 static netdev_tx_t br2684_start_xmit(struct sk_buff *skb,
292 struct net_device *dev)
294 struct br2684_dev *brdev = BRPRIV(dev);
295 struct br2684_vcc *brvcc;
296 struct atm_vcc *atmvcc;
297 netdev_tx_t ret = NETDEV_TX_OK;
299 pr_debug("skb_dst(skb)=%p\n", skb_dst(skb));
300 read_lock(&devs_lock);
301 brvcc = pick_outgoing_vcc(skb, brdev);
303 pr_debug("no vcc attached to dev %s\n", dev->name);
304 dev->stats.tx_errors++;
305 dev->stats.tx_carrier_errors++;
306 /* netif_stop_queue(dev); */
310 atmvcc = brvcc->atmvcc;
312 bh_lock_sock(sk_atm(atmvcc));
314 if (test_bit(ATM_VF_RELEASED, &atmvcc->flags) ||
315 test_bit(ATM_VF_CLOSE, &atmvcc->flags) ||
316 !test_bit(ATM_VF_READY, &atmvcc->flags)) {
317 dev->stats.tx_dropped++;
322 if (sock_owned_by_user(sk_atm(atmvcc))) {
323 netif_stop_queue(brvcc->device);
324 ret = NETDEV_TX_BUSY;
328 if (!br2684_xmit_vcc(skb, dev, brvcc)) {
330 * We should probably use netif_*_queue() here, but that
331 * involves added complication. We need to walk before
334 * Don't free here! this pointer might be no longer valid!
336 dev->stats.tx_errors++;
337 dev->stats.tx_fifo_errors++;
340 bh_unlock_sock(sk_atm(atmvcc));
342 read_unlock(&devs_lock);
347 * We remember when the MAC gets set, so we don't override it later with
348 * the ESI of the ATM card of the first VC
350 static int br2684_mac_addr(struct net_device *dev, void *p)
352 int err = eth_mac_addr(dev, p);
354 BRPRIV(dev)->mac_was_set = 1;
358 #ifdef CONFIG_ATM_BR2684_IPFILTER
359 /* this IOCTL is experimental. */
360 static int br2684_setfilt(struct atm_vcc *atmvcc, void __user * arg)
362 struct br2684_vcc *brvcc;
363 struct br2684_filter_set fs;
365 if (copy_from_user(&fs, arg, sizeof fs))
367 if (fs.ifspec.method != BR2684_FIND_BYNOTHING) {
369 * This is really a per-vcc thing, but we can also search
372 struct br2684_dev *brdev;
373 read_lock(&devs_lock);
374 brdev = BRPRIV(br2684_find_dev(&fs.ifspec));
375 if (brdev == NULL || list_empty(&brdev->brvccs) ||
376 brdev->brvccs.next != brdev->brvccs.prev) /* >1 VCC */
379 brvcc = list_entry_brvcc(brdev->brvccs.next);
380 read_unlock(&devs_lock);
384 brvcc = BR2684_VCC(atmvcc);
385 memcpy(&brvcc->filter, &fs.filter, sizeof(brvcc->filter));
389 /* Returns 1 if packet should be dropped */
391 packet_fails_filter(__be16 type, struct br2684_vcc *brvcc, struct sk_buff *skb)
393 if (brvcc->filter.netmask == 0)
394 return 0; /* no filter in place */
395 if (type == htons(ETH_P_IP) &&
396 (((struct iphdr *)(skb->data))->daddr & brvcc->filter.
397 netmask) == brvcc->filter.prefix)
399 if (type == htons(ETH_P_ARP))
402 * TODO: we should probably filter ARPs too.. don't want to have
403 * them returning values that don't make sense, or is that ok?
407 #endif /* CONFIG_ATM_BR2684_IPFILTER */
409 static void br2684_close_vcc(struct br2684_vcc *brvcc)
411 pr_debug("removing VCC %p from dev %p\n", brvcc, brvcc->device);
412 write_lock_irq(&devs_lock);
413 list_del(&brvcc->brvccs);
414 write_unlock_irq(&devs_lock);
415 brvcc->atmvcc->user_back = NULL; /* what about vcc->recvq ??? */
416 brvcc->atmvcc->release_cb = brvcc->old_release_cb;
417 brvcc->old_push(brvcc->atmvcc, NULL); /* pass on the bad news */
418 module_put(brvcc->old_owner);
422 /* when AAL5 PDU comes in: */
423 static void br2684_push(struct atm_vcc *atmvcc, struct sk_buff *skb)
425 struct br2684_vcc *brvcc = BR2684_VCC(atmvcc);
426 struct net_device *net_dev = brvcc->device;
427 struct br2684_dev *brdev = BRPRIV(net_dev);
431 if (unlikely(skb == NULL)) {
432 /* skb==NULL means VCC is being destroyed */
433 br2684_close_vcc(brvcc);
434 if (list_empty(&brdev->brvccs)) {
435 write_lock_irq(&devs_lock);
436 list_del(&brdev->br2684_devs);
437 write_unlock_irq(&devs_lock);
438 unregister_netdev(net_dev);
439 free_netdev(net_dev);
445 atm_return(atmvcc, skb->truesize);
446 pr_debug("skb from brdev %p\n", brdev);
447 if (brvcc->encaps == e_llc) {
449 if (skb->len > 7 && skb->data[7] == 0x01)
450 __skb_trim(skb, skb->len - 4);
452 /* accept packets that have "ipv[46]" in the snap header */
453 if ((skb->len >= (sizeof(llc_oui_ipv4))) &&
454 (memcmp(skb->data, llc_oui_ipv4,
455 sizeof(llc_oui_ipv4) - BR2684_ETHERTYPE_LEN) == 0)) {
456 if (memcmp(skb->data + 6, ethertype_ipv6,
457 sizeof(ethertype_ipv6)) == 0)
458 skb->protocol = htons(ETH_P_IPV6);
459 else if (memcmp(skb->data + 6, ethertype_ipv4,
460 sizeof(ethertype_ipv4)) == 0)
461 skb->protocol = htons(ETH_P_IP);
464 skb_pull(skb, sizeof(llc_oui_ipv4));
465 skb_reset_network_header(skb);
466 skb->pkt_type = PACKET_HOST;
468 * Let us waste some time for checking the encapsulation.
469 * Note, that only 7 char is checked so frames with a valid FCS
470 * are also accepted (but FCS is not checked of course).
472 } else if ((skb->len >= sizeof(llc_oui_pid_pad)) &&
473 (memcmp(skb->data, llc_oui_pid_pad, 7) == 0)) {
474 skb_pull(skb, sizeof(llc_oui_pid_pad));
475 skb->protocol = eth_type_trans(skb, net_dev);
480 if (brdev->payload == p_routed) {
483 skb_reset_network_header(skb);
485 if (iph->version == 4)
486 skb->protocol = htons(ETH_P_IP);
487 else if (iph->version == 6)
488 skb->protocol = htons(ETH_P_IPV6);
491 skb->pkt_type = PACKET_HOST;
492 } else { /* p_bridged */
493 /* first 2 chars should be 0 */
494 if (memcmp(skb->data, pad, BR2684_PAD_LEN) != 0)
496 skb_pull(skb, BR2684_PAD_LEN);
497 skb->protocol = eth_type_trans(skb, net_dev);
501 #ifdef CONFIG_ATM_BR2684_IPFILTER
502 if (unlikely(packet_fails_filter(skb->protocol, brvcc, skb)))
504 #endif /* CONFIG_ATM_BR2684_IPFILTER */
506 ATM_SKB(skb)->vcc = atmvcc; /* needed ? */
507 pr_debug("received packet's protocol: %x\n", ntohs(skb->protocol));
509 /* sigh, interface is down? */
510 if (unlikely(!(net_dev->flags & IFF_UP)))
512 net_dev->stats.rx_packets++;
513 net_dev->stats.rx_bytes += skb->len;
514 memset(ATM_SKB(skb), 0, sizeof(struct atm_skb_data));
519 net_dev->stats.rx_dropped++;
522 net_dev->stats.rx_errors++;
528 * Assign a vcc to a dev
529 * Note: we do not have explicit unassign, but look at _push()
531 static int br2684_regvcc(struct atm_vcc *atmvcc, void __user * arg)
533 struct br2684_vcc *brvcc;
534 struct br2684_dev *brdev;
535 struct net_device *net_dev;
536 struct atm_backend_br2684 be;
539 if (copy_from_user(&be, arg, sizeof be))
541 brvcc = kzalloc(sizeof(struct br2684_vcc), GFP_KERNEL);
545 * Allow two packets in the ATM queue. One actually being sent, and one
546 * for the ATM 'TX done' handler to send. It shouldn't take long to get
547 * the next one from the netdev queue, when we need it. More than that
548 * would be bufferbloat.
550 atomic_set(&brvcc->qspace, 2);
551 write_lock_irq(&devs_lock);
552 net_dev = br2684_find_dev(&be.ifspec);
553 if (net_dev == NULL) {
554 pr_err("tried to attach to non-existent device\n");
558 brdev = BRPRIV(net_dev);
559 if (atmvcc->push == NULL) {
563 if (!list_empty(&brdev->brvccs)) {
564 /* Only 1 VCC/dev right now */
568 if (be.fcs_in != BR2684_FCSIN_NO ||
569 be.fcs_out != BR2684_FCSOUT_NO ||
570 be.fcs_auto || be.has_vpiid || be.send_padding ||
571 (be.encaps != BR2684_ENCAPS_VC &&
572 be.encaps != BR2684_ENCAPS_LLC) ||
577 pr_debug("vcc=%p, encaps=%d, brvcc=%p\n", atmvcc, be.encaps, brvcc);
578 if (list_empty(&brdev->brvccs) && !brdev->mac_was_set) {
579 unsigned char *esi = atmvcc->dev->esi;
582 if (esi[0] | esi[1] | esi[2] | esi[3] | esi[4] | esi[5])
583 dev_addr_set(net_dev, esi);
585 dev_addr_mod(net_dev, 2, &one, 1);
587 list_add(&brvcc->brvccs, &brdev->brvccs);
588 write_unlock_irq(&devs_lock);
589 brvcc->device = net_dev;
590 brvcc->atmvcc = atmvcc;
591 atmvcc->user_back = brvcc;
592 brvcc->encaps = (enum br2684_encaps)be.encaps;
593 brvcc->old_push = atmvcc->push;
594 brvcc->old_pop = atmvcc->pop;
595 brvcc->old_release_cb = atmvcc->release_cb;
596 brvcc->old_owner = atmvcc->owner;
598 atmvcc->push = br2684_push;
599 atmvcc->pop = br2684_pop;
600 atmvcc->release_cb = br2684_release_cb;
601 atmvcc->owner = THIS_MODULE;
603 /* initialize netdev carrier state */
604 if (atmvcc->dev->signal == ATM_PHY_SIG_LOST)
605 netif_carrier_off(net_dev);
607 netif_carrier_on(net_dev);
609 __module_get(THIS_MODULE);
611 /* re-process everything received between connection setup and
613 vcc_process_recv_queue(atmvcc);
617 write_unlock_irq(&devs_lock);
622 static const struct net_device_ops br2684_netdev_ops = {
623 .ndo_start_xmit = br2684_start_xmit,
624 .ndo_set_mac_address = br2684_mac_addr,
625 .ndo_validate_addr = eth_validate_addr,
628 static const struct net_device_ops br2684_netdev_ops_routed = {
629 .ndo_start_xmit = br2684_start_xmit,
630 .ndo_set_mac_address = br2684_mac_addr,
633 static void br2684_setup(struct net_device *netdev)
635 struct br2684_dev *brdev = BRPRIV(netdev);
638 netdev->hard_header_len += sizeof(llc_oui_pid_pad); /* worst case */
639 brdev->net_dev = netdev;
641 netdev->netdev_ops = &br2684_netdev_ops;
643 INIT_LIST_HEAD(&brdev->brvccs);
646 static void br2684_setup_routed(struct net_device *netdev)
648 struct br2684_dev *brdev = BRPRIV(netdev);
650 brdev->net_dev = netdev;
651 netdev->hard_header_len = sizeof(llc_oui_ipv4); /* worst case */
652 netdev->netdev_ops = &br2684_netdev_ops_routed;
653 netdev->addr_len = 0;
654 netdev->mtu = ETH_DATA_LEN;
656 netdev->max_mtu = ETH_MAX_MTU;
657 netdev->type = ARPHRD_PPP;
658 netdev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
659 netdev->tx_queue_len = 100;
660 INIT_LIST_HEAD(&brdev->brvccs);
663 static int br2684_create(void __user *arg)
666 struct net_device *netdev;
667 struct br2684_dev *brdev;
668 struct atm_newif_br2684 ni;
669 enum br2684_payload payload;
673 if (copy_from_user(&ni, arg, sizeof ni))
676 if (ni.media & BR2684_FLAG_ROUTED)
680 ni.media &= 0xffff; /* strip flags */
682 if (ni.media != BR2684_MEDIA_ETHERNET || ni.mtu != 1500)
685 netdev = alloc_netdev(sizeof(struct br2684_dev),
686 ni.ifname[0] ? ni.ifname : "nas%d",
688 (payload == p_routed) ? br2684_setup_routed : br2684_setup);
692 brdev = BRPRIV(netdev);
694 pr_debug("registered netdev %s\n", netdev->name);
695 /* open, stop, do_ioctl ? */
696 err = register_netdev(netdev);
698 pr_err("register_netdev failed\n");
703 write_lock_irq(&devs_lock);
705 brdev->payload = payload;
707 if (list_empty(&br2684_devs)) {
708 /* 1st br2684 device */
711 brdev->number = BRPRIV(list_entry_brdev(br2684_devs.prev))->number + 1;
713 list_add_tail(&brdev->br2684_devs, &br2684_devs);
714 write_unlock_irq(&devs_lock);
719 * This handles ioctls actually performed on our vcc - we must return
720 * -ENOIOCTLCMD for any unrecognized ioctl
722 static int br2684_ioctl(struct socket *sock, unsigned int cmd,
725 struct atm_vcc *atmvcc = ATM_SD(sock);
726 void __user *argp = (void __user *)arg;
732 case ATM_NEWBACKENDIF:
733 err = get_user(b, (atm_backend_t __user *) argp);
736 if (b != ATM_BACKEND_BR2684)
738 if (!capable(CAP_NET_ADMIN))
740 if (cmd == ATM_SETBACKEND) {
741 if (sock->state != SS_CONNECTED)
743 return br2684_regvcc(atmvcc, argp);
745 return br2684_create(argp);
747 #ifdef CONFIG_ATM_BR2684_IPFILTER
749 if (atmvcc->push != br2684_push)
751 if (!capable(CAP_NET_ADMIN))
753 err = br2684_setfilt(atmvcc, argp);
756 #endif /* CONFIG_ATM_BR2684_IPFILTER */
761 static struct atm_ioctl br2684_ioctl_ops = {
762 .owner = THIS_MODULE,
763 .ioctl = br2684_ioctl,
766 #ifdef CONFIG_PROC_FS
767 static void *br2684_seq_start(struct seq_file *seq, loff_t * pos)
768 __acquires(devs_lock)
770 read_lock(&devs_lock);
771 return seq_list_start(&br2684_devs, *pos);
774 static void *br2684_seq_next(struct seq_file *seq, void *v, loff_t * pos)
776 return seq_list_next(v, &br2684_devs, pos);
779 static void br2684_seq_stop(struct seq_file *seq, void *v)
780 __releases(devs_lock)
782 read_unlock(&devs_lock);
785 static int br2684_seq_show(struct seq_file *seq, void *v)
787 const struct br2684_dev *brdev = list_entry(v, struct br2684_dev,
789 const struct net_device *net_dev = brdev->net_dev;
790 const struct br2684_vcc *brvcc;
792 seq_printf(seq, "dev %.16s: num=%d, mac=%pM (%s)\n",
796 brdev->mac_was_set ? "set" : "auto");
798 list_for_each_entry(brvcc, &brdev->brvccs, brvccs) {
799 seq_printf(seq, " vcc %d.%d.%d: encaps=%s payload=%s"
800 ", failed copies %u/%u"
801 "\n", brvcc->atmvcc->dev->number,
802 brvcc->atmvcc->vpi, brvcc->atmvcc->vci,
803 (brvcc->encaps == e_llc) ? "LLC" : "VC",
804 (brdev->payload == p_bridged) ? "bridged" : "routed",
805 brvcc->copies_failed, brvcc->copies_needed);
806 #ifdef CONFIG_ATM_BR2684_IPFILTER
807 if (brvcc->filter.netmask != 0)
808 seq_printf(seq, " filter=%pI4/%pI4\n",
809 &brvcc->filter.prefix,
810 &brvcc->filter.netmask);
811 #endif /* CONFIG_ATM_BR2684_IPFILTER */
816 static const struct seq_operations br2684_seq_ops = {
817 .start = br2684_seq_start,
818 .next = br2684_seq_next,
819 .stop = br2684_seq_stop,
820 .show = br2684_seq_show,
823 extern struct proc_dir_entry *atm_proc_root; /* from proc.c */
824 #endif /* CONFIG_PROC_FS */
826 static int __init br2684_init(void)
828 #ifdef CONFIG_PROC_FS
829 struct proc_dir_entry *p;
830 p = proc_create_seq("br2684", 0, atm_proc_root, &br2684_seq_ops);
834 register_atm_ioctl(&br2684_ioctl_ops);
835 register_atmdevice_notifier(&atm_dev_notifier);
839 static void __exit br2684_exit(void)
841 struct net_device *net_dev;
842 struct br2684_dev *brdev;
843 struct br2684_vcc *brvcc;
844 deregister_atm_ioctl(&br2684_ioctl_ops);
846 #ifdef CONFIG_PROC_FS
847 remove_proc_entry("br2684", atm_proc_root);
851 unregister_atmdevice_notifier(&atm_dev_notifier);
853 while (!list_empty(&br2684_devs)) {
854 net_dev = list_entry_brdev(br2684_devs.next);
855 brdev = BRPRIV(net_dev);
856 while (!list_empty(&brdev->brvccs)) {
857 brvcc = list_entry_brvcc(brdev->brvccs.next);
858 br2684_close_vcc(brvcc);
861 list_del(&brdev->br2684_devs);
862 unregister_netdev(net_dev);
863 free_netdev(net_dev);
867 module_init(br2684_init);
868 module_exit(br2684_exit);
870 MODULE_AUTHOR("Marcell GAL");
871 MODULE_DESCRIPTION("RFC2684 bridged protocols over ATM/AAL5");
872 MODULE_LICENSE("GPL");