1 /** -*- linux-c -*- ***********************************************************
2 * Linux PPP over Ethernet (PPPoX/PPPoE) Sockets
4 * PPPoX --- Generic PPP encapsulation socket family
5 * PPPoE --- PPP over Ethernet (RFC 2516)
10 * 070228 : Fix to allow multiple sessions with same remote MAC and same
11 * session id by including the local device ifindex in the
12 * tuple identifying a session. This also ensures packets can't
13 * be injected into a session from interfaces other than the one
14 * specified by userspace. Florian Zumbiehl <florz@florz.de>
15 * (Oh, BTW, this one is YYMMDD, in case you were wondering ...)
16 * 220102 : Fix module use count on failure in pppoe_create, pppox_sk -acme
17 * 030700 : Fixed connect logic to allow for disconnect.
18 * 270700 : Fixed potential SMP problems; we must protect against
19 * simultaneous invocation of ppp_input
20 * and ppp_unregister_channel.
21 * 040800 : Respect reference count mechanisms on net-devices.
22 * 200800 : fix kfree(skb) in pppoe_rcv (acme)
23 * Module reference count is decremented in the right spot now,
24 * guards against sock_put not actually freeing the sk
26 * 051000 : Initialization cleanup.
27 * 111100 : Fix recvmsg.
28 * 050101 : Fix PADT procesing.
29 * 140501 : Use pppoe_rcv_core to handle all backlog. (Alexey)
30 * 170701 : Do not lock_sock with rwlock held. (DaveM)
31 * Ignore discovery frames if user has socket
33 * Ignore return value of dev_queue_xmit in __pppoe_xmit
34 * or else we may kfree an SKB twice. (DaveM)
35 * 190701 : When doing copies of skb's in __pppoe_xmit, always delete
36 * the original skb that was passed in on success, never on
37 * failure. Delete the copy of the skb on failure to avoid
39 * 081001 : Misc. cleanup (licence string, non-blocking, prevent
40 * reference of device on close).
41 * 121301 : New ppp channels interface; cannot unregister a channel
42 * from interrupts. Thus, we mark the socket as a ZOMBIE
43 * and do the unregistration later.
44 * 081002 : seq_file support for proc stuff -acme
45 * 111602 : Merge all 2.4 fixes into 2.5/2.6 tree. Label 2.5/2.6
46 * as version 0.7. Spacing cleanup.
47 * Author: Michal Ostrowski <mostrows@speakeasy.net>
49 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
50 * David S. Miller (davem@redhat.com)
53 * This program is free software; you can redistribute it and/or
54 * modify it under the terms of the GNU General Public License
55 * as published by the Free Software Foundation; either version
56 * 2 of the License, or (at your option) any later version.
60 #include <linux/string.h>
61 #include <linux/module.h>
62 #include <linux/kernel.h>
63 #include <linux/slab.h>
64 #include <linux/errno.h>
65 #include <linux/netdevice.h>
66 #include <linux/net.h>
67 #include <linux/inetdevice.h>
68 #include <linux/etherdevice.h>
69 #include <linux/skbuff.h>
70 #include <linux/init.h>
71 #include <linux/if_ether.h>
72 #include <linux/if_pppox.h>
73 #include <linux/ppp_channel.h>
74 #include <linux/ppp_defs.h>
75 #include <linux/if_ppp.h>
76 #include <linux/notifier.h>
77 #include <linux/file.h>
78 #include <linux/proc_fs.h>
79 #include <linux/seq_file.h>
83 #include <asm/uaccess.h>
85 #define PPPOE_HASH_BITS 4
86 #define PPPOE_HASH_SIZE (1<<PPPOE_HASH_BITS)
88 static struct ppp_channel_ops pppoe_chan_ops;
90 static int pppoe_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg);
91 static int pppoe_xmit(struct ppp_channel *chan, struct sk_buff *skb);
92 static int __pppoe_xmit(struct sock *sk, struct sk_buff *skb);
94 static const struct proto_ops pppoe_ops;
95 static DEFINE_RWLOCK(pppoe_hash_lock);
97 static struct ppp_channel_ops pppoe_chan_ops;
99 static inline int cmp_2_addr(struct pppoe_addr *a, struct pppoe_addr *b)
101 return (a->sid == b->sid &&
102 (memcmp(a->remote, b->remote, ETH_ALEN) == 0));
105 static inline int cmp_addr(struct pppoe_addr *a, unsigned long sid, char *addr)
107 return (a->sid == sid &&
108 (memcmp(a->remote,addr,ETH_ALEN) == 0));
111 static int hash_item(unsigned long sid, unsigned char *addr)
116 for (i = 0; i < ETH_ALEN ; ++i) {
117 for (j = 0; j < 8/PPPOE_HASH_BITS ; ++j) {
118 hash ^= addr[i] >> ( j * PPPOE_HASH_BITS );
122 for (i = 0; i < (sizeof(unsigned long)*8) / PPPOE_HASH_BITS ; ++i)
123 hash ^= sid >> (i*PPPOE_HASH_BITS);
125 return hash & ( PPPOE_HASH_SIZE - 1 );
128 /* zeroed because its in .bss */
129 static struct pppox_sock *item_hash_table[PPPOE_HASH_SIZE];
131 /**********************************************************************
133 * Set/get/delete/rehash items (internal versions)
135 **********************************************************************/
136 static struct pppox_sock *__get_item(unsigned long sid, unsigned char *addr, int ifindex)
138 int hash = hash_item(sid, addr);
139 struct pppox_sock *ret;
141 ret = item_hash_table[hash];
143 while (ret && !(cmp_addr(&ret->pppoe_pa, sid, addr) && ret->pppoe_dev->ifindex == ifindex))
149 static int __set_item(struct pppox_sock *po)
151 int hash = hash_item(po->pppoe_pa.sid, po->pppoe_pa.remote);
152 struct pppox_sock *ret;
154 ret = item_hash_table[hash];
156 if (cmp_2_addr(&ret->pppoe_pa, &po->pppoe_pa) && ret->pppoe_dev->ifindex == po->pppoe_dev->ifindex)
162 po->next = item_hash_table[hash];
163 item_hash_table[hash] = po;
168 static struct pppox_sock *__delete_item(unsigned long sid, char *addr, int ifindex)
170 int hash = hash_item(sid, addr);
171 struct pppox_sock *ret, **src;
173 ret = item_hash_table[hash];
174 src = &item_hash_table[hash];
177 if (cmp_addr(&ret->pppoe_pa, sid, addr) && ret->pppoe_dev->ifindex == ifindex) {
189 /**********************************************************************
191 * Set/get/delete/rehash items
193 **********************************************************************/
194 static inline struct pppox_sock *get_item(unsigned long sid,
195 unsigned char *addr, int ifindex)
197 struct pppox_sock *po;
199 read_lock_bh(&pppoe_hash_lock);
200 po = __get_item(sid, addr, ifindex);
202 sock_hold(sk_pppox(po));
203 read_unlock_bh(&pppoe_hash_lock);
208 static inline struct pppox_sock *get_item_by_addr(struct sockaddr_pppox *sp)
210 struct net_device *dev = NULL;
213 dev = dev_get_by_name(sp->sa_addr.pppoe.dev);
216 ifindex = dev->ifindex;
218 return get_item(sp->sa_addr.pppoe.sid, sp->sa_addr.pppoe.remote, ifindex);
221 static inline int set_item(struct pppox_sock *po)
228 write_lock_bh(&pppoe_hash_lock);
230 write_unlock_bh(&pppoe_hash_lock);
235 static inline struct pppox_sock *delete_item(unsigned long sid, char *addr, int ifindex)
237 struct pppox_sock *ret;
239 write_lock_bh(&pppoe_hash_lock);
240 ret = __delete_item(sid, addr, ifindex);
241 write_unlock_bh(&pppoe_hash_lock);
248 /***************************************************************************
250 * Handler for device events.
251 * Certain device events require that sockets be unconnected.
253 **************************************************************************/
255 static void pppoe_flush_dev(struct net_device *dev)
261 read_lock_bh(&pppoe_hash_lock);
262 for (hash = 0; hash < PPPOE_HASH_SIZE; hash++) {
263 struct pppox_sock *po = item_hash_table[hash];
266 if (po->pppoe_dev == dev) {
267 struct sock *sk = sk_pppox(po);
270 po->pppoe_dev = NULL;
272 /* We hold a reference to SK, now drop the
273 * hash table lock so that we may attempt
274 * to lock the socket (which can sleep).
276 read_unlock_bh(&pppoe_hash_lock);
281 (PPPOX_CONNECTED | PPPOX_BOUND)) {
282 pppox_unbind_sock(sk);
284 sk->sk_state = PPPOX_ZOMBIE;
285 sk->sk_state_change(sk);
292 read_lock_bh(&pppoe_hash_lock);
294 /* Now restart from the beginning of this
295 * hash chain. We always NULL out pppoe_dev
296 * so we are guaranteed to make forward
299 po = item_hash_table[hash];
305 read_unlock_bh(&pppoe_hash_lock);
308 static int pppoe_device_event(struct notifier_block *this,
309 unsigned long event, void *ptr)
311 struct net_device *dev = (struct net_device *) ptr;
313 /* Only look at sockets that are using this specific device. */
315 case NETDEV_CHANGEMTU:
316 /* A change in mtu is a bad thing, requiring
317 * LCP re-negotiation.
320 case NETDEV_GOING_DOWN:
322 /* Find every socket on this device and kill it. */
323 pppoe_flush_dev(dev);
334 static struct notifier_block pppoe_notifier = {
335 .notifier_call = pppoe_device_event,
339 /************************************************************************
341 * Do the real work of receiving a PPPoE Session frame.
343 ***********************************************************************/
344 static int pppoe_rcv_core(struct sock *sk, struct sk_buff *skb)
346 struct pppox_sock *po = pppox_sk(sk);
347 struct pppox_sock *relay_po = NULL;
349 if (sk->sk_state & PPPOX_BOUND) {
350 struct pppoe_hdr *ph = (struct pppoe_hdr *) skb->nh.raw;
351 int len = ntohs(ph->length);
352 skb_pull_rcsum(skb, sizeof(struct pppoe_hdr));
353 if (pskb_trim_rcsum(skb, len))
356 ppp_input(&po->chan, skb);
357 } else if (sk->sk_state & PPPOX_RELAY) {
358 relay_po = get_item_by_addr(&po->pppoe_relay);
360 if (relay_po == NULL)
363 if ((sk_pppox(relay_po)->sk_state & PPPOX_CONNECTED) == 0)
366 skb_pull(skb, sizeof(struct pppoe_hdr));
367 if (!__pppoe_xmit(sk_pppox(relay_po), skb))
370 if (sock_queue_rcv_skb(sk, skb))
374 return NET_RX_SUCCESS;
377 sock_put(sk_pppox(relay_po));
384 /************************************************************************
386 * Receive wrapper called in BH context.
388 ***********************************************************************/
389 static int pppoe_rcv(struct sk_buff *skb,
390 struct net_device *dev,
391 struct packet_type *pt,
392 struct net_device *orig_dev)
395 struct pppoe_hdr *ph;
396 struct pppox_sock *po;
398 if (!pskb_may_pull(skb, sizeof(struct pppoe_hdr)))
401 if (!(skb = skb_share_check(skb, GFP_ATOMIC)))
404 ph = (struct pppoe_hdr *) skb->nh.raw;
406 po = get_item((unsigned long) ph->sid, eth_hdr(skb)->h_source, dev->ifindex);
408 return sk_receive_skb(sk_pppox(po), skb, 0);
415 /************************************************************************
417 * Receive a PPPoE Discovery frame.
418 * This is solely for detection of PADT frames
420 ***********************************************************************/
421 static int pppoe_disc_rcv(struct sk_buff *skb,
422 struct net_device *dev,
423 struct packet_type *pt,
424 struct net_device *orig_dev)
427 struct pppoe_hdr *ph;
428 struct pppox_sock *po;
430 if (!pskb_may_pull(skb, sizeof(struct pppoe_hdr)))
433 if (!(skb = skb_share_check(skb, GFP_ATOMIC)))
436 ph = (struct pppoe_hdr *) skb->nh.raw;
437 if (ph->code != PADT_CODE)
440 po = get_item((unsigned long) ph->sid, eth_hdr(skb)->h_source, dev->ifindex);
442 struct sock *sk = sk_pppox(po);
446 /* If the user has locked the socket, just ignore
447 * the packet. With the way two rcv protocols hook into
448 * one socket family type, we cannot (easily) distinguish
449 * what kind of SKB it is during backlog rcv.
451 if (sock_owned_by_user(sk) == 0) {
452 /* We're no longer connect at the PPPOE layer,
453 * and must wait for ppp channel to disconnect us.
455 sk->sk_state = PPPOX_ZOMBIE;
465 return NET_RX_SUCCESS; /* Lies... :-) */
468 static struct packet_type pppoes_ptype = {
469 .type = __constant_htons(ETH_P_PPP_SES),
473 static struct packet_type pppoed_ptype = {
474 .type = __constant_htons(ETH_P_PPP_DISC),
475 .func = pppoe_disc_rcv,
478 static struct proto pppoe_sk_proto = {
480 .owner = THIS_MODULE,
481 .obj_size = sizeof(struct pppox_sock),
484 /***********************************************************************
486 * Initialize a new struct sock.
488 **********************************************************************/
489 static int pppoe_create(struct socket *sock)
494 sk = sk_alloc(PF_PPPOX, GFP_KERNEL, &pppoe_sk_proto, 1);
498 sock_init_data(sock, sk);
500 sock->state = SS_UNCONNECTED;
501 sock->ops = &pppoe_ops;
503 sk->sk_backlog_rcv = pppoe_rcv_core;
504 sk->sk_state = PPPOX_NONE;
505 sk->sk_type = SOCK_STREAM;
506 sk->sk_family = PF_PPPOX;
507 sk->sk_protocol = PX_PROTO_OE;
513 static int pppoe_release(struct socket *sock)
515 struct sock *sk = sock->sk;
516 struct pppox_sock *po;
522 if (sock_flag(sk, SOCK_DEAD))
525 pppox_unbind_sock(sk);
527 /* Signal the death of the socket. */
528 sk->sk_state = PPPOX_DEAD;
531 if (po->pppoe_pa.sid) {
532 delete_item(po->pppoe_pa.sid, po->pppoe_pa.remote, po->pppoe_dev->ifindex);
536 dev_put(po->pppoe_dev);
538 po->pppoe_dev = NULL;
543 skb_queue_purge(&sk->sk_receive_queue);
550 static int pppoe_connect(struct socket *sock, struct sockaddr *uservaddr,
551 int sockaddr_len, int flags)
553 struct sock *sk = sock->sk;
554 struct net_device *dev;
555 struct sockaddr_pppox *sp = (struct sockaddr_pppox *) uservaddr;
556 struct pppox_sock *po = pppox_sk(sk);
562 if (sp->sa_protocol != PX_PROTO_OE)
565 /* Check for already bound sockets */
567 if ((sk->sk_state & PPPOX_CONNECTED) && sp->sa_addr.pppoe.sid)
570 /* Check for already disconnected sockets, on attempts to disconnect */
572 if ((sk->sk_state & PPPOX_DEAD) && !sp->sa_addr.pppoe.sid )
576 if (po->pppoe_pa.sid) {
577 pppox_unbind_sock(sk);
579 /* Delete the old binding */
580 delete_item(po->pppoe_pa.sid,po->pppoe_pa.remote,po->pppoe_dev->ifindex);
583 dev_put(po->pppoe_dev);
585 memset(sk_pppox(po) + 1, 0,
586 sizeof(struct pppox_sock) - sizeof(struct sock));
588 sk->sk_state = PPPOX_NONE;
591 /* Don't re-bind if sid==0 */
592 if (sp->sa_addr.pppoe.sid != 0) {
593 dev = dev_get_by_name(sp->sa_addr.pppoe.dev);
601 if (!(dev->flags & IFF_UP))
604 memcpy(&po->pppoe_pa,
606 sizeof(struct pppoe_addr));
608 error = set_item(po);
612 po->chan.hdrlen = (sizeof(struct pppoe_hdr) +
613 dev->hard_header_len);
615 po->chan.mtu = dev->mtu - sizeof(struct pppoe_hdr);
616 po->chan.private = sk;
617 po->chan.ops = &pppoe_chan_ops;
619 error = ppp_register_channel(&po->chan);
623 sk->sk_state = PPPOX_CONNECTED;
626 po->num = sp->sa_addr.pppoe.sid;
633 dev_put(po->pppoe_dev);
634 po->pppoe_dev = NULL;
640 static int pppoe_getname(struct socket *sock, struct sockaddr *uaddr,
641 int *usockaddr_len, int peer)
643 int len = sizeof(struct sockaddr_pppox);
644 struct sockaddr_pppox sp;
646 sp.sa_family = AF_PPPOX;
647 sp.sa_protocol = PX_PROTO_OE;
648 memcpy(&sp.sa_addr.pppoe, &pppox_sk(sock->sk)->pppoe_pa,
649 sizeof(struct pppoe_addr));
651 memcpy(uaddr, &sp, len);
653 *usockaddr_len = len;
659 static int pppoe_ioctl(struct socket *sock, unsigned int cmd,
662 struct sock *sk = sock->sk;
663 struct pppox_sock *po = pppox_sk(sk);
671 if (!(sk->sk_state & PPPOX_CONNECTED))
675 if (put_user(po->pppoe_dev->mtu -
676 sizeof(struct pppoe_hdr) -
685 if (!(sk->sk_state & PPPOX_CONNECTED))
689 if (get_user(val,(int __user *) arg))
692 if (val < (po->pppoe_dev->mtu
693 - sizeof(struct pppoe_hdr)
702 if (get_user(val, (int __user *) arg))
709 struct pppox_sock *relay_po;
712 if (sk->sk_state & (PPPOX_BOUND | PPPOX_ZOMBIE | PPPOX_DEAD))
716 if (!(sk->sk_state & PPPOX_CONNECTED))
719 /* PPPoE address from the user specifies an outbound
720 PPPoE address which frames are forwarded to */
722 if (copy_from_user(&po->pppoe_relay,
724 sizeof(struct sockaddr_pppox)))
728 if (po->pppoe_relay.sa_family != AF_PPPOX ||
729 po->pppoe_relay.sa_protocol!= PX_PROTO_OE)
732 /* Check that the socket referenced by the address
734 relay_po = get_item_by_addr(&po->pppoe_relay);
739 sock_put(sk_pppox(relay_po));
740 sk->sk_state |= PPPOX_RELAY;
747 if (!(sk->sk_state & PPPOX_RELAY))
750 sk->sk_state &= ~PPPOX_RELAY;
761 static int pppoe_sendmsg(struct kiocb *iocb, struct socket *sock,
762 struct msghdr *m, size_t total_len)
764 struct sk_buff *skb = NULL;
765 struct sock *sk = sock->sk;
766 struct pppox_sock *po = pppox_sk(sk);
768 struct pppoe_hdr hdr;
769 struct pppoe_hdr *ph;
770 struct net_device *dev;
773 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED)) {
788 if (total_len > (dev->mtu + dev->hard_header_len))
792 skb = sock_wmalloc(sk, total_len + dev->hard_header_len + 32,
799 /* Reserve space for headers. */
800 skb_reserve(skb, dev->hard_header_len);
801 skb->nh.raw = skb->data;
805 skb->priority = sk->sk_priority;
806 skb->protocol = __constant_htons(ETH_P_PPP_SES);
808 ph = (struct pppoe_hdr *) skb_put(skb, total_len + sizeof(struct pppoe_hdr));
809 start = (char *) &ph->tag[0];
811 error = memcpy_fromiovec(start, m->msg_iov, total_len);
819 dev->hard_header(skb, dev, ETH_P_PPP_SES,
820 po->pppoe_pa.remote, NULL, total_len);
822 memcpy(ph, &hdr, sizeof(struct pppoe_hdr));
824 ph->length = htons(total_len);
834 /************************************************************************
836 * xmit function for internal use.
838 ***********************************************************************/
839 static int __pppoe_xmit(struct sock *sk, struct sk_buff *skb)
841 struct pppox_sock *po = pppox_sk(sk);
842 struct net_device *dev = po->pppoe_dev;
843 struct pppoe_hdr hdr;
844 struct pppoe_hdr *ph;
845 int headroom = skb_headroom(skb);
846 int data_len = skb->len;
847 struct sk_buff *skb2;
849 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
856 hdr.length = htons(skb->len);
861 /* Copy the skb if there is no space for the header. */
862 if (headroom < (sizeof(struct pppoe_hdr) + dev->hard_header_len)) {
863 skb2 = dev_alloc_skb(32+skb->len +
864 sizeof(struct pppoe_hdr) +
865 dev->hard_header_len);
870 skb_reserve(skb2, dev->hard_header_len + sizeof(struct pppoe_hdr));
871 memcpy(skb_put(skb2, skb->len), skb->data, skb->len);
873 /* Make a clone so as to not disturb the original skb,
874 * give dev_queue_xmit something it can free.
876 skb2 = skb_clone(skb, GFP_ATOMIC);
882 ph = (struct pppoe_hdr *) skb_push(skb2, sizeof(struct pppoe_hdr));
883 memcpy(ph, &hdr, sizeof(struct pppoe_hdr));
884 skb2->protocol = __constant_htons(ETH_P_PPP_SES);
886 skb2->nh.raw = skb2->data;
890 dev->hard_header(skb2, dev, ETH_P_PPP_SES,
891 po->pppoe_pa.remote, NULL, data_len);
893 /* We're transmitting skb2, and assuming that dev_queue_xmit
894 * will free it. The generic ppp layer however, is expecting
895 * that we give back 'skb' (not 'skb2') in case of failure,
896 * but free it in case of success.
899 if (dev_queue_xmit(skb2) < 0)
910 /************************************************************************
912 * xmit function called by generic PPP driver
913 * sends PPP frame over PPPoE socket
915 ***********************************************************************/
916 static int pppoe_xmit(struct ppp_channel *chan, struct sk_buff *skb)
918 struct sock *sk = (struct sock *) chan->private;
919 return __pppoe_xmit(sk, skb);
923 static struct ppp_channel_ops pppoe_chan_ops = {
924 .start_xmit = pppoe_xmit,
927 static int pppoe_recvmsg(struct kiocb *iocb, struct socket *sock,
928 struct msghdr *m, size_t total_len, int flags)
930 struct sock *sk = sock->sk;
931 struct sk_buff *skb = NULL;
934 struct pppoe_hdr *ph = NULL;
936 if (sk->sk_state & PPPOX_BOUND) {
941 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
942 flags & MSG_DONTWAIT, &error);
952 ph = (struct pppoe_hdr *) skb->nh.raw;
953 len = ntohs(ph->length);
955 error = memcpy_toiovec(m->msg_iov, (unsigned char *) &ph->tag[0], len);
968 #ifdef CONFIG_PROC_FS
969 static int pppoe_seq_show(struct seq_file *seq, void *v)
971 struct pppox_sock *po;
974 if (v == SEQ_START_TOKEN) {
975 seq_puts(seq, "Id Address Device\n");
980 dev_name = po->pppoe_pa.dev;
982 seq_printf(seq, "%08X %02X:%02X:%02X:%02X:%02X:%02X %8s\n",
984 po->pppoe_pa.remote[0], po->pppoe_pa.remote[1],
985 po->pppoe_pa.remote[2], po->pppoe_pa.remote[3],
986 po->pppoe_pa.remote[4], po->pppoe_pa.remote[5], dev_name);
991 static __inline__ struct pppox_sock *pppoe_get_idx(loff_t pos)
993 struct pppox_sock *po = NULL;
996 for (; i < PPPOE_HASH_SIZE; i++) {
997 po = item_hash_table[i];
1008 static void *pppoe_seq_start(struct seq_file *seq, loff_t *pos)
1012 read_lock_bh(&pppoe_hash_lock);
1013 return l ? pppoe_get_idx(--l) : SEQ_START_TOKEN;
1016 static void *pppoe_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1018 struct pppox_sock *po;
1021 if (v == SEQ_START_TOKEN) {
1022 po = pppoe_get_idx(0);
1029 int hash = hash_item(po->pppoe_pa.sid, po->pppoe_pa.remote);
1031 while (++hash < PPPOE_HASH_SIZE) {
1032 po = item_hash_table[hash];
1041 static void pppoe_seq_stop(struct seq_file *seq, void *v)
1043 read_unlock_bh(&pppoe_hash_lock);
1046 static struct seq_operations pppoe_seq_ops = {
1047 .start = pppoe_seq_start,
1048 .next = pppoe_seq_next,
1049 .stop = pppoe_seq_stop,
1050 .show = pppoe_seq_show,
1053 static int pppoe_seq_open(struct inode *inode, struct file *file)
1055 return seq_open(file, &pppoe_seq_ops);
1058 static const struct file_operations pppoe_seq_fops = {
1059 .owner = THIS_MODULE,
1060 .open = pppoe_seq_open,
1062 .llseek = seq_lseek,
1063 .release = seq_release,
1066 static int __init pppoe_proc_init(void)
1068 struct proc_dir_entry *p;
1070 p = create_proc_entry("net/pppoe", S_IRUGO, NULL);
1074 p->proc_fops = &pppoe_seq_fops;
1077 #else /* CONFIG_PROC_FS */
1078 static inline int pppoe_proc_init(void) { return 0; }
1079 #endif /* CONFIG_PROC_FS */
1081 static const struct proto_ops pppoe_ops = {
1083 .owner = THIS_MODULE,
1084 .release = pppoe_release,
1085 .bind = sock_no_bind,
1086 .connect = pppoe_connect,
1087 .socketpair = sock_no_socketpair,
1088 .accept = sock_no_accept,
1089 .getname = pppoe_getname,
1090 .poll = datagram_poll,
1091 .listen = sock_no_listen,
1092 .shutdown = sock_no_shutdown,
1093 .setsockopt = sock_no_setsockopt,
1094 .getsockopt = sock_no_getsockopt,
1095 .sendmsg = pppoe_sendmsg,
1096 .recvmsg = pppoe_recvmsg,
1097 .mmap = sock_no_mmap,
1098 .ioctl = pppox_ioctl,
1101 static struct pppox_proto pppoe_proto = {
1102 .create = pppoe_create,
1103 .ioctl = pppoe_ioctl,
1104 .owner = THIS_MODULE,
1108 static int __init pppoe_init(void)
1110 int err = proto_register(&pppoe_sk_proto, 0);
1115 err = register_pppox_proto(PX_PROTO_OE, &pppoe_proto);
1117 goto out_unregister_pppoe_proto;
1119 err = pppoe_proc_init();
1121 goto out_unregister_pppox_proto;
1123 dev_add_pack(&pppoes_ptype);
1124 dev_add_pack(&pppoed_ptype);
1125 register_netdevice_notifier(&pppoe_notifier);
1128 out_unregister_pppox_proto:
1129 unregister_pppox_proto(PX_PROTO_OE);
1130 out_unregister_pppoe_proto:
1131 proto_unregister(&pppoe_sk_proto);
1135 static void __exit pppoe_exit(void)
1137 unregister_pppox_proto(PX_PROTO_OE);
1138 dev_remove_pack(&pppoes_ptype);
1139 dev_remove_pack(&pppoed_ptype);
1140 unregister_netdevice_notifier(&pppoe_notifier);
1141 remove_proc_entry("net/pppoe", NULL);
1142 proto_unregister(&pppoe_sk_proto);
1145 module_init(pppoe_init);
1146 module_exit(pppoe_exit);
1148 MODULE_AUTHOR("Michal Ostrowski <mostrows@speakeasy.net>");
1149 MODULE_DESCRIPTION("PPP over Ethernet driver");
1150 MODULE_LICENSE("GPL");
1151 MODULE_ALIAS_NETPROTO(PF_PPPOX);