blob: 5a27abd5df2080fa063a03f64a4f8be766f0d414 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/***************************************************************************
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
16#ifndef __LINUX_IF_PPPOX_H
17#define __LINUX_IF_PPPOX_H
18
19
Jaswinder Singh Rajput00bfdda2009-01-15 13:51:26 -080020#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/byteorder.h>
22
Ben Hutchingsbcb949b2011-08-24 18:43:55 +000023#include <linux/socket.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/if_ether.h>
Ben Hutchings22ad72b2011-08-24 18:40:48 +000025#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/if.h>
27#include <linux/netdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/ppp_channel.h>
29#endif /* __KERNEL__ */
James Chapmancf14a4d2007-06-27 15:43:43 -070030#include <linux/if_pppol2tp.h>
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +080031#include <linux/if_pppolac.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33/* For user-space programs to pick up these definitions
34 * which they wouldn't get otherwise without defining __KERNEL__
35 */
36#ifndef AF_PPPOX
37#define AF_PPPOX 24
38#define PF_PPPOX AF_PPPOX
39#endif /* !(AF_PPPOX) */
40
41/************************************************************************
42 * PPPoE addressing definition
43 */
Al Virob963dc12007-08-23 02:55:33 -040044typedef __be16 sid_t;
Dmitry Kozlov00959ad2010-08-21 23:05:39 -070045struct pppoe_addr {
46 sid_t sid; /* Session identifier */
47 unsigned char remote[ETH_ALEN]; /* Remote address */
48 char dev[IFNAMSIZ]; /* Local device to use */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049};
50
51/************************************************************************
Dmitry Kozlov00959ad2010-08-21 23:05:39 -070052 * PPTP addressing definition
53 */
54struct pptp_addr {
Changli Gaod8287fc2010-08-22 18:37:27 -070055 __be16 call_id;
56 struct in_addr sin_addr;
Dmitry Kozlov00959ad2010-08-21 23:05:39 -070057};
58
59/************************************************************************
60 * Protocols supported by AF_PPPOX
61 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#define PX_PROTO_OE 0 /* Currently just PPPoE */
James Chapmancf14a4d2007-06-27 15:43:43 -070063#define PX_PROTO_OL2TP 1 /* Now L2TP also */
Dmitry Kozlov00959ad2010-08-21 23:05:39 -070064#define PX_PROTO_PPTP 2
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +080065#define PX_PROTO_OLAC 3
66#define PX_MAX_PROTO 4
James Chapmancf14a4d2007-06-27 15:43:43 -070067
Dmitry Kozlov00959ad2010-08-21 23:05:39 -070068struct sockaddr_pppox {
Ben Hutchingsbcb949b2011-08-24 18:43:55 +000069 __kernel_sa_family_t sa_family; /* address family, AF_PPPOX */
Dmitry Kozlov00959ad2010-08-21 23:05:39 -070070 unsigned int sa_protocol; /* protocol identifier */
71 union {
72 struct pppoe_addr pppoe;
73 struct pptp_addr pptp;
74 } sa_addr;
Changli Gao09cd2b92010-08-22 17:25:05 +000075} __attribute__((packed));
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
James Chapmancf14a4d2007-06-27 15:43:43 -070077/* The use of the above union isn't viable because the size of this
78 * struct must stay fixed over time -- applications use sizeof(struct
79 * sockaddr_pppox) to fill it. We use a protocol specific sockaddr
80 * type instead.
81 */
82struct sockaddr_pppol2tp {
Ben Hutchingsbcb949b2011-08-24 18:43:55 +000083 __kernel_sa_family_t sa_family; /* address family, AF_PPPOX */
James Chapmancf14a4d2007-06-27 15:43:43 -070084 unsigned int sa_protocol; /* protocol identifier */
85 struct pppol2tp_addr pppol2tp;
Changli Gao09cd2b92010-08-22 17:25:05 +000086} __attribute__((packed));
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
James Chapmane0d44352010-04-02 06:18:54 +000088/* The L2TPv3 protocol changes tunnel and session ids from 16 to 32
89 * bits. So we need a different sockaddr structure.
90 */
91struct sockaddr_pppol2tpv3 {
Ben Hutchingsbcb949b2011-08-24 18:43:55 +000092 __kernel_sa_family_t sa_family; /* address family, AF_PPPOX */
James Chapmane0d44352010-04-02 06:18:54 +000093 unsigned int sa_protocol; /* protocol identifier */
94 struct pppol2tpv3_addr pppol2tp;
Changli Gao09cd2b92010-08-22 17:25:05 +000095} __attribute__((packed));
James Chapmane0d44352010-04-02 06:18:54 +000096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/*********************************************************************
98 *
99 * ioctl interface for defining forwarding of connections
100 *
101 ********************************************************************/
102
103#define PPPOEIOCSFWD _IOW(0xB1 ,0, size_t)
104#define PPPOEIOCDFWD _IO(0xB1 ,1)
105/*#define PPPOEIOCGFWD _IOWR(0xB1,2, size_t)*/
106
107/* Codes to identify message types */
108#define PADI_CODE 0x09
109#define PADO_CODE 0x07
110#define PADR_CODE 0x19
111#define PADS_CODE 0x65
112#define PADT_CODE 0xa7
113struct pppoe_tag {
Al Virob963dc12007-08-23 02:55:33 -0400114 __be16 tag_type;
115 __be16 tag_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 char tag_data[0];
Changli Gao09cd2b92010-08-22 17:25:05 +0000117} __attribute__ ((packed));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119/* Tag identifiers */
Harvey Harrisonf3a7c662009-02-14 22:58:35 -0800120#define PTT_EOL __cpu_to_be16(0x0000)
121#define PTT_SRV_NAME __cpu_to_be16(0x0101)
122#define PTT_AC_NAME __cpu_to_be16(0x0102)
123#define PTT_HOST_UNIQ __cpu_to_be16(0x0103)
124#define PTT_AC_COOKIE __cpu_to_be16(0x0104)
125#define PTT_VENDOR __cpu_to_be16(0x0105)
126#define PTT_RELAY_SID __cpu_to_be16(0x0110)
127#define PTT_SRV_ERR __cpu_to_be16(0x0201)
128#define PTT_SYS_ERR __cpu_to_be16(0x0202)
129#define PTT_GEN_ERR __cpu_to_be16(0x0203)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131struct pppoe_hdr {
132#if defined(__LITTLE_ENDIAN_BITFIELD)
133 __u8 ver : 4;
134 __u8 type : 4;
135#elif defined(__BIG_ENDIAN_BITFIELD)
136 __u8 type : 4;
137 __u8 ver : 4;
138#else
139#error "Please fix <asm/byteorder.h>"
140#endif
141 __u8 code;
Al Virob963dc12007-08-23 02:55:33 -0400142 __be16 sid;
143 __be16 length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 struct pppoe_tag tag[0];
Changli Gao09cd2b92010-08-22 17:25:05 +0000145} __attribute__((packed));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Michael Milner516299d2007-04-12 22:14:23 -0700147/* Length of entire PPPoE + PPP header */
148#define PPPOE_SES_HLEN 8
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#ifdef __KERNEL__
Arnaldo Carvalho de Melo797659f2007-03-10 15:56:08 -0300151#include <linux/skbuff.h>
152
153static inline struct pppoe_hdr *pppoe_hdr(const struct sk_buff *skb)
154{
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700155 return (struct pppoe_hdr *)skb_network_header(skb);
Arnaldo Carvalho de Melo797659f2007-03-10 15:56:08 -0300156}
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158struct pppoe_opt {
159 struct net_device *dev; /* device associated with socket*/
Florian Zumbiehl6f30e182007-03-04 16:03:22 -0800160 int ifindex; /* ifindex of device associated with socket */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 struct pppoe_addr pa; /* what this socket is bound to*/
162 struct sockaddr_pppox relay; /* what socket data will be
163 relayed to (PPPoE relaying) */
164};
165
Dmitry Kozlov00959ad2010-08-21 23:05:39 -0700166struct pptp_opt {
167 struct pptp_addr src_addr;
168 struct pptp_addr dst_addr;
169 u32 ack_sent, ack_recv;
170 u32 seq_sent, seq_recv;
171 int ppp_flags;
172};
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800173
174struct pppolac_opt {
175 __u32 local;
176 __u32 remote;
177 __u16 sequence;
178 __u8 sequencing;
179};
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181#include <net/sock.h>
182
183struct pppox_sock {
184 /* struct sock must be the first member of pppox_sock */
Dmitry Kozlov00959ad2010-08-21 23:05:39 -0700185 struct sock sk;
186 struct ppp_channel chan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 struct pppox_sock *next; /* for hash table */
188 union {
189 struct pppoe_opt pppoe;
Dmitry Kozlov00959ad2010-08-21 23:05:39 -0700190 struct pptp_opt pptp;
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800191 struct pppolac_opt lac;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 } proto;
Al Virob963dc12007-08-23 02:55:33 -0400193 __be16 num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194};
195#define pppoe_dev proto.pppoe.dev
Florian Zumbiehl6f30e182007-03-04 16:03:22 -0800196#define pppoe_ifindex proto.pppoe.ifindex
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197#define pppoe_pa proto.pppoe.pa
198#define pppoe_relay proto.pppoe.relay
199
200static inline struct pppox_sock *pppox_sk(struct sock *sk)
201{
202 return (struct pppox_sock *)sk;
203}
204
205static inline struct sock *sk_pppox(struct pppox_sock *po)
206{
207 return (struct sock *)po;
208}
209
210struct module;
211
212struct pppox_proto {
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700213 int (*create)(struct net *net, struct socket *sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 int (*ioctl)(struct socket *sock, unsigned int cmd,
215 unsigned long arg);
216 struct module *owner;
217};
218
Eric Dumazet756e64a2010-09-21 06:43:54 +0000219extern int register_pppox_proto(int proto_num, const struct pppox_proto *pp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220extern void unregister_pppox_proto(int proto_num);
221extern void pppox_unbind_sock(struct sock *sk);/* delete ppp-channel binding */
David S. Miller17ba15f2005-12-27 20:57:40 -0800222extern int pppox_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224/* PPPoX socket states */
225enum {
226 PPPOX_NONE = 0, /* initial state */
227 PPPOX_CONNECTED = 1, /* connection established ==TCP_ESTABLISHED */
228 PPPOX_BOUND = 2, /* bound to ppp device */
229 PPPOX_RELAY = 4, /* forwarding is enabled */
230 PPPOX_ZOMBIE = 8, /* dead, but still bound to ppp device */
231 PPPOX_DEAD = 16 /* dead, useless, please clean me up!*/
232};
233
234#endif /* __KERNEL__ */
235
236#endif /* !(__LINUX_IF_PPPOX_H) */