1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16#ifndef __LINUX_IF_PPPOX_H
17#define __LINUX_IF_PPPOX_H
18
19
20#include <linux/types.h>
21#include <asm/byteorder.h>
22
23#include <linux/socket.h>
24#include <linux/if_ether.h>
25#ifdef __KERNEL__
26#include <linux/if.h>
27#include <linux/netdevice.h>
28#include <linux/ppp_channel.h>
29#endif
30#include <linux/if_pppol2tp.h>
31
32
33
34
35#ifndef AF_PPPOX
36#define AF_PPPOX 24
37#define PF_PPPOX AF_PPPOX
38#endif
39
40
41
42
43typedef __be16 sid_t;
44struct pppoe_addr {
45 sid_t sid;
46 unsigned char remote[ETH_ALEN];
47 char dev[IFNAMSIZ];
48};
49
50
51
52
53struct pptp_addr {
54 __be16 call_id;
55 struct in_addr sin_addr;
56};
57
58
59
60
61#define PX_PROTO_OE 0
62#define PX_PROTO_OL2TP 1
63#define PX_PROTO_PPTP 2
64#define PX_MAX_PROTO 3
65
66struct sockaddr_pppox {
67 __kernel_sa_family_t sa_family;
68 unsigned int sa_protocol;
69 union {
70 struct pppoe_addr pppoe;
71 struct pptp_addr pptp;
72 } sa_addr;
73} __packed;
74
75
76
77
78
79
80struct sockaddr_pppol2tp {
81 __kernel_sa_family_t sa_family;
82 unsigned int sa_protocol;
83 struct pppol2tp_addr pppol2tp;
84} __packed;
85
86struct sockaddr_pppol2tpin6 {
87 __kernel_sa_family_t sa_family;
88 unsigned int sa_protocol;
89 struct pppol2tpin6_addr pppol2tp;
90} __packed;
91
92
93
94
95struct sockaddr_pppol2tpv3 {
96 __kernel_sa_family_t sa_family;
97 unsigned int sa_protocol;
98 struct pppol2tpv3_addr pppol2tp;
99} __packed;
100
101struct sockaddr_pppol2tpv3in6 {
102 __kernel_sa_family_t sa_family;
103 unsigned int sa_protocol;
104 struct pppol2tpv3in6_addr pppol2tp;
105} __packed;
106
107
108
109
110
111
112
113#define PPPOEIOCSFWD _IOW(0xB1 ,0, size_t)
114#define PPPOEIOCDFWD _IO(0xB1 ,1)
115
116
117
118#define PADI_CODE 0x09
119#define PADO_CODE 0x07
120#define PADR_CODE 0x19
121#define PADS_CODE 0x65
122#define PADT_CODE 0xa7
123struct pppoe_tag {
124 __be16 tag_type;
125 __be16 tag_len;
126 char tag_data[0];
127} __attribute__ ((packed));
128
129
130#define PTT_EOL __cpu_to_be16(0x0000)
131#define PTT_SRV_NAME __cpu_to_be16(0x0101)
132#define PTT_AC_NAME __cpu_to_be16(0x0102)
133#define PTT_HOST_UNIQ __cpu_to_be16(0x0103)
134#define PTT_AC_COOKIE __cpu_to_be16(0x0104)
135#define PTT_VENDOR __cpu_to_be16(0x0105)
136#define PTT_RELAY_SID __cpu_to_be16(0x0110)
137#define PTT_SRV_ERR __cpu_to_be16(0x0201)
138#define PTT_SYS_ERR __cpu_to_be16(0x0202)
139#define PTT_GEN_ERR __cpu_to_be16(0x0203)
140
141struct pppoe_hdr {
142#if defined(__LITTLE_ENDIAN_BITFIELD)
143 __u8 ver : 4;
144 __u8 type : 4;
145#elif defined(__BIG_ENDIAN_BITFIELD)
146 __u8 type : 4;
147 __u8 ver : 4;
148#else
149#error "Please fix <asm/byteorder.h>"
150#endif
151 __u8 code;
152 __be16 sid;
153 __be16 length;
154 struct pppoe_tag tag[0];
155} __packed;
156
157
158#define PPPOE_SES_HLEN 8
159
160#ifdef __KERNEL__
161#include <linux/skbuff.h>
162
163static inline struct pppoe_hdr *pppoe_hdr(const struct sk_buff *skb)
164{
165 return (struct pppoe_hdr *)skb_network_header(skb);
166}
167
168struct pppoe_opt {
169 struct net_device *dev;
170 int ifindex;
171 struct pppoe_addr pa;
172 struct sockaddr_pppox relay;
173
174};
175
176struct pptp_opt {
177 struct pptp_addr src_addr;
178 struct pptp_addr dst_addr;
179 u32 ack_sent, ack_recv;
180 u32 seq_sent, seq_recv;
181 int ppp_flags;
182};
183#include <net/sock.h>
184
185struct pppox_sock {
186
187 struct sock sk;
188 struct ppp_channel chan;
189 struct pppox_sock *next;
190 union {
191 struct pppoe_opt pppoe;
192 struct pptp_opt pptp;
193 } proto;
194 __be16 num;
195};
196#define pppoe_dev proto.pppoe.dev
197#define pppoe_ifindex proto.pppoe.ifindex
198#define pppoe_pa proto.pppoe.pa
199#define pppoe_relay proto.pppoe.relay
200
201static inline struct pppox_sock *pppox_sk(struct sock *sk)
202{
203 return (struct pppox_sock *)sk;
204}
205
206static inline struct sock *sk_pppox(struct pppox_sock *po)
207{
208 return (struct sock *)po;
209}
210
211struct module;
212
213struct pppox_proto {
214 int (*create)(struct net *net, struct socket *sock);
215 int (*ioctl)(struct socket *sock, unsigned int cmd,
216 unsigned long arg);
217 struct module *owner;
218};
219
220extern int register_pppox_proto(int proto_num, const struct pppox_proto *pp);
221extern void unregister_pppox_proto(int proto_num);
222extern void pppox_unbind_sock(struct sock *sk);
223extern int pppox_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg);
224
225
226enum {
227 PPPOX_NONE = 0,
228 PPPOX_CONNECTED = 1,
229 PPPOX_BOUND = 2,
230 PPPOX_RELAY = 4,
231 PPPOX_ZOMBIE = 8,
232 PPPOX_DEAD = 16
233};
234
235#endif
236
237#endif
238