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/ip.h> 97fd558d18SJames Chapman #include <net/udp.h> 98cf2f5c88STom Parkin #include <net/inet_common.h> 99fd558d18SJames Chapman 100fd558d18SJames Chapman #include <asm/byteorder.h> 10160063497SArun Sharma #include <linux/atomic.h> 102fd558d18SJames Chapman 103fd558d18SJames Chapman #include "l2tp_core.h" 104fd558d18SJames Chapman 105fd558d18SJames Chapman #define PPPOL2TP_DRV_VERSION "V2.0" 106fd558d18SJames Chapman 107fd558d18SJames Chapman /* Space for UDP, L2TP and PPP headers */ 108fd558d18SJames Chapman #define PPPOL2TP_HEADER_OVERHEAD 40 109fd558d18SJames Chapman 110fd558d18SJames Chapman /* Number of bytes to build transmit L2TP headers. 111fd558d18SJames Chapman * Unfortunately the size is different depending on whether sequence numbers 112fd558d18SJames Chapman * are enabled. 113fd558d18SJames Chapman */ 114fd558d18SJames Chapman #define PPPOL2TP_L2TP_HDR_SIZE_SEQ 10 115fd558d18SJames Chapman #define PPPOL2TP_L2TP_HDR_SIZE_NOSEQ 6 116fd558d18SJames Chapman 117fd558d18SJames Chapman /* Private data of each session. This data lives at the end of struct 118fd558d18SJames Chapman * l2tp_session, referenced via session->priv[]. 119fd558d18SJames Chapman */ 120fd558d18SJames Chapman struct pppol2tp_session { 121fd558d18SJames Chapman int owner; /* pid that opened the socket */ 122fd558d18SJames Chapman 123ee40fb2eSGuillaume Nault struct mutex sk_lock; /* Protects .sk */ 124ee40fb2eSGuillaume Nault struct sock __rcu *sk; /* Pointer to the session 125fd558d18SJames Chapman * PPPoX socket */ 126ee40fb2eSGuillaume Nault struct sock *__sk; /* Copy of .sk, for cleanup */ 127ee40fb2eSGuillaume Nault struct rcu_head rcu; /* For asynchronous release */ 128fd558d18SJames Chapman }; 129fd558d18SJames Chapman 130fd558d18SJames Chapman static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb); 131fd558d18SJames Chapman 132d7100da0Sstephen hemminger static const struct ppp_channel_ops pppol2tp_chan_ops = { 133d7100da0Sstephen hemminger .start_xmit = pppol2tp_xmit, 134d7100da0Sstephen hemminger }; 135d7100da0Sstephen hemminger 136fd558d18SJames Chapman static const struct proto_ops pppol2tp_ops; 137fd558d18SJames Chapman 138ee40fb2eSGuillaume Nault /* Retrieves the pppol2tp socket associated to a session. 139ee40fb2eSGuillaume Nault * A reference is held on the returned socket, so this function must be paired 140ee40fb2eSGuillaume Nault * with sock_put(). 141ee40fb2eSGuillaume Nault */ 142ee40fb2eSGuillaume Nault static struct sock *pppol2tp_session_get_sock(struct l2tp_session *session) 143ee40fb2eSGuillaume Nault { 144ee40fb2eSGuillaume Nault struct pppol2tp_session *ps = l2tp_session_priv(session); 145ee40fb2eSGuillaume Nault struct sock *sk; 146ee40fb2eSGuillaume Nault 147ee40fb2eSGuillaume Nault rcu_read_lock(); 148ee40fb2eSGuillaume Nault sk = rcu_dereference(ps->sk); 149ee40fb2eSGuillaume Nault if (sk) 150ee40fb2eSGuillaume Nault sock_hold(sk); 151ee40fb2eSGuillaume Nault rcu_read_unlock(); 152ee40fb2eSGuillaume Nault 153ee40fb2eSGuillaume Nault return sk; 154ee40fb2eSGuillaume Nault } 155ee40fb2eSGuillaume Nault 156fd558d18SJames Chapman /* Helpers to obtain tunnel/session contexts from sockets. 157fd558d18SJames Chapman */ 158fd558d18SJames Chapman static inline struct l2tp_session *pppol2tp_sock_to_session(struct sock *sk) 159fd558d18SJames Chapman { 160fd558d18SJames Chapman struct l2tp_session *session; 161fd558d18SJames Chapman 162fd558d18SJames Chapman if (sk == NULL) 163fd558d18SJames Chapman return NULL; 164fd558d18SJames Chapman 165fd558d18SJames Chapman sock_hold(sk); 166fd558d18SJames Chapman session = (struct l2tp_session *)(sk->sk_user_data); 167fd558d18SJames Chapman if (session == NULL) { 168fd558d18SJames Chapman sock_put(sk); 169fd558d18SJames Chapman goto out; 170fd558d18SJames Chapman } 171fd558d18SJames Chapman 172fd558d18SJames Chapman BUG_ON(session->magic != L2TP_SESSION_MAGIC); 173fd558d18SJames Chapman 174fd558d18SJames Chapman out: 175fd558d18SJames Chapman return session; 176fd558d18SJames Chapman } 177fd558d18SJames Chapman 178fd558d18SJames Chapman /***************************************************************************** 179fd558d18SJames Chapman * Receive data handling 180fd558d18SJames Chapman *****************************************************************************/ 181fd558d18SJames Chapman 182fd558d18SJames Chapman /* Receive message. This is the recvmsg for the PPPoL2TP socket. 183fd558d18SJames Chapman */ 1841b784140SYing Xue static int pppol2tp_recvmsg(struct socket *sock, struct msghdr *msg, 1851b784140SYing Xue size_t len, int flags) 186fd558d18SJames Chapman { 187fd558d18SJames Chapman int err; 188fd558d18SJames Chapman struct sk_buff *skb; 189fd558d18SJames Chapman struct sock *sk = sock->sk; 190fd558d18SJames Chapman 191fd558d18SJames Chapman err = -EIO; 192fd558d18SJames Chapman if (sk->sk_state & PPPOX_BOUND) 193fd558d18SJames Chapman goto end; 194fd558d18SJames Chapman 195fd558d18SJames Chapman err = 0; 196fd558d18SJames Chapman skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT, 197fd558d18SJames Chapman flags & MSG_DONTWAIT, &err); 198fd558d18SJames Chapman if (!skb) 199fd558d18SJames Chapman goto end; 200fd558d18SJames Chapman 201fd558d18SJames Chapman if (len > skb->len) 202fd558d18SJames Chapman len = skb->len; 203fd558d18SJames Chapman else if (len < skb->len) 204fd558d18SJames Chapman msg->msg_flags |= MSG_TRUNC; 205fd558d18SJames Chapman 20651f3d02bSDavid S. Miller err = skb_copy_datagram_msg(skb, 0, msg, len); 207fd558d18SJames Chapman if (likely(err == 0)) 208fd558d18SJames Chapman err = len; 209fd558d18SJames Chapman 210fd558d18SJames Chapman kfree_skb(skb); 211fd558d18SJames Chapman end: 212fd558d18SJames Chapman return err; 213fd558d18SJames Chapman } 214fd558d18SJames Chapman 215fd558d18SJames Chapman static void pppol2tp_recv(struct l2tp_session *session, struct sk_buff *skb, int data_len) 216fd558d18SJames Chapman { 217fd558d18SJames Chapman struct pppol2tp_session *ps = l2tp_session_priv(session); 218fd558d18SJames Chapman struct sock *sk = NULL; 219fd558d18SJames Chapman 220fd558d18SJames Chapman /* If the socket is bound, send it in to PPP's input queue. Otherwise 221fd558d18SJames Chapman * queue it on the session socket. 222fd558d18SJames Chapman */ 223ee40fb2eSGuillaume Nault rcu_read_lock(); 224ee40fb2eSGuillaume Nault sk = rcu_dereference(ps->sk); 225fd558d18SJames Chapman if (sk == NULL) 226fd558d18SJames Chapman goto no_sock; 227fd558d18SJames Chapman 2282b139e6bSGuillaume Nault /* If the first two bytes are 0xFF03, consider that it is the PPP's 2292b139e6bSGuillaume Nault * Address and Control fields and skip them. The L2TP module has always 2302b139e6bSGuillaume Nault * worked this way, although, in theory, the use of these fields should 2312b139e6bSGuillaume Nault * be negociated and handled at the PPP layer. These fields are 2322b139e6bSGuillaume Nault * constant: 0xFF is the All-Stations Address and 0x03 the Unnumbered 2332b139e6bSGuillaume Nault * Information command with Poll/Final bit set to zero (RFC 1662). 2342b139e6bSGuillaume Nault */ 2352b139e6bSGuillaume Nault if (pskb_may_pull(skb, 2) && skb->data[0] == PPP_ALLSTATIONS && 2362b139e6bSGuillaume Nault skb->data[1] == PPP_UI) 2372b139e6bSGuillaume Nault skb_pull(skb, 2); 2382b139e6bSGuillaume Nault 239fd558d18SJames Chapman if (sk->sk_state & PPPOX_BOUND) { 240fd558d18SJames Chapman struct pppox_sock *po; 24198f40b3eSGuillaume Nault 242fba40c63SAsbjørn Sloth Tønnesen l2tp_dbg(session, L2TP_MSG_DATA, 243fd558d18SJames Chapman "%s: recv %d byte data frame, passing to ppp\n", 244fd558d18SJames Chapman session->name, data_len); 245fd558d18SJames Chapman 246fd558d18SJames Chapman po = pppox_sk(sk); 247fd558d18SJames Chapman ppp_input(&po->chan, skb); 248fd558d18SJames Chapman } else { 249fba40c63SAsbjørn Sloth Tønnesen l2tp_dbg(session, L2TP_MSG_DATA, 2509e9cb622SGuillaume Nault "%s: recv %d byte data frame, passing to L2TP socket\n", 2519e9cb622SGuillaume Nault session->name, data_len); 252fd558d18SJames Chapman 2539e9cb622SGuillaume Nault if (sock_queue_rcv_skb(sk, skb) < 0) { 2547b7c0719STom Parkin atomic_long_inc(&session->stats.rx_errors); 255fd558d18SJames Chapman kfree_skb(skb); 256fd558d18SJames Chapman } 2579e9cb622SGuillaume Nault } 258ee40fb2eSGuillaume Nault rcu_read_unlock(); 259fd558d18SJames Chapman 260fd558d18SJames Chapman return; 261fd558d18SJames Chapman 262fd558d18SJames Chapman no_sock: 263ee40fb2eSGuillaume Nault rcu_read_unlock(); 264fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_DATA, "%s: no socket\n", session->name); 265fd558d18SJames Chapman kfree_skb(skb); 266fd558d18SJames Chapman } 267fd558d18SJames Chapman 268fd558d18SJames Chapman /************************************************************************ 269fd558d18SJames Chapman * Transmit handling 270fd558d18SJames Chapman ***********************************************************************/ 271fd558d18SJames Chapman 272fd558d18SJames Chapman /* This is the sendmsg for the PPPoL2TP pppol2tp_session socket. We come here 273fd558d18SJames Chapman * when a user application does a sendmsg() on the session socket. L2TP and 274fd558d18SJames Chapman * PPP headers must be inserted into the user's data. 275fd558d18SJames Chapman */ 2761b784140SYing Xue static int pppol2tp_sendmsg(struct socket *sock, struct msghdr *m, 277fd558d18SJames Chapman size_t total_len) 278fd558d18SJames Chapman { 279fd558d18SJames Chapman struct sock *sk = sock->sk; 280fd558d18SJames Chapman struct sk_buff *skb; 281fd558d18SJames Chapman int error; 282fd558d18SJames Chapman struct l2tp_session *session; 283fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 2840d76751fSJames Chapman int uhlen; 285fd558d18SJames Chapman 286fd558d18SJames Chapman error = -ENOTCONN; 287fd558d18SJames Chapman if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED)) 288fd558d18SJames Chapman goto error; 289fd558d18SJames Chapman 290fd558d18SJames Chapman /* Get session and tunnel contexts */ 291fd558d18SJames Chapman error = -EBADF; 292fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 293fd558d18SJames Chapman if (session == NULL) 294fd558d18SJames Chapman goto error; 295fd558d18SJames Chapman 2967198c77aSGuillaume Nault tunnel = session->tunnel; 297fd558d18SJames Chapman 2980d76751fSJames Chapman uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0; 2990d76751fSJames Chapman 300fd558d18SJames Chapman /* Allocate a socket buffer */ 301fd558d18SJames Chapman error = -ENOMEM; 302fd558d18SJames Chapman skb = sock_wmalloc(sk, NET_SKB_PAD + sizeof(struct iphdr) + 3030d76751fSJames Chapman uhlen + session->hdr_len + 30454c151d9SGao Feng 2 + total_len, /* 2 bytes for PPP_ALLSTATIONS & PPP_UI */ 305fd558d18SJames Chapman 0, GFP_KERNEL); 306fd558d18SJames Chapman if (!skb) 3077198c77aSGuillaume Nault goto error_put_sess; 308fd558d18SJames Chapman 309fd558d18SJames Chapman /* Reserve space for headers. */ 310fd558d18SJames Chapman skb_reserve(skb, NET_SKB_PAD); 311fd558d18SJames Chapman skb_reset_network_header(skb); 312fd558d18SJames Chapman skb_reserve(skb, sizeof(struct iphdr)); 313fd558d18SJames Chapman skb_reset_transport_header(skb); 3140d76751fSJames Chapman skb_reserve(skb, uhlen); 315fd558d18SJames Chapman 316fd558d18SJames Chapman /* Add PPP header */ 31754c151d9SGao Feng skb->data[0] = PPP_ALLSTATIONS; 31854c151d9SGao Feng skb->data[1] = PPP_UI; 319fd558d18SJames Chapman skb_put(skb, 2); 320fd558d18SJames Chapman 321fd558d18SJames Chapman /* Copy user data into skb */ 3226ce8e9ceSAl Viro error = memcpy_from_msg(skb_put(skb, total_len), m, total_len); 323fd558d18SJames Chapman if (error < 0) { 324fd558d18SJames Chapman kfree_skb(skb); 3257198c77aSGuillaume Nault goto error_put_sess; 326fd558d18SJames Chapman } 327fd558d18SJames Chapman 328455cc32bSEric Dumazet local_bh_disable(); 329fd558d18SJames Chapman l2tp_xmit_skb(session, skb, session->hdr_len); 330455cc32bSEric Dumazet local_bh_enable(); 331fd558d18SJames Chapman 3328b82547eSGuillaume Nault sock_put(sk); 333fd558d18SJames Chapman 334a6f79d0fSGuillaume Nault return total_len; 335fd558d18SJames Chapman 336fd558d18SJames Chapman error_put_sess: 337fd558d18SJames Chapman sock_put(sk); 338fd558d18SJames Chapman error: 339fd558d18SJames Chapman return error; 340fd558d18SJames Chapman } 341fd558d18SJames Chapman 342fd558d18SJames Chapman /* Transmit function called by generic PPP driver. Sends PPP frame 343fd558d18SJames Chapman * over PPPoL2TP socket. 344fd558d18SJames Chapman * 345fd558d18SJames Chapman * This is almost the same as pppol2tp_sendmsg(), but rather than 346fd558d18SJames Chapman * being called with a msghdr from userspace, it is called with a skb 347fd558d18SJames Chapman * from the kernel. 348fd558d18SJames Chapman * 349fd558d18SJames Chapman * The supplied skb from ppp doesn't have enough headroom for the 350fd558d18SJames Chapman * insertion of L2TP, UDP and IP headers so we need to allocate more 351fd558d18SJames Chapman * headroom in the skb. This will create a cloned skb. But we must be 352fd558d18SJames Chapman * careful in the error case because the caller will expect to free 353fd558d18SJames Chapman * the skb it supplied, not our cloned skb. So we take care to always 354fd558d18SJames Chapman * leave the original skb unfreed if we return an error. 355fd558d18SJames Chapman */ 356fd558d18SJames Chapman static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb) 357fd558d18SJames Chapman { 358fd558d18SJames Chapman struct sock *sk = (struct sock *) chan->private; 359fd558d18SJames Chapman struct l2tp_session *session; 360fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 36109df57caSEric Dumazet int uhlen, headroom; 362fd558d18SJames Chapman 363fd558d18SJames Chapman if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED)) 364fd558d18SJames Chapman goto abort; 365fd558d18SJames Chapman 366fd558d18SJames Chapman /* Get session and tunnel contexts from the socket */ 367fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 368fd558d18SJames Chapman if (session == NULL) 369fd558d18SJames Chapman goto abort; 370fd558d18SJames Chapman 3717198c77aSGuillaume Nault tunnel = session->tunnel; 372fd558d18SJames Chapman 37309df57caSEric Dumazet uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0; 37409df57caSEric Dumazet headroom = NET_SKB_PAD + 37509df57caSEric Dumazet sizeof(struct iphdr) + /* IP header */ 37609df57caSEric Dumazet uhlen + /* UDP header (if L2TP_ENCAPTYPE_UDP) */ 37709df57caSEric Dumazet session->hdr_len + /* L2TP header */ 37854c151d9SGao Feng 2; /* 2 bytes for PPP_ALLSTATIONS & PPP_UI */ 37909df57caSEric Dumazet if (skb_cow_head(skb, headroom)) 3807198c77aSGuillaume Nault goto abort_put_sess; 381fd558d18SJames Chapman 382fd558d18SJames Chapman /* Setup PPP header */ 38354c151d9SGao Feng __skb_push(skb, 2); 38454c151d9SGao Feng skb->data[0] = PPP_ALLSTATIONS; 38554c151d9SGao Feng skb->data[1] = PPP_UI; 386fd558d18SJames Chapman 387455cc32bSEric Dumazet local_bh_disable(); 388e0d4435fSJames Chapman l2tp_xmit_skb(session, skb, session->hdr_len); 389455cc32bSEric Dumazet local_bh_enable(); 390fd558d18SJames Chapman 391fd558d18SJames Chapman sock_put(sk); 3927198c77aSGuillaume Nault 393fd558d18SJames Chapman return 1; 394fd558d18SJames Chapman 395fd558d18SJames Chapman abort_put_sess: 396fd558d18SJames Chapman sock_put(sk); 397fd558d18SJames Chapman abort: 398fd558d18SJames Chapman /* Free the original skb */ 399fd558d18SJames Chapman kfree_skb(skb); 400fd558d18SJames Chapman return 1; 401fd558d18SJames Chapman } 402fd558d18SJames Chapman 403fd558d18SJames Chapman /***************************************************************************** 404fd558d18SJames Chapman * Session (and tunnel control) socket create/destroy. 405fd558d18SJames Chapman *****************************************************************************/ 406fd558d18SJames Chapman 407d02ba2a6SJames Chapman static void pppol2tp_put_sk(struct rcu_head *head) 408d02ba2a6SJames Chapman { 409d02ba2a6SJames Chapman struct pppol2tp_session *ps; 410d02ba2a6SJames Chapman 411d02ba2a6SJames Chapman ps = container_of(head, typeof(*ps), rcu); 412d02ba2a6SJames Chapman sock_put(ps->__sk); 413d02ba2a6SJames Chapman } 414d02ba2a6SJames Chapman 415fd558d18SJames Chapman /* Really kill the session socket. (Called from sock_put() if 416fd558d18SJames Chapman * refcnt == 0.) 417fd558d18SJames Chapman */ 418fd558d18SJames Chapman static void pppol2tp_session_destruct(struct sock *sk) 419fd558d18SJames Chapman { 420f6e16b29STom Parkin struct l2tp_session *session = sk->sk_user_data; 421e91793bbSGuillaume Nault 422e91793bbSGuillaume Nault skb_queue_purge(&sk->sk_receive_queue); 423e91793bbSGuillaume Nault skb_queue_purge(&sk->sk_write_queue); 424e91793bbSGuillaume Nault 425f6e16b29STom Parkin if (session) { 426fd558d18SJames Chapman sk->sk_user_data = NULL; 427fd558d18SJames Chapman BUG_ON(session->magic != L2TP_SESSION_MAGIC); 428fd558d18SJames Chapman l2tp_session_dec_refcount(session); 429fd558d18SJames Chapman } 430fd558d18SJames Chapman } 431fd558d18SJames Chapman 432fd558d18SJames Chapman /* Called when the PPPoX socket (session) is closed. 433fd558d18SJames Chapman */ 434fd558d18SJames Chapman static int pppol2tp_release(struct socket *sock) 435fd558d18SJames Chapman { 436fd558d18SJames Chapman struct sock *sk = sock->sk; 437fd558d18SJames Chapman struct l2tp_session *session; 438fd558d18SJames Chapman int error; 439fd558d18SJames Chapman 440fd558d18SJames Chapman if (!sk) 441fd558d18SJames Chapman return 0; 442fd558d18SJames Chapman 443fd558d18SJames Chapman error = -EBADF; 444fd558d18SJames Chapman lock_sock(sk); 445fd558d18SJames Chapman if (sock_flag(sk, SOCK_DEAD) != 0) 446fd558d18SJames Chapman goto error; 447fd558d18SJames Chapman 448fd558d18SJames Chapman pppox_unbind_sock(sk); 449fd558d18SJames Chapman 450fd558d18SJames Chapman /* Signal the death of the socket. */ 451fd558d18SJames Chapman sk->sk_state = PPPOX_DEAD; 452fd558d18SJames Chapman sock_orphan(sk); 453fd558d18SJames Chapman sock->sk = NULL; 454fd558d18SJames Chapman 455d02ba2a6SJames Chapman session = pppol2tp_sock_to_session(sk); 456d02ba2a6SJames Chapman if (session) { 4573d609342SGuillaume Nault struct pppol2tp_session *ps; 4583d609342SGuillaume Nault 459d02ba2a6SJames Chapman l2tp_session_delete(session); 4603d609342SGuillaume Nault 4613d609342SGuillaume Nault ps = l2tp_session_priv(session); 4623d609342SGuillaume Nault mutex_lock(&ps->sk_lock); 4633d609342SGuillaume Nault ps->__sk = rcu_dereference_protected(ps->sk, 4643d609342SGuillaume Nault lockdep_is_held(&ps->sk_lock)); 4653d609342SGuillaume Nault RCU_INIT_POINTER(ps->sk, NULL); 4663d609342SGuillaume Nault mutex_unlock(&ps->sk_lock); 4673d609342SGuillaume Nault call_rcu(&ps->rcu, pppol2tp_put_sk); 4683d609342SGuillaume Nault 4693d609342SGuillaume Nault /* Rely on the sock_put() call at the end of the function for 4703d609342SGuillaume Nault * dropping the reference held by pppol2tp_sock_to_session(). 4713d609342SGuillaume Nault * The last reference will be dropped by pppol2tp_put_sk(). 4723d609342SGuillaume Nault */ 473cf2f5c88STom Parkin } 474d02ba2a6SJames Chapman 475fd558d18SJames Chapman release_sock(sk); 476fd558d18SJames Chapman 477fd558d18SJames Chapman /* This will delete the session context via 478fd558d18SJames Chapman * pppol2tp_session_destruct() if the socket's refcnt drops to 479fd558d18SJames Chapman * zero. 480fd558d18SJames Chapman */ 481fd558d18SJames Chapman sock_put(sk); 482fd558d18SJames Chapman 483fd558d18SJames Chapman return 0; 484fd558d18SJames Chapman 485fd558d18SJames Chapman error: 486fd558d18SJames Chapman release_sock(sk); 487fd558d18SJames Chapman return error; 488fd558d18SJames Chapman } 489fd558d18SJames Chapman 490fd558d18SJames Chapman static struct proto pppol2tp_sk_proto = { 491fd558d18SJames Chapman .name = "PPPOL2TP", 492fd558d18SJames Chapman .owner = THIS_MODULE, 493fd558d18SJames Chapman .obj_size = sizeof(struct pppox_sock), 494fd558d18SJames Chapman }; 495fd558d18SJames Chapman 496fd558d18SJames Chapman static int pppol2tp_backlog_recv(struct sock *sk, struct sk_buff *skb) 497fd558d18SJames Chapman { 498fd558d18SJames Chapman int rc; 499fd558d18SJames Chapman 500fd558d18SJames Chapman rc = l2tp_udp_encap_recv(sk, skb); 501fd558d18SJames Chapman if (rc) 502fd558d18SJames Chapman kfree_skb(skb); 503fd558d18SJames Chapman 504fd558d18SJames Chapman return NET_RX_SUCCESS; 505fd558d18SJames Chapman } 506fd558d18SJames Chapman 507fd558d18SJames Chapman /* socket() handler. Initialize a new struct sock. 508fd558d18SJames Chapman */ 50911aa9c28SEric W. Biederman static int pppol2tp_create(struct net *net, struct socket *sock, int kern) 510fd558d18SJames Chapman { 511fd558d18SJames Chapman int error = -ENOMEM; 512fd558d18SJames Chapman struct sock *sk; 513fd558d18SJames Chapman 51411aa9c28SEric W. Biederman sk = sk_alloc(net, PF_PPPOX, GFP_KERNEL, &pppol2tp_sk_proto, kern); 515fd558d18SJames Chapman if (!sk) 516fd558d18SJames Chapman goto out; 517fd558d18SJames Chapman 518fd558d18SJames Chapman sock_init_data(sock, sk); 519fd558d18SJames Chapman 520fd558d18SJames Chapman sock->state = SS_UNCONNECTED; 521fd558d18SJames Chapman sock->ops = &pppol2tp_ops; 522fd558d18SJames Chapman 523fd558d18SJames Chapman sk->sk_backlog_rcv = pppol2tp_backlog_recv; 524fd558d18SJames Chapman sk->sk_protocol = PX_PROTO_OL2TP; 525fd558d18SJames Chapman sk->sk_family = PF_PPPOX; 526fd558d18SJames Chapman sk->sk_state = PPPOX_NONE; 527fd558d18SJames Chapman sk->sk_type = SOCK_STREAM; 528fd558d18SJames Chapman sk->sk_destruct = pppol2tp_session_destruct; 529fd558d18SJames Chapman 530fd558d18SJames Chapman error = 0; 531fd558d18SJames Chapman 532fd558d18SJames Chapman out: 533fd558d18SJames Chapman return error; 534fd558d18SJames Chapman } 535fd558d18SJames Chapman 5360ad66140SJames Chapman static void pppol2tp_show(struct seq_file *m, void *arg) 5370ad66140SJames Chapman { 5380ad66140SJames Chapman struct l2tp_session *session = arg; 539ee40fb2eSGuillaume Nault struct sock *sk; 5400ad66140SJames Chapman 541ee40fb2eSGuillaume Nault sk = pppol2tp_session_get_sock(session); 542ee40fb2eSGuillaume Nault if (sk) { 543ee40fb2eSGuillaume Nault struct pppox_sock *po = pppox_sk(sk); 544ee40fb2eSGuillaume Nault 5450ad66140SJames Chapman seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan)); 546ee40fb2eSGuillaume Nault sock_put(sk); 5470ad66140SJames Chapman } 5480ad66140SJames Chapman } 5490ad66140SJames Chapman 550f98be6c6SGuillaume Nault static void pppol2tp_session_init(struct l2tp_session *session) 551f98be6c6SGuillaume Nault { 552f98be6c6SGuillaume Nault struct pppol2tp_session *ps; 553f98be6c6SGuillaume Nault 554f98be6c6SGuillaume Nault session->recv_skb = pppol2tp_recv; 555*c2ebc256SArnd Bergmann if (IS_ENABLED(CONFIG_L2TP_DEBUGFS)) 556f98be6c6SGuillaume Nault session->show = pppol2tp_show; 557f98be6c6SGuillaume Nault 558f98be6c6SGuillaume Nault ps = l2tp_session_priv(session); 559f98be6c6SGuillaume Nault mutex_init(&ps->sk_lock); 560f98be6c6SGuillaume Nault ps->owner = current->pid; 561f98be6c6SGuillaume Nault } 562f98be6c6SGuillaume Nault 563a408194aSGuillaume Nault struct l2tp_connect_info { 564a408194aSGuillaume Nault u8 version; 565a408194aSGuillaume Nault int fd; 566a408194aSGuillaume Nault u32 tunnel_id; 567a408194aSGuillaume Nault u32 peer_tunnel_id; 568a408194aSGuillaume Nault u32 session_id; 569a408194aSGuillaume Nault u32 peer_session_id; 570a408194aSGuillaume Nault }; 571a408194aSGuillaume Nault 572a408194aSGuillaume Nault static int pppol2tp_sockaddr_get_info(const void *sa, int sa_len, 573a408194aSGuillaume Nault struct l2tp_connect_info *info) 574a408194aSGuillaume Nault { 575a408194aSGuillaume Nault switch (sa_len) { 576a408194aSGuillaume Nault case sizeof(struct sockaddr_pppol2tp): 577a408194aSGuillaume Nault { 578a408194aSGuillaume Nault const struct sockaddr_pppol2tp *sa_v2in4 = sa; 579a408194aSGuillaume Nault 580a408194aSGuillaume Nault if (sa_v2in4->sa_protocol != PX_PROTO_OL2TP) 581a408194aSGuillaume Nault return -EINVAL; 582a408194aSGuillaume Nault 583a408194aSGuillaume Nault info->version = 2; 584a408194aSGuillaume Nault info->fd = sa_v2in4->pppol2tp.fd; 585a408194aSGuillaume Nault info->tunnel_id = sa_v2in4->pppol2tp.s_tunnel; 586a408194aSGuillaume Nault info->peer_tunnel_id = sa_v2in4->pppol2tp.d_tunnel; 587a408194aSGuillaume Nault info->session_id = sa_v2in4->pppol2tp.s_session; 588a408194aSGuillaume Nault info->peer_session_id = sa_v2in4->pppol2tp.d_session; 589a408194aSGuillaume Nault 590a408194aSGuillaume Nault break; 591a408194aSGuillaume Nault } 592a408194aSGuillaume Nault case sizeof(struct sockaddr_pppol2tpv3): 593a408194aSGuillaume Nault { 594a408194aSGuillaume Nault const struct sockaddr_pppol2tpv3 *sa_v3in4 = sa; 595a408194aSGuillaume Nault 596a408194aSGuillaume Nault if (sa_v3in4->sa_protocol != PX_PROTO_OL2TP) 597a408194aSGuillaume Nault return -EINVAL; 598a408194aSGuillaume Nault 599a408194aSGuillaume Nault info->version = 3; 600a408194aSGuillaume Nault info->fd = sa_v3in4->pppol2tp.fd; 601a408194aSGuillaume Nault info->tunnel_id = sa_v3in4->pppol2tp.s_tunnel; 602a408194aSGuillaume Nault info->peer_tunnel_id = sa_v3in4->pppol2tp.d_tunnel; 603a408194aSGuillaume Nault info->session_id = sa_v3in4->pppol2tp.s_session; 604a408194aSGuillaume Nault info->peer_session_id = sa_v3in4->pppol2tp.d_session; 605a408194aSGuillaume Nault 606a408194aSGuillaume Nault break; 607a408194aSGuillaume Nault } 608a408194aSGuillaume Nault case sizeof(struct sockaddr_pppol2tpin6): 609a408194aSGuillaume Nault { 610a408194aSGuillaume Nault const struct sockaddr_pppol2tpin6 *sa_v2in6 = sa; 611a408194aSGuillaume Nault 612a408194aSGuillaume Nault if (sa_v2in6->sa_protocol != PX_PROTO_OL2TP) 613a408194aSGuillaume Nault return -EINVAL; 614a408194aSGuillaume Nault 615a408194aSGuillaume Nault info->version = 2; 616a408194aSGuillaume Nault info->fd = sa_v2in6->pppol2tp.fd; 617a408194aSGuillaume Nault info->tunnel_id = sa_v2in6->pppol2tp.s_tunnel; 618a408194aSGuillaume Nault info->peer_tunnel_id = sa_v2in6->pppol2tp.d_tunnel; 619a408194aSGuillaume Nault info->session_id = sa_v2in6->pppol2tp.s_session; 620a408194aSGuillaume Nault info->peer_session_id = sa_v2in6->pppol2tp.d_session; 621a408194aSGuillaume Nault 622a408194aSGuillaume Nault break; 623a408194aSGuillaume Nault } 624a408194aSGuillaume Nault case sizeof(struct sockaddr_pppol2tpv3in6): 625a408194aSGuillaume Nault { 626a408194aSGuillaume Nault const struct sockaddr_pppol2tpv3in6 *sa_v3in6 = sa; 627a408194aSGuillaume Nault 628a408194aSGuillaume Nault if (sa_v3in6->sa_protocol != PX_PROTO_OL2TP) 629a408194aSGuillaume Nault return -EINVAL; 630a408194aSGuillaume Nault 631a408194aSGuillaume Nault info->version = 3; 632a408194aSGuillaume Nault info->fd = sa_v3in6->pppol2tp.fd; 633a408194aSGuillaume Nault info->tunnel_id = sa_v3in6->pppol2tp.s_tunnel; 634a408194aSGuillaume Nault info->peer_tunnel_id = sa_v3in6->pppol2tp.d_tunnel; 635a408194aSGuillaume Nault info->session_id = sa_v3in6->pppol2tp.s_session; 636a408194aSGuillaume Nault info->peer_session_id = sa_v3in6->pppol2tp.d_session; 637a408194aSGuillaume Nault 638a408194aSGuillaume Nault break; 639a408194aSGuillaume Nault } 640a408194aSGuillaume Nault default: 641a408194aSGuillaume Nault return -EINVAL; 642a408194aSGuillaume Nault } 643a408194aSGuillaume Nault 644a408194aSGuillaume Nault return 0; 645a408194aSGuillaume Nault } 646a408194aSGuillaume Nault 647789141b2SGuillaume Nault /* Rough estimation of the maximum payload size a tunnel can transmit without 648789141b2SGuillaume Nault * fragmenting at the lower IP layer. Assumes L2TPv2 with sequence 649789141b2SGuillaume Nault * numbers and no IP option. Not quite accurate, but the result is mostly 650789141b2SGuillaume Nault * unused anyway. 651789141b2SGuillaume Nault */ 652789141b2SGuillaume Nault static int pppol2tp_tunnel_mtu(const struct l2tp_tunnel *tunnel) 653789141b2SGuillaume Nault { 654789141b2SGuillaume Nault int mtu; 655789141b2SGuillaume Nault 656789141b2SGuillaume Nault mtu = l2tp_tunnel_dst_mtu(tunnel); 657789141b2SGuillaume Nault if (mtu <= PPPOL2TP_HEADER_OVERHEAD) 658789141b2SGuillaume Nault return 1500 - PPPOL2TP_HEADER_OVERHEAD; 659789141b2SGuillaume Nault 660789141b2SGuillaume Nault return mtu - PPPOL2TP_HEADER_OVERHEAD; 661789141b2SGuillaume Nault } 662789141b2SGuillaume Nault 663fd558d18SJames Chapman /* connect() handler. Attach a PPPoX socket to a tunnel UDP socket 664fd558d18SJames Chapman */ 665fd558d18SJames Chapman static int pppol2tp_connect(struct socket *sock, struct sockaddr *uservaddr, 666fd558d18SJames Chapman int sockaddr_len, int flags) 667fd558d18SJames Chapman { 668fd558d18SJames Chapman struct sock *sk = sock->sk; 669fd558d18SJames Chapman struct pppox_sock *po = pppox_sk(sk); 670fd558d18SJames Chapman struct l2tp_session *session = NULL; 671a408194aSGuillaume Nault struct l2tp_connect_info info; 672fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 673fd558d18SJames Chapman struct pppol2tp_session *ps; 674fd558d18SJames Chapman struct l2tp_session_cfg cfg = { 0, }; 675dbdbc73bSGuillaume Nault bool drop_refcnt = false; 676f9e56bafSGuillaume Nault bool drop_tunnel = false; 677bda06be2SGuillaume Nault bool new_session = false; 678bda06be2SGuillaume Nault bool new_tunnel = false; 679a408194aSGuillaume Nault int error; 680a408194aSGuillaume Nault 681a408194aSGuillaume Nault error = pppol2tp_sockaddr_get_info(uservaddr, sockaddr_len, &info); 682a408194aSGuillaume Nault if (error < 0) 683a408194aSGuillaume Nault return error; 684fd558d18SJames Chapman 685fd558d18SJames Chapman lock_sock(sk); 686fd558d18SJames Chapman 687fd558d18SJames Chapman /* Check for already bound sockets */ 688fd558d18SJames Chapman error = -EBUSY; 689fd558d18SJames Chapman if (sk->sk_state & PPPOX_CONNECTED) 690fd558d18SJames Chapman goto end; 691fd558d18SJames Chapman 692fd558d18SJames Chapman /* We don't supporting rebinding anyway */ 693fd558d18SJames Chapman error = -EALREADY; 694fd558d18SJames Chapman if (sk->sk_user_data) 695fd558d18SJames Chapman goto end; /* socket is already attached */ 696fd558d18SJames Chapman 697e0d4435fSJames Chapman /* Don't bind if tunnel_id is 0 */ 698e0d4435fSJames Chapman error = -EINVAL; 699a408194aSGuillaume Nault if (!info.tunnel_id) 700fd558d18SJames Chapman goto end; 701fd558d18SJames Chapman 702a408194aSGuillaume Nault tunnel = l2tp_tunnel_get(sock_net(sk), info.tunnel_id); 703f9e56bafSGuillaume Nault if (tunnel) 704f9e56bafSGuillaume Nault drop_tunnel = true; 705309795f4SJames Chapman 706e0d4435fSJames Chapman /* Special case: create tunnel context if session_id and 707e0d4435fSJames Chapman * peer_session_id is 0. Otherwise look up tunnel using supplied 708fd558d18SJames Chapman * tunnel id. 709fd558d18SJames Chapman */ 710a408194aSGuillaume Nault if (!info.session_id && !info.peer_session_id) { 711309795f4SJames Chapman if (tunnel == NULL) { 712309795f4SJames Chapman struct l2tp_tunnel_cfg tcfg = { 713309795f4SJames Chapman .encap = L2TP_ENCAPTYPE_UDP, 714309795f4SJames Chapman .debug = 0, 715309795f4SJames Chapman }; 7163e1bc8bfSGuillaume Nault 7173e1bc8bfSGuillaume Nault /* Prevent l2tp_tunnel_register() from trying to set up 7183e1bc8bfSGuillaume Nault * a kernel socket. 7193e1bc8bfSGuillaume Nault */ 720a408194aSGuillaume Nault if (info.fd < 0) { 7213e1bc8bfSGuillaume Nault error = -EBADF; 7223e1bc8bfSGuillaume Nault goto end; 7233e1bc8bfSGuillaume Nault } 7243e1bc8bfSGuillaume Nault 725a408194aSGuillaume Nault error = l2tp_tunnel_create(sock_net(sk), info.fd, 726a408194aSGuillaume Nault info.version, 727a408194aSGuillaume Nault info.tunnel_id, 728a408194aSGuillaume Nault info.peer_tunnel_id, &tcfg, 729a408194aSGuillaume Nault &tunnel); 730fd558d18SJames Chapman if (error < 0) 731fd558d18SJames Chapman goto end; 7326b9f3423SGuillaume Nault 7336b9f3423SGuillaume Nault l2tp_tunnel_inc_refcount(tunnel); 7346b9f3423SGuillaume Nault error = l2tp_tunnel_register(tunnel, sock_net(sk), 7356b9f3423SGuillaume Nault &tcfg); 7366b9f3423SGuillaume Nault if (error < 0) { 7376b9f3423SGuillaume Nault kfree(tunnel); 7386b9f3423SGuillaume Nault goto end; 7396b9f3423SGuillaume Nault } 7406b9f3423SGuillaume Nault drop_tunnel = true; 741bda06be2SGuillaume Nault new_tunnel = true; 742309795f4SJames Chapman } 743fd558d18SJames Chapman } else { 744fd558d18SJames Chapman /* Error if we can't find the tunnel */ 745fd558d18SJames Chapman error = -ENOENT; 746fd558d18SJames Chapman if (tunnel == NULL) 747fd558d18SJames Chapman goto end; 748fd558d18SJames Chapman 749fd558d18SJames Chapman /* Error if socket is not prepped */ 750fd558d18SJames Chapman if (tunnel->sock == NULL) 751fd558d18SJames Chapman goto end; 752fd558d18SJames Chapman } 753fd558d18SJames Chapman 754b79585f5SJames Chapman if (tunnel->peer_tunnel_id == 0) 755a408194aSGuillaume Nault tunnel->peer_tunnel_id = info.peer_tunnel_id; 756fd558d18SJames Chapman 75701e28b92SGuillaume Nault session = l2tp_tunnel_get_session(tunnel, info.session_id); 758dbdbc73bSGuillaume Nault if (session) { 759dbdbc73bSGuillaume Nault drop_refcnt = true; 7607ac6ab1fSGuillaume Nault 7617ac6ab1fSGuillaume Nault if (session->pwtype != L2TP_PWTYPE_PPP) { 7627ac6ab1fSGuillaume Nault error = -EPROTOTYPE; 7637ac6ab1fSGuillaume Nault goto end; 7647ac6ab1fSGuillaume Nault } 7657ac6ab1fSGuillaume Nault 766dbdbc73bSGuillaume Nault ps = l2tp_session_priv(session); 767fd558d18SJames Chapman 768dbdbc73bSGuillaume Nault /* Using a pre-existing session is fine as long as it hasn't 769dbdbc73bSGuillaume Nault * been connected yet. 770dbdbc73bSGuillaume Nault */ 771ee40fb2eSGuillaume Nault mutex_lock(&ps->sk_lock); 772ee40fb2eSGuillaume Nault if (rcu_dereference_protected(ps->sk, 7733d609342SGuillaume Nault lockdep_is_held(&ps->sk_lock)) || 7743d609342SGuillaume Nault ps->__sk) { 775ee40fb2eSGuillaume Nault mutex_unlock(&ps->sk_lock); 776dbdbc73bSGuillaume Nault error = -EEXIST; 777dbdbc73bSGuillaume Nault goto end; 778dbdbc73bSGuillaume Nault } 779309795f4SJames Chapman } else { 78090904ff5SGuillaume Nault cfg.pw_type = L2TP_PWTYPE_PPP; 781fd558d18SJames Chapman 782dbdbc73bSGuillaume Nault session = l2tp_session_create(sizeof(struct pppol2tp_session), 783a408194aSGuillaume Nault tunnel, info.session_id, 784a408194aSGuillaume Nault info.peer_session_id, &cfg); 785dbdbc73bSGuillaume Nault if (IS_ERR(session)) { 786dbdbc73bSGuillaume Nault error = PTR_ERR(session); 787309795f4SJames Chapman goto end; 788309795f4SJames Chapman } 7893953ae7bSGuillaume Nault 790f98be6c6SGuillaume Nault pppol2tp_session_init(session); 791ee40fb2eSGuillaume Nault ps = l2tp_session_priv(session); 7923953ae7bSGuillaume Nault l2tp_session_inc_refcount(session); 793ee40fb2eSGuillaume Nault 794ee40fb2eSGuillaume Nault mutex_lock(&ps->sk_lock); 7953953ae7bSGuillaume Nault error = l2tp_session_register(session, tunnel); 7963953ae7bSGuillaume Nault if (error < 0) { 797ee40fb2eSGuillaume Nault mutex_unlock(&ps->sk_lock); 7983953ae7bSGuillaume Nault kfree(session); 7993953ae7bSGuillaume Nault goto end; 8003953ae7bSGuillaume Nault } 8013953ae7bSGuillaume Nault drop_refcnt = true; 802bda06be2SGuillaume Nault new_session = true; 803dbdbc73bSGuillaume Nault } 804309795f4SJames Chapman 805fd558d18SJames Chapman /* Special case: if source & dest session_id == 0x0000, this 806fd558d18SJames Chapman * socket is being created to manage the tunnel. Just set up 807fd558d18SJames Chapman * the internal context for use by ioctl() and sockopt() 808fd558d18SJames Chapman * handlers. 809fd558d18SJames Chapman */ 810fd558d18SJames Chapman if ((session->session_id == 0) && 811fd558d18SJames Chapman (session->peer_session_id == 0)) { 812fd558d18SJames Chapman error = 0; 813fd558d18SJames Chapman goto out_no_ppp; 814fd558d18SJames Chapman } 815fd558d18SJames Chapman 816fd558d18SJames Chapman /* The only header we need to worry about is the L2TP 817fd558d18SJames Chapman * header. This size is different depending on whether 818fd558d18SJames Chapman * sequence numbers are enabled for the data channel. 819fd558d18SJames Chapman */ 820fd558d18SJames Chapman po->chan.hdrlen = PPPOL2TP_L2TP_HDR_SIZE_NOSEQ; 821fd558d18SJames Chapman 822fd558d18SJames Chapman po->chan.private = sk; 823fd558d18SJames Chapman po->chan.ops = &pppol2tp_chan_ops; 824789141b2SGuillaume Nault po->chan.mtu = pppol2tp_tunnel_mtu(tunnel); 825fd558d18SJames Chapman 826fd558d18SJames Chapman error = ppp_register_net_channel(sock_net(sk), &po->chan); 827ee40fb2eSGuillaume Nault if (error) { 828ee40fb2eSGuillaume Nault mutex_unlock(&ps->sk_lock); 829fd558d18SJames Chapman goto end; 830ee40fb2eSGuillaume Nault } 831fd558d18SJames Chapman 832fd558d18SJames Chapman out_no_ppp: 833fd558d18SJames Chapman /* This is how we get the session context from the socket. */ 834fd558d18SJames Chapman sk->sk_user_data = session; 835ee40fb2eSGuillaume Nault rcu_assign_pointer(ps->sk, sk); 836ee40fb2eSGuillaume Nault mutex_unlock(&ps->sk_lock); 837ee40fb2eSGuillaume Nault 838f98be6c6SGuillaume Nault /* Keep the reference we've grabbed on the session: sk doesn't expect 839f98be6c6SGuillaume Nault * the session to disappear. pppol2tp_session_destruct() is responsible 840f98be6c6SGuillaume Nault * for dropping it. 841f98be6c6SGuillaume Nault */ 842f98be6c6SGuillaume Nault drop_refcnt = false; 843f98be6c6SGuillaume Nault 844fd558d18SJames Chapman sk->sk_state = PPPOX_CONNECTED; 845fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: created\n", 846a4ca44faSJoe Perches session->name); 847fd558d18SJames Chapman 848fd558d18SJames Chapman end: 849bda06be2SGuillaume Nault if (error) { 850bda06be2SGuillaume Nault if (new_session) 851bda06be2SGuillaume Nault l2tp_session_delete(session); 852bda06be2SGuillaume Nault if (new_tunnel) 853bda06be2SGuillaume Nault l2tp_tunnel_delete(tunnel); 854bda06be2SGuillaume Nault } 855dbdbc73bSGuillaume Nault if (drop_refcnt) 856dbdbc73bSGuillaume Nault l2tp_session_dec_refcount(session); 857f9e56bafSGuillaume Nault if (drop_tunnel) 858f9e56bafSGuillaume Nault l2tp_tunnel_dec_refcount(tunnel); 859fd558d18SJames Chapman release_sock(sk); 860fd558d18SJames Chapman 861fd558d18SJames Chapman return error; 862fd558d18SJames Chapman } 863fd558d18SJames Chapman 864309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 865309795f4SJames Chapman 866f026bc29SGuillaume Nault /* Called when creating sessions via the netlink interface. */ 867f026bc29SGuillaume Nault static int pppol2tp_session_create(struct net *net, struct l2tp_tunnel *tunnel, 868f026bc29SGuillaume Nault u32 session_id, u32 peer_session_id, 869f026bc29SGuillaume Nault struct l2tp_session_cfg *cfg) 870309795f4SJames Chapman { 871309795f4SJames Chapman int error; 872309795f4SJames Chapman struct l2tp_session *session; 873309795f4SJames Chapman 874309795f4SJames Chapman /* Error if tunnel socket is not prepped */ 875f026bc29SGuillaume Nault if (!tunnel->sock) { 876f026bc29SGuillaume Nault error = -ENOENT; 8773953ae7bSGuillaume Nault goto err; 878f026bc29SGuillaume Nault } 879309795f4SJames Chapman 880309795f4SJames Chapman /* Allocate and initialize a new session context. */ 881309795f4SJames Chapman session = l2tp_session_create(sizeof(struct pppol2tp_session), 882309795f4SJames Chapman tunnel, session_id, 883309795f4SJames Chapman peer_session_id, cfg); 884dbdbc73bSGuillaume Nault if (IS_ERR(session)) { 885dbdbc73bSGuillaume Nault error = PTR_ERR(session); 8863953ae7bSGuillaume Nault goto err; 887dbdbc73bSGuillaume Nault } 888309795f4SJames Chapman 889f98be6c6SGuillaume Nault pppol2tp_session_init(session); 890309795f4SJames Chapman 8913953ae7bSGuillaume Nault error = l2tp_session_register(session, tunnel); 8923953ae7bSGuillaume Nault if (error < 0) 8933953ae7bSGuillaume Nault goto err_sess; 894309795f4SJames Chapman 8953953ae7bSGuillaume Nault return 0; 896309795f4SJames Chapman 8973953ae7bSGuillaume Nault err_sess: 8983953ae7bSGuillaume Nault kfree(session); 8993953ae7bSGuillaume Nault err: 900309795f4SJames Chapman return error; 901309795f4SJames Chapman } 902309795f4SJames Chapman 903309795f4SJames Chapman #endif /* CONFIG_L2TP_V3 */ 904309795f4SJames Chapman 905fd558d18SJames Chapman /* getname() support. 906fd558d18SJames Chapman */ 907fd558d18SJames Chapman static int pppol2tp_getname(struct socket *sock, struct sockaddr *uaddr, 9089b2c45d4SDenys Vlasenko int peer) 909fd558d18SJames Chapman { 910e0d4435fSJames Chapman int len = 0; 911fd558d18SJames Chapman int error = 0; 912fd558d18SJames Chapman struct l2tp_session *session; 913fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 914fd558d18SJames Chapman struct sock *sk = sock->sk; 915fd558d18SJames Chapman struct inet_sock *inet; 916fd558d18SJames Chapman struct pppol2tp_session *pls; 917fd558d18SJames Chapman 918fd558d18SJames Chapman error = -ENOTCONN; 919fd558d18SJames Chapman if (sk == NULL) 920fd558d18SJames Chapman goto end; 92156cff471SGao Feng if (!(sk->sk_state & PPPOX_CONNECTED)) 922fd558d18SJames Chapman goto end; 923fd558d18SJames Chapman 924fd558d18SJames Chapman error = -EBADF; 925fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 926fd558d18SJames Chapman if (session == NULL) 927fd558d18SJames Chapman goto end; 928fd558d18SJames Chapman 929fd558d18SJames Chapman pls = l2tp_session_priv(session); 9307198c77aSGuillaume Nault tunnel = session->tunnel; 931fd558d18SJames Chapman 932bbdb32cbSBenjamin LaHaise inet = inet_sk(tunnel->sock); 933d2cf3361SBenjamin LaHaise if ((tunnel->version == 2) && (tunnel->sock->sk_family == AF_INET)) { 934e0d4435fSJames Chapman struct sockaddr_pppol2tp sp; 935e0d4435fSJames Chapman len = sizeof(sp); 936fd558d18SJames Chapman memset(&sp, 0, len); 937fd558d18SJames Chapman sp.sa_family = AF_PPPOX; 938fd558d18SJames Chapman sp.sa_protocol = PX_PROTO_OL2TP; 939fd558d18SJames Chapman sp.pppol2tp.fd = tunnel->fd; 940fd558d18SJames Chapman sp.pppol2tp.pid = pls->owner; 941fd558d18SJames Chapman sp.pppol2tp.s_tunnel = tunnel->tunnel_id; 942fd558d18SJames Chapman sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; 943fd558d18SJames Chapman sp.pppol2tp.s_session = session->session_id; 944fd558d18SJames Chapman sp.pppol2tp.d_session = session->peer_session_id; 945fd558d18SJames Chapman sp.pppol2tp.addr.sin_family = AF_INET; 946fd558d18SJames Chapman sp.pppol2tp.addr.sin_port = inet->inet_dport; 947fd558d18SJames Chapman sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr; 948fd558d18SJames Chapman memcpy(uaddr, &sp, len); 949d2cf3361SBenjamin LaHaise #if IS_ENABLED(CONFIG_IPV6) 950d2cf3361SBenjamin LaHaise } else if ((tunnel->version == 2) && 951d2cf3361SBenjamin LaHaise (tunnel->sock->sk_family == AF_INET6)) { 952d2cf3361SBenjamin LaHaise struct sockaddr_pppol2tpin6 sp; 953efe4208fSEric Dumazet 954d2cf3361SBenjamin LaHaise len = sizeof(sp); 955d2cf3361SBenjamin LaHaise memset(&sp, 0, len); 956d2cf3361SBenjamin LaHaise sp.sa_family = AF_PPPOX; 957d2cf3361SBenjamin LaHaise sp.sa_protocol = PX_PROTO_OL2TP; 958d2cf3361SBenjamin LaHaise sp.pppol2tp.fd = tunnel->fd; 959d2cf3361SBenjamin LaHaise sp.pppol2tp.pid = pls->owner; 960d2cf3361SBenjamin LaHaise sp.pppol2tp.s_tunnel = tunnel->tunnel_id; 961d2cf3361SBenjamin LaHaise sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; 962d2cf3361SBenjamin LaHaise sp.pppol2tp.s_session = session->session_id; 963d2cf3361SBenjamin LaHaise sp.pppol2tp.d_session = session->peer_session_id; 964d2cf3361SBenjamin LaHaise sp.pppol2tp.addr.sin6_family = AF_INET6; 965d2cf3361SBenjamin LaHaise sp.pppol2tp.addr.sin6_port = inet->inet_dport; 966efe4208fSEric Dumazet memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr, 967efe4208fSEric Dumazet sizeof(tunnel->sock->sk_v6_daddr)); 968d2cf3361SBenjamin LaHaise memcpy(uaddr, &sp, len); 969d2cf3361SBenjamin LaHaise } else if ((tunnel->version == 3) && 970d2cf3361SBenjamin LaHaise (tunnel->sock->sk_family == AF_INET6)) { 971d2cf3361SBenjamin LaHaise struct sockaddr_pppol2tpv3in6 sp; 972efe4208fSEric Dumazet 973d2cf3361SBenjamin LaHaise len = sizeof(sp); 974d2cf3361SBenjamin LaHaise memset(&sp, 0, len); 975d2cf3361SBenjamin LaHaise sp.sa_family = AF_PPPOX; 976d2cf3361SBenjamin LaHaise sp.sa_protocol = PX_PROTO_OL2TP; 977d2cf3361SBenjamin LaHaise sp.pppol2tp.fd = tunnel->fd; 978d2cf3361SBenjamin LaHaise sp.pppol2tp.pid = pls->owner; 979d2cf3361SBenjamin LaHaise sp.pppol2tp.s_tunnel = tunnel->tunnel_id; 980d2cf3361SBenjamin LaHaise sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; 981d2cf3361SBenjamin LaHaise sp.pppol2tp.s_session = session->session_id; 982d2cf3361SBenjamin LaHaise sp.pppol2tp.d_session = session->peer_session_id; 983d2cf3361SBenjamin LaHaise sp.pppol2tp.addr.sin6_family = AF_INET6; 984d2cf3361SBenjamin LaHaise sp.pppol2tp.addr.sin6_port = inet->inet_dport; 985efe4208fSEric Dumazet memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr, 986efe4208fSEric Dumazet sizeof(tunnel->sock->sk_v6_daddr)); 987d2cf3361SBenjamin LaHaise memcpy(uaddr, &sp, len); 988d2cf3361SBenjamin LaHaise #endif 989e0d4435fSJames Chapman } else if (tunnel->version == 3) { 990e0d4435fSJames Chapman struct sockaddr_pppol2tpv3 sp; 991e0d4435fSJames Chapman len = sizeof(sp); 992e0d4435fSJames Chapman memset(&sp, 0, len); 993e0d4435fSJames Chapman sp.sa_family = AF_PPPOX; 994e0d4435fSJames Chapman sp.sa_protocol = PX_PROTO_OL2TP; 995e0d4435fSJames Chapman sp.pppol2tp.fd = tunnel->fd; 996e0d4435fSJames Chapman sp.pppol2tp.pid = pls->owner; 997e0d4435fSJames Chapman sp.pppol2tp.s_tunnel = tunnel->tunnel_id; 998e0d4435fSJames Chapman sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; 999e0d4435fSJames Chapman sp.pppol2tp.s_session = session->session_id; 1000e0d4435fSJames Chapman sp.pppol2tp.d_session = session->peer_session_id; 1001e0d4435fSJames Chapman sp.pppol2tp.addr.sin_family = AF_INET; 1002e0d4435fSJames Chapman sp.pppol2tp.addr.sin_port = inet->inet_dport; 1003e0d4435fSJames Chapman sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr; 1004e0d4435fSJames Chapman memcpy(uaddr, &sp, len); 1005e0d4435fSJames Chapman } 1006fd558d18SJames Chapman 10079b2c45d4SDenys Vlasenko error = len; 1008fd558d18SJames Chapman 1009fd558d18SJames Chapman sock_put(sk); 1010fd558d18SJames Chapman end: 1011fd558d18SJames Chapman return error; 1012fd558d18SJames Chapman } 1013fd558d18SJames Chapman 1014fd558d18SJames Chapman /**************************************************************************** 1015fd558d18SJames Chapman * ioctl() handlers. 1016fd558d18SJames Chapman * 1017fd558d18SJames Chapman * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP 1018fd558d18SJames Chapman * sockets. However, in order to control kernel tunnel features, we allow 1019fd558d18SJames Chapman * userspace to create a special "tunnel" PPPoX socket which is used for 1020fd558d18SJames Chapman * control only. Tunnel PPPoX sockets have session_id == 0 and simply allow 1021fd558d18SJames Chapman * the user application to issue L2TP setsockopt(), getsockopt() and ioctl() 1022fd558d18SJames Chapman * calls. 1023fd558d18SJames Chapman ****************************************************************************/ 1024fd558d18SJames Chapman 1025fd558d18SJames Chapman static void pppol2tp_copy_stats(struct pppol2tp_ioc_stats *dest, 10267390ed8aSGuillaume Nault const struct l2tp_stats *stats) 1027fd558d18SJames Chapman { 10287390ed8aSGuillaume Nault memset(dest, 0, sizeof(*dest)); 10297390ed8aSGuillaume Nault 10307b7c0719STom Parkin dest->tx_packets = atomic_long_read(&stats->tx_packets); 10317b7c0719STom Parkin dest->tx_bytes = atomic_long_read(&stats->tx_bytes); 10327b7c0719STom Parkin dest->tx_errors = atomic_long_read(&stats->tx_errors); 10337b7c0719STom Parkin dest->rx_packets = atomic_long_read(&stats->rx_packets); 10347b7c0719STom Parkin dest->rx_bytes = atomic_long_read(&stats->rx_bytes); 10357b7c0719STom Parkin dest->rx_seq_discards = atomic_long_read(&stats->rx_seq_discards); 10367b7c0719STom Parkin dest->rx_oos_packets = atomic_long_read(&stats->rx_oos_packets); 10377b7c0719STom Parkin dest->rx_errors = atomic_long_read(&stats->rx_errors); 1038fd558d18SJames Chapman } 1039fd558d18SJames Chapman 1040528534f0SGuillaume Nault static int pppol2tp_tunnel_copy_stats(struct pppol2tp_ioc_stats *stats, 1041528534f0SGuillaume Nault struct l2tp_tunnel *tunnel) 1042528534f0SGuillaume Nault { 1043528534f0SGuillaume Nault struct l2tp_session *session; 1044528534f0SGuillaume Nault 1045528534f0SGuillaume Nault if (!stats->session_id) { 1046528534f0SGuillaume Nault pppol2tp_copy_stats(stats, &tunnel->stats); 1047528534f0SGuillaume Nault return 0; 1048528534f0SGuillaume Nault } 1049528534f0SGuillaume Nault 1050528534f0SGuillaume Nault /* If session_id is set, search the corresponding session in the 1051528534f0SGuillaume Nault * context of this tunnel and record the session's statistics. 1052528534f0SGuillaume Nault */ 1053528534f0SGuillaume Nault session = l2tp_tunnel_get_session(tunnel, stats->session_id); 1054528534f0SGuillaume Nault if (!session) 1055528534f0SGuillaume Nault return -EBADR; 1056528534f0SGuillaume Nault 1057528534f0SGuillaume Nault if (session->pwtype != L2TP_PWTYPE_PPP) { 1058528534f0SGuillaume Nault l2tp_session_dec_refcount(session); 1059528534f0SGuillaume Nault return -EBADR; 1060528534f0SGuillaume Nault } 1061528534f0SGuillaume Nault 1062528534f0SGuillaume Nault pppol2tp_copy_stats(stats, &session->stats); 1063528534f0SGuillaume Nault l2tp_session_dec_refcount(session); 1064528534f0SGuillaume Nault 1065528534f0SGuillaume Nault return 0; 1066528534f0SGuillaume Nault } 1067528534f0SGuillaume Nault 1068fd558d18SJames Chapman static int pppol2tp_ioctl(struct socket *sock, unsigned int cmd, 1069fd558d18SJames Chapman unsigned long arg) 1070fd558d18SJames Chapman { 1071528534f0SGuillaume Nault struct pppol2tp_ioc_stats stats; 1072fd558d18SJames Chapman struct l2tp_session *session; 107379e6760eSGuillaume Nault int val; 1074fd558d18SJames Chapman 107579e6760eSGuillaume Nault switch (cmd) { 107679e6760eSGuillaume Nault case PPPIOCGMRU: 107779e6760eSGuillaume Nault case PPPIOCGFLAGS: 1078bdd0292fSGuillaume Nault session = sock->sk->sk_user_data; 1079bdd0292fSGuillaume Nault if (!session) 1080bdd0292fSGuillaume Nault return -ENOTCONN; 1081fd558d18SJames Chapman 108279e6760eSGuillaume Nault /* Not defined for tunnels */ 108379e6760eSGuillaume Nault if (!session->session_id && !session->peer_session_id) 108479e6760eSGuillaume Nault return -ENOSYS; 1085bdd0292fSGuillaume Nault 108679e6760eSGuillaume Nault if (put_user(0, (int __user *)arg)) 108779e6760eSGuillaume Nault return -EFAULT; 108879e6760eSGuillaume Nault break; 108979e6760eSGuillaume Nault 109079e6760eSGuillaume Nault case PPPIOCSMRU: 109179e6760eSGuillaume Nault case PPPIOCSFLAGS: 109279e6760eSGuillaume Nault session = sock->sk->sk_user_data; 109379e6760eSGuillaume Nault if (!session) 109479e6760eSGuillaume Nault return -ENOTCONN; 109579e6760eSGuillaume Nault 109679e6760eSGuillaume Nault /* Not defined for tunnels */ 109779e6760eSGuillaume Nault if (!session->session_id && !session->peer_session_id) 109879e6760eSGuillaume Nault return -ENOSYS; 109979e6760eSGuillaume Nault 110079e6760eSGuillaume Nault if (get_user(val, (int __user *)arg)) 110179e6760eSGuillaume Nault return -EFAULT; 110279e6760eSGuillaume Nault break; 110379e6760eSGuillaume Nault 110479e6760eSGuillaume Nault case PPPIOCGL2TPSTATS: 110579e6760eSGuillaume Nault session = sock->sk->sk_user_data; 110679e6760eSGuillaume Nault if (!session) 110779e6760eSGuillaume Nault return -ENOTCONN; 110879e6760eSGuillaume Nault 110979e6760eSGuillaume Nault /* Session 0 represents the parent tunnel */ 1110528534f0SGuillaume Nault if (!session->session_id && !session->peer_session_id) { 1111528534f0SGuillaume Nault u32 session_id; 1112528534f0SGuillaume Nault int err; 1113528534f0SGuillaume Nault 1114528534f0SGuillaume Nault if (copy_from_user(&stats, (void __user *)arg, 1115528534f0SGuillaume Nault sizeof(stats))) 1116528534f0SGuillaume Nault return -EFAULT; 1117528534f0SGuillaume Nault 1118528534f0SGuillaume Nault session_id = stats.session_id; 1119528534f0SGuillaume Nault err = pppol2tp_tunnel_copy_stats(&stats, 1120528534f0SGuillaume Nault session->tunnel); 1121528534f0SGuillaume Nault if (err < 0) 1122528534f0SGuillaume Nault return err; 1123528534f0SGuillaume Nault 1124528534f0SGuillaume Nault stats.session_id = session_id; 1125528534f0SGuillaume Nault } else { 1126b0e29063SGuillaume Nault pppol2tp_copy_stats(&stats, &session->stats); 1127b0e29063SGuillaume Nault stats.session_id = session->session_id; 1128528534f0SGuillaume Nault } 1129528534f0SGuillaume Nault stats.tunnel_id = session->tunnel->tunnel_id; 1130528534f0SGuillaume Nault stats.using_ipsec = l2tp_tunnel_uses_xfrm(session->tunnel); 1131528534f0SGuillaume Nault 1132528534f0SGuillaume Nault if (copy_to_user((void __user *)arg, &stats, sizeof(stats))) 1133528534f0SGuillaume Nault return -EFAULT; 113479e6760eSGuillaume Nault break; 113579e6760eSGuillaume Nault 113679e6760eSGuillaume Nault default: 11374f5f85e9SGuillaume Nault return -ENOIOCTLCMD; 1138fd558d18SJames Chapman } 1139fd558d18SJames Chapman 114079e6760eSGuillaume Nault return 0; 1141fd558d18SJames Chapman } 1142fd558d18SJames Chapman 1143fd558d18SJames Chapman /***************************************************************************** 1144fd558d18SJames Chapman * setsockopt() / getsockopt() support. 1145fd558d18SJames Chapman * 1146fd558d18SJames Chapman * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP 1147fd558d18SJames Chapman * sockets. In order to control kernel tunnel features, we allow userspace to 1148fd558d18SJames Chapman * create a special "tunnel" PPPoX socket which is used for control only. 1149fd558d18SJames Chapman * Tunnel PPPoX sockets have session_id == 0 and simply allow the user 1150fd558d18SJames Chapman * application to issue L2TP setsockopt(), getsockopt() and ioctl() calls. 1151fd558d18SJames Chapman *****************************************************************************/ 1152fd558d18SJames Chapman 1153fd558d18SJames Chapman /* Tunnel setsockopt() helper. 1154fd558d18SJames Chapman */ 1155fd558d18SJames Chapman static int pppol2tp_tunnel_setsockopt(struct sock *sk, 1156fd558d18SJames Chapman struct l2tp_tunnel *tunnel, 1157fd558d18SJames Chapman int optname, int val) 1158fd558d18SJames Chapman { 1159fd558d18SJames Chapman int err = 0; 1160fd558d18SJames Chapman 1161fd558d18SJames Chapman switch (optname) { 1162fd558d18SJames Chapman case PPPOL2TP_SO_DEBUG: 1163fd558d18SJames Chapman tunnel->debug = val; 1164fba40c63SAsbjørn Sloth Tønnesen l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: set debug=%x\n", 1165a4ca44faSJoe Perches tunnel->name, tunnel->debug); 1166fd558d18SJames Chapman break; 1167fd558d18SJames Chapman 1168fd558d18SJames Chapman default: 1169fd558d18SJames Chapman err = -ENOPROTOOPT; 1170fd558d18SJames Chapman break; 1171fd558d18SJames Chapman } 1172fd558d18SJames Chapman 1173fd558d18SJames Chapman return err; 1174fd558d18SJames Chapman } 1175fd558d18SJames Chapman 1176fd558d18SJames Chapman /* Session setsockopt helper. 1177fd558d18SJames Chapman */ 1178fd558d18SJames Chapman static int pppol2tp_session_setsockopt(struct sock *sk, 1179fd558d18SJames Chapman struct l2tp_session *session, 1180fd558d18SJames Chapman int optname, int val) 1181fd558d18SJames Chapman { 1182fd558d18SJames Chapman int err = 0; 1183fd558d18SJames Chapman 1184fd558d18SJames Chapman switch (optname) { 1185fd558d18SJames Chapman case PPPOL2TP_SO_RECVSEQ: 1186fd558d18SJames Chapman if ((val != 0) && (val != 1)) { 1187fd558d18SJames Chapman err = -EINVAL; 1188fd558d18SJames Chapman break; 1189fd558d18SJames Chapman } 11903f9b9770SAsbjørn Sloth Tønnesen session->recv_seq = !!val; 1191fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1192a4ca44faSJoe Perches "%s: set recv_seq=%d\n", 1193a4ca44faSJoe Perches session->name, session->recv_seq); 1194fd558d18SJames Chapman break; 1195fd558d18SJames Chapman 1196fd558d18SJames Chapman case PPPOL2TP_SO_SENDSEQ: 1197fd558d18SJames Chapman if ((val != 0) && (val != 1)) { 1198fd558d18SJames Chapman err = -EINVAL; 1199fd558d18SJames Chapman break; 1200fd558d18SJames Chapman } 12013f9b9770SAsbjørn Sloth Tønnesen session->send_seq = !!val; 1202fd558d18SJames Chapman { 1203ee40fb2eSGuillaume Nault struct pppox_sock *po = pppox_sk(sk); 1204ee40fb2eSGuillaume Nault 1205fd558d18SJames Chapman po->chan.hdrlen = val ? PPPOL2TP_L2TP_HDR_SIZE_SEQ : 1206fd558d18SJames Chapman PPPOL2TP_L2TP_HDR_SIZE_NOSEQ; 1207fd558d18SJames Chapman } 1208bb5016eaSGuillaume Nault l2tp_session_set_header_len(session, session->tunnel->version); 1209fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1210a4ca44faSJoe Perches "%s: set send_seq=%d\n", 1211a4ca44faSJoe Perches session->name, session->send_seq); 1212fd558d18SJames Chapman break; 1213fd558d18SJames Chapman 1214fd558d18SJames Chapman case PPPOL2TP_SO_LNSMODE: 1215fd558d18SJames Chapman if ((val != 0) && (val != 1)) { 1216fd558d18SJames Chapman err = -EINVAL; 1217fd558d18SJames Chapman break; 1218fd558d18SJames Chapman } 12193f9b9770SAsbjørn Sloth Tønnesen session->lns_mode = !!val; 1220fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1221a4ca44faSJoe Perches "%s: set lns_mode=%d\n", 1222a4ca44faSJoe Perches session->name, session->lns_mode); 1223fd558d18SJames Chapman break; 1224fd558d18SJames Chapman 1225fd558d18SJames Chapman case PPPOL2TP_SO_DEBUG: 1226fd558d18SJames Chapman session->debug = val; 1227fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: set debug=%x\n", 1228a4ca44faSJoe Perches session->name, session->debug); 1229fd558d18SJames Chapman break; 1230fd558d18SJames Chapman 1231fd558d18SJames Chapman case PPPOL2TP_SO_REORDERTO: 1232fd558d18SJames Chapman session->reorder_timeout = msecs_to_jiffies(val); 1233fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1234a4ca44faSJoe Perches "%s: set reorder_timeout=%d\n", 1235a4ca44faSJoe Perches session->name, session->reorder_timeout); 1236fd558d18SJames Chapman break; 1237fd558d18SJames Chapman 1238fd558d18SJames Chapman default: 1239fd558d18SJames Chapman err = -ENOPROTOOPT; 1240fd558d18SJames Chapman break; 1241fd558d18SJames Chapman } 1242fd558d18SJames Chapman 1243fd558d18SJames Chapman return err; 1244fd558d18SJames Chapman } 1245fd558d18SJames Chapman 1246fd558d18SJames Chapman /* Main setsockopt() entry point. 1247fd558d18SJames Chapman * Does API checks, then calls either the tunnel or session setsockopt 1248fd558d18SJames Chapman * handler, according to whether the PPPoL2TP socket is a for a regular 1249fd558d18SJames Chapman * session or the special tunnel type. 1250fd558d18SJames Chapman */ 1251fd558d18SJames Chapman static int pppol2tp_setsockopt(struct socket *sock, int level, int optname, 1252fd558d18SJames Chapman char __user *optval, unsigned int optlen) 1253fd558d18SJames Chapman { 1254fd558d18SJames Chapman struct sock *sk = sock->sk; 1255fd558d18SJames Chapman struct l2tp_session *session; 1256fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 1257fd558d18SJames Chapman int val; 1258fd558d18SJames Chapman int err; 1259fd558d18SJames Chapman 1260fd558d18SJames Chapman if (level != SOL_PPPOL2TP) 12613cf521f7SSasha Levin return -EINVAL; 1262fd558d18SJames Chapman 1263fd558d18SJames Chapman if (optlen < sizeof(int)) 1264fd558d18SJames Chapman return -EINVAL; 1265fd558d18SJames Chapman 1266fd558d18SJames Chapman if (get_user(val, (int __user *)optval)) 1267fd558d18SJames Chapman return -EFAULT; 1268fd558d18SJames Chapman 1269fd558d18SJames Chapman err = -ENOTCONN; 1270fd558d18SJames Chapman if (sk->sk_user_data == NULL) 1271fd558d18SJames Chapman goto end; 1272fd558d18SJames Chapman 1273fd558d18SJames Chapman /* Get session context from the socket */ 1274fd558d18SJames Chapman err = -EBADF; 1275fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 1276fd558d18SJames Chapman if (session == NULL) 1277fd558d18SJames Chapman goto end; 1278fd558d18SJames Chapman 1279fd558d18SJames Chapman /* Special case: if session_id == 0x0000, treat as operation on tunnel 1280fd558d18SJames Chapman */ 1281fd558d18SJames Chapman if ((session->session_id == 0) && 1282fd558d18SJames Chapman (session->peer_session_id == 0)) { 12837198c77aSGuillaume Nault tunnel = session->tunnel; 1284fd558d18SJames Chapman err = pppol2tp_tunnel_setsockopt(sk, tunnel, optname, val); 12857198c77aSGuillaume Nault } else { 1286fd558d18SJames Chapman err = pppol2tp_session_setsockopt(sk, session, optname, val); 12877198c77aSGuillaume Nault } 1288fd558d18SJames Chapman 1289fd558d18SJames Chapman sock_put(sk); 1290fd558d18SJames Chapman end: 1291fd558d18SJames Chapman return err; 1292fd558d18SJames Chapman } 1293fd558d18SJames Chapman 1294fd558d18SJames Chapman /* Tunnel getsockopt helper. Called with sock locked. 1295fd558d18SJames Chapman */ 1296fd558d18SJames Chapman static int pppol2tp_tunnel_getsockopt(struct sock *sk, 1297fd558d18SJames Chapman struct l2tp_tunnel *tunnel, 1298fd558d18SJames Chapman int optname, int *val) 1299fd558d18SJames Chapman { 1300fd558d18SJames Chapman int err = 0; 1301fd558d18SJames Chapman 1302fd558d18SJames Chapman switch (optname) { 1303fd558d18SJames Chapman case PPPOL2TP_SO_DEBUG: 1304fd558d18SJames Chapman *val = tunnel->debug; 1305fba40c63SAsbjørn Sloth Tønnesen l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: get debug=%x\n", 1306a4ca44faSJoe Perches tunnel->name, tunnel->debug); 1307fd558d18SJames Chapman break; 1308fd558d18SJames Chapman 1309fd558d18SJames Chapman default: 1310fd558d18SJames Chapman err = -ENOPROTOOPT; 1311fd558d18SJames Chapman break; 1312fd558d18SJames Chapman } 1313fd558d18SJames Chapman 1314fd558d18SJames Chapman return err; 1315fd558d18SJames Chapman } 1316fd558d18SJames Chapman 1317fd558d18SJames Chapman /* Session getsockopt helper. Called with sock locked. 1318fd558d18SJames Chapman */ 1319fd558d18SJames Chapman static int pppol2tp_session_getsockopt(struct sock *sk, 1320fd558d18SJames Chapman struct l2tp_session *session, 1321fd558d18SJames Chapman int optname, int *val) 1322fd558d18SJames Chapman { 1323fd558d18SJames Chapman int err = 0; 1324fd558d18SJames Chapman 1325fd558d18SJames Chapman switch (optname) { 1326fd558d18SJames Chapman case PPPOL2TP_SO_RECVSEQ: 1327fd558d18SJames Chapman *val = session->recv_seq; 1328fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1329fd558d18SJames Chapman "%s: get recv_seq=%d\n", session->name, *val); 1330fd558d18SJames Chapman break; 1331fd558d18SJames Chapman 1332fd558d18SJames Chapman case PPPOL2TP_SO_SENDSEQ: 1333fd558d18SJames Chapman *val = session->send_seq; 1334fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1335fd558d18SJames Chapman "%s: get send_seq=%d\n", session->name, *val); 1336fd558d18SJames Chapman break; 1337fd558d18SJames Chapman 1338fd558d18SJames Chapman case PPPOL2TP_SO_LNSMODE: 1339fd558d18SJames Chapman *val = session->lns_mode; 1340fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1341fd558d18SJames Chapman "%s: get lns_mode=%d\n", session->name, *val); 1342fd558d18SJames Chapman break; 1343fd558d18SJames Chapman 1344fd558d18SJames Chapman case PPPOL2TP_SO_DEBUG: 1345fd558d18SJames Chapman *val = session->debug; 1346fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: get debug=%d\n", 1347a4ca44faSJoe Perches session->name, *val); 1348fd558d18SJames Chapman break; 1349fd558d18SJames Chapman 1350fd558d18SJames Chapman case PPPOL2TP_SO_REORDERTO: 1351fd558d18SJames Chapman *val = (int) jiffies_to_msecs(session->reorder_timeout); 1352fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1353fd558d18SJames Chapman "%s: get reorder_timeout=%d\n", session->name, *val); 1354fd558d18SJames Chapman break; 1355fd558d18SJames Chapman 1356fd558d18SJames Chapman default: 1357fd558d18SJames Chapman err = -ENOPROTOOPT; 1358fd558d18SJames Chapman } 1359fd558d18SJames Chapman 1360fd558d18SJames Chapman return err; 1361fd558d18SJames Chapman } 1362fd558d18SJames Chapman 1363fd558d18SJames Chapman /* Main getsockopt() entry point. 1364fd558d18SJames Chapman * Does API checks, then calls either the tunnel or session getsockopt 1365fd558d18SJames Chapman * handler, according to whether the PPPoX socket is a for a regular session 1366fd558d18SJames Chapman * or the special tunnel type. 1367fd558d18SJames Chapman */ 1368e3192690SJoe Perches static int pppol2tp_getsockopt(struct socket *sock, int level, int optname, 1369e3192690SJoe Perches char __user *optval, int __user *optlen) 1370fd558d18SJames Chapman { 1371fd558d18SJames Chapman struct sock *sk = sock->sk; 1372fd558d18SJames Chapman struct l2tp_session *session; 1373fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 1374fd558d18SJames Chapman int val, len; 1375fd558d18SJames Chapman int err; 1376fd558d18SJames Chapman 1377fd558d18SJames Chapman if (level != SOL_PPPOL2TP) 13783cf521f7SSasha Levin return -EINVAL; 1379fd558d18SJames Chapman 1380e3192690SJoe Perches if (get_user(len, optlen)) 1381fd558d18SJames Chapman return -EFAULT; 1382fd558d18SJames Chapman 1383fd558d18SJames Chapman len = min_t(unsigned int, len, sizeof(int)); 1384fd558d18SJames Chapman 1385fd558d18SJames Chapman if (len < 0) 1386fd558d18SJames Chapman return -EINVAL; 1387fd558d18SJames Chapman 1388fd558d18SJames Chapman err = -ENOTCONN; 1389fd558d18SJames Chapman if (sk->sk_user_data == NULL) 1390fd558d18SJames Chapman goto end; 1391fd558d18SJames Chapman 1392fd558d18SJames Chapman /* Get the session context */ 1393fd558d18SJames Chapman err = -EBADF; 1394fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 1395fd558d18SJames Chapman if (session == NULL) 1396fd558d18SJames Chapman goto end; 1397fd558d18SJames Chapman 1398fd558d18SJames Chapman /* Special case: if session_id == 0x0000, treat as operation on tunnel */ 1399fd558d18SJames Chapman if ((session->session_id == 0) && 1400fd558d18SJames Chapman (session->peer_session_id == 0)) { 14017198c77aSGuillaume Nault tunnel = session->tunnel; 1402fd558d18SJames Chapman err = pppol2tp_tunnel_getsockopt(sk, tunnel, optname, &val); 1403321a52a3SGuillaume Nault if (err) 1404321a52a3SGuillaume Nault goto end_put_sess; 1405321a52a3SGuillaume Nault } else { 1406fd558d18SJames Chapman err = pppol2tp_session_getsockopt(sk, session, optname, &val); 1407321a52a3SGuillaume Nault if (err) 1408321a52a3SGuillaume Nault goto end_put_sess; 1409321a52a3SGuillaume Nault } 1410fd558d18SJames Chapman 1411fd558d18SJames Chapman err = -EFAULT; 1412e3192690SJoe Perches if (put_user(len, optlen)) 1413fd558d18SJames Chapman goto end_put_sess; 1414fd558d18SJames Chapman 1415fd558d18SJames Chapman if (copy_to_user((void __user *) optval, &val, len)) 1416fd558d18SJames Chapman goto end_put_sess; 1417fd558d18SJames Chapman 1418fd558d18SJames Chapman err = 0; 1419fd558d18SJames Chapman 1420fd558d18SJames Chapman end_put_sess: 1421fd558d18SJames Chapman sock_put(sk); 1422fd558d18SJames Chapman end: 1423fd558d18SJames Chapman return err; 1424fd558d18SJames Chapman } 1425fd558d18SJames Chapman 1426fd558d18SJames Chapman /***************************************************************************** 1427fd558d18SJames Chapman * /proc filesystem for debug 1428f7faffa3SJames Chapman * Since the original pppol2tp driver provided /proc/net/pppol2tp for 1429f7faffa3SJames Chapman * L2TPv2, we dump only L2TPv2 tunnels and sessions here. 1430fd558d18SJames Chapman *****************************************************************************/ 1431fd558d18SJames Chapman 1432fd558d18SJames Chapman static unsigned int pppol2tp_net_id; 1433fd558d18SJames Chapman 1434fd558d18SJames Chapman #ifdef CONFIG_PROC_FS 1435fd558d18SJames Chapman 1436fd558d18SJames Chapman struct pppol2tp_seq_data { 1437fd558d18SJames Chapman struct seq_net_private p; 1438fd558d18SJames Chapman int tunnel_idx; /* current tunnel */ 1439fd558d18SJames Chapman int session_idx; /* index of session within current tunnel */ 1440fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 1441fd558d18SJames Chapman struct l2tp_session *session; /* NULL means get next tunnel */ 1442fd558d18SJames Chapman }; 1443fd558d18SJames Chapman 1444fd558d18SJames Chapman static void pppol2tp_next_tunnel(struct net *net, struct pppol2tp_seq_data *pd) 1445fd558d18SJames Chapman { 14460e0c3feeSGuillaume Nault /* Drop reference taken during previous invocation */ 14470e0c3feeSGuillaume Nault if (pd->tunnel) 14480e0c3feeSGuillaume Nault l2tp_tunnel_dec_refcount(pd->tunnel); 14490e0c3feeSGuillaume Nault 1450f7faffa3SJames Chapman for (;;) { 14510e0c3feeSGuillaume Nault pd->tunnel = l2tp_tunnel_get_nth(net, pd->tunnel_idx); 1452fd558d18SJames Chapman pd->tunnel_idx++; 1453f7faffa3SJames Chapman 14540e0c3feeSGuillaume Nault /* Only accept L2TPv2 tunnels */ 14550e0c3feeSGuillaume Nault if (!pd->tunnel || pd->tunnel->version == 2) 14560e0c3feeSGuillaume Nault return; 1457f7faffa3SJames Chapman 14580e0c3feeSGuillaume Nault l2tp_tunnel_dec_refcount(pd->tunnel); 1459f7faffa3SJames Chapman } 1460fd558d18SJames Chapman } 1461fd558d18SJames Chapman 1462fd558d18SJames Chapman static void pppol2tp_next_session(struct net *net, struct pppol2tp_seq_data *pd) 1463fd558d18SJames Chapman { 146483494407SGuillaume Nault /* Drop reference taken during previous invocation */ 146583494407SGuillaume Nault if (pd->session) 146683494407SGuillaume Nault l2tp_session_dec_refcount(pd->session); 146783494407SGuillaume Nault 1468a4346210SGuillaume Nault pd->session = l2tp_session_get_nth(pd->tunnel, pd->session_idx); 1469fd558d18SJames Chapman pd->session_idx++; 1470f7faffa3SJames Chapman 1471fd558d18SJames Chapman if (pd->session == NULL) { 1472fd558d18SJames Chapman pd->session_idx = 0; 1473fd558d18SJames Chapman pppol2tp_next_tunnel(net, pd); 1474fd558d18SJames Chapman } 1475fd558d18SJames Chapman } 1476fd558d18SJames Chapman 1477fd558d18SJames Chapman static void *pppol2tp_seq_start(struct seq_file *m, loff_t *offs) 1478fd558d18SJames Chapman { 1479fd558d18SJames Chapman struct pppol2tp_seq_data *pd = SEQ_START_TOKEN; 1480fd558d18SJames Chapman loff_t pos = *offs; 1481fd558d18SJames Chapman struct net *net; 1482fd558d18SJames Chapman 1483fd558d18SJames Chapman if (!pos) 1484fd558d18SJames Chapman goto out; 1485fd558d18SJames Chapman 1486fd558d18SJames Chapman BUG_ON(m->private == NULL); 1487fd558d18SJames Chapman pd = m->private; 1488fd558d18SJames Chapman net = seq_file_net(m); 1489fd558d18SJames Chapman 1490fd558d18SJames Chapman if (pd->tunnel == NULL) 1491fd558d18SJames Chapman pppol2tp_next_tunnel(net, pd); 1492fd558d18SJames Chapman else 1493fd558d18SJames Chapman pppol2tp_next_session(net, pd); 1494fd558d18SJames Chapman 1495fd558d18SJames Chapman /* NULL tunnel and session indicates end of list */ 1496fd558d18SJames Chapman if ((pd->tunnel == NULL) && (pd->session == NULL)) 1497fd558d18SJames Chapman pd = NULL; 1498fd558d18SJames Chapman 1499fd558d18SJames Chapman out: 1500fd558d18SJames Chapman return pd; 1501fd558d18SJames Chapman } 1502fd558d18SJames Chapman 1503fd558d18SJames Chapman static void *pppol2tp_seq_next(struct seq_file *m, void *v, loff_t *pos) 1504fd558d18SJames Chapman { 1505fd558d18SJames Chapman (*pos)++; 1506fd558d18SJames Chapman return NULL; 1507fd558d18SJames Chapman } 1508fd558d18SJames Chapman 1509fd558d18SJames Chapman static void pppol2tp_seq_stop(struct seq_file *p, void *v) 1510fd558d18SJames Chapman { 15110e0c3feeSGuillaume Nault struct pppol2tp_seq_data *pd = v; 15120e0c3feeSGuillaume Nault 15130e0c3feeSGuillaume Nault if (!pd || pd == SEQ_START_TOKEN) 15140e0c3feeSGuillaume Nault return; 15150e0c3feeSGuillaume Nault 151683494407SGuillaume Nault /* Drop reference taken by last invocation of pppol2tp_next_session() 151783494407SGuillaume Nault * or pppol2tp_next_tunnel(). 151883494407SGuillaume Nault */ 151983494407SGuillaume Nault if (pd->session) { 152083494407SGuillaume Nault l2tp_session_dec_refcount(pd->session); 152183494407SGuillaume Nault pd->session = NULL; 152283494407SGuillaume Nault } 15235411b618SGuillaume Nault if (pd->tunnel) { 15240e0c3feeSGuillaume Nault l2tp_tunnel_dec_refcount(pd->tunnel); 15255411b618SGuillaume Nault pd->tunnel = NULL; 15265411b618SGuillaume Nault } 1527fd558d18SJames Chapman } 1528fd558d18SJames Chapman 1529fd558d18SJames Chapman static void pppol2tp_seq_tunnel_show(struct seq_file *m, void *v) 1530fd558d18SJames Chapman { 1531fd558d18SJames Chapman struct l2tp_tunnel *tunnel = v; 1532fd558d18SJames Chapman 1533fd558d18SJames Chapman seq_printf(m, "\nTUNNEL '%s', %c %d\n", 1534fd558d18SJames Chapman tunnel->name, 1535fd558d18SJames Chapman (tunnel == tunnel->sock->sk_user_data) ? 'Y' : 'N', 1536fbea9e07SReshetova, Elena refcount_read(&tunnel->ref_count) - 1); 15377b7c0719STom Parkin seq_printf(m, " %08x %ld/%ld/%ld %ld/%ld/%ld\n", 1538fd558d18SJames Chapman tunnel->debug, 15397b7c0719STom Parkin atomic_long_read(&tunnel->stats.tx_packets), 15407b7c0719STom Parkin atomic_long_read(&tunnel->stats.tx_bytes), 15417b7c0719STom Parkin atomic_long_read(&tunnel->stats.tx_errors), 15427b7c0719STom Parkin atomic_long_read(&tunnel->stats.rx_packets), 15437b7c0719STom Parkin atomic_long_read(&tunnel->stats.rx_bytes), 15447b7c0719STom Parkin atomic_long_read(&tunnel->stats.rx_errors)); 1545fd558d18SJames Chapman } 1546fd558d18SJames Chapman 1547fd558d18SJames Chapman static void pppol2tp_seq_session_show(struct seq_file *m, void *v) 1548fd558d18SJames Chapman { 1549fd558d18SJames Chapman struct l2tp_session *session = v; 1550fd558d18SJames Chapman struct l2tp_tunnel *tunnel = session->tunnel; 1551ee40fb2eSGuillaume Nault unsigned char state; 1552ee40fb2eSGuillaume Nault char user_data_ok; 1553ee40fb2eSGuillaume Nault struct sock *sk; 1554fd558d18SJames Chapman u32 ip = 0; 1555fd558d18SJames Chapman u16 port = 0; 1556fd558d18SJames Chapman 1557fd558d18SJames Chapman if (tunnel->sock) { 1558fd558d18SJames Chapman struct inet_sock *inet = inet_sk(tunnel->sock); 1559fd558d18SJames Chapman ip = ntohl(inet->inet_saddr); 1560fd558d18SJames Chapman port = ntohs(inet->inet_sport); 1561fd558d18SJames Chapman } 1562fd558d18SJames Chapman 1563ee40fb2eSGuillaume Nault sk = pppol2tp_session_get_sock(session); 1564ee40fb2eSGuillaume Nault if (sk) { 1565ee40fb2eSGuillaume Nault state = sk->sk_state; 1566ee40fb2eSGuillaume Nault user_data_ok = (session == sk->sk_user_data) ? 'Y' : 'N'; 1567ee40fb2eSGuillaume Nault } else { 1568ee40fb2eSGuillaume Nault state = 0; 1569ee40fb2eSGuillaume Nault user_data_ok = 'N'; 1570ee40fb2eSGuillaume Nault } 1571ee40fb2eSGuillaume Nault 1572fd558d18SJames Chapman seq_printf(m, " SESSION '%s' %08X/%d %04X/%04X -> " 1573fd558d18SJames Chapman "%04X/%04X %d %c\n", 1574fd558d18SJames Chapman session->name, ip, port, 1575fd558d18SJames Chapman tunnel->tunnel_id, 1576fd558d18SJames Chapman session->session_id, 1577fd558d18SJames Chapman tunnel->peer_tunnel_id, 1578fd558d18SJames Chapman session->peer_session_id, 1579ee40fb2eSGuillaume Nault state, user_data_ok); 1580789141b2SGuillaume Nault seq_printf(m, " 0/0/%c/%c/%s %08x %u\n", 1581fd558d18SJames Chapman session->recv_seq ? 'R' : '-', 1582fd558d18SJames Chapman session->send_seq ? 'S' : '-', 1583fd558d18SJames Chapman session->lns_mode ? "LNS" : "LAC", 1584fd558d18SJames Chapman session->debug, 1585fd558d18SJames Chapman jiffies_to_msecs(session->reorder_timeout)); 15867b7c0719STom Parkin seq_printf(m, " %hu/%hu %ld/%ld/%ld %ld/%ld/%ld\n", 1587fd558d18SJames Chapman session->nr, session->ns, 15887b7c0719STom Parkin atomic_long_read(&session->stats.tx_packets), 15897b7c0719STom Parkin atomic_long_read(&session->stats.tx_bytes), 15907b7c0719STom Parkin atomic_long_read(&session->stats.tx_errors), 15917b7c0719STom Parkin atomic_long_read(&session->stats.rx_packets), 15927b7c0719STom Parkin atomic_long_read(&session->stats.rx_bytes), 15937b7c0719STom Parkin atomic_long_read(&session->stats.rx_errors)); 15949345471bSJames Chapman 1595ee40fb2eSGuillaume Nault if (sk) { 1596ee40fb2eSGuillaume Nault struct pppox_sock *po = pppox_sk(sk); 1597ee40fb2eSGuillaume Nault 15989345471bSJames Chapman seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan)); 1599ee40fb2eSGuillaume Nault sock_put(sk); 1600ee40fb2eSGuillaume Nault } 1601fd558d18SJames Chapman } 1602fd558d18SJames Chapman 1603fd558d18SJames Chapman static int pppol2tp_seq_show(struct seq_file *m, void *v) 1604fd558d18SJames Chapman { 1605fd558d18SJames Chapman struct pppol2tp_seq_data *pd = v; 1606fd558d18SJames Chapman 1607fd558d18SJames Chapman /* display header on line 1 */ 1608fd558d18SJames Chapman if (v == SEQ_START_TOKEN) { 1609fd558d18SJames Chapman seq_puts(m, "PPPoL2TP driver info, " PPPOL2TP_DRV_VERSION "\n"); 1610fd558d18SJames Chapman seq_puts(m, "TUNNEL name, user-data-ok session-count\n"); 1611fd558d18SJames Chapman seq_puts(m, " debug tx-pkts/bytes/errs rx-pkts/bytes/errs\n"); 1612fd558d18SJames Chapman seq_puts(m, " SESSION name, addr/port src-tid/sid " 1613fd558d18SJames Chapman "dest-tid/sid state user-data-ok\n"); 1614fd558d18SJames Chapman seq_puts(m, " mtu/mru/rcvseq/sendseq/lns debug reorderto\n"); 1615fd558d18SJames Chapman seq_puts(m, " nr/ns tx-pkts/bytes/errs rx-pkts/bytes/errs\n"); 1616fd558d18SJames Chapman goto out; 1617fd558d18SJames Chapman } 1618fd558d18SJames Chapman 161983494407SGuillaume Nault if (!pd->session) 1620fd558d18SJames Chapman pppol2tp_seq_tunnel_show(m, pd->tunnel); 162183494407SGuillaume Nault else 1622fd558d18SJames Chapman pppol2tp_seq_session_show(m, pd->session); 1623fd558d18SJames Chapman 1624fd558d18SJames Chapman out: 1625fd558d18SJames Chapman return 0; 1626fd558d18SJames Chapman } 1627fd558d18SJames Chapman 1628fd558d18SJames Chapman static const struct seq_operations pppol2tp_seq_ops = { 1629fd558d18SJames Chapman .start = pppol2tp_seq_start, 1630fd558d18SJames Chapman .next = pppol2tp_seq_next, 1631fd558d18SJames Chapman .stop = pppol2tp_seq_stop, 1632fd558d18SJames Chapman .show = pppol2tp_seq_show, 1633fd558d18SJames Chapman }; 1634fd558d18SJames Chapman #endif /* CONFIG_PROC_FS */ 1635fd558d18SJames Chapman 1636fd558d18SJames Chapman /***************************************************************************** 1637fd558d18SJames Chapman * Network namespace 1638fd558d18SJames Chapman *****************************************************************************/ 1639fd558d18SJames Chapman 1640fd558d18SJames Chapman static __net_init int pppol2tp_init_net(struct net *net) 1641fd558d18SJames Chapman { 1642fd558d18SJames Chapman struct proc_dir_entry *pde; 1643fd558d18SJames Chapman int err = 0; 1644fd558d18SJames Chapman 1645c3506372SChristoph Hellwig pde = proc_create_net("pppol2tp", 0444, net->proc_net, 1646c3506372SChristoph Hellwig &pppol2tp_seq_ops, sizeof(struct pppol2tp_seq_data)); 1647fd558d18SJames Chapman if (!pde) { 1648fd558d18SJames Chapman err = -ENOMEM; 1649fd558d18SJames Chapman goto out; 1650fd558d18SJames Chapman } 1651fd558d18SJames Chapman 1652fd558d18SJames Chapman out: 1653fd558d18SJames Chapman return err; 1654fd558d18SJames Chapman } 1655fd558d18SJames Chapman 1656fd558d18SJames Chapman static __net_exit void pppol2tp_exit_net(struct net *net) 1657fd558d18SJames Chapman { 1658ece31ffdSGao feng remove_proc_entry("pppol2tp", net->proc_net); 1659fd558d18SJames Chapman } 1660fd558d18SJames Chapman 1661fd558d18SJames Chapman static struct pernet_operations pppol2tp_net_ops = { 1662fd558d18SJames Chapman .init = pppol2tp_init_net, 1663fd558d18SJames Chapman .exit = pppol2tp_exit_net, 1664fd558d18SJames Chapman .id = &pppol2tp_net_id, 1665fd558d18SJames Chapman }; 1666fd558d18SJames Chapman 1667fd558d18SJames Chapman /***************************************************************************** 1668fd558d18SJames Chapman * Init and cleanup 1669fd558d18SJames Chapman *****************************************************************************/ 1670fd558d18SJames Chapman 1671fd558d18SJames Chapman static const struct proto_ops pppol2tp_ops = { 1672fd558d18SJames Chapman .family = AF_PPPOX, 1673fd558d18SJames Chapman .owner = THIS_MODULE, 1674fd558d18SJames Chapman .release = pppol2tp_release, 1675fd558d18SJames Chapman .bind = sock_no_bind, 1676fd558d18SJames Chapman .connect = pppol2tp_connect, 1677fd558d18SJames Chapman .socketpair = sock_no_socketpair, 1678fd558d18SJames Chapman .accept = sock_no_accept, 1679fd558d18SJames Chapman .getname = pppol2tp_getname, 1680a11e1d43SLinus Torvalds .poll = datagram_poll, 1681fd558d18SJames Chapman .listen = sock_no_listen, 1682fd558d18SJames Chapman .shutdown = sock_no_shutdown, 1683fd558d18SJames Chapman .setsockopt = pppol2tp_setsockopt, 1684fd558d18SJames Chapman .getsockopt = pppol2tp_getsockopt, 1685fd558d18SJames Chapman .sendmsg = pppol2tp_sendmsg, 1686fd558d18SJames Chapman .recvmsg = pppol2tp_recvmsg, 1687fd558d18SJames Chapman .mmap = sock_no_mmap, 1688fd558d18SJames Chapman .ioctl = pppox_ioctl, 1689fd558d18SJames Chapman }; 1690fd558d18SJames Chapman 1691756e64a0SEric Dumazet static const struct pppox_proto pppol2tp_proto = { 1692fd558d18SJames Chapman .create = pppol2tp_create, 1693e1558a93SWei Yongjun .ioctl = pppol2tp_ioctl, 1694e1558a93SWei Yongjun .owner = THIS_MODULE, 1695fd558d18SJames Chapman }; 1696fd558d18SJames Chapman 1697309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 1698309795f4SJames Chapman 1699309795f4SJames Chapman static const struct l2tp_nl_cmd_ops pppol2tp_nl_cmd_ops = { 1700309795f4SJames Chapman .session_create = pppol2tp_session_create, 1701cf2f5c88STom Parkin .session_delete = l2tp_session_delete, 1702309795f4SJames Chapman }; 1703309795f4SJames Chapman 1704309795f4SJames Chapman #endif /* CONFIG_L2TP_V3 */ 1705309795f4SJames Chapman 1706fd558d18SJames Chapman static int __init pppol2tp_init(void) 1707fd558d18SJames Chapman { 1708fd558d18SJames Chapman int err; 1709fd558d18SJames Chapman 1710fd558d18SJames Chapman err = register_pernet_device(&pppol2tp_net_ops); 1711fd558d18SJames Chapman if (err) 1712fd558d18SJames Chapman goto out; 1713fd558d18SJames Chapman 1714fd558d18SJames Chapman err = proto_register(&pppol2tp_sk_proto, 0); 1715fd558d18SJames Chapman if (err) 1716fd558d18SJames Chapman goto out_unregister_pppol2tp_pernet; 1717fd558d18SJames Chapman 1718fd558d18SJames Chapman err = register_pppox_proto(PX_PROTO_OL2TP, &pppol2tp_proto); 1719fd558d18SJames Chapman if (err) 1720fd558d18SJames Chapman goto out_unregister_pppol2tp_proto; 1721fd558d18SJames Chapman 1722309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 1723309795f4SJames Chapman err = l2tp_nl_register_ops(L2TP_PWTYPE_PPP, &pppol2tp_nl_cmd_ops); 1724309795f4SJames Chapman if (err) 1725309795f4SJames Chapman goto out_unregister_pppox; 1726309795f4SJames Chapman #endif 1727309795f4SJames Chapman 1728a4ca44faSJoe Perches pr_info("PPPoL2TP kernel driver, %s\n", PPPOL2TP_DRV_VERSION); 1729fd558d18SJames Chapman 1730fd558d18SJames Chapman out: 1731fd558d18SJames Chapman return err; 1732309795f4SJames Chapman 1733309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 1734309795f4SJames Chapman out_unregister_pppox: 1735309795f4SJames Chapman unregister_pppox_proto(PX_PROTO_OL2TP); 1736309795f4SJames Chapman #endif 1737fd558d18SJames Chapman out_unregister_pppol2tp_proto: 1738fd558d18SJames Chapman proto_unregister(&pppol2tp_sk_proto); 1739fd558d18SJames Chapman out_unregister_pppol2tp_pernet: 1740fd558d18SJames Chapman unregister_pernet_device(&pppol2tp_net_ops); 1741fd558d18SJames Chapman goto out; 1742fd558d18SJames Chapman } 1743fd558d18SJames Chapman 1744fd558d18SJames Chapman static void __exit pppol2tp_exit(void) 1745fd558d18SJames Chapman { 1746309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 1747309795f4SJames Chapman l2tp_nl_unregister_ops(L2TP_PWTYPE_PPP); 1748309795f4SJames Chapman #endif 1749fd558d18SJames Chapman unregister_pppox_proto(PX_PROTO_OL2TP); 1750fd558d18SJames Chapman proto_unregister(&pppol2tp_sk_proto); 1751fd558d18SJames Chapman unregister_pernet_device(&pppol2tp_net_ops); 1752fd558d18SJames Chapman } 1753fd558d18SJames Chapman 1754fd558d18SJames Chapman module_init(pppol2tp_init); 1755fd558d18SJames Chapman module_exit(pppol2tp_exit); 1756fd558d18SJames Chapman 1757fd558d18SJames Chapman MODULE_AUTHOR("James Chapman <jchapman@katalix.com>"); 1758fd558d18SJames Chapman MODULE_DESCRIPTION("PPP over L2TP over UDP"); 1759fd558d18SJames Chapman MODULE_LICENSE("GPL"); 1760fd558d18SJames Chapman MODULE_VERSION(PPPOL2TP_DRV_VERSION); 1761681b4d88SGuillaume Nault MODULE_ALIAS_NET_PF_PROTO(PF_PPPOX, PX_PROTO_OL2TP); 1762249ee819SGuillaume Nault MODULE_ALIAS_L2TP_PWTYPE(7); 1763