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

嵌入式Linux

开发平台:

Unix_Linux

  1. /***************************************************************************
  2.  * Linux PPP over X - Generic PPP transport layer sockets
  3.  * Linux PPP over Ethernet (PPPoE) Socket Implementation (RFC 2516) 
  4.  *
  5.  * This file supplies definitions required by the PPP over Ethernet driver
  6.  * (pppox.c).  All version information wrt this file is located in pppox.c
  7.  *
  8.  * License:
  9.  * This program is free software; you can redistribute it and/or
  10.  * modify it under the terms of the GNU General Public License
  11.  * as published by the Free Software Foundation; either version
  12.  * 2 of the License, or (at your option) any later version.
  13.  *
  14.  */
  15. #ifndef __LINUX_IF_PPPOX_H
  16. #define __LINUX_IF_PPPOX_H
  17. #include <asm/types.h>
  18. #include <asm/byteorder.h>
  19. #ifdef  __KERNEL__
  20. #include <linux/if_ether.h>
  21. #include <linux/if.h>
  22. #include <linux/netdevice.h>
  23. #include <linux/sched.h>
  24. #include <asm/semaphore.h>
  25. #include <linux/ppp_channel.h>
  26. #endif /* __KERNEL__ */
  27. /* For user-space programs to pick up these definitions
  28.  * which they wouldn't get otherwise without defining __KERNEL__
  29.  */
  30. #ifndef AF_PPPOX
  31. #define AF_PPPOX 24
  32. #define PF_PPPOX AF_PPPOX
  33. #endif /* !(AF_PPPOX) */
  34. /************************************************************************ 
  35.  * PPPoE addressing definition 
  36.  */ 
  37. typedef __u16 sid_t; 
  38. struct pppoe_addr{ 
  39.        sid_t           sid;                    /* Session identifier */ 
  40.        unsigned char   remote[ETH_ALEN];       /* Remote address */ 
  41.        char            dev[IFNAMSIZ];          /* Local device to use */ 
  42. }; 
  43.  
  44. /************************************************************************ 
  45.  * Protocols supported by AF_PPPOX 
  46.  */ 
  47. #define PX_PROTO_OE    0 /* Currently just PPPoE */
  48. #define PX_MAX_PROTO   1
  49.  
  50. struct sockaddr_pppox { 
  51.        sa_family_t     sa_family;            /* address family, AF_PPPOX */ 
  52.        unsigned int    sa_protocol;          /* protocol identifier */ 
  53.        union{ 
  54.                struct pppoe_addr       pppoe; 
  55.        }sa_addr; 
  56. }__attribute__ ((packed)); 
  57. /*********************************************************************
  58.  *
  59.  * ioctl interface for defining forwarding of connections
  60.  *
  61.  ********************************************************************/
  62. #define PPPOEIOCSFWD _IOW(0xB1 ,0, sizeof(struct sockaddr_pppox))
  63. #define PPPOEIOCDFWD _IO(0xB1 ,1)
  64. /*#define PPPOEIOCGFWD _IOWR(0xB1,2, sizeof(struct sockaddr_pppox))*/
  65. /* Codes to identify message types */
  66. #define PADI_CODE 0x09
  67. #define PADO_CODE 0x07
  68. #define PADR_CODE 0x19
  69. #define PADS_CODE 0x65
  70. #define PADT_CODE 0xa7
  71. struct pppoe_tag {
  72. __u16 tag_type;
  73. __u16 tag_len;
  74. char tag_data[0];
  75. } __attribute ((packed));
  76. /* Tag identifiers */
  77. #define PTT_EOL __constant_htons(0x0000)
  78. #define PTT_SRV_NAME __constant_htons(0x0101)
  79. #define PTT_AC_NAME __constant_htons(0x0102)
  80. #define PTT_HOST_UNIQ __constant_htons(0x0103)
  81. #define PTT_AC_COOKIE __constant_htons(0x0104)
  82. #define PTT_VENDOR  __constant_htons(0x0105)
  83. #define PTT_RELAY_SID __constant_htons(0x0110)
  84. #define PTT_SRV_ERR     __constant_htons(0x0201)
  85. #define PTT_SYS_ERR   __constant_htons(0x0202)
  86. #define PTT_GEN_ERR   __constant_htons(0x0203)
  87. struct pppoe_hdr {
  88. #if defined(__LITTLE_ENDIAN_BITFIELD)
  89. __u8 ver : 4;
  90. __u8 type : 4;
  91. #elif defined(__BIG_ENDIAN_BITFIELD)
  92. __u8 type : 4;
  93. __u8 ver : 4;
  94. #else
  95. #error "Please fix <asm/byteorder.h>"
  96. #endif
  97. __u8 code;
  98. __u16 sid;
  99. __u16 length;
  100. struct pppoe_tag tag[0];
  101. } __attribute__ ((packed));
  102. #ifdef __KERNEL__
  103. struct pppox_proto {
  104. int (*create)(struct socket *sock);
  105. int (*ioctl)(struct socket *sock, unsigned int cmd,
  106.      unsigned long arg);
  107. };
  108. extern int register_pppox_proto(int proto_num, struct pppox_proto *pp);
  109. extern void unregister_pppox_proto(int proto_num);
  110. extern void pppox_unbind_sock(struct sock *sk);/* delete ppp-channel binding */
  111. extern int pppox_channel_ioctl(struct ppp_channel *pc, unsigned int cmd,
  112.        unsigned long arg);
  113. /* PPPoE socket states */
  114. enum {
  115.     PPPOX_NONE = 0,  /* initial state */
  116.     PPPOX_CONNECTED = 1,  /* connection established ==TCP_ESTABLISHED */
  117.     PPPOX_BOUND = 2,  /* bound to ppp device */
  118.     PPPOX_RELAY = 4,  /* forwarding is enabled */
  119.     PPPOX_DEAD = 8
  120. };
  121. extern struct ppp_channel_ops pppoe_chan_ops;
  122. extern int pppox_proto_init(struct net_proto *np);
  123. #endif /* __KERNEL__ */
  124. #endif /* !(__LINUX_IF_PPPOX_H) */