1fd558d18SJames Chapman /***************************************************************************** 2fd558d18SJames Chapman * Linux PPP over L2TP (PPPoX/PPPoL2TP) Sockets 3fd558d18SJames Chapman * 4fd558d18SJames Chapman * PPPoX --- Generic PPP encapsulation socket family 5fd558d18SJames Chapman * PPPoL2TP --- PPP over L2TP (RFC 2661) 6fd558d18SJames Chapman * 7fd558d18SJames Chapman * Version: 2.0.0 8fd558d18SJames Chapman * 9fd558d18SJames Chapman * Authors: James Chapman (jchapman@katalix.com) 10fd558d18SJames Chapman * 11fd558d18SJames Chapman * Based on original work by Martijn van Oosterhout <kleptog@svana.org> 12fd558d18SJames Chapman * 13fd558d18SJames Chapman * License: 14fd558d18SJames Chapman * This program is free software; you can redistribute it and/or 15fd558d18SJames Chapman * modify it under the terms of the GNU General Public License 16fd558d18SJames Chapman * as published by the Free Software Foundation; either version 17fd558d18SJames Chapman * 2 of the License, or (at your option) any later version. 18fd558d18SJames Chapman * 19fd558d18SJames Chapman */ 20fd558d18SJames Chapman 21fd558d18SJames Chapman /* This driver handles only L2TP data frames; control frames are handled by a 22fd558d18SJames Chapman * userspace application. 23fd558d18SJames Chapman * 24fd558d18SJames Chapman * To send data in an L2TP session, userspace opens a PPPoL2TP socket and 25fd558d18SJames Chapman * attaches it to a bound UDP socket with local tunnel_id / session_id and 26fd558d18SJames Chapman * peer tunnel_id / session_id set. Data can then be sent or received using 27fd558d18SJames Chapman * regular socket sendmsg() / recvmsg() calls. Kernel parameters of the socket 28fd558d18SJames Chapman * can be read or modified using ioctl() or [gs]etsockopt() calls. 29fd558d18SJames Chapman * 30fd558d18SJames Chapman * When a PPPoL2TP socket is connected with local and peer session_id values 31fd558d18SJames Chapman * zero, the socket is treated as a special tunnel management socket. 32fd558d18SJames Chapman * 33fd558d18SJames Chapman * Here's example userspace code to create a socket for sending/receiving data 34fd558d18SJames Chapman * over an L2TP session:- 35fd558d18SJames Chapman * 36fd558d18SJames Chapman * struct sockaddr_pppol2tp sax; 37fd558d18SJames Chapman * int fd; 38fd558d18SJames Chapman * int session_fd; 39fd558d18SJames Chapman * 40fd558d18SJames Chapman * fd = socket(AF_PPPOX, SOCK_DGRAM, PX_PROTO_OL2TP); 41fd558d18SJames Chapman * 42fd558d18SJames Chapman * sax.sa_family = AF_PPPOX; 43fd558d18SJames Chapman * sax.sa_protocol = PX_PROTO_OL2TP; 44fd558d18SJames Chapman * sax.pppol2tp.fd = tunnel_fd; // bound UDP socket 45fd558d18SJames Chapman * sax.pppol2tp.addr.sin_addr.s_addr = addr->sin_addr.s_addr; 46fd558d18SJames Chapman * sax.pppol2tp.addr.sin_port = addr->sin_port; 47fd558d18SJames Chapman * sax.pppol2tp.addr.sin_family = AF_INET; 48fd558d18SJames Chapman * sax.pppol2tp.s_tunnel = tunnel_id; 49fd558d18SJames Chapman * sax.pppol2tp.s_session = session_id; 50fd558d18SJames Chapman * sax.pppol2tp.d_tunnel = peer_tunnel_id; 51fd558d18SJames Chapman * sax.pppol2tp.d_session = peer_session_id; 52fd558d18SJames Chapman * 53fd558d18SJames Chapman * session_fd = connect(fd, (struct sockaddr *)&sax, sizeof(sax)); 54fd558d18SJames Chapman * 55fd558d18SJames Chapman * A pppd plugin that allows PPP traffic to be carried over L2TP using 56fd558d18SJames Chapman * this driver is available from the OpenL2TP project at 57fd558d18SJames Chapman * http://openl2tp.sourceforge.net. 58fd558d18SJames Chapman */ 59fd558d18SJames Chapman 60a4ca44faSJoe Perches #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 61a4ca44faSJoe Perches 62fd558d18SJames Chapman #include <linux/module.h> 63fd558d18SJames Chapman #include <linux/string.h> 64fd558d18SJames Chapman #include <linux/list.h> 65fd558d18SJames Chapman #include <linux/uaccess.h> 66fd558d18SJames Chapman 67fd558d18SJames Chapman #include <linux/kernel.h> 68fd558d18SJames Chapman #include <linux/spinlock.h> 69fd558d18SJames Chapman #include <linux/kthread.h> 70fd558d18SJames Chapman #include <linux/sched.h> 71fd558d18SJames Chapman #include <linux/slab.h> 72fd558d18SJames Chapman #include <linux/errno.h> 73fd558d18SJames Chapman #include <linux/jiffies.h> 74fd558d18SJames Chapman 75fd558d18SJames Chapman #include <linux/netdevice.h> 76fd558d18SJames Chapman #include <linux/net.h> 77fd558d18SJames Chapman #include <linux/inetdevice.h> 78fd558d18SJames Chapman #include <linux/skbuff.h> 79fd558d18SJames Chapman #include <linux/init.h> 80fd558d18SJames Chapman #include <linux/ip.h> 81fd558d18SJames Chapman #include <linux/udp.h> 82fd558d18SJames Chapman #include <linux/if_pppox.h> 83fd558d18SJames Chapman #include <linux/if_pppol2tp.h> 84fd558d18SJames Chapman #include <net/sock.h> 85fd558d18SJames Chapman #include <linux/ppp_channel.h> 86fd558d18SJames Chapman #include <linux/ppp_defs.h> 874b32da2bSPaul Mackerras #include <linux/ppp-ioctl.h> 88fd558d18SJames Chapman #include <linux/file.h> 89fd558d18SJames Chapman #include <linux/hash.h> 90fd558d18SJames Chapman #include <linux/sort.h> 91fd558d18SJames Chapman #include <linux/proc_fs.h> 92309795f4SJames Chapman #include <linux/l2tp.h> 93fd558d18SJames Chapman #include <linux/nsproxy.h> 94fd558d18SJames Chapman #include <net/net_namespace.h> 95fd558d18SJames Chapman #include <net/netns/generic.h> 96fd558d18SJames Chapman #include <net/dst.h> 97fd558d18SJames Chapman #include <net/ip.h> 98fd558d18SJames Chapman #include <net/udp.h> 99fd558d18SJames Chapman #include <net/xfrm.h> 100cf2f5c88STom Parkin #include <net/inet_common.h> 101fd558d18SJames Chapman 102fd558d18SJames Chapman #include <asm/byteorder.h> 10360063497SArun Sharma #include <linux/atomic.h> 104fd558d18SJames Chapman 105fd558d18SJames Chapman #include "l2tp_core.h" 106fd558d18SJames Chapman 107fd558d18SJames Chapman #define PPPOL2TP_DRV_VERSION "V2.0" 108fd558d18SJames Chapman 109fd558d18SJames Chapman /* Space for UDP, L2TP and PPP headers */ 110fd558d18SJames Chapman #define PPPOL2TP_HEADER_OVERHEAD 40 111fd558d18SJames Chapman 112fd558d18SJames Chapman /* Number of bytes to build transmit L2TP headers. 113fd558d18SJames Chapman * Unfortunately the size is different depending on whether sequence numbers 114fd558d18SJames Chapman * are enabled. 115fd558d18SJames Chapman */ 116fd558d18SJames Chapman #define PPPOL2TP_L2TP_HDR_SIZE_SEQ 10 117fd558d18SJames Chapman #define PPPOL2TP_L2TP_HDR_SIZE_NOSEQ 6 118fd558d18SJames Chapman 119fd558d18SJames Chapman /* Private data of each session. This data lives at the end of struct 120fd558d18SJames Chapman * l2tp_session, referenced via session->priv[]. 121fd558d18SJames Chapman */ 122fd558d18SJames Chapman struct pppol2tp_session { 123fd558d18SJames Chapman int owner; /* pid that opened the socket */ 124fd558d18SJames Chapman 125ee40fb2eSGuillaume Nault struct mutex sk_lock; /* Protects .sk */ 126ee40fb2eSGuillaume Nault struct sock __rcu *sk; /* Pointer to the session 127fd558d18SJames Chapman * PPPoX socket */ 128ee40fb2eSGuillaume Nault struct sock *__sk; /* Copy of .sk, for cleanup */ 129ee40fb2eSGuillaume Nault struct rcu_head rcu; /* For asynchronous release */ 130fd558d18SJames Chapman struct sock *tunnel_sock; /* Pointer to the tunnel UDP 131fd558d18SJames Chapman * socket */ 132fd558d18SJames Chapman int flags; /* accessed by PPPIOCGFLAGS. 133fd558d18SJames Chapman * Unused. */ 134fd558d18SJames Chapman }; 135fd558d18SJames Chapman 136fd558d18SJames Chapman static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb); 137fd558d18SJames Chapman 138d7100da0Sstephen hemminger static const struct ppp_channel_ops pppol2tp_chan_ops = { 139d7100da0Sstephen hemminger .start_xmit = pppol2tp_xmit, 140d7100da0Sstephen hemminger }; 141d7100da0Sstephen hemminger 142fd558d18SJames Chapman static const struct proto_ops pppol2tp_ops; 143fd558d18SJames Chapman 144ee40fb2eSGuillaume Nault /* Retrieves the pppol2tp socket associated to a session. 145ee40fb2eSGuillaume Nault * A reference is held on the returned socket, so this function must be paired 146ee40fb2eSGuillaume Nault * with sock_put(). 147ee40fb2eSGuillaume Nault */ 148ee40fb2eSGuillaume Nault static struct sock *pppol2tp_session_get_sock(struct l2tp_session *session) 149ee40fb2eSGuillaume Nault { 150ee40fb2eSGuillaume Nault struct pppol2tp_session *ps = l2tp_session_priv(session); 151ee40fb2eSGuillaume Nault struct sock *sk; 152ee40fb2eSGuillaume Nault 153ee40fb2eSGuillaume Nault rcu_read_lock(); 154ee40fb2eSGuillaume Nault sk = rcu_dereference(ps->sk); 155ee40fb2eSGuillaume Nault if (sk) 156ee40fb2eSGuillaume Nault sock_hold(sk); 157ee40fb2eSGuillaume Nault rcu_read_unlock(); 158ee40fb2eSGuillaume Nault 159ee40fb2eSGuillaume Nault return sk; 160ee40fb2eSGuillaume Nault } 161ee40fb2eSGuillaume Nault 162fd558d18SJames Chapman /* Helpers to obtain tunnel/session contexts from sockets. 163fd558d18SJames Chapman */ 164fd558d18SJames Chapman static inline struct l2tp_session *pppol2tp_sock_to_session(struct sock *sk) 165fd558d18SJames Chapman { 166fd558d18SJames Chapman struct l2tp_session *session; 167fd558d18SJames Chapman 168fd558d18SJames Chapman if (sk == NULL) 169fd558d18SJames Chapman return NULL; 170fd558d18SJames Chapman 171fd558d18SJames Chapman sock_hold(sk); 172fd558d18SJames Chapman session = (struct l2tp_session *)(sk->sk_user_data); 173fd558d18SJames Chapman if (session == NULL) { 174fd558d18SJames Chapman sock_put(sk); 175fd558d18SJames Chapman goto out; 176fd558d18SJames Chapman } 177fd558d18SJames Chapman 178fd558d18SJames Chapman BUG_ON(session->magic != L2TP_SESSION_MAGIC); 179fd558d18SJames Chapman 180fd558d18SJames Chapman out: 181fd558d18SJames Chapman return session; 182fd558d18SJames Chapman } 183fd558d18SJames Chapman 184fd558d18SJames Chapman /***************************************************************************** 185fd558d18SJames Chapman * Receive data handling 186fd558d18SJames Chapman *****************************************************************************/ 187fd558d18SJames Chapman 188fd558d18SJames Chapman static int pppol2tp_recv_payload_hook(struct sk_buff *skb) 189fd558d18SJames Chapman { 190fd558d18SJames Chapman /* Skip PPP header, if present. In testing, Microsoft L2TP clients 191fd558d18SJames Chapman * don't send the PPP header (PPP header compression enabled), but 192fd558d18SJames Chapman * other clients can include the header. So we cope with both cases 193fd558d18SJames Chapman * here. The PPP header is always FF03 when using L2TP. 194fd558d18SJames Chapman * 195fd558d18SJames Chapman * Note that skb->data[] isn't dereferenced from a u16 ptr here since 196fd558d18SJames Chapman * the field may be unaligned. 197fd558d18SJames Chapman */ 198fd558d18SJames Chapman if (!pskb_may_pull(skb, 2)) 199fd558d18SJames Chapman return 1; 200fd558d18SJames Chapman 20154c151d9SGao Feng if ((skb->data[0] == PPP_ALLSTATIONS) && (skb->data[1] == PPP_UI)) 202fd558d18SJames Chapman skb_pull(skb, 2); 203fd558d18SJames Chapman 204fd558d18SJames Chapman return 0; 205fd558d18SJames Chapman } 206fd558d18SJames Chapman 207fd558d18SJames Chapman /* Receive message. This is the recvmsg for the PPPoL2TP socket. 208fd558d18SJames Chapman */ 2091b784140SYing Xue static int pppol2tp_recvmsg(struct socket *sock, struct msghdr *msg, 2101b784140SYing Xue size_t len, int flags) 211fd558d18SJames Chapman { 212fd558d18SJames Chapman int err; 213fd558d18SJames Chapman struct sk_buff *skb; 214fd558d18SJames Chapman struct sock *sk = sock->sk; 215fd558d18SJames Chapman 216fd558d18SJames Chapman err = -EIO; 217fd558d18SJames Chapman if (sk->sk_state & PPPOX_BOUND) 218fd558d18SJames Chapman goto end; 219fd558d18SJames Chapman 220fd558d18SJames Chapman err = 0; 221fd558d18SJames Chapman skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT, 222fd558d18SJames Chapman flags & MSG_DONTWAIT, &err); 223fd558d18SJames Chapman if (!skb) 224fd558d18SJames Chapman goto end; 225fd558d18SJames Chapman 226fd558d18SJames Chapman if (len > skb->len) 227fd558d18SJames Chapman len = skb->len; 228fd558d18SJames Chapman else if (len < skb->len) 229fd558d18SJames Chapman msg->msg_flags |= MSG_TRUNC; 230fd558d18SJames Chapman 23151f3d02bSDavid S. Miller err = skb_copy_datagram_msg(skb, 0, msg, len); 232fd558d18SJames Chapman if (likely(err == 0)) 233fd558d18SJames Chapman err = len; 234fd558d18SJames Chapman 235fd558d18SJames Chapman kfree_skb(skb); 236fd558d18SJames Chapman end: 237fd558d18SJames Chapman return err; 238fd558d18SJames Chapman } 239fd558d18SJames Chapman 240fd558d18SJames Chapman static void pppol2tp_recv(struct l2tp_session *session, struct sk_buff *skb, int data_len) 241fd558d18SJames Chapman { 242fd558d18SJames Chapman struct pppol2tp_session *ps = l2tp_session_priv(session); 243fd558d18SJames Chapman struct sock *sk = NULL; 244fd558d18SJames Chapman 245fd558d18SJames Chapman /* If the socket is bound, send it in to PPP's input queue. Otherwise 246fd558d18SJames Chapman * queue it on the session socket. 247fd558d18SJames Chapman */ 248ee40fb2eSGuillaume Nault rcu_read_lock(); 249ee40fb2eSGuillaume Nault sk = rcu_dereference(ps->sk); 250fd558d18SJames Chapman if (sk == NULL) 251fd558d18SJames Chapman goto no_sock; 252fd558d18SJames Chapman 253fd558d18SJames Chapman if (sk->sk_state & PPPOX_BOUND) { 254fd558d18SJames Chapman struct pppox_sock *po; 25598f40b3eSGuillaume Nault 256fba40c63SAsbjørn Sloth Tønnesen l2tp_dbg(session, L2TP_MSG_DATA, 257fd558d18SJames Chapman "%s: recv %d byte data frame, passing to ppp\n", 258fd558d18SJames Chapman session->name, data_len); 259fd558d18SJames Chapman 260fd558d18SJames Chapman po = pppox_sk(sk); 261fd558d18SJames Chapman ppp_input(&po->chan, skb); 262fd558d18SJames Chapman } else { 263fba40c63SAsbjørn Sloth Tønnesen l2tp_dbg(session, L2TP_MSG_DATA, 2649e9cb622SGuillaume Nault "%s: recv %d byte data frame, passing to L2TP socket\n", 2659e9cb622SGuillaume Nault session->name, data_len); 266fd558d18SJames Chapman 2679e9cb622SGuillaume Nault if (sock_queue_rcv_skb(sk, skb) < 0) { 2687b7c0719STom Parkin atomic_long_inc(&session->stats.rx_errors); 269fd558d18SJames Chapman kfree_skb(skb); 270fd558d18SJames Chapman } 2719e9cb622SGuillaume Nault } 272ee40fb2eSGuillaume Nault rcu_read_unlock(); 273fd558d18SJames Chapman 274fd558d18SJames Chapman return; 275fd558d18SJames Chapman 276fd558d18SJames Chapman no_sock: 277ee40fb2eSGuillaume Nault rcu_read_unlock(); 278fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_DATA, "%s: no socket\n", session->name); 279fd558d18SJames Chapman kfree_skb(skb); 280fd558d18SJames Chapman } 281fd558d18SJames Chapman 282fd558d18SJames Chapman /************************************************************************ 283fd558d18SJames Chapman * Transmit handling 284fd558d18SJames Chapman ***********************************************************************/ 285fd558d18SJames Chapman 286fd558d18SJames Chapman /* This is the sendmsg for the PPPoL2TP pppol2tp_session socket. We come here 287fd558d18SJames Chapman * when a user application does a sendmsg() on the session socket. L2TP and 288fd558d18SJames Chapman * PPP headers must be inserted into the user's data. 289fd558d18SJames Chapman */ 2901b784140SYing Xue static int pppol2tp_sendmsg(struct socket *sock, struct msghdr *m, 291fd558d18SJames Chapman size_t total_len) 292fd558d18SJames Chapman { 293fd558d18SJames Chapman struct sock *sk = sock->sk; 294fd558d18SJames Chapman struct sk_buff *skb; 295fd558d18SJames Chapman int error; 296fd558d18SJames Chapman struct l2tp_session *session; 297fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 298fd558d18SJames Chapman struct pppol2tp_session *ps; 2990d76751fSJames Chapman int uhlen; 300fd558d18SJames Chapman 301fd558d18SJames Chapman error = -ENOTCONN; 302fd558d18SJames Chapman if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED)) 303fd558d18SJames Chapman goto error; 304fd558d18SJames Chapman 305fd558d18SJames Chapman /* Get session and tunnel contexts */ 306fd558d18SJames Chapman error = -EBADF; 307fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 308fd558d18SJames Chapman if (session == NULL) 309fd558d18SJames Chapman goto error; 310fd558d18SJames Chapman 311fd558d18SJames Chapman ps = l2tp_session_priv(session); 312fd558d18SJames Chapman tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock); 313fd558d18SJames Chapman if (tunnel == NULL) 314fd558d18SJames Chapman goto error_put_sess; 315fd558d18SJames Chapman 3160d76751fSJames Chapman uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0; 3170d76751fSJames Chapman 318fd558d18SJames Chapman /* Allocate a socket buffer */ 319fd558d18SJames Chapman error = -ENOMEM; 320fd558d18SJames Chapman skb = sock_wmalloc(sk, NET_SKB_PAD + sizeof(struct iphdr) + 3210d76751fSJames Chapman uhlen + session->hdr_len + 32254c151d9SGao Feng 2 + total_len, /* 2 bytes for PPP_ALLSTATIONS & PPP_UI */ 323fd558d18SJames Chapman 0, GFP_KERNEL); 324fd558d18SJames Chapman if (!skb) 325fd558d18SJames Chapman goto error_put_sess_tun; 326fd558d18SJames Chapman 327fd558d18SJames Chapman /* Reserve space for headers. */ 328fd558d18SJames Chapman skb_reserve(skb, NET_SKB_PAD); 329fd558d18SJames Chapman skb_reset_network_header(skb); 330fd558d18SJames Chapman skb_reserve(skb, sizeof(struct iphdr)); 331fd558d18SJames Chapman skb_reset_transport_header(skb); 3320d76751fSJames Chapman skb_reserve(skb, uhlen); 333fd558d18SJames Chapman 334fd558d18SJames Chapman /* Add PPP header */ 33554c151d9SGao Feng skb->data[0] = PPP_ALLSTATIONS; 33654c151d9SGao Feng skb->data[1] = PPP_UI; 337fd558d18SJames Chapman skb_put(skb, 2); 338fd558d18SJames Chapman 339fd558d18SJames Chapman /* Copy user data into skb */ 3406ce8e9ceSAl Viro error = memcpy_from_msg(skb_put(skb, total_len), m, total_len); 341fd558d18SJames Chapman if (error < 0) { 342fd558d18SJames Chapman kfree_skb(skb); 343fd558d18SJames Chapman goto error_put_sess_tun; 344fd558d18SJames Chapman } 345fd558d18SJames Chapman 346455cc32bSEric Dumazet local_bh_disable(); 347fd558d18SJames Chapman l2tp_xmit_skb(session, skb, session->hdr_len); 348455cc32bSEric Dumazet local_bh_enable(); 349fd558d18SJames Chapman 350fd558d18SJames Chapman sock_put(ps->tunnel_sock); 3518b82547eSGuillaume Nault sock_put(sk); 352fd558d18SJames Chapman 353a6f79d0fSGuillaume Nault return total_len; 354fd558d18SJames Chapman 355fd558d18SJames Chapman error_put_sess_tun: 356fd558d18SJames Chapman sock_put(ps->tunnel_sock); 357fd558d18SJames Chapman error_put_sess: 358fd558d18SJames Chapman sock_put(sk); 359fd558d18SJames Chapman error: 360fd558d18SJames Chapman return error; 361fd558d18SJames Chapman } 362fd558d18SJames Chapman 363fd558d18SJames Chapman /* Transmit function called by generic PPP driver. Sends PPP frame 364fd558d18SJames Chapman * over PPPoL2TP socket. 365fd558d18SJames Chapman * 366fd558d18SJames Chapman * This is almost the same as pppol2tp_sendmsg(), but rather than 367fd558d18SJames Chapman * being called with a msghdr from userspace, it is called with a skb 368fd558d18SJames Chapman * from the kernel. 369fd558d18SJames Chapman * 370fd558d18SJames Chapman * The supplied skb from ppp doesn't have enough headroom for the 371fd558d18SJames Chapman * insertion of L2TP, UDP and IP headers so we need to allocate more 372fd558d18SJames Chapman * headroom in the skb. This will create a cloned skb. But we must be 373fd558d18SJames Chapman * careful in the error case because the caller will expect to free 374fd558d18SJames Chapman * the skb it supplied, not our cloned skb. So we take care to always 375fd558d18SJames Chapman * leave the original skb unfreed if we return an error. 376fd558d18SJames Chapman */ 377fd558d18SJames Chapman static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb) 378fd558d18SJames Chapman { 379fd558d18SJames Chapman struct sock *sk = (struct sock *) chan->private; 380fd558d18SJames Chapman struct sock *sk_tun; 381fd558d18SJames Chapman struct l2tp_session *session; 382fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 383fd558d18SJames Chapman struct pppol2tp_session *ps; 38409df57caSEric Dumazet int uhlen, headroom; 385fd558d18SJames Chapman 386fd558d18SJames Chapman if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED)) 387fd558d18SJames Chapman goto abort; 388fd558d18SJames Chapman 389fd558d18SJames Chapman /* Get session and tunnel contexts from the socket */ 390fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 391fd558d18SJames Chapman if (session == NULL) 392fd558d18SJames Chapman goto abort; 393fd558d18SJames Chapman 394fd558d18SJames Chapman ps = l2tp_session_priv(session); 395fd558d18SJames Chapman sk_tun = ps->tunnel_sock; 396fd558d18SJames Chapman if (sk_tun == NULL) 397fd558d18SJames Chapman goto abort_put_sess; 398fd558d18SJames Chapman tunnel = l2tp_sock_to_tunnel(sk_tun); 399fd558d18SJames Chapman if (tunnel == NULL) 400fd558d18SJames Chapman goto abort_put_sess; 401fd558d18SJames Chapman 40209df57caSEric Dumazet uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0; 40309df57caSEric Dumazet headroom = NET_SKB_PAD + 40409df57caSEric Dumazet sizeof(struct iphdr) + /* IP header */ 40509df57caSEric Dumazet uhlen + /* UDP header (if L2TP_ENCAPTYPE_UDP) */ 40609df57caSEric Dumazet session->hdr_len + /* L2TP header */ 40754c151d9SGao Feng 2; /* 2 bytes for PPP_ALLSTATIONS & PPP_UI */ 40809df57caSEric Dumazet if (skb_cow_head(skb, headroom)) 409fd558d18SJames Chapman goto abort_put_sess_tun; 410fd558d18SJames Chapman 411fd558d18SJames Chapman /* Setup PPP header */ 41254c151d9SGao Feng __skb_push(skb, 2); 41354c151d9SGao Feng skb->data[0] = PPP_ALLSTATIONS; 41454c151d9SGao Feng skb->data[1] = PPP_UI; 415fd558d18SJames Chapman 416455cc32bSEric Dumazet local_bh_disable(); 417e0d4435fSJames Chapman l2tp_xmit_skb(session, skb, session->hdr_len); 418455cc32bSEric Dumazet local_bh_enable(); 419fd558d18SJames Chapman 420fd558d18SJames Chapman sock_put(sk_tun); 421fd558d18SJames Chapman sock_put(sk); 422fd558d18SJames Chapman return 1; 423fd558d18SJames Chapman 424fd558d18SJames Chapman abort_put_sess_tun: 425fd558d18SJames Chapman sock_put(sk_tun); 426fd558d18SJames Chapman abort_put_sess: 427fd558d18SJames Chapman sock_put(sk); 428fd558d18SJames Chapman abort: 429fd558d18SJames Chapman /* Free the original skb */ 430fd558d18SJames Chapman kfree_skb(skb); 431fd558d18SJames Chapman return 1; 432fd558d18SJames Chapman } 433fd558d18SJames Chapman 434fd558d18SJames Chapman /***************************************************************************** 435fd558d18SJames Chapman * Session (and tunnel control) socket create/destroy. 436fd558d18SJames Chapman *****************************************************************************/ 437fd558d18SJames Chapman 438fd558d18SJames Chapman /* Called by l2tp_core when a session socket is being closed. 439fd558d18SJames Chapman */ 440fd558d18SJames Chapman static void pppol2tp_session_close(struct l2tp_session *session) 441fd558d18SJames Chapman { 442ee40fb2eSGuillaume Nault struct sock *sk; 443fd558d18SJames Chapman 444fd558d18SJames Chapman BUG_ON(session->magic != L2TP_SESSION_MAGIC); 445fd558d18SJames Chapman 446ee40fb2eSGuillaume Nault sk = pppol2tp_session_get_sock(session); 447ee40fb2eSGuillaume Nault if (sk) { 448ee40fb2eSGuillaume Nault if (sk->sk_socket) 449ee40fb2eSGuillaume Nault inet_shutdown(sk->sk_socket, SEND_SHUTDOWN); 450ee40fb2eSGuillaume Nault sock_put(sk); 451ee40fb2eSGuillaume Nault } 452fd558d18SJames Chapman } 453fd558d18SJames Chapman 454fd558d18SJames Chapman /* Really kill the session socket. (Called from sock_put() if 455fd558d18SJames Chapman * refcnt == 0.) 456fd558d18SJames Chapman */ 457fd558d18SJames Chapman static void pppol2tp_session_destruct(struct sock *sk) 458fd558d18SJames Chapman { 459f6e16b29STom Parkin struct l2tp_session *session = sk->sk_user_data; 460e91793bbSGuillaume Nault 461e91793bbSGuillaume Nault skb_queue_purge(&sk->sk_receive_queue); 462e91793bbSGuillaume Nault skb_queue_purge(&sk->sk_write_queue); 463e91793bbSGuillaume Nault 464f6e16b29STom Parkin if (session) { 465fd558d18SJames Chapman sk->sk_user_data = NULL; 466fd558d18SJames Chapman BUG_ON(session->magic != L2TP_SESSION_MAGIC); 467fd558d18SJames Chapman l2tp_session_dec_refcount(session); 468fd558d18SJames Chapman } 469fd558d18SJames Chapman } 470fd558d18SJames Chapman 471ee40fb2eSGuillaume Nault static void pppol2tp_put_sk(struct rcu_head *head) 472ee40fb2eSGuillaume Nault { 473ee40fb2eSGuillaume Nault struct pppol2tp_session *ps; 474ee40fb2eSGuillaume Nault 475ee40fb2eSGuillaume Nault ps = container_of(head, typeof(*ps), rcu); 476ee40fb2eSGuillaume Nault sock_put(ps->__sk); 477ee40fb2eSGuillaume Nault } 478ee40fb2eSGuillaume Nault 479fd558d18SJames Chapman /* Called when the PPPoX socket (session) is closed. 480fd558d18SJames Chapman */ 481fd558d18SJames Chapman static int pppol2tp_release(struct socket *sock) 482fd558d18SJames Chapman { 483fd558d18SJames Chapman struct sock *sk = sock->sk; 484fd558d18SJames Chapman struct l2tp_session *session; 485fd558d18SJames Chapman int error; 486fd558d18SJames Chapman 487fd558d18SJames Chapman if (!sk) 488fd558d18SJames Chapman return 0; 489fd558d18SJames Chapman 490fd558d18SJames Chapman error = -EBADF; 491fd558d18SJames Chapman lock_sock(sk); 492fd558d18SJames Chapman if (sock_flag(sk, SOCK_DEAD) != 0) 493fd558d18SJames Chapman goto error; 494fd558d18SJames Chapman 495fd558d18SJames Chapman pppox_unbind_sock(sk); 496fd558d18SJames Chapman 497fd558d18SJames Chapman /* Signal the death of the socket. */ 498fd558d18SJames Chapman sk->sk_state = PPPOX_DEAD; 499fd558d18SJames Chapman sock_orphan(sk); 500fd558d18SJames Chapman sock->sk = NULL; 501fd558d18SJames Chapman 502fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 503fd558d18SJames Chapman 504cf2f5c88STom Parkin if (session != NULL) { 505ee40fb2eSGuillaume Nault struct pppol2tp_session *ps; 506ee40fb2eSGuillaume Nault 507f98be6c6SGuillaume Nault l2tp_session_delete(session); 508ee40fb2eSGuillaume Nault 509ee40fb2eSGuillaume Nault ps = l2tp_session_priv(session); 510ee40fb2eSGuillaume Nault mutex_lock(&ps->sk_lock); 511ee40fb2eSGuillaume Nault ps->__sk = rcu_dereference_protected(ps->sk, 512ee40fb2eSGuillaume Nault lockdep_is_held(&ps->sk_lock)); 513ee40fb2eSGuillaume Nault RCU_INIT_POINTER(ps->sk, NULL); 514ee40fb2eSGuillaume Nault mutex_unlock(&ps->sk_lock); 515ee40fb2eSGuillaume Nault call_rcu(&ps->rcu, pppol2tp_put_sk); 516ee40fb2eSGuillaume Nault 517ee40fb2eSGuillaume Nault /* Rely on the sock_put() call at the end of the function for 518ee40fb2eSGuillaume Nault * dropping the reference held by pppol2tp_sock_to_session(). 519ee40fb2eSGuillaume Nault * The last reference will be dropped by pppol2tp_put_sk(). 520ee40fb2eSGuillaume Nault */ 521cf2f5c88STom Parkin } 522fd558d18SJames Chapman release_sock(sk); 523fd558d18SJames Chapman 524fd558d18SJames Chapman /* This will delete the session context via 525fd558d18SJames Chapman * pppol2tp_session_destruct() if the socket's refcnt drops to 526fd558d18SJames Chapman * zero. 527fd558d18SJames Chapman */ 528fd558d18SJames Chapman sock_put(sk); 529fd558d18SJames Chapman 530fd558d18SJames Chapman return 0; 531fd558d18SJames Chapman 532fd558d18SJames Chapman error: 533fd558d18SJames Chapman release_sock(sk); 534fd558d18SJames Chapman return error; 535fd558d18SJames Chapman } 536fd558d18SJames Chapman 537fd558d18SJames Chapman static struct proto pppol2tp_sk_proto = { 538fd558d18SJames Chapman .name = "PPPOL2TP", 539fd558d18SJames Chapman .owner = THIS_MODULE, 540fd558d18SJames Chapman .obj_size = sizeof(struct pppox_sock), 541fd558d18SJames Chapman }; 542fd558d18SJames Chapman 543fd558d18SJames Chapman static int pppol2tp_backlog_recv(struct sock *sk, struct sk_buff *skb) 544fd558d18SJames Chapman { 545fd558d18SJames Chapman int rc; 546fd558d18SJames Chapman 547fd558d18SJames Chapman rc = l2tp_udp_encap_recv(sk, skb); 548fd558d18SJames Chapman if (rc) 549fd558d18SJames Chapman kfree_skb(skb); 550fd558d18SJames Chapman 551fd558d18SJames Chapman return NET_RX_SUCCESS; 552fd558d18SJames Chapman } 553fd558d18SJames Chapman 554fd558d18SJames Chapman /* socket() handler. Initialize a new struct sock. 555fd558d18SJames Chapman */ 55611aa9c28SEric W. Biederman static int pppol2tp_create(struct net *net, struct socket *sock, int kern) 557fd558d18SJames Chapman { 558fd558d18SJames Chapman int error = -ENOMEM; 559fd558d18SJames Chapman struct sock *sk; 560fd558d18SJames Chapman 56111aa9c28SEric W. Biederman sk = sk_alloc(net, PF_PPPOX, GFP_KERNEL, &pppol2tp_sk_proto, kern); 562fd558d18SJames Chapman if (!sk) 563fd558d18SJames Chapman goto out; 564fd558d18SJames Chapman 565fd558d18SJames Chapman sock_init_data(sock, sk); 566fd558d18SJames Chapman 567fd558d18SJames Chapman sock->state = SS_UNCONNECTED; 568fd558d18SJames Chapman sock->ops = &pppol2tp_ops; 569fd558d18SJames Chapman 570fd558d18SJames Chapman sk->sk_backlog_rcv = pppol2tp_backlog_recv; 571fd558d18SJames Chapman sk->sk_protocol = PX_PROTO_OL2TP; 572fd558d18SJames Chapman sk->sk_family = PF_PPPOX; 573fd558d18SJames Chapman sk->sk_state = PPPOX_NONE; 574fd558d18SJames Chapman sk->sk_type = SOCK_STREAM; 575fd558d18SJames Chapman sk->sk_destruct = pppol2tp_session_destruct; 576fd558d18SJames Chapman 577fd558d18SJames Chapman error = 0; 578fd558d18SJames Chapman 579fd558d18SJames Chapman out: 580fd558d18SJames Chapman return error; 581fd558d18SJames Chapman } 582fd558d18SJames Chapman 5839dd79945SJavier Martinez Canillas #if IS_ENABLED(CONFIG_L2TP_DEBUGFS) 5840ad66140SJames Chapman static void pppol2tp_show(struct seq_file *m, void *arg) 5850ad66140SJames Chapman { 5860ad66140SJames Chapman struct l2tp_session *session = arg; 587ee40fb2eSGuillaume Nault struct sock *sk; 5880ad66140SJames Chapman 589ee40fb2eSGuillaume Nault sk = pppol2tp_session_get_sock(session); 590ee40fb2eSGuillaume Nault if (sk) { 591ee40fb2eSGuillaume Nault struct pppox_sock *po = pppox_sk(sk); 592ee40fb2eSGuillaume Nault 5930ad66140SJames Chapman seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan)); 594ee40fb2eSGuillaume Nault sock_put(sk); 5950ad66140SJames Chapman } 5960ad66140SJames Chapman } 5970ad66140SJames Chapman #endif 5980ad66140SJames Chapman 599f98be6c6SGuillaume Nault static void pppol2tp_session_init(struct l2tp_session *session) 600f98be6c6SGuillaume Nault { 601f98be6c6SGuillaume Nault struct pppol2tp_session *ps; 602f98be6c6SGuillaume Nault struct dst_entry *dst; 603f98be6c6SGuillaume Nault 604f98be6c6SGuillaume Nault session->recv_skb = pppol2tp_recv; 605f98be6c6SGuillaume Nault session->session_close = pppol2tp_session_close; 606f98be6c6SGuillaume Nault #if IS_ENABLED(CONFIG_L2TP_DEBUGFS) 607f98be6c6SGuillaume Nault session->show = pppol2tp_show; 608f98be6c6SGuillaume Nault #endif 609f98be6c6SGuillaume Nault 610f98be6c6SGuillaume Nault ps = l2tp_session_priv(session); 611f98be6c6SGuillaume Nault mutex_init(&ps->sk_lock); 612f98be6c6SGuillaume Nault ps->tunnel_sock = session->tunnel->sock; 613f98be6c6SGuillaume Nault ps->owner = current->pid; 614f98be6c6SGuillaume Nault 615f98be6c6SGuillaume Nault /* If PMTU discovery was enabled, use the MTU that was discovered */ 616f98be6c6SGuillaume Nault dst = sk_dst_get(session->tunnel->sock); 617f98be6c6SGuillaume Nault if (dst) { 618f98be6c6SGuillaume Nault u32 pmtu = dst_mtu(dst); 619f98be6c6SGuillaume Nault 620f98be6c6SGuillaume Nault if (pmtu) { 621f98be6c6SGuillaume Nault session->mtu = pmtu - PPPOL2TP_HEADER_OVERHEAD; 622f98be6c6SGuillaume Nault session->mru = pmtu - PPPOL2TP_HEADER_OVERHEAD; 623f98be6c6SGuillaume Nault } 624f98be6c6SGuillaume Nault dst_release(dst); 625f98be6c6SGuillaume Nault } 626f98be6c6SGuillaume Nault } 627f98be6c6SGuillaume Nault 628fd558d18SJames Chapman /* connect() handler. Attach a PPPoX socket to a tunnel UDP socket 629fd558d18SJames Chapman */ 630fd558d18SJames Chapman static int pppol2tp_connect(struct socket *sock, struct sockaddr *uservaddr, 631fd558d18SJames Chapman int sockaddr_len, int flags) 632fd558d18SJames Chapman { 633fd558d18SJames Chapman struct sock *sk = sock->sk; 634fd558d18SJames Chapman struct sockaddr_pppol2tp *sp = (struct sockaddr_pppol2tp *) uservaddr; 635fd558d18SJames Chapman struct pppox_sock *po = pppox_sk(sk); 636fd558d18SJames Chapman struct l2tp_session *session = NULL; 637fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 638fd558d18SJames Chapman struct pppol2tp_session *ps; 639fd558d18SJames Chapman struct l2tp_session_cfg cfg = { 0, }; 640fd558d18SJames Chapman int error = 0; 641e0d4435fSJames Chapman u32 tunnel_id, peer_tunnel_id; 642e0d4435fSJames Chapman u32 session_id, peer_session_id; 643dbdbc73bSGuillaume Nault bool drop_refcnt = false; 644e0d4435fSJames Chapman int ver = 2; 645e0d4435fSJames Chapman int fd; 646fd558d18SJames Chapman 647fd558d18SJames Chapman lock_sock(sk); 648fd558d18SJames Chapman 649fd558d18SJames Chapman error = -EINVAL; 650fd558d18SJames Chapman if (sp->sa_protocol != PX_PROTO_OL2TP) 651fd558d18SJames Chapman goto end; 652fd558d18SJames Chapman 653fd558d18SJames Chapman /* Check for already bound sockets */ 654fd558d18SJames Chapman error = -EBUSY; 655fd558d18SJames Chapman if (sk->sk_state & PPPOX_CONNECTED) 656fd558d18SJames Chapman goto end; 657fd558d18SJames Chapman 658fd558d18SJames Chapman /* We don't supporting rebinding anyway */ 659fd558d18SJames Chapman error = -EALREADY; 660fd558d18SJames Chapman if (sk->sk_user_data) 661fd558d18SJames Chapman goto end; /* socket is already attached */ 662fd558d18SJames Chapman 663b79585f5SJames Chapman /* Get params from socket address. Handle L2TPv2 and L2TPv3. 664b79585f5SJames Chapman * This is nasty because there are different sockaddr_pppol2tp 665b79585f5SJames Chapman * structs for L2TPv2, L2TPv3, over IPv4 and IPv6. We use 666b79585f5SJames Chapman * the sockaddr size to determine which structure the caller 667b79585f5SJames Chapman * is using. 668b79585f5SJames Chapman */ 669b79585f5SJames Chapman peer_tunnel_id = 0; 670e0d4435fSJames Chapman if (sockaddr_len == sizeof(struct sockaddr_pppol2tp)) { 671e0d4435fSJames Chapman fd = sp->pppol2tp.fd; 672e0d4435fSJames Chapman tunnel_id = sp->pppol2tp.s_tunnel; 673e0d4435fSJames Chapman peer_tunnel_id = sp->pppol2tp.d_tunnel; 674e0d4435fSJames Chapman session_id = sp->pppol2tp.s_session; 675e0d4435fSJames Chapman peer_session_id = sp->pppol2tp.d_session; 676e0d4435fSJames Chapman } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3)) { 677b79585f5SJames Chapman struct sockaddr_pppol2tpv3 *sp3 = 678b79585f5SJames Chapman (struct sockaddr_pppol2tpv3 *) sp; 679e0d4435fSJames Chapman ver = 3; 680e0d4435fSJames Chapman fd = sp3->pppol2tp.fd; 681e0d4435fSJames Chapman tunnel_id = sp3->pppol2tp.s_tunnel; 682e0d4435fSJames Chapman peer_tunnel_id = sp3->pppol2tp.d_tunnel; 683e0d4435fSJames Chapman session_id = sp3->pppol2tp.s_session; 684e0d4435fSJames Chapman peer_session_id = sp3->pppol2tp.d_session; 685b79585f5SJames Chapman } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpin6)) { 686b79585f5SJames Chapman struct sockaddr_pppol2tpin6 *sp6 = 687b79585f5SJames Chapman (struct sockaddr_pppol2tpin6 *) sp; 688b79585f5SJames Chapman fd = sp6->pppol2tp.fd; 689b79585f5SJames Chapman tunnel_id = sp6->pppol2tp.s_tunnel; 690b79585f5SJames Chapman peer_tunnel_id = sp6->pppol2tp.d_tunnel; 691b79585f5SJames Chapman session_id = sp6->pppol2tp.s_session; 692b79585f5SJames Chapman peer_session_id = sp6->pppol2tp.d_session; 693b79585f5SJames Chapman } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3in6)) { 694b79585f5SJames Chapman struct sockaddr_pppol2tpv3in6 *sp6 = 695b79585f5SJames Chapman (struct sockaddr_pppol2tpv3in6 *) sp; 696b79585f5SJames Chapman ver = 3; 697b79585f5SJames Chapman fd = sp6->pppol2tp.fd; 698b79585f5SJames Chapman tunnel_id = sp6->pppol2tp.s_tunnel; 699b79585f5SJames Chapman peer_tunnel_id = sp6->pppol2tp.d_tunnel; 700b79585f5SJames Chapman session_id = sp6->pppol2tp.s_session; 701b79585f5SJames Chapman peer_session_id = sp6->pppol2tp.d_session; 702e0d4435fSJames Chapman } else { 703fd558d18SJames Chapman error = -EINVAL; 704e0d4435fSJames Chapman goto end; /* bad socket address */ 705e0d4435fSJames Chapman } 706e0d4435fSJames Chapman 707e0d4435fSJames Chapman /* Don't bind if tunnel_id is 0 */ 708e0d4435fSJames Chapman error = -EINVAL; 709e0d4435fSJames Chapman if (tunnel_id == 0) 710fd558d18SJames Chapman goto end; 711fd558d18SJames Chapman 712309795f4SJames Chapman tunnel = l2tp_tunnel_find(sock_net(sk), tunnel_id); 713309795f4SJames Chapman 714e0d4435fSJames Chapman /* Special case: create tunnel context if session_id and 715e0d4435fSJames Chapman * peer_session_id is 0. Otherwise look up tunnel using supplied 716fd558d18SJames Chapman * tunnel id. 717fd558d18SJames Chapman */ 718e0d4435fSJames Chapman if ((session_id == 0) && (peer_session_id == 0)) { 719309795f4SJames Chapman if (tunnel == NULL) { 720309795f4SJames Chapman struct l2tp_tunnel_cfg tcfg = { 721309795f4SJames Chapman .encap = L2TP_ENCAPTYPE_UDP, 722309795f4SJames Chapman .debug = 0, 723309795f4SJames Chapman }; 724309795f4SJames Chapman error = l2tp_tunnel_create(sock_net(sk), fd, ver, tunnel_id, peer_tunnel_id, &tcfg, &tunnel); 725fd558d18SJames Chapman if (error < 0) 726fd558d18SJames Chapman goto end; 727309795f4SJames Chapman } 728fd558d18SJames Chapman } else { 729fd558d18SJames Chapman /* Error if we can't find the tunnel */ 730fd558d18SJames Chapman error = -ENOENT; 731fd558d18SJames Chapman if (tunnel == NULL) 732fd558d18SJames Chapman goto end; 733fd558d18SJames Chapman 734fd558d18SJames Chapman /* Error if socket is not prepped */ 735fd558d18SJames Chapman if (tunnel->sock == NULL) 736fd558d18SJames Chapman goto end; 737fd558d18SJames Chapman } 738fd558d18SJames Chapman 739fd558d18SJames Chapman if (tunnel->recv_payload_hook == NULL) 740fd558d18SJames Chapman tunnel->recv_payload_hook = pppol2tp_recv_payload_hook; 741fd558d18SJames Chapman 742b79585f5SJames Chapman if (tunnel->peer_tunnel_id == 0) 743b79585f5SJames Chapman tunnel->peer_tunnel_id = peer_tunnel_id; 744fd558d18SJames Chapman 745*a4346210SGuillaume Nault session = l2tp_session_get(sock_net(sk), tunnel, session_id); 746dbdbc73bSGuillaume Nault if (session) { 747dbdbc73bSGuillaume Nault drop_refcnt = true; 748dbdbc73bSGuillaume Nault ps = l2tp_session_priv(session); 749fd558d18SJames Chapman 750dbdbc73bSGuillaume Nault /* Using a pre-existing session is fine as long as it hasn't 751dbdbc73bSGuillaume Nault * been connected yet. 752dbdbc73bSGuillaume Nault */ 753ee40fb2eSGuillaume Nault mutex_lock(&ps->sk_lock); 754ee40fb2eSGuillaume Nault if (rcu_dereference_protected(ps->sk, 755ee40fb2eSGuillaume Nault lockdep_is_held(&ps->sk_lock))) { 756ee40fb2eSGuillaume Nault mutex_unlock(&ps->sk_lock); 757dbdbc73bSGuillaume Nault error = -EEXIST; 758dbdbc73bSGuillaume Nault goto end; 759dbdbc73bSGuillaume Nault } 760dbdbc73bSGuillaume Nault 761dbdbc73bSGuillaume Nault /* consistency checks */ 762dbdbc73bSGuillaume Nault if (ps->tunnel_sock != tunnel->sock) { 763ee40fb2eSGuillaume Nault mutex_unlock(&ps->sk_lock); 764dbdbc73bSGuillaume Nault error = -EEXIST; 765fd558d18SJames Chapman goto end; 766fd558d18SJames Chapman } 767309795f4SJames Chapman } else { 768dbdbc73bSGuillaume Nault /* Default MTU must allow space for UDP/L2TP/PPP headers */ 769dbdbc73bSGuillaume Nault cfg.mtu = 1500 - PPPOL2TP_HEADER_OVERHEAD; 770dbdbc73bSGuillaume Nault cfg.mru = cfg.mtu; 771fd558d18SJames Chapman 772dbdbc73bSGuillaume Nault session = l2tp_session_create(sizeof(struct pppol2tp_session), 773dbdbc73bSGuillaume Nault tunnel, session_id, 774dbdbc73bSGuillaume Nault peer_session_id, &cfg); 775dbdbc73bSGuillaume Nault if (IS_ERR(session)) { 776dbdbc73bSGuillaume Nault error = PTR_ERR(session); 777309795f4SJames Chapman goto end; 778309795f4SJames Chapman } 7793953ae7bSGuillaume Nault 780f98be6c6SGuillaume Nault pppol2tp_session_init(session); 781ee40fb2eSGuillaume Nault ps = l2tp_session_priv(session); 7823953ae7bSGuillaume Nault l2tp_session_inc_refcount(session); 783ee40fb2eSGuillaume Nault 784ee40fb2eSGuillaume Nault mutex_lock(&ps->sk_lock); 7853953ae7bSGuillaume Nault error = l2tp_session_register(session, tunnel); 7863953ae7bSGuillaume Nault if (error < 0) { 787ee40fb2eSGuillaume Nault mutex_unlock(&ps->sk_lock); 7883953ae7bSGuillaume Nault kfree(session); 7893953ae7bSGuillaume Nault goto end; 7903953ae7bSGuillaume Nault } 7913953ae7bSGuillaume Nault drop_refcnt = true; 792dbdbc73bSGuillaume Nault } 793309795f4SJames Chapman 794fd558d18SJames Chapman /* Special case: if source & dest session_id == 0x0000, this 795fd558d18SJames Chapman * socket is being created to manage the tunnel. Just set up 796fd558d18SJames Chapman * the internal context for use by ioctl() and sockopt() 797fd558d18SJames Chapman * handlers. 798fd558d18SJames Chapman */ 799fd558d18SJames Chapman if ((session->session_id == 0) && 800fd558d18SJames Chapman (session->peer_session_id == 0)) { 801fd558d18SJames Chapman error = 0; 802fd558d18SJames Chapman goto out_no_ppp; 803fd558d18SJames Chapman } 804fd558d18SJames Chapman 805fd558d18SJames Chapman /* The only header we need to worry about is the L2TP 806fd558d18SJames Chapman * header. This size is different depending on whether 807fd558d18SJames Chapman * sequence numbers are enabled for the data channel. 808fd558d18SJames Chapman */ 809fd558d18SJames Chapman po->chan.hdrlen = PPPOL2TP_L2TP_HDR_SIZE_NOSEQ; 810fd558d18SJames Chapman 811fd558d18SJames Chapman po->chan.private = sk; 812fd558d18SJames Chapman po->chan.ops = &pppol2tp_chan_ops; 813fd558d18SJames Chapman po->chan.mtu = session->mtu; 814fd558d18SJames Chapman 815fd558d18SJames Chapman error = ppp_register_net_channel(sock_net(sk), &po->chan); 816ee40fb2eSGuillaume Nault if (error) { 817ee40fb2eSGuillaume Nault mutex_unlock(&ps->sk_lock); 818fd558d18SJames Chapman goto end; 819ee40fb2eSGuillaume Nault } 820fd558d18SJames Chapman 821fd558d18SJames Chapman out_no_ppp: 822fd558d18SJames Chapman /* This is how we get the session context from the socket. */ 823fd558d18SJames Chapman sk->sk_user_data = session; 824ee40fb2eSGuillaume Nault rcu_assign_pointer(ps->sk, sk); 825ee40fb2eSGuillaume Nault mutex_unlock(&ps->sk_lock); 826ee40fb2eSGuillaume Nault 827f98be6c6SGuillaume Nault /* Keep the reference we've grabbed on the session: sk doesn't expect 828f98be6c6SGuillaume Nault * the session to disappear. pppol2tp_session_destruct() is responsible 829f98be6c6SGuillaume Nault * for dropping it. 830f98be6c6SGuillaume Nault */ 831f98be6c6SGuillaume Nault drop_refcnt = false; 832f98be6c6SGuillaume Nault 833fd558d18SJames Chapman sk->sk_state = PPPOX_CONNECTED; 834fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: created\n", 835a4ca44faSJoe Perches session->name); 836fd558d18SJames Chapman 837fd558d18SJames Chapman end: 838dbdbc73bSGuillaume Nault if (drop_refcnt) 839dbdbc73bSGuillaume Nault l2tp_session_dec_refcount(session); 840fd558d18SJames Chapman release_sock(sk); 841fd558d18SJames Chapman 842fd558d18SJames Chapman return error; 843fd558d18SJames Chapman } 844fd558d18SJames Chapman 845309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 846309795f4SJames Chapman 847f026bc29SGuillaume Nault /* Called when creating sessions via the netlink interface. */ 848f026bc29SGuillaume Nault static int pppol2tp_session_create(struct net *net, struct l2tp_tunnel *tunnel, 849f026bc29SGuillaume Nault u32 session_id, u32 peer_session_id, 850f026bc29SGuillaume Nault struct l2tp_session_cfg *cfg) 851309795f4SJames Chapman { 852309795f4SJames Chapman int error; 853309795f4SJames Chapman struct l2tp_session *session; 854309795f4SJames Chapman 855309795f4SJames Chapman /* Error if tunnel socket is not prepped */ 856f026bc29SGuillaume Nault if (!tunnel->sock) { 857f026bc29SGuillaume Nault error = -ENOENT; 8583953ae7bSGuillaume Nault goto err; 859f026bc29SGuillaume Nault } 860309795f4SJames Chapman 861309795f4SJames Chapman /* Default MTU values. */ 862309795f4SJames Chapman if (cfg->mtu == 0) 863309795f4SJames Chapman cfg->mtu = 1500 - PPPOL2TP_HEADER_OVERHEAD; 864309795f4SJames Chapman if (cfg->mru == 0) 865309795f4SJames Chapman cfg->mru = cfg->mtu; 866309795f4SJames Chapman 867309795f4SJames Chapman /* Allocate and initialize a new session context. */ 868309795f4SJames Chapman session = l2tp_session_create(sizeof(struct pppol2tp_session), 869309795f4SJames Chapman tunnel, session_id, 870309795f4SJames Chapman peer_session_id, cfg); 871dbdbc73bSGuillaume Nault if (IS_ERR(session)) { 872dbdbc73bSGuillaume Nault error = PTR_ERR(session); 8733953ae7bSGuillaume Nault goto err; 874dbdbc73bSGuillaume Nault } 875309795f4SJames Chapman 876f98be6c6SGuillaume Nault pppol2tp_session_init(session); 877309795f4SJames Chapman 8783953ae7bSGuillaume Nault error = l2tp_session_register(session, tunnel); 8793953ae7bSGuillaume Nault if (error < 0) 8803953ae7bSGuillaume Nault goto err_sess; 881309795f4SJames Chapman 8823953ae7bSGuillaume Nault return 0; 883309795f4SJames Chapman 8843953ae7bSGuillaume Nault err_sess: 8853953ae7bSGuillaume Nault kfree(session); 8863953ae7bSGuillaume Nault err: 887309795f4SJames Chapman return error; 888309795f4SJames Chapman } 889309795f4SJames Chapman 890309795f4SJames Chapman #endif /* CONFIG_L2TP_V3 */ 891309795f4SJames Chapman 892fd558d18SJames Chapman /* getname() support. 893fd558d18SJames Chapman */ 894fd558d18SJames Chapman static int pppol2tp_getname(struct socket *sock, struct sockaddr *uaddr, 895fd558d18SJames Chapman int *usockaddr_len, int peer) 896fd558d18SJames Chapman { 897e0d4435fSJames Chapman int len = 0; 898fd558d18SJames Chapman int error = 0; 899fd558d18SJames Chapman struct l2tp_session *session; 900fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 901fd558d18SJames Chapman struct sock *sk = sock->sk; 902fd558d18SJames Chapman struct inet_sock *inet; 903fd558d18SJames Chapman struct pppol2tp_session *pls; 904fd558d18SJames Chapman 905fd558d18SJames Chapman error = -ENOTCONN; 906fd558d18SJames Chapman if (sk == NULL) 907fd558d18SJames Chapman goto end; 90856cff471SGao Feng if (!(sk->sk_state & PPPOX_CONNECTED)) 909fd558d18SJames Chapman goto end; 910fd558d18SJames Chapman 911fd558d18SJames Chapman error = -EBADF; 912fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 913fd558d18SJames Chapman if (session == NULL) 914fd558d18SJames Chapman goto end; 915fd558d18SJames Chapman 916fd558d18SJames Chapman pls = l2tp_session_priv(session); 917fd558d18SJames Chapman tunnel = l2tp_sock_to_tunnel(pls->tunnel_sock); 9184ac36a4aSphil.turnbull@oracle.com if (tunnel == NULL) 919fd558d18SJames Chapman goto end_put_sess; 920fd558d18SJames Chapman 921bbdb32cbSBenjamin LaHaise inet = inet_sk(tunnel->sock); 922d2cf3361SBenjamin LaHaise if ((tunnel->version == 2) && (tunnel->sock->sk_family == AF_INET)) { 923e0d4435fSJames Chapman struct sockaddr_pppol2tp sp; 924e0d4435fSJames Chapman len = sizeof(sp); 925fd558d18SJames Chapman memset(&sp, 0, len); 926fd558d18SJames Chapman sp.sa_family = AF_PPPOX; 927fd558d18SJames Chapman sp.sa_protocol = PX_PROTO_OL2TP; 928fd558d18SJames Chapman sp.pppol2tp.fd = tunnel->fd; 929fd558d18SJames Chapman sp.pppol2tp.pid = pls->owner; 930fd558d18SJames Chapman sp.pppol2tp.s_tunnel = tunnel->tunnel_id; 931fd558d18SJames Chapman sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; 932fd558d18SJames Chapman sp.pppol2tp.s_session = session->session_id; 933fd558d18SJames Chapman sp.pppol2tp.d_session = session->peer_session_id; 934fd558d18SJames Chapman sp.pppol2tp.addr.sin_family = AF_INET; 935fd558d18SJames Chapman sp.pppol2tp.addr.sin_port = inet->inet_dport; 936fd558d18SJames Chapman sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr; 937fd558d18SJames Chapman memcpy(uaddr, &sp, len); 938d2cf3361SBenjamin LaHaise #if IS_ENABLED(CONFIG_IPV6) 939d2cf3361SBenjamin LaHaise } else if ((tunnel->version == 2) && 940d2cf3361SBenjamin LaHaise (tunnel->sock->sk_family == AF_INET6)) { 941d2cf3361SBenjamin LaHaise struct sockaddr_pppol2tpin6 sp; 942efe4208fSEric Dumazet 943d2cf3361SBenjamin LaHaise len = sizeof(sp); 944d2cf3361SBenjamin LaHaise memset(&sp, 0, len); 945d2cf3361SBenjamin LaHaise sp.sa_family = AF_PPPOX; 946d2cf3361SBenjamin LaHaise sp.sa_protocol = PX_PROTO_OL2TP; 947d2cf3361SBenjamin LaHaise sp.pppol2tp.fd = tunnel->fd; 948d2cf3361SBenjamin LaHaise sp.pppol2tp.pid = pls->owner; 949d2cf3361SBenjamin LaHaise sp.pppol2tp.s_tunnel = tunnel->tunnel_id; 950d2cf3361SBenjamin LaHaise sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; 951d2cf3361SBenjamin LaHaise sp.pppol2tp.s_session = session->session_id; 952d2cf3361SBenjamin LaHaise sp.pppol2tp.d_session = session->peer_session_id; 953d2cf3361SBenjamin LaHaise sp.pppol2tp.addr.sin6_family = AF_INET6; 954d2cf3361SBenjamin LaHaise sp.pppol2tp.addr.sin6_port = inet->inet_dport; 955efe4208fSEric Dumazet memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr, 956efe4208fSEric Dumazet sizeof(tunnel->sock->sk_v6_daddr)); 957d2cf3361SBenjamin LaHaise memcpy(uaddr, &sp, len); 958d2cf3361SBenjamin LaHaise } else if ((tunnel->version == 3) && 959d2cf3361SBenjamin LaHaise (tunnel->sock->sk_family == AF_INET6)) { 960d2cf3361SBenjamin LaHaise struct sockaddr_pppol2tpv3in6 sp; 961efe4208fSEric Dumazet 962d2cf3361SBenjamin LaHaise len = sizeof(sp); 963d2cf3361SBenjamin LaHaise memset(&sp, 0, len); 964d2cf3361SBenjamin LaHaise sp.sa_family = AF_PPPOX; 965d2cf3361SBenjamin LaHaise sp.sa_protocol = PX_PROTO_OL2TP; 966d2cf3361SBenjamin LaHaise sp.pppol2tp.fd = tunnel->fd; 967d2cf3361SBenjamin LaHaise sp.pppol2tp.pid = pls->owner; 968d2cf3361SBenjamin LaHaise sp.pppol2tp.s_tunnel = tunnel->tunnel_id; 969d2cf3361SBenjamin LaHaise sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; 970d2cf3361SBenjamin LaHaise sp.pppol2tp.s_session = session->session_id; 971d2cf3361SBenjamin LaHaise sp.pppol2tp.d_session = session->peer_session_id; 972d2cf3361SBenjamin LaHaise sp.pppol2tp.addr.sin6_family = AF_INET6; 973d2cf3361SBenjamin LaHaise sp.pppol2tp.addr.sin6_port = inet->inet_dport; 974efe4208fSEric Dumazet memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr, 975efe4208fSEric Dumazet sizeof(tunnel->sock->sk_v6_daddr)); 976d2cf3361SBenjamin LaHaise memcpy(uaddr, &sp, len); 977d2cf3361SBenjamin LaHaise #endif 978e0d4435fSJames Chapman } else if (tunnel->version == 3) { 979e0d4435fSJames Chapman struct sockaddr_pppol2tpv3 sp; 980e0d4435fSJames Chapman len = sizeof(sp); 981e0d4435fSJames Chapman memset(&sp, 0, len); 982e0d4435fSJames Chapman sp.sa_family = AF_PPPOX; 983e0d4435fSJames Chapman sp.sa_protocol = PX_PROTO_OL2TP; 984e0d4435fSJames Chapman sp.pppol2tp.fd = tunnel->fd; 985e0d4435fSJames Chapman sp.pppol2tp.pid = pls->owner; 986e0d4435fSJames Chapman sp.pppol2tp.s_tunnel = tunnel->tunnel_id; 987e0d4435fSJames Chapman sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; 988e0d4435fSJames Chapman sp.pppol2tp.s_session = session->session_id; 989e0d4435fSJames Chapman sp.pppol2tp.d_session = session->peer_session_id; 990e0d4435fSJames Chapman sp.pppol2tp.addr.sin_family = AF_INET; 991e0d4435fSJames Chapman sp.pppol2tp.addr.sin_port = inet->inet_dport; 992e0d4435fSJames Chapman sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr; 993e0d4435fSJames Chapman memcpy(uaddr, &sp, len); 994e0d4435fSJames Chapman } 995fd558d18SJames Chapman 996fd558d18SJames Chapman *usockaddr_len = len; 9974ac36a4aSphil.turnbull@oracle.com error = 0; 998fd558d18SJames Chapman 999fd558d18SJames Chapman sock_put(pls->tunnel_sock); 1000fd558d18SJames Chapman end_put_sess: 1001fd558d18SJames Chapman sock_put(sk); 1002fd558d18SJames Chapman end: 1003fd558d18SJames Chapman return error; 1004fd558d18SJames Chapman } 1005fd558d18SJames Chapman 1006fd558d18SJames Chapman /**************************************************************************** 1007fd558d18SJames Chapman * ioctl() handlers. 1008fd558d18SJames Chapman * 1009fd558d18SJames Chapman * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP 1010fd558d18SJames Chapman * sockets. However, in order to control kernel tunnel features, we allow 1011fd558d18SJames Chapman * userspace to create a special "tunnel" PPPoX socket which is used for 1012fd558d18SJames Chapman * control only. Tunnel PPPoX sockets have session_id == 0 and simply allow 1013fd558d18SJames Chapman * the user application to issue L2TP setsockopt(), getsockopt() and ioctl() 1014fd558d18SJames Chapman * calls. 1015fd558d18SJames Chapman ****************************************************************************/ 1016fd558d18SJames Chapman 1017fd558d18SJames Chapman static void pppol2tp_copy_stats(struct pppol2tp_ioc_stats *dest, 1018fd558d18SJames Chapman struct l2tp_stats *stats) 1019fd558d18SJames Chapman { 10207b7c0719STom Parkin dest->tx_packets = atomic_long_read(&stats->tx_packets); 10217b7c0719STom Parkin dest->tx_bytes = atomic_long_read(&stats->tx_bytes); 10227b7c0719STom Parkin dest->tx_errors = atomic_long_read(&stats->tx_errors); 10237b7c0719STom Parkin dest->rx_packets = atomic_long_read(&stats->rx_packets); 10247b7c0719STom Parkin dest->rx_bytes = atomic_long_read(&stats->rx_bytes); 10257b7c0719STom Parkin dest->rx_seq_discards = atomic_long_read(&stats->rx_seq_discards); 10267b7c0719STom Parkin dest->rx_oos_packets = atomic_long_read(&stats->rx_oos_packets); 10277b7c0719STom Parkin dest->rx_errors = atomic_long_read(&stats->rx_errors); 1028fd558d18SJames Chapman } 1029fd558d18SJames Chapman 1030fd558d18SJames Chapman /* Session ioctl helper. 1031fd558d18SJames Chapman */ 1032fd558d18SJames Chapman static int pppol2tp_session_ioctl(struct l2tp_session *session, 1033fd558d18SJames Chapman unsigned int cmd, unsigned long arg) 1034fd558d18SJames Chapman { 1035fd558d18SJames Chapman struct ifreq ifr; 1036fd558d18SJames Chapman int err = 0; 1037fd558d18SJames Chapman struct sock *sk; 1038fd558d18SJames Chapman int val = (int) arg; 1039fd558d18SJames Chapman struct pppol2tp_session *ps = l2tp_session_priv(session); 1040fd558d18SJames Chapman struct l2tp_tunnel *tunnel = session->tunnel; 1041fd558d18SJames Chapman struct pppol2tp_ioc_stats stats; 1042fd558d18SJames Chapman 1043fba40c63SAsbjørn Sloth Tønnesen l2tp_dbg(session, L2TP_MSG_CONTROL, 1044fd558d18SJames Chapman "%s: pppol2tp_session_ioctl(cmd=%#x, arg=%#lx)\n", 1045fd558d18SJames Chapman session->name, cmd, arg); 1046fd558d18SJames Chapman 1047ee40fb2eSGuillaume Nault sk = pppol2tp_session_get_sock(session); 10485903f594SGuillaume Nault if (!sk) 10495903f594SGuillaume Nault return -EBADR; 10505903f594SGuillaume Nault 1051fd558d18SJames Chapman switch (cmd) { 1052fd558d18SJames Chapman case SIOCGIFMTU: 1053fd558d18SJames Chapman err = -ENXIO; 1054fd558d18SJames Chapman if (!(sk->sk_state & PPPOX_CONNECTED)) 1055fd558d18SJames Chapman break; 1056fd558d18SJames Chapman 1057fd558d18SJames Chapman err = -EFAULT; 1058fd558d18SJames Chapman if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq))) 1059fd558d18SJames Chapman break; 1060fd558d18SJames Chapman ifr.ifr_mtu = session->mtu; 1061fd558d18SJames Chapman if (copy_to_user((void __user *) arg, &ifr, sizeof(struct ifreq))) 1062fd558d18SJames Chapman break; 1063fd558d18SJames Chapman 1064fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: get mtu=%d\n", 1065a4ca44faSJoe Perches session->name, session->mtu); 1066fd558d18SJames Chapman err = 0; 1067fd558d18SJames Chapman break; 1068fd558d18SJames Chapman 1069fd558d18SJames Chapman case SIOCSIFMTU: 1070fd558d18SJames Chapman err = -ENXIO; 1071fd558d18SJames Chapman if (!(sk->sk_state & PPPOX_CONNECTED)) 1072fd558d18SJames Chapman break; 1073fd558d18SJames Chapman 1074fd558d18SJames Chapman err = -EFAULT; 1075fd558d18SJames Chapman if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq))) 1076fd558d18SJames Chapman break; 1077fd558d18SJames Chapman 1078fd558d18SJames Chapman session->mtu = ifr.ifr_mtu; 1079fd558d18SJames Chapman 1080fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: set mtu=%d\n", 1081a4ca44faSJoe Perches session->name, session->mtu); 1082fd558d18SJames Chapman err = 0; 1083fd558d18SJames Chapman break; 1084fd558d18SJames Chapman 1085fd558d18SJames Chapman case PPPIOCGMRU: 1086fd558d18SJames Chapman err = -ENXIO; 1087fd558d18SJames Chapman if (!(sk->sk_state & PPPOX_CONNECTED)) 1088fd558d18SJames Chapman break; 1089fd558d18SJames Chapman 1090fd558d18SJames Chapman err = -EFAULT; 1091fd558d18SJames Chapman if (put_user(session->mru, (int __user *) arg)) 1092fd558d18SJames Chapman break; 1093fd558d18SJames Chapman 1094fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: get mru=%d\n", 1095a4ca44faSJoe Perches session->name, session->mru); 1096fd558d18SJames Chapman err = 0; 1097fd558d18SJames Chapman break; 1098fd558d18SJames Chapman 1099fd558d18SJames Chapman case PPPIOCSMRU: 1100fd558d18SJames Chapman err = -ENXIO; 1101fd558d18SJames Chapman if (!(sk->sk_state & PPPOX_CONNECTED)) 1102fd558d18SJames Chapman break; 1103fd558d18SJames Chapman 1104fd558d18SJames Chapman err = -EFAULT; 1105fd558d18SJames Chapman if (get_user(val, (int __user *) arg)) 1106fd558d18SJames Chapman break; 1107fd558d18SJames Chapman 1108fd558d18SJames Chapman session->mru = val; 1109fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: set mru=%d\n", 1110a4ca44faSJoe Perches session->name, session->mru); 1111fd558d18SJames Chapman err = 0; 1112fd558d18SJames Chapman break; 1113fd558d18SJames Chapman 1114fd558d18SJames Chapman case PPPIOCGFLAGS: 1115fd558d18SJames Chapman err = -EFAULT; 1116fd558d18SJames Chapman if (put_user(ps->flags, (int __user *) arg)) 1117fd558d18SJames Chapman break; 1118fd558d18SJames Chapman 1119fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: get flags=%d\n", 1120a4ca44faSJoe Perches session->name, ps->flags); 1121fd558d18SJames Chapman err = 0; 1122fd558d18SJames Chapman break; 1123fd558d18SJames Chapman 1124fd558d18SJames Chapman case PPPIOCSFLAGS: 1125fd558d18SJames Chapman err = -EFAULT; 1126fd558d18SJames Chapman if (get_user(val, (int __user *) arg)) 1127fd558d18SJames Chapman break; 1128fd558d18SJames Chapman ps->flags = val; 1129fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: set flags=%d\n", 1130a4ca44faSJoe Perches session->name, ps->flags); 1131fd558d18SJames Chapman err = 0; 1132fd558d18SJames Chapman break; 1133fd558d18SJames Chapman 1134fd558d18SJames Chapman case PPPIOCGL2TPSTATS: 1135fd558d18SJames Chapman err = -ENXIO; 1136fd558d18SJames Chapman if (!(sk->sk_state & PPPOX_CONNECTED)) 1137fd558d18SJames Chapman break; 1138fd558d18SJames Chapman 1139fd558d18SJames Chapman memset(&stats, 0, sizeof(stats)); 1140fd558d18SJames Chapman stats.tunnel_id = tunnel->tunnel_id; 1141fd558d18SJames Chapman stats.session_id = session->session_id; 1142fd558d18SJames Chapman pppol2tp_copy_stats(&stats, &session->stats); 1143fd558d18SJames Chapman if (copy_to_user((void __user *) arg, &stats, 1144fd558d18SJames Chapman sizeof(stats))) 1145fd558d18SJames Chapman break; 1146fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: get L2TP stats\n", 1147a4ca44faSJoe Perches session->name); 1148fd558d18SJames Chapman err = 0; 1149fd558d18SJames Chapman break; 1150fd558d18SJames Chapman 1151fd558d18SJames Chapman default: 1152fd558d18SJames Chapman err = -ENOSYS; 1153fd558d18SJames Chapman break; 1154fd558d18SJames Chapman } 1155fd558d18SJames Chapman 1156fd558d18SJames Chapman sock_put(sk); 1157fd558d18SJames Chapman 1158fd558d18SJames Chapman return err; 1159fd558d18SJames Chapman } 1160fd558d18SJames Chapman 1161fd558d18SJames Chapman /* Tunnel ioctl helper. 1162fd558d18SJames Chapman * 1163fd558d18SJames Chapman * Note the special handling for PPPIOCGL2TPSTATS below. If the ioctl data 1164fd558d18SJames Chapman * specifies a session_id, the session ioctl handler is called. This allows an 1165fd558d18SJames Chapman * application to retrieve session stats via a tunnel socket. 1166fd558d18SJames Chapman */ 1167fd558d18SJames Chapman static int pppol2tp_tunnel_ioctl(struct l2tp_tunnel *tunnel, 1168fd558d18SJames Chapman unsigned int cmd, unsigned long arg) 1169fd558d18SJames Chapman { 1170fd558d18SJames Chapman int err = 0; 1171fd558d18SJames Chapman struct sock *sk; 1172fd558d18SJames Chapman struct pppol2tp_ioc_stats stats; 1173fd558d18SJames Chapman 1174fba40c63SAsbjørn Sloth Tønnesen l2tp_dbg(tunnel, L2TP_MSG_CONTROL, 1175fd558d18SJames Chapman "%s: pppol2tp_tunnel_ioctl(cmd=%#x, arg=%#lx)\n", 1176fd558d18SJames Chapman tunnel->name, cmd, arg); 1177fd558d18SJames Chapman 1178fd558d18SJames Chapman sk = tunnel->sock; 1179fd558d18SJames Chapman sock_hold(sk); 1180fd558d18SJames Chapman 1181fd558d18SJames Chapman switch (cmd) { 1182fd558d18SJames Chapman case PPPIOCGL2TPSTATS: 1183fd558d18SJames Chapman err = -ENXIO; 1184fd558d18SJames Chapman if (!(sk->sk_state & PPPOX_CONNECTED)) 1185fd558d18SJames Chapman break; 1186fd558d18SJames Chapman 1187fd558d18SJames Chapman if (copy_from_user(&stats, (void __user *) arg, 1188fd558d18SJames Chapman sizeof(stats))) { 1189fd558d18SJames Chapman err = -EFAULT; 1190fd558d18SJames Chapman break; 1191fd558d18SJames Chapman } 1192fd558d18SJames Chapman if (stats.session_id != 0) { 1193fd558d18SJames Chapman /* resend to session ioctl handler */ 1194fd558d18SJames Chapman struct l2tp_session *session = 119557377d63SGuillaume Nault l2tp_session_get(sock_net(sk), tunnel, 1196*a4346210SGuillaume Nault stats.session_id); 119757377d63SGuillaume Nault 119857377d63SGuillaume Nault if (session) { 119957377d63SGuillaume Nault err = pppol2tp_session_ioctl(session, cmd, 120057377d63SGuillaume Nault arg); 120157377d63SGuillaume Nault l2tp_session_dec_refcount(session); 120257377d63SGuillaume Nault } else { 1203fd558d18SJames Chapman err = -EBADR; 120457377d63SGuillaume Nault } 1205fd558d18SJames Chapman break; 1206fd558d18SJames Chapman } 1207fd558d18SJames Chapman #ifdef CONFIG_XFRM 1208fd558d18SJames Chapman stats.using_ipsec = (sk->sk_policy[0] || sk->sk_policy[1]) ? 1 : 0; 1209fd558d18SJames Chapman #endif 1210fd558d18SJames Chapman pppol2tp_copy_stats(&stats, &tunnel->stats); 1211fd558d18SJames Chapman if (copy_to_user((void __user *) arg, &stats, sizeof(stats))) { 1212fd558d18SJames Chapman err = -EFAULT; 1213fd558d18SJames Chapman break; 1214fd558d18SJames Chapman } 1215fba40c63SAsbjørn Sloth Tønnesen l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: get L2TP stats\n", 1216a4ca44faSJoe Perches tunnel->name); 1217fd558d18SJames Chapman err = 0; 1218fd558d18SJames Chapman break; 1219fd558d18SJames Chapman 1220fd558d18SJames Chapman default: 1221fd558d18SJames Chapman err = -ENOSYS; 1222fd558d18SJames Chapman break; 1223fd558d18SJames Chapman } 1224fd558d18SJames Chapman 1225fd558d18SJames Chapman sock_put(sk); 1226fd558d18SJames Chapman 1227fd558d18SJames Chapman return err; 1228fd558d18SJames Chapman } 1229fd558d18SJames Chapman 1230fd558d18SJames Chapman /* Main ioctl() handler. 1231fd558d18SJames Chapman * Dispatch to tunnel or session helpers depending on the socket. 1232fd558d18SJames Chapman */ 1233fd558d18SJames Chapman static int pppol2tp_ioctl(struct socket *sock, unsigned int cmd, 1234fd558d18SJames Chapman unsigned long arg) 1235fd558d18SJames Chapman { 1236fd558d18SJames Chapman struct sock *sk = sock->sk; 1237fd558d18SJames Chapman struct l2tp_session *session; 1238fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 1239fd558d18SJames Chapman struct pppol2tp_session *ps; 1240fd558d18SJames Chapman int err; 1241fd558d18SJames Chapman 1242fd558d18SJames Chapman if (!sk) 1243fd558d18SJames Chapman return 0; 1244fd558d18SJames Chapman 1245fd558d18SJames Chapman err = -EBADF; 1246fd558d18SJames Chapman if (sock_flag(sk, SOCK_DEAD) != 0) 1247fd558d18SJames Chapman goto end; 1248fd558d18SJames Chapman 1249fd558d18SJames Chapman err = -ENOTCONN; 1250fd558d18SJames Chapman if ((sk->sk_user_data == NULL) || 1251fd558d18SJames Chapman (!(sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND)))) 1252fd558d18SJames Chapman goto end; 1253fd558d18SJames Chapman 1254fd558d18SJames Chapman /* Get session context from the socket */ 1255fd558d18SJames Chapman err = -EBADF; 1256fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 1257fd558d18SJames Chapman if (session == NULL) 1258fd558d18SJames Chapman goto end; 1259fd558d18SJames Chapman 1260fd558d18SJames Chapman /* Special case: if session's session_id is zero, treat ioctl as a 1261fd558d18SJames Chapman * tunnel ioctl 1262fd558d18SJames Chapman */ 1263fd558d18SJames Chapman ps = l2tp_session_priv(session); 1264fd558d18SJames Chapman if ((session->session_id == 0) && 1265fd558d18SJames Chapman (session->peer_session_id == 0)) { 1266fd558d18SJames Chapman err = -EBADF; 1267fd558d18SJames Chapman tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock); 1268fd558d18SJames Chapman if (tunnel == NULL) 1269fd558d18SJames Chapman goto end_put_sess; 1270fd558d18SJames Chapman 1271fd558d18SJames Chapman err = pppol2tp_tunnel_ioctl(tunnel, cmd, arg); 1272fd558d18SJames Chapman sock_put(ps->tunnel_sock); 1273fd558d18SJames Chapman goto end_put_sess; 1274fd558d18SJames Chapman } 1275fd558d18SJames Chapman 1276fd558d18SJames Chapman err = pppol2tp_session_ioctl(session, cmd, arg); 1277fd558d18SJames Chapman 1278fd558d18SJames Chapman end_put_sess: 1279fd558d18SJames Chapman sock_put(sk); 1280fd558d18SJames Chapman end: 1281fd558d18SJames Chapman return err; 1282fd558d18SJames Chapman } 1283fd558d18SJames Chapman 1284fd558d18SJames Chapman /***************************************************************************** 1285fd558d18SJames Chapman * setsockopt() / getsockopt() support. 1286fd558d18SJames Chapman * 1287fd558d18SJames Chapman * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP 1288fd558d18SJames Chapman * sockets. In order to control kernel tunnel features, we allow userspace to 1289fd558d18SJames Chapman * create a special "tunnel" PPPoX socket which is used for control only. 1290fd558d18SJames Chapman * Tunnel PPPoX sockets have session_id == 0 and simply allow the user 1291fd558d18SJames Chapman * application to issue L2TP setsockopt(), getsockopt() and ioctl() calls. 1292fd558d18SJames Chapman *****************************************************************************/ 1293fd558d18SJames Chapman 1294fd558d18SJames Chapman /* Tunnel setsockopt() helper. 1295fd558d18SJames Chapman */ 1296fd558d18SJames Chapman static int pppol2tp_tunnel_setsockopt(struct sock *sk, 1297fd558d18SJames Chapman struct l2tp_tunnel *tunnel, 1298fd558d18SJames Chapman int optname, int val) 1299fd558d18SJames Chapman { 1300fd558d18SJames Chapman int err = 0; 1301fd558d18SJames Chapman 1302fd558d18SJames Chapman switch (optname) { 1303fd558d18SJames Chapman case PPPOL2TP_SO_DEBUG: 1304fd558d18SJames Chapman tunnel->debug = val; 1305fba40c63SAsbjørn Sloth Tønnesen l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: set debug=%x\n", 1306a4ca44faSJoe Perches tunnel->name, tunnel->debug); 1307fd558d18SJames Chapman break; 1308fd558d18SJames Chapman 1309fd558d18SJames Chapman default: 1310fd558d18SJames Chapman err = -ENOPROTOOPT; 1311fd558d18SJames Chapman break; 1312fd558d18SJames Chapman } 1313fd558d18SJames Chapman 1314fd558d18SJames Chapman return err; 1315fd558d18SJames Chapman } 1316fd558d18SJames Chapman 1317fd558d18SJames Chapman /* Session setsockopt helper. 1318fd558d18SJames Chapman */ 1319fd558d18SJames Chapman static int pppol2tp_session_setsockopt(struct sock *sk, 1320fd558d18SJames Chapman struct l2tp_session *session, 1321fd558d18SJames Chapman int optname, int val) 1322fd558d18SJames Chapman { 1323fd558d18SJames Chapman int err = 0; 1324fd558d18SJames Chapman 1325fd558d18SJames Chapman switch (optname) { 1326fd558d18SJames Chapman case PPPOL2TP_SO_RECVSEQ: 1327fd558d18SJames Chapman if ((val != 0) && (val != 1)) { 1328fd558d18SJames Chapman err = -EINVAL; 1329fd558d18SJames Chapman break; 1330fd558d18SJames Chapman } 13313f9b9770SAsbjørn Sloth Tønnesen session->recv_seq = !!val; 1332fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1333a4ca44faSJoe Perches "%s: set recv_seq=%d\n", 1334a4ca44faSJoe Perches session->name, session->recv_seq); 1335fd558d18SJames Chapman break; 1336fd558d18SJames Chapman 1337fd558d18SJames Chapman case PPPOL2TP_SO_SENDSEQ: 1338fd558d18SJames Chapman if ((val != 0) && (val != 1)) { 1339fd558d18SJames Chapman err = -EINVAL; 1340fd558d18SJames Chapman break; 1341fd558d18SJames Chapman } 13423f9b9770SAsbjørn Sloth Tønnesen session->send_seq = !!val; 1343fd558d18SJames Chapman { 1344ee40fb2eSGuillaume Nault struct pppox_sock *po = pppox_sk(sk); 1345ee40fb2eSGuillaume Nault 1346fd558d18SJames Chapman po->chan.hdrlen = val ? PPPOL2TP_L2TP_HDR_SIZE_SEQ : 1347fd558d18SJames Chapman PPPOL2TP_L2TP_HDR_SIZE_NOSEQ; 1348fd558d18SJames Chapman } 1349bb5016eaSGuillaume Nault l2tp_session_set_header_len(session, session->tunnel->version); 1350fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1351a4ca44faSJoe Perches "%s: set send_seq=%d\n", 1352a4ca44faSJoe Perches session->name, session->send_seq); 1353fd558d18SJames Chapman break; 1354fd558d18SJames Chapman 1355fd558d18SJames Chapman case PPPOL2TP_SO_LNSMODE: 1356fd558d18SJames Chapman if ((val != 0) && (val != 1)) { 1357fd558d18SJames Chapman err = -EINVAL; 1358fd558d18SJames Chapman break; 1359fd558d18SJames Chapman } 13603f9b9770SAsbjørn Sloth Tønnesen session->lns_mode = !!val; 1361fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1362a4ca44faSJoe Perches "%s: set lns_mode=%d\n", 1363a4ca44faSJoe Perches session->name, session->lns_mode); 1364fd558d18SJames Chapman break; 1365fd558d18SJames Chapman 1366fd558d18SJames Chapman case PPPOL2TP_SO_DEBUG: 1367fd558d18SJames Chapman session->debug = val; 1368fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: set debug=%x\n", 1369a4ca44faSJoe Perches session->name, session->debug); 1370fd558d18SJames Chapman break; 1371fd558d18SJames Chapman 1372fd558d18SJames Chapman case PPPOL2TP_SO_REORDERTO: 1373fd558d18SJames Chapman session->reorder_timeout = msecs_to_jiffies(val); 1374fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1375a4ca44faSJoe Perches "%s: set reorder_timeout=%d\n", 1376a4ca44faSJoe Perches session->name, session->reorder_timeout); 1377fd558d18SJames Chapman break; 1378fd558d18SJames Chapman 1379fd558d18SJames Chapman default: 1380fd558d18SJames Chapman err = -ENOPROTOOPT; 1381fd558d18SJames Chapman break; 1382fd558d18SJames Chapman } 1383fd558d18SJames Chapman 1384fd558d18SJames Chapman return err; 1385fd558d18SJames Chapman } 1386fd558d18SJames Chapman 1387fd558d18SJames Chapman /* Main setsockopt() entry point. 1388fd558d18SJames Chapman * Does API checks, then calls either the tunnel or session setsockopt 1389fd558d18SJames Chapman * handler, according to whether the PPPoL2TP socket is a for a regular 1390fd558d18SJames Chapman * session or the special tunnel type. 1391fd558d18SJames Chapman */ 1392fd558d18SJames Chapman static int pppol2tp_setsockopt(struct socket *sock, int level, int optname, 1393fd558d18SJames Chapman char __user *optval, unsigned int optlen) 1394fd558d18SJames Chapman { 1395fd558d18SJames Chapman struct sock *sk = sock->sk; 1396fd558d18SJames Chapman struct l2tp_session *session; 1397fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 1398fd558d18SJames Chapman struct pppol2tp_session *ps; 1399fd558d18SJames Chapman int val; 1400fd558d18SJames Chapman int err; 1401fd558d18SJames Chapman 1402fd558d18SJames Chapman if (level != SOL_PPPOL2TP) 14033cf521f7SSasha Levin return -EINVAL; 1404fd558d18SJames Chapman 1405fd558d18SJames Chapman if (optlen < sizeof(int)) 1406fd558d18SJames Chapman return -EINVAL; 1407fd558d18SJames Chapman 1408fd558d18SJames Chapman if (get_user(val, (int __user *)optval)) 1409fd558d18SJames Chapman return -EFAULT; 1410fd558d18SJames Chapman 1411fd558d18SJames Chapman err = -ENOTCONN; 1412fd558d18SJames Chapman if (sk->sk_user_data == NULL) 1413fd558d18SJames Chapman goto end; 1414fd558d18SJames Chapman 1415fd558d18SJames Chapman /* Get session context from the socket */ 1416fd558d18SJames Chapman err = -EBADF; 1417fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 1418fd558d18SJames Chapman if (session == NULL) 1419fd558d18SJames Chapman goto end; 1420fd558d18SJames Chapman 1421fd558d18SJames Chapman /* Special case: if session_id == 0x0000, treat as operation on tunnel 1422fd558d18SJames Chapman */ 1423fd558d18SJames Chapman ps = l2tp_session_priv(session); 1424fd558d18SJames Chapman if ((session->session_id == 0) && 1425fd558d18SJames Chapman (session->peer_session_id == 0)) { 1426fd558d18SJames Chapman err = -EBADF; 1427fd558d18SJames Chapman tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock); 1428fd558d18SJames Chapman if (tunnel == NULL) 1429fd558d18SJames Chapman goto end_put_sess; 1430fd558d18SJames Chapman 1431fd558d18SJames Chapman err = pppol2tp_tunnel_setsockopt(sk, tunnel, optname, val); 1432fd558d18SJames Chapman sock_put(ps->tunnel_sock); 1433fd558d18SJames Chapman } else 1434fd558d18SJames Chapman err = pppol2tp_session_setsockopt(sk, session, optname, val); 1435fd558d18SJames Chapman 1436fd558d18SJames Chapman end_put_sess: 1437fd558d18SJames Chapman sock_put(sk); 1438fd558d18SJames Chapman end: 1439fd558d18SJames Chapman return err; 1440fd558d18SJames Chapman } 1441fd558d18SJames Chapman 1442fd558d18SJames Chapman /* Tunnel getsockopt helper. Called with sock locked. 1443fd558d18SJames Chapman */ 1444fd558d18SJames Chapman static int pppol2tp_tunnel_getsockopt(struct sock *sk, 1445fd558d18SJames Chapman struct l2tp_tunnel *tunnel, 1446fd558d18SJames Chapman int optname, int *val) 1447fd558d18SJames Chapman { 1448fd558d18SJames Chapman int err = 0; 1449fd558d18SJames Chapman 1450fd558d18SJames Chapman switch (optname) { 1451fd558d18SJames Chapman case PPPOL2TP_SO_DEBUG: 1452fd558d18SJames Chapman *val = tunnel->debug; 1453fba40c63SAsbjørn Sloth Tønnesen l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: get debug=%x\n", 1454a4ca44faSJoe Perches tunnel->name, tunnel->debug); 1455fd558d18SJames Chapman break; 1456fd558d18SJames Chapman 1457fd558d18SJames Chapman default: 1458fd558d18SJames Chapman err = -ENOPROTOOPT; 1459fd558d18SJames Chapman break; 1460fd558d18SJames Chapman } 1461fd558d18SJames Chapman 1462fd558d18SJames Chapman return err; 1463fd558d18SJames Chapman } 1464fd558d18SJames Chapman 1465fd558d18SJames Chapman /* Session getsockopt helper. Called with sock locked. 1466fd558d18SJames Chapman */ 1467fd558d18SJames Chapman static int pppol2tp_session_getsockopt(struct sock *sk, 1468fd558d18SJames Chapman struct l2tp_session *session, 1469fd558d18SJames Chapman int optname, int *val) 1470fd558d18SJames Chapman { 1471fd558d18SJames Chapman int err = 0; 1472fd558d18SJames Chapman 1473fd558d18SJames Chapman switch (optname) { 1474fd558d18SJames Chapman case PPPOL2TP_SO_RECVSEQ: 1475fd558d18SJames Chapman *val = session->recv_seq; 1476fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1477fd558d18SJames Chapman "%s: get recv_seq=%d\n", session->name, *val); 1478fd558d18SJames Chapman break; 1479fd558d18SJames Chapman 1480fd558d18SJames Chapman case PPPOL2TP_SO_SENDSEQ: 1481fd558d18SJames Chapman *val = session->send_seq; 1482fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1483fd558d18SJames Chapman "%s: get send_seq=%d\n", session->name, *val); 1484fd558d18SJames Chapman break; 1485fd558d18SJames Chapman 1486fd558d18SJames Chapman case PPPOL2TP_SO_LNSMODE: 1487fd558d18SJames Chapman *val = session->lns_mode; 1488fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1489fd558d18SJames Chapman "%s: get lns_mode=%d\n", session->name, *val); 1490fd558d18SJames Chapman break; 1491fd558d18SJames Chapman 1492fd558d18SJames Chapman case PPPOL2TP_SO_DEBUG: 1493fd558d18SJames Chapman *val = session->debug; 1494fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: get debug=%d\n", 1495a4ca44faSJoe Perches session->name, *val); 1496fd558d18SJames Chapman break; 1497fd558d18SJames Chapman 1498fd558d18SJames Chapman case PPPOL2TP_SO_REORDERTO: 1499fd558d18SJames Chapman *val = (int) jiffies_to_msecs(session->reorder_timeout); 1500fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1501fd558d18SJames Chapman "%s: get reorder_timeout=%d\n", session->name, *val); 1502fd558d18SJames Chapman break; 1503fd558d18SJames Chapman 1504fd558d18SJames Chapman default: 1505fd558d18SJames Chapman err = -ENOPROTOOPT; 1506fd558d18SJames Chapman } 1507fd558d18SJames Chapman 1508fd558d18SJames Chapman return err; 1509fd558d18SJames Chapman } 1510fd558d18SJames Chapman 1511fd558d18SJames Chapman /* Main getsockopt() entry point. 1512fd558d18SJames Chapman * Does API checks, then calls either the tunnel or session getsockopt 1513fd558d18SJames Chapman * handler, according to whether the PPPoX socket is a for a regular session 1514fd558d18SJames Chapman * or the special tunnel type. 1515fd558d18SJames Chapman */ 1516e3192690SJoe Perches static int pppol2tp_getsockopt(struct socket *sock, int level, int optname, 1517e3192690SJoe Perches char __user *optval, int __user *optlen) 1518fd558d18SJames Chapman { 1519fd558d18SJames Chapman struct sock *sk = sock->sk; 1520fd558d18SJames Chapman struct l2tp_session *session; 1521fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 1522fd558d18SJames Chapman int val, len; 1523fd558d18SJames Chapman int err; 1524fd558d18SJames Chapman struct pppol2tp_session *ps; 1525fd558d18SJames Chapman 1526fd558d18SJames Chapman if (level != SOL_PPPOL2TP) 15273cf521f7SSasha Levin return -EINVAL; 1528fd558d18SJames Chapman 1529e3192690SJoe Perches if (get_user(len, optlen)) 1530fd558d18SJames Chapman return -EFAULT; 1531fd558d18SJames Chapman 1532fd558d18SJames Chapman len = min_t(unsigned int, len, sizeof(int)); 1533fd558d18SJames Chapman 1534fd558d18SJames Chapman if (len < 0) 1535fd558d18SJames Chapman return -EINVAL; 1536fd558d18SJames Chapman 1537fd558d18SJames Chapman err = -ENOTCONN; 1538fd558d18SJames Chapman if (sk->sk_user_data == NULL) 1539fd558d18SJames Chapman goto end; 1540fd558d18SJames Chapman 1541fd558d18SJames Chapman /* Get the session context */ 1542fd558d18SJames Chapman err = -EBADF; 1543fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 1544fd558d18SJames Chapman if (session == NULL) 1545fd558d18SJames Chapman goto end; 1546fd558d18SJames Chapman 1547fd558d18SJames Chapman /* Special case: if session_id == 0x0000, treat as operation on tunnel */ 1548fd558d18SJames Chapman ps = l2tp_session_priv(session); 1549fd558d18SJames Chapman if ((session->session_id == 0) && 1550fd558d18SJames Chapman (session->peer_session_id == 0)) { 1551fd558d18SJames Chapman err = -EBADF; 1552fd558d18SJames Chapman tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock); 1553fd558d18SJames Chapman if (tunnel == NULL) 1554fd558d18SJames Chapman goto end_put_sess; 1555fd558d18SJames Chapman 1556fd558d18SJames Chapman err = pppol2tp_tunnel_getsockopt(sk, tunnel, optname, &val); 1557fd558d18SJames Chapman sock_put(ps->tunnel_sock); 1558321a52a3SGuillaume Nault if (err) 1559321a52a3SGuillaume Nault goto end_put_sess; 1560321a52a3SGuillaume Nault } else { 1561fd558d18SJames Chapman err = pppol2tp_session_getsockopt(sk, session, optname, &val); 1562321a52a3SGuillaume Nault if (err) 1563321a52a3SGuillaume Nault goto end_put_sess; 1564321a52a3SGuillaume Nault } 1565fd558d18SJames Chapman 1566fd558d18SJames Chapman err = -EFAULT; 1567e3192690SJoe Perches if (put_user(len, optlen)) 1568fd558d18SJames Chapman goto end_put_sess; 1569fd558d18SJames Chapman 1570fd558d18SJames Chapman if (copy_to_user((void __user *) optval, &val, len)) 1571fd558d18SJames Chapman goto end_put_sess; 1572fd558d18SJames Chapman 1573fd558d18SJames Chapman err = 0; 1574fd558d18SJames Chapman 1575fd558d18SJames Chapman end_put_sess: 1576fd558d18SJames Chapman sock_put(sk); 1577fd558d18SJames Chapman end: 1578fd558d18SJames Chapman return err; 1579fd558d18SJames Chapman } 1580fd558d18SJames Chapman 1581fd558d18SJames Chapman /***************************************************************************** 1582fd558d18SJames Chapman * /proc filesystem for debug 1583f7faffa3SJames Chapman * Since the original pppol2tp driver provided /proc/net/pppol2tp for 1584f7faffa3SJames Chapman * L2TPv2, we dump only L2TPv2 tunnels and sessions here. 1585fd558d18SJames Chapman *****************************************************************************/ 1586fd558d18SJames Chapman 1587fd558d18SJames Chapman static unsigned int pppol2tp_net_id; 1588fd558d18SJames Chapman 1589fd558d18SJames Chapman #ifdef CONFIG_PROC_FS 1590fd558d18SJames Chapman 1591fd558d18SJames Chapman struct pppol2tp_seq_data { 1592fd558d18SJames Chapman struct seq_net_private p; 1593fd558d18SJames Chapman int tunnel_idx; /* current tunnel */ 1594fd558d18SJames Chapman int session_idx; /* index of session within current tunnel */ 1595fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 1596fd558d18SJames Chapman struct l2tp_session *session; /* NULL means get next tunnel */ 1597fd558d18SJames Chapman }; 1598fd558d18SJames Chapman 1599fd558d18SJames Chapman static void pppol2tp_next_tunnel(struct net *net, struct pppol2tp_seq_data *pd) 1600fd558d18SJames Chapman { 1601f7faffa3SJames Chapman for (;;) { 1602fd558d18SJames Chapman pd->tunnel = l2tp_tunnel_find_nth(net, pd->tunnel_idx); 1603fd558d18SJames Chapman pd->tunnel_idx++; 1604f7faffa3SJames Chapman 1605f7faffa3SJames Chapman if (pd->tunnel == NULL) 1606f7faffa3SJames Chapman break; 1607f7faffa3SJames Chapman 1608f7faffa3SJames Chapman /* Ignore L2TPv3 tunnels */ 1609f7faffa3SJames Chapman if (pd->tunnel->version < 3) 1610f7faffa3SJames Chapman break; 1611f7faffa3SJames Chapman } 1612fd558d18SJames Chapman } 1613fd558d18SJames Chapman 1614fd558d18SJames Chapman static void pppol2tp_next_session(struct net *net, struct pppol2tp_seq_data *pd) 1615fd558d18SJames Chapman { 1616*a4346210SGuillaume Nault pd->session = l2tp_session_get_nth(pd->tunnel, pd->session_idx); 1617fd558d18SJames Chapman pd->session_idx++; 1618f7faffa3SJames Chapman 1619fd558d18SJames Chapman if (pd->session == NULL) { 1620fd558d18SJames Chapman pd->session_idx = 0; 1621fd558d18SJames Chapman pppol2tp_next_tunnel(net, pd); 1622fd558d18SJames Chapman } 1623fd558d18SJames Chapman } 1624fd558d18SJames Chapman 1625fd558d18SJames Chapman static void *pppol2tp_seq_start(struct seq_file *m, loff_t *offs) 1626fd558d18SJames Chapman { 1627fd558d18SJames Chapman struct pppol2tp_seq_data *pd = SEQ_START_TOKEN; 1628fd558d18SJames Chapman loff_t pos = *offs; 1629fd558d18SJames Chapman struct net *net; 1630fd558d18SJames Chapman 1631fd558d18SJames Chapman if (!pos) 1632fd558d18SJames Chapman goto out; 1633fd558d18SJames Chapman 1634fd558d18SJames Chapman BUG_ON(m->private == NULL); 1635fd558d18SJames Chapman pd = m->private; 1636fd558d18SJames Chapman net = seq_file_net(m); 1637fd558d18SJames Chapman 1638fd558d18SJames Chapman if (pd->tunnel == NULL) 1639fd558d18SJames Chapman pppol2tp_next_tunnel(net, pd); 1640fd558d18SJames Chapman else 1641fd558d18SJames Chapman pppol2tp_next_session(net, pd); 1642fd558d18SJames Chapman 1643fd558d18SJames Chapman /* NULL tunnel and session indicates end of list */ 1644fd558d18SJames Chapman if ((pd->tunnel == NULL) && (pd->session == NULL)) 1645fd558d18SJames Chapman pd = NULL; 1646fd558d18SJames Chapman 1647fd558d18SJames Chapman out: 1648fd558d18SJames Chapman return pd; 1649fd558d18SJames Chapman } 1650fd558d18SJames Chapman 1651fd558d18SJames Chapman static void *pppol2tp_seq_next(struct seq_file *m, void *v, loff_t *pos) 1652fd558d18SJames Chapman { 1653fd558d18SJames Chapman (*pos)++; 1654fd558d18SJames Chapman return NULL; 1655fd558d18SJames Chapman } 1656fd558d18SJames Chapman 1657fd558d18SJames Chapman static void pppol2tp_seq_stop(struct seq_file *p, void *v) 1658fd558d18SJames Chapman { 1659fd558d18SJames Chapman /* nothing to do */ 1660fd558d18SJames Chapman } 1661fd558d18SJames Chapman 1662fd558d18SJames Chapman static void pppol2tp_seq_tunnel_show(struct seq_file *m, void *v) 1663fd558d18SJames Chapman { 1664fd558d18SJames Chapman struct l2tp_tunnel *tunnel = v; 1665fd558d18SJames Chapman 1666fd558d18SJames Chapman seq_printf(m, "\nTUNNEL '%s', %c %d\n", 1667fd558d18SJames Chapman tunnel->name, 1668fd558d18SJames Chapman (tunnel == tunnel->sock->sk_user_data) ? 'Y' : 'N', 1669fbea9e07SReshetova, Elena refcount_read(&tunnel->ref_count) - 1); 16707b7c0719STom Parkin seq_printf(m, " %08x %ld/%ld/%ld %ld/%ld/%ld\n", 1671fd558d18SJames Chapman tunnel->debug, 16727b7c0719STom Parkin atomic_long_read(&tunnel->stats.tx_packets), 16737b7c0719STom Parkin atomic_long_read(&tunnel->stats.tx_bytes), 16747b7c0719STom Parkin atomic_long_read(&tunnel->stats.tx_errors), 16757b7c0719STom Parkin atomic_long_read(&tunnel->stats.rx_packets), 16767b7c0719STom Parkin atomic_long_read(&tunnel->stats.rx_bytes), 16777b7c0719STom Parkin atomic_long_read(&tunnel->stats.rx_errors)); 1678fd558d18SJames Chapman } 1679fd558d18SJames Chapman 1680fd558d18SJames Chapman static void pppol2tp_seq_session_show(struct seq_file *m, void *v) 1681fd558d18SJames Chapman { 1682fd558d18SJames Chapman struct l2tp_session *session = v; 1683fd558d18SJames Chapman struct l2tp_tunnel *tunnel = session->tunnel; 1684ee40fb2eSGuillaume Nault unsigned char state; 1685ee40fb2eSGuillaume Nault char user_data_ok; 1686ee40fb2eSGuillaume Nault struct sock *sk; 1687fd558d18SJames Chapman u32 ip = 0; 1688fd558d18SJames Chapman u16 port = 0; 1689fd558d18SJames Chapman 1690fd558d18SJames Chapman if (tunnel->sock) { 1691fd558d18SJames Chapman struct inet_sock *inet = inet_sk(tunnel->sock); 1692fd558d18SJames Chapman ip = ntohl(inet->inet_saddr); 1693fd558d18SJames Chapman port = ntohs(inet->inet_sport); 1694fd558d18SJames Chapman } 1695fd558d18SJames Chapman 1696ee40fb2eSGuillaume Nault sk = pppol2tp_session_get_sock(session); 1697ee40fb2eSGuillaume Nault if (sk) { 1698ee40fb2eSGuillaume Nault state = sk->sk_state; 1699ee40fb2eSGuillaume Nault user_data_ok = (session == sk->sk_user_data) ? 'Y' : 'N'; 1700ee40fb2eSGuillaume Nault } else { 1701ee40fb2eSGuillaume Nault state = 0; 1702ee40fb2eSGuillaume Nault user_data_ok = 'N'; 1703ee40fb2eSGuillaume Nault } 1704ee40fb2eSGuillaume Nault 1705fd558d18SJames Chapman seq_printf(m, " SESSION '%s' %08X/%d %04X/%04X -> " 1706fd558d18SJames Chapman "%04X/%04X %d %c\n", 1707fd558d18SJames Chapman session->name, ip, port, 1708fd558d18SJames Chapman tunnel->tunnel_id, 1709fd558d18SJames Chapman session->session_id, 1710fd558d18SJames Chapman tunnel->peer_tunnel_id, 1711fd558d18SJames Chapman session->peer_session_id, 1712ee40fb2eSGuillaume Nault state, user_data_ok); 1713fd558d18SJames Chapman seq_printf(m, " %d/%d/%c/%c/%s %08x %u\n", 1714fd558d18SJames Chapman session->mtu, session->mru, 1715fd558d18SJames Chapman session->recv_seq ? 'R' : '-', 1716fd558d18SJames Chapman session->send_seq ? 'S' : '-', 1717fd558d18SJames Chapman session->lns_mode ? "LNS" : "LAC", 1718fd558d18SJames Chapman session->debug, 1719fd558d18SJames Chapman jiffies_to_msecs(session->reorder_timeout)); 17207b7c0719STom Parkin seq_printf(m, " %hu/%hu %ld/%ld/%ld %ld/%ld/%ld\n", 1721fd558d18SJames Chapman session->nr, session->ns, 17227b7c0719STom Parkin atomic_long_read(&session->stats.tx_packets), 17237b7c0719STom Parkin atomic_long_read(&session->stats.tx_bytes), 17247b7c0719STom Parkin atomic_long_read(&session->stats.tx_errors), 17257b7c0719STom Parkin atomic_long_read(&session->stats.rx_packets), 17267b7c0719STom Parkin atomic_long_read(&session->stats.rx_bytes), 17277b7c0719STom Parkin atomic_long_read(&session->stats.rx_errors)); 17289345471bSJames Chapman 1729ee40fb2eSGuillaume Nault if (sk) { 1730ee40fb2eSGuillaume Nault struct pppox_sock *po = pppox_sk(sk); 1731ee40fb2eSGuillaume Nault 17329345471bSJames Chapman seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan)); 1733ee40fb2eSGuillaume Nault sock_put(sk); 1734ee40fb2eSGuillaume Nault } 1735fd558d18SJames Chapman } 1736fd558d18SJames Chapman 1737fd558d18SJames Chapman static int pppol2tp_seq_show(struct seq_file *m, void *v) 1738fd558d18SJames Chapman { 1739fd558d18SJames Chapman struct pppol2tp_seq_data *pd = v; 1740fd558d18SJames Chapman 1741fd558d18SJames Chapman /* display header on line 1 */ 1742fd558d18SJames Chapman if (v == SEQ_START_TOKEN) { 1743fd558d18SJames Chapman seq_puts(m, "PPPoL2TP driver info, " PPPOL2TP_DRV_VERSION "\n"); 1744fd558d18SJames Chapman seq_puts(m, "TUNNEL name, user-data-ok session-count\n"); 1745fd558d18SJames Chapman seq_puts(m, " debug tx-pkts/bytes/errs rx-pkts/bytes/errs\n"); 1746fd558d18SJames Chapman seq_puts(m, " SESSION name, addr/port src-tid/sid " 1747fd558d18SJames Chapman "dest-tid/sid state user-data-ok\n"); 1748fd558d18SJames Chapman seq_puts(m, " mtu/mru/rcvseq/sendseq/lns debug reorderto\n"); 1749fd558d18SJames Chapman seq_puts(m, " nr/ns tx-pkts/bytes/errs rx-pkts/bytes/errs\n"); 1750fd558d18SJames Chapman goto out; 1751fd558d18SJames Chapman } 1752fd558d18SJames Chapman 1753fd558d18SJames Chapman /* Show the tunnel or session context. 1754fd558d18SJames Chapman */ 1755e08293a4SGuillaume Nault if (!pd->session) { 1756fd558d18SJames Chapman pppol2tp_seq_tunnel_show(m, pd->tunnel); 1757e08293a4SGuillaume Nault } else { 1758fd558d18SJames Chapman pppol2tp_seq_session_show(m, pd->session); 1759e08293a4SGuillaume Nault l2tp_session_dec_refcount(pd->session); 1760e08293a4SGuillaume Nault } 1761fd558d18SJames Chapman 1762fd558d18SJames Chapman out: 1763fd558d18SJames Chapman return 0; 1764fd558d18SJames Chapman } 1765fd558d18SJames Chapman 1766fd558d18SJames Chapman static const struct seq_operations pppol2tp_seq_ops = { 1767fd558d18SJames Chapman .start = pppol2tp_seq_start, 1768fd558d18SJames Chapman .next = pppol2tp_seq_next, 1769fd558d18SJames Chapman .stop = pppol2tp_seq_stop, 1770fd558d18SJames Chapman .show = pppol2tp_seq_show, 1771fd558d18SJames Chapman }; 1772fd558d18SJames Chapman 1773fd558d18SJames Chapman /* Called when our /proc file is opened. We allocate data for use when 1774fd558d18SJames Chapman * iterating our tunnel / session contexts and store it in the private 1775fd558d18SJames Chapman * data of the seq_file. 1776fd558d18SJames Chapman */ 1777fd558d18SJames Chapman static int pppol2tp_proc_open(struct inode *inode, struct file *file) 1778fd558d18SJames Chapman { 1779fd558d18SJames Chapman return seq_open_net(inode, file, &pppol2tp_seq_ops, 1780fd558d18SJames Chapman sizeof(struct pppol2tp_seq_data)); 1781fd558d18SJames Chapman } 1782fd558d18SJames Chapman 1783fd558d18SJames Chapman static const struct file_operations pppol2tp_proc_fops = { 1784fd558d18SJames Chapman .owner = THIS_MODULE, 1785fd558d18SJames Chapman .open = pppol2tp_proc_open, 1786fd558d18SJames Chapman .read = seq_read, 1787fd558d18SJames Chapman .llseek = seq_lseek, 1788fd558d18SJames Chapman .release = seq_release_net, 1789fd558d18SJames Chapman }; 1790fd558d18SJames Chapman 1791fd558d18SJames Chapman #endif /* CONFIG_PROC_FS */ 1792fd558d18SJames Chapman 1793fd558d18SJames Chapman /***************************************************************************** 1794fd558d18SJames Chapman * Network namespace 1795fd558d18SJames Chapman *****************************************************************************/ 1796fd558d18SJames Chapman 1797fd558d18SJames Chapman static __net_init int pppol2tp_init_net(struct net *net) 1798fd558d18SJames Chapman { 1799fd558d18SJames Chapman struct proc_dir_entry *pde; 1800fd558d18SJames Chapman int err = 0; 1801fd558d18SJames Chapman 1802d4beaa66SGao feng pde = proc_create("pppol2tp", S_IRUGO, net->proc_net, 1803d4beaa66SGao feng &pppol2tp_proc_fops); 1804fd558d18SJames Chapman if (!pde) { 1805fd558d18SJames Chapman err = -ENOMEM; 1806fd558d18SJames Chapman goto out; 1807fd558d18SJames Chapman } 1808fd558d18SJames Chapman 1809fd558d18SJames Chapman out: 1810fd558d18SJames Chapman return err; 1811fd558d18SJames Chapman } 1812fd558d18SJames Chapman 1813fd558d18SJames Chapman static __net_exit void pppol2tp_exit_net(struct net *net) 1814fd558d18SJames Chapman { 1815ece31ffdSGao feng remove_proc_entry("pppol2tp", net->proc_net); 1816fd558d18SJames Chapman } 1817fd558d18SJames Chapman 1818fd558d18SJames Chapman static struct pernet_operations pppol2tp_net_ops = { 1819fd558d18SJames Chapman .init = pppol2tp_init_net, 1820fd558d18SJames Chapman .exit = pppol2tp_exit_net, 1821fd558d18SJames Chapman .id = &pppol2tp_net_id, 1822fd558d18SJames Chapman }; 1823fd558d18SJames Chapman 1824fd558d18SJames Chapman /***************************************************************************** 1825fd558d18SJames Chapman * Init and cleanup 1826fd558d18SJames Chapman *****************************************************************************/ 1827fd558d18SJames Chapman 1828fd558d18SJames Chapman static const struct proto_ops pppol2tp_ops = { 1829fd558d18SJames Chapman .family = AF_PPPOX, 1830fd558d18SJames Chapman .owner = THIS_MODULE, 1831fd558d18SJames Chapman .release = pppol2tp_release, 1832fd558d18SJames Chapman .bind = sock_no_bind, 1833fd558d18SJames Chapman .connect = pppol2tp_connect, 1834fd558d18SJames Chapman .socketpair = sock_no_socketpair, 1835fd558d18SJames Chapman .accept = sock_no_accept, 1836fd558d18SJames Chapman .getname = pppol2tp_getname, 1837fd558d18SJames Chapman .poll = datagram_poll, 1838fd558d18SJames Chapman .listen = sock_no_listen, 1839fd558d18SJames Chapman .shutdown = sock_no_shutdown, 1840fd558d18SJames Chapman .setsockopt = pppol2tp_setsockopt, 1841fd558d18SJames Chapman .getsockopt = pppol2tp_getsockopt, 1842fd558d18SJames Chapman .sendmsg = pppol2tp_sendmsg, 1843fd558d18SJames Chapman .recvmsg = pppol2tp_recvmsg, 1844fd558d18SJames Chapman .mmap = sock_no_mmap, 1845fd558d18SJames Chapman .ioctl = pppox_ioctl, 1846fd558d18SJames Chapman }; 1847fd558d18SJames Chapman 1848756e64a0SEric Dumazet static const struct pppox_proto pppol2tp_proto = { 1849fd558d18SJames Chapman .create = pppol2tp_create, 1850e1558a93SWei Yongjun .ioctl = pppol2tp_ioctl, 1851e1558a93SWei Yongjun .owner = THIS_MODULE, 1852fd558d18SJames Chapman }; 1853fd558d18SJames Chapman 1854309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 1855309795f4SJames Chapman 1856309795f4SJames Chapman static const struct l2tp_nl_cmd_ops pppol2tp_nl_cmd_ops = { 1857309795f4SJames Chapman .session_create = pppol2tp_session_create, 1858cf2f5c88STom Parkin .session_delete = l2tp_session_delete, 1859309795f4SJames Chapman }; 1860309795f4SJames Chapman 1861309795f4SJames Chapman #endif /* CONFIG_L2TP_V3 */ 1862309795f4SJames Chapman 1863fd558d18SJames Chapman static int __init pppol2tp_init(void) 1864fd558d18SJames Chapman { 1865fd558d18SJames Chapman int err; 1866fd558d18SJames Chapman 1867fd558d18SJames Chapman err = register_pernet_device(&pppol2tp_net_ops); 1868fd558d18SJames Chapman if (err) 1869fd558d18SJames Chapman goto out; 1870fd558d18SJames Chapman 1871fd558d18SJames Chapman err = proto_register(&pppol2tp_sk_proto, 0); 1872fd558d18SJames Chapman if (err) 1873fd558d18SJames Chapman goto out_unregister_pppol2tp_pernet; 1874fd558d18SJames Chapman 1875fd558d18SJames Chapman err = register_pppox_proto(PX_PROTO_OL2TP, &pppol2tp_proto); 1876fd558d18SJames Chapman if (err) 1877fd558d18SJames Chapman goto out_unregister_pppol2tp_proto; 1878fd558d18SJames Chapman 1879309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 1880309795f4SJames Chapman err = l2tp_nl_register_ops(L2TP_PWTYPE_PPP, &pppol2tp_nl_cmd_ops); 1881309795f4SJames Chapman if (err) 1882309795f4SJames Chapman goto out_unregister_pppox; 1883309795f4SJames Chapman #endif 1884309795f4SJames Chapman 1885a4ca44faSJoe Perches pr_info("PPPoL2TP kernel driver, %s\n", PPPOL2TP_DRV_VERSION); 1886fd558d18SJames Chapman 1887fd558d18SJames Chapman out: 1888fd558d18SJames Chapman return err; 1889309795f4SJames Chapman 1890309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 1891309795f4SJames Chapman out_unregister_pppox: 1892309795f4SJames Chapman unregister_pppox_proto(PX_PROTO_OL2TP); 1893309795f4SJames Chapman #endif 1894fd558d18SJames Chapman out_unregister_pppol2tp_proto: 1895fd558d18SJames Chapman proto_unregister(&pppol2tp_sk_proto); 1896fd558d18SJames Chapman out_unregister_pppol2tp_pernet: 1897fd558d18SJames Chapman unregister_pernet_device(&pppol2tp_net_ops); 1898fd558d18SJames Chapman goto out; 1899fd558d18SJames Chapman } 1900fd558d18SJames Chapman 1901fd558d18SJames Chapman static void __exit pppol2tp_exit(void) 1902fd558d18SJames Chapman { 1903309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 1904309795f4SJames Chapman l2tp_nl_unregister_ops(L2TP_PWTYPE_PPP); 1905309795f4SJames Chapman #endif 1906fd558d18SJames Chapman unregister_pppox_proto(PX_PROTO_OL2TP); 1907fd558d18SJames Chapman proto_unregister(&pppol2tp_sk_proto); 1908fd558d18SJames Chapman unregister_pernet_device(&pppol2tp_net_ops); 1909fd558d18SJames Chapman } 1910fd558d18SJames Chapman 1911fd558d18SJames Chapman module_init(pppol2tp_init); 1912fd558d18SJames Chapman module_exit(pppol2tp_exit); 1913fd558d18SJames Chapman 1914fd558d18SJames Chapman MODULE_AUTHOR("James Chapman <jchapman@katalix.com>"); 1915fd558d18SJames Chapman MODULE_DESCRIPTION("PPP over L2TP over UDP"); 1916fd558d18SJames Chapman MODULE_LICENSE("GPL"); 1917fd558d18SJames Chapman MODULE_VERSION(PPPOL2TP_DRV_VERSION); 1918681b4d88SGuillaume Nault MODULE_ALIAS_NET_PF_PROTO(PF_PPPOX, PX_PROTO_OL2TP); 1919249ee819SGuillaume Nault MODULE_ALIAS_L2TP_PWTYPE(7); 1920