RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / drivers / net / pppoe.c
blob9f53671121daf46e0706637269e5821dc2076cf9
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)
8 * Version: 0.7.0
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
25 * in pppoe_release.
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
32 * locked. (DaveM)
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
38 * a memory leak.
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>
48 * Contributors:
49 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
50 * David S. Miller (davem@redhat.com)
52 * License:
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>
81 #include <net/sock.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, __be16 sid, char *addr)
107 return (a->sid == sid &&
108 (memcmp(a->remote,addr,ETH_ALEN) == 0));
111 #if 8%PPPOE_HASH_BITS
112 #error 8 must be a multiple of PPPOE_HASH_BITS
113 #endif
115 static int hash_item(__be16 sid, unsigned char *addr)
117 unsigned char hash = 0;
118 unsigned int i;
120 for (i = 0 ; i < ETH_ALEN ; i++) {
121 hash ^= addr[i];
123 for (i = 0 ; i < sizeof(sid_t)*8 ; i += 8 ){
124 hash ^= (__force __u32)sid>>i;
126 for (i = 8 ; (i>>=1) >= PPPOE_HASH_BITS ; ) {
127 hash ^= hash>>i;
130 return hash & ( PPPOE_HASH_SIZE - 1 );
133 /* zeroed because its in .bss */
134 static struct pppox_sock *item_hash_table[PPPOE_HASH_SIZE];
136 /**********************************************************************
138 * Set/get/delete/rehash items (internal versions)
140 **********************************************************************/
141 static struct pppox_sock *__get_item(__be16 sid, unsigned char *addr, int ifindex)
143 int hash = hash_item(sid, addr);
144 struct pppox_sock *ret;
146 ret = item_hash_table[hash];
148 while (ret && !(cmp_addr(&ret->pppoe_pa, sid, addr) && ret->pppoe_ifindex == ifindex))
149 ret = ret->next;
151 return ret;
154 static int __set_item(struct pppox_sock *po)
156 int hash = hash_item(po->pppoe_pa.sid, po->pppoe_pa.remote);
157 struct pppox_sock *ret;
159 ret = item_hash_table[hash];
160 while (ret) {
161 if (cmp_2_addr(&ret->pppoe_pa, &po->pppoe_pa) && ret->pppoe_ifindex == po->pppoe_ifindex)
162 return -EALREADY;
164 ret = ret->next;
167 po->next = item_hash_table[hash];
168 item_hash_table[hash] = po;
170 return 0;
173 static struct pppox_sock *__delete_item(__be16 sid, char *addr, int ifindex)
175 int hash = hash_item(sid, addr);
176 struct pppox_sock *ret, **src;
178 ret = item_hash_table[hash];
179 src = &item_hash_table[hash];
181 while (ret) {
182 if (cmp_addr(&ret->pppoe_pa, sid, addr) && ret->pppoe_ifindex == ifindex) {
183 *src = ret->next;
184 break;
187 src = &ret->next;
188 ret = ret->next;
191 return ret;
194 /**********************************************************************
196 * Set/get/delete/rehash items
198 **********************************************************************/
199 static inline struct pppox_sock *get_item(__be16 sid,
200 unsigned char *addr, int ifindex)
202 struct pppox_sock *po;
204 read_lock_bh(&pppoe_hash_lock);
205 po = __get_item(sid, addr, ifindex);
206 if (po)
207 sock_hold(sk_pppox(po));
208 read_unlock_bh(&pppoe_hash_lock);
210 return po;
213 static inline struct pppox_sock *get_item_by_addr(struct sockaddr_pppox *sp)
215 struct net_device *dev;
216 int ifindex;
218 dev = dev_get_by_name(sp->sa_addr.pppoe.dev);
219 if(!dev)
220 return NULL;
221 ifindex = dev->ifindex;
222 dev_put(dev);
223 return get_item(sp->sa_addr.pppoe.sid, sp->sa_addr.pppoe.remote, ifindex);
226 static inline struct pppox_sock *delete_item(__be16 sid, char *addr, int ifindex)
228 struct pppox_sock *ret;
230 write_lock_bh(&pppoe_hash_lock);
231 ret = __delete_item(sid, addr, ifindex);
232 write_unlock_bh(&pppoe_hash_lock);
234 return ret;
239 /***************************************************************************
241 * Handler for device events.
242 * Certain device events require that sockets be unconnected.
244 **************************************************************************/
246 static void pppoe_flush_dev(struct net_device *dev)
248 int hash;
249 BUG_ON(dev == NULL);
251 write_lock_bh(&pppoe_hash_lock);
252 for (hash = 0; hash < PPPOE_HASH_SIZE; hash++) {
253 struct pppox_sock *po = item_hash_table[hash];
255 while (po != NULL) {
256 struct sock *sk = sk_pppox(po);
257 if (po->pppoe_dev != dev) {
258 po = po->next;
259 continue;
261 po->pppoe_dev = NULL;
262 dev_put(dev);
265 /* We always grab the socket lock, followed by the
266 * pppoe_hash_lock, in that order. Since we should
267 * hold the sock lock while doing any unbinding,
268 * we need to release the lock we're holding.
269 * Hold a reference to the sock so it doesn't disappear
270 * as we're jumping between locks.
273 sock_hold(sk);
275 write_unlock_bh(&pppoe_hash_lock);
276 lock_sock(sk);
278 if (sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND)) {
279 pppox_unbind_sock(sk);
280 sk->sk_state = PPPOX_ZOMBIE;
281 sk->sk_state_change(sk);
284 release_sock(sk);
285 sock_put(sk);
287 /* Restart scan at the beginning of this hash chain.
288 * While the lock was dropped the chain contents may
289 * have changed.
291 write_lock_bh(&pppoe_hash_lock);
292 po = item_hash_table[hash];
295 write_unlock_bh(&pppoe_hash_lock);
298 static int pppoe_device_event(struct notifier_block *this,
299 unsigned long event, void *ptr)
301 struct net_device *dev = (struct net_device *) ptr;
303 /* Only look at sockets that are using this specific device. */
304 switch (event) {
305 case NETDEV_CHANGEADDR:
306 case NETDEV_CHANGEMTU:
307 /* A change in mtu or address is a bad thing, requiring
308 * LCP re-negotiation.
311 case NETDEV_GOING_DOWN:
312 case NETDEV_DOWN:
313 /* Find every socket on this device and kill it. */
314 pppoe_flush_dev(dev);
315 break;
317 default:
318 break;
321 return NOTIFY_DONE;
325 static struct notifier_block pppoe_notifier = {
326 .notifier_call = pppoe_device_event,
330 /************************************************************************
332 * Do the real work of receiving a PPPoE Session frame.
334 ***********************************************************************/
335 static int pppoe_rcv_core(struct sock *sk, struct sk_buff *skb)
337 struct pppox_sock *po = pppox_sk(sk);
338 struct pppox_sock *relay_po;
340 if (sk->sk_state & PPPOX_BOUND) {
341 ppp_input(&po->chan, skb);
342 } else if (sk->sk_state & PPPOX_RELAY) {
343 relay_po = get_item_by_addr(&po->pppoe_relay);
345 if (relay_po == NULL)
346 goto abort_kfree;
348 if ((sk_pppox(relay_po)->sk_state & PPPOX_CONNECTED) == 0)
349 goto abort_put;
351 if (!__pppoe_xmit(sk_pppox(relay_po), skb))
352 goto abort_put;
353 } else {
354 if (sock_queue_rcv_skb(sk, skb))
355 goto abort_kfree;
358 return NET_RX_SUCCESS;
360 abort_put:
361 sock_put(sk_pppox(relay_po));
363 abort_kfree:
364 kfree_skb(skb);
365 return NET_RX_DROP;
368 /************************************************************************
370 * Receive wrapper called in BH context.
372 ***********************************************************************/
373 static int pppoe_rcv(struct sk_buff *skb,
374 struct net_device *dev,
375 struct packet_type *pt,
376 struct net_device *orig_dev)
379 struct pppoe_hdr *ph;
380 struct pppox_sock *po;
381 int len;
383 if (!(skb = skb_share_check(skb, GFP_ATOMIC)))
384 goto out;
386 if (!pskb_may_pull(skb, sizeof(struct pppoe_hdr)))
387 goto drop;
389 ph = pppoe_hdr(skb);
390 len = ntohs(ph->length);
392 skb_pull_rcsum(skb, sizeof(*ph));
393 if (skb->len < len)
394 goto drop;
396 if (pskb_trim_rcsum(skb, len))
397 goto drop;
399 po = get_item(ph->sid, eth_hdr(skb)->h_source, dev->ifindex);
400 if (!po)
401 goto drop;
403 return sk_receive_skb(sk_pppox(po), skb, 0);
405 drop:
406 kfree_skb(skb);
407 out:
408 return NET_RX_DROP;
411 /************************************************************************
413 * Receive a PPPoE Discovery frame.
414 * This is solely for detection of PADT frames
416 ***********************************************************************/
417 static int pppoe_disc_rcv(struct sk_buff *skb,
418 struct net_device *dev,
419 struct packet_type *pt,
420 struct net_device *orig_dev)
423 struct pppoe_hdr *ph;
424 struct pppox_sock *po;
426 if (!(skb = skb_share_check(skb, GFP_ATOMIC)))
427 goto out;
429 if (!pskb_may_pull(skb, sizeof(struct pppoe_hdr)))
430 goto abort;
432 ph = pppoe_hdr(skb);
433 if (ph->code != PADT_CODE)
434 goto abort;
436 /* Check destination address */
437 if (memcmp(eth_hdr(skb)->h_dest, dev->dev_addr, ETH_ALEN))
438 goto abort;
440 po = get_item(ph->sid, eth_hdr(skb)->h_source, dev->ifindex);
441 if (po) {
442 struct sock *sk = sk_pppox(po);
444 bh_lock_sock(sk);
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;
458 bh_unlock_sock(sk);
459 sock_put(sk);
462 abort:
463 kfree_skb(skb);
464 out:
465 return NET_RX_SUCCESS; /* Lies... :-) */
468 static struct packet_type pppoes_ptype = {
469 .type = __constant_htons(ETH_P_PPP_SES),
470 .func = pppoe_rcv,
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 = {
479 .name = "PPPOE",
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)
491 int error = -ENOMEM;
492 struct sock *sk;
494 sk = sk_alloc(PF_PPPOX, GFP_KERNEL, &pppoe_sk_proto, 1);
495 if (!sk)
496 goto out;
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;
509 error = 0;
510 out: return error;
513 static int pppoe_release(struct socket *sock)
515 struct sock *sk = sock->sk;
516 struct pppox_sock *po;
518 if (!sk)
519 return 0;
521 lock_sock(sk);
522 if (sock_flag(sk, SOCK_DEAD)){
523 release_sock(sk);
524 return -EBADF;
527 pppox_unbind_sock(sk);
529 /* Signal the death of the socket. */
530 sk->sk_state = PPPOX_DEAD;
533 /* Write lock on hash lock protects the entire "po" struct from
534 * concurrent updates via pppoe_flush_dev. The "po" struct should
535 * be considered part of the hash table contents, thus protected
536 * by the hash table lock */
537 write_lock_bh(&pppoe_hash_lock);
539 po = pppox_sk(sk);
540 if (po->pppoe_pa.sid) {
541 __delete_item(po->pppoe_pa.sid,
542 po->pppoe_pa.remote, po->pppoe_ifindex);
545 if (po->pppoe_dev) {
546 dev_put(po->pppoe_dev);
547 po->pppoe_dev = NULL;
550 write_unlock_bh(&pppoe_hash_lock);
552 sock_orphan(sk);
553 sock->sk = NULL;
555 skb_queue_purge(&sk->sk_receive_queue);
556 release_sock(sk);
557 sock_put(sk);
559 return 0;
563 static int pppoe_connect(struct socket *sock, struct sockaddr *uservaddr,
564 int sockaddr_len, int flags)
566 struct sock *sk = sock->sk;
567 struct net_device *dev;
568 struct sockaddr_pppox *sp = (struct sockaddr_pppox *) uservaddr;
569 struct pppox_sock *po = pppox_sk(sk);
570 int error;
572 lock_sock(sk);
574 error = -EINVAL;
575 if (sp->sa_protocol != PX_PROTO_OE)
576 goto end;
578 /* Check for already bound sockets */
579 error = -EBUSY;
580 if ((sk->sk_state & PPPOX_CONNECTED) && sp->sa_addr.pppoe.sid)
581 goto end;
583 /* Check for already disconnected sockets, on attempts to disconnect */
584 error = -EALREADY;
585 if ((sk->sk_state & PPPOX_DEAD) && !sp->sa_addr.pppoe.sid )
586 goto end;
588 error = 0;
589 if (po->pppoe_pa.sid) {
590 pppox_unbind_sock(sk);
592 /* Delete the old binding */
593 delete_item(po->pppoe_pa.sid,po->pppoe_pa.remote,po->pppoe_ifindex);
595 if(po->pppoe_dev)
596 dev_put(po->pppoe_dev);
598 memset(sk_pppox(po) + 1, 0,
599 sizeof(struct pppox_sock) - sizeof(struct sock));
601 sk->sk_state = PPPOX_NONE;
604 /* Don't re-bind if sid==0 */
605 if (sp->sa_addr.pppoe.sid != 0) {
606 dev = dev_get_by_name(sp->sa_addr.pppoe.dev);
608 error = -ENODEV;
609 if (!dev)
610 goto end;
612 po->pppoe_dev = dev;
613 po->pppoe_ifindex = dev->ifindex;
615 write_lock_bh(&pppoe_hash_lock);
616 if (!(dev->flags & IFF_UP)){
617 write_unlock_bh(&pppoe_hash_lock);
618 goto err_put;
621 memcpy(&po->pppoe_pa,
622 &sp->sa_addr.pppoe,
623 sizeof(struct pppoe_addr));
625 error = __set_item(po);
626 write_unlock_bh(&pppoe_hash_lock);
627 if (error < 0)
628 goto err_put;
630 po->chan.hdrlen = (sizeof(struct pppoe_hdr) +
631 dev->hard_header_len);
633 po->chan.mtu = dev->mtu - sizeof(struct pppoe_hdr);
634 po->chan.private = sk;
635 po->chan.ops = &pppoe_chan_ops;
637 error = ppp_register_channel(&po->chan);
638 if (error)
639 goto err_put;
641 sk->sk_state = PPPOX_CONNECTED;
644 po->num = sp->sa_addr.pppoe.sid;
646 end:
647 release_sock(sk);
648 return error;
649 err_put:
650 if (po->pppoe_dev) {
651 dev_put(po->pppoe_dev);
652 po->pppoe_dev = NULL;
654 goto end;
658 static int pppoe_getname(struct socket *sock, struct sockaddr *uaddr,
659 int *usockaddr_len, int peer)
661 int len = sizeof(struct sockaddr_pppox);
662 struct sockaddr_pppox sp;
664 sp.sa_family = AF_PPPOX;
665 sp.sa_protocol = PX_PROTO_OE;
666 memcpy(&sp.sa_addr.pppoe, &pppox_sk(sock->sk)->pppoe_pa,
667 sizeof(struct pppoe_addr));
669 memcpy(uaddr, &sp, len);
671 *usockaddr_len = len;
673 return 0;
677 static int pppoe_ioctl(struct socket *sock, unsigned int cmd,
678 unsigned long arg)
680 struct sock *sk = sock->sk;
681 struct pppox_sock *po = pppox_sk(sk);
682 int val = 0;
683 int err = 0;
685 switch (cmd) {
686 case PPPIOCGMRU:
687 err = -ENXIO;
689 if (!(sk->sk_state & PPPOX_CONNECTED))
690 break;
692 err = -EFAULT;
693 if (put_user(po->pppoe_dev->mtu -
694 sizeof(struct pppoe_hdr) -
695 PPP_HDRLEN,
696 (int __user *) arg))
697 break;
698 err = 0;
699 break;
701 case PPPIOCSMRU:
702 err = -ENXIO;
703 if (!(sk->sk_state & PPPOX_CONNECTED))
704 break;
706 err = -EFAULT;
707 if (get_user(val,(int __user *) arg))
708 break;
710 if (val < (po->pppoe_dev->mtu
711 - sizeof(struct pppoe_hdr)
712 - PPP_HDRLEN))
713 err = 0;
714 else
715 err = -EINVAL;
716 break;
718 case PPPIOCSFLAGS:
719 err = -EFAULT;
720 if (get_user(val, (int __user *) arg))
721 break;
722 err = 0;
723 break;
725 case PPPOEIOCSFWD:
727 struct pppox_sock *relay_po;
729 err = -EBUSY;
730 if (sk->sk_state & (PPPOX_BOUND | PPPOX_ZOMBIE | PPPOX_DEAD))
731 break;
733 err = -ENOTCONN;
734 if (!(sk->sk_state & PPPOX_CONNECTED))
735 break;
737 /* PPPoE address from the user specifies an outbound
738 PPPoE address which frames are forwarded to */
739 err = -EFAULT;
740 if (copy_from_user(&po->pppoe_relay,
741 (void __user *)arg,
742 sizeof(struct sockaddr_pppox)))
743 break;
745 err = -EINVAL;
746 if (po->pppoe_relay.sa_family != AF_PPPOX ||
747 po->pppoe_relay.sa_protocol!= PX_PROTO_OE)
748 break;
750 /* Check that the socket referenced by the address
751 actually exists. */
752 relay_po = get_item_by_addr(&po->pppoe_relay);
754 if (!relay_po)
755 break;
757 sock_put(sk_pppox(relay_po));
758 sk->sk_state |= PPPOX_RELAY;
759 err = 0;
760 break;
763 case PPPOEIOCDFWD:
764 err = -EALREADY;
765 if (!(sk->sk_state & PPPOX_RELAY))
766 break;
768 sk->sk_state &= ~PPPOX_RELAY;
769 err = 0;
770 break;
772 default:;
775 return err;
779 static int pppoe_sendmsg(struct kiocb *iocb, struct socket *sock,
780 struct msghdr *m, size_t total_len)
782 struct sk_buff *skb;
783 struct sock *sk = sock->sk;
784 struct pppox_sock *po = pppox_sk(sk);
785 int error;
786 struct pppoe_hdr hdr;
787 struct pppoe_hdr *ph;
788 struct net_device *dev;
789 char *start;
791 lock_sock(sk);
792 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED)) {
793 error = -ENOTCONN;
794 goto end;
797 hdr.ver = 1;
798 hdr.type = 1;
799 hdr.code = 0;
800 hdr.sid = po->num;
802 dev = po->pppoe_dev;
804 error = -EMSGSIZE;
805 if (total_len > (dev->mtu + dev->hard_header_len))
806 goto end;
809 skb = sock_wmalloc(sk, total_len + dev->hard_header_len + 32 + NET_SKB_PAD,
810 0, GFP_KERNEL);
811 if (!skb) {
812 error = -ENOMEM;
813 goto end;
816 /* Reserve space for headers. */
817 skb_reserve(skb, dev->hard_header_len + NET_SKB_PAD);
818 skb_reset_network_header(skb);
820 skb->dev = dev;
822 skb->priority = sk->sk_priority;
823 skb->protocol = __constant_htons(ETH_P_PPP_SES);
825 ph = (struct pppoe_hdr *) skb_put(skb, total_len + sizeof(struct pppoe_hdr));
826 start = (char *) &ph->tag[0];
828 error = memcpy_fromiovec(start, m->msg_iov, total_len);
830 if (error < 0) {
831 kfree_skb(skb);
832 goto end;
835 error = total_len;
836 dev->hard_header(skb, dev, ETH_P_PPP_SES,
837 po->pppoe_pa.remote, NULL, total_len);
839 memcpy(ph, &hdr, sizeof(struct pppoe_hdr));
841 ph->length = htons(total_len);
843 dev_queue_xmit(skb);
845 end:
846 release_sock(sk);
847 return error;
851 /************************************************************************
853 * xmit function for internal use.
855 ***********************************************************************/
856 static int __pppoe_xmit(struct sock *sk, struct sk_buff *skb)
858 struct pppox_sock *po = pppox_sk(sk);
859 struct net_device *dev = po->pppoe_dev;
860 struct pppoe_hdr *ph;
861 int data_len = skb->len;
863 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
864 goto abort;
866 if (!dev)
867 goto abort;
869 /* Copy the data if there is no space for the header or if it's
870 * read-only.
872 if (skb_cow_head(skb, sizeof(*ph) + dev->hard_header_len))
873 goto abort;
875 __skb_push(skb, sizeof(*ph));
876 skb_reset_network_header(skb);
878 ph = pppoe_hdr(skb);
879 ph->ver = 1;
880 ph->type = 1;
881 ph->code = 0;
882 ph->sid = po->num;
883 ph->length = htons(data_len);
885 skb->protocol = __constant_htons(ETH_P_PPP_SES);
886 skb->dev = dev;
888 dev->hard_header(skb, dev, ETH_P_PPP_SES,
889 po->pppoe_pa.remote, NULL, data_len);
891 dev_queue_xmit(skb);
893 return 1;
895 abort:
896 kfree_skb(skb);
897 return 1;
901 /************************************************************************
903 * xmit function called by generic PPP driver
904 * sends PPP frame over PPPoE socket
906 ***********************************************************************/
907 static int pppoe_xmit(struct ppp_channel *chan, struct sk_buff *skb)
909 struct sock *sk = (struct sock *) chan->private;
910 return __pppoe_xmit(sk, skb);
914 static struct ppp_channel_ops pppoe_chan_ops = {
915 .start_xmit = pppoe_xmit,
918 static int pppoe_recvmsg(struct kiocb *iocb, struct socket *sock,
919 struct msghdr *m, size_t total_len, int flags)
921 struct sock *sk = sock->sk;
922 struct sk_buff *skb;
923 int error = 0;
925 if (sk->sk_state & PPPOX_BOUND) {
926 error = -EIO;
927 goto end;
930 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
931 flags & MSG_DONTWAIT, &error);
933 if (error < 0)
934 goto end;
936 m->msg_namelen = 0;
938 if (skb) {
939 total_len = min_t(size_t, total_len, skb->len);
940 error = skb_copy_datagram_iovec(skb, 0, m->msg_iov, total_len);
941 if (error == 0)
942 error = total_len;
945 kfree_skb(skb);
946 end:
947 return error;
950 #ifdef CONFIG_PROC_FS
951 static int pppoe_seq_show(struct seq_file *seq, void *v)
953 struct pppox_sock *po;
954 char *dev_name;
956 if (v == SEQ_START_TOKEN) {
957 seq_puts(seq, "Id Address Device\n");
958 goto out;
961 po = v;
962 dev_name = po->pppoe_pa.dev;
964 seq_printf(seq, "%08X %02X:%02X:%02X:%02X:%02X:%02X %8s\n",
965 po->pppoe_pa.sid,
966 po->pppoe_pa.remote[0], po->pppoe_pa.remote[1],
967 po->pppoe_pa.remote[2], po->pppoe_pa.remote[3],
968 po->pppoe_pa.remote[4], po->pppoe_pa.remote[5], dev_name);
969 out:
970 return 0;
973 static __inline__ struct pppox_sock *pppoe_get_idx(loff_t pos)
975 struct pppox_sock *po;
976 int i = 0;
978 for (; i < PPPOE_HASH_SIZE; i++) {
979 po = item_hash_table[i];
980 while (po) {
981 if (!pos--)
982 goto out;
983 po = po->next;
986 out:
987 return po;
990 static void *pppoe_seq_start(struct seq_file *seq, loff_t *pos)
992 loff_t l = *pos;
994 read_lock_bh(&pppoe_hash_lock);
995 return l ? pppoe_get_idx(--l) : SEQ_START_TOKEN;
998 static void *pppoe_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1000 struct pppox_sock *po;
1002 ++*pos;
1003 if (v == SEQ_START_TOKEN) {
1004 po = pppoe_get_idx(0);
1005 goto out;
1007 po = v;
1008 if (po->next)
1009 po = po->next;
1010 else {
1011 int hash = hash_item(po->pppoe_pa.sid, po->pppoe_pa.remote);
1013 po = NULL;
1014 while (++hash < PPPOE_HASH_SIZE) {
1015 po = item_hash_table[hash];
1016 if (po)
1017 break;
1020 out:
1021 return po;
1024 static void pppoe_seq_stop(struct seq_file *seq, void *v)
1026 read_unlock_bh(&pppoe_hash_lock);
1029 static struct seq_operations pppoe_seq_ops = {
1030 .start = pppoe_seq_start,
1031 .next = pppoe_seq_next,
1032 .stop = pppoe_seq_stop,
1033 .show = pppoe_seq_show,
1036 static int pppoe_seq_open(struct inode *inode, struct file *file)
1038 return seq_open(file, &pppoe_seq_ops);
1041 static const struct file_operations pppoe_seq_fops = {
1042 .owner = THIS_MODULE,
1043 .open = pppoe_seq_open,
1044 .read = seq_read,
1045 .llseek = seq_lseek,
1046 .release = seq_release,
1049 static int __init pppoe_proc_init(void)
1051 struct proc_dir_entry *p;
1053 p = create_proc_entry("net/pppoe", S_IRUGO, NULL);
1054 if (!p)
1055 return -ENOMEM;
1057 p->proc_fops = &pppoe_seq_fops;
1058 return 0;
1060 #else /* CONFIG_PROC_FS */
1061 static inline int pppoe_proc_init(void) { return 0; }
1062 #endif /* CONFIG_PROC_FS */
1064 static const struct proto_ops pppoe_ops = {
1065 .family = AF_PPPOX,
1066 .owner = THIS_MODULE,
1067 .release = pppoe_release,
1068 .bind = sock_no_bind,
1069 .connect = pppoe_connect,
1070 .socketpair = sock_no_socketpair,
1071 .accept = sock_no_accept,
1072 .getname = pppoe_getname,
1073 .poll = datagram_poll,
1074 .listen = sock_no_listen,
1075 .shutdown = sock_no_shutdown,
1076 .setsockopt = sock_no_setsockopt,
1077 .getsockopt = sock_no_getsockopt,
1078 .sendmsg = pppoe_sendmsg,
1079 .recvmsg = pppoe_recvmsg,
1080 .mmap = sock_no_mmap,
1081 .ioctl = pppox_ioctl,
1084 static struct pppox_proto pppoe_proto = {
1085 .create = pppoe_create,
1086 .ioctl = pppoe_ioctl,
1087 .owner = THIS_MODULE,
1091 static int __init pppoe_init(void)
1093 int err = proto_register(&pppoe_sk_proto, 0);
1095 if (err)
1096 goto out;
1098 err = register_pppox_proto(PX_PROTO_OE, &pppoe_proto);
1099 if (err)
1100 goto out_unregister_pppoe_proto;
1102 err = pppoe_proc_init();
1103 if (err)
1104 goto out_unregister_pppox_proto;
1106 dev_add_pack(&pppoes_ptype);
1107 dev_add_pack(&pppoed_ptype);
1108 register_netdevice_notifier(&pppoe_notifier);
1109 out:
1110 return err;
1111 out_unregister_pppox_proto:
1112 unregister_pppox_proto(PX_PROTO_OE);
1113 out_unregister_pppoe_proto:
1114 proto_unregister(&pppoe_sk_proto);
1115 goto out;
1118 static void __exit pppoe_exit(void)
1120 unregister_pppox_proto(PX_PROTO_OE);
1121 dev_remove_pack(&pppoes_ptype);
1122 dev_remove_pack(&pppoed_ptype);
1123 unregister_netdevice_notifier(&pppoe_notifier);
1124 remove_proc_entry("net/pppoe", NULL);
1125 proto_unregister(&pppoe_sk_proto);
1128 module_init(pppoe_init);
1129 module_exit(pppoe_exit);
1131 MODULE_AUTHOR("Michal Ostrowski <mostrows@speakeasy.net>");
1132 MODULE_DESCRIPTION("PPP over Ethernet driver");
1133 MODULE_LICENSE("GPL");
1134 MODULE_ALIAS_NETPROTO(PF_PPPOX);