net: add PPP on PPTP Network Server (PPPoPNS) driver.
[firefly-linux-kernel-4.4.55.git] / include / linux / if_pppox.h
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
18 #include <linux/if.h>
19 #include <linux/netdevice.h>
20 #include <linux/ppp_channel.h>
21 #include <linux/skbuff.h>
22 #include <linux/workqueue.h>
23 #include <uapi/linux/if_pppox.h>
24
25 static inline struct pppoe_hdr *pppoe_hdr(const struct sk_buff *skb)
26 {
27         return (struct pppoe_hdr *)skb_network_header(skb);
28 }
29
30 struct pppoe_opt {
31         struct net_device      *dev;      /* device associated with socket*/
32         int                     ifindex;  /* ifindex of device associated with socket */
33         struct pppoe_addr       pa;       /* what this socket is bound to*/
34         struct sockaddr_pppox   relay;    /* what socket data will be
35                                              relayed to (PPPoE relaying) */
36         struct work_struct      padt_work;/* Work item for handling PADT */
37 };
38
39 struct pptp_opt {
40         struct pptp_addr src_addr;
41         struct pptp_addr dst_addr;
42         u32 ack_sent, ack_recv;
43         u32 seq_sent, seq_recv;
44         int ppp_flags;
45 };
46
47 struct pppolac_opt {
48         __u32   local;
49         __u32   remote;
50         __u16   sequence;
51         __u8    sequencing;
52 };
53
54 struct pppopns_opt {
55         __u16   local;
56         __u16   remote;
57         __u32   sequence;
58 };
59
60 #include <net/sock.h>
61
62 struct pppox_sock {
63         /* struct sock must be the first member of pppox_sock */
64         struct sock sk;
65         struct ppp_channel chan;
66         struct pppox_sock       *next;    /* for hash table */
67         union {
68                 struct pppoe_opt pppoe;
69                 struct pptp_opt  pptp;
70                 struct pppolac_opt lac;
71                 struct pppopns_opt pns;
72         } proto;
73         __be16                  num;
74 };
75 #define pppoe_dev       proto.pppoe.dev
76 #define pppoe_ifindex   proto.pppoe.ifindex
77 #define pppoe_pa        proto.pppoe.pa
78 #define pppoe_relay     proto.pppoe.relay
79
80 static inline struct pppox_sock *pppox_sk(struct sock *sk)
81 {
82         return (struct pppox_sock *)sk;
83 }
84
85 static inline struct sock *sk_pppox(struct pppox_sock *po)
86 {
87         return (struct sock *)po;
88 }
89
90 struct module;
91
92 struct pppox_proto {
93         int             (*create)(struct net *net, struct socket *sock, int kern);
94         int             (*ioctl)(struct socket *sock, unsigned int cmd,
95                                  unsigned long arg);
96         struct module   *owner;
97 };
98
99 extern int register_pppox_proto(int proto_num, const struct pppox_proto *pp);
100 extern void unregister_pppox_proto(int proto_num);
101 extern void pppox_unbind_sock(struct sock *sk);/* delete ppp-channel binding */
102 extern int pppox_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg);
103
104 /* PPPoX socket states */
105 enum {
106     PPPOX_NONE          = 0,  /* initial state */
107     PPPOX_CONNECTED     = 1,  /* connection established ==TCP_ESTABLISHED */
108     PPPOX_BOUND         = 2,  /* bound to ppp device */
109     PPPOX_RELAY         = 4,  /* forwarding is enabled */
110     PPPOX_ZOMBIE        = 8,  /* dead, but still bound to ppp device */
111     PPPOX_DEAD          = 16  /* dead, useless, please clean me up!*/
112 };
113
114 #endif /* !(__LINUX_IF_PPPOX_H) */