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 unsigned char ethertype_ipv4
[] = { ETHERTYPE_IPV4
};
56 static unsigned char ethertype_ipv6
[] = { ETHERTYPE_IPV6
};
57 static unsigned char llc_oui_pid_pad
[] =
58 { LLC
, SNAP_BRIDGED
, PID_ETHERNET
, PAD_BRIDGED
};
59 static unsigned char llc_oui_ipv4
[] = { LLC
, SNAP_ROUTED
, ETHERTYPE_IPV4
};
60 static 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) */
86 struct net_device_stats stats
;
88 enum br2684_payload payload
;
92 * This lock should be held for writing any time the list of devices or
93 * their attached vcc's could be altered. It should be held for reading
94 * any time these are being queried. Note that we sometimes need to
95 * do read-locking under interrupt context, so write locking must block
96 * the current CPU's interrupts
98 static DEFINE_RWLOCK(devs_lock
);
100 static LIST_HEAD(br2684_devs
);
102 static inline struct br2684_dev
*BRPRIV(const struct net_device
*net_dev
)
104 return (struct br2684_dev
*)net_dev
->priv
;
107 static inline struct net_device
*list_entry_brdev(const struct list_head
*le
)
109 return list_entry(le
, struct br2684_dev
, br2684_devs
)->net_dev
;
112 static inline struct br2684_vcc
*BR2684_VCC(const struct atm_vcc
*atmvcc
)
114 return (struct br2684_vcc
*)(atmvcc
->user_back
);
117 static inline struct br2684_vcc
*list_entry_brvcc(const struct list_head
*le
)
119 return list_entry(le
, struct br2684_vcc
, brvccs
);
122 /* Caller should hold read_lock(&devs_lock) */
123 static struct net_device
*br2684_find_dev(const struct br2684_if_spec
*s
)
125 struct list_head
*lh
;
126 struct net_device
*net_dev
;
128 case BR2684_FIND_BYNUM
:
129 list_for_each(lh
, &br2684_devs
) {
130 net_dev
= list_entry_brdev(lh
);
131 if (BRPRIV(net_dev
)->number
== s
->spec
.devnum
)
135 case BR2684_FIND_BYIFNAME
:
136 list_for_each(lh
, &br2684_devs
) {
137 net_dev
= list_entry_brdev(lh
);
138 if (!strncmp(net_dev
->name
, s
->spec
.ifname
, IFNAMSIZ
))
147 * Send a packet out a particular vcc. Not to useful right now, but paves
148 * the way for multiple vcc's per itf. Returns true if we can send,
151 static int br2684_xmit_vcc(struct sk_buff
*skb
, struct br2684_dev
*brdev
,
152 struct br2684_vcc
*brvcc
)
154 struct atm_vcc
*atmvcc
;
155 int minheadroom
= (brvcc
->encaps
== e_llc
) ? 10 : 2;
157 if (skb_headroom(skb
) < minheadroom
) {
158 struct sk_buff
*skb2
= skb_realloc_headroom(skb
, minheadroom
);
159 brvcc
->copies_needed
++;
162 brvcc
->copies_failed
++;
168 if (brvcc
->encaps
== e_llc
) {
169 if (brdev
->payload
== p_bridged
) {
170 skb_push(skb
, sizeof(llc_oui_pid_pad
));
171 skb_copy_to_linear_data(skb
, llc_oui_pid_pad
,
172 sizeof(llc_oui_pid_pad
));
173 } else if (brdev
->payload
== p_routed
) {
174 unsigned short prot
= ntohs(skb
->protocol
);
176 skb_push(skb
, sizeof(llc_oui_ipv4
));
179 skb_copy_to_linear_data(skb
, llc_oui_ipv4
,
180 sizeof(llc_oui_ipv4
));
183 skb_copy_to_linear_data(skb
, llc_oui_ipv6
,
184 sizeof(llc_oui_ipv6
));
193 if (brdev
->payload
== p_bridged
)
194 memset(skb
->data
, 0, 2);
198 ATM_SKB(skb
)->vcc
= atmvcc
= brvcc
->atmvcc
;
199 pr_debug("atm_skb(%p)->vcc(%p)->dev(%p)\n", skb
, atmvcc
, atmvcc
->dev
);
200 if (!atm_may_send(atmvcc
, skb
->truesize
)) {
202 * We free this here for now, because we cannot know in a higher
203 * layer whether the skb pointer it supplied wasn't freed yet.
209 atomic_add(skb
->truesize
, &sk_atm(atmvcc
)->sk_wmem_alloc
);
210 ATM_SKB(skb
)->atm_options
= atmvcc
->atm_options
;
211 brdev
->stats
.tx_packets
++;
212 brdev
->stats
.tx_bytes
+= skb
->len
;
213 atmvcc
->send(atmvcc
, skb
);
217 static inline struct br2684_vcc
*pick_outgoing_vcc(struct sk_buff
*skb
,
218 struct br2684_dev
*brdev
)
220 return list_empty(&brdev
->brvccs
) ? NULL
: list_entry_brvcc(brdev
->brvccs
.next
); /* 1 vcc/dev right now */
223 static int br2684_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
225 struct br2684_dev
*brdev
= BRPRIV(dev
);
226 struct br2684_vcc
*brvcc
;
228 pr_debug("br2684_start_xmit, skb->dst=%p\n", skb
->dst
);
229 read_lock(&devs_lock
);
230 brvcc
= pick_outgoing_vcc(skb
, brdev
);
232 pr_debug("no vcc attached to dev %s\n", dev
->name
);
233 brdev
->stats
.tx_errors
++;
234 brdev
->stats
.tx_carrier_errors
++;
235 /* netif_stop_queue(dev); */
237 read_unlock(&devs_lock
);
240 if (!br2684_xmit_vcc(skb
, brdev
, brvcc
)) {
242 * We should probably use netif_*_queue() here, but that
243 * involves added complication. We need to walk before
246 * Don't free here! this pointer might be no longer valid!
248 brdev
->stats
.tx_errors
++;
249 brdev
->stats
.tx_fifo_errors
++;
251 read_unlock(&devs_lock
);
255 static struct net_device_stats
*br2684_get_stats(struct net_device
*dev
)
257 pr_debug("br2684_get_stats\n");
258 return &BRPRIV(dev
)->stats
;
262 * We remember when the MAC gets set, so we don't override it later with
263 * the ESI of the ATM card of the first VC
265 static int (*my_eth_mac_addr
) (struct net_device
*, void *);
266 static int br2684_mac_addr(struct net_device
*dev
, void *p
)
268 int err
= my_eth_mac_addr(dev
, p
);
270 BRPRIV(dev
)->mac_was_set
= 1;
274 #ifdef CONFIG_ATM_BR2684_IPFILTER
275 /* this IOCTL is experimental. */
276 static int br2684_setfilt(struct atm_vcc
*atmvcc
, void __user
* arg
)
278 struct br2684_vcc
*brvcc
;
279 struct br2684_filter_set fs
;
281 if (copy_from_user(&fs
, arg
, sizeof fs
))
283 if (fs
.ifspec
.method
!= BR2684_FIND_BYNOTHING
) {
285 * This is really a per-vcc thing, but we can also search
288 struct br2684_dev
*brdev
;
289 read_lock(&devs_lock
);
290 brdev
= BRPRIV(br2684_find_dev(&fs
.ifspec
));
291 if (brdev
== NULL
|| list_empty(&brdev
->brvccs
) || brdev
->brvccs
.next
!= brdev
->brvccs
.prev
) /* >1 VCC */
294 brvcc
= list_entry_brvcc(brdev
->brvccs
.next
);
295 read_unlock(&devs_lock
);
299 brvcc
= BR2684_VCC(atmvcc
);
300 memcpy(&brvcc
->filter
, &fs
.filter
, sizeof(brvcc
->filter
));
304 /* Returns 1 if packet should be dropped */
306 packet_fails_filter(__be16 type
, struct br2684_vcc
*brvcc
, struct sk_buff
*skb
)
308 if (brvcc
->filter
.netmask
== 0)
309 return 0; /* no filter in place */
310 if (type
== htons(ETH_P_IP
) &&
311 (((struct iphdr
*)(skb
->data
))->daddr
& brvcc
->filter
.
312 netmask
) == brvcc
->filter
.prefix
)
314 if (type
== htons(ETH_P_ARP
))
317 * TODO: we should probably filter ARPs too.. don't want to have
318 * them returning values that don't make sense, or is that ok?
322 #endif /* CONFIG_ATM_BR2684_IPFILTER */
324 static void br2684_close_vcc(struct br2684_vcc
*brvcc
)
326 pr_debug("removing VCC %p from dev %p\n", brvcc
, brvcc
->device
);
327 write_lock_irq(&devs_lock
);
328 list_del(&brvcc
->brvccs
);
329 write_unlock_irq(&devs_lock
);
330 brvcc
->atmvcc
->user_back
= NULL
; /* what about vcc->recvq ??? */
331 brvcc
->old_push(brvcc
->atmvcc
, NULL
); /* pass on the bad news */
333 module_put(THIS_MODULE
);
336 /* when AAL5 PDU comes in: */
337 static void br2684_push(struct atm_vcc
*atmvcc
, struct sk_buff
*skb
)
339 struct br2684_vcc
*brvcc
= BR2684_VCC(atmvcc
);
340 struct net_device
*net_dev
= brvcc
->device
;
341 struct br2684_dev
*brdev
= BRPRIV(net_dev
);
343 pr_debug("br2684_push\n");
345 if (unlikely(skb
== NULL
)) {
346 /* skb==NULL means VCC is being destroyed */
347 br2684_close_vcc(brvcc
);
348 if (list_empty(&brdev
->brvccs
)) {
349 read_lock(&devs_lock
);
350 list_del(&brdev
->br2684_devs
);
351 read_unlock(&devs_lock
);
352 unregister_netdev(net_dev
);
353 free_netdev(net_dev
);
359 atm_return(atmvcc
, skb
->truesize
);
360 pr_debug("skb from brdev %p\n", brdev
);
361 if (brvcc
->encaps
== e_llc
) {
363 if (skb
->len
> 7 && skb
->data
[7] == 0x01)
364 __skb_trim(skb
, skb
->len
- 4);
366 /* accept packets that have "ipv[46]" in the snap header */
367 if ((skb
->len
>= (sizeof(llc_oui_ipv4
)))
370 (skb
->data
, llc_oui_ipv4
,
371 sizeof(llc_oui_ipv4
) - BR2684_ETHERTYPE_LEN
) == 0)) {
373 (skb
->data
+ 6, ethertype_ipv6
,
374 sizeof(ethertype_ipv6
)) == 0)
375 skb
->protocol
= __constant_htons(ETH_P_IPV6
);
377 (skb
->data
+ 6, ethertype_ipv4
,
378 sizeof(ethertype_ipv4
)) == 0)
379 skb
->protocol
= __constant_htons(ETH_P_IP
);
381 brdev
->stats
.rx_errors
++;
385 skb_pull(skb
, sizeof(llc_oui_ipv4
));
386 skb_reset_network_header(skb
);
387 skb
->pkt_type
= PACKET_HOST
;
389 * Let us waste some time for checking the encapsulation.
390 * Note, that only 7 char is checked so frames with a valid FCS
391 * are also accepted (but FCS is not checked of course).
393 } else if ((skb
->len
>= sizeof(llc_oui_pid_pad
)) &&
394 (memcmp(skb
->data
, llc_oui_pid_pad
, 7) == 0)) {
395 skb_pull(skb
, sizeof(llc_oui_pid_pad
));
396 skb
->protocol
= eth_type_trans(skb
, net_dev
);
398 brdev
->stats
.rx_errors
++;
404 /* first 2 chars should be 0 */
405 if (*((u16
*) (skb
->data
)) != 0) {
406 brdev
->stats
.rx_errors
++;
410 skb_pull(skb
, BR2684_PAD_LEN
+ ETH_HLEN
); /* pad, dstmac, srcmac, ethtype */
411 skb
->protocol
= eth_type_trans(skb
, net_dev
);
414 #ifdef CONFIG_ATM_BR2684_IPFILTER
415 if (unlikely(packet_fails_filter(skb
->protocol
, brvcc
, skb
))) {
416 brdev
->stats
.rx_dropped
++;
420 #endif /* CONFIG_ATM_BR2684_IPFILTER */
422 ATM_SKB(skb
)->vcc
= atmvcc
; /* needed ? */
423 pr_debug("received packet's protocol: %x\n", ntohs(skb
->protocol
));
425 if (unlikely(!(net_dev
->flags
& IFF_UP
))) {
426 /* sigh, interface is down */
427 brdev
->stats
.rx_dropped
++;
431 brdev
->stats
.rx_packets
++;
432 brdev
->stats
.rx_bytes
+= skb
->len
;
433 memset(ATM_SKB(skb
), 0, sizeof(struct atm_skb_data
));
438 * Assign a vcc to a dev
439 * Note: we do not have explicit unassign, but look at _push()
441 static int br2684_regvcc(struct atm_vcc
*atmvcc
, void __user
* arg
)
444 struct br2684_vcc
*brvcc
;
446 struct sk_buff_head
*rq
;
447 struct br2684_dev
*brdev
;
448 struct net_device
*net_dev
;
449 struct atm_backend_br2684 be
;
452 if (copy_from_user(&be
, arg
, sizeof be
))
454 brvcc
= kzalloc(sizeof(struct br2684_vcc
), GFP_KERNEL
);
457 write_lock_irq(&devs_lock
);
458 net_dev
= br2684_find_dev(&be
.ifspec
);
459 if (net_dev
== NULL
) {
461 "br2684: tried to attach to non-existant device\n");
465 brdev
= BRPRIV(net_dev
);
466 if (atmvcc
->push
== NULL
) {
470 if (!list_empty(&brdev
->brvccs
)) {
471 /* Only 1 VCC/dev right now */
475 if (be
.fcs_in
!= BR2684_FCSIN_NO
|| be
.fcs_out
!= BR2684_FCSOUT_NO
||
476 be
.fcs_auto
|| be
.has_vpiid
|| be
.send_padding
|| (be
.encaps
!=
480 || be
.min_size
!= 0) {
484 pr_debug("br2684_regvcc vcc=%p, encaps=%d, brvcc=%p\n", atmvcc
,
486 if (list_empty(&brdev
->brvccs
) && !brdev
->mac_was_set
) {
487 unsigned char *esi
= atmvcc
->dev
->esi
;
488 if (esi
[0] | esi
[1] | esi
[2] | esi
[3] | esi
[4] | esi
[5])
489 memcpy(net_dev
->dev_addr
, esi
, net_dev
->addr_len
);
491 net_dev
->dev_addr
[2] = 1;
493 list_add(&brvcc
->brvccs
, &brdev
->brvccs
);
494 write_unlock_irq(&devs_lock
);
495 brvcc
->device
= net_dev
;
496 brvcc
->atmvcc
= atmvcc
;
497 atmvcc
->user_back
= brvcc
;
498 brvcc
->encaps
= (enum br2684_encaps
)be
.encaps
;
499 brvcc
->old_push
= atmvcc
->push
;
501 atmvcc
->push
= br2684_push
;
503 rq
= &sk_atm(atmvcc
)->sk_receive_queue
;
505 spin_lock_irqsave(&rq
->lock
, flags
);
506 if (skb_queue_empty(rq
)) {
509 /* NULL terminate the list. */
510 rq
->prev
->next
= NULL
;
513 rq
->prev
= rq
->next
= (struct sk_buff
*)rq
;
515 spin_unlock_irqrestore(&rq
->lock
, flags
);
518 struct sk_buff
*next
= skb
->next
;
520 skb
->next
= skb
->prev
= NULL
;
521 BRPRIV(skb
->dev
)->stats
.rx_bytes
-= skb
->len
;
522 BRPRIV(skb
->dev
)->stats
.rx_packets
--;
523 br2684_push(atmvcc
, skb
);
527 __module_get(THIS_MODULE
);
530 write_unlock_irq(&devs_lock
);
535 static void br2684_setup(struct net_device
*netdev
)
537 struct br2684_dev
*brdev
= BRPRIV(netdev
);
540 brdev
->net_dev
= netdev
;
542 my_eth_mac_addr
= netdev
->set_mac_address
;
543 netdev
->set_mac_address
= br2684_mac_addr
;
544 netdev
->hard_start_xmit
= br2684_start_xmit
;
545 netdev
->get_stats
= br2684_get_stats
;
547 INIT_LIST_HEAD(&brdev
->brvccs
);
550 static void br2684_setup_routed(struct net_device
*netdev
)
552 struct br2684_dev
*brdev
= BRPRIV(netdev
);
553 brdev
->net_dev
= netdev
;
555 netdev
->hard_header_len
= 0;
556 my_eth_mac_addr
= netdev
->set_mac_address
;
557 netdev
->set_mac_address
= br2684_mac_addr
;
558 netdev
->hard_start_xmit
= br2684_start_xmit
;
559 netdev
->get_stats
= br2684_get_stats
;
560 netdev
->addr_len
= 0;
562 netdev
->type
= ARPHRD_PPP
;
563 netdev
->flags
= IFF_POINTOPOINT
| IFF_NOARP
| IFF_MULTICAST
;
564 netdev
->tx_queue_len
= 100;
565 INIT_LIST_HEAD(&brdev
->brvccs
);
568 static int br2684_create(void __user
* arg
)
571 struct net_device
*netdev
;
572 struct br2684_dev
*brdev
;
573 struct atm_newif_br2684 ni
;
574 enum br2684_payload payload
;
576 pr_debug("br2684_create\n");
578 if (copy_from_user(&ni
, arg
, sizeof ni
)) {
582 if (ni
.media
& BR2684_FLAG_ROUTED
)
586 ni
.media
&= 0xffff; /* strip flags */
588 if (ni
.media
!= BR2684_MEDIA_ETHERNET
|| ni
.mtu
!= 1500) {
592 netdev
= alloc_netdev(sizeof(struct br2684_dev
),
593 ni
.ifname
[0] ? ni
.ifname
: "nas%d",
594 (payload
== p_routed
) ?
595 br2684_setup_routed
: br2684_setup
);
599 brdev
= BRPRIV(netdev
);
601 pr_debug("registered netdev %s\n", netdev
->name
);
602 /* open, stop, do_ioctl ? */
603 err
= register_netdev(netdev
);
605 printk(KERN_ERR
"br2684_create: register_netdev failed\n");
610 write_lock_irq(&devs_lock
);
611 brdev
->payload
= payload
;
612 brdev
->number
= list_empty(&br2684_devs
) ? 1 :
613 BRPRIV(list_entry_brdev(br2684_devs
.prev
))->number
+ 1;
614 list_add_tail(&brdev
->br2684_devs
, &br2684_devs
);
615 write_unlock_irq(&devs_lock
);
620 * This handles ioctls actually performed on our vcc - we must return
621 * -ENOIOCTLCMD for any unrecognized ioctl
623 static int br2684_ioctl(struct socket
*sock
, unsigned int cmd
,
626 struct atm_vcc
*atmvcc
= ATM_SD(sock
);
627 void __user
*argp
= (void __user
*)arg
;
633 case ATM_NEWBACKENDIF
:
634 err
= get_user(b
, (atm_backend_t __user
*) argp
);
637 if (b
!= ATM_BACKEND_BR2684
)
639 if (!capable(CAP_NET_ADMIN
))
641 if (cmd
== ATM_SETBACKEND
)
642 return br2684_regvcc(atmvcc
, argp
);
644 return br2684_create(argp
);
645 #ifdef CONFIG_ATM_BR2684_IPFILTER
647 if (atmvcc
->push
!= br2684_push
)
649 if (!capable(CAP_NET_ADMIN
))
651 err
= br2684_setfilt(atmvcc
, argp
);
654 #endif /* CONFIG_ATM_BR2684_IPFILTER */
659 static struct atm_ioctl br2684_ioctl_ops
= {
660 .owner
= THIS_MODULE
,
661 .ioctl
= br2684_ioctl
,
664 #ifdef CONFIG_PROC_FS
665 static void *br2684_seq_start(struct seq_file
*seq
, loff_t
* pos
)
666 __acquires(devs_lock
)
668 read_lock(&devs_lock
);
669 return seq_list_start(&br2684_devs
, *pos
);
672 static void *br2684_seq_next(struct seq_file
*seq
, void *v
, loff_t
* pos
)
674 return seq_list_next(v
, &br2684_devs
, pos
);
677 static void br2684_seq_stop(struct seq_file
*seq
, void *v
)
678 __releases(devs_lock
)
680 read_unlock(&devs_lock
);
683 static int br2684_seq_show(struct seq_file
*seq
, void *v
)
685 const struct br2684_dev
*brdev
= list_entry(v
, struct br2684_dev
,
687 const struct net_device
*net_dev
= brdev
->net_dev
;
688 const struct br2684_vcc
*brvcc
;
689 DECLARE_MAC_BUF(mac
);
691 seq_printf(seq
, "dev %.16s: num=%d, mac=%s (%s)\n",
694 print_mac(mac
, net_dev
->dev_addr
),
695 brdev
->mac_was_set
? "set" : "auto");
697 list_for_each_entry(brvcc
, &brdev
->brvccs
, brvccs
) {
698 seq_printf(seq
, " vcc %d.%d.%d: encaps=%s payload=%s"
699 ", failed copies %u/%u"
700 "\n", brvcc
->atmvcc
->dev
->number
,
701 brvcc
->atmvcc
->vpi
, brvcc
->atmvcc
->vci
,
702 (brvcc
->encaps
== e_llc
) ? "LLC" : "VC",
703 (brdev
->payload
== p_bridged
) ? "bridged" : "routed",
704 brvcc
->copies_failed
, brvcc
->copies_needed
);
705 #ifdef CONFIG_ATM_BR2684_IPFILTER
706 #define b1(var, byte) ((u8 *) &brvcc->filter.var)[byte]
707 #define bs(var) b1(var, 0), b1(var, 1), b1(var, 2), b1(var, 3)
708 if (brvcc
->filter
.netmask
!= 0)
709 seq_printf(seq
, " filter=%d.%d.%d.%d/"
710 "%d.%d.%d.%d\n", bs(prefix
), bs(netmask
));
713 #endif /* CONFIG_ATM_BR2684_IPFILTER */
718 static const struct seq_operations br2684_seq_ops
= {
719 .start
= br2684_seq_start
,
720 .next
= br2684_seq_next
,
721 .stop
= br2684_seq_stop
,
722 .show
= br2684_seq_show
,
725 static int br2684_proc_open(struct inode
*inode
, struct file
*file
)
727 return seq_open(file
, &br2684_seq_ops
);
730 static const struct file_operations br2684_proc_ops
= {
731 .owner
= THIS_MODULE
,
732 .open
= br2684_proc_open
,
735 .release
= seq_release
,
738 extern struct proc_dir_entry
*atm_proc_root
; /* from proc.c */
739 #endif /* CONFIG_PROC_FS */
741 static int __init
br2684_init(void)
743 #ifdef CONFIG_PROC_FS
744 struct proc_dir_entry
*p
;
745 if ((p
= create_proc_entry("br2684", 0, atm_proc_root
)) == NULL
)
747 p
->proc_fops
= &br2684_proc_ops
;
749 register_atm_ioctl(&br2684_ioctl_ops
);
753 static void __exit
br2684_exit(void)
755 struct net_device
*net_dev
;
756 struct br2684_dev
*brdev
;
757 struct br2684_vcc
*brvcc
;
758 deregister_atm_ioctl(&br2684_ioctl_ops
);
760 #ifdef CONFIG_PROC_FS
761 remove_proc_entry("br2684", atm_proc_root
);
764 while (!list_empty(&br2684_devs
)) {
765 net_dev
= list_entry_brdev(br2684_devs
.next
);
766 brdev
= BRPRIV(net_dev
);
767 while (!list_empty(&brdev
->brvccs
)) {
768 brvcc
= list_entry_brvcc(brdev
->brvccs
.next
);
769 br2684_close_vcc(brvcc
);
772 list_del(&brdev
->br2684_devs
);
773 unregister_netdev(net_dev
);
774 free_netdev(net_dev
);
778 module_init(br2684_init
);
779 module_exit(br2684_exit
);
781 MODULE_AUTHOR("Marcell GAL");
782 MODULE_DESCRIPTION("RFC2684 bridged protocols over ATM/AAL5");
783 MODULE_LICENSE("GPL");