if_pppox.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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 <linux/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/ppp_channel.h>
  24. #endif /* __KERNEL__ */
  25. #include <linux/if_pppol2tp.h>
  26. /* For user-space programs to pick up these definitions
  27. * which they wouldn't get otherwise without defining __KERNEL__
  28. */
  29. #ifndef AF_PPPOX
  30. #define AF_PPPOX 24
  31. #define PF_PPPOX AF_PPPOX
  32. #endif /* !(AF_PPPOX) */
  33. /************************************************************************
  34. * PPPoE addressing definition
  35. */
  36. typedef __be16 sid_t;
  37. struct pppoe_addr {
  38. sid_t sid; /* Session identifier */
  39. unsigned char remote[ETH_ALEN]; /* Remote address */
  40. char dev[IFNAMSIZ]; /* Local device to use */
  41. };
  42. /************************************************************************
  43. * PPTP addressing definition
  44. */
  45. struct pptp_addr {
  46. u16 call_id;
  47. struct in_addr sin_addr;
  48. };
  49. /************************************************************************
  50. * Protocols supported by AF_PPPOX
  51. */
  52. #define PX_PROTO_OE 0 /* Currently just PPPoE */
  53. #define PX_PROTO_OL2TP 1 /* Now L2TP also */
  54. #define PX_PROTO_PPTP 2
  55. #define PX_MAX_PROTO 3
  56. struct sockaddr_pppox {
  57. sa_family_t sa_family; /* address family, AF_PPPOX */
  58. unsigned int sa_protocol; /* protocol identifier */
  59. union {
  60. struct pppoe_addr pppoe;
  61. struct pptp_addr pptp;
  62. } sa_addr;
  63. } __packed;
  64. /* The use of the above union isn't viable because the size of this
  65. * struct must stay fixed over time -- applications use sizeof(struct
  66. * sockaddr_pppox) to fill it. We use a protocol specific sockaddr
  67. * type instead.
  68. */
  69. struct sockaddr_pppol2tp {
  70. sa_family_t sa_family; /* address family, AF_PPPOX */
  71. unsigned int sa_protocol; /* protocol identifier */
  72. struct pppol2tp_addr pppol2tp;
  73. } __packed;
  74. /* The L2TPv3 protocol changes tunnel and session ids from 16 to 32
  75. * bits. So we need a different sockaddr structure.
  76. */
  77. struct sockaddr_pppol2tpv3 {
  78. sa_family_t sa_family; /* address family, AF_PPPOX */
  79. unsigned int sa_protocol; /* protocol identifier */
  80. struct pppol2tpv3_addr pppol2tp;
  81. } __packed;
  82. /*********************************************************************
  83. *
  84. * ioctl interface for defining forwarding of connections
  85. *
  86. ********************************************************************/
  87. #define PPPOEIOCSFWD _IOW(0xB1 ,0, size_t)
  88. #define PPPOEIOCDFWD _IO(0xB1 ,1)
  89. /*#define PPPOEIOCGFWD _IOWR(0xB1,2, size_t)*/
  90. /* Codes to identify message types */
  91. #define PADI_CODE 0x09
  92. #define PADO_CODE 0x07
  93. #define PADR_CODE 0x19
  94. #define PADS_CODE 0x65
  95. #define PADT_CODE 0xa7
  96. struct pppoe_tag {
  97. __be16 tag_type;
  98. __be16 tag_len;
  99. char tag_data[0];
  100. } __packed;
  101. /* Tag identifiers */
  102. #define PTT_EOL __cpu_to_be16(0x0000)
  103. #define PTT_SRV_NAME __cpu_to_be16(0x0101)
  104. #define PTT_AC_NAME __cpu_to_be16(0x0102)
  105. #define PTT_HOST_UNIQ __cpu_to_be16(0x0103)
  106. #define PTT_AC_COOKIE __cpu_to_be16(0x0104)
  107. #define PTT_VENDOR __cpu_to_be16(0x0105)
  108. #define PTT_RELAY_SID __cpu_to_be16(0x0110)
  109. #define PTT_SRV_ERR __cpu_to_be16(0x0201)
  110. #define PTT_SYS_ERR __cpu_to_be16(0x0202)
  111. #define PTT_GEN_ERR __cpu_to_be16(0x0203)
  112. struct pppoe_hdr {
  113. #if defined(__LITTLE_ENDIAN_BITFIELD)
  114. __u8 ver : 4;
  115. __u8 type : 4;
  116. #elif defined(__BIG_ENDIAN_BITFIELD)
  117. __u8 type : 4;
  118. __u8 ver : 4;
  119. #else
  120. #error "Please fix <asm/byteorder.h>"
  121. #endif
  122. __u8 code;
  123. __be16 sid;
  124. __be16 length;
  125. struct pppoe_tag tag[0];
  126. } __packed;
  127. /* Length of entire PPPoE + PPP header */
  128. #define PPPOE_SES_HLEN 8
  129. #ifdef __KERNEL__
  130. #include <linux/skbuff.h>
  131. static inline struct pppoe_hdr *pppoe_hdr(const struct sk_buff *skb)
  132. {
  133. return (struct pppoe_hdr *)skb_network_header(skb);
  134. }
  135. struct pppoe_opt {
  136. struct net_device *dev; /* device associated with socket*/
  137. int ifindex; /* ifindex of device associated with socket */
  138. struct pppoe_addr pa; /* what this socket is bound to*/
  139. struct sockaddr_pppox relay; /* what socket data will be
  140. relayed to (PPPoE relaying) */
  141. };
  142. struct pptp_opt {
  143. struct pptp_addr src_addr;
  144. struct pptp_addr dst_addr;
  145. u32 ack_sent, ack_recv;
  146. u32 seq_sent, seq_recv;
  147. int ppp_flags;
  148. };
  149. #include <net/sock.h>
  150. struct pppox_sock {
  151. /* struct sock must be the first member of pppox_sock */
  152. struct sock sk;
  153. struct ppp_channel chan;
  154. struct pppox_sock *next; /* for hash table */
  155. union {
  156. struct pppoe_opt pppoe;
  157. struct pptp_opt pptp;
  158. } proto;
  159. __be16 num;
  160. };
  161. #define pppoe_dev proto.pppoe.dev
  162. #define pppoe_ifindex proto.pppoe.ifindex
  163. #define pppoe_pa proto.pppoe.pa
  164. #define pppoe_relay proto.pppoe.relay
  165. static inline struct pppox_sock *pppox_sk(struct sock *sk)
  166. {
  167. return (struct pppox_sock *)sk;
  168. }
  169. static inline struct sock *sk_pppox(struct pppox_sock *po)
  170. {
  171. return (struct sock *)po;
  172. }
  173. struct module;
  174. struct pppox_proto {
  175. int (*create)(struct net *net, struct socket *sock);
  176. int (*ioctl)(struct socket *sock, unsigned int cmd,
  177. unsigned long arg);
  178. struct module *owner;
  179. };
  180. extern int register_pppox_proto(int proto_num, struct pppox_proto *pp);
  181. extern void unregister_pppox_proto(int proto_num);
  182. extern void pppox_unbind_sock(struct sock *sk);/* delete ppp-channel binding */
  183. extern int pppox_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg);
  184. /* PPPoX socket states */
  185. enum {
  186. PPPOX_NONE = 0, /* initial state */
  187. PPPOX_CONNECTED = 1, /* connection established ==TCP_ESTABLISHED */
  188. PPPOX_BOUND = 2, /* bound to ppp device */
  189. PPPOX_RELAY = 4, /* forwarding is enabled */
  190. PPPOX_ZOMBIE = 8, /* dead, but still bound to ppp device */
  191. PPPOX_DEAD = 16 /* dead, useless, please clean me up!*/
  192. };
  193. #endif /* __KERNEL__ */
  194. #endif /* !(__LINUX_IF_PPPOX_H) */