if_pppox.h 6.1 KB

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