pppox.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /** -*- linux-c -*- ***********************************************************
  2.  * Linux PPP over X/Ethernet (PPPoX/PPPoE) Sockets
  3.  *
  4.  * PPPoX --- Generic PPP encapsulation socket family
  5.  * PPPoE --- PPP over Ethernet (RFC 2516)
  6.  *
  7.  *
  8.  * Version: 0.5.1
  9.  *
  10.  * Author: Michal Ostrowski <mostrows@styx.uwaterloo.ca>
  11.  *
  12.  * 051000 : Initialization cleanup
  13.  *
  14.  * License:
  15.  * This program is free software; you can redistribute it and/or
  16.  * modify it under the terms of the GNU General Public License
  17.  * as published by the Free Software Foundation; either version
  18.  * 2 of the License, or (at your option) any later version.
  19.  *
  20.  */
  21. #include <linux/string.h>
  22. #include <linux/module.h>
  23. #include <asm/uaccess.h>
  24. #include <linux/kernel.h>
  25. #include <linux/sched.h>
  26. #include <linux/slab.h>
  27. #include <linux/errno.h>
  28. #include <linux/netdevice.h>
  29. #include <linux/net.h>
  30. #include <linux/init.h>
  31. #include <linux/if_pppox.h>
  32. #include <net/sock.h>
  33. #include <linux/ppp_defs.h>
  34. #include <linux/if_ppp.h>
  35. #include <linux/ppp_channel.h>
  36. static struct pppox_proto *proto[PX_MAX_PROTO+1];
  37. int register_pppox_proto(int proto_num, struct pppox_proto *pp)
  38. {
  39. if (proto_num < 0 || proto_num > PX_MAX_PROTO) {
  40. return -EINVAL;
  41. }
  42. if (proto[proto_num])
  43. return -EALREADY;
  44. MOD_INC_USE_COUNT;
  45. proto[proto_num] = pp;
  46. return 0;
  47. }
  48. void unregister_pppox_proto(int proto_num)
  49. {
  50. if (proto_num >= 0 && proto_num <= PX_MAX_PROTO) {
  51.     proto[proto_num] = NULL;
  52.     MOD_DEC_USE_COUNT;
  53. }
  54. }
  55. void pppox_unbind_sock(struct sock *sk)
  56. {
  57. /* Clear connection to ppp device, if attached. */
  58. if (sk->state & PPPOX_BOUND) {
  59. ppp_unregister_channel(&sk->protinfo.pppox->chan);
  60. sk->state &= ~PPPOX_BOUND;
  61. }
  62. }
  63. EXPORT_SYMBOL(register_pppox_proto);
  64. EXPORT_SYMBOL(unregister_pppox_proto);
  65. EXPORT_SYMBOL(pppox_unbind_sock);
  66. static int pppox_ioctl(struct socket* sock, unsigned int cmd,
  67.        unsigned long arg)
  68. {
  69. struct sock *sk = sock->sk;
  70. struct pppox_opt *po;
  71. int err = 0;
  72. po = sk->protinfo.pppox;
  73. lock_sock(sk);
  74. switch (cmd) {
  75. case PPPIOCGCHAN:{
  76. int index;
  77. err = -ENOTCONN;
  78. if (!(sk->state & PPPOX_CONNECTED))
  79. break;
  80. err = -EINVAL;
  81. index = ppp_channel_index(&po->chan);
  82. if (put_user(index , (int *) arg))
  83. break;
  84. err = 0;
  85. sk->state |= PPPOX_BOUND;
  86. break;
  87. }
  88. default:
  89. if (proto[sk->protocol]->ioctl)
  90. err = (*proto[sk->protocol]->ioctl)(sock, cmd, arg);
  91. break;
  92. };
  93. release_sock(sk);
  94. return err;
  95. }
  96. static int pppox_create(struct socket *sock, int protocol)
  97. {
  98. int err = 0;
  99. if (protocol < 0 || protocol > PX_MAX_PROTO)
  100.     return -EPROTOTYPE;
  101. if (proto[protocol] == NULL)
  102.     return -EPROTONOSUPPORT;
  103. err = (*proto[protocol]->create)(sock);
  104. if (err == 0) {
  105. /* We get to set the ioctl handler. */
  106. /* For everything else, pppox is just a shell. */
  107. sock->ops->ioctl = pppox_ioctl;
  108. }
  109. return err;
  110. }
  111. static struct net_proto_family pppox_proto_family = {
  112. PF_PPPOX,
  113. pppox_create
  114. };
  115. static int __init pppox_init(void)
  116. {
  117. int err = 0;
  118. err = sock_register(&pppox_proto_family);
  119. return err;
  120. }
  121. static void __exit pppox_exit(void)
  122. {
  123. sock_unregister(PF_PPPOX);
  124. }
  125. module_init(pppox_init);
  126. module_exit(pppox_exit);
  127. MODULE_AUTHOR("Michal Ostrowski <mostrows@speakeasy.net>");
  128. MODULE_DESCRIPTION("PPP over Ethernet driver (generic socket layer)");
  129. MODULE_LICENSE("GPL");