if_pppox.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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/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. /*********************************************************************
  66. *
  67. * ioctl interface for defining forwarding of connections
  68. *
  69. ********************************************************************/
  70. #define PPPOEIOCSFWD _IOW(0xB1 ,0, size_t)
  71. #define PPPOEIOCDFWD _IO(0xB1 ,1)
  72. /*#define PPPOEIOCGFWD _IOWR(0xB1,2, size_t)*/
  73. /* Codes to identify message types */
  74. #define PADI_CODE 0x09
  75. #define PADO_CODE 0x07
  76. #define PADR_CODE 0x19
  77. #define PADS_CODE 0x65
  78. #define PADT_CODE 0xa7
  79. struct pppoe_tag {
  80. __be16 tag_type;
  81. __be16 tag_len;
  82. char tag_data[0];
  83. } __attribute ((packed));
  84. /* Tag identifiers */
  85. #define PTT_EOL __constant_htons(0x0000)
  86. #define PTT_SRV_NAME __constant_htons(0x0101)
  87. #define PTT_AC_NAME __constant_htons(0x0102)
  88. #define PTT_HOST_UNIQ __constant_htons(0x0103)
  89. #define PTT_AC_COOKIE __constant_htons(0x0104)
  90. #define PTT_VENDOR __constant_htons(0x0105)
  91. #define PTT_RELAY_SID __constant_htons(0x0110)
  92. #define PTT_SRV_ERR __constant_htons(0x0201)
  93. #define PTT_SYS_ERR __constant_htons(0x0202)
  94. #define PTT_GEN_ERR __constant_htons(0x0203)
  95. struct pppoe_hdr {
  96. #if defined(__LITTLE_ENDIAN_BITFIELD)
  97. __u8 ver : 4;
  98. __u8 type : 4;
  99. #elif defined(__BIG_ENDIAN_BITFIELD)
  100. __u8 type : 4;
  101. __u8 ver : 4;
  102. #else
  103. #error "Please fix <asm/byteorder.h>"
  104. #endif
  105. __u8 code;
  106. __be16 sid;
  107. __be16 length;
  108. struct pppoe_tag tag[0];
  109. } __attribute__ ((packed));
  110. /* Length of entire PPPoE + PPP header */
  111. #define PPPOE_SES_HLEN 8
  112. #ifdef __KERNEL__
  113. #include <linux/skbuff.h>
  114. static inline struct pppoe_hdr *pppoe_hdr(const struct sk_buff *skb)
  115. {
  116. return (struct pppoe_hdr *)skb_network_header(skb);
  117. }
  118. struct pppoe_opt {
  119. struct net_device *dev; /* device associated with socket*/
  120. int ifindex; /* ifindex of device associated with socket */
  121. struct pppoe_addr pa; /* what this socket is bound to*/
  122. struct sockaddr_pppox relay; /* what socket data will be
  123. relayed to (PPPoE relaying) */
  124. };
  125. #include <net/sock.h>
  126. struct pppox_sock {
  127. /* struct sock must be the first member of pppox_sock */
  128. struct sock sk;
  129. struct ppp_channel chan;
  130. struct pppox_sock *next; /* for hash table */
  131. union {
  132. struct pppoe_opt pppoe;
  133. } proto;
  134. __be16 num;
  135. };
  136. #define pppoe_dev proto.pppoe.dev
  137. #define pppoe_ifindex proto.pppoe.ifindex
  138. #define pppoe_pa proto.pppoe.pa
  139. #define pppoe_relay proto.pppoe.relay
  140. static inline struct pppox_sock *pppox_sk(struct sock *sk)
  141. {
  142. return (struct pppox_sock *)sk;
  143. }
  144. static inline struct sock *sk_pppox(struct pppox_sock *po)
  145. {
  146. return (struct sock *)po;
  147. }
  148. struct module;
  149. struct pppox_proto {
  150. int (*create)(struct net *net, struct socket *sock);
  151. int (*ioctl)(struct socket *sock, unsigned int cmd,
  152. unsigned long arg);
  153. struct module *owner;
  154. };
  155. extern int register_pppox_proto(int proto_num, struct pppox_proto *pp);
  156. extern void unregister_pppox_proto(int proto_num);
  157. extern void pppox_unbind_sock(struct sock *sk);/* delete ppp-channel binding */
  158. extern int pppox_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg);
  159. /* PPPoX socket states */
  160. enum {
  161. PPPOX_NONE = 0, /* initial state */
  162. PPPOX_CONNECTED = 1, /* connection established ==TCP_ESTABLISHED */
  163. PPPOX_BOUND = 2, /* bound to ppp device */
  164. PPPOX_RELAY = 4, /* forwarding is enabled */
  165. PPPOX_ZOMBIE = 8, /* dead, but still bound to ppp device */
  166. PPPOX_DEAD = 16 /* dead, useless, please clean me up!*/
  167. };
  168. #endif /* __KERNEL__ */
  169. #endif /* !(__LINUX_IF_PPPOX_H) */