2 * Ethernet netdevice using ATM AAL5 as underlying carrier
3 * (RFC1483 obsoleted by RFC2684) for Linux
5 * Authors: Marcell GAL, 2000, XDSL Ltd, Hungary
6 * Eric Kinzie, 2006-2007, US Naval Research Laboratory
9 #include <linux/module.h>
10 #include <linux/init.h>
11 #include <linux/kernel.h>
12 #include <linux/list.h>
13 #include <linux/netdevice.h>
14 #include <linux/skbuff.h>
15 #include <linux/etherdevice.h>
16 #include <linux/rtnetlink.h>
18 #include <asm/uaccess.h>
20 #include <linux/atm.h>
21 #include <linux/atmdev.h>
22 #include <linux/capability.h>
23 #include <linux/seq_file.h>
25 #include <linux/atmbr2684.h>
30 static void skb_debug(const struct sk_buff
*skb
)
33 char buf
[NUM2PRINT
* 3 + 1]; /* 3 chars per byte */
35 for (i
= 0; i
< skb
->len
&& i
< NUM2PRINT
; i
++) {
36 sprintf(buf
+ i
* 3, "%2.2x ", 0xff & skb
->data
[i
]);
38 printk(KERN_DEBUG
"br2684: skb: %s\n", buf
);
41 #define skb_debug(skb) do {} while (0)
44 #define BR2684_ETHERTYPE_LEN 2
45 #define BR2684_PAD_LEN 2
47 #define LLC 0xaa, 0xaa, 0x03
48 #define SNAP_BRIDGED 0x00, 0x80, 0xc2
49 #define SNAP_ROUTED 0x00, 0x00, 0x00
50 #define PID_ETHERNET 0x00, 0x07
51 #define ETHERTYPE_IPV4 0x08, 0x00
52 #define ETHERTYPE_IPV6 0x86, 0xdd
53 #define PAD_BRIDGED 0x00, 0x00
55 static const unsigned char ethertype_ipv4
[] = { ETHERTYPE_IPV4
};
56 static const unsigned char ethertype_ipv6
[] = { ETHERTYPE_IPV6
};
57 static const unsigned char llc_oui_pid_pad
[] =
58 { LLC
, SNAP_BRIDGED
, PID_ETHERNET
, PAD_BRIDGED
};
59 static const unsigned char llc_oui_ipv4
[] = { LLC
, SNAP_ROUTED
, ETHERTYPE_IPV4
};
60 static const unsigned char llc_oui_ipv6
[] = { LLC
, SNAP_ROUTED
, ETHERTYPE_IPV6
};
63 e_vc
= BR2684_ENCAPS_VC
,
64 e_llc
= BR2684_ENCAPS_LLC
,
68 struct atm_vcc
*atmvcc
;
69 struct net_device
*device
;
70 /* keep old push, pop functions for chaining */
71 void (*old_push
) (struct atm_vcc
* vcc
, struct sk_buff
* skb
);
72 void (*old_pop
)(struct atm_vcc
*vcc
, struct sk_buff
*skb
);
73 enum br2684_encaps encaps
;
74 struct list_head brvccs
;
75 #ifdef CONFIG_ATM_BR2684_IPFILTER
76 struct br2684_filter filter
;
77 #endif /* CONFIG_ATM_BR2684_IPFILTER */
78 unsigned copies_needed
, copies_failed
;
82 struct net_device
*net_dev
;
83 struct list_head br2684_devs
;
85 struct list_head brvccs
; /* one device <=> one vcc (before xmas) */
87 enum br2684_payload payload
;
91 * This lock should be held for writing any time the list of devices or
92 * their attached vcc's could be altered. It should be held for reading
93 * any time these are being queried. Note that we sometimes need to
94 * do read-locking under interrupt context, so write locking must block
95 * the current CPU's interrupts
97 static DEFINE_RWLOCK(devs_lock
);
99 static LIST_HEAD(br2684_devs
);
101 static inline struct br2684_dev
*BRPRIV(const struct net_device
*net_dev
)
103 return (struct br2684_dev
*)netdev_priv(net_dev
);
106 static inline struct net_device
*list_entry_brdev(const struct list_head
*le
)
108 return list_entry(le
, struct br2684_dev
, br2684_devs
)->net_dev
;
111 static inline struct br2684_vcc
*BR2684_VCC(const struct atm_vcc
*atmvcc
)
113 return (struct br2684_vcc
*)(atmvcc
->user_back
);
116 static inline struct br2684_vcc
*list_entry_brvcc(const struct list_head
*le
)
118 return list_entry(le
, struct br2684_vcc
, brvccs
);
121 /* Caller should hold read_lock(&devs_lock) */
122 static struct net_device
*br2684_find_dev(const struct br2684_if_spec
*s
)
124 struct list_head
*lh
;
125 struct net_device
*net_dev
;
127 case BR2684_FIND_BYNUM
:
128 list_for_each(lh
, &br2684_devs
) {
129 net_dev
= list_entry_brdev(lh
);
130 if (BRPRIV(net_dev
)->number
== s
->spec
.devnum
)
134 case BR2684_FIND_BYIFNAME
:
135 list_for_each(lh
, &br2684_devs
) {
136 net_dev
= list_entry_brdev(lh
);
137 if (!strncmp(net_dev
->name
, s
->spec
.ifname
, IFNAMSIZ
))
145 /* chained vcc->pop function. Check if we should wake the netif_queue */
146 static void br2684_pop(struct atm_vcc
*vcc
, struct sk_buff
*skb
)
148 struct br2684_vcc
*brvcc
= BR2684_VCC(vcc
);
149 struct net_device
*net_dev
= skb
->dev
;
151 pr_debug("br2684_pop(vcc %p ; net_dev %p )\n", vcc
, net_dev
);
152 brvcc
->old_pop(vcc
, skb
);
157 if (atm_may_send(vcc
, 0))
158 netif_wake_queue(net_dev
);
162 * Send a packet out a particular vcc. Not to useful right now, but paves
163 * the way for multiple vcc's per itf. Returns true if we can send,
166 static int br2684_xmit_vcc(struct sk_buff
*skb
, struct net_device
*dev
,
167 struct br2684_vcc
*brvcc
)
169 struct br2684_dev
*brdev
= BRPRIV(dev
);
170 struct atm_vcc
*atmvcc
;
171 int minheadroom
= (brvcc
->encaps
== e_llc
) ? 10 : 2;
173 if (skb_headroom(skb
) < minheadroom
) {
174 struct sk_buff
*skb2
= skb_realloc_headroom(skb
, minheadroom
);
175 brvcc
->copies_needed
++;
178 brvcc
->copies_failed
++;
184 if (brvcc
->encaps
== e_llc
) {
185 if (brdev
->payload
== p_bridged
) {
186 skb_push(skb
, sizeof(llc_oui_pid_pad
));
187 skb_copy_to_linear_data(skb
, llc_oui_pid_pad
,
188 sizeof(llc_oui_pid_pad
));
189 } else if (brdev
->payload
== p_routed
) {
190 unsigned short prot
= ntohs(skb
->protocol
);
192 skb_push(skb
, sizeof(llc_oui_ipv4
));
195 skb_copy_to_linear_data(skb
, llc_oui_ipv4
,
196 sizeof(llc_oui_ipv4
));
199 skb_copy_to_linear_data(skb
, llc_oui_ipv6
,
200 sizeof(llc_oui_ipv6
));
208 if (brdev
->payload
== p_bridged
) {
210 memset(skb
->data
, 0, 2);
215 ATM_SKB(skb
)->vcc
= atmvcc
= brvcc
->atmvcc
;
216 pr_debug("atm_skb(%p)->vcc(%p)->dev(%p)\n", skb
, atmvcc
, atmvcc
->dev
);
217 atomic_add(skb
->truesize
, &sk_atm(atmvcc
)->sk_wmem_alloc
);
218 ATM_SKB(skb
)->atm_options
= atmvcc
->atm_options
;
219 dev
->stats
.tx_packets
++;
220 dev
->stats
.tx_bytes
+= skb
->len
;
221 atmvcc
->send(atmvcc
, skb
);
223 if (!atm_may_send(atmvcc
, 0)) {
224 netif_stop_queue(brvcc
->device
);
225 /*check for race with br2684_pop*/
226 if (atm_may_send(atmvcc
, 0))
227 netif_start_queue(brvcc
->device
);
233 static inline struct br2684_vcc
*pick_outgoing_vcc(const struct sk_buff
*skb
,
234 const struct br2684_dev
*brdev
)
236 return list_empty(&brdev
->brvccs
) ? NULL
: list_entry_brvcc(brdev
->brvccs
.next
); /* 1 vcc/dev right now */
239 static netdev_tx_t
br2684_start_xmit(struct sk_buff
*skb
,
240 struct net_device
*dev
)
242 struct br2684_dev
*brdev
= BRPRIV(dev
);
243 struct br2684_vcc
*brvcc
;
245 pr_debug("br2684_start_xmit, skb_dst(skb)=%p\n", skb_dst(skb
));
246 read_lock(&devs_lock
);
247 brvcc
= pick_outgoing_vcc(skb
, brdev
);
249 pr_debug("no vcc attached to dev %s\n", dev
->name
);
250 dev
->stats
.tx_errors
++;
251 dev
->stats
.tx_carrier_errors
++;
252 /* netif_stop_queue(dev); */
254 read_unlock(&devs_lock
);
257 if (!br2684_xmit_vcc(skb
, dev
, brvcc
)) {
259 * We should probably use netif_*_queue() here, but that
260 * involves added complication. We need to walk before
263 * Don't free here! this pointer might be no longer valid!
265 dev
->stats
.tx_errors
++;
266 dev
->stats
.tx_fifo_errors
++;
268 read_unlock(&devs_lock
);
273 * We remember when the MAC gets set, so we don't override it later with
274 * the ESI of the ATM card of the first VC
276 static int br2684_mac_addr(struct net_device
*dev
, void *p
)
278 int err
= eth_mac_addr(dev
, p
);
280 BRPRIV(dev
)->mac_was_set
= 1;
284 #ifdef CONFIG_ATM_BR2684_IPFILTER
285 /* this IOCTL is experimental. */
286 static int br2684_setfilt(struct atm_vcc
*atmvcc
, void __user
* arg
)
288 struct br2684_vcc
*brvcc
;
289 struct br2684_filter_set fs
;
291 if (copy_from_user(&fs
, arg
, sizeof fs
))
293 if (fs
.ifspec
.method
!= BR2684_FIND_BYNOTHING
) {
295 * This is really a per-vcc thing, but we can also search
298 struct br2684_dev
*brdev
;
299 read_lock(&devs_lock
);
300 brdev
= BRPRIV(br2684_find_dev(&fs
.ifspec
));
301 if (brdev
== NULL
|| list_empty(&brdev
->brvccs
) || brdev
->brvccs
.next
!= brdev
->brvccs
.prev
) /* >1 VCC */
304 brvcc
= list_entry_brvcc(brdev
->brvccs
.next
);
305 read_unlock(&devs_lock
);
309 brvcc
= BR2684_VCC(atmvcc
);
310 memcpy(&brvcc
->filter
, &fs
.filter
, sizeof(brvcc
->filter
));
314 /* Returns 1 if packet should be dropped */
316 packet_fails_filter(__be16 type
, struct br2684_vcc
*brvcc
, struct sk_buff
*skb
)
318 if (brvcc
->filter
.netmask
== 0)
319 return 0; /* no filter in place */
320 if (type
== htons(ETH_P_IP
) &&
321 (((struct iphdr
*)(skb
->data
))->daddr
& brvcc
->filter
.
322 netmask
) == brvcc
->filter
.prefix
)
324 if (type
== htons(ETH_P_ARP
))
327 * TODO: we should probably filter ARPs too.. don't want to have
328 * them returning values that don't make sense, or is that ok?
332 #endif /* CONFIG_ATM_BR2684_IPFILTER */
334 static void br2684_close_vcc(struct br2684_vcc
*brvcc
)
336 pr_debug("removing VCC %p from dev %p\n", brvcc
, brvcc
->device
);
337 write_lock_irq(&devs_lock
);
338 list_del(&brvcc
->brvccs
);
339 write_unlock_irq(&devs_lock
);
340 brvcc
->atmvcc
->user_back
= NULL
; /* what about vcc->recvq ??? */
341 brvcc
->old_push(brvcc
->atmvcc
, NULL
); /* pass on the bad news */
343 module_put(THIS_MODULE
);
346 /* when AAL5 PDU comes in: */
347 static void br2684_push(struct atm_vcc
*atmvcc
, struct sk_buff
*skb
)
349 struct br2684_vcc
*brvcc
= BR2684_VCC(atmvcc
);
350 struct net_device
*net_dev
= brvcc
->device
;
351 struct br2684_dev
*brdev
= BRPRIV(net_dev
);
353 pr_debug("br2684_push\n");
355 if (unlikely(skb
== NULL
)) {
356 /* skb==NULL means VCC is being destroyed */
357 br2684_close_vcc(brvcc
);
358 if (list_empty(&brdev
->brvccs
)) {
359 write_lock_irq(&devs_lock
);
360 list_del(&brdev
->br2684_devs
);
361 write_unlock_irq(&devs_lock
);
362 unregister_netdev(net_dev
);
363 free_netdev(net_dev
);
369 atm_return(atmvcc
, skb
->truesize
);
370 pr_debug("skb from brdev %p\n", brdev
);
371 if (brvcc
->encaps
== e_llc
) {
373 if (skb
->len
> 7 && skb
->data
[7] == 0x01)
374 __skb_trim(skb
, skb
->len
- 4);
376 /* accept packets that have "ipv[46]" in the snap header */
377 if ((skb
->len
>= (sizeof(llc_oui_ipv4
)))
380 (skb
->data
, llc_oui_ipv4
,
381 sizeof(llc_oui_ipv4
) - BR2684_ETHERTYPE_LEN
) == 0)) {
383 (skb
->data
+ 6, ethertype_ipv6
,
384 sizeof(ethertype_ipv6
)) == 0)
385 skb
->protocol
= htons(ETH_P_IPV6
);
387 (skb
->data
+ 6, ethertype_ipv4
,
388 sizeof(ethertype_ipv4
)) == 0)
389 skb
->protocol
= htons(ETH_P_IP
);
392 skb_pull(skb
, sizeof(llc_oui_ipv4
));
393 skb_reset_network_header(skb
);
394 skb
->pkt_type
= PACKET_HOST
;
396 * Let us waste some time for checking the encapsulation.
397 * Note, that only 7 char is checked so frames with a valid FCS
398 * are also accepted (but FCS is not checked of course).
400 } else if ((skb
->len
>= sizeof(llc_oui_pid_pad
)) &&
401 (memcmp(skb
->data
, llc_oui_pid_pad
, 7) == 0)) {
402 skb_pull(skb
, sizeof(llc_oui_pid_pad
));
403 skb
->protocol
= eth_type_trans(skb
, net_dev
);
408 if (brdev
->payload
== p_routed
) {
411 skb_reset_network_header(skb
);
413 if (iph
->version
== 4)
414 skb
->protocol
= htons(ETH_P_IP
);
415 else if (iph
->version
== 6)
416 skb
->protocol
= htons(ETH_P_IPV6
);
419 skb
->pkt_type
= PACKET_HOST
;
420 } else { /* p_bridged */
421 /* first 2 chars should be 0 */
422 if (*((u16
*) (skb
->data
)) != 0)
424 skb_pull(skb
, BR2684_PAD_LEN
);
425 skb
->protocol
= eth_type_trans(skb
, net_dev
);
429 #ifdef CONFIG_ATM_BR2684_IPFILTER
430 if (unlikely(packet_fails_filter(skb
->protocol
, brvcc
, skb
)))
432 #endif /* CONFIG_ATM_BR2684_IPFILTER */
434 ATM_SKB(skb
)->vcc
= atmvcc
; /* needed ? */
435 pr_debug("received packet's protocol: %x\n", ntohs(skb
->protocol
));
437 /* sigh, interface is down? */
438 if (unlikely(!(net_dev
->flags
& IFF_UP
)))
440 net_dev
->stats
.rx_packets
++;
441 net_dev
->stats
.rx_bytes
+= skb
->len
;
442 memset(ATM_SKB(skb
), 0, sizeof(struct atm_skb_data
));
447 net_dev
->stats
.rx_dropped
++;
450 net_dev
->stats
.rx_errors
++;
457 * Assign a vcc to a dev
458 * Note: we do not have explicit unassign, but look at _push()
460 static int br2684_regvcc(struct atm_vcc
*atmvcc
, void __user
* arg
)
462 struct sk_buff_head queue
;
464 struct br2684_vcc
*brvcc
;
465 struct sk_buff
*skb
, *tmp
;
466 struct sk_buff_head
*rq
;
467 struct br2684_dev
*brdev
;
468 struct net_device
*net_dev
;
469 struct atm_backend_br2684 be
;
472 if (copy_from_user(&be
, arg
, sizeof be
))
474 brvcc
= kzalloc(sizeof(struct br2684_vcc
), GFP_KERNEL
);
477 write_lock_irq(&devs_lock
);
478 net_dev
= br2684_find_dev(&be
.ifspec
);
479 if (net_dev
== NULL
) {
481 "br2684: tried to attach to non-existant device\n");
485 brdev
= BRPRIV(net_dev
);
486 if (atmvcc
->push
== NULL
) {
490 if (!list_empty(&brdev
->brvccs
)) {
491 /* Only 1 VCC/dev right now */
495 if (be
.fcs_in
!= BR2684_FCSIN_NO
|| be
.fcs_out
!= BR2684_FCSOUT_NO
||
496 be
.fcs_auto
|| be
.has_vpiid
|| be
.send_padding
|| (be
.encaps
!=
500 || be
.min_size
!= 0) {
504 pr_debug("br2684_regvcc vcc=%p, encaps=%d, brvcc=%p\n", atmvcc
,
506 if (list_empty(&brdev
->brvccs
) && !brdev
->mac_was_set
) {
507 unsigned char *esi
= atmvcc
->dev
->esi
;
508 if (esi
[0] | esi
[1] | esi
[2] | esi
[3] | esi
[4] | esi
[5])
509 memcpy(net_dev
->dev_addr
, esi
, net_dev
->addr_len
);
511 net_dev
->dev_addr
[2] = 1;
513 list_add(&brvcc
->brvccs
, &brdev
->brvccs
);
514 write_unlock_irq(&devs_lock
);
515 brvcc
->device
= net_dev
;
516 brvcc
->atmvcc
= atmvcc
;
517 atmvcc
->user_back
= brvcc
;
518 brvcc
->encaps
= (enum br2684_encaps
)be
.encaps
;
519 brvcc
->old_push
= atmvcc
->push
;
520 brvcc
->old_pop
= atmvcc
->pop
;
522 atmvcc
->push
= br2684_push
;
523 atmvcc
->pop
= br2684_pop
;
525 __skb_queue_head_init(&queue
);
526 rq
= &sk_atm(atmvcc
)->sk_receive_queue
;
528 spin_lock_irqsave(&rq
->lock
, flags
);
529 skb_queue_splice_init(rq
, &queue
);
530 spin_unlock_irqrestore(&rq
->lock
, flags
);
532 skb_queue_walk_safe(&queue
, skb
, tmp
) {
533 struct net_device
*dev
;
535 br2684_push(atmvcc
, skb
);
538 dev
->stats
.rx_bytes
-= skb
->len
;
539 dev
->stats
.rx_packets
--;
541 __module_get(THIS_MODULE
);
544 write_unlock_irq(&devs_lock
);
549 static const struct net_device_ops br2684_netdev_ops
= {
550 .ndo_start_xmit
= br2684_start_xmit
,
551 .ndo_set_mac_address
= br2684_mac_addr
,
552 .ndo_change_mtu
= eth_change_mtu
,
553 .ndo_validate_addr
= eth_validate_addr
,
556 static const struct net_device_ops br2684_netdev_ops_routed
= {
557 .ndo_start_xmit
= br2684_start_xmit
,
558 .ndo_set_mac_address
= br2684_mac_addr
,
559 .ndo_change_mtu
= eth_change_mtu
562 static void br2684_setup(struct net_device
*netdev
)
564 struct br2684_dev
*brdev
= BRPRIV(netdev
);
567 brdev
->net_dev
= netdev
;
569 netdev
->netdev_ops
= &br2684_netdev_ops
;
571 INIT_LIST_HEAD(&brdev
->brvccs
);
574 static void br2684_setup_routed(struct net_device
*netdev
)
576 struct br2684_dev
*brdev
= BRPRIV(netdev
);
578 brdev
->net_dev
= netdev
;
579 netdev
->hard_header_len
= 0;
580 netdev
->netdev_ops
= &br2684_netdev_ops_routed
;
581 netdev
->addr_len
= 0;
583 netdev
->type
= ARPHRD_PPP
;
584 netdev
->flags
= IFF_POINTOPOINT
| IFF_NOARP
| IFF_MULTICAST
;
585 netdev
->tx_queue_len
= 100;
586 INIT_LIST_HEAD(&brdev
->brvccs
);
589 static int br2684_create(void __user
* arg
)
592 struct net_device
*netdev
;
593 struct br2684_dev
*brdev
;
594 struct atm_newif_br2684 ni
;
595 enum br2684_payload payload
;
597 pr_debug("br2684_create\n");
599 if (copy_from_user(&ni
, arg
, sizeof ni
)) {
603 if (ni
.media
& BR2684_FLAG_ROUTED
)
607 ni
.media
&= 0xffff; /* strip flags */
609 if (ni
.media
!= BR2684_MEDIA_ETHERNET
|| ni
.mtu
!= 1500) {
613 netdev
= alloc_netdev(sizeof(struct br2684_dev
),
614 ni
.ifname
[0] ? ni
.ifname
: "nas%d",
615 (payload
== p_routed
) ?
616 br2684_setup_routed
: br2684_setup
);
620 brdev
= BRPRIV(netdev
);
622 pr_debug("registered netdev %s\n", netdev
->name
);
623 /* open, stop, do_ioctl ? */
624 err
= register_netdev(netdev
);
626 printk(KERN_ERR
"br2684_create: register_netdev failed\n");
631 write_lock_irq(&devs_lock
);
632 brdev
->payload
= payload
;
633 brdev
->number
= list_empty(&br2684_devs
) ? 1 :
634 BRPRIV(list_entry_brdev(br2684_devs
.prev
))->number
+ 1;
635 list_add_tail(&brdev
->br2684_devs
, &br2684_devs
);
636 write_unlock_irq(&devs_lock
);
641 * This handles ioctls actually performed on our vcc - we must return
642 * -ENOIOCTLCMD for any unrecognized ioctl
644 static int br2684_ioctl(struct socket
*sock
, unsigned int cmd
,
647 struct atm_vcc
*atmvcc
= ATM_SD(sock
);
648 void __user
*argp
= (void __user
*)arg
;
654 case ATM_NEWBACKENDIF
:
655 err
= get_user(b
, (atm_backend_t __user
*) argp
);
658 if (b
!= ATM_BACKEND_BR2684
)
660 if (!capable(CAP_NET_ADMIN
))
662 if (cmd
== ATM_SETBACKEND
)
663 return br2684_regvcc(atmvcc
, argp
);
665 return br2684_create(argp
);
666 #ifdef CONFIG_ATM_BR2684_IPFILTER
668 if (atmvcc
->push
!= br2684_push
)
670 if (!capable(CAP_NET_ADMIN
))
672 err
= br2684_setfilt(atmvcc
, argp
);
675 #endif /* CONFIG_ATM_BR2684_IPFILTER */
680 static struct atm_ioctl br2684_ioctl_ops
= {
681 .owner
= THIS_MODULE
,
682 .ioctl
= br2684_ioctl
,
685 #ifdef CONFIG_PROC_FS
686 static void *br2684_seq_start(struct seq_file
*seq
, loff_t
* pos
)
687 __acquires(devs_lock
)
689 read_lock(&devs_lock
);
690 return seq_list_start(&br2684_devs
, *pos
);
693 static void *br2684_seq_next(struct seq_file
*seq
, void *v
, loff_t
* pos
)
695 return seq_list_next(v
, &br2684_devs
, pos
);
698 static void br2684_seq_stop(struct seq_file
*seq
, void *v
)
699 __releases(devs_lock
)
701 read_unlock(&devs_lock
);
704 static int br2684_seq_show(struct seq_file
*seq
, void *v
)
706 const struct br2684_dev
*brdev
= list_entry(v
, struct br2684_dev
,
708 const struct net_device
*net_dev
= brdev
->net_dev
;
709 const struct br2684_vcc
*brvcc
;
711 seq_printf(seq
, "dev %.16s: num=%d, mac=%pM (%s)\n",
715 brdev
->mac_was_set
? "set" : "auto");
717 list_for_each_entry(brvcc
, &brdev
->brvccs
, brvccs
) {
718 seq_printf(seq
, " vcc %d.%d.%d: encaps=%s payload=%s"
719 ", failed copies %u/%u"
720 "\n", brvcc
->atmvcc
->dev
->number
,
721 brvcc
->atmvcc
->vpi
, brvcc
->atmvcc
->vci
,
722 (brvcc
->encaps
== e_llc
) ? "LLC" : "VC",
723 (brdev
->payload
== p_bridged
) ? "bridged" : "routed",
724 brvcc
->copies_failed
, brvcc
->copies_needed
);
725 #ifdef CONFIG_ATM_BR2684_IPFILTER
726 #define b1(var, byte) ((u8 *) &brvcc->filter.var)[byte]
727 #define bs(var) b1(var, 0), b1(var, 1), b1(var, 2), b1(var, 3)
728 if (brvcc
->filter
.netmask
!= 0)
729 seq_printf(seq
, " filter=%d.%d.%d.%d/"
730 "%d.%d.%d.%d\n", bs(prefix
), bs(netmask
));
733 #endif /* CONFIG_ATM_BR2684_IPFILTER */
738 static const struct seq_operations br2684_seq_ops
= {
739 .start
= br2684_seq_start
,
740 .next
= br2684_seq_next
,
741 .stop
= br2684_seq_stop
,
742 .show
= br2684_seq_show
,
745 static int br2684_proc_open(struct inode
*inode
, struct file
*file
)
747 return seq_open(file
, &br2684_seq_ops
);
750 static const struct file_operations br2684_proc_ops
= {
751 .owner
= THIS_MODULE
,
752 .open
= br2684_proc_open
,
755 .release
= seq_release
,
758 extern struct proc_dir_entry
*atm_proc_root
; /* from proc.c */
759 #endif /* CONFIG_PROC_FS */
761 static int __init
br2684_init(void)
763 #ifdef CONFIG_PROC_FS
764 struct proc_dir_entry
*p
;
765 p
= proc_create("br2684", 0, atm_proc_root
, &br2684_proc_ops
);
769 register_atm_ioctl(&br2684_ioctl_ops
);
773 static void __exit
br2684_exit(void)
775 struct net_device
*net_dev
;
776 struct br2684_dev
*brdev
;
777 struct br2684_vcc
*brvcc
;
778 deregister_atm_ioctl(&br2684_ioctl_ops
);
780 #ifdef CONFIG_PROC_FS
781 remove_proc_entry("br2684", atm_proc_root
);
784 while (!list_empty(&br2684_devs
)) {
785 net_dev
= list_entry_brdev(br2684_devs
.next
);
786 brdev
= BRPRIV(net_dev
);
787 while (!list_empty(&brdev
->brvccs
)) {
788 brvcc
= list_entry_brvcc(brdev
->brvccs
.next
);
789 br2684_close_vcc(brvcc
);
792 list_del(&brdev
->br2684_devs
);
793 unregister_netdev(net_dev
);
794 free_netdev(net_dev
);
798 module_init(br2684_init
);
799 module_exit(br2684_exit
);
801 MODULE_AUTHOR("Marcell GAL");
802 MODULE_DESCRIPTION("RFC2684 bridged protocols over ATM/AAL5");
803 MODULE_LICENSE("GPL");