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 int flags; /* accessed by PPPIOCGFLAGS. 131fd558d18SJames Chapman * Unused. */ 132fd558d18SJames Chapman }; 133fd558d18SJames Chapman 134fd558d18SJames Chapman static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb); 135fd558d18SJames Chapman 136d7100da0Sstephen hemminger static const struct ppp_channel_ops pppol2tp_chan_ops = { 137d7100da0Sstephen hemminger .start_xmit = pppol2tp_xmit, 138d7100da0Sstephen hemminger }; 139d7100da0Sstephen hemminger 140fd558d18SJames Chapman static const struct proto_ops pppol2tp_ops; 141fd558d18SJames Chapman 142ee40fb2eSGuillaume Nault /* Retrieves the pppol2tp socket associated to a session. 143ee40fb2eSGuillaume Nault * A reference is held on the returned socket, so this function must be paired 144ee40fb2eSGuillaume Nault * with sock_put(). 145ee40fb2eSGuillaume Nault */ 146ee40fb2eSGuillaume Nault static struct sock *pppol2tp_session_get_sock(struct l2tp_session *session) 147ee40fb2eSGuillaume Nault { 148ee40fb2eSGuillaume Nault struct pppol2tp_session *ps = l2tp_session_priv(session); 149ee40fb2eSGuillaume Nault struct sock *sk; 150ee40fb2eSGuillaume Nault 151ee40fb2eSGuillaume Nault rcu_read_lock(); 152ee40fb2eSGuillaume Nault sk = rcu_dereference(ps->sk); 153ee40fb2eSGuillaume Nault if (sk) 154ee40fb2eSGuillaume Nault sock_hold(sk); 155ee40fb2eSGuillaume Nault rcu_read_unlock(); 156ee40fb2eSGuillaume Nault 157ee40fb2eSGuillaume Nault return sk; 158ee40fb2eSGuillaume Nault } 159ee40fb2eSGuillaume Nault 160fd558d18SJames Chapman /* Helpers to obtain tunnel/session contexts from sockets. 161fd558d18SJames Chapman */ 162fd558d18SJames Chapman static inline struct l2tp_session *pppol2tp_sock_to_session(struct sock *sk) 163fd558d18SJames Chapman { 164fd558d18SJames Chapman struct l2tp_session *session; 165fd558d18SJames Chapman 166fd558d18SJames Chapman if (sk == NULL) 167fd558d18SJames Chapman return NULL; 168fd558d18SJames Chapman 169fd558d18SJames Chapman sock_hold(sk); 170fd558d18SJames Chapman session = (struct l2tp_session *)(sk->sk_user_data); 171fd558d18SJames Chapman if (session == NULL) { 172fd558d18SJames Chapman sock_put(sk); 173fd558d18SJames Chapman goto out; 174fd558d18SJames Chapman } 175fd558d18SJames Chapman 176fd558d18SJames Chapman BUG_ON(session->magic != L2TP_SESSION_MAGIC); 177fd558d18SJames Chapman 178fd558d18SJames Chapman out: 179fd558d18SJames Chapman return session; 180fd558d18SJames Chapman } 181fd558d18SJames Chapman 182fd558d18SJames Chapman /***************************************************************************** 183fd558d18SJames Chapman * Receive data handling 184fd558d18SJames Chapman *****************************************************************************/ 185fd558d18SJames Chapman 186fd558d18SJames Chapman static int pppol2tp_recv_payload_hook(struct sk_buff *skb) 187fd558d18SJames Chapman { 188fd558d18SJames Chapman /* Skip PPP header, if present. In testing, Microsoft L2TP clients 189fd558d18SJames Chapman * don't send the PPP header (PPP header compression enabled), but 190fd558d18SJames Chapman * other clients can include the header. So we cope with both cases 191fd558d18SJames Chapman * here. The PPP header is always FF03 when using L2TP. 192fd558d18SJames Chapman * 193fd558d18SJames Chapman * Note that skb->data[] isn't dereferenced from a u16 ptr here since 194fd558d18SJames Chapman * the field may be unaligned. 195fd558d18SJames Chapman */ 196fd558d18SJames Chapman if (!pskb_may_pull(skb, 2)) 197fd558d18SJames Chapman return 1; 198fd558d18SJames Chapman 19954c151d9SGao Feng if ((skb->data[0] == PPP_ALLSTATIONS) && (skb->data[1] == PPP_UI)) 200fd558d18SJames Chapman skb_pull(skb, 2); 201fd558d18SJames Chapman 202fd558d18SJames Chapman return 0; 203fd558d18SJames Chapman } 204fd558d18SJames Chapman 205fd558d18SJames Chapman /* Receive message. This is the recvmsg for the PPPoL2TP socket. 206fd558d18SJames Chapman */ 2071b784140SYing Xue static int pppol2tp_recvmsg(struct socket *sock, struct msghdr *msg, 2081b784140SYing Xue size_t len, int flags) 209fd558d18SJames Chapman { 210fd558d18SJames Chapman int err; 211fd558d18SJames Chapman struct sk_buff *skb; 212fd558d18SJames Chapman struct sock *sk = sock->sk; 213fd558d18SJames Chapman 214fd558d18SJames Chapman err = -EIO; 215fd558d18SJames Chapman if (sk->sk_state & PPPOX_BOUND) 216fd558d18SJames Chapman goto end; 217fd558d18SJames Chapman 218fd558d18SJames Chapman err = 0; 219fd558d18SJames Chapman skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT, 220fd558d18SJames Chapman flags & MSG_DONTWAIT, &err); 221fd558d18SJames Chapman if (!skb) 222fd558d18SJames Chapman goto end; 223fd558d18SJames Chapman 224fd558d18SJames Chapman if (len > skb->len) 225fd558d18SJames Chapman len = skb->len; 226fd558d18SJames Chapman else if (len < skb->len) 227fd558d18SJames Chapman msg->msg_flags |= MSG_TRUNC; 228fd558d18SJames Chapman 22951f3d02bSDavid S. Miller err = skb_copy_datagram_msg(skb, 0, msg, len); 230fd558d18SJames Chapman if (likely(err == 0)) 231fd558d18SJames Chapman err = len; 232fd558d18SJames Chapman 233fd558d18SJames Chapman kfree_skb(skb); 234fd558d18SJames Chapman end: 235fd558d18SJames Chapman return err; 236fd558d18SJames Chapman } 237fd558d18SJames Chapman 238fd558d18SJames Chapman static void pppol2tp_recv(struct l2tp_session *session, struct sk_buff *skb, int data_len) 239fd558d18SJames Chapman { 240fd558d18SJames Chapman struct pppol2tp_session *ps = l2tp_session_priv(session); 241fd558d18SJames Chapman struct sock *sk = NULL; 242fd558d18SJames Chapman 243fd558d18SJames Chapman /* If the socket is bound, send it in to PPP's input queue. Otherwise 244fd558d18SJames Chapman * queue it on the session socket. 245fd558d18SJames Chapman */ 246ee40fb2eSGuillaume Nault rcu_read_lock(); 247ee40fb2eSGuillaume Nault sk = rcu_dereference(ps->sk); 248fd558d18SJames Chapman if (sk == NULL) 249fd558d18SJames Chapman goto no_sock; 250fd558d18SJames Chapman 251fd558d18SJames Chapman if (sk->sk_state & PPPOX_BOUND) { 252fd558d18SJames Chapman struct pppox_sock *po; 25398f40b3eSGuillaume Nault 254fba40c63SAsbjørn Sloth Tønnesen l2tp_dbg(session, L2TP_MSG_DATA, 255fd558d18SJames Chapman "%s: recv %d byte data frame, passing to ppp\n", 256fd558d18SJames Chapman session->name, data_len); 257fd558d18SJames Chapman 258fd558d18SJames Chapman po = pppox_sk(sk); 259fd558d18SJames Chapman ppp_input(&po->chan, skb); 260fd558d18SJames Chapman } else { 261fba40c63SAsbjørn Sloth Tønnesen l2tp_dbg(session, L2TP_MSG_DATA, 2629e9cb622SGuillaume Nault "%s: recv %d byte data frame, passing to L2TP socket\n", 2639e9cb622SGuillaume Nault session->name, data_len); 264fd558d18SJames Chapman 2659e9cb622SGuillaume Nault if (sock_queue_rcv_skb(sk, skb) < 0) { 2667b7c0719STom Parkin atomic_long_inc(&session->stats.rx_errors); 267fd558d18SJames Chapman kfree_skb(skb); 268fd558d18SJames Chapman } 2699e9cb622SGuillaume Nault } 270ee40fb2eSGuillaume Nault rcu_read_unlock(); 271fd558d18SJames Chapman 272fd558d18SJames Chapman return; 273fd558d18SJames Chapman 274fd558d18SJames Chapman no_sock: 275ee40fb2eSGuillaume Nault rcu_read_unlock(); 276fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_DATA, "%s: no socket\n", session->name); 277fd558d18SJames Chapman kfree_skb(skb); 278fd558d18SJames Chapman } 279fd558d18SJames Chapman 280fd558d18SJames Chapman /************************************************************************ 281fd558d18SJames Chapman * Transmit handling 282fd558d18SJames Chapman ***********************************************************************/ 283fd558d18SJames Chapman 284fd558d18SJames Chapman /* This is the sendmsg for the PPPoL2TP pppol2tp_session socket. We come here 285fd558d18SJames Chapman * when a user application does a sendmsg() on the session socket. L2TP and 286fd558d18SJames Chapman * PPP headers must be inserted into the user's data. 287fd558d18SJames Chapman */ 2881b784140SYing Xue static int pppol2tp_sendmsg(struct socket *sock, struct msghdr *m, 289fd558d18SJames Chapman size_t total_len) 290fd558d18SJames Chapman { 291fd558d18SJames Chapman struct sock *sk = sock->sk; 292fd558d18SJames Chapman struct sk_buff *skb; 293fd558d18SJames Chapman int error; 294fd558d18SJames Chapman struct l2tp_session *session; 295fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 2960d76751fSJames Chapman int uhlen; 297fd558d18SJames Chapman 298fd558d18SJames Chapman error = -ENOTCONN; 299fd558d18SJames Chapman if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED)) 300fd558d18SJames Chapman goto error; 301fd558d18SJames Chapman 302fd558d18SJames Chapman /* Get session and tunnel contexts */ 303fd558d18SJames Chapman error = -EBADF; 304fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 305fd558d18SJames Chapman if (session == NULL) 306fd558d18SJames Chapman goto error; 307fd558d18SJames Chapman 3087198c77aSGuillaume Nault tunnel = session->tunnel; 309fd558d18SJames Chapman 3100d76751fSJames Chapman uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0; 3110d76751fSJames Chapman 312fd558d18SJames Chapman /* Allocate a socket buffer */ 313fd558d18SJames Chapman error = -ENOMEM; 314fd558d18SJames Chapman skb = sock_wmalloc(sk, NET_SKB_PAD + sizeof(struct iphdr) + 3150d76751fSJames Chapman uhlen + session->hdr_len + 31654c151d9SGao Feng 2 + total_len, /* 2 bytes for PPP_ALLSTATIONS & PPP_UI */ 317fd558d18SJames Chapman 0, GFP_KERNEL); 318fd558d18SJames Chapman if (!skb) 3197198c77aSGuillaume Nault goto error_put_sess; 320fd558d18SJames Chapman 321fd558d18SJames Chapman /* Reserve space for headers. */ 322fd558d18SJames Chapman skb_reserve(skb, NET_SKB_PAD); 323fd558d18SJames Chapman skb_reset_network_header(skb); 324fd558d18SJames Chapman skb_reserve(skb, sizeof(struct iphdr)); 325fd558d18SJames Chapman skb_reset_transport_header(skb); 3260d76751fSJames Chapman skb_reserve(skb, uhlen); 327fd558d18SJames Chapman 328fd558d18SJames Chapman /* Add PPP header */ 32954c151d9SGao Feng skb->data[0] = PPP_ALLSTATIONS; 33054c151d9SGao Feng skb->data[1] = PPP_UI; 331fd558d18SJames Chapman skb_put(skb, 2); 332fd558d18SJames Chapman 333fd558d18SJames Chapman /* Copy user data into skb */ 3346ce8e9ceSAl Viro error = memcpy_from_msg(skb_put(skb, total_len), m, total_len); 335fd558d18SJames Chapman if (error < 0) { 336fd558d18SJames Chapman kfree_skb(skb); 3377198c77aSGuillaume Nault goto error_put_sess; 338fd558d18SJames Chapman } 339fd558d18SJames Chapman 340455cc32bSEric Dumazet local_bh_disable(); 341fd558d18SJames Chapman l2tp_xmit_skb(session, skb, session->hdr_len); 342455cc32bSEric Dumazet local_bh_enable(); 343fd558d18SJames Chapman 3448b82547eSGuillaume Nault sock_put(sk); 345fd558d18SJames Chapman 346a6f79d0fSGuillaume Nault return total_len; 347fd558d18SJames Chapman 348fd558d18SJames Chapman error_put_sess: 349fd558d18SJames Chapman sock_put(sk); 350fd558d18SJames Chapman error: 351fd558d18SJames Chapman return error; 352fd558d18SJames Chapman } 353fd558d18SJames Chapman 354fd558d18SJames Chapman /* Transmit function called by generic PPP driver. Sends PPP frame 355fd558d18SJames Chapman * over PPPoL2TP socket. 356fd558d18SJames Chapman * 357fd558d18SJames Chapman * This is almost the same as pppol2tp_sendmsg(), but rather than 358fd558d18SJames Chapman * being called with a msghdr from userspace, it is called with a skb 359fd558d18SJames Chapman * from the kernel. 360fd558d18SJames Chapman * 361fd558d18SJames Chapman * The supplied skb from ppp doesn't have enough headroom for the 362fd558d18SJames Chapman * insertion of L2TP, UDP and IP headers so we need to allocate more 363fd558d18SJames Chapman * headroom in the skb. This will create a cloned skb. But we must be 364fd558d18SJames Chapman * careful in the error case because the caller will expect to free 365fd558d18SJames Chapman * the skb it supplied, not our cloned skb. So we take care to always 366fd558d18SJames Chapman * leave the original skb unfreed if we return an error. 367fd558d18SJames Chapman */ 368fd558d18SJames Chapman static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb) 369fd558d18SJames Chapman { 370fd558d18SJames Chapman struct sock *sk = (struct sock *) chan->private; 371fd558d18SJames Chapman struct l2tp_session *session; 372fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 37309df57caSEric Dumazet int uhlen, headroom; 374fd558d18SJames Chapman 375fd558d18SJames Chapman if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED)) 376fd558d18SJames Chapman goto abort; 377fd558d18SJames Chapman 378fd558d18SJames Chapman /* Get session and tunnel contexts from the socket */ 379fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 380fd558d18SJames Chapman if (session == NULL) 381fd558d18SJames Chapman goto abort; 382fd558d18SJames Chapman 3837198c77aSGuillaume Nault tunnel = session->tunnel; 384fd558d18SJames Chapman 38509df57caSEric Dumazet uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0; 38609df57caSEric Dumazet headroom = NET_SKB_PAD + 38709df57caSEric Dumazet sizeof(struct iphdr) + /* IP header */ 38809df57caSEric Dumazet uhlen + /* UDP header (if L2TP_ENCAPTYPE_UDP) */ 38909df57caSEric Dumazet session->hdr_len + /* L2TP header */ 39054c151d9SGao Feng 2; /* 2 bytes for PPP_ALLSTATIONS & PPP_UI */ 39109df57caSEric Dumazet if (skb_cow_head(skb, headroom)) 3927198c77aSGuillaume Nault goto abort_put_sess; 393fd558d18SJames Chapman 394fd558d18SJames Chapman /* Setup PPP header */ 39554c151d9SGao Feng __skb_push(skb, 2); 39654c151d9SGao Feng skb->data[0] = PPP_ALLSTATIONS; 39754c151d9SGao Feng skb->data[1] = PPP_UI; 398fd558d18SJames Chapman 399455cc32bSEric Dumazet local_bh_disable(); 400e0d4435fSJames Chapman l2tp_xmit_skb(session, skb, session->hdr_len); 401455cc32bSEric Dumazet local_bh_enable(); 402fd558d18SJames Chapman 403fd558d18SJames Chapman sock_put(sk); 4047198c77aSGuillaume Nault 405fd558d18SJames Chapman return 1; 406fd558d18SJames Chapman 407fd558d18SJames Chapman abort_put_sess: 408fd558d18SJames Chapman sock_put(sk); 409fd558d18SJames Chapman abort: 410fd558d18SJames Chapman /* Free the original skb */ 411fd558d18SJames Chapman kfree_skb(skb); 412fd558d18SJames Chapman return 1; 413fd558d18SJames Chapman } 414fd558d18SJames Chapman 415fd558d18SJames Chapman /***************************************************************************** 416fd558d18SJames Chapman * Session (and tunnel control) socket create/destroy. 417fd558d18SJames Chapman *****************************************************************************/ 418fd558d18SJames Chapman 419d02ba2a6SJames Chapman static void pppol2tp_put_sk(struct rcu_head *head) 420d02ba2a6SJames Chapman { 421d02ba2a6SJames Chapman struct pppol2tp_session *ps; 422d02ba2a6SJames Chapman 423d02ba2a6SJames Chapman ps = container_of(head, typeof(*ps), rcu); 424d02ba2a6SJames Chapman sock_put(ps->__sk); 425d02ba2a6SJames Chapman } 426d02ba2a6SJames Chapman 427fd558d18SJames Chapman /* Called by l2tp_core when a session socket is being closed. 428fd558d18SJames Chapman */ 429fd558d18SJames Chapman static void pppol2tp_session_close(struct l2tp_session *session) 430fd558d18SJames Chapman { 431fd558d18SJames Chapman } 432fd558d18SJames Chapman 433fd558d18SJames Chapman /* Really kill the session socket. (Called from sock_put() if 434fd558d18SJames Chapman * refcnt == 0.) 435fd558d18SJames Chapman */ 436fd558d18SJames Chapman static void pppol2tp_session_destruct(struct sock *sk) 437fd558d18SJames Chapman { 438f6e16b29STom Parkin struct l2tp_session *session = sk->sk_user_data; 439e91793bbSGuillaume Nault 440e91793bbSGuillaume Nault skb_queue_purge(&sk->sk_receive_queue); 441e91793bbSGuillaume Nault skb_queue_purge(&sk->sk_write_queue); 442e91793bbSGuillaume Nault 443f6e16b29STom Parkin if (session) { 444fd558d18SJames Chapman sk->sk_user_data = NULL; 445fd558d18SJames Chapman BUG_ON(session->magic != L2TP_SESSION_MAGIC); 446fd558d18SJames Chapman l2tp_session_dec_refcount(session); 447fd558d18SJames Chapman } 448fd558d18SJames Chapman } 449fd558d18SJames Chapman 450fd558d18SJames Chapman /* Called when the PPPoX socket (session) is closed. 451fd558d18SJames Chapman */ 452fd558d18SJames Chapman static int pppol2tp_release(struct socket *sock) 453fd558d18SJames Chapman { 454fd558d18SJames Chapman struct sock *sk = sock->sk; 455fd558d18SJames Chapman struct l2tp_session *session; 456fd558d18SJames Chapman int error; 457fd558d18SJames Chapman 458fd558d18SJames Chapman if (!sk) 459fd558d18SJames Chapman return 0; 460fd558d18SJames Chapman 461fd558d18SJames Chapman error = -EBADF; 462fd558d18SJames Chapman lock_sock(sk); 463fd558d18SJames Chapman if (sock_flag(sk, SOCK_DEAD) != 0) 464fd558d18SJames Chapman goto error; 465fd558d18SJames Chapman 466fd558d18SJames Chapman pppox_unbind_sock(sk); 467fd558d18SJames Chapman 468fd558d18SJames Chapman /* Signal the death of the socket. */ 469fd558d18SJames Chapman sk->sk_state = PPPOX_DEAD; 470fd558d18SJames Chapman sock_orphan(sk); 471fd558d18SJames Chapman sock->sk = NULL; 472fd558d18SJames Chapman 473d02ba2a6SJames Chapman session = pppol2tp_sock_to_session(sk); 474d02ba2a6SJames Chapman if (session) { 4753d609342SGuillaume Nault struct pppol2tp_session *ps; 4763d609342SGuillaume Nault 477d02ba2a6SJames Chapman l2tp_session_delete(session); 4783d609342SGuillaume Nault 4793d609342SGuillaume Nault ps = l2tp_session_priv(session); 4803d609342SGuillaume Nault mutex_lock(&ps->sk_lock); 4813d609342SGuillaume Nault ps->__sk = rcu_dereference_protected(ps->sk, 4823d609342SGuillaume Nault lockdep_is_held(&ps->sk_lock)); 4833d609342SGuillaume Nault RCU_INIT_POINTER(ps->sk, NULL); 4843d609342SGuillaume Nault mutex_unlock(&ps->sk_lock); 4853d609342SGuillaume Nault call_rcu(&ps->rcu, pppol2tp_put_sk); 4863d609342SGuillaume Nault 4873d609342SGuillaume Nault /* Rely on the sock_put() call at the end of the function for 4883d609342SGuillaume Nault * dropping the reference held by pppol2tp_sock_to_session(). 4893d609342SGuillaume Nault * The last reference will be dropped by pppol2tp_put_sk(). 4903d609342SGuillaume Nault */ 491cf2f5c88STom Parkin } 492d02ba2a6SJames Chapman 493fd558d18SJames Chapman release_sock(sk); 494fd558d18SJames Chapman 495fd558d18SJames Chapman /* This will delete the session context via 496fd558d18SJames Chapman * pppol2tp_session_destruct() if the socket's refcnt drops to 497fd558d18SJames Chapman * zero. 498fd558d18SJames Chapman */ 499fd558d18SJames Chapman sock_put(sk); 500fd558d18SJames Chapman 501fd558d18SJames Chapman return 0; 502fd558d18SJames Chapman 503fd558d18SJames Chapman error: 504fd558d18SJames Chapman release_sock(sk); 505fd558d18SJames Chapman return error; 506fd558d18SJames Chapman } 507fd558d18SJames Chapman 508fd558d18SJames Chapman static struct proto pppol2tp_sk_proto = { 509fd558d18SJames Chapman .name = "PPPOL2TP", 510fd558d18SJames Chapman .owner = THIS_MODULE, 511fd558d18SJames Chapman .obj_size = sizeof(struct pppox_sock), 512fd558d18SJames Chapman }; 513fd558d18SJames Chapman 514fd558d18SJames Chapman static int pppol2tp_backlog_recv(struct sock *sk, struct sk_buff *skb) 515fd558d18SJames Chapman { 516fd558d18SJames Chapman int rc; 517fd558d18SJames Chapman 518fd558d18SJames Chapman rc = l2tp_udp_encap_recv(sk, skb); 519fd558d18SJames Chapman if (rc) 520fd558d18SJames Chapman kfree_skb(skb); 521fd558d18SJames Chapman 522fd558d18SJames Chapman return NET_RX_SUCCESS; 523fd558d18SJames Chapman } 524fd558d18SJames Chapman 525fd558d18SJames Chapman /* socket() handler. Initialize a new struct sock. 526fd558d18SJames Chapman */ 52711aa9c28SEric W. Biederman static int pppol2tp_create(struct net *net, struct socket *sock, int kern) 528fd558d18SJames Chapman { 529fd558d18SJames Chapman int error = -ENOMEM; 530fd558d18SJames Chapman struct sock *sk; 531fd558d18SJames Chapman 53211aa9c28SEric W. Biederman sk = sk_alloc(net, PF_PPPOX, GFP_KERNEL, &pppol2tp_sk_proto, kern); 533fd558d18SJames Chapman if (!sk) 534fd558d18SJames Chapman goto out; 535fd558d18SJames Chapman 536fd558d18SJames Chapman sock_init_data(sock, sk); 537fd558d18SJames Chapman 538fd558d18SJames Chapman sock->state = SS_UNCONNECTED; 539fd558d18SJames Chapman sock->ops = &pppol2tp_ops; 540fd558d18SJames Chapman 541fd558d18SJames Chapman sk->sk_backlog_rcv = pppol2tp_backlog_recv; 542fd558d18SJames Chapman sk->sk_protocol = PX_PROTO_OL2TP; 543fd558d18SJames Chapman sk->sk_family = PF_PPPOX; 544fd558d18SJames Chapman sk->sk_state = PPPOX_NONE; 545fd558d18SJames Chapman sk->sk_type = SOCK_STREAM; 546fd558d18SJames Chapman sk->sk_destruct = pppol2tp_session_destruct; 547fd558d18SJames Chapman 548fd558d18SJames Chapman error = 0; 549fd558d18SJames Chapman 550fd558d18SJames Chapman out: 551fd558d18SJames Chapman return error; 552fd558d18SJames Chapman } 553fd558d18SJames Chapman 5549dd79945SJavier Martinez Canillas #if IS_ENABLED(CONFIG_L2TP_DEBUGFS) 5550ad66140SJames Chapman static void pppol2tp_show(struct seq_file *m, void *arg) 5560ad66140SJames Chapman { 5570ad66140SJames Chapman struct l2tp_session *session = arg; 558ee40fb2eSGuillaume Nault struct sock *sk; 5590ad66140SJames Chapman 560ee40fb2eSGuillaume Nault sk = pppol2tp_session_get_sock(session); 561ee40fb2eSGuillaume Nault if (sk) { 562ee40fb2eSGuillaume Nault struct pppox_sock *po = pppox_sk(sk); 563ee40fb2eSGuillaume Nault 5640ad66140SJames Chapman seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan)); 565ee40fb2eSGuillaume Nault sock_put(sk); 5660ad66140SJames Chapman } 5670ad66140SJames Chapman } 5680ad66140SJames Chapman #endif 5690ad66140SJames Chapman 570f98be6c6SGuillaume Nault static void pppol2tp_session_init(struct l2tp_session *session) 571f98be6c6SGuillaume Nault { 572f98be6c6SGuillaume Nault struct pppol2tp_session *ps; 573f98be6c6SGuillaume Nault struct dst_entry *dst; 574f98be6c6SGuillaume Nault 575f98be6c6SGuillaume Nault session->recv_skb = pppol2tp_recv; 576f98be6c6SGuillaume Nault session->session_close = pppol2tp_session_close; 577f98be6c6SGuillaume Nault #if IS_ENABLED(CONFIG_L2TP_DEBUGFS) 578f98be6c6SGuillaume Nault session->show = pppol2tp_show; 579f98be6c6SGuillaume Nault #endif 580f98be6c6SGuillaume Nault 581f98be6c6SGuillaume Nault ps = l2tp_session_priv(session); 582f98be6c6SGuillaume Nault mutex_init(&ps->sk_lock); 583f98be6c6SGuillaume Nault ps->owner = current->pid; 584f98be6c6SGuillaume Nault 585f98be6c6SGuillaume Nault /* If PMTU discovery was enabled, use the MTU that was discovered */ 586f98be6c6SGuillaume Nault dst = sk_dst_get(session->tunnel->sock); 587f98be6c6SGuillaume Nault if (dst) { 588f98be6c6SGuillaume Nault u32 pmtu = dst_mtu(dst); 589f98be6c6SGuillaume Nault 590f98be6c6SGuillaume Nault if (pmtu) { 591f98be6c6SGuillaume Nault session->mtu = pmtu - PPPOL2TP_HEADER_OVERHEAD; 592f98be6c6SGuillaume Nault session->mru = pmtu - PPPOL2TP_HEADER_OVERHEAD; 593f98be6c6SGuillaume Nault } 594f98be6c6SGuillaume Nault dst_release(dst); 595f98be6c6SGuillaume Nault } 596f98be6c6SGuillaume Nault } 597f98be6c6SGuillaume Nault 598fd558d18SJames Chapman /* connect() handler. Attach a PPPoX socket to a tunnel UDP socket 599fd558d18SJames Chapman */ 600fd558d18SJames Chapman static int pppol2tp_connect(struct socket *sock, struct sockaddr *uservaddr, 601fd558d18SJames Chapman int sockaddr_len, int flags) 602fd558d18SJames Chapman { 603fd558d18SJames Chapman struct sock *sk = sock->sk; 604fd558d18SJames Chapman struct sockaddr_pppol2tp *sp = (struct sockaddr_pppol2tp *) uservaddr; 605fd558d18SJames Chapman struct pppox_sock *po = pppox_sk(sk); 606fd558d18SJames Chapman struct l2tp_session *session = NULL; 607fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 608fd558d18SJames Chapman struct pppol2tp_session *ps; 609fd558d18SJames Chapman struct l2tp_session_cfg cfg = { 0, }; 610fd558d18SJames Chapman int error = 0; 611e0d4435fSJames Chapman u32 tunnel_id, peer_tunnel_id; 612e0d4435fSJames Chapman u32 session_id, peer_session_id; 613dbdbc73bSGuillaume Nault bool drop_refcnt = false; 614f9e56bafSGuillaume Nault bool drop_tunnel = false; 615*bda06be2SGuillaume Nault bool new_session = false; 616*bda06be2SGuillaume Nault bool new_tunnel = false; 617e0d4435fSJames Chapman int ver = 2; 618e0d4435fSJames Chapman int fd; 619fd558d18SJames Chapman 620fd558d18SJames Chapman lock_sock(sk); 621fd558d18SJames Chapman 622fd558d18SJames Chapman error = -EINVAL; 623eb1c28c0SGuillaume Nault 624eb1c28c0SGuillaume Nault if (sockaddr_len != sizeof(struct sockaddr_pppol2tp) && 625eb1c28c0SGuillaume Nault sockaddr_len != sizeof(struct sockaddr_pppol2tpv3) && 626eb1c28c0SGuillaume Nault sockaddr_len != sizeof(struct sockaddr_pppol2tpin6) && 627eb1c28c0SGuillaume Nault sockaddr_len != sizeof(struct sockaddr_pppol2tpv3in6)) 628eb1c28c0SGuillaume Nault goto end; 629eb1c28c0SGuillaume Nault 630fd558d18SJames Chapman if (sp->sa_protocol != PX_PROTO_OL2TP) 631fd558d18SJames Chapman goto end; 632fd558d18SJames Chapman 633fd558d18SJames Chapman /* Check for already bound sockets */ 634fd558d18SJames Chapman error = -EBUSY; 635fd558d18SJames Chapman if (sk->sk_state & PPPOX_CONNECTED) 636fd558d18SJames Chapman goto end; 637fd558d18SJames Chapman 638fd558d18SJames Chapman /* We don't supporting rebinding anyway */ 639fd558d18SJames Chapman error = -EALREADY; 640fd558d18SJames Chapman if (sk->sk_user_data) 641fd558d18SJames Chapman goto end; /* socket is already attached */ 642fd558d18SJames Chapman 643b79585f5SJames Chapman /* Get params from socket address. Handle L2TPv2 and L2TPv3. 644b79585f5SJames Chapman * This is nasty because there are different sockaddr_pppol2tp 645b79585f5SJames Chapman * structs for L2TPv2, L2TPv3, over IPv4 and IPv6. We use 646b79585f5SJames Chapman * the sockaddr size to determine which structure the caller 647b79585f5SJames Chapman * is using. 648b79585f5SJames Chapman */ 649b79585f5SJames Chapman peer_tunnel_id = 0; 650e0d4435fSJames Chapman if (sockaddr_len == sizeof(struct sockaddr_pppol2tp)) { 651e0d4435fSJames Chapman fd = sp->pppol2tp.fd; 652e0d4435fSJames Chapman tunnel_id = sp->pppol2tp.s_tunnel; 653e0d4435fSJames Chapman peer_tunnel_id = sp->pppol2tp.d_tunnel; 654e0d4435fSJames Chapman session_id = sp->pppol2tp.s_session; 655e0d4435fSJames Chapman peer_session_id = sp->pppol2tp.d_session; 656e0d4435fSJames Chapman } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3)) { 657b79585f5SJames Chapman struct sockaddr_pppol2tpv3 *sp3 = 658b79585f5SJames Chapman (struct sockaddr_pppol2tpv3 *) sp; 659e0d4435fSJames Chapman ver = 3; 660e0d4435fSJames Chapman fd = sp3->pppol2tp.fd; 661e0d4435fSJames Chapman tunnel_id = sp3->pppol2tp.s_tunnel; 662e0d4435fSJames Chapman peer_tunnel_id = sp3->pppol2tp.d_tunnel; 663e0d4435fSJames Chapman session_id = sp3->pppol2tp.s_session; 664e0d4435fSJames Chapman peer_session_id = sp3->pppol2tp.d_session; 665b79585f5SJames Chapman } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpin6)) { 666b79585f5SJames Chapman struct sockaddr_pppol2tpin6 *sp6 = 667b79585f5SJames Chapman (struct sockaddr_pppol2tpin6 *) sp; 668b79585f5SJames Chapman fd = sp6->pppol2tp.fd; 669b79585f5SJames Chapman tunnel_id = sp6->pppol2tp.s_tunnel; 670b79585f5SJames Chapman peer_tunnel_id = sp6->pppol2tp.d_tunnel; 671b79585f5SJames Chapman session_id = sp6->pppol2tp.s_session; 672b79585f5SJames Chapman peer_session_id = sp6->pppol2tp.d_session; 673b79585f5SJames Chapman } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3in6)) { 674b79585f5SJames Chapman struct sockaddr_pppol2tpv3in6 *sp6 = 675b79585f5SJames Chapman (struct sockaddr_pppol2tpv3in6 *) sp; 676b79585f5SJames Chapman ver = 3; 677b79585f5SJames Chapman fd = sp6->pppol2tp.fd; 678b79585f5SJames Chapman tunnel_id = sp6->pppol2tp.s_tunnel; 679b79585f5SJames Chapman peer_tunnel_id = sp6->pppol2tp.d_tunnel; 680b79585f5SJames Chapman session_id = sp6->pppol2tp.s_session; 681b79585f5SJames Chapman peer_session_id = sp6->pppol2tp.d_session; 682e0d4435fSJames Chapman } else { 683fd558d18SJames Chapman error = -EINVAL; 684e0d4435fSJames Chapman goto end; /* bad socket address */ 685e0d4435fSJames Chapman } 686e0d4435fSJames Chapman 687e0d4435fSJames Chapman /* Don't bind if tunnel_id is 0 */ 688e0d4435fSJames Chapman error = -EINVAL; 689e0d4435fSJames Chapman if (tunnel_id == 0) 690fd558d18SJames Chapman goto end; 691fd558d18SJames Chapman 692f9e56bafSGuillaume Nault tunnel = l2tp_tunnel_get(sock_net(sk), tunnel_id); 693f9e56bafSGuillaume Nault if (tunnel) 694f9e56bafSGuillaume Nault drop_tunnel = true; 695309795f4SJames Chapman 696e0d4435fSJames Chapman /* Special case: create tunnel context if session_id and 697e0d4435fSJames Chapman * peer_session_id is 0. Otherwise look up tunnel using supplied 698fd558d18SJames Chapman * tunnel id. 699fd558d18SJames Chapman */ 700e0d4435fSJames Chapman if ((session_id == 0) && (peer_session_id == 0)) { 701309795f4SJames Chapman if (tunnel == NULL) { 702309795f4SJames Chapman struct l2tp_tunnel_cfg tcfg = { 703309795f4SJames Chapman .encap = L2TP_ENCAPTYPE_UDP, 704309795f4SJames Chapman .debug = 0, 705309795f4SJames Chapman }; 7063e1bc8bfSGuillaume Nault 7073e1bc8bfSGuillaume Nault /* Prevent l2tp_tunnel_register() from trying to set up 7083e1bc8bfSGuillaume Nault * a kernel socket. 7093e1bc8bfSGuillaume Nault */ 7103e1bc8bfSGuillaume Nault if (fd < 0) { 7113e1bc8bfSGuillaume Nault error = -EBADF; 7123e1bc8bfSGuillaume Nault goto end; 7133e1bc8bfSGuillaume Nault } 7143e1bc8bfSGuillaume Nault 715309795f4SJames Chapman error = l2tp_tunnel_create(sock_net(sk), fd, ver, tunnel_id, peer_tunnel_id, &tcfg, &tunnel); 716fd558d18SJames Chapman if (error < 0) 717fd558d18SJames Chapman goto end; 7186b9f3423SGuillaume Nault 7196b9f3423SGuillaume Nault l2tp_tunnel_inc_refcount(tunnel); 7206b9f3423SGuillaume Nault error = l2tp_tunnel_register(tunnel, sock_net(sk), 7216b9f3423SGuillaume Nault &tcfg); 7226b9f3423SGuillaume Nault if (error < 0) { 7236b9f3423SGuillaume Nault kfree(tunnel); 7246b9f3423SGuillaume Nault goto end; 7256b9f3423SGuillaume Nault } 7266b9f3423SGuillaume Nault drop_tunnel = true; 727*bda06be2SGuillaume Nault new_tunnel = true; 728309795f4SJames Chapman } 729fd558d18SJames Chapman } else { 730fd558d18SJames Chapman /* Error if we can't find the tunnel */ 731fd558d18SJames Chapman error = -ENOENT; 732fd558d18SJames Chapman if (tunnel == NULL) 733fd558d18SJames Chapman goto end; 734fd558d18SJames Chapman 735fd558d18SJames Chapman /* Error if socket is not prepped */ 736fd558d18SJames Chapman if (tunnel->sock == NULL) 737fd558d18SJames Chapman goto end; 738fd558d18SJames Chapman } 739fd558d18SJames Chapman 740fd558d18SJames Chapman if (tunnel->recv_payload_hook == NULL) 741fd558d18SJames Chapman tunnel->recv_payload_hook = pppol2tp_recv_payload_hook; 742fd558d18SJames Chapman 743b79585f5SJames Chapman if (tunnel->peer_tunnel_id == 0) 744b79585f5SJames Chapman tunnel->peer_tunnel_id = peer_tunnel_id; 745fd558d18SJames Chapman 746a4346210SGuillaume Nault session = l2tp_session_get(sock_net(sk), tunnel, session_id); 747dbdbc73bSGuillaume Nault if (session) { 748dbdbc73bSGuillaume Nault drop_refcnt = true; 7497ac6ab1fSGuillaume Nault 7507ac6ab1fSGuillaume Nault if (session->pwtype != L2TP_PWTYPE_PPP) { 7517ac6ab1fSGuillaume Nault error = -EPROTOTYPE; 7527ac6ab1fSGuillaume Nault goto end; 7537ac6ab1fSGuillaume Nault } 7547ac6ab1fSGuillaume Nault 755dbdbc73bSGuillaume Nault ps = l2tp_session_priv(session); 756fd558d18SJames Chapman 757dbdbc73bSGuillaume Nault /* Using a pre-existing session is fine as long as it hasn't 758dbdbc73bSGuillaume Nault * been connected yet. 759dbdbc73bSGuillaume Nault */ 760ee40fb2eSGuillaume Nault mutex_lock(&ps->sk_lock); 761ee40fb2eSGuillaume Nault if (rcu_dereference_protected(ps->sk, 7623d609342SGuillaume Nault lockdep_is_held(&ps->sk_lock)) || 7633d609342SGuillaume Nault ps->__sk) { 764ee40fb2eSGuillaume Nault mutex_unlock(&ps->sk_lock); 765dbdbc73bSGuillaume Nault error = -EEXIST; 766dbdbc73bSGuillaume Nault goto end; 767dbdbc73bSGuillaume Nault } 768309795f4SJames Chapman } else { 769dbdbc73bSGuillaume Nault /* Default MTU must allow space for UDP/L2TP/PPP headers */ 770dbdbc73bSGuillaume Nault cfg.mtu = 1500 - PPPOL2TP_HEADER_OVERHEAD; 771dbdbc73bSGuillaume Nault cfg.mru = cfg.mtu; 77290904ff5SGuillaume Nault cfg.pw_type = L2TP_PWTYPE_PPP; 773fd558d18SJames Chapman 774dbdbc73bSGuillaume Nault session = l2tp_session_create(sizeof(struct pppol2tp_session), 775dbdbc73bSGuillaume Nault tunnel, session_id, 776dbdbc73bSGuillaume Nault peer_session_id, &cfg); 777dbdbc73bSGuillaume Nault if (IS_ERR(session)) { 778dbdbc73bSGuillaume Nault error = PTR_ERR(session); 779309795f4SJames Chapman goto end; 780309795f4SJames Chapman } 7813953ae7bSGuillaume Nault 782f98be6c6SGuillaume Nault pppol2tp_session_init(session); 783ee40fb2eSGuillaume Nault ps = l2tp_session_priv(session); 7843953ae7bSGuillaume Nault l2tp_session_inc_refcount(session); 785ee40fb2eSGuillaume Nault 786ee40fb2eSGuillaume Nault mutex_lock(&ps->sk_lock); 7873953ae7bSGuillaume Nault error = l2tp_session_register(session, tunnel); 7883953ae7bSGuillaume Nault if (error < 0) { 789ee40fb2eSGuillaume Nault mutex_unlock(&ps->sk_lock); 7903953ae7bSGuillaume Nault kfree(session); 7913953ae7bSGuillaume Nault goto end; 7923953ae7bSGuillaume Nault } 7933953ae7bSGuillaume Nault drop_refcnt = true; 794*bda06be2SGuillaume Nault new_session = true; 795dbdbc73bSGuillaume Nault } 796309795f4SJames Chapman 797fd558d18SJames Chapman /* Special case: if source & dest session_id == 0x0000, this 798fd558d18SJames Chapman * socket is being created to manage the tunnel. Just set up 799fd558d18SJames Chapman * the internal context for use by ioctl() and sockopt() 800fd558d18SJames Chapman * handlers. 801fd558d18SJames Chapman */ 802fd558d18SJames Chapman if ((session->session_id == 0) && 803fd558d18SJames Chapman (session->peer_session_id == 0)) { 804fd558d18SJames Chapman error = 0; 805fd558d18SJames Chapman goto out_no_ppp; 806fd558d18SJames Chapman } 807fd558d18SJames Chapman 808fd558d18SJames Chapman /* The only header we need to worry about is the L2TP 809fd558d18SJames Chapman * header. This size is different depending on whether 810fd558d18SJames Chapman * sequence numbers are enabled for the data channel. 811fd558d18SJames Chapman */ 812fd558d18SJames Chapman po->chan.hdrlen = PPPOL2TP_L2TP_HDR_SIZE_NOSEQ; 813fd558d18SJames Chapman 814fd558d18SJames Chapman po->chan.private = sk; 815fd558d18SJames Chapman po->chan.ops = &pppol2tp_chan_ops; 816fd558d18SJames Chapman po->chan.mtu = session->mtu; 817fd558d18SJames Chapman 818fd558d18SJames Chapman error = ppp_register_net_channel(sock_net(sk), &po->chan); 819ee40fb2eSGuillaume Nault if (error) { 820ee40fb2eSGuillaume Nault mutex_unlock(&ps->sk_lock); 821fd558d18SJames Chapman goto end; 822ee40fb2eSGuillaume Nault } 823fd558d18SJames Chapman 824fd558d18SJames Chapman out_no_ppp: 825fd558d18SJames Chapman /* This is how we get the session context from the socket. */ 826fd558d18SJames Chapman sk->sk_user_data = session; 827ee40fb2eSGuillaume Nault rcu_assign_pointer(ps->sk, sk); 828ee40fb2eSGuillaume Nault mutex_unlock(&ps->sk_lock); 829ee40fb2eSGuillaume Nault 830f98be6c6SGuillaume Nault /* Keep the reference we've grabbed on the session: sk doesn't expect 831f98be6c6SGuillaume Nault * the session to disappear. pppol2tp_session_destruct() is responsible 832f98be6c6SGuillaume Nault * for dropping it. 833f98be6c6SGuillaume Nault */ 834f98be6c6SGuillaume Nault drop_refcnt = false; 835f98be6c6SGuillaume Nault 836fd558d18SJames Chapman sk->sk_state = PPPOX_CONNECTED; 837fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: created\n", 838a4ca44faSJoe Perches session->name); 839fd558d18SJames Chapman 840fd558d18SJames Chapman end: 841*bda06be2SGuillaume Nault if (error) { 842*bda06be2SGuillaume Nault if (new_session) 843*bda06be2SGuillaume Nault l2tp_session_delete(session); 844*bda06be2SGuillaume Nault if (new_tunnel) 845*bda06be2SGuillaume Nault l2tp_tunnel_delete(tunnel); 846*bda06be2SGuillaume Nault } 847dbdbc73bSGuillaume Nault if (drop_refcnt) 848dbdbc73bSGuillaume Nault l2tp_session_dec_refcount(session); 849f9e56bafSGuillaume Nault if (drop_tunnel) 850f9e56bafSGuillaume Nault l2tp_tunnel_dec_refcount(tunnel); 851fd558d18SJames Chapman release_sock(sk); 852fd558d18SJames Chapman 853fd558d18SJames Chapman return error; 854fd558d18SJames Chapman } 855fd558d18SJames Chapman 856309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 857309795f4SJames Chapman 858f026bc29SGuillaume Nault /* Called when creating sessions via the netlink interface. */ 859f026bc29SGuillaume Nault static int pppol2tp_session_create(struct net *net, struct l2tp_tunnel *tunnel, 860f026bc29SGuillaume Nault u32 session_id, u32 peer_session_id, 861f026bc29SGuillaume Nault struct l2tp_session_cfg *cfg) 862309795f4SJames Chapman { 863309795f4SJames Chapman int error; 864309795f4SJames Chapman struct l2tp_session *session; 865309795f4SJames Chapman 866309795f4SJames Chapman /* Error if tunnel socket is not prepped */ 867f026bc29SGuillaume Nault if (!tunnel->sock) { 868f026bc29SGuillaume Nault error = -ENOENT; 8693953ae7bSGuillaume Nault goto err; 870f026bc29SGuillaume Nault } 871309795f4SJames Chapman 872309795f4SJames Chapman /* Default MTU values. */ 873309795f4SJames Chapman if (cfg->mtu == 0) 874309795f4SJames Chapman cfg->mtu = 1500 - PPPOL2TP_HEADER_OVERHEAD; 875309795f4SJames Chapman if (cfg->mru == 0) 876309795f4SJames Chapman cfg->mru = cfg->mtu; 877309795f4SJames Chapman 878309795f4SJames Chapman /* Allocate and initialize a new session context. */ 879309795f4SJames Chapman session = l2tp_session_create(sizeof(struct pppol2tp_session), 880309795f4SJames Chapman tunnel, session_id, 881309795f4SJames Chapman peer_session_id, cfg); 882dbdbc73bSGuillaume Nault if (IS_ERR(session)) { 883dbdbc73bSGuillaume Nault error = PTR_ERR(session); 8843953ae7bSGuillaume Nault goto err; 885dbdbc73bSGuillaume Nault } 886309795f4SJames Chapman 887f98be6c6SGuillaume Nault pppol2tp_session_init(session); 888309795f4SJames Chapman 8893953ae7bSGuillaume Nault error = l2tp_session_register(session, tunnel); 8903953ae7bSGuillaume Nault if (error < 0) 8913953ae7bSGuillaume Nault goto err_sess; 892309795f4SJames Chapman 8933953ae7bSGuillaume Nault return 0; 894309795f4SJames Chapman 8953953ae7bSGuillaume Nault err_sess: 8963953ae7bSGuillaume Nault kfree(session); 8973953ae7bSGuillaume Nault err: 898309795f4SJames Chapman return error; 899309795f4SJames Chapman } 900309795f4SJames Chapman 901309795f4SJames Chapman #endif /* CONFIG_L2TP_V3 */ 902309795f4SJames Chapman 903fd558d18SJames Chapman /* getname() support. 904fd558d18SJames Chapman */ 905fd558d18SJames Chapman static int pppol2tp_getname(struct socket *sock, struct sockaddr *uaddr, 9069b2c45d4SDenys Vlasenko int peer) 907fd558d18SJames Chapman { 908e0d4435fSJames Chapman int len = 0; 909fd558d18SJames Chapman int error = 0; 910fd558d18SJames Chapman struct l2tp_session *session; 911fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 912fd558d18SJames Chapman struct sock *sk = sock->sk; 913fd558d18SJames Chapman struct inet_sock *inet; 914fd558d18SJames Chapman struct pppol2tp_session *pls; 915fd558d18SJames Chapman 916fd558d18SJames Chapman error = -ENOTCONN; 917fd558d18SJames Chapman if (sk == NULL) 918fd558d18SJames Chapman goto end; 91956cff471SGao Feng if (!(sk->sk_state & PPPOX_CONNECTED)) 920fd558d18SJames Chapman goto end; 921fd558d18SJames Chapman 922fd558d18SJames Chapman error = -EBADF; 923fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 924fd558d18SJames Chapman if (session == NULL) 925fd558d18SJames Chapman goto end; 926fd558d18SJames Chapman 927fd558d18SJames Chapman pls = l2tp_session_priv(session); 9287198c77aSGuillaume Nault tunnel = session->tunnel; 929fd558d18SJames Chapman 930bbdb32cbSBenjamin LaHaise inet = inet_sk(tunnel->sock); 931d2cf3361SBenjamin LaHaise if ((tunnel->version == 2) && (tunnel->sock->sk_family == AF_INET)) { 932e0d4435fSJames Chapman struct sockaddr_pppol2tp sp; 933e0d4435fSJames Chapman len = sizeof(sp); 934fd558d18SJames Chapman memset(&sp, 0, len); 935fd558d18SJames Chapman sp.sa_family = AF_PPPOX; 936fd558d18SJames Chapman sp.sa_protocol = PX_PROTO_OL2TP; 937fd558d18SJames Chapman sp.pppol2tp.fd = tunnel->fd; 938fd558d18SJames Chapman sp.pppol2tp.pid = pls->owner; 939fd558d18SJames Chapman sp.pppol2tp.s_tunnel = tunnel->tunnel_id; 940fd558d18SJames Chapman sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; 941fd558d18SJames Chapman sp.pppol2tp.s_session = session->session_id; 942fd558d18SJames Chapman sp.pppol2tp.d_session = session->peer_session_id; 943fd558d18SJames Chapman sp.pppol2tp.addr.sin_family = AF_INET; 944fd558d18SJames Chapman sp.pppol2tp.addr.sin_port = inet->inet_dport; 945fd558d18SJames Chapman sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr; 946fd558d18SJames Chapman memcpy(uaddr, &sp, len); 947d2cf3361SBenjamin LaHaise #if IS_ENABLED(CONFIG_IPV6) 948d2cf3361SBenjamin LaHaise } else if ((tunnel->version == 2) && 949d2cf3361SBenjamin LaHaise (tunnel->sock->sk_family == AF_INET6)) { 950d2cf3361SBenjamin LaHaise struct sockaddr_pppol2tpin6 sp; 951efe4208fSEric Dumazet 952d2cf3361SBenjamin LaHaise len = sizeof(sp); 953d2cf3361SBenjamin LaHaise memset(&sp, 0, len); 954d2cf3361SBenjamin LaHaise sp.sa_family = AF_PPPOX; 955d2cf3361SBenjamin LaHaise sp.sa_protocol = PX_PROTO_OL2TP; 956d2cf3361SBenjamin LaHaise sp.pppol2tp.fd = tunnel->fd; 957d2cf3361SBenjamin LaHaise sp.pppol2tp.pid = pls->owner; 958d2cf3361SBenjamin LaHaise sp.pppol2tp.s_tunnel = tunnel->tunnel_id; 959d2cf3361SBenjamin LaHaise sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; 960d2cf3361SBenjamin LaHaise sp.pppol2tp.s_session = session->session_id; 961d2cf3361SBenjamin LaHaise sp.pppol2tp.d_session = session->peer_session_id; 962d2cf3361SBenjamin LaHaise sp.pppol2tp.addr.sin6_family = AF_INET6; 963d2cf3361SBenjamin LaHaise sp.pppol2tp.addr.sin6_port = inet->inet_dport; 964efe4208fSEric Dumazet memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr, 965efe4208fSEric Dumazet sizeof(tunnel->sock->sk_v6_daddr)); 966d2cf3361SBenjamin LaHaise memcpy(uaddr, &sp, len); 967d2cf3361SBenjamin LaHaise } else if ((tunnel->version == 3) && 968d2cf3361SBenjamin LaHaise (tunnel->sock->sk_family == AF_INET6)) { 969d2cf3361SBenjamin LaHaise struct sockaddr_pppol2tpv3in6 sp; 970efe4208fSEric Dumazet 971d2cf3361SBenjamin LaHaise len = sizeof(sp); 972d2cf3361SBenjamin LaHaise memset(&sp, 0, len); 973d2cf3361SBenjamin LaHaise sp.sa_family = AF_PPPOX; 974d2cf3361SBenjamin LaHaise sp.sa_protocol = PX_PROTO_OL2TP; 975d2cf3361SBenjamin LaHaise sp.pppol2tp.fd = tunnel->fd; 976d2cf3361SBenjamin LaHaise sp.pppol2tp.pid = pls->owner; 977d2cf3361SBenjamin LaHaise sp.pppol2tp.s_tunnel = tunnel->tunnel_id; 978d2cf3361SBenjamin LaHaise sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; 979d2cf3361SBenjamin LaHaise sp.pppol2tp.s_session = session->session_id; 980d2cf3361SBenjamin LaHaise sp.pppol2tp.d_session = session->peer_session_id; 981d2cf3361SBenjamin LaHaise sp.pppol2tp.addr.sin6_family = AF_INET6; 982d2cf3361SBenjamin LaHaise sp.pppol2tp.addr.sin6_port = inet->inet_dport; 983efe4208fSEric Dumazet memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr, 984efe4208fSEric Dumazet sizeof(tunnel->sock->sk_v6_daddr)); 985d2cf3361SBenjamin LaHaise memcpy(uaddr, &sp, len); 986d2cf3361SBenjamin LaHaise #endif 987e0d4435fSJames Chapman } else if (tunnel->version == 3) { 988e0d4435fSJames Chapman struct sockaddr_pppol2tpv3 sp; 989e0d4435fSJames Chapman len = sizeof(sp); 990e0d4435fSJames Chapman memset(&sp, 0, len); 991e0d4435fSJames Chapman sp.sa_family = AF_PPPOX; 992e0d4435fSJames Chapman sp.sa_protocol = PX_PROTO_OL2TP; 993e0d4435fSJames Chapman sp.pppol2tp.fd = tunnel->fd; 994e0d4435fSJames Chapman sp.pppol2tp.pid = pls->owner; 995e0d4435fSJames Chapman sp.pppol2tp.s_tunnel = tunnel->tunnel_id; 996e0d4435fSJames Chapman sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; 997e0d4435fSJames Chapman sp.pppol2tp.s_session = session->session_id; 998e0d4435fSJames Chapman sp.pppol2tp.d_session = session->peer_session_id; 999e0d4435fSJames Chapman sp.pppol2tp.addr.sin_family = AF_INET; 1000e0d4435fSJames Chapman sp.pppol2tp.addr.sin_port = inet->inet_dport; 1001e0d4435fSJames Chapman sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr; 1002e0d4435fSJames Chapman memcpy(uaddr, &sp, len); 1003e0d4435fSJames Chapman } 1004fd558d18SJames Chapman 10059b2c45d4SDenys Vlasenko error = len; 1006fd558d18SJames Chapman 1007fd558d18SJames Chapman sock_put(sk); 1008fd558d18SJames Chapman end: 1009fd558d18SJames Chapman return error; 1010fd558d18SJames Chapman } 1011fd558d18SJames Chapman 1012fd558d18SJames Chapman /**************************************************************************** 1013fd558d18SJames Chapman * ioctl() handlers. 1014fd558d18SJames Chapman * 1015fd558d18SJames Chapman * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP 1016fd558d18SJames Chapman * sockets. However, in order to control kernel tunnel features, we allow 1017fd558d18SJames Chapman * userspace to create a special "tunnel" PPPoX socket which is used for 1018fd558d18SJames Chapman * control only. Tunnel PPPoX sockets have session_id == 0 and simply allow 1019fd558d18SJames Chapman * the user application to issue L2TP setsockopt(), getsockopt() and ioctl() 1020fd558d18SJames Chapman * calls. 1021fd558d18SJames Chapman ****************************************************************************/ 1022fd558d18SJames Chapman 1023fd558d18SJames Chapman static void pppol2tp_copy_stats(struct pppol2tp_ioc_stats *dest, 1024fd558d18SJames Chapman struct l2tp_stats *stats) 1025fd558d18SJames Chapman { 10267b7c0719STom Parkin dest->tx_packets = atomic_long_read(&stats->tx_packets); 10277b7c0719STom Parkin dest->tx_bytes = atomic_long_read(&stats->tx_bytes); 10287b7c0719STom Parkin dest->tx_errors = atomic_long_read(&stats->tx_errors); 10297b7c0719STom Parkin dest->rx_packets = atomic_long_read(&stats->rx_packets); 10307b7c0719STom Parkin dest->rx_bytes = atomic_long_read(&stats->rx_bytes); 10317b7c0719STom Parkin dest->rx_seq_discards = atomic_long_read(&stats->rx_seq_discards); 10327b7c0719STom Parkin dest->rx_oos_packets = atomic_long_read(&stats->rx_oos_packets); 10337b7c0719STom Parkin dest->rx_errors = atomic_long_read(&stats->rx_errors); 1034fd558d18SJames Chapman } 1035fd558d18SJames Chapman 1036fd558d18SJames Chapman /* Session ioctl helper. 1037fd558d18SJames Chapman */ 1038fd558d18SJames Chapman static int pppol2tp_session_ioctl(struct l2tp_session *session, 1039fd558d18SJames Chapman unsigned int cmd, unsigned long arg) 1040fd558d18SJames Chapman { 1041fd558d18SJames Chapman struct ifreq ifr; 1042fd558d18SJames Chapman int err = 0; 1043fd558d18SJames Chapman struct sock *sk; 1044fd558d18SJames Chapman int val = (int) arg; 1045fd558d18SJames Chapman struct pppol2tp_session *ps = l2tp_session_priv(session); 1046fd558d18SJames Chapman struct l2tp_tunnel *tunnel = session->tunnel; 1047fd558d18SJames Chapman struct pppol2tp_ioc_stats stats; 1048fd558d18SJames Chapman 1049fba40c63SAsbjørn Sloth Tønnesen l2tp_dbg(session, L2TP_MSG_CONTROL, 1050fd558d18SJames Chapman "%s: pppol2tp_session_ioctl(cmd=%#x, arg=%#lx)\n", 1051fd558d18SJames Chapman session->name, cmd, arg); 1052fd558d18SJames Chapman 1053ee40fb2eSGuillaume Nault sk = pppol2tp_session_get_sock(session); 10545903f594SGuillaume Nault if (!sk) 10555903f594SGuillaume Nault return -EBADR; 10565903f594SGuillaume Nault 1057fd558d18SJames Chapman switch (cmd) { 1058fd558d18SJames Chapman case SIOCGIFMTU: 1059fd558d18SJames Chapman err = -ENXIO; 1060fd558d18SJames Chapman if (!(sk->sk_state & PPPOX_CONNECTED)) 1061fd558d18SJames Chapman break; 1062fd558d18SJames Chapman 1063fd558d18SJames Chapman err = -EFAULT; 1064fd558d18SJames Chapman if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq))) 1065fd558d18SJames Chapman break; 1066fd558d18SJames Chapman ifr.ifr_mtu = session->mtu; 1067fd558d18SJames Chapman if (copy_to_user((void __user *) arg, &ifr, sizeof(struct ifreq))) 1068fd558d18SJames Chapman break; 1069fd558d18SJames Chapman 1070fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: get mtu=%d\n", 1071a4ca44faSJoe Perches session->name, session->mtu); 1072fd558d18SJames Chapman err = 0; 1073fd558d18SJames Chapman break; 1074fd558d18SJames Chapman 1075fd558d18SJames Chapman case SIOCSIFMTU: 1076fd558d18SJames Chapman err = -ENXIO; 1077fd558d18SJames Chapman if (!(sk->sk_state & PPPOX_CONNECTED)) 1078fd558d18SJames Chapman break; 1079fd558d18SJames Chapman 1080fd558d18SJames Chapman err = -EFAULT; 1081fd558d18SJames Chapman if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq))) 1082fd558d18SJames Chapman break; 1083fd558d18SJames Chapman 1084fd558d18SJames Chapman session->mtu = ifr.ifr_mtu; 1085fd558d18SJames Chapman 1086fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: set mtu=%d\n", 1087a4ca44faSJoe Perches session->name, session->mtu); 1088fd558d18SJames Chapman err = 0; 1089fd558d18SJames Chapman break; 1090fd558d18SJames Chapman 1091fd558d18SJames Chapman case PPPIOCGMRU: 1092fd558d18SJames Chapman err = -ENXIO; 1093fd558d18SJames Chapman if (!(sk->sk_state & PPPOX_CONNECTED)) 1094fd558d18SJames Chapman break; 1095fd558d18SJames Chapman 1096fd558d18SJames Chapman err = -EFAULT; 1097fd558d18SJames Chapman if (put_user(session->mru, (int __user *) arg)) 1098fd558d18SJames Chapman break; 1099fd558d18SJames Chapman 1100fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: get mru=%d\n", 1101a4ca44faSJoe Perches session->name, session->mru); 1102fd558d18SJames Chapman err = 0; 1103fd558d18SJames Chapman break; 1104fd558d18SJames Chapman 1105fd558d18SJames Chapman case PPPIOCSMRU: 1106fd558d18SJames Chapman err = -ENXIO; 1107fd558d18SJames Chapman if (!(sk->sk_state & PPPOX_CONNECTED)) 1108fd558d18SJames Chapman break; 1109fd558d18SJames Chapman 1110fd558d18SJames Chapman err = -EFAULT; 1111fd558d18SJames Chapman if (get_user(val, (int __user *) arg)) 1112fd558d18SJames Chapman break; 1113fd558d18SJames Chapman 1114fd558d18SJames Chapman session->mru = val; 1115fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: set mru=%d\n", 1116a4ca44faSJoe Perches session->name, session->mru); 1117fd558d18SJames Chapman err = 0; 1118fd558d18SJames Chapman break; 1119fd558d18SJames Chapman 1120fd558d18SJames Chapman case PPPIOCGFLAGS: 1121fd558d18SJames Chapman err = -EFAULT; 1122fd558d18SJames Chapman if (put_user(ps->flags, (int __user *) arg)) 1123fd558d18SJames Chapman break; 1124fd558d18SJames Chapman 1125fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: get flags=%d\n", 1126a4ca44faSJoe Perches session->name, ps->flags); 1127fd558d18SJames Chapman err = 0; 1128fd558d18SJames Chapman break; 1129fd558d18SJames Chapman 1130fd558d18SJames Chapman case PPPIOCSFLAGS: 1131fd558d18SJames Chapman err = -EFAULT; 1132fd558d18SJames Chapman if (get_user(val, (int __user *) arg)) 1133fd558d18SJames Chapman break; 1134fd558d18SJames Chapman ps->flags = val; 1135fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: set flags=%d\n", 1136a4ca44faSJoe Perches session->name, ps->flags); 1137fd558d18SJames Chapman err = 0; 1138fd558d18SJames Chapman break; 1139fd558d18SJames Chapman 1140fd558d18SJames Chapman case PPPIOCGL2TPSTATS: 1141fd558d18SJames Chapman err = -ENXIO; 1142fd558d18SJames Chapman if (!(sk->sk_state & PPPOX_CONNECTED)) 1143fd558d18SJames Chapman break; 1144fd558d18SJames Chapman 1145fd558d18SJames Chapman memset(&stats, 0, sizeof(stats)); 1146fd558d18SJames Chapman stats.tunnel_id = tunnel->tunnel_id; 1147fd558d18SJames Chapman stats.session_id = session->session_id; 1148fd558d18SJames Chapman pppol2tp_copy_stats(&stats, &session->stats); 1149fd558d18SJames Chapman if (copy_to_user((void __user *) arg, &stats, 1150fd558d18SJames Chapman sizeof(stats))) 1151fd558d18SJames Chapman break; 1152fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: get L2TP stats\n", 1153a4ca44faSJoe Perches session->name); 1154fd558d18SJames Chapman err = 0; 1155fd558d18SJames Chapman break; 1156fd558d18SJames Chapman 1157fd558d18SJames Chapman default: 1158fd558d18SJames Chapman err = -ENOSYS; 1159fd558d18SJames Chapman break; 1160fd558d18SJames Chapman } 1161fd558d18SJames Chapman 1162fd558d18SJames Chapman sock_put(sk); 1163fd558d18SJames Chapman 1164fd558d18SJames Chapman return err; 1165fd558d18SJames Chapman } 1166fd558d18SJames Chapman 1167fd558d18SJames Chapman /* Tunnel ioctl helper. 1168fd558d18SJames Chapman * 1169fd558d18SJames Chapman * Note the special handling for PPPIOCGL2TPSTATS below. If the ioctl data 1170fd558d18SJames Chapman * specifies a session_id, the session ioctl handler is called. This allows an 1171fd558d18SJames Chapman * application to retrieve session stats via a tunnel socket. 1172fd558d18SJames Chapman */ 1173fd558d18SJames Chapman static int pppol2tp_tunnel_ioctl(struct l2tp_tunnel *tunnel, 1174fd558d18SJames Chapman unsigned int cmd, unsigned long arg) 1175fd558d18SJames Chapman { 1176fd558d18SJames Chapman int err = 0; 1177fd558d18SJames Chapman struct sock *sk; 1178fd558d18SJames Chapman struct pppol2tp_ioc_stats stats; 1179fd558d18SJames Chapman 1180fba40c63SAsbjørn Sloth Tønnesen l2tp_dbg(tunnel, L2TP_MSG_CONTROL, 1181fd558d18SJames Chapman "%s: pppol2tp_tunnel_ioctl(cmd=%#x, arg=%#lx)\n", 1182fd558d18SJames Chapman tunnel->name, cmd, arg); 1183fd558d18SJames Chapman 1184fd558d18SJames Chapman sk = tunnel->sock; 1185fd558d18SJames Chapman sock_hold(sk); 1186fd558d18SJames Chapman 1187fd558d18SJames Chapman switch (cmd) { 1188fd558d18SJames Chapman case PPPIOCGL2TPSTATS: 1189fd558d18SJames Chapman err = -ENXIO; 1190fd558d18SJames Chapman if (!(sk->sk_state & PPPOX_CONNECTED)) 1191fd558d18SJames Chapman break; 1192fd558d18SJames Chapman 1193fd558d18SJames Chapman if (copy_from_user(&stats, (void __user *) arg, 1194fd558d18SJames Chapman sizeof(stats))) { 1195fd558d18SJames Chapman err = -EFAULT; 1196fd558d18SJames Chapman break; 1197fd558d18SJames Chapman } 1198fd558d18SJames Chapman if (stats.session_id != 0) { 1199fd558d18SJames Chapman /* resend to session ioctl handler */ 1200fd558d18SJames Chapman struct l2tp_session *session = 120157377d63SGuillaume Nault l2tp_session_get(sock_net(sk), tunnel, 1202a4346210SGuillaume Nault stats.session_id); 120357377d63SGuillaume Nault 120457377d63SGuillaume Nault if (session) { 120557377d63SGuillaume Nault err = pppol2tp_session_ioctl(session, cmd, 120657377d63SGuillaume Nault arg); 120757377d63SGuillaume Nault l2tp_session_dec_refcount(session); 120857377d63SGuillaume Nault } else { 1209fd558d18SJames Chapman err = -EBADR; 121057377d63SGuillaume Nault } 1211fd558d18SJames Chapman break; 1212fd558d18SJames Chapman } 1213fd558d18SJames Chapman #ifdef CONFIG_XFRM 1214fd558d18SJames Chapman stats.using_ipsec = (sk->sk_policy[0] || sk->sk_policy[1]) ? 1 : 0; 1215fd558d18SJames Chapman #endif 1216fd558d18SJames Chapman pppol2tp_copy_stats(&stats, &tunnel->stats); 1217fd558d18SJames Chapman if (copy_to_user((void __user *) arg, &stats, sizeof(stats))) { 1218fd558d18SJames Chapman err = -EFAULT; 1219fd558d18SJames Chapman break; 1220fd558d18SJames Chapman } 1221fba40c63SAsbjørn Sloth Tønnesen l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: get L2TP stats\n", 1222a4ca44faSJoe Perches tunnel->name); 1223fd558d18SJames Chapman err = 0; 1224fd558d18SJames Chapman break; 1225fd558d18SJames Chapman 1226fd558d18SJames Chapman default: 1227fd558d18SJames Chapman err = -ENOSYS; 1228fd558d18SJames Chapman break; 1229fd558d18SJames Chapman } 1230fd558d18SJames Chapman 1231fd558d18SJames Chapman sock_put(sk); 1232fd558d18SJames Chapman 1233fd558d18SJames Chapman return err; 1234fd558d18SJames Chapman } 1235fd558d18SJames Chapman 1236fd558d18SJames Chapman /* Main ioctl() handler. 1237fd558d18SJames Chapman * Dispatch to tunnel or session helpers depending on the socket. 1238fd558d18SJames Chapman */ 1239fd558d18SJames Chapman static int pppol2tp_ioctl(struct socket *sock, unsigned int cmd, 1240fd558d18SJames Chapman unsigned long arg) 1241fd558d18SJames Chapman { 1242fd558d18SJames Chapman struct sock *sk = sock->sk; 1243fd558d18SJames Chapman struct l2tp_session *session; 1244fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 1245fd558d18SJames Chapman int err; 1246fd558d18SJames Chapman 1247fd558d18SJames Chapman if (!sk) 1248fd558d18SJames Chapman return 0; 1249fd558d18SJames Chapman 1250fd558d18SJames Chapman err = -EBADF; 1251fd558d18SJames Chapman if (sock_flag(sk, SOCK_DEAD) != 0) 1252fd558d18SJames Chapman goto end; 1253fd558d18SJames Chapman 1254fd558d18SJames Chapman err = -ENOTCONN; 1255fd558d18SJames Chapman if ((sk->sk_user_data == NULL) || 1256fd558d18SJames Chapman (!(sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND)))) 1257fd558d18SJames Chapman goto end; 1258fd558d18SJames Chapman 1259fd558d18SJames Chapman /* Get session context from the socket */ 1260fd558d18SJames Chapman err = -EBADF; 1261fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 1262fd558d18SJames Chapman if (session == NULL) 1263fd558d18SJames Chapman goto end; 1264fd558d18SJames Chapman 1265fd558d18SJames Chapman /* Special case: if session's session_id is zero, treat ioctl as a 1266fd558d18SJames Chapman * tunnel ioctl 1267fd558d18SJames Chapman */ 1268fd558d18SJames Chapman if ((session->session_id == 0) && 1269fd558d18SJames Chapman (session->peer_session_id == 0)) { 12707198c77aSGuillaume Nault tunnel = session->tunnel; 1271fd558d18SJames Chapman err = pppol2tp_tunnel_ioctl(tunnel, cmd, arg); 1272fd558d18SJames Chapman goto end_put_sess; 1273fd558d18SJames Chapman } 1274fd558d18SJames Chapman 1275fd558d18SJames Chapman err = pppol2tp_session_ioctl(session, cmd, arg); 1276fd558d18SJames Chapman 1277fd558d18SJames Chapman end_put_sess: 1278fd558d18SJames Chapman sock_put(sk); 1279fd558d18SJames Chapman end: 1280fd558d18SJames Chapman return err; 1281fd558d18SJames Chapman } 1282fd558d18SJames Chapman 1283fd558d18SJames Chapman /***************************************************************************** 1284fd558d18SJames Chapman * setsockopt() / getsockopt() support. 1285fd558d18SJames Chapman * 1286fd558d18SJames Chapman * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP 1287fd558d18SJames Chapman * sockets. In order to control kernel tunnel features, we allow userspace to 1288fd558d18SJames Chapman * create a special "tunnel" PPPoX socket which is used for control only. 1289fd558d18SJames Chapman * Tunnel PPPoX sockets have session_id == 0 and simply allow the user 1290fd558d18SJames Chapman * application to issue L2TP setsockopt(), getsockopt() and ioctl() calls. 1291fd558d18SJames Chapman *****************************************************************************/ 1292fd558d18SJames Chapman 1293fd558d18SJames Chapman /* Tunnel setsockopt() helper. 1294fd558d18SJames Chapman */ 1295fd558d18SJames Chapman static int pppol2tp_tunnel_setsockopt(struct sock *sk, 1296fd558d18SJames Chapman struct l2tp_tunnel *tunnel, 1297fd558d18SJames Chapman int optname, int val) 1298fd558d18SJames Chapman { 1299fd558d18SJames Chapman int err = 0; 1300fd558d18SJames Chapman 1301fd558d18SJames Chapman switch (optname) { 1302fd558d18SJames Chapman case PPPOL2TP_SO_DEBUG: 1303fd558d18SJames Chapman tunnel->debug = val; 1304fba40c63SAsbjørn Sloth Tønnesen l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: set debug=%x\n", 1305a4ca44faSJoe Perches tunnel->name, tunnel->debug); 1306fd558d18SJames Chapman break; 1307fd558d18SJames Chapman 1308fd558d18SJames Chapman default: 1309fd558d18SJames Chapman err = -ENOPROTOOPT; 1310fd558d18SJames Chapman break; 1311fd558d18SJames Chapman } 1312fd558d18SJames Chapman 1313fd558d18SJames Chapman return err; 1314fd558d18SJames Chapman } 1315fd558d18SJames Chapman 1316fd558d18SJames Chapman /* Session setsockopt helper. 1317fd558d18SJames Chapman */ 1318fd558d18SJames Chapman static int pppol2tp_session_setsockopt(struct sock *sk, 1319fd558d18SJames Chapman struct l2tp_session *session, 1320fd558d18SJames Chapman int optname, int val) 1321fd558d18SJames Chapman { 1322fd558d18SJames Chapman int err = 0; 1323fd558d18SJames Chapman 1324fd558d18SJames Chapman switch (optname) { 1325fd558d18SJames Chapman case PPPOL2TP_SO_RECVSEQ: 1326fd558d18SJames Chapman if ((val != 0) && (val != 1)) { 1327fd558d18SJames Chapman err = -EINVAL; 1328fd558d18SJames Chapman break; 1329fd558d18SJames Chapman } 13303f9b9770SAsbjørn Sloth Tønnesen session->recv_seq = !!val; 1331fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1332a4ca44faSJoe Perches "%s: set recv_seq=%d\n", 1333a4ca44faSJoe Perches session->name, session->recv_seq); 1334fd558d18SJames Chapman break; 1335fd558d18SJames Chapman 1336fd558d18SJames Chapman case PPPOL2TP_SO_SENDSEQ: 1337fd558d18SJames Chapman if ((val != 0) && (val != 1)) { 1338fd558d18SJames Chapman err = -EINVAL; 1339fd558d18SJames Chapman break; 1340fd558d18SJames Chapman } 13413f9b9770SAsbjørn Sloth Tønnesen session->send_seq = !!val; 1342fd558d18SJames Chapman { 1343ee40fb2eSGuillaume Nault struct pppox_sock *po = pppox_sk(sk); 1344ee40fb2eSGuillaume Nault 1345fd558d18SJames Chapman po->chan.hdrlen = val ? PPPOL2TP_L2TP_HDR_SIZE_SEQ : 1346fd558d18SJames Chapman PPPOL2TP_L2TP_HDR_SIZE_NOSEQ; 1347fd558d18SJames Chapman } 1348bb5016eaSGuillaume Nault l2tp_session_set_header_len(session, session->tunnel->version); 1349fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1350a4ca44faSJoe Perches "%s: set send_seq=%d\n", 1351a4ca44faSJoe Perches session->name, session->send_seq); 1352fd558d18SJames Chapman break; 1353fd558d18SJames Chapman 1354fd558d18SJames Chapman case PPPOL2TP_SO_LNSMODE: 1355fd558d18SJames Chapman if ((val != 0) && (val != 1)) { 1356fd558d18SJames Chapman err = -EINVAL; 1357fd558d18SJames Chapman break; 1358fd558d18SJames Chapman } 13593f9b9770SAsbjørn Sloth Tønnesen session->lns_mode = !!val; 1360fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1361a4ca44faSJoe Perches "%s: set lns_mode=%d\n", 1362a4ca44faSJoe Perches session->name, session->lns_mode); 1363fd558d18SJames Chapman break; 1364fd558d18SJames Chapman 1365fd558d18SJames Chapman case PPPOL2TP_SO_DEBUG: 1366fd558d18SJames Chapman session->debug = val; 1367fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: set debug=%x\n", 1368a4ca44faSJoe Perches session->name, session->debug); 1369fd558d18SJames Chapman break; 1370fd558d18SJames Chapman 1371fd558d18SJames Chapman case PPPOL2TP_SO_REORDERTO: 1372fd558d18SJames Chapman session->reorder_timeout = msecs_to_jiffies(val); 1373fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1374a4ca44faSJoe Perches "%s: set reorder_timeout=%d\n", 1375a4ca44faSJoe Perches session->name, session->reorder_timeout); 1376fd558d18SJames Chapman break; 1377fd558d18SJames Chapman 1378fd558d18SJames Chapman default: 1379fd558d18SJames Chapman err = -ENOPROTOOPT; 1380fd558d18SJames Chapman break; 1381fd558d18SJames Chapman } 1382fd558d18SJames Chapman 1383fd558d18SJames Chapman return err; 1384fd558d18SJames Chapman } 1385fd558d18SJames Chapman 1386fd558d18SJames Chapman /* Main setsockopt() entry point. 1387fd558d18SJames Chapman * Does API checks, then calls either the tunnel or session setsockopt 1388fd558d18SJames Chapman * handler, according to whether the PPPoL2TP socket is a for a regular 1389fd558d18SJames Chapman * session or the special tunnel type. 1390fd558d18SJames Chapman */ 1391fd558d18SJames Chapman static int pppol2tp_setsockopt(struct socket *sock, int level, int optname, 1392fd558d18SJames Chapman char __user *optval, unsigned int optlen) 1393fd558d18SJames Chapman { 1394fd558d18SJames Chapman struct sock *sk = sock->sk; 1395fd558d18SJames Chapman struct l2tp_session *session; 1396fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 1397fd558d18SJames Chapman int val; 1398fd558d18SJames Chapman int err; 1399fd558d18SJames Chapman 1400fd558d18SJames Chapman if (level != SOL_PPPOL2TP) 14013cf521f7SSasha Levin return -EINVAL; 1402fd558d18SJames Chapman 1403fd558d18SJames Chapman if (optlen < sizeof(int)) 1404fd558d18SJames Chapman return -EINVAL; 1405fd558d18SJames Chapman 1406fd558d18SJames Chapman if (get_user(val, (int __user *)optval)) 1407fd558d18SJames Chapman return -EFAULT; 1408fd558d18SJames Chapman 1409fd558d18SJames Chapman err = -ENOTCONN; 1410fd558d18SJames Chapman if (sk->sk_user_data == NULL) 1411fd558d18SJames Chapman goto end; 1412fd558d18SJames Chapman 1413fd558d18SJames Chapman /* Get session context from the socket */ 1414fd558d18SJames Chapman err = -EBADF; 1415fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 1416fd558d18SJames Chapman if (session == NULL) 1417fd558d18SJames Chapman goto end; 1418fd558d18SJames Chapman 1419fd558d18SJames Chapman /* Special case: if session_id == 0x0000, treat as operation on tunnel 1420fd558d18SJames Chapman */ 1421fd558d18SJames Chapman if ((session->session_id == 0) && 1422fd558d18SJames Chapman (session->peer_session_id == 0)) { 14237198c77aSGuillaume Nault tunnel = session->tunnel; 1424fd558d18SJames Chapman err = pppol2tp_tunnel_setsockopt(sk, tunnel, optname, val); 14257198c77aSGuillaume Nault } else { 1426fd558d18SJames Chapman err = pppol2tp_session_setsockopt(sk, session, optname, val); 14277198c77aSGuillaume Nault } 1428fd558d18SJames Chapman 1429fd558d18SJames Chapman sock_put(sk); 1430fd558d18SJames Chapman end: 1431fd558d18SJames Chapman return err; 1432fd558d18SJames Chapman } 1433fd558d18SJames Chapman 1434fd558d18SJames Chapman /* Tunnel getsockopt helper. Called with sock locked. 1435fd558d18SJames Chapman */ 1436fd558d18SJames Chapman static int pppol2tp_tunnel_getsockopt(struct sock *sk, 1437fd558d18SJames Chapman struct l2tp_tunnel *tunnel, 1438fd558d18SJames Chapman int optname, int *val) 1439fd558d18SJames Chapman { 1440fd558d18SJames Chapman int err = 0; 1441fd558d18SJames Chapman 1442fd558d18SJames Chapman switch (optname) { 1443fd558d18SJames Chapman case PPPOL2TP_SO_DEBUG: 1444fd558d18SJames Chapman *val = tunnel->debug; 1445fba40c63SAsbjørn Sloth Tønnesen l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: get debug=%x\n", 1446a4ca44faSJoe Perches tunnel->name, tunnel->debug); 1447fd558d18SJames Chapman break; 1448fd558d18SJames Chapman 1449fd558d18SJames Chapman default: 1450fd558d18SJames Chapman err = -ENOPROTOOPT; 1451fd558d18SJames Chapman break; 1452fd558d18SJames Chapman } 1453fd558d18SJames Chapman 1454fd558d18SJames Chapman return err; 1455fd558d18SJames Chapman } 1456fd558d18SJames Chapman 1457fd558d18SJames Chapman /* Session getsockopt helper. Called with sock locked. 1458fd558d18SJames Chapman */ 1459fd558d18SJames Chapman static int pppol2tp_session_getsockopt(struct sock *sk, 1460fd558d18SJames Chapman struct l2tp_session *session, 1461fd558d18SJames Chapman int optname, int *val) 1462fd558d18SJames Chapman { 1463fd558d18SJames Chapman int err = 0; 1464fd558d18SJames Chapman 1465fd558d18SJames Chapman switch (optname) { 1466fd558d18SJames Chapman case PPPOL2TP_SO_RECVSEQ: 1467fd558d18SJames Chapman *val = session->recv_seq; 1468fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1469fd558d18SJames Chapman "%s: get recv_seq=%d\n", session->name, *val); 1470fd558d18SJames Chapman break; 1471fd558d18SJames Chapman 1472fd558d18SJames Chapman case PPPOL2TP_SO_SENDSEQ: 1473fd558d18SJames Chapman *val = session->send_seq; 1474fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1475fd558d18SJames Chapman "%s: get send_seq=%d\n", session->name, *val); 1476fd558d18SJames Chapman break; 1477fd558d18SJames Chapman 1478fd558d18SJames Chapman case PPPOL2TP_SO_LNSMODE: 1479fd558d18SJames Chapman *val = session->lns_mode; 1480fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1481fd558d18SJames Chapman "%s: get lns_mode=%d\n", session->name, *val); 1482fd558d18SJames Chapman break; 1483fd558d18SJames Chapman 1484fd558d18SJames Chapman case PPPOL2TP_SO_DEBUG: 1485fd558d18SJames Chapman *val = session->debug; 1486fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: get debug=%d\n", 1487a4ca44faSJoe Perches session->name, *val); 1488fd558d18SJames Chapman break; 1489fd558d18SJames Chapman 1490fd558d18SJames Chapman case PPPOL2TP_SO_REORDERTO: 1491fd558d18SJames Chapman *val = (int) jiffies_to_msecs(session->reorder_timeout); 1492fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1493fd558d18SJames Chapman "%s: get reorder_timeout=%d\n", session->name, *val); 1494fd558d18SJames Chapman break; 1495fd558d18SJames Chapman 1496fd558d18SJames Chapman default: 1497fd558d18SJames Chapman err = -ENOPROTOOPT; 1498fd558d18SJames Chapman } 1499fd558d18SJames Chapman 1500fd558d18SJames Chapman return err; 1501fd558d18SJames Chapman } 1502fd558d18SJames Chapman 1503fd558d18SJames Chapman /* Main getsockopt() entry point. 1504fd558d18SJames Chapman * Does API checks, then calls either the tunnel or session getsockopt 1505fd558d18SJames Chapman * handler, according to whether the PPPoX socket is a for a regular session 1506fd558d18SJames Chapman * or the special tunnel type. 1507fd558d18SJames Chapman */ 1508e3192690SJoe Perches static int pppol2tp_getsockopt(struct socket *sock, int level, int optname, 1509e3192690SJoe Perches char __user *optval, int __user *optlen) 1510fd558d18SJames Chapman { 1511fd558d18SJames Chapman struct sock *sk = sock->sk; 1512fd558d18SJames Chapman struct l2tp_session *session; 1513fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 1514fd558d18SJames Chapman int val, len; 1515fd558d18SJames Chapman int err; 1516fd558d18SJames Chapman 1517fd558d18SJames Chapman if (level != SOL_PPPOL2TP) 15183cf521f7SSasha Levin return -EINVAL; 1519fd558d18SJames Chapman 1520e3192690SJoe Perches if (get_user(len, optlen)) 1521fd558d18SJames Chapman return -EFAULT; 1522fd558d18SJames Chapman 1523fd558d18SJames Chapman len = min_t(unsigned int, len, sizeof(int)); 1524fd558d18SJames Chapman 1525fd558d18SJames Chapman if (len < 0) 1526fd558d18SJames Chapman return -EINVAL; 1527fd558d18SJames Chapman 1528fd558d18SJames Chapman err = -ENOTCONN; 1529fd558d18SJames Chapman if (sk->sk_user_data == NULL) 1530fd558d18SJames Chapman goto end; 1531fd558d18SJames Chapman 1532fd558d18SJames Chapman /* Get the session context */ 1533fd558d18SJames Chapman err = -EBADF; 1534fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 1535fd558d18SJames Chapman if (session == NULL) 1536fd558d18SJames Chapman goto end; 1537fd558d18SJames Chapman 1538fd558d18SJames Chapman /* Special case: if session_id == 0x0000, treat as operation on tunnel */ 1539fd558d18SJames Chapman if ((session->session_id == 0) && 1540fd558d18SJames Chapman (session->peer_session_id == 0)) { 15417198c77aSGuillaume Nault tunnel = session->tunnel; 1542fd558d18SJames Chapman err = pppol2tp_tunnel_getsockopt(sk, tunnel, optname, &val); 1543321a52a3SGuillaume Nault if (err) 1544321a52a3SGuillaume Nault goto end_put_sess; 1545321a52a3SGuillaume Nault } else { 1546fd558d18SJames Chapman err = pppol2tp_session_getsockopt(sk, session, optname, &val); 1547321a52a3SGuillaume Nault if (err) 1548321a52a3SGuillaume Nault goto end_put_sess; 1549321a52a3SGuillaume Nault } 1550fd558d18SJames Chapman 1551fd558d18SJames Chapman err = -EFAULT; 1552e3192690SJoe Perches if (put_user(len, optlen)) 1553fd558d18SJames Chapman goto end_put_sess; 1554fd558d18SJames Chapman 1555fd558d18SJames Chapman if (copy_to_user((void __user *) optval, &val, len)) 1556fd558d18SJames Chapman goto end_put_sess; 1557fd558d18SJames Chapman 1558fd558d18SJames Chapman err = 0; 1559fd558d18SJames Chapman 1560fd558d18SJames Chapman end_put_sess: 1561fd558d18SJames Chapman sock_put(sk); 1562fd558d18SJames Chapman end: 1563fd558d18SJames Chapman return err; 1564fd558d18SJames Chapman } 1565fd558d18SJames Chapman 1566fd558d18SJames Chapman /***************************************************************************** 1567fd558d18SJames Chapman * /proc filesystem for debug 1568f7faffa3SJames Chapman * Since the original pppol2tp driver provided /proc/net/pppol2tp for 1569f7faffa3SJames Chapman * L2TPv2, we dump only L2TPv2 tunnels and sessions here. 1570fd558d18SJames Chapman *****************************************************************************/ 1571fd558d18SJames Chapman 1572fd558d18SJames Chapman static unsigned int pppol2tp_net_id; 1573fd558d18SJames Chapman 1574fd558d18SJames Chapman #ifdef CONFIG_PROC_FS 1575fd558d18SJames Chapman 1576fd558d18SJames Chapman struct pppol2tp_seq_data { 1577fd558d18SJames Chapman struct seq_net_private p; 1578fd558d18SJames Chapman int tunnel_idx; /* current tunnel */ 1579fd558d18SJames Chapman int session_idx; /* index of session within current tunnel */ 1580fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 1581fd558d18SJames Chapman struct l2tp_session *session; /* NULL means get next tunnel */ 1582fd558d18SJames Chapman }; 1583fd558d18SJames Chapman 1584fd558d18SJames Chapman static void pppol2tp_next_tunnel(struct net *net, struct pppol2tp_seq_data *pd) 1585fd558d18SJames Chapman { 15860e0c3feeSGuillaume Nault /* Drop reference taken during previous invocation */ 15870e0c3feeSGuillaume Nault if (pd->tunnel) 15880e0c3feeSGuillaume Nault l2tp_tunnel_dec_refcount(pd->tunnel); 15890e0c3feeSGuillaume Nault 1590f7faffa3SJames Chapman for (;;) { 15910e0c3feeSGuillaume Nault pd->tunnel = l2tp_tunnel_get_nth(net, pd->tunnel_idx); 1592fd558d18SJames Chapman pd->tunnel_idx++; 1593f7faffa3SJames Chapman 15940e0c3feeSGuillaume Nault /* Only accept L2TPv2 tunnels */ 15950e0c3feeSGuillaume Nault if (!pd->tunnel || pd->tunnel->version == 2) 15960e0c3feeSGuillaume Nault return; 1597f7faffa3SJames Chapman 15980e0c3feeSGuillaume Nault l2tp_tunnel_dec_refcount(pd->tunnel); 1599f7faffa3SJames Chapman } 1600fd558d18SJames Chapman } 1601fd558d18SJames Chapman 1602fd558d18SJames Chapman static void pppol2tp_next_session(struct net *net, struct pppol2tp_seq_data *pd) 1603fd558d18SJames Chapman { 160483494407SGuillaume Nault /* Drop reference taken during previous invocation */ 160583494407SGuillaume Nault if (pd->session) 160683494407SGuillaume Nault l2tp_session_dec_refcount(pd->session); 160783494407SGuillaume Nault 1608a4346210SGuillaume Nault pd->session = l2tp_session_get_nth(pd->tunnel, pd->session_idx); 1609fd558d18SJames Chapman pd->session_idx++; 1610f7faffa3SJames Chapman 1611fd558d18SJames Chapman if (pd->session == NULL) { 1612fd558d18SJames Chapman pd->session_idx = 0; 1613fd558d18SJames Chapman pppol2tp_next_tunnel(net, pd); 1614fd558d18SJames Chapman } 1615fd558d18SJames Chapman } 1616fd558d18SJames Chapman 1617fd558d18SJames Chapman static void *pppol2tp_seq_start(struct seq_file *m, loff_t *offs) 1618fd558d18SJames Chapman { 1619fd558d18SJames Chapman struct pppol2tp_seq_data *pd = SEQ_START_TOKEN; 1620fd558d18SJames Chapman loff_t pos = *offs; 1621fd558d18SJames Chapman struct net *net; 1622fd558d18SJames Chapman 1623fd558d18SJames Chapman if (!pos) 1624fd558d18SJames Chapman goto out; 1625fd558d18SJames Chapman 1626fd558d18SJames Chapman BUG_ON(m->private == NULL); 1627fd558d18SJames Chapman pd = m->private; 1628fd558d18SJames Chapman net = seq_file_net(m); 1629fd558d18SJames Chapman 1630fd558d18SJames Chapman if (pd->tunnel == NULL) 1631fd558d18SJames Chapman pppol2tp_next_tunnel(net, pd); 1632fd558d18SJames Chapman else 1633fd558d18SJames Chapman pppol2tp_next_session(net, pd); 1634fd558d18SJames Chapman 1635fd558d18SJames Chapman /* NULL tunnel and session indicates end of list */ 1636fd558d18SJames Chapman if ((pd->tunnel == NULL) && (pd->session == NULL)) 1637fd558d18SJames Chapman pd = NULL; 1638fd558d18SJames Chapman 1639fd558d18SJames Chapman out: 1640fd558d18SJames Chapman return pd; 1641fd558d18SJames Chapman } 1642fd558d18SJames Chapman 1643fd558d18SJames Chapman static void *pppol2tp_seq_next(struct seq_file *m, void *v, loff_t *pos) 1644fd558d18SJames Chapman { 1645fd558d18SJames Chapman (*pos)++; 1646fd558d18SJames Chapman return NULL; 1647fd558d18SJames Chapman } 1648fd558d18SJames Chapman 1649fd558d18SJames Chapman static void pppol2tp_seq_stop(struct seq_file *p, void *v) 1650fd558d18SJames Chapman { 16510e0c3feeSGuillaume Nault struct pppol2tp_seq_data *pd = v; 16520e0c3feeSGuillaume Nault 16530e0c3feeSGuillaume Nault if (!pd || pd == SEQ_START_TOKEN) 16540e0c3feeSGuillaume Nault return; 16550e0c3feeSGuillaume Nault 165683494407SGuillaume Nault /* Drop reference taken by last invocation of pppol2tp_next_session() 165783494407SGuillaume Nault * or pppol2tp_next_tunnel(). 165883494407SGuillaume Nault */ 165983494407SGuillaume Nault if (pd->session) { 166083494407SGuillaume Nault l2tp_session_dec_refcount(pd->session); 166183494407SGuillaume Nault pd->session = NULL; 166283494407SGuillaume Nault } 16635411b618SGuillaume Nault if (pd->tunnel) { 16640e0c3feeSGuillaume Nault l2tp_tunnel_dec_refcount(pd->tunnel); 16655411b618SGuillaume Nault pd->tunnel = NULL; 16665411b618SGuillaume Nault } 1667fd558d18SJames Chapman } 1668fd558d18SJames Chapman 1669fd558d18SJames Chapman static void pppol2tp_seq_tunnel_show(struct seq_file *m, void *v) 1670fd558d18SJames Chapman { 1671fd558d18SJames Chapman struct l2tp_tunnel *tunnel = v; 1672fd558d18SJames Chapman 1673fd558d18SJames Chapman seq_printf(m, "\nTUNNEL '%s', %c %d\n", 1674fd558d18SJames Chapman tunnel->name, 1675fd558d18SJames Chapman (tunnel == tunnel->sock->sk_user_data) ? 'Y' : 'N', 1676fbea9e07SReshetova, Elena refcount_read(&tunnel->ref_count) - 1); 16777b7c0719STom Parkin seq_printf(m, " %08x %ld/%ld/%ld %ld/%ld/%ld\n", 1678fd558d18SJames Chapman tunnel->debug, 16797b7c0719STom Parkin atomic_long_read(&tunnel->stats.tx_packets), 16807b7c0719STom Parkin atomic_long_read(&tunnel->stats.tx_bytes), 16817b7c0719STom Parkin atomic_long_read(&tunnel->stats.tx_errors), 16827b7c0719STom Parkin atomic_long_read(&tunnel->stats.rx_packets), 16837b7c0719STom Parkin atomic_long_read(&tunnel->stats.rx_bytes), 16847b7c0719STom Parkin atomic_long_read(&tunnel->stats.rx_errors)); 1685fd558d18SJames Chapman } 1686fd558d18SJames Chapman 1687fd558d18SJames Chapman static void pppol2tp_seq_session_show(struct seq_file *m, void *v) 1688fd558d18SJames Chapman { 1689fd558d18SJames Chapman struct l2tp_session *session = v; 1690fd558d18SJames Chapman struct l2tp_tunnel *tunnel = session->tunnel; 1691ee40fb2eSGuillaume Nault unsigned char state; 1692ee40fb2eSGuillaume Nault char user_data_ok; 1693ee40fb2eSGuillaume Nault struct sock *sk; 1694fd558d18SJames Chapman u32 ip = 0; 1695fd558d18SJames Chapman u16 port = 0; 1696fd558d18SJames Chapman 1697fd558d18SJames Chapman if (tunnel->sock) { 1698fd558d18SJames Chapman struct inet_sock *inet = inet_sk(tunnel->sock); 1699fd558d18SJames Chapman ip = ntohl(inet->inet_saddr); 1700fd558d18SJames Chapman port = ntohs(inet->inet_sport); 1701fd558d18SJames Chapman } 1702fd558d18SJames Chapman 1703ee40fb2eSGuillaume Nault sk = pppol2tp_session_get_sock(session); 1704ee40fb2eSGuillaume Nault if (sk) { 1705ee40fb2eSGuillaume Nault state = sk->sk_state; 1706ee40fb2eSGuillaume Nault user_data_ok = (session == sk->sk_user_data) ? 'Y' : 'N'; 1707ee40fb2eSGuillaume Nault } else { 1708ee40fb2eSGuillaume Nault state = 0; 1709ee40fb2eSGuillaume Nault user_data_ok = 'N'; 1710ee40fb2eSGuillaume Nault } 1711ee40fb2eSGuillaume Nault 1712fd558d18SJames Chapman seq_printf(m, " SESSION '%s' %08X/%d %04X/%04X -> " 1713fd558d18SJames Chapman "%04X/%04X %d %c\n", 1714fd558d18SJames Chapman session->name, ip, port, 1715fd558d18SJames Chapman tunnel->tunnel_id, 1716fd558d18SJames Chapman session->session_id, 1717fd558d18SJames Chapman tunnel->peer_tunnel_id, 1718fd558d18SJames Chapman session->peer_session_id, 1719ee40fb2eSGuillaume Nault state, user_data_ok); 1720fd558d18SJames Chapman seq_printf(m, " %d/%d/%c/%c/%s %08x %u\n", 1721fd558d18SJames Chapman session->mtu, session->mru, 1722fd558d18SJames Chapman session->recv_seq ? 'R' : '-', 1723fd558d18SJames Chapman session->send_seq ? 'S' : '-', 1724fd558d18SJames Chapman session->lns_mode ? "LNS" : "LAC", 1725fd558d18SJames Chapman session->debug, 1726fd558d18SJames Chapman jiffies_to_msecs(session->reorder_timeout)); 17277b7c0719STom Parkin seq_printf(m, " %hu/%hu %ld/%ld/%ld %ld/%ld/%ld\n", 1728fd558d18SJames Chapman session->nr, session->ns, 17297b7c0719STom Parkin atomic_long_read(&session->stats.tx_packets), 17307b7c0719STom Parkin atomic_long_read(&session->stats.tx_bytes), 17317b7c0719STom Parkin atomic_long_read(&session->stats.tx_errors), 17327b7c0719STom Parkin atomic_long_read(&session->stats.rx_packets), 17337b7c0719STom Parkin atomic_long_read(&session->stats.rx_bytes), 17347b7c0719STom Parkin atomic_long_read(&session->stats.rx_errors)); 17359345471bSJames Chapman 1736ee40fb2eSGuillaume Nault if (sk) { 1737ee40fb2eSGuillaume Nault struct pppox_sock *po = pppox_sk(sk); 1738ee40fb2eSGuillaume Nault 17399345471bSJames Chapman seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan)); 1740ee40fb2eSGuillaume Nault sock_put(sk); 1741ee40fb2eSGuillaume Nault } 1742fd558d18SJames Chapman } 1743fd558d18SJames Chapman 1744fd558d18SJames Chapman static int pppol2tp_seq_show(struct seq_file *m, void *v) 1745fd558d18SJames Chapman { 1746fd558d18SJames Chapman struct pppol2tp_seq_data *pd = v; 1747fd558d18SJames Chapman 1748fd558d18SJames Chapman /* display header on line 1 */ 1749fd558d18SJames Chapman if (v == SEQ_START_TOKEN) { 1750fd558d18SJames Chapman seq_puts(m, "PPPoL2TP driver info, " PPPOL2TP_DRV_VERSION "\n"); 1751fd558d18SJames Chapman seq_puts(m, "TUNNEL name, user-data-ok session-count\n"); 1752fd558d18SJames Chapman seq_puts(m, " debug tx-pkts/bytes/errs rx-pkts/bytes/errs\n"); 1753fd558d18SJames Chapman seq_puts(m, " SESSION name, addr/port src-tid/sid " 1754fd558d18SJames Chapman "dest-tid/sid state user-data-ok\n"); 1755fd558d18SJames Chapman seq_puts(m, " mtu/mru/rcvseq/sendseq/lns debug reorderto\n"); 1756fd558d18SJames Chapman seq_puts(m, " nr/ns tx-pkts/bytes/errs rx-pkts/bytes/errs\n"); 1757fd558d18SJames Chapman goto out; 1758fd558d18SJames Chapman } 1759fd558d18SJames Chapman 176083494407SGuillaume Nault if (!pd->session) 1761fd558d18SJames Chapman pppol2tp_seq_tunnel_show(m, pd->tunnel); 176283494407SGuillaume Nault else 1763fd558d18SJames Chapman pppol2tp_seq_session_show(m, pd->session); 1764fd558d18SJames Chapman 1765fd558d18SJames Chapman out: 1766fd558d18SJames Chapman return 0; 1767fd558d18SJames Chapman } 1768fd558d18SJames Chapman 1769fd558d18SJames Chapman static const struct seq_operations pppol2tp_seq_ops = { 1770fd558d18SJames Chapman .start = pppol2tp_seq_start, 1771fd558d18SJames Chapman .next = pppol2tp_seq_next, 1772fd558d18SJames Chapman .stop = pppol2tp_seq_stop, 1773fd558d18SJames Chapman .show = pppol2tp_seq_show, 1774fd558d18SJames Chapman }; 1775fd558d18SJames Chapman #endif /* CONFIG_PROC_FS */ 1776fd558d18SJames Chapman 1777fd558d18SJames Chapman /***************************************************************************** 1778fd558d18SJames Chapman * Network namespace 1779fd558d18SJames Chapman *****************************************************************************/ 1780fd558d18SJames Chapman 1781fd558d18SJames Chapman static __net_init int pppol2tp_init_net(struct net *net) 1782fd558d18SJames Chapman { 1783fd558d18SJames Chapman struct proc_dir_entry *pde; 1784fd558d18SJames Chapman int err = 0; 1785fd558d18SJames Chapman 1786c3506372SChristoph Hellwig pde = proc_create_net("pppol2tp", 0444, net->proc_net, 1787c3506372SChristoph Hellwig &pppol2tp_seq_ops, sizeof(struct pppol2tp_seq_data)); 1788fd558d18SJames Chapman if (!pde) { 1789fd558d18SJames Chapman err = -ENOMEM; 1790fd558d18SJames Chapman goto out; 1791fd558d18SJames Chapman } 1792fd558d18SJames Chapman 1793fd558d18SJames Chapman out: 1794fd558d18SJames Chapman return err; 1795fd558d18SJames Chapman } 1796fd558d18SJames Chapman 1797fd558d18SJames Chapman static __net_exit void pppol2tp_exit_net(struct net *net) 1798fd558d18SJames Chapman { 1799ece31ffdSGao feng remove_proc_entry("pppol2tp", net->proc_net); 1800fd558d18SJames Chapman } 1801fd558d18SJames Chapman 1802fd558d18SJames Chapman static struct pernet_operations pppol2tp_net_ops = { 1803fd558d18SJames Chapman .init = pppol2tp_init_net, 1804fd558d18SJames Chapman .exit = pppol2tp_exit_net, 1805fd558d18SJames Chapman .id = &pppol2tp_net_id, 1806fd558d18SJames Chapman }; 1807fd558d18SJames Chapman 1808fd558d18SJames Chapman /***************************************************************************** 1809fd558d18SJames Chapman * Init and cleanup 1810fd558d18SJames Chapman *****************************************************************************/ 1811fd558d18SJames Chapman 1812fd558d18SJames Chapman static const struct proto_ops pppol2tp_ops = { 1813fd558d18SJames Chapman .family = AF_PPPOX, 1814fd558d18SJames Chapman .owner = THIS_MODULE, 1815fd558d18SJames Chapman .release = pppol2tp_release, 1816fd558d18SJames Chapman .bind = sock_no_bind, 1817fd558d18SJames Chapman .connect = pppol2tp_connect, 1818fd558d18SJames Chapman .socketpair = sock_no_socketpair, 1819fd558d18SJames Chapman .accept = sock_no_accept, 1820fd558d18SJames Chapman .getname = pppol2tp_getname, 1821db5051eaSChristoph Hellwig .poll_mask = datagram_poll_mask, 1822fd558d18SJames Chapman .listen = sock_no_listen, 1823fd558d18SJames Chapman .shutdown = sock_no_shutdown, 1824fd558d18SJames Chapman .setsockopt = pppol2tp_setsockopt, 1825fd558d18SJames Chapman .getsockopt = pppol2tp_getsockopt, 1826fd558d18SJames Chapman .sendmsg = pppol2tp_sendmsg, 1827fd558d18SJames Chapman .recvmsg = pppol2tp_recvmsg, 1828fd558d18SJames Chapman .mmap = sock_no_mmap, 1829fd558d18SJames Chapman .ioctl = pppox_ioctl, 1830fd558d18SJames Chapman }; 1831fd558d18SJames Chapman 1832756e64a0SEric Dumazet static const struct pppox_proto pppol2tp_proto = { 1833fd558d18SJames Chapman .create = pppol2tp_create, 1834e1558a93SWei Yongjun .ioctl = pppol2tp_ioctl, 1835e1558a93SWei Yongjun .owner = THIS_MODULE, 1836fd558d18SJames Chapman }; 1837fd558d18SJames Chapman 1838309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 1839309795f4SJames Chapman 1840309795f4SJames Chapman static const struct l2tp_nl_cmd_ops pppol2tp_nl_cmd_ops = { 1841309795f4SJames Chapman .session_create = pppol2tp_session_create, 1842cf2f5c88STom Parkin .session_delete = l2tp_session_delete, 1843309795f4SJames Chapman }; 1844309795f4SJames Chapman 1845309795f4SJames Chapman #endif /* CONFIG_L2TP_V3 */ 1846309795f4SJames Chapman 1847fd558d18SJames Chapman static int __init pppol2tp_init(void) 1848fd558d18SJames Chapman { 1849fd558d18SJames Chapman int err; 1850fd558d18SJames Chapman 1851fd558d18SJames Chapman err = register_pernet_device(&pppol2tp_net_ops); 1852fd558d18SJames Chapman if (err) 1853fd558d18SJames Chapman goto out; 1854fd558d18SJames Chapman 1855fd558d18SJames Chapman err = proto_register(&pppol2tp_sk_proto, 0); 1856fd558d18SJames Chapman if (err) 1857fd558d18SJames Chapman goto out_unregister_pppol2tp_pernet; 1858fd558d18SJames Chapman 1859fd558d18SJames Chapman err = register_pppox_proto(PX_PROTO_OL2TP, &pppol2tp_proto); 1860fd558d18SJames Chapman if (err) 1861fd558d18SJames Chapman goto out_unregister_pppol2tp_proto; 1862fd558d18SJames Chapman 1863309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 1864309795f4SJames Chapman err = l2tp_nl_register_ops(L2TP_PWTYPE_PPP, &pppol2tp_nl_cmd_ops); 1865309795f4SJames Chapman if (err) 1866309795f4SJames Chapman goto out_unregister_pppox; 1867309795f4SJames Chapman #endif 1868309795f4SJames Chapman 1869a4ca44faSJoe Perches pr_info("PPPoL2TP kernel driver, %s\n", PPPOL2TP_DRV_VERSION); 1870fd558d18SJames Chapman 1871fd558d18SJames Chapman out: 1872fd558d18SJames Chapman return err; 1873309795f4SJames Chapman 1874309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 1875309795f4SJames Chapman out_unregister_pppox: 1876309795f4SJames Chapman unregister_pppox_proto(PX_PROTO_OL2TP); 1877309795f4SJames Chapman #endif 1878fd558d18SJames Chapman out_unregister_pppol2tp_proto: 1879fd558d18SJames Chapman proto_unregister(&pppol2tp_sk_proto); 1880fd558d18SJames Chapman out_unregister_pppol2tp_pernet: 1881fd558d18SJames Chapman unregister_pernet_device(&pppol2tp_net_ops); 1882fd558d18SJames Chapman goto out; 1883fd558d18SJames Chapman } 1884fd558d18SJames Chapman 1885fd558d18SJames Chapman static void __exit pppol2tp_exit(void) 1886fd558d18SJames Chapman { 1887309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 1888309795f4SJames Chapman l2tp_nl_unregister_ops(L2TP_PWTYPE_PPP); 1889309795f4SJames Chapman #endif 1890fd558d18SJames Chapman unregister_pppox_proto(PX_PROTO_OL2TP); 1891fd558d18SJames Chapman proto_unregister(&pppol2tp_sk_proto); 1892fd558d18SJames Chapman unregister_pernet_device(&pppol2tp_net_ops); 1893fd558d18SJames Chapman } 1894fd558d18SJames Chapman 1895fd558d18SJames Chapman module_init(pppol2tp_init); 1896fd558d18SJames Chapman module_exit(pppol2tp_exit); 1897fd558d18SJames Chapman 1898fd558d18SJames Chapman MODULE_AUTHOR("James Chapman <jchapman@katalix.com>"); 1899fd558d18SJames Chapman MODULE_DESCRIPTION("PPP over L2TP over UDP"); 1900fd558d18SJames Chapman MODULE_LICENSE("GPL"); 1901fd558d18SJames Chapman MODULE_VERSION(PPPOL2TP_DRV_VERSION); 1902681b4d88SGuillaume Nault MODULE_ALIAS_NET_PF_PROTO(PF_PPPOX, PX_PROTO_OL2TP); 1903249ee819SGuillaume Nault MODULE_ALIAS_L2TP_PWTYPE(7); 1904