if_pppox.h 6.4 KB

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