[MTD] Remove gratuitous inclusion of ARM-only header from physmap.c
[linux-2.6/mini2440.git] / drivers / net / pppoe.c
blob475dc930380f63b6a1b0fd52b2532b43354798c5
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 * 220102 : Fix module use count on failure in pppoe_create, pppox_sk -acme
11 * 030700 : Fixed connect logic to allow for disconnect.
12 * 270700 : Fixed potential SMP problems; we must protect against
13 * simultaneous invocation of ppp_input
14 * and ppp_unregister_channel.
15 * 040800 : Respect reference count mechanisms on net-devices.
16 * 200800 : fix kfree(skb) in pppoe_rcv (acme)
17 * Module reference count is decremented in the right spot now,
18 * guards against sock_put not actually freeing the sk
19 * in pppoe_release.
20 * 051000 : Initialization cleanup.
21 * 111100 : Fix recvmsg.
22 * 050101 : Fix PADT procesing.
23 * 140501 : Use pppoe_rcv_core to handle all backlog. (Alexey)
24 * 170701 : Do not lock_sock with rwlock held. (DaveM)
25 * Ignore discovery frames if user has socket
26 * locked. (DaveM)
27 * Ignore return value of dev_queue_xmit in __pppoe_xmit
28 * or else we may kfree an SKB twice. (DaveM)
29 * 190701 : When doing copies of skb's in __pppoe_xmit, always delete
30 * the original skb that was passed in on success, never on
31 * failure. Delete the copy of the skb on failure to avoid
32 * a memory leak.
33 * 081001 : Misc. cleanup (licence string, non-blocking, prevent
34 * reference of device on close).
35 * 121301 : New ppp channels interface; cannot unregister a channel
36 * from interrupts. Thus, we mark the socket as a ZOMBIE
37 * and do the unregistration later.
38 * 081002 : seq_file support for proc stuff -acme
39 * 111602 : Merge all 2.4 fixes into 2.5/2.6 tree. Label 2.5/2.6
40 * as version 0.7. Spacing cleanup.
41 * Author: Michal Ostrowski <mostrows@speakeasy.net>
42 * Contributors:
43 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
44 * David S. Miller (davem@redhat.com)
46 * License:
47 * This program is free software; you can redistribute it and/or
48 * modify it under the terms of the GNU General Public License
49 * as published by the Free Software Foundation; either version
50 * 2 of the License, or (at your option) any later version.
54 #include <linux/string.h>
55 #include <linux/module.h>
56 #include <linux/kernel.h>
57 #include <linux/slab.h>
58 #include <linux/errno.h>
59 #include <linux/netdevice.h>
60 #include <linux/net.h>
61 #include <linux/inetdevice.h>
62 #include <linux/etherdevice.h>
63 #include <linux/skbuff.h>
64 #include <linux/init.h>
65 #include <linux/if_ether.h>
66 #include <linux/if_pppox.h>
67 #include <linux/ppp_channel.h>
68 #include <linux/ppp_defs.h>
69 #include <linux/if_ppp.h>
70 #include <linux/notifier.h>
71 #include <linux/file.h>
72 #include <linux/proc_fs.h>
73 #include <linux/seq_file.h>
75 #include <net/sock.h>
77 #include <asm/uaccess.h>
79 #define PPPOE_HASH_BITS 4
80 #define PPPOE_HASH_SIZE (1<<PPPOE_HASH_BITS)
82 static struct ppp_channel_ops pppoe_chan_ops;
84 static int pppoe_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg);
85 static int pppoe_xmit(struct ppp_channel *chan, struct sk_buff *skb);
86 static int __pppoe_xmit(struct sock *sk, struct sk_buff *skb);
88 static const struct proto_ops pppoe_ops;
89 static DEFINE_RWLOCK(pppoe_hash_lock);
91 static struct ppp_channel_ops pppoe_chan_ops;
93 static inline int cmp_2_addr(struct pppoe_addr *a, struct pppoe_addr *b)
95 return (a->sid == b->sid &&
96 (memcmp(a->remote, b->remote, ETH_ALEN) == 0));
99 static inline int cmp_addr(struct pppoe_addr *a, unsigned long sid, char *addr)
101 return (a->sid == sid &&
102 (memcmp(a->remote,addr,ETH_ALEN) == 0));
105 static int hash_item(unsigned long sid, unsigned char *addr)
107 char hash = 0;
108 int i, j;
110 for (i = 0; i < ETH_ALEN ; ++i) {
111 for (j = 0; j < 8/PPPOE_HASH_BITS ; ++j) {
112 hash ^= addr[i] >> ( j * PPPOE_HASH_BITS );
116 for (i = 0; i < (sizeof(unsigned long)*8) / PPPOE_HASH_BITS ; ++i)
117 hash ^= sid >> (i*PPPOE_HASH_BITS);
119 return hash & ( PPPOE_HASH_SIZE - 1 );
122 /* zeroed because its in .bss */
123 static struct pppox_sock *item_hash_table[PPPOE_HASH_SIZE];
125 /**********************************************************************
127 * Set/get/delete/rehash items (internal versions)
129 **********************************************************************/
130 static struct pppox_sock *__get_item(unsigned long sid, unsigned char *addr)
132 int hash = hash_item(sid, addr);
133 struct pppox_sock *ret;
135 ret = item_hash_table[hash];
137 while (ret && !cmp_addr(&ret->pppoe_pa, sid, addr))
138 ret = ret->next;
140 return ret;
143 static int __set_item(struct pppox_sock *po)
145 int hash = hash_item(po->pppoe_pa.sid, po->pppoe_pa.remote);
146 struct pppox_sock *ret;
148 ret = item_hash_table[hash];
149 while (ret) {
150 if (cmp_2_addr(&ret->pppoe_pa, &po->pppoe_pa))
151 return -EALREADY;
153 ret = ret->next;
156 if (!ret) {
157 po->next = item_hash_table[hash];
158 item_hash_table[hash] = po;
161 return 0;
164 static struct pppox_sock *__delete_item(unsigned long sid, char *addr)
166 int hash = hash_item(sid, addr);
167 struct pppox_sock *ret, **src;
169 ret = item_hash_table[hash];
170 src = &item_hash_table[hash];
172 while (ret) {
173 if (cmp_addr(&ret->pppoe_pa, sid, addr)) {
174 *src = ret->next;
175 break;
178 src = &ret->next;
179 ret = ret->next;
182 return ret;
185 /**********************************************************************
187 * Set/get/delete/rehash items
189 **********************************************************************/
190 static inline struct pppox_sock *get_item(unsigned long sid,
191 unsigned char *addr)
193 struct pppox_sock *po;
195 read_lock_bh(&pppoe_hash_lock);
196 po = __get_item(sid, addr);
197 if (po)
198 sock_hold(sk_pppox(po));
199 read_unlock_bh(&pppoe_hash_lock);
201 return po;
204 static inline struct pppox_sock *get_item_by_addr(struct sockaddr_pppox *sp)
206 return get_item(sp->sa_addr.pppoe.sid, sp->sa_addr.pppoe.remote);
209 static inline int set_item(struct pppox_sock *po)
211 int i;
213 if (!po)
214 return -EINVAL;
216 write_lock_bh(&pppoe_hash_lock);
217 i = __set_item(po);
218 write_unlock_bh(&pppoe_hash_lock);
220 return i;
223 static inline struct pppox_sock *delete_item(unsigned long sid, char *addr)
225 struct pppox_sock *ret;
227 write_lock_bh(&pppoe_hash_lock);
228 ret = __delete_item(sid, addr);
229 write_unlock_bh(&pppoe_hash_lock);
231 return ret;
236 /***************************************************************************
238 * Handler for device events.
239 * Certain device events require that sockets be unconnected.
241 **************************************************************************/
243 static void pppoe_flush_dev(struct net_device *dev)
245 int hash;
247 BUG_ON(dev == NULL);
249 read_lock_bh(&pppoe_hash_lock);
250 for (hash = 0; hash < PPPOE_HASH_SIZE; hash++) {
251 struct pppox_sock *po = item_hash_table[hash];
253 while (po != NULL) {
254 if (po->pppoe_dev == dev) {
255 struct sock *sk = sk_pppox(po);
257 sock_hold(sk);
258 po->pppoe_dev = NULL;
260 /* We hold a reference to SK, now drop the
261 * hash table lock so that we may attempt
262 * to lock the socket (which can sleep).
264 read_unlock_bh(&pppoe_hash_lock);
266 lock_sock(sk);
268 if (sk->sk_state &
269 (PPPOX_CONNECTED | PPPOX_BOUND)) {
270 pppox_unbind_sock(sk);
271 dev_put(dev);
272 sk->sk_state = PPPOX_ZOMBIE;
273 sk->sk_state_change(sk);
276 release_sock(sk);
278 sock_put(sk);
280 read_lock_bh(&pppoe_hash_lock);
282 /* Now restart from the beginning of this
283 * hash chain. We always NULL out pppoe_dev
284 * so we are guaranteed to make forward
285 * progress.
287 po = item_hash_table[hash];
288 continue;
290 po = po->next;
293 read_unlock_bh(&pppoe_hash_lock);
296 static int pppoe_device_event(struct notifier_block *this,
297 unsigned long event, void *ptr)
299 struct net_device *dev = (struct net_device *) ptr;
301 /* Only look at sockets that are using this specific device. */
302 switch (event) {
303 case NETDEV_CHANGEMTU:
304 /* A change in mtu is a bad thing, requiring
305 * LCP re-negotiation.
308 case NETDEV_GOING_DOWN:
309 case NETDEV_DOWN:
310 /* Find every socket on this device and kill it. */
311 pppoe_flush_dev(dev);
312 break;
314 default:
315 break;
318 return NOTIFY_DONE;
322 static struct notifier_block pppoe_notifier = {
323 .notifier_call = pppoe_device_event,
327 /************************************************************************
329 * Do the real work of receiving a PPPoE Session frame.
331 ***********************************************************************/
332 static int pppoe_rcv_core(struct sock *sk, struct sk_buff *skb)
334 struct pppox_sock *po = pppox_sk(sk);
335 struct pppox_sock *relay_po = NULL;
337 if (sk->sk_state & PPPOX_BOUND) {
338 struct pppoe_hdr *ph = (struct pppoe_hdr *) skb->nh.raw;
339 int len = ntohs(ph->length);
340 skb_pull_rcsum(skb, sizeof(struct pppoe_hdr));
341 if (pskb_trim_rcsum(skb, len))
342 goto abort_kfree;
344 ppp_input(&po->chan, skb);
345 } else if (sk->sk_state & PPPOX_RELAY) {
346 relay_po = get_item_by_addr(&po->pppoe_relay);
348 if (relay_po == NULL)
349 goto abort_kfree;
351 if ((sk_pppox(relay_po)->sk_state & PPPOX_CONNECTED) == 0)
352 goto abort_put;
354 skb_pull(skb, sizeof(struct pppoe_hdr));
355 if (!__pppoe_xmit(sk_pppox(relay_po), skb))
356 goto abort_put;
357 } else {
358 if (sock_queue_rcv_skb(sk, skb))
359 goto abort_kfree;
362 return NET_RX_SUCCESS;
364 abort_put:
365 sock_put(sk_pppox(relay_po));
367 abort_kfree:
368 kfree_skb(skb);
369 return NET_RX_DROP;
372 /************************************************************************
374 * Receive wrapper called in BH context.
376 ***********************************************************************/
377 static int pppoe_rcv(struct sk_buff *skb,
378 struct net_device *dev,
379 struct packet_type *pt,
380 struct net_device *orig_dev)
383 struct pppoe_hdr *ph;
384 struct pppox_sock *po;
386 if (!pskb_may_pull(skb, sizeof(struct pppoe_hdr)))
387 goto drop;
389 if (!(skb = skb_share_check(skb, GFP_ATOMIC)))
390 goto out;
392 ph = (struct pppoe_hdr *) skb->nh.raw;
394 po = get_item((unsigned long) ph->sid, eth_hdr(skb)->h_source);
395 if (po != NULL)
396 return sk_receive_skb(sk_pppox(po), skb);
397 drop:
398 kfree_skb(skb);
399 out:
400 return NET_RX_DROP;
403 /************************************************************************
405 * Receive a PPPoE Discovery frame.
406 * This is solely for detection of PADT frames
408 ***********************************************************************/
409 static int pppoe_disc_rcv(struct sk_buff *skb,
410 struct net_device *dev,
411 struct packet_type *pt,
412 struct net_device *orig_dev)
415 struct pppoe_hdr *ph;
416 struct pppox_sock *po;
418 if (!pskb_may_pull(skb, sizeof(struct pppoe_hdr)))
419 goto abort;
421 if (!(skb = skb_share_check(skb, GFP_ATOMIC)))
422 goto out;
424 ph = (struct pppoe_hdr *) skb->nh.raw;
425 if (ph->code != PADT_CODE)
426 goto abort;
428 po = get_item((unsigned long) ph->sid, eth_hdr(skb)->h_source);
429 if (po) {
430 struct sock *sk = sk_pppox(po);
432 bh_lock_sock(sk);
434 /* If the user has locked the socket, just ignore
435 * the packet. With the way two rcv protocols hook into
436 * one socket family type, we cannot (easily) distinguish
437 * what kind of SKB it is during backlog rcv.
439 if (sock_owned_by_user(sk) == 0) {
440 /* We're no longer connect at the PPPOE layer,
441 * and must wait for ppp channel to disconnect us.
443 sk->sk_state = PPPOX_ZOMBIE;
446 bh_unlock_sock(sk);
447 sock_put(sk);
450 abort:
451 kfree_skb(skb);
452 out:
453 return NET_RX_SUCCESS; /* Lies... :-) */
456 static struct packet_type pppoes_ptype = {
457 .type = __constant_htons(ETH_P_PPP_SES),
458 .func = pppoe_rcv,
461 static struct packet_type pppoed_ptype = {
462 .type = __constant_htons(ETH_P_PPP_DISC),
463 .func = pppoe_disc_rcv,
466 static struct proto pppoe_sk_proto = {
467 .name = "PPPOE",
468 .owner = THIS_MODULE,
469 .obj_size = sizeof(struct pppox_sock),
472 /***********************************************************************
474 * Initialize a new struct sock.
476 **********************************************************************/
477 static int pppoe_create(struct socket *sock)
479 int error = -ENOMEM;
480 struct sock *sk;
482 sk = sk_alloc(PF_PPPOX, GFP_KERNEL, &pppoe_sk_proto, 1);
483 if (!sk)
484 goto out;
486 sock_init_data(sock, sk);
488 sock->state = SS_UNCONNECTED;
489 sock->ops = &pppoe_ops;
491 sk->sk_backlog_rcv = pppoe_rcv_core;
492 sk->sk_state = PPPOX_NONE;
493 sk->sk_type = SOCK_STREAM;
494 sk->sk_family = PF_PPPOX;
495 sk->sk_protocol = PX_PROTO_OE;
497 error = 0;
498 out: return error;
501 static int pppoe_release(struct socket *sock)
503 struct sock *sk = sock->sk;
504 struct pppox_sock *po;
505 int error = 0;
507 if (!sk)
508 return 0;
510 if (sock_flag(sk, SOCK_DEAD))
511 return -EBADF;
513 pppox_unbind_sock(sk);
515 /* Signal the death of the socket. */
516 sk->sk_state = PPPOX_DEAD;
518 po = pppox_sk(sk);
519 if (po->pppoe_pa.sid) {
520 delete_item(po->pppoe_pa.sid, po->pppoe_pa.remote);
523 if (po->pppoe_dev)
524 dev_put(po->pppoe_dev);
526 po->pppoe_dev = NULL;
528 sock_orphan(sk);
529 sock->sk = NULL;
531 skb_queue_purge(&sk->sk_receive_queue);
532 sock_put(sk);
534 return error;
538 static int pppoe_connect(struct socket *sock, struct sockaddr *uservaddr,
539 int sockaddr_len, int flags)
541 struct sock *sk = sock->sk;
542 struct net_device *dev = NULL;
543 struct sockaddr_pppox *sp = (struct sockaddr_pppox *) uservaddr;
544 struct pppox_sock *po = pppox_sk(sk);
545 int error;
547 lock_sock(sk);
549 error = -EINVAL;
550 if (sp->sa_protocol != PX_PROTO_OE)
551 goto end;
553 /* Check for already bound sockets */
554 error = -EBUSY;
555 if ((sk->sk_state & PPPOX_CONNECTED) && sp->sa_addr.pppoe.sid)
556 goto end;
558 /* Check for already disconnected sockets, on attempts to disconnect */
559 error = -EALREADY;
560 if ((sk->sk_state & PPPOX_DEAD) && !sp->sa_addr.pppoe.sid )
561 goto end;
563 error = 0;
564 if (po->pppoe_pa.sid) {
565 pppox_unbind_sock(sk);
567 /* Delete the old binding */
568 delete_item(po->pppoe_pa.sid,po->pppoe_pa.remote);
570 if(po->pppoe_dev)
571 dev_put(po->pppoe_dev);
573 memset(sk_pppox(po) + 1, 0,
574 sizeof(struct pppox_sock) - sizeof(struct sock));
576 sk->sk_state = PPPOX_NONE;
579 /* Don't re-bind if sid==0 */
580 if (sp->sa_addr.pppoe.sid != 0) {
581 dev = dev_get_by_name(sp->sa_addr.pppoe.dev);
583 error = -ENODEV;
584 if (!dev)
585 goto end;
587 po->pppoe_dev = dev;
589 if (!(dev->flags & IFF_UP))
590 goto err_put;
592 memcpy(&po->pppoe_pa,
593 &sp->sa_addr.pppoe,
594 sizeof(struct pppoe_addr));
596 error = set_item(po);
597 if (error < 0)
598 goto err_put;
600 po->chan.hdrlen = (sizeof(struct pppoe_hdr) +
601 dev->hard_header_len);
603 po->chan.private = sk;
604 po->chan.ops = &pppoe_chan_ops;
606 error = ppp_register_channel(&po->chan);
607 if (error)
608 goto err_put;
610 sk->sk_state = PPPOX_CONNECTED;
613 po->num = sp->sa_addr.pppoe.sid;
615 end:
616 release_sock(sk);
617 return error;
618 err_put:
619 if (po->pppoe_dev) {
620 dev_put(po->pppoe_dev);
621 po->pppoe_dev = NULL;
623 goto end;
627 static int pppoe_getname(struct socket *sock, struct sockaddr *uaddr,
628 int *usockaddr_len, int peer)
630 int len = sizeof(struct sockaddr_pppox);
631 struct sockaddr_pppox sp;
633 sp.sa_family = AF_PPPOX;
634 sp.sa_protocol = PX_PROTO_OE;
635 memcpy(&sp.sa_addr.pppoe, &pppox_sk(sock->sk)->pppoe_pa,
636 sizeof(struct pppoe_addr));
638 memcpy(uaddr, &sp, len);
640 *usockaddr_len = len;
642 return 0;
646 static int pppoe_ioctl(struct socket *sock, unsigned int cmd,
647 unsigned long arg)
649 struct sock *sk = sock->sk;
650 struct pppox_sock *po = pppox_sk(sk);
651 int val = 0;
652 int err = 0;
654 switch (cmd) {
655 case PPPIOCGMRU:
656 err = -ENXIO;
658 if (!(sk->sk_state & PPPOX_CONNECTED))
659 break;
661 err = -EFAULT;
662 if (put_user(po->pppoe_dev->mtu -
663 sizeof(struct pppoe_hdr) -
664 PPP_HDRLEN,
665 (int __user *) arg))
666 break;
667 err = 0;
668 break;
670 case PPPIOCSMRU:
671 err = -ENXIO;
672 if (!(sk->sk_state & PPPOX_CONNECTED))
673 break;
675 err = -EFAULT;
676 if (get_user(val,(int __user *) arg))
677 break;
679 if (val < (po->pppoe_dev->mtu
680 - sizeof(struct pppoe_hdr)
681 - PPP_HDRLEN))
682 err = 0;
683 else
684 err = -EINVAL;
685 break;
687 case PPPIOCSFLAGS:
688 err = -EFAULT;
689 if (get_user(val, (int __user *) arg))
690 break;
691 err = 0;
692 break;
694 case PPPOEIOCSFWD:
696 struct pppox_sock *relay_po;
698 err = -EBUSY;
699 if (sk->sk_state & (PPPOX_BOUND | PPPOX_ZOMBIE | PPPOX_DEAD))
700 break;
702 err = -ENOTCONN;
703 if (!(sk->sk_state & PPPOX_CONNECTED))
704 break;
706 /* PPPoE address from the user specifies an outbound
707 PPPoE address to which frames are forwarded to */
708 err = -EFAULT;
709 if (copy_from_user(&po->pppoe_relay,
710 (void __user *)arg,
711 sizeof(struct sockaddr_pppox)))
712 break;
714 err = -EINVAL;
715 if (po->pppoe_relay.sa_family != AF_PPPOX ||
716 po->pppoe_relay.sa_protocol!= PX_PROTO_OE)
717 break;
719 /* Check that the socket referenced by the address
720 actually exists. */
721 relay_po = get_item_by_addr(&po->pppoe_relay);
723 if (!relay_po)
724 break;
726 sock_put(sk_pppox(relay_po));
727 sk->sk_state |= PPPOX_RELAY;
728 err = 0;
729 break;
732 case PPPOEIOCDFWD:
733 err = -EALREADY;
734 if (!(sk->sk_state & PPPOX_RELAY))
735 break;
737 sk->sk_state &= ~PPPOX_RELAY;
738 err = 0;
739 break;
741 default:;
744 return err;
748 static int pppoe_sendmsg(struct kiocb *iocb, struct socket *sock,
749 struct msghdr *m, size_t total_len)
751 struct sk_buff *skb = NULL;
752 struct sock *sk = sock->sk;
753 struct pppox_sock *po = pppox_sk(sk);
754 int error = 0;
755 struct pppoe_hdr hdr;
756 struct pppoe_hdr *ph;
757 struct net_device *dev;
758 char *start;
760 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED)) {
761 error = -ENOTCONN;
762 goto end;
765 hdr.ver = 1;
766 hdr.type = 1;
767 hdr.code = 0;
768 hdr.sid = po->num;
770 lock_sock(sk);
772 dev = po->pppoe_dev;
774 error = -EMSGSIZE;
775 if (total_len > (dev->mtu + dev->hard_header_len))
776 goto end;
779 skb = sock_wmalloc(sk, total_len + dev->hard_header_len + 32,
780 0, GFP_KERNEL);
781 if (!skb) {
782 error = -ENOMEM;
783 goto end;
786 /* Reserve space for headers. */
787 skb_reserve(skb, dev->hard_header_len);
788 skb->nh.raw = skb->data;
790 skb->dev = dev;
792 skb->priority = sk->sk_priority;
793 skb->protocol = __constant_htons(ETH_P_PPP_SES);
795 ph = (struct pppoe_hdr *) skb_put(skb, total_len + sizeof(struct pppoe_hdr));
796 start = (char *) &ph->tag[0];
798 error = memcpy_fromiovec(start, m->msg_iov, total_len);
800 if (error < 0) {
801 kfree_skb(skb);
802 goto end;
805 error = total_len;
806 dev->hard_header(skb, dev, ETH_P_PPP_SES,
807 po->pppoe_pa.remote, NULL, total_len);
809 memcpy(ph, &hdr, sizeof(struct pppoe_hdr));
811 ph->length = htons(total_len);
813 dev_queue_xmit(skb);
815 end:
816 release_sock(sk);
817 return error;
821 /************************************************************************
823 * xmit function for internal use.
825 ***********************************************************************/
826 static int __pppoe_xmit(struct sock *sk, struct sk_buff *skb)
828 struct pppox_sock *po = pppox_sk(sk);
829 struct net_device *dev = po->pppoe_dev;
830 struct pppoe_hdr hdr;
831 struct pppoe_hdr *ph;
832 int headroom = skb_headroom(skb);
833 int data_len = skb->len;
834 struct sk_buff *skb2;
836 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
837 goto abort;
839 hdr.ver = 1;
840 hdr.type = 1;
841 hdr.code = 0;
842 hdr.sid = po->num;
843 hdr.length = htons(skb->len);
845 if (!dev)
846 goto abort;
848 /* Copy the skb if there is no space for the header. */
849 if (headroom < (sizeof(struct pppoe_hdr) + dev->hard_header_len)) {
850 skb2 = dev_alloc_skb(32+skb->len +
851 sizeof(struct pppoe_hdr) +
852 dev->hard_header_len);
854 if (skb2 == NULL)
855 goto abort;
857 skb_reserve(skb2, dev->hard_header_len + sizeof(struct pppoe_hdr));
858 memcpy(skb_put(skb2, skb->len), skb->data, skb->len);
859 } else {
860 /* Make a clone so as to not disturb the original skb,
861 * give dev_queue_xmit something it can free.
863 skb2 = skb_clone(skb, GFP_ATOMIC);
866 ph = (struct pppoe_hdr *) skb_push(skb2, sizeof(struct pppoe_hdr));
867 memcpy(ph, &hdr, sizeof(struct pppoe_hdr));
868 skb2->protocol = __constant_htons(ETH_P_PPP_SES);
870 skb2->nh.raw = skb2->data;
872 skb2->dev = dev;
874 dev->hard_header(skb2, dev, ETH_P_PPP_SES,
875 po->pppoe_pa.remote, NULL, data_len);
877 /* We're transmitting skb2, and assuming that dev_queue_xmit
878 * will free it. The generic ppp layer however, is expecting
879 * that we give back 'skb' (not 'skb2') in case of failure,
880 * but free it in case of success.
883 if (dev_queue_xmit(skb2) < 0)
884 goto abort;
886 kfree_skb(skb);
887 return 1;
889 abort:
890 return 0;
894 /************************************************************************
896 * xmit function called by generic PPP driver
897 * sends PPP frame over PPPoE socket
899 ***********************************************************************/
900 static int pppoe_xmit(struct ppp_channel *chan, struct sk_buff *skb)
902 struct sock *sk = (struct sock *) chan->private;
903 return __pppoe_xmit(sk, skb);
907 static struct ppp_channel_ops pppoe_chan_ops = {
908 .start_xmit = pppoe_xmit,
911 static int pppoe_recvmsg(struct kiocb *iocb, struct socket *sock,
912 struct msghdr *m, size_t total_len, int flags)
914 struct sock *sk = sock->sk;
915 struct sk_buff *skb = NULL;
916 int error = 0;
917 int len;
918 struct pppoe_hdr *ph = NULL;
920 if (sk->sk_state & PPPOX_BOUND) {
921 error = -EIO;
922 goto end;
925 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
926 flags & MSG_DONTWAIT, &error);
928 if (error < 0) {
929 goto end;
932 m->msg_namelen = 0;
934 if (skb) {
935 error = 0;
936 ph = (struct pppoe_hdr *) skb->nh.raw;
937 len = ntohs(ph->length);
939 error = memcpy_toiovec(m->msg_iov, (unsigned char *) &ph->tag[0], len);
940 if (error < 0)
941 goto do_skb_free;
942 error = len;
945 do_skb_free:
946 if (skb)
947 kfree_skb(skb);
948 end:
949 return error;
952 #ifdef CONFIG_PROC_FS
953 static int pppoe_seq_show(struct seq_file *seq, void *v)
955 struct pppox_sock *po;
956 char *dev_name;
958 if (v == SEQ_START_TOKEN) {
959 seq_puts(seq, "Id Address Device\n");
960 goto out;
963 po = v;
964 dev_name = po->pppoe_pa.dev;
966 seq_printf(seq, "%08X %02X:%02X:%02X:%02X:%02X:%02X %8s\n",
967 po->pppoe_pa.sid,
968 po->pppoe_pa.remote[0], po->pppoe_pa.remote[1],
969 po->pppoe_pa.remote[2], po->pppoe_pa.remote[3],
970 po->pppoe_pa.remote[4], po->pppoe_pa.remote[5], dev_name);
971 out:
972 return 0;
975 static __inline__ struct pppox_sock *pppoe_get_idx(loff_t pos)
977 struct pppox_sock *po = NULL;
978 int i = 0;
980 for (; i < PPPOE_HASH_SIZE; i++) {
981 po = item_hash_table[i];
982 while (po) {
983 if (!pos--)
984 goto out;
985 po = po->next;
988 out:
989 return po;
992 static void *pppoe_seq_start(struct seq_file *seq, loff_t *pos)
994 loff_t l = *pos;
996 read_lock_bh(&pppoe_hash_lock);
997 return l ? pppoe_get_idx(--l) : SEQ_START_TOKEN;
1000 static void *pppoe_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1002 struct pppox_sock *po;
1004 ++*pos;
1005 if (v == SEQ_START_TOKEN) {
1006 po = pppoe_get_idx(0);
1007 goto out;
1009 po = v;
1010 if (po->next)
1011 po = po->next;
1012 else {
1013 int hash = hash_item(po->pppoe_pa.sid, po->pppoe_pa.remote);
1015 while (++hash < PPPOE_HASH_SIZE) {
1016 po = item_hash_table[hash];
1017 if (po)
1018 break;
1021 out:
1022 return po;
1025 static void pppoe_seq_stop(struct seq_file *seq, void *v)
1027 read_unlock_bh(&pppoe_hash_lock);
1030 static struct seq_operations pppoe_seq_ops = {
1031 .start = pppoe_seq_start,
1032 .next = pppoe_seq_next,
1033 .stop = pppoe_seq_stop,
1034 .show = pppoe_seq_show,
1037 static int pppoe_seq_open(struct inode *inode, struct file *file)
1039 return seq_open(file, &pppoe_seq_ops);
1042 static struct file_operations pppoe_seq_fops = {
1043 .owner = THIS_MODULE,
1044 .open = pppoe_seq_open,
1045 .read = seq_read,
1046 .llseek = seq_lseek,
1047 .release = seq_release,
1050 static int __init pppoe_proc_init(void)
1052 struct proc_dir_entry *p;
1054 p = create_proc_entry("net/pppoe", S_IRUGO, NULL);
1055 if (!p)
1056 return -ENOMEM;
1058 p->proc_fops = &pppoe_seq_fops;
1059 return 0;
1061 #else /* CONFIG_PROC_FS */
1062 static inline int pppoe_proc_init(void) { return 0; }
1063 #endif /* CONFIG_PROC_FS */
1065 static const struct proto_ops pppoe_ops = {
1066 .family = AF_PPPOX,
1067 .owner = THIS_MODULE,
1068 .release = pppoe_release,
1069 .bind = sock_no_bind,
1070 .connect = pppoe_connect,
1071 .socketpair = sock_no_socketpair,
1072 .accept = sock_no_accept,
1073 .getname = pppoe_getname,
1074 .poll = datagram_poll,
1075 .listen = sock_no_listen,
1076 .shutdown = sock_no_shutdown,
1077 .setsockopt = sock_no_setsockopt,
1078 .getsockopt = sock_no_getsockopt,
1079 .sendmsg = pppoe_sendmsg,
1080 .recvmsg = pppoe_recvmsg,
1081 .mmap = sock_no_mmap,
1082 .ioctl = pppox_ioctl,
1085 static struct pppox_proto pppoe_proto = {
1086 .create = pppoe_create,
1087 .ioctl = pppoe_ioctl,
1088 .owner = THIS_MODULE,
1092 static int __init pppoe_init(void)
1094 int err = proto_register(&pppoe_sk_proto, 0);
1096 if (err)
1097 goto out;
1099 err = register_pppox_proto(PX_PROTO_OE, &pppoe_proto);
1100 if (err)
1101 goto out_unregister_pppoe_proto;
1103 err = pppoe_proc_init();
1104 if (err)
1105 goto out_unregister_pppox_proto;
1107 dev_add_pack(&pppoes_ptype);
1108 dev_add_pack(&pppoed_ptype);
1109 register_netdevice_notifier(&pppoe_notifier);
1110 out:
1111 return err;
1112 out_unregister_pppox_proto:
1113 unregister_pppox_proto(PX_PROTO_OE);
1114 out_unregister_pppoe_proto:
1115 proto_unregister(&pppoe_sk_proto);
1116 goto out;
1119 static void __exit pppoe_exit(void)
1121 unregister_pppox_proto(PX_PROTO_OE);
1122 dev_remove_pack(&pppoes_ptype);
1123 dev_remove_pack(&pppoed_ptype);
1124 unregister_netdevice_notifier(&pppoe_notifier);
1125 remove_proc_entry("net/pppoe", NULL);
1126 proto_unregister(&pppoe_sk_proto);
1129 module_init(pppoe_init);
1130 module_exit(pppoe_exit);
1132 MODULE_AUTHOR("Michal Ostrowski <mostrows@speakeasy.net>");
1133 MODULE_DESCRIPTION("PPP over Ethernet driver");
1134 MODULE_LICENSE("GPL");
1135 MODULE_ALIAS_NETPROTO(PF_PPPOX);