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> 98fd558d18SJames Chapman #include <net/xfrm.h> 99cf2f5c88STom Parkin #include <net/inet_common.h> 100fd558d18SJames Chapman 101fd558d18SJames Chapman #include <asm/byteorder.h> 10260063497SArun Sharma #include <linux/atomic.h> 103fd558d18SJames Chapman 104fd558d18SJames Chapman #include "l2tp_core.h" 105fd558d18SJames Chapman 106fd558d18SJames Chapman #define PPPOL2TP_DRV_VERSION "V2.0" 107fd558d18SJames Chapman 108fd558d18SJames Chapman /* Space for UDP, L2TP and PPP headers */ 109fd558d18SJames Chapman #define PPPOL2TP_HEADER_OVERHEAD 40 110fd558d18SJames Chapman 111fd558d18SJames Chapman /* Number of bytes to build transmit L2TP headers. 112fd558d18SJames Chapman * Unfortunately the size is different depending on whether sequence numbers 113fd558d18SJames Chapman * are enabled. 114fd558d18SJames Chapman */ 115fd558d18SJames Chapman #define PPPOL2TP_L2TP_HDR_SIZE_SEQ 10 116fd558d18SJames Chapman #define PPPOL2TP_L2TP_HDR_SIZE_NOSEQ 6 117fd558d18SJames Chapman 118fd558d18SJames Chapman /* Private data of each session. This data lives at the end of struct 119fd558d18SJames Chapman * l2tp_session, referenced via session->priv[]. 120fd558d18SJames Chapman */ 121fd558d18SJames Chapman struct pppol2tp_session { 122fd558d18SJames Chapman int owner; /* pid that opened the socket */ 123fd558d18SJames Chapman 124ee40fb2eSGuillaume Nault struct mutex sk_lock; /* Protects .sk */ 125ee40fb2eSGuillaume Nault struct sock __rcu *sk; /* Pointer to the session 126fd558d18SJames Chapman * PPPoX socket */ 127ee40fb2eSGuillaume Nault struct sock *__sk; /* Copy of .sk, for cleanup */ 128ee40fb2eSGuillaume Nault struct rcu_head rcu; /* For asynchronous release */ 129fd558d18SJames Chapman }; 130fd558d18SJames Chapman 131fd558d18SJames Chapman static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb); 132fd558d18SJames Chapman 133d7100da0Sstephen hemminger static const struct ppp_channel_ops pppol2tp_chan_ops = { 134d7100da0Sstephen hemminger .start_xmit = pppol2tp_xmit, 135d7100da0Sstephen hemminger }; 136d7100da0Sstephen hemminger 137fd558d18SJames Chapman static const struct proto_ops pppol2tp_ops; 138fd558d18SJames Chapman 139ee40fb2eSGuillaume Nault /* Retrieves the pppol2tp socket associated to a session. 140ee40fb2eSGuillaume Nault * A reference is held on the returned socket, so this function must be paired 141ee40fb2eSGuillaume Nault * with sock_put(). 142ee40fb2eSGuillaume Nault */ 143ee40fb2eSGuillaume Nault static struct sock *pppol2tp_session_get_sock(struct l2tp_session *session) 144ee40fb2eSGuillaume Nault { 145ee40fb2eSGuillaume Nault struct pppol2tp_session *ps = l2tp_session_priv(session); 146ee40fb2eSGuillaume Nault struct sock *sk; 147ee40fb2eSGuillaume Nault 148ee40fb2eSGuillaume Nault rcu_read_lock(); 149ee40fb2eSGuillaume Nault sk = rcu_dereference(ps->sk); 150ee40fb2eSGuillaume Nault if (sk) 151ee40fb2eSGuillaume Nault sock_hold(sk); 152ee40fb2eSGuillaume Nault rcu_read_unlock(); 153ee40fb2eSGuillaume Nault 154ee40fb2eSGuillaume Nault return sk; 155ee40fb2eSGuillaume Nault } 156ee40fb2eSGuillaume Nault 157fd558d18SJames Chapman /* Helpers to obtain tunnel/session contexts from sockets. 158fd558d18SJames Chapman */ 159fd558d18SJames Chapman static inline struct l2tp_session *pppol2tp_sock_to_session(struct sock *sk) 160fd558d18SJames Chapman { 161fd558d18SJames Chapman struct l2tp_session *session; 162fd558d18SJames Chapman 163fd558d18SJames Chapman if (sk == NULL) 164fd558d18SJames Chapman return NULL; 165fd558d18SJames Chapman 166fd558d18SJames Chapman sock_hold(sk); 167fd558d18SJames Chapman session = (struct l2tp_session *)(sk->sk_user_data); 168fd558d18SJames Chapman if (session == NULL) { 169fd558d18SJames Chapman sock_put(sk); 170fd558d18SJames Chapman goto out; 171fd558d18SJames Chapman } 172fd558d18SJames Chapman 173fd558d18SJames Chapman BUG_ON(session->magic != L2TP_SESSION_MAGIC); 174fd558d18SJames Chapman 175fd558d18SJames Chapman out: 176fd558d18SJames Chapman return session; 177fd558d18SJames Chapman } 178fd558d18SJames Chapman 179fd558d18SJames Chapman /***************************************************************************** 180fd558d18SJames Chapman * Receive data handling 181fd558d18SJames Chapman *****************************************************************************/ 182fd558d18SJames Chapman 183fd558d18SJames Chapman /* Receive message. This is the recvmsg for the PPPoL2TP socket. 184fd558d18SJames Chapman */ 1851b784140SYing Xue static int pppol2tp_recvmsg(struct socket *sock, struct msghdr *msg, 1861b784140SYing Xue size_t len, int flags) 187fd558d18SJames Chapman { 188fd558d18SJames Chapman int err; 189fd558d18SJames Chapman struct sk_buff *skb; 190fd558d18SJames Chapman struct sock *sk = sock->sk; 191fd558d18SJames Chapman 192fd558d18SJames Chapman err = -EIO; 193fd558d18SJames Chapman if (sk->sk_state & PPPOX_BOUND) 194fd558d18SJames Chapman goto end; 195fd558d18SJames Chapman 196fd558d18SJames Chapman err = 0; 197fd558d18SJames Chapman skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT, 198fd558d18SJames Chapman flags & MSG_DONTWAIT, &err); 199fd558d18SJames Chapman if (!skb) 200fd558d18SJames Chapman goto end; 201fd558d18SJames Chapman 202fd558d18SJames Chapman if (len > skb->len) 203fd558d18SJames Chapman len = skb->len; 204fd558d18SJames Chapman else if (len < skb->len) 205fd558d18SJames Chapman msg->msg_flags |= MSG_TRUNC; 206fd558d18SJames Chapman 20751f3d02bSDavid S. Miller err = skb_copy_datagram_msg(skb, 0, msg, len); 208fd558d18SJames Chapman if (likely(err == 0)) 209fd558d18SJames Chapman err = len; 210fd558d18SJames Chapman 211fd558d18SJames Chapman kfree_skb(skb); 212fd558d18SJames Chapman end: 213fd558d18SJames Chapman return err; 214fd558d18SJames Chapman } 215fd558d18SJames Chapman 216fd558d18SJames Chapman static void pppol2tp_recv(struct l2tp_session *session, struct sk_buff *skb, int data_len) 217fd558d18SJames Chapman { 218fd558d18SJames Chapman struct pppol2tp_session *ps = l2tp_session_priv(session); 219fd558d18SJames Chapman struct sock *sk = NULL; 220fd558d18SJames Chapman 221fd558d18SJames Chapman /* If the socket is bound, send it in to PPP's input queue. Otherwise 222fd558d18SJames Chapman * queue it on the session socket. 223fd558d18SJames Chapman */ 224ee40fb2eSGuillaume Nault rcu_read_lock(); 225ee40fb2eSGuillaume Nault sk = rcu_dereference(ps->sk); 226fd558d18SJames Chapman if (sk == NULL) 227fd558d18SJames Chapman goto no_sock; 228fd558d18SJames Chapman 2292b139e6bSGuillaume Nault /* If the first two bytes are 0xFF03, consider that it is the PPP's 2302b139e6bSGuillaume Nault * Address and Control fields and skip them. The L2TP module has always 2312b139e6bSGuillaume Nault * worked this way, although, in theory, the use of these fields should 2322b139e6bSGuillaume Nault * be negociated and handled at the PPP layer. These fields are 2332b139e6bSGuillaume Nault * constant: 0xFF is the All-Stations Address and 0x03 the Unnumbered 2342b139e6bSGuillaume Nault * Information command with Poll/Final bit set to zero (RFC 1662). 2352b139e6bSGuillaume Nault */ 2362b139e6bSGuillaume Nault if (pskb_may_pull(skb, 2) && skb->data[0] == PPP_ALLSTATIONS && 2372b139e6bSGuillaume Nault skb->data[1] == PPP_UI) 2382b139e6bSGuillaume Nault skb_pull(skb, 2); 2392b139e6bSGuillaume Nault 240fd558d18SJames Chapman if (sk->sk_state & PPPOX_BOUND) { 241fd558d18SJames Chapman struct pppox_sock *po; 24298f40b3eSGuillaume Nault 243fba40c63SAsbjørn Sloth Tønnesen l2tp_dbg(session, L2TP_MSG_DATA, 244fd558d18SJames Chapman "%s: recv %d byte data frame, passing to ppp\n", 245fd558d18SJames Chapman session->name, data_len); 246fd558d18SJames Chapman 247fd558d18SJames Chapman po = pppox_sk(sk); 248fd558d18SJames Chapman ppp_input(&po->chan, skb); 249fd558d18SJames Chapman } else { 250fba40c63SAsbjørn Sloth Tønnesen l2tp_dbg(session, L2TP_MSG_DATA, 2519e9cb622SGuillaume Nault "%s: recv %d byte data frame, passing to L2TP socket\n", 2529e9cb622SGuillaume Nault session->name, data_len); 253fd558d18SJames Chapman 2549e9cb622SGuillaume Nault if (sock_queue_rcv_skb(sk, skb) < 0) { 2557b7c0719STom Parkin atomic_long_inc(&session->stats.rx_errors); 256fd558d18SJames Chapman kfree_skb(skb); 257fd558d18SJames Chapman } 2589e9cb622SGuillaume Nault } 259ee40fb2eSGuillaume Nault rcu_read_unlock(); 260fd558d18SJames Chapman 261fd558d18SJames Chapman return; 262fd558d18SJames Chapman 263fd558d18SJames Chapman no_sock: 264ee40fb2eSGuillaume Nault rcu_read_unlock(); 265fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_DATA, "%s: no socket\n", session->name); 266fd558d18SJames Chapman kfree_skb(skb); 267fd558d18SJames Chapman } 268fd558d18SJames Chapman 269fd558d18SJames Chapman /************************************************************************ 270fd558d18SJames Chapman * Transmit handling 271fd558d18SJames Chapman ***********************************************************************/ 272fd558d18SJames Chapman 273fd558d18SJames Chapman /* This is the sendmsg for the PPPoL2TP pppol2tp_session socket. We come here 274fd558d18SJames Chapman * when a user application does a sendmsg() on the session socket. L2TP and 275fd558d18SJames Chapman * PPP headers must be inserted into the user's data. 276fd558d18SJames Chapman */ 2771b784140SYing Xue static int pppol2tp_sendmsg(struct socket *sock, struct msghdr *m, 278fd558d18SJames Chapman size_t total_len) 279fd558d18SJames Chapman { 280fd558d18SJames Chapman struct sock *sk = sock->sk; 281fd558d18SJames Chapman struct sk_buff *skb; 282fd558d18SJames Chapman int error; 283fd558d18SJames Chapman struct l2tp_session *session; 284fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 2850d76751fSJames Chapman int uhlen; 286fd558d18SJames Chapman 287fd558d18SJames Chapman error = -ENOTCONN; 288fd558d18SJames Chapman if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED)) 289fd558d18SJames Chapman goto error; 290fd558d18SJames Chapman 291fd558d18SJames Chapman /* Get session and tunnel contexts */ 292fd558d18SJames Chapman error = -EBADF; 293fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 294fd558d18SJames Chapman if (session == NULL) 295fd558d18SJames Chapman goto error; 296fd558d18SJames Chapman 2977198c77aSGuillaume Nault tunnel = session->tunnel; 298fd558d18SJames Chapman 2990d76751fSJames Chapman uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0; 3000d76751fSJames Chapman 301fd558d18SJames Chapman /* Allocate a socket buffer */ 302fd558d18SJames Chapman error = -ENOMEM; 303fd558d18SJames Chapman skb = sock_wmalloc(sk, NET_SKB_PAD + sizeof(struct iphdr) + 3040d76751fSJames Chapman uhlen + session->hdr_len + 30554c151d9SGao Feng 2 + total_len, /* 2 bytes for PPP_ALLSTATIONS & PPP_UI */ 306fd558d18SJames Chapman 0, GFP_KERNEL); 307fd558d18SJames Chapman if (!skb) 3087198c77aSGuillaume Nault goto error_put_sess; 309fd558d18SJames Chapman 310fd558d18SJames Chapman /* Reserve space for headers. */ 311fd558d18SJames Chapman skb_reserve(skb, NET_SKB_PAD); 312fd558d18SJames Chapman skb_reset_network_header(skb); 313fd558d18SJames Chapman skb_reserve(skb, sizeof(struct iphdr)); 314fd558d18SJames Chapman skb_reset_transport_header(skb); 3150d76751fSJames Chapman skb_reserve(skb, uhlen); 316fd558d18SJames Chapman 317fd558d18SJames Chapman /* Add PPP header */ 31854c151d9SGao Feng skb->data[0] = PPP_ALLSTATIONS; 31954c151d9SGao Feng skb->data[1] = PPP_UI; 320fd558d18SJames Chapman skb_put(skb, 2); 321fd558d18SJames Chapman 322fd558d18SJames Chapman /* Copy user data into skb */ 3236ce8e9ceSAl Viro error = memcpy_from_msg(skb_put(skb, total_len), m, total_len); 324fd558d18SJames Chapman if (error < 0) { 325fd558d18SJames Chapman kfree_skb(skb); 3267198c77aSGuillaume Nault goto error_put_sess; 327fd558d18SJames Chapman } 328fd558d18SJames Chapman 329455cc32bSEric Dumazet local_bh_disable(); 330fd558d18SJames Chapman l2tp_xmit_skb(session, skb, session->hdr_len); 331455cc32bSEric Dumazet local_bh_enable(); 332fd558d18SJames Chapman 3338b82547eSGuillaume Nault sock_put(sk); 334fd558d18SJames Chapman 335a6f79d0fSGuillaume Nault return total_len; 336fd558d18SJames Chapman 337fd558d18SJames Chapman error_put_sess: 338fd558d18SJames Chapman sock_put(sk); 339fd558d18SJames Chapman error: 340fd558d18SJames Chapman return error; 341fd558d18SJames Chapman } 342fd558d18SJames Chapman 343fd558d18SJames Chapman /* Transmit function called by generic PPP driver. Sends PPP frame 344fd558d18SJames Chapman * over PPPoL2TP socket. 345fd558d18SJames Chapman * 346fd558d18SJames Chapman * This is almost the same as pppol2tp_sendmsg(), but rather than 347fd558d18SJames Chapman * being called with a msghdr from userspace, it is called with a skb 348fd558d18SJames Chapman * from the kernel. 349fd558d18SJames Chapman * 350fd558d18SJames Chapman * The supplied skb from ppp doesn't have enough headroom for the 351fd558d18SJames Chapman * insertion of L2TP, UDP and IP headers so we need to allocate more 352fd558d18SJames Chapman * headroom in the skb. This will create a cloned skb. But we must be 353fd558d18SJames Chapman * careful in the error case because the caller will expect to free 354fd558d18SJames Chapman * the skb it supplied, not our cloned skb. So we take care to always 355fd558d18SJames Chapman * leave the original skb unfreed if we return an error. 356fd558d18SJames Chapman */ 357fd558d18SJames Chapman static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb) 358fd558d18SJames Chapman { 359fd558d18SJames Chapman struct sock *sk = (struct sock *) chan->private; 360fd558d18SJames Chapman struct l2tp_session *session; 361fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 36209df57caSEric Dumazet int uhlen, headroom; 363fd558d18SJames Chapman 364fd558d18SJames Chapman if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED)) 365fd558d18SJames Chapman goto abort; 366fd558d18SJames Chapman 367fd558d18SJames Chapman /* Get session and tunnel contexts from the socket */ 368fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 369fd558d18SJames Chapman if (session == NULL) 370fd558d18SJames Chapman goto abort; 371fd558d18SJames Chapman 3727198c77aSGuillaume Nault tunnel = session->tunnel; 373fd558d18SJames Chapman 37409df57caSEric Dumazet uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0; 37509df57caSEric Dumazet headroom = NET_SKB_PAD + 37609df57caSEric Dumazet sizeof(struct iphdr) + /* IP header */ 37709df57caSEric Dumazet uhlen + /* UDP header (if L2TP_ENCAPTYPE_UDP) */ 37809df57caSEric Dumazet session->hdr_len + /* L2TP header */ 37954c151d9SGao Feng 2; /* 2 bytes for PPP_ALLSTATIONS & PPP_UI */ 38009df57caSEric Dumazet if (skb_cow_head(skb, headroom)) 3817198c77aSGuillaume Nault goto abort_put_sess; 382fd558d18SJames Chapman 383fd558d18SJames Chapman /* Setup PPP header */ 38454c151d9SGao Feng __skb_push(skb, 2); 38554c151d9SGao Feng skb->data[0] = PPP_ALLSTATIONS; 38654c151d9SGao Feng skb->data[1] = PPP_UI; 387fd558d18SJames Chapman 388455cc32bSEric Dumazet local_bh_disable(); 389e0d4435fSJames Chapman l2tp_xmit_skb(session, skb, session->hdr_len); 390455cc32bSEric Dumazet local_bh_enable(); 391fd558d18SJames Chapman 392fd558d18SJames Chapman sock_put(sk); 3937198c77aSGuillaume Nault 394fd558d18SJames Chapman return 1; 395fd558d18SJames Chapman 396fd558d18SJames Chapman abort_put_sess: 397fd558d18SJames Chapman sock_put(sk); 398fd558d18SJames Chapman abort: 399fd558d18SJames Chapman /* Free the original skb */ 400fd558d18SJames Chapman kfree_skb(skb); 401fd558d18SJames Chapman return 1; 402fd558d18SJames Chapman } 403fd558d18SJames Chapman 404fd558d18SJames Chapman /***************************************************************************** 405fd558d18SJames Chapman * Session (and tunnel control) socket create/destroy. 406fd558d18SJames Chapman *****************************************************************************/ 407fd558d18SJames Chapman 408d02ba2a6SJames Chapman static void pppol2tp_put_sk(struct rcu_head *head) 409d02ba2a6SJames Chapman { 410d02ba2a6SJames Chapman struct pppol2tp_session *ps; 411d02ba2a6SJames Chapman 412d02ba2a6SJames Chapman ps = container_of(head, typeof(*ps), rcu); 413d02ba2a6SJames Chapman sock_put(ps->__sk); 414d02ba2a6SJames Chapman } 415d02ba2a6SJames Chapman 416fd558d18SJames Chapman /* Really kill the session socket. (Called from sock_put() if 417fd558d18SJames Chapman * refcnt == 0.) 418fd558d18SJames Chapman */ 419fd558d18SJames Chapman static void pppol2tp_session_destruct(struct sock *sk) 420fd558d18SJames Chapman { 421f6e16b29STom Parkin struct l2tp_session *session = sk->sk_user_data; 422e91793bbSGuillaume Nault 423e91793bbSGuillaume Nault skb_queue_purge(&sk->sk_receive_queue); 424e91793bbSGuillaume Nault skb_queue_purge(&sk->sk_write_queue); 425e91793bbSGuillaume Nault 426f6e16b29STom Parkin if (session) { 427fd558d18SJames Chapman sk->sk_user_data = NULL; 428fd558d18SJames Chapman BUG_ON(session->magic != L2TP_SESSION_MAGIC); 429fd558d18SJames Chapman l2tp_session_dec_refcount(session); 430fd558d18SJames Chapman } 431fd558d18SJames Chapman } 432fd558d18SJames Chapman 433fd558d18SJames Chapman /* Called when the PPPoX socket (session) is closed. 434fd558d18SJames Chapman */ 435fd558d18SJames Chapman static int pppol2tp_release(struct socket *sock) 436fd558d18SJames Chapman { 437fd558d18SJames Chapman struct sock *sk = sock->sk; 438fd558d18SJames Chapman struct l2tp_session *session; 439fd558d18SJames Chapman int error; 440fd558d18SJames Chapman 441fd558d18SJames Chapman if (!sk) 442fd558d18SJames Chapman return 0; 443fd558d18SJames Chapman 444fd558d18SJames Chapman error = -EBADF; 445fd558d18SJames Chapman lock_sock(sk); 446fd558d18SJames Chapman if (sock_flag(sk, SOCK_DEAD) != 0) 447fd558d18SJames Chapman goto error; 448fd558d18SJames Chapman 449fd558d18SJames Chapman pppox_unbind_sock(sk); 450fd558d18SJames Chapman 451fd558d18SJames Chapman /* Signal the death of the socket. */ 452fd558d18SJames Chapman sk->sk_state = PPPOX_DEAD; 453fd558d18SJames Chapman sock_orphan(sk); 454fd558d18SJames Chapman sock->sk = NULL; 455fd558d18SJames Chapman 456d02ba2a6SJames Chapman session = pppol2tp_sock_to_session(sk); 457d02ba2a6SJames Chapman if (session) { 4583d609342SGuillaume Nault struct pppol2tp_session *ps; 4593d609342SGuillaume Nault 460d02ba2a6SJames Chapman l2tp_session_delete(session); 4613d609342SGuillaume Nault 4623d609342SGuillaume Nault ps = l2tp_session_priv(session); 4633d609342SGuillaume Nault mutex_lock(&ps->sk_lock); 4643d609342SGuillaume Nault ps->__sk = rcu_dereference_protected(ps->sk, 4653d609342SGuillaume Nault lockdep_is_held(&ps->sk_lock)); 4663d609342SGuillaume Nault RCU_INIT_POINTER(ps->sk, NULL); 4673d609342SGuillaume Nault mutex_unlock(&ps->sk_lock); 4683d609342SGuillaume Nault call_rcu(&ps->rcu, pppol2tp_put_sk); 4693d609342SGuillaume Nault 4703d609342SGuillaume Nault /* Rely on the sock_put() call at the end of the function for 4713d609342SGuillaume Nault * dropping the reference held by pppol2tp_sock_to_session(). 4723d609342SGuillaume Nault * The last reference will be dropped by pppol2tp_put_sk(). 4733d609342SGuillaume Nault */ 474cf2f5c88STom Parkin } 475d02ba2a6SJames Chapman 476fd558d18SJames Chapman release_sock(sk); 477fd558d18SJames Chapman 478fd558d18SJames Chapman /* This will delete the session context via 479fd558d18SJames Chapman * pppol2tp_session_destruct() if the socket's refcnt drops to 480fd558d18SJames Chapman * zero. 481fd558d18SJames Chapman */ 482fd558d18SJames Chapman sock_put(sk); 483fd558d18SJames Chapman 484fd558d18SJames Chapman return 0; 485fd558d18SJames Chapman 486fd558d18SJames Chapman error: 487fd558d18SJames Chapman release_sock(sk); 488fd558d18SJames Chapman return error; 489fd558d18SJames Chapman } 490fd558d18SJames Chapman 491fd558d18SJames Chapman static struct proto pppol2tp_sk_proto = { 492fd558d18SJames Chapman .name = "PPPOL2TP", 493fd558d18SJames Chapman .owner = THIS_MODULE, 494fd558d18SJames Chapman .obj_size = sizeof(struct pppox_sock), 495fd558d18SJames Chapman }; 496fd558d18SJames Chapman 497fd558d18SJames Chapman static int pppol2tp_backlog_recv(struct sock *sk, struct sk_buff *skb) 498fd558d18SJames Chapman { 499fd558d18SJames Chapman int rc; 500fd558d18SJames Chapman 501fd558d18SJames Chapman rc = l2tp_udp_encap_recv(sk, skb); 502fd558d18SJames Chapman if (rc) 503fd558d18SJames Chapman kfree_skb(skb); 504fd558d18SJames Chapman 505fd558d18SJames Chapman return NET_RX_SUCCESS; 506fd558d18SJames Chapman } 507fd558d18SJames Chapman 508fd558d18SJames Chapman /* socket() handler. Initialize a new struct sock. 509fd558d18SJames Chapman */ 51011aa9c28SEric W. Biederman static int pppol2tp_create(struct net *net, struct socket *sock, int kern) 511fd558d18SJames Chapman { 512fd558d18SJames Chapman int error = -ENOMEM; 513fd558d18SJames Chapman struct sock *sk; 514fd558d18SJames Chapman 51511aa9c28SEric W. Biederman sk = sk_alloc(net, PF_PPPOX, GFP_KERNEL, &pppol2tp_sk_proto, kern); 516fd558d18SJames Chapman if (!sk) 517fd558d18SJames Chapman goto out; 518fd558d18SJames Chapman 519fd558d18SJames Chapman sock_init_data(sock, sk); 520fd558d18SJames Chapman 521fd558d18SJames Chapman sock->state = SS_UNCONNECTED; 522fd558d18SJames Chapman sock->ops = &pppol2tp_ops; 523fd558d18SJames Chapman 524fd558d18SJames Chapman sk->sk_backlog_rcv = pppol2tp_backlog_recv; 525fd558d18SJames Chapman sk->sk_protocol = PX_PROTO_OL2TP; 526fd558d18SJames Chapman sk->sk_family = PF_PPPOX; 527fd558d18SJames Chapman sk->sk_state = PPPOX_NONE; 528fd558d18SJames Chapman sk->sk_type = SOCK_STREAM; 529fd558d18SJames Chapman sk->sk_destruct = pppol2tp_session_destruct; 530fd558d18SJames Chapman 531fd558d18SJames Chapman error = 0; 532fd558d18SJames Chapman 533fd558d18SJames Chapman out: 534fd558d18SJames Chapman return error; 535fd558d18SJames Chapman } 536fd558d18SJames Chapman 5379dd79945SJavier Martinez Canillas #if IS_ENABLED(CONFIG_L2TP_DEBUGFS) 5380ad66140SJames Chapman static void pppol2tp_show(struct seq_file *m, void *arg) 5390ad66140SJames Chapman { 5400ad66140SJames Chapman struct l2tp_session *session = arg; 541ee40fb2eSGuillaume Nault struct sock *sk; 5420ad66140SJames Chapman 543ee40fb2eSGuillaume Nault sk = pppol2tp_session_get_sock(session); 544ee40fb2eSGuillaume Nault if (sk) { 545ee40fb2eSGuillaume Nault struct pppox_sock *po = pppox_sk(sk); 546ee40fb2eSGuillaume Nault 5470ad66140SJames Chapman seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan)); 548ee40fb2eSGuillaume Nault sock_put(sk); 5490ad66140SJames Chapman } 5500ad66140SJames Chapman } 5510ad66140SJames Chapman #endif 5520ad66140SJames Chapman 553f98be6c6SGuillaume Nault static void pppol2tp_session_init(struct l2tp_session *session) 554f98be6c6SGuillaume Nault { 555f98be6c6SGuillaume Nault struct pppol2tp_session *ps; 556f98be6c6SGuillaume Nault 557f98be6c6SGuillaume Nault session->recv_skb = pppol2tp_recv; 558f98be6c6SGuillaume Nault #if IS_ENABLED(CONFIG_L2TP_DEBUGFS) 559f98be6c6SGuillaume Nault session->show = pppol2tp_show; 560f98be6c6SGuillaume Nault #endif 561f98be6c6SGuillaume Nault 562f98be6c6SGuillaume Nault ps = l2tp_session_priv(session); 563f98be6c6SGuillaume Nault mutex_init(&ps->sk_lock); 564f98be6c6SGuillaume Nault ps->owner = current->pid; 565f98be6c6SGuillaume Nault } 566f98be6c6SGuillaume Nault 567a408194aSGuillaume Nault struct l2tp_connect_info { 568a408194aSGuillaume Nault u8 version; 569a408194aSGuillaume Nault int fd; 570a408194aSGuillaume Nault u32 tunnel_id; 571a408194aSGuillaume Nault u32 peer_tunnel_id; 572a408194aSGuillaume Nault u32 session_id; 573a408194aSGuillaume Nault u32 peer_session_id; 574a408194aSGuillaume Nault }; 575a408194aSGuillaume Nault 576a408194aSGuillaume Nault static int pppol2tp_sockaddr_get_info(const void *sa, int sa_len, 577a408194aSGuillaume Nault struct l2tp_connect_info *info) 578a408194aSGuillaume Nault { 579a408194aSGuillaume Nault switch (sa_len) { 580a408194aSGuillaume Nault case sizeof(struct sockaddr_pppol2tp): 581a408194aSGuillaume Nault { 582a408194aSGuillaume Nault const struct sockaddr_pppol2tp *sa_v2in4 = sa; 583a408194aSGuillaume Nault 584a408194aSGuillaume Nault if (sa_v2in4->sa_protocol != PX_PROTO_OL2TP) 585a408194aSGuillaume Nault return -EINVAL; 586a408194aSGuillaume Nault 587a408194aSGuillaume Nault info->version = 2; 588a408194aSGuillaume Nault info->fd = sa_v2in4->pppol2tp.fd; 589a408194aSGuillaume Nault info->tunnel_id = sa_v2in4->pppol2tp.s_tunnel; 590a408194aSGuillaume Nault info->peer_tunnel_id = sa_v2in4->pppol2tp.d_tunnel; 591a408194aSGuillaume Nault info->session_id = sa_v2in4->pppol2tp.s_session; 592a408194aSGuillaume Nault info->peer_session_id = sa_v2in4->pppol2tp.d_session; 593a408194aSGuillaume Nault 594a408194aSGuillaume Nault break; 595a408194aSGuillaume Nault } 596a408194aSGuillaume Nault case sizeof(struct sockaddr_pppol2tpv3): 597a408194aSGuillaume Nault { 598a408194aSGuillaume Nault const struct sockaddr_pppol2tpv3 *sa_v3in4 = sa; 599a408194aSGuillaume Nault 600a408194aSGuillaume Nault if (sa_v3in4->sa_protocol != PX_PROTO_OL2TP) 601a408194aSGuillaume Nault return -EINVAL; 602a408194aSGuillaume Nault 603a408194aSGuillaume Nault info->version = 3; 604a408194aSGuillaume Nault info->fd = sa_v3in4->pppol2tp.fd; 605a408194aSGuillaume Nault info->tunnel_id = sa_v3in4->pppol2tp.s_tunnel; 606a408194aSGuillaume Nault info->peer_tunnel_id = sa_v3in4->pppol2tp.d_tunnel; 607a408194aSGuillaume Nault info->session_id = sa_v3in4->pppol2tp.s_session; 608a408194aSGuillaume Nault info->peer_session_id = sa_v3in4->pppol2tp.d_session; 609a408194aSGuillaume Nault 610a408194aSGuillaume Nault break; 611a408194aSGuillaume Nault } 612a408194aSGuillaume Nault case sizeof(struct sockaddr_pppol2tpin6): 613a408194aSGuillaume Nault { 614a408194aSGuillaume Nault const struct sockaddr_pppol2tpin6 *sa_v2in6 = sa; 615a408194aSGuillaume Nault 616a408194aSGuillaume Nault if (sa_v2in6->sa_protocol != PX_PROTO_OL2TP) 617a408194aSGuillaume Nault return -EINVAL; 618a408194aSGuillaume Nault 619a408194aSGuillaume Nault info->version = 2; 620a408194aSGuillaume Nault info->fd = sa_v2in6->pppol2tp.fd; 621a408194aSGuillaume Nault info->tunnel_id = sa_v2in6->pppol2tp.s_tunnel; 622a408194aSGuillaume Nault info->peer_tunnel_id = sa_v2in6->pppol2tp.d_tunnel; 623a408194aSGuillaume Nault info->session_id = sa_v2in6->pppol2tp.s_session; 624a408194aSGuillaume Nault info->peer_session_id = sa_v2in6->pppol2tp.d_session; 625a408194aSGuillaume Nault 626a408194aSGuillaume Nault break; 627a408194aSGuillaume Nault } 628a408194aSGuillaume Nault case sizeof(struct sockaddr_pppol2tpv3in6): 629a408194aSGuillaume Nault { 630a408194aSGuillaume Nault const struct sockaddr_pppol2tpv3in6 *sa_v3in6 = sa; 631a408194aSGuillaume Nault 632a408194aSGuillaume Nault if (sa_v3in6->sa_protocol != PX_PROTO_OL2TP) 633a408194aSGuillaume Nault return -EINVAL; 634a408194aSGuillaume Nault 635a408194aSGuillaume Nault info->version = 3; 636a408194aSGuillaume Nault info->fd = sa_v3in6->pppol2tp.fd; 637a408194aSGuillaume Nault info->tunnel_id = sa_v3in6->pppol2tp.s_tunnel; 638a408194aSGuillaume Nault info->peer_tunnel_id = sa_v3in6->pppol2tp.d_tunnel; 639a408194aSGuillaume Nault info->session_id = sa_v3in6->pppol2tp.s_session; 640a408194aSGuillaume Nault info->peer_session_id = sa_v3in6->pppol2tp.d_session; 641a408194aSGuillaume Nault 642a408194aSGuillaume Nault break; 643a408194aSGuillaume Nault } 644a408194aSGuillaume Nault default: 645a408194aSGuillaume Nault return -EINVAL; 646a408194aSGuillaume Nault } 647a408194aSGuillaume Nault 648a408194aSGuillaume Nault return 0; 649a408194aSGuillaume Nault } 650a408194aSGuillaume Nault 651*789141b2SGuillaume Nault /* Rough estimation of the maximum payload size a tunnel can transmit without 652*789141b2SGuillaume Nault * fragmenting at the lower IP layer. Assumes L2TPv2 with sequence 653*789141b2SGuillaume Nault * numbers and no IP option. Not quite accurate, but the result is mostly 654*789141b2SGuillaume Nault * unused anyway. 655*789141b2SGuillaume Nault */ 656*789141b2SGuillaume Nault static int pppol2tp_tunnel_mtu(const struct l2tp_tunnel *tunnel) 657*789141b2SGuillaume Nault { 658*789141b2SGuillaume Nault int mtu; 659*789141b2SGuillaume Nault 660*789141b2SGuillaume Nault mtu = l2tp_tunnel_dst_mtu(tunnel); 661*789141b2SGuillaume Nault if (mtu <= PPPOL2TP_HEADER_OVERHEAD) 662*789141b2SGuillaume Nault return 1500 - PPPOL2TP_HEADER_OVERHEAD; 663*789141b2SGuillaume Nault 664*789141b2SGuillaume Nault return mtu - PPPOL2TP_HEADER_OVERHEAD; 665*789141b2SGuillaume Nault } 666*789141b2SGuillaume Nault 667fd558d18SJames Chapman /* connect() handler. Attach a PPPoX socket to a tunnel UDP socket 668fd558d18SJames Chapman */ 669fd558d18SJames Chapman static int pppol2tp_connect(struct socket *sock, struct sockaddr *uservaddr, 670fd558d18SJames Chapman int sockaddr_len, int flags) 671fd558d18SJames Chapman { 672fd558d18SJames Chapman struct sock *sk = sock->sk; 673fd558d18SJames Chapman struct pppox_sock *po = pppox_sk(sk); 674fd558d18SJames Chapman struct l2tp_session *session = NULL; 675a408194aSGuillaume Nault struct l2tp_connect_info info; 676fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 677fd558d18SJames Chapman struct pppol2tp_session *ps; 678fd558d18SJames Chapman struct l2tp_session_cfg cfg = { 0, }; 679dbdbc73bSGuillaume Nault bool drop_refcnt = false; 680f9e56bafSGuillaume Nault bool drop_tunnel = false; 681bda06be2SGuillaume Nault bool new_session = false; 682bda06be2SGuillaume Nault bool new_tunnel = false; 683a408194aSGuillaume Nault int error; 684a408194aSGuillaume Nault 685a408194aSGuillaume Nault error = pppol2tp_sockaddr_get_info(uservaddr, sockaddr_len, &info); 686a408194aSGuillaume Nault if (error < 0) 687a408194aSGuillaume Nault return error; 688fd558d18SJames Chapman 689fd558d18SJames Chapman lock_sock(sk); 690fd558d18SJames Chapman 691fd558d18SJames Chapman /* Check for already bound sockets */ 692fd558d18SJames Chapman error = -EBUSY; 693fd558d18SJames Chapman if (sk->sk_state & PPPOX_CONNECTED) 694fd558d18SJames Chapman goto end; 695fd558d18SJames Chapman 696fd558d18SJames Chapman /* We don't supporting rebinding anyway */ 697fd558d18SJames Chapman error = -EALREADY; 698fd558d18SJames Chapman if (sk->sk_user_data) 699fd558d18SJames Chapman goto end; /* socket is already attached */ 700fd558d18SJames Chapman 701e0d4435fSJames Chapman /* Don't bind if tunnel_id is 0 */ 702e0d4435fSJames Chapman error = -EINVAL; 703a408194aSGuillaume Nault if (!info.tunnel_id) 704fd558d18SJames Chapman goto end; 705fd558d18SJames Chapman 706a408194aSGuillaume Nault tunnel = l2tp_tunnel_get(sock_net(sk), info.tunnel_id); 707f9e56bafSGuillaume Nault if (tunnel) 708f9e56bafSGuillaume Nault drop_tunnel = true; 709309795f4SJames Chapman 710e0d4435fSJames Chapman /* Special case: create tunnel context if session_id and 711e0d4435fSJames Chapman * peer_session_id is 0. Otherwise look up tunnel using supplied 712fd558d18SJames Chapman * tunnel id. 713fd558d18SJames Chapman */ 714a408194aSGuillaume Nault if (!info.session_id && !info.peer_session_id) { 715309795f4SJames Chapman if (tunnel == NULL) { 716309795f4SJames Chapman struct l2tp_tunnel_cfg tcfg = { 717309795f4SJames Chapman .encap = L2TP_ENCAPTYPE_UDP, 718309795f4SJames Chapman .debug = 0, 719309795f4SJames Chapman }; 7203e1bc8bfSGuillaume Nault 7213e1bc8bfSGuillaume Nault /* Prevent l2tp_tunnel_register() from trying to set up 7223e1bc8bfSGuillaume Nault * a kernel socket. 7233e1bc8bfSGuillaume Nault */ 724a408194aSGuillaume Nault if (info.fd < 0) { 7253e1bc8bfSGuillaume Nault error = -EBADF; 7263e1bc8bfSGuillaume Nault goto end; 7273e1bc8bfSGuillaume Nault } 7283e1bc8bfSGuillaume Nault 729a408194aSGuillaume Nault error = l2tp_tunnel_create(sock_net(sk), info.fd, 730a408194aSGuillaume Nault info.version, 731a408194aSGuillaume Nault info.tunnel_id, 732a408194aSGuillaume Nault info.peer_tunnel_id, &tcfg, 733a408194aSGuillaume Nault &tunnel); 734fd558d18SJames Chapman if (error < 0) 735fd558d18SJames Chapman goto end; 7366b9f3423SGuillaume Nault 7376b9f3423SGuillaume Nault l2tp_tunnel_inc_refcount(tunnel); 7386b9f3423SGuillaume Nault error = l2tp_tunnel_register(tunnel, sock_net(sk), 7396b9f3423SGuillaume Nault &tcfg); 7406b9f3423SGuillaume Nault if (error < 0) { 7416b9f3423SGuillaume Nault kfree(tunnel); 7426b9f3423SGuillaume Nault goto end; 7436b9f3423SGuillaume Nault } 7446b9f3423SGuillaume Nault drop_tunnel = true; 745bda06be2SGuillaume Nault new_tunnel = true; 746309795f4SJames Chapman } 747fd558d18SJames Chapman } else { 748fd558d18SJames Chapman /* Error if we can't find the tunnel */ 749fd558d18SJames Chapman error = -ENOENT; 750fd558d18SJames Chapman if (tunnel == NULL) 751fd558d18SJames Chapman goto end; 752fd558d18SJames Chapman 753fd558d18SJames Chapman /* Error if socket is not prepped */ 754fd558d18SJames Chapman if (tunnel->sock == NULL) 755fd558d18SJames Chapman goto end; 756fd558d18SJames Chapman } 757fd558d18SJames Chapman 758b79585f5SJames Chapman if (tunnel->peer_tunnel_id == 0) 759a408194aSGuillaume Nault tunnel->peer_tunnel_id = info.peer_tunnel_id; 760fd558d18SJames Chapman 761a408194aSGuillaume Nault session = l2tp_session_get(sock_net(sk), tunnel, info.session_id); 762dbdbc73bSGuillaume Nault if (session) { 763dbdbc73bSGuillaume Nault drop_refcnt = true; 7647ac6ab1fSGuillaume Nault 7657ac6ab1fSGuillaume Nault if (session->pwtype != L2TP_PWTYPE_PPP) { 7667ac6ab1fSGuillaume Nault error = -EPROTOTYPE; 7677ac6ab1fSGuillaume Nault goto end; 7687ac6ab1fSGuillaume Nault } 7697ac6ab1fSGuillaume Nault 770dbdbc73bSGuillaume Nault ps = l2tp_session_priv(session); 771fd558d18SJames Chapman 772dbdbc73bSGuillaume Nault /* Using a pre-existing session is fine as long as it hasn't 773dbdbc73bSGuillaume Nault * been connected yet. 774dbdbc73bSGuillaume Nault */ 775ee40fb2eSGuillaume Nault mutex_lock(&ps->sk_lock); 776ee40fb2eSGuillaume Nault if (rcu_dereference_protected(ps->sk, 7773d609342SGuillaume Nault lockdep_is_held(&ps->sk_lock)) || 7783d609342SGuillaume Nault ps->__sk) { 779ee40fb2eSGuillaume Nault mutex_unlock(&ps->sk_lock); 780dbdbc73bSGuillaume Nault error = -EEXIST; 781dbdbc73bSGuillaume Nault goto end; 782dbdbc73bSGuillaume Nault } 783309795f4SJames Chapman } else { 78490904ff5SGuillaume Nault cfg.pw_type = L2TP_PWTYPE_PPP; 785fd558d18SJames Chapman 786dbdbc73bSGuillaume Nault session = l2tp_session_create(sizeof(struct pppol2tp_session), 787a408194aSGuillaume Nault tunnel, info.session_id, 788a408194aSGuillaume Nault info.peer_session_id, &cfg); 789dbdbc73bSGuillaume Nault if (IS_ERR(session)) { 790dbdbc73bSGuillaume Nault error = PTR_ERR(session); 791309795f4SJames Chapman goto end; 792309795f4SJames Chapman } 7933953ae7bSGuillaume Nault 794f98be6c6SGuillaume Nault pppol2tp_session_init(session); 795ee40fb2eSGuillaume Nault ps = l2tp_session_priv(session); 7963953ae7bSGuillaume Nault l2tp_session_inc_refcount(session); 797ee40fb2eSGuillaume Nault 798ee40fb2eSGuillaume Nault mutex_lock(&ps->sk_lock); 7993953ae7bSGuillaume Nault error = l2tp_session_register(session, tunnel); 8003953ae7bSGuillaume Nault if (error < 0) { 801ee40fb2eSGuillaume Nault mutex_unlock(&ps->sk_lock); 8023953ae7bSGuillaume Nault kfree(session); 8033953ae7bSGuillaume Nault goto end; 8043953ae7bSGuillaume Nault } 8053953ae7bSGuillaume Nault drop_refcnt = true; 806bda06be2SGuillaume Nault new_session = true; 807dbdbc73bSGuillaume Nault } 808309795f4SJames Chapman 809fd558d18SJames Chapman /* Special case: if source & dest session_id == 0x0000, this 810fd558d18SJames Chapman * socket is being created to manage the tunnel. Just set up 811fd558d18SJames Chapman * the internal context for use by ioctl() and sockopt() 812fd558d18SJames Chapman * handlers. 813fd558d18SJames Chapman */ 814fd558d18SJames Chapman if ((session->session_id == 0) && 815fd558d18SJames Chapman (session->peer_session_id == 0)) { 816fd558d18SJames Chapman error = 0; 817fd558d18SJames Chapman goto out_no_ppp; 818fd558d18SJames Chapman } 819fd558d18SJames Chapman 820fd558d18SJames Chapman /* The only header we need to worry about is the L2TP 821fd558d18SJames Chapman * header. This size is different depending on whether 822fd558d18SJames Chapman * sequence numbers are enabled for the data channel. 823fd558d18SJames Chapman */ 824fd558d18SJames Chapman po->chan.hdrlen = PPPOL2TP_L2TP_HDR_SIZE_NOSEQ; 825fd558d18SJames Chapman 826fd558d18SJames Chapman po->chan.private = sk; 827fd558d18SJames Chapman po->chan.ops = &pppol2tp_chan_ops; 828*789141b2SGuillaume Nault po->chan.mtu = pppol2tp_tunnel_mtu(tunnel); 829fd558d18SJames Chapman 830fd558d18SJames Chapman error = ppp_register_net_channel(sock_net(sk), &po->chan); 831ee40fb2eSGuillaume Nault if (error) { 832ee40fb2eSGuillaume Nault mutex_unlock(&ps->sk_lock); 833fd558d18SJames Chapman goto end; 834ee40fb2eSGuillaume Nault } 835fd558d18SJames Chapman 836fd558d18SJames Chapman out_no_ppp: 837fd558d18SJames Chapman /* This is how we get the session context from the socket. */ 838fd558d18SJames Chapman sk->sk_user_data = session; 839ee40fb2eSGuillaume Nault rcu_assign_pointer(ps->sk, sk); 840ee40fb2eSGuillaume Nault mutex_unlock(&ps->sk_lock); 841ee40fb2eSGuillaume Nault 842f98be6c6SGuillaume Nault /* Keep the reference we've grabbed on the session: sk doesn't expect 843f98be6c6SGuillaume Nault * the session to disappear. pppol2tp_session_destruct() is responsible 844f98be6c6SGuillaume Nault * for dropping it. 845f98be6c6SGuillaume Nault */ 846f98be6c6SGuillaume Nault drop_refcnt = false; 847f98be6c6SGuillaume Nault 848fd558d18SJames Chapman sk->sk_state = PPPOX_CONNECTED; 849fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: created\n", 850a4ca44faSJoe Perches session->name); 851fd558d18SJames Chapman 852fd558d18SJames Chapman end: 853bda06be2SGuillaume Nault if (error) { 854bda06be2SGuillaume Nault if (new_session) 855bda06be2SGuillaume Nault l2tp_session_delete(session); 856bda06be2SGuillaume Nault if (new_tunnel) 857bda06be2SGuillaume Nault l2tp_tunnel_delete(tunnel); 858bda06be2SGuillaume Nault } 859dbdbc73bSGuillaume Nault if (drop_refcnt) 860dbdbc73bSGuillaume Nault l2tp_session_dec_refcount(session); 861f9e56bafSGuillaume Nault if (drop_tunnel) 862f9e56bafSGuillaume Nault l2tp_tunnel_dec_refcount(tunnel); 863fd558d18SJames Chapman release_sock(sk); 864fd558d18SJames Chapman 865fd558d18SJames Chapman return error; 866fd558d18SJames Chapman } 867fd558d18SJames Chapman 868309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 869309795f4SJames Chapman 870f026bc29SGuillaume Nault /* Called when creating sessions via the netlink interface. */ 871f026bc29SGuillaume Nault static int pppol2tp_session_create(struct net *net, struct l2tp_tunnel *tunnel, 872f026bc29SGuillaume Nault u32 session_id, u32 peer_session_id, 873f026bc29SGuillaume Nault struct l2tp_session_cfg *cfg) 874309795f4SJames Chapman { 875309795f4SJames Chapman int error; 876309795f4SJames Chapman struct l2tp_session *session; 877309795f4SJames Chapman 878309795f4SJames Chapman /* Error if tunnel socket is not prepped */ 879f026bc29SGuillaume Nault if (!tunnel->sock) { 880f026bc29SGuillaume Nault error = -ENOENT; 8813953ae7bSGuillaume Nault goto err; 882f026bc29SGuillaume Nault } 883309795f4SJames Chapman 884309795f4SJames Chapman /* Allocate and initialize a new session context. */ 885309795f4SJames Chapman session = l2tp_session_create(sizeof(struct pppol2tp_session), 886309795f4SJames Chapman tunnel, session_id, 887309795f4SJames Chapman peer_session_id, cfg); 888dbdbc73bSGuillaume Nault if (IS_ERR(session)) { 889dbdbc73bSGuillaume Nault error = PTR_ERR(session); 8903953ae7bSGuillaume Nault goto err; 891dbdbc73bSGuillaume Nault } 892309795f4SJames Chapman 893f98be6c6SGuillaume Nault pppol2tp_session_init(session); 894309795f4SJames Chapman 8953953ae7bSGuillaume Nault error = l2tp_session_register(session, tunnel); 8963953ae7bSGuillaume Nault if (error < 0) 8973953ae7bSGuillaume Nault goto err_sess; 898309795f4SJames Chapman 8993953ae7bSGuillaume Nault return 0; 900309795f4SJames Chapman 9013953ae7bSGuillaume Nault err_sess: 9023953ae7bSGuillaume Nault kfree(session); 9033953ae7bSGuillaume Nault err: 904309795f4SJames Chapman return error; 905309795f4SJames Chapman } 906309795f4SJames Chapman 907309795f4SJames Chapman #endif /* CONFIG_L2TP_V3 */ 908309795f4SJames Chapman 909fd558d18SJames Chapman /* getname() support. 910fd558d18SJames Chapman */ 911fd558d18SJames Chapman static int pppol2tp_getname(struct socket *sock, struct sockaddr *uaddr, 9129b2c45d4SDenys Vlasenko int peer) 913fd558d18SJames Chapman { 914e0d4435fSJames Chapman int len = 0; 915fd558d18SJames Chapman int error = 0; 916fd558d18SJames Chapman struct l2tp_session *session; 917fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 918fd558d18SJames Chapman struct sock *sk = sock->sk; 919fd558d18SJames Chapman struct inet_sock *inet; 920fd558d18SJames Chapman struct pppol2tp_session *pls; 921fd558d18SJames Chapman 922fd558d18SJames Chapman error = -ENOTCONN; 923fd558d18SJames Chapman if (sk == NULL) 924fd558d18SJames Chapman goto end; 92556cff471SGao Feng if (!(sk->sk_state & PPPOX_CONNECTED)) 926fd558d18SJames Chapman goto end; 927fd558d18SJames Chapman 928fd558d18SJames Chapman error = -EBADF; 929fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 930fd558d18SJames Chapman if (session == NULL) 931fd558d18SJames Chapman goto end; 932fd558d18SJames Chapman 933fd558d18SJames Chapman pls = l2tp_session_priv(session); 9347198c77aSGuillaume Nault tunnel = session->tunnel; 935fd558d18SJames Chapman 936bbdb32cbSBenjamin LaHaise inet = inet_sk(tunnel->sock); 937d2cf3361SBenjamin LaHaise if ((tunnel->version == 2) && (tunnel->sock->sk_family == AF_INET)) { 938e0d4435fSJames Chapman struct sockaddr_pppol2tp sp; 939e0d4435fSJames Chapman len = sizeof(sp); 940fd558d18SJames Chapman memset(&sp, 0, len); 941fd558d18SJames Chapman sp.sa_family = AF_PPPOX; 942fd558d18SJames Chapman sp.sa_protocol = PX_PROTO_OL2TP; 943fd558d18SJames Chapman sp.pppol2tp.fd = tunnel->fd; 944fd558d18SJames Chapman sp.pppol2tp.pid = pls->owner; 945fd558d18SJames Chapman sp.pppol2tp.s_tunnel = tunnel->tunnel_id; 946fd558d18SJames Chapman sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; 947fd558d18SJames Chapman sp.pppol2tp.s_session = session->session_id; 948fd558d18SJames Chapman sp.pppol2tp.d_session = session->peer_session_id; 949fd558d18SJames Chapman sp.pppol2tp.addr.sin_family = AF_INET; 950fd558d18SJames Chapman sp.pppol2tp.addr.sin_port = inet->inet_dport; 951fd558d18SJames Chapman sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr; 952fd558d18SJames Chapman memcpy(uaddr, &sp, len); 953d2cf3361SBenjamin LaHaise #if IS_ENABLED(CONFIG_IPV6) 954d2cf3361SBenjamin LaHaise } else if ((tunnel->version == 2) && 955d2cf3361SBenjamin LaHaise (tunnel->sock->sk_family == AF_INET6)) { 956d2cf3361SBenjamin LaHaise struct sockaddr_pppol2tpin6 sp; 957efe4208fSEric Dumazet 958d2cf3361SBenjamin LaHaise len = sizeof(sp); 959d2cf3361SBenjamin LaHaise memset(&sp, 0, len); 960d2cf3361SBenjamin LaHaise sp.sa_family = AF_PPPOX; 961d2cf3361SBenjamin LaHaise sp.sa_protocol = PX_PROTO_OL2TP; 962d2cf3361SBenjamin LaHaise sp.pppol2tp.fd = tunnel->fd; 963d2cf3361SBenjamin LaHaise sp.pppol2tp.pid = pls->owner; 964d2cf3361SBenjamin LaHaise sp.pppol2tp.s_tunnel = tunnel->tunnel_id; 965d2cf3361SBenjamin LaHaise sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; 966d2cf3361SBenjamin LaHaise sp.pppol2tp.s_session = session->session_id; 967d2cf3361SBenjamin LaHaise sp.pppol2tp.d_session = session->peer_session_id; 968d2cf3361SBenjamin LaHaise sp.pppol2tp.addr.sin6_family = AF_INET6; 969d2cf3361SBenjamin LaHaise sp.pppol2tp.addr.sin6_port = inet->inet_dport; 970efe4208fSEric Dumazet memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr, 971efe4208fSEric Dumazet sizeof(tunnel->sock->sk_v6_daddr)); 972d2cf3361SBenjamin LaHaise memcpy(uaddr, &sp, len); 973d2cf3361SBenjamin LaHaise } else if ((tunnel->version == 3) && 974d2cf3361SBenjamin LaHaise (tunnel->sock->sk_family == AF_INET6)) { 975d2cf3361SBenjamin LaHaise struct sockaddr_pppol2tpv3in6 sp; 976efe4208fSEric Dumazet 977d2cf3361SBenjamin LaHaise len = sizeof(sp); 978d2cf3361SBenjamin LaHaise memset(&sp, 0, len); 979d2cf3361SBenjamin LaHaise sp.sa_family = AF_PPPOX; 980d2cf3361SBenjamin LaHaise sp.sa_protocol = PX_PROTO_OL2TP; 981d2cf3361SBenjamin LaHaise sp.pppol2tp.fd = tunnel->fd; 982d2cf3361SBenjamin LaHaise sp.pppol2tp.pid = pls->owner; 983d2cf3361SBenjamin LaHaise sp.pppol2tp.s_tunnel = tunnel->tunnel_id; 984d2cf3361SBenjamin LaHaise sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; 985d2cf3361SBenjamin LaHaise sp.pppol2tp.s_session = session->session_id; 986d2cf3361SBenjamin LaHaise sp.pppol2tp.d_session = session->peer_session_id; 987d2cf3361SBenjamin LaHaise sp.pppol2tp.addr.sin6_family = AF_INET6; 988d2cf3361SBenjamin LaHaise sp.pppol2tp.addr.sin6_port = inet->inet_dport; 989efe4208fSEric Dumazet memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr, 990efe4208fSEric Dumazet sizeof(tunnel->sock->sk_v6_daddr)); 991d2cf3361SBenjamin LaHaise memcpy(uaddr, &sp, len); 992d2cf3361SBenjamin LaHaise #endif 993e0d4435fSJames Chapman } else if (tunnel->version == 3) { 994e0d4435fSJames Chapman struct sockaddr_pppol2tpv3 sp; 995e0d4435fSJames Chapman len = sizeof(sp); 996e0d4435fSJames Chapman memset(&sp, 0, len); 997e0d4435fSJames Chapman sp.sa_family = AF_PPPOX; 998e0d4435fSJames Chapman sp.sa_protocol = PX_PROTO_OL2TP; 999e0d4435fSJames Chapman sp.pppol2tp.fd = tunnel->fd; 1000e0d4435fSJames Chapman sp.pppol2tp.pid = pls->owner; 1001e0d4435fSJames Chapman sp.pppol2tp.s_tunnel = tunnel->tunnel_id; 1002e0d4435fSJames Chapman sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; 1003e0d4435fSJames Chapman sp.pppol2tp.s_session = session->session_id; 1004e0d4435fSJames Chapman sp.pppol2tp.d_session = session->peer_session_id; 1005e0d4435fSJames Chapman sp.pppol2tp.addr.sin_family = AF_INET; 1006e0d4435fSJames Chapman sp.pppol2tp.addr.sin_port = inet->inet_dport; 1007e0d4435fSJames Chapman sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr; 1008e0d4435fSJames Chapman memcpy(uaddr, &sp, len); 1009e0d4435fSJames Chapman } 1010fd558d18SJames Chapman 10119b2c45d4SDenys Vlasenko error = len; 1012fd558d18SJames Chapman 1013fd558d18SJames Chapman sock_put(sk); 1014fd558d18SJames Chapman end: 1015fd558d18SJames Chapman return error; 1016fd558d18SJames Chapman } 1017fd558d18SJames Chapman 1018fd558d18SJames Chapman /**************************************************************************** 1019fd558d18SJames Chapman * ioctl() handlers. 1020fd558d18SJames Chapman * 1021fd558d18SJames Chapman * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP 1022fd558d18SJames Chapman * sockets. However, in order to control kernel tunnel features, we allow 1023fd558d18SJames Chapman * userspace to create a special "tunnel" PPPoX socket which is used for 1024fd558d18SJames Chapman * control only. Tunnel PPPoX sockets have session_id == 0 and simply allow 1025fd558d18SJames Chapman * the user application to issue L2TP setsockopt(), getsockopt() and ioctl() 1026fd558d18SJames Chapman * calls. 1027fd558d18SJames Chapman ****************************************************************************/ 1028fd558d18SJames Chapman 1029fd558d18SJames Chapman static void pppol2tp_copy_stats(struct pppol2tp_ioc_stats *dest, 1030fd558d18SJames Chapman struct l2tp_stats *stats) 1031fd558d18SJames Chapman { 10327b7c0719STom Parkin dest->tx_packets = atomic_long_read(&stats->tx_packets); 10337b7c0719STom Parkin dest->tx_bytes = atomic_long_read(&stats->tx_bytes); 10347b7c0719STom Parkin dest->tx_errors = atomic_long_read(&stats->tx_errors); 10357b7c0719STom Parkin dest->rx_packets = atomic_long_read(&stats->rx_packets); 10367b7c0719STom Parkin dest->rx_bytes = atomic_long_read(&stats->rx_bytes); 10377b7c0719STom Parkin dest->rx_seq_discards = atomic_long_read(&stats->rx_seq_discards); 10387b7c0719STom Parkin dest->rx_oos_packets = atomic_long_read(&stats->rx_oos_packets); 10397b7c0719STom Parkin dest->rx_errors = atomic_long_read(&stats->rx_errors); 1040fd558d18SJames Chapman } 1041fd558d18SJames Chapman 1042fd558d18SJames Chapman /* Session ioctl helper. 1043fd558d18SJames Chapman */ 1044fd558d18SJames Chapman static int pppol2tp_session_ioctl(struct l2tp_session *session, 1045fd558d18SJames Chapman unsigned int cmd, unsigned long arg) 1046fd558d18SJames Chapman { 1047fd558d18SJames Chapman int err = 0; 1048fd558d18SJames Chapman struct sock *sk; 1049fd558d18SJames Chapman int val = (int) arg; 1050fd558d18SJames Chapman struct l2tp_tunnel *tunnel = session->tunnel; 1051fd558d18SJames Chapman struct pppol2tp_ioc_stats stats; 1052fd558d18SJames Chapman 1053fba40c63SAsbjørn Sloth Tønnesen l2tp_dbg(session, L2TP_MSG_CONTROL, 1054fd558d18SJames Chapman "%s: pppol2tp_session_ioctl(cmd=%#x, arg=%#lx)\n", 1055fd558d18SJames Chapman session->name, cmd, arg); 1056fd558d18SJames Chapman 1057ee40fb2eSGuillaume Nault sk = pppol2tp_session_get_sock(session); 10585903f594SGuillaume Nault if (!sk) 10595903f594SGuillaume Nault return -EBADR; 10605903f594SGuillaume Nault 1061fd558d18SJames Chapman switch (cmd) { 1062fd558d18SJames Chapman case PPPIOCGMRU: 1063fd558d18SJames Chapman case PPPIOCGFLAGS: 1064fd558d18SJames Chapman err = -EFAULT; 10651998b5edSGuillaume Nault if (put_user(0, (int __user *)arg)) 1066fd558d18SJames Chapman break; 1067fd558d18SJames Chapman err = 0; 1068fd558d18SJames Chapman break; 1069fd558d18SJames Chapman 107092ea4a7eSGuillaume Nault case PPPIOCSMRU: 1071fd558d18SJames Chapman case PPPIOCSFLAGS: 1072fd558d18SJames Chapman err = -EFAULT; 1073fd558d18SJames Chapman if (get_user(val, (int __user *)arg)) 1074fd558d18SJames Chapman break; 1075fd558d18SJames Chapman err = 0; 1076fd558d18SJames Chapman break; 1077fd558d18SJames Chapman 1078fd558d18SJames Chapman case PPPIOCGL2TPSTATS: 1079fd558d18SJames Chapman err = -ENXIO; 1080fd558d18SJames Chapman if (!(sk->sk_state & PPPOX_CONNECTED)) 1081fd558d18SJames Chapman break; 1082fd558d18SJames Chapman 1083fd558d18SJames Chapman memset(&stats, 0, sizeof(stats)); 1084fd558d18SJames Chapman stats.tunnel_id = tunnel->tunnel_id; 1085fd558d18SJames Chapman stats.session_id = session->session_id; 1086fd558d18SJames Chapman pppol2tp_copy_stats(&stats, &session->stats); 1087fd558d18SJames Chapman if (copy_to_user((void __user *) arg, &stats, 1088fd558d18SJames Chapman sizeof(stats))) 1089fd558d18SJames Chapman break; 1090fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: get L2TP stats\n", 1091a4ca44faSJoe Perches session->name); 1092fd558d18SJames Chapman err = 0; 1093fd558d18SJames Chapman break; 1094fd558d18SJames Chapman 1095fd558d18SJames Chapman default: 1096fd558d18SJames Chapman err = -ENOSYS; 1097fd558d18SJames Chapman break; 1098fd558d18SJames Chapman } 1099fd558d18SJames Chapman 1100fd558d18SJames Chapman sock_put(sk); 1101fd558d18SJames Chapman 1102fd558d18SJames Chapman return err; 1103fd558d18SJames Chapman } 1104fd558d18SJames Chapman 1105fd558d18SJames Chapman /* Tunnel ioctl helper. 1106fd558d18SJames Chapman * 1107fd558d18SJames Chapman * Note the special handling for PPPIOCGL2TPSTATS below. If the ioctl data 1108fd558d18SJames Chapman * specifies a session_id, the session ioctl handler is called. This allows an 1109fd558d18SJames Chapman * application to retrieve session stats via a tunnel socket. 1110fd558d18SJames Chapman */ 1111fd558d18SJames Chapman static int pppol2tp_tunnel_ioctl(struct l2tp_tunnel *tunnel, 1112fd558d18SJames Chapman unsigned int cmd, unsigned long arg) 1113fd558d18SJames Chapman { 1114fd558d18SJames Chapman int err = 0; 1115fd558d18SJames Chapman struct sock *sk; 1116fd558d18SJames Chapman struct pppol2tp_ioc_stats stats; 1117fd558d18SJames Chapman 1118fba40c63SAsbjørn Sloth Tønnesen l2tp_dbg(tunnel, L2TP_MSG_CONTROL, 1119fd558d18SJames Chapman "%s: pppol2tp_tunnel_ioctl(cmd=%#x, arg=%#lx)\n", 1120fd558d18SJames Chapman tunnel->name, cmd, arg); 1121fd558d18SJames Chapman 1122fd558d18SJames Chapman sk = tunnel->sock; 1123fd558d18SJames Chapman sock_hold(sk); 1124fd558d18SJames Chapman 1125fd558d18SJames Chapman switch (cmd) { 1126fd558d18SJames Chapman case PPPIOCGL2TPSTATS: 1127fd558d18SJames Chapman err = -ENXIO; 1128fd558d18SJames Chapman if (!(sk->sk_state & PPPOX_CONNECTED)) 1129fd558d18SJames Chapman break; 1130fd558d18SJames Chapman 1131fd558d18SJames Chapman if (copy_from_user(&stats, (void __user *) arg, 1132fd558d18SJames Chapman sizeof(stats))) { 1133fd558d18SJames Chapman err = -EFAULT; 1134fd558d18SJames Chapman break; 1135fd558d18SJames Chapman } 1136fd558d18SJames Chapman if (stats.session_id != 0) { 1137fd558d18SJames Chapman /* resend to session ioctl handler */ 1138fd558d18SJames Chapman struct l2tp_session *session = 113957377d63SGuillaume Nault l2tp_session_get(sock_net(sk), tunnel, 1140a4346210SGuillaume Nault stats.session_id); 114157377d63SGuillaume Nault 1142ecd012e4SGuillaume Nault if (session && session->pwtype == L2TP_PWTYPE_PPP) { 114357377d63SGuillaume Nault err = pppol2tp_session_ioctl(session, cmd, 114457377d63SGuillaume Nault arg); 114557377d63SGuillaume Nault l2tp_session_dec_refcount(session); 114657377d63SGuillaume Nault } else { 1147fd558d18SJames Chapman err = -EBADR; 114857377d63SGuillaume Nault } 1149fd558d18SJames Chapman break; 1150fd558d18SJames Chapman } 1151fd558d18SJames Chapman #ifdef CONFIG_XFRM 1152fd558d18SJames Chapman stats.using_ipsec = (sk->sk_policy[0] || sk->sk_policy[1]) ? 1 : 0; 1153fd558d18SJames Chapman #endif 1154fd558d18SJames Chapman pppol2tp_copy_stats(&stats, &tunnel->stats); 1155fd558d18SJames Chapman if (copy_to_user((void __user *) arg, &stats, sizeof(stats))) { 1156fd558d18SJames Chapman err = -EFAULT; 1157fd558d18SJames Chapman break; 1158fd558d18SJames Chapman } 1159fba40c63SAsbjørn Sloth Tønnesen l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: get L2TP stats\n", 1160a4ca44faSJoe Perches tunnel->name); 1161fd558d18SJames Chapman err = 0; 1162fd558d18SJames Chapman break; 1163fd558d18SJames Chapman 1164fd558d18SJames Chapman default: 1165fd558d18SJames Chapman err = -ENOSYS; 1166fd558d18SJames Chapman break; 1167fd558d18SJames Chapman } 1168fd558d18SJames Chapman 1169fd558d18SJames Chapman sock_put(sk); 1170fd558d18SJames Chapman 1171fd558d18SJames Chapman return err; 1172fd558d18SJames Chapman } 1173fd558d18SJames Chapman 1174fd558d18SJames Chapman /* Main ioctl() handler. 1175fd558d18SJames Chapman * Dispatch to tunnel or session helpers depending on the socket. 1176fd558d18SJames Chapman */ 1177fd558d18SJames Chapman static int pppol2tp_ioctl(struct socket *sock, unsigned int cmd, 1178fd558d18SJames Chapman unsigned long arg) 1179fd558d18SJames Chapman { 1180fd558d18SJames Chapman struct sock *sk = sock->sk; 1181fd558d18SJames Chapman struct l2tp_session *session; 1182fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 1183fd558d18SJames Chapman int err; 1184fd558d18SJames Chapman 1185fd558d18SJames Chapman if (!sk) 1186fd558d18SJames Chapman return 0; 1187fd558d18SJames Chapman 1188fd558d18SJames Chapman err = -EBADF; 1189fd558d18SJames Chapman if (sock_flag(sk, SOCK_DEAD) != 0) 1190fd558d18SJames Chapman goto end; 1191fd558d18SJames Chapman 1192fd558d18SJames Chapman err = -ENOTCONN; 1193fd558d18SJames Chapman if ((sk->sk_user_data == NULL) || 1194fd558d18SJames Chapman (!(sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND)))) 1195fd558d18SJames Chapman goto end; 1196fd558d18SJames Chapman 1197fd558d18SJames Chapman /* Get session context from the socket */ 1198fd558d18SJames Chapman err = -EBADF; 1199fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 1200fd558d18SJames Chapman if (session == NULL) 1201fd558d18SJames Chapman goto end; 1202fd558d18SJames Chapman 1203fd558d18SJames Chapman /* Special case: if session's session_id is zero, treat ioctl as a 1204fd558d18SJames Chapman * tunnel ioctl 1205fd558d18SJames Chapman */ 1206fd558d18SJames Chapman if ((session->session_id == 0) && 1207fd558d18SJames Chapman (session->peer_session_id == 0)) { 12087198c77aSGuillaume Nault tunnel = session->tunnel; 1209fd558d18SJames Chapman err = pppol2tp_tunnel_ioctl(tunnel, cmd, arg); 1210fd558d18SJames Chapman goto end_put_sess; 1211fd558d18SJames Chapman } 1212fd558d18SJames Chapman 1213fd558d18SJames Chapman err = pppol2tp_session_ioctl(session, cmd, arg); 1214fd558d18SJames Chapman 1215fd558d18SJames Chapman end_put_sess: 1216fd558d18SJames Chapman sock_put(sk); 1217fd558d18SJames Chapman end: 1218fd558d18SJames Chapman return err; 1219fd558d18SJames Chapman } 1220fd558d18SJames Chapman 1221fd558d18SJames Chapman /***************************************************************************** 1222fd558d18SJames Chapman * setsockopt() / getsockopt() support. 1223fd558d18SJames Chapman * 1224fd558d18SJames Chapman * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP 1225fd558d18SJames Chapman * sockets. In order to control kernel tunnel features, we allow userspace to 1226fd558d18SJames Chapman * create a special "tunnel" PPPoX socket which is used for control only. 1227fd558d18SJames Chapman * Tunnel PPPoX sockets have session_id == 0 and simply allow the user 1228fd558d18SJames Chapman * application to issue L2TP setsockopt(), getsockopt() and ioctl() calls. 1229fd558d18SJames Chapman *****************************************************************************/ 1230fd558d18SJames Chapman 1231fd558d18SJames Chapman /* Tunnel setsockopt() helper. 1232fd558d18SJames Chapman */ 1233fd558d18SJames Chapman static int pppol2tp_tunnel_setsockopt(struct sock *sk, 1234fd558d18SJames Chapman struct l2tp_tunnel *tunnel, 1235fd558d18SJames Chapman int optname, int val) 1236fd558d18SJames Chapman { 1237fd558d18SJames Chapman int err = 0; 1238fd558d18SJames Chapman 1239fd558d18SJames Chapman switch (optname) { 1240fd558d18SJames Chapman case PPPOL2TP_SO_DEBUG: 1241fd558d18SJames Chapman tunnel->debug = val; 1242fba40c63SAsbjørn Sloth Tønnesen l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: set debug=%x\n", 1243a4ca44faSJoe Perches tunnel->name, tunnel->debug); 1244fd558d18SJames Chapman break; 1245fd558d18SJames Chapman 1246fd558d18SJames Chapman default: 1247fd558d18SJames Chapman err = -ENOPROTOOPT; 1248fd558d18SJames Chapman break; 1249fd558d18SJames Chapman } 1250fd558d18SJames Chapman 1251fd558d18SJames Chapman return err; 1252fd558d18SJames Chapman } 1253fd558d18SJames Chapman 1254fd558d18SJames Chapman /* Session setsockopt helper. 1255fd558d18SJames Chapman */ 1256fd558d18SJames Chapman static int pppol2tp_session_setsockopt(struct sock *sk, 1257fd558d18SJames Chapman struct l2tp_session *session, 1258fd558d18SJames Chapman int optname, int val) 1259fd558d18SJames Chapman { 1260fd558d18SJames Chapman int err = 0; 1261fd558d18SJames Chapman 1262fd558d18SJames Chapman switch (optname) { 1263fd558d18SJames Chapman case PPPOL2TP_SO_RECVSEQ: 1264fd558d18SJames Chapman if ((val != 0) && (val != 1)) { 1265fd558d18SJames Chapman err = -EINVAL; 1266fd558d18SJames Chapman break; 1267fd558d18SJames Chapman } 12683f9b9770SAsbjørn Sloth Tønnesen session->recv_seq = !!val; 1269fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1270a4ca44faSJoe Perches "%s: set recv_seq=%d\n", 1271a4ca44faSJoe Perches session->name, session->recv_seq); 1272fd558d18SJames Chapman break; 1273fd558d18SJames Chapman 1274fd558d18SJames Chapman case PPPOL2TP_SO_SENDSEQ: 1275fd558d18SJames Chapman if ((val != 0) && (val != 1)) { 1276fd558d18SJames Chapman err = -EINVAL; 1277fd558d18SJames Chapman break; 1278fd558d18SJames Chapman } 12793f9b9770SAsbjørn Sloth Tønnesen session->send_seq = !!val; 1280fd558d18SJames Chapman { 1281ee40fb2eSGuillaume Nault struct pppox_sock *po = pppox_sk(sk); 1282ee40fb2eSGuillaume Nault 1283fd558d18SJames Chapman po->chan.hdrlen = val ? PPPOL2TP_L2TP_HDR_SIZE_SEQ : 1284fd558d18SJames Chapman PPPOL2TP_L2TP_HDR_SIZE_NOSEQ; 1285fd558d18SJames Chapman } 1286bb5016eaSGuillaume Nault l2tp_session_set_header_len(session, session->tunnel->version); 1287fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1288a4ca44faSJoe Perches "%s: set send_seq=%d\n", 1289a4ca44faSJoe Perches session->name, session->send_seq); 1290fd558d18SJames Chapman break; 1291fd558d18SJames Chapman 1292fd558d18SJames Chapman case PPPOL2TP_SO_LNSMODE: 1293fd558d18SJames Chapman if ((val != 0) && (val != 1)) { 1294fd558d18SJames Chapman err = -EINVAL; 1295fd558d18SJames Chapman break; 1296fd558d18SJames Chapman } 12973f9b9770SAsbjørn Sloth Tønnesen session->lns_mode = !!val; 1298fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1299a4ca44faSJoe Perches "%s: set lns_mode=%d\n", 1300a4ca44faSJoe Perches session->name, session->lns_mode); 1301fd558d18SJames Chapman break; 1302fd558d18SJames Chapman 1303fd558d18SJames Chapman case PPPOL2TP_SO_DEBUG: 1304fd558d18SJames Chapman session->debug = val; 1305fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: set debug=%x\n", 1306a4ca44faSJoe Perches session->name, session->debug); 1307fd558d18SJames Chapman break; 1308fd558d18SJames Chapman 1309fd558d18SJames Chapman case PPPOL2TP_SO_REORDERTO: 1310fd558d18SJames Chapman session->reorder_timeout = msecs_to_jiffies(val); 1311fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1312a4ca44faSJoe Perches "%s: set reorder_timeout=%d\n", 1313a4ca44faSJoe Perches session->name, session->reorder_timeout); 1314fd558d18SJames Chapman break; 1315fd558d18SJames Chapman 1316fd558d18SJames Chapman default: 1317fd558d18SJames Chapman err = -ENOPROTOOPT; 1318fd558d18SJames Chapman break; 1319fd558d18SJames Chapman } 1320fd558d18SJames Chapman 1321fd558d18SJames Chapman return err; 1322fd558d18SJames Chapman } 1323fd558d18SJames Chapman 1324fd558d18SJames Chapman /* Main setsockopt() entry point. 1325fd558d18SJames Chapman * Does API checks, then calls either the tunnel or session setsockopt 1326fd558d18SJames Chapman * handler, according to whether the PPPoL2TP socket is a for a regular 1327fd558d18SJames Chapman * session or the special tunnel type. 1328fd558d18SJames Chapman */ 1329fd558d18SJames Chapman static int pppol2tp_setsockopt(struct socket *sock, int level, int optname, 1330fd558d18SJames Chapman char __user *optval, unsigned int optlen) 1331fd558d18SJames Chapman { 1332fd558d18SJames Chapman struct sock *sk = sock->sk; 1333fd558d18SJames Chapman struct l2tp_session *session; 1334fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 1335fd558d18SJames Chapman int val; 1336fd558d18SJames Chapman int err; 1337fd558d18SJames Chapman 1338fd558d18SJames Chapman if (level != SOL_PPPOL2TP) 13393cf521f7SSasha Levin return -EINVAL; 1340fd558d18SJames Chapman 1341fd558d18SJames Chapman if (optlen < sizeof(int)) 1342fd558d18SJames Chapman return -EINVAL; 1343fd558d18SJames Chapman 1344fd558d18SJames Chapman if (get_user(val, (int __user *)optval)) 1345fd558d18SJames Chapman return -EFAULT; 1346fd558d18SJames Chapman 1347fd558d18SJames Chapman err = -ENOTCONN; 1348fd558d18SJames Chapman if (sk->sk_user_data == NULL) 1349fd558d18SJames Chapman goto end; 1350fd558d18SJames Chapman 1351fd558d18SJames Chapman /* Get session context from the socket */ 1352fd558d18SJames Chapman err = -EBADF; 1353fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 1354fd558d18SJames Chapman if (session == NULL) 1355fd558d18SJames Chapman goto end; 1356fd558d18SJames Chapman 1357fd558d18SJames Chapman /* Special case: if session_id == 0x0000, treat as operation on tunnel 1358fd558d18SJames Chapman */ 1359fd558d18SJames Chapman if ((session->session_id == 0) && 1360fd558d18SJames Chapman (session->peer_session_id == 0)) { 13617198c77aSGuillaume Nault tunnel = session->tunnel; 1362fd558d18SJames Chapman err = pppol2tp_tunnel_setsockopt(sk, tunnel, optname, val); 13637198c77aSGuillaume Nault } else { 1364fd558d18SJames Chapman err = pppol2tp_session_setsockopt(sk, session, optname, val); 13657198c77aSGuillaume Nault } 1366fd558d18SJames Chapman 1367fd558d18SJames Chapman sock_put(sk); 1368fd558d18SJames Chapman end: 1369fd558d18SJames Chapman return err; 1370fd558d18SJames Chapman } 1371fd558d18SJames Chapman 1372fd558d18SJames Chapman /* Tunnel getsockopt helper. Called with sock locked. 1373fd558d18SJames Chapman */ 1374fd558d18SJames Chapman static int pppol2tp_tunnel_getsockopt(struct sock *sk, 1375fd558d18SJames Chapman struct l2tp_tunnel *tunnel, 1376fd558d18SJames Chapman int optname, int *val) 1377fd558d18SJames Chapman { 1378fd558d18SJames Chapman int err = 0; 1379fd558d18SJames Chapman 1380fd558d18SJames Chapman switch (optname) { 1381fd558d18SJames Chapman case PPPOL2TP_SO_DEBUG: 1382fd558d18SJames Chapman *val = tunnel->debug; 1383fba40c63SAsbjørn Sloth Tønnesen l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: get debug=%x\n", 1384a4ca44faSJoe Perches tunnel->name, tunnel->debug); 1385fd558d18SJames Chapman break; 1386fd558d18SJames Chapman 1387fd558d18SJames Chapman default: 1388fd558d18SJames Chapman err = -ENOPROTOOPT; 1389fd558d18SJames Chapman break; 1390fd558d18SJames Chapman } 1391fd558d18SJames Chapman 1392fd558d18SJames Chapman return err; 1393fd558d18SJames Chapman } 1394fd558d18SJames Chapman 1395fd558d18SJames Chapman /* Session getsockopt helper. Called with sock locked. 1396fd558d18SJames Chapman */ 1397fd558d18SJames Chapman static int pppol2tp_session_getsockopt(struct sock *sk, 1398fd558d18SJames Chapman struct l2tp_session *session, 1399fd558d18SJames Chapman int optname, int *val) 1400fd558d18SJames Chapman { 1401fd558d18SJames Chapman int err = 0; 1402fd558d18SJames Chapman 1403fd558d18SJames Chapman switch (optname) { 1404fd558d18SJames Chapman case PPPOL2TP_SO_RECVSEQ: 1405fd558d18SJames Chapman *val = session->recv_seq; 1406fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1407fd558d18SJames Chapman "%s: get recv_seq=%d\n", session->name, *val); 1408fd558d18SJames Chapman break; 1409fd558d18SJames Chapman 1410fd558d18SJames Chapman case PPPOL2TP_SO_SENDSEQ: 1411fd558d18SJames Chapman *val = session->send_seq; 1412fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1413fd558d18SJames Chapman "%s: get send_seq=%d\n", session->name, *val); 1414fd558d18SJames Chapman break; 1415fd558d18SJames Chapman 1416fd558d18SJames Chapman case PPPOL2TP_SO_LNSMODE: 1417fd558d18SJames Chapman *val = session->lns_mode; 1418fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1419fd558d18SJames Chapman "%s: get lns_mode=%d\n", session->name, *val); 1420fd558d18SJames Chapman break; 1421fd558d18SJames Chapman 1422fd558d18SJames Chapman case PPPOL2TP_SO_DEBUG: 1423fd558d18SJames Chapman *val = session->debug; 1424fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, "%s: get debug=%d\n", 1425a4ca44faSJoe Perches session->name, *val); 1426fd558d18SJames Chapman break; 1427fd558d18SJames Chapman 1428fd558d18SJames Chapman case PPPOL2TP_SO_REORDERTO: 1429fd558d18SJames Chapman *val = (int) jiffies_to_msecs(session->reorder_timeout); 1430fba40c63SAsbjørn Sloth Tønnesen l2tp_info(session, L2TP_MSG_CONTROL, 1431fd558d18SJames Chapman "%s: get reorder_timeout=%d\n", session->name, *val); 1432fd558d18SJames Chapman break; 1433fd558d18SJames Chapman 1434fd558d18SJames Chapman default: 1435fd558d18SJames Chapman err = -ENOPROTOOPT; 1436fd558d18SJames Chapman } 1437fd558d18SJames Chapman 1438fd558d18SJames Chapman return err; 1439fd558d18SJames Chapman } 1440fd558d18SJames Chapman 1441fd558d18SJames Chapman /* Main getsockopt() entry point. 1442fd558d18SJames Chapman * Does API checks, then calls either the tunnel or session getsockopt 1443fd558d18SJames Chapman * handler, according to whether the PPPoX socket is a for a regular session 1444fd558d18SJames Chapman * or the special tunnel type. 1445fd558d18SJames Chapman */ 1446e3192690SJoe Perches static int pppol2tp_getsockopt(struct socket *sock, int level, int optname, 1447e3192690SJoe Perches char __user *optval, int __user *optlen) 1448fd558d18SJames Chapman { 1449fd558d18SJames Chapman struct sock *sk = sock->sk; 1450fd558d18SJames Chapman struct l2tp_session *session; 1451fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 1452fd558d18SJames Chapman int val, len; 1453fd558d18SJames Chapman int err; 1454fd558d18SJames Chapman 1455fd558d18SJames Chapman if (level != SOL_PPPOL2TP) 14563cf521f7SSasha Levin return -EINVAL; 1457fd558d18SJames Chapman 1458e3192690SJoe Perches if (get_user(len, optlen)) 1459fd558d18SJames Chapman return -EFAULT; 1460fd558d18SJames Chapman 1461fd558d18SJames Chapman len = min_t(unsigned int, len, sizeof(int)); 1462fd558d18SJames Chapman 1463fd558d18SJames Chapman if (len < 0) 1464fd558d18SJames Chapman return -EINVAL; 1465fd558d18SJames Chapman 1466fd558d18SJames Chapman err = -ENOTCONN; 1467fd558d18SJames Chapman if (sk->sk_user_data == NULL) 1468fd558d18SJames Chapman goto end; 1469fd558d18SJames Chapman 1470fd558d18SJames Chapman /* Get the session context */ 1471fd558d18SJames Chapman err = -EBADF; 1472fd558d18SJames Chapman session = pppol2tp_sock_to_session(sk); 1473fd558d18SJames Chapman if (session == NULL) 1474fd558d18SJames Chapman goto end; 1475fd558d18SJames Chapman 1476fd558d18SJames Chapman /* Special case: if session_id == 0x0000, treat as operation on tunnel */ 1477fd558d18SJames Chapman if ((session->session_id == 0) && 1478fd558d18SJames Chapman (session->peer_session_id == 0)) { 14797198c77aSGuillaume Nault tunnel = session->tunnel; 1480fd558d18SJames Chapman err = pppol2tp_tunnel_getsockopt(sk, tunnel, optname, &val); 1481321a52a3SGuillaume Nault if (err) 1482321a52a3SGuillaume Nault goto end_put_sess; 1483321a52a3SGuillaume Nault } else { 1484fd558d18SJames Chapman err = pppol2tp_session_getsockopt(sk, session, optname, &val); 1485321a52a3SGuillaume Nault if (err) 1486321a52a3SGuillaume Nault goto end_put_sess; 1487321a52a3SGuillaume Nault } 1488fd558d18SJames Chapman 1489fd558d18SJames Chapman err = -EFAULT; 1490e3192690SJoe Perches if (put_user(len, optlen)) 1491fd558d18SJames Chapman goto end_put_sess; 1492fd558d18SJames Chapman 1493fd558d18SJames Chapman if (copy_to_user((void __user *) optval, &val, len)) 1494fd558d18SJames Chapman goto end_put_sess; 1495fd558d18SJames Chapman 1496fd558d18SJames Chapman err = 0; 1497fd558d18SJames Chapman 1498fd558d18SJames Chapman end_put_sess: 1499fd558d18SJames Chapman sock_put(sk); 1500fd558d18SJames Chapman end: 1501fd558d18SJames Chapman return err; 1502fd558d18SJames Chapman } 1503fd558d18SJames Chapman 1504fd558d18SJames Chapman /***************************************************************************** 1505fd558d18SJames Chapman * /proc filesystem for debug 1506f7faffa3SJames Chapman * Since the original pppol2tp driver provided /proc/net/pppol2tp for 1507f7faffa3SJames Chapman * L2TPv2, we dump only L2TPv2 tunnels and sessions here. 1508fd558d18SJames Chapman *****************************************************************************/ 1509fd558d18SJames Chapman 1510fd558d18SJames Chapman static unsigned int pppol2tp_net_id; 1511fd558d18SJames Chapman 1512fd558d18SJames Chapman #ifdef CONFIG_PROC_FS 1513fd558d18SJames Chapman 1514fd558d18SJames Chapman struct pppol2tp_seq_data { 1515fd558d18SJames Chapman struct seq_net_private p; 1516fd558d18SJames Chapman int tunnel_idx; /* current tunnel */ 1517fd558d18SJames Chapman int session_idx; /* index of session within current tunnel */ 1518fd558d18SJames Chapman struct l2tp_tunnel *tunnel; 1519fd558d18SJames Chapman struct l2tp_session *session; /* NULL means get next tunnel */ 1520fd558d18SJames Chapman }; 1521fd558d18SJames Chapman 1522fd558d18SJames Chapman static void pppol2tp_next_tunnel(struct net *net, struct pppol2tp_seq_data *pd) 1523fd558d18SJames Chapman { 15240e0c3feeSGuillaume Nault /* Drop reference taken during previous invocation */ 15250e0c3feeSGuillaume Nault if (pd->tunnel) 15260e0c3feeSGuillaume Nault l2tp_tunnel_dec_refcount(pd->tunnel); 15270e0c3feeSGuillaume Nault 1528f7faffa3SJames Chapman for (;;) { 15290e0c3feeSGuillaume Nault pd->tunnel = l2tp_tunnel_get_nth(net, pd->tunnel_idx); 1530fd558d18SJames Chapman pd->tunnel_idx++; 1531f7faffa3SJames Chapman 15320e0c3feeSGuillaume Nault /* Only accept L2TPv2 tunnels */ 15330e0c3feeSGuillaume Nault if (!pd->tunnel || pd->tunnel->version == 2) 15340e0c3feeSGuillaume Nault return; 1535f7faffa3SJames Chapman 15360e0c3feeSGuillaume Nault l2tp_tunnel_dec_refcount(pd->tunnel); 1537f7faffa3SJames Chapman } 1538fd558d18SJames Chapman } 1539fd558d18SJames Chapman 1540fd558d18SJames Chapman static void pppol2tp_next_session(struct net *net, struct pppol2tp_seq_data *pd) 1541fd558d18SJames Chapman { 154283494407SGuillaume Nault /* Drop reference taken during previous invocation */ 154383494407SGuillaume Nault if (pd->session) 154483494407SGuillaume Nault l2tp_session_dec_refcount(pd->session); 154583494407SGuillaume Nault 1546a4346210SGuillaume Nault pd->session = l2tp_session_get_nth(pd->tunnel, pd->session_idx); 1547fd558d18SJames Chapman pd->session_idx++; 1548f7faffa3SJames Chapman 1549fd558d18SJames Chapman if (pd->session == NULL) { 1550fd558d18SJames Chapman pd->session_idx = 0; 1551fd558d18SJames Chapman pppol2tp_next_tunnel(net, pd); 1552fd558d18SJames Chapman } 1553fd558d18SJames Chapman } 1554fd558d18SJames Chapman 1555fd558d18SJames Chapman static void *pppol2tp_seq_start(struct seq_file *m, loff_t *offs) 1556fd558d18SJames Chapman { 1557fd558d18SJames Chapman struct pppol2tp_seq_data *pd = SEQ_START_TOKEN; 1558fd558d18SJames Chapman loff_t pos = *offs; 1559fd558d18SJames Chapman struct net *net; 1560fd558d18SJames Chapman 1561fd558d18SJames Chapman if (!pos) 1562fd558d18SJames Chapman goto out; 1563fd558d18SJames Chapman 1564fd558d18SJames Chapman BUG_ON(m->private == NULL); 1565fd558d18SJames Chapman pd = m->private; 1566fd558d18SJames Chapman net = seq_file_net(m); 1567fd558d18SJames Chapman 1568fd558d18SJames Chapman if (pd->tunnel == NULL) 1569fd558d18SJames Chapman pppol2tp_next_tunnel(net, pd); 1570fd558d18SJames Chapman else 1571fd558d18SJames Chapman pppol2tp_next_session(net, pd); 1572fd558d18SJames Chapman 1573fd558d18SJames Chapman /* NULL tunnel and session indicates end of list */ 1574fd558d18SJames Chapman if ((pd->tunnel == NULL) && (pd->session == NULL)) 1575fd558d18SJames Chapman pd = NULL; 1576fd558d18SJames Chapman 1577fd558d18SJames Chapman out: 1578fd558d18SJames Chapman return pd; 1579fd558d18SJames Chapman } 1580fd558d18SJames Chapman 1581fd558d18SJames Chapman static void *pppol2tp_seq_next(struct seq_file *m, void *v, loff_t *pos) 1582fd558d18SJames Chapman { 1583fd558d18SJames Chapman (*pos)++; 1584fd558d18SJames Chapman return NULL; 1585fd558d18SJames Chapman } 1586fd558d18SJames Chapman 1587fd558d18SJames Chapman static void pppol2tp_seq_stop(struct seq_file *p, void *v) 1588fd558d18SJames Chapman { 15890e0c3feeSGuillaume Nault struct pppol2tp_seq_data *pd = v; 15900e0c3feeSGuillaume Nault 15910e0c3feeSGuillaume Nault if (!pd || pd == SEQ_START_TOKEN) 15920e0c3feeSGuillaume Nault return; 15930e0c3feeSGuillaume Nault 159483494407SGuillaume Nault /* Drop reference taken by last invocation of pppol2tp_next_session() 159583494407SGuillaume Nault * or pppol2tp_next_tunnel(). 159683494407SGuillaume Nault */ 159783494407SGuillaume Nault if (pd->session) { 159883494407SGuillaume Nault l2tp_session_dec_refcount(pd->session); 159983494407SGuillaume Nault pd->session = NULL; 160083494407SGuillaume Nault } 16015411b618SGuillaume Nault if (pd->tunnel) { 16020e0c3feeSGuillaume Nault l2tp_tunnel_dec_refcount(pd->tunnel); 16035411b618SGuillaume Nault pd->tunnel = NULL; 16045411b618SGuillaume Nault } 1605fd558d18SJames Chapman } 1606fd558d18SJames Chapman 1607fd558d18SJames Chapman static void pppol2tp_seq_tunnel_show(struct seq_file *m, void *v) 1608fd558d18SJames Chapman { 1609fd558d18SJames Chapman struct l2tp_tunnel *tunnel = v; 1610fd558d18SJames Chapman 1611fd558d18SJames Chapman seq_printf(m, "\nTUNNEL '%s', %c %d\n", 1612fd558d18SJames Chapman tunnel->name, 1613fd558d18SJames Chapman (tunnel == tunnel->sock->sk_user_data) ? 'Y' : 'N', 1614fbea9e07SReshetova, Elena refcount_read(&tunnel->ref_count) - 1); 16157b7c0719STom Parkin seq_printf(m, " %08x %ld/%ld/%ld %ld/%ld/%ld\n", 1616fd558d18SJames Chapman tunnel->debug, 16177b7c0719STom Parkin atomic_long_read(&tunnel->stats.tx_packets), 16187b7c0719STom Parkin atomic_long_read(&tunnel->stats.tx_bytes), 16197b7c0719STom Parkin atomic_long_read(&tunnel->stats.tx_errors), 16207b7c0719STom Parkin atomic_long_read(&tunnel->stats.rx_packets), 16217b7c0719STom Parkin atomic_long_read(&tunnel->stats.rx_bytes), 16227b7c0719STom Parkin atomic_long_read(&tunnel->stats.rx_errors)); 1623fd558d18SJames Chapman } 1624fd558d18SJames Chapman 1625fd558d18SJames Chapman static void pppol2tp_seq_session_show(struct seq_file *m, void *v) 1626fd558d18SJames Chapman { 1627fd558d18SJames Chapman struct l2tp_session *session = v; 1628fd558d18SJames Chapman struct l2tp_tunnel *tunnel = session->tunnel; 1629ee40fb2eSGuillaume Nault unsigned char state; 1630ee40fb2eSGuillaume Nault char user_data_ok; 1631ee40fb2eSGuillaume Nault struct sock *sk; 1632fd558d18SJames Chapman u32 ip = 0; 1633fd558d18SJames Chapman u16 port = 0; 1634fd558d18SJames Chapman 1635fd558d18SJames Chapman if (tunnel->sock) { 1636fd558d18SJames Chapman struct inet_sock *inet = inet_sk(tunnel->sock); 1637fd558d18SJames Chapman ip = ntohl(inet->inet_saddr); 1638fd558d18SJames Chapman port = ntohs(inet->inet_sport); 1639fd558d18SJames Chapman } 1640fd558d18SJames Chapman 1641ee40fb2eSGuillaume Nault sk = pppol2tp_session_get_sock(session); 1642ee40fb2eSGuillaume Nault if (sk) { 1643ee40fb2eSGuillaume Nault state = sk->sk_state; 1644ee40fb2eSGuillaume Nault user_data_ok = (session == sk->sk_user_data) ? 'Y' : 'N'; 1645ee40fb2eSGuillaume Nault } else { 1646ee40fb2eSGuillaume Nault state = 0; 1647ee40fb2eSGuillaume Nault user_data_ok = 'N'; 1648ee40fb2eSGuillaume Nault } 1649ee40fb2eSGuillaume Nault 1650fd558d18SJames Chapman seq_printf(m, " SESSION '%s' %08X/%d %04X/%04X -> " 1651fd558d18SJames Chapman "%04X/%04X %d %c\n", 1652fd558d18SJames Chapman session->name, ip, port, 1653fd558d18SJames Chapman tunnel->tunnel_id, 1654fd558d18SJames Chapman session->session_id, 1655fd558d18SJames Chapman tunnel->peer_tunnel_id, 1656fd558d18SJames Chapman session->peer_session_id, 1657ee40fb2eSGuillaume Nault state, user_data_ok); 1658*789141b2SGuillaume Nault seq_printf(m, " 0/0/%c/%c/%s %08x %u\n", 1659fd558d18SJames Chapman session->recv_seq ? 'R' : '-', 1660fd558d18SJames Chapman session->send_seq ? 'S' : '-', 1661fd558d18SJames Chapman session->lns_mode ? "LNS" : "LAC", 1662fd558d18SJames Chapman session->debug, 1663fd558d18SJames Chapman jiffies_to_msecs(session->reorder_timeout)); 16647b7c0719STom Parkin seq_printf(m, " %hu/%hu %ld/%ld/%ld %ld/%ld/%ld\n", 1665fd558d18SJames Chapman session->nr, session->ns, 16667b7c0719STom Parkin atomic_long_read(&session->stats.tx_packets), 16677b7c0719STom Parkin atomic_long_read(&session->stats.tx_bytes), 16687b7c0719STom Parkin atomic_long_read(&session->stats.tx_errors), 16697b7c0719STom Parkin atomic_long_read(&session->stats.rx_packets), 16707b7c0719STom Parkin atomic_long_read(&session->stats.rx_bytes), 16717b7c0719STom Parkin atomic_long_read(&session->stats.rx_errors)); 16729345471bSJames Chapman 1673ee40fb2eSGuillaume Nault if (sk) { 1674ee40fb2eSGuillaume Nault struct pppox_sock *po = pppox_sk(sk); 1675ee40fb2eSGuillaume Nault 16769345471bSJames Chapman seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan)); 1677ee40fb2eSGuillaume Nault sock_put(sk); 1678ee40fb2eSGuillaume Nault } 1679fd558d18SJames Chapman } 1680fd558d18SJames Chapman 1681fd558d18SJames Chapman static int pppol2tp_seq_show(struct seq_file *m, void *v) 1682fd558d18SJames Chapman { 1683fd558d18SJames Chapman struct pppol2tp_seq_data *pd = v; 1684fd558d18SJames Chapman 1685fd558d18SJames Chapman /* display header on line 1 */ 1686fd558d18SJames Chapman if (v == SEQ_START_TOKEN) { 1687fd558d18SJames Chapman seq_puts(m, "PPPoL2TP driver info, " PPPOL2TP_DRV_VERSION "\n"); 1688fd558d18SJames Chapman seq_puts(m, "TUNNEL name, user-data-ok session-count\n"); 1689fd558d18SJames Chapman seq_puts(m, " debug tx-pkts/bytes/errs rx-pkts/bytes/errs\n"); 1690fd558d18SJames Chapman seq_puts(m, " SESSION name, addr/port src-tid/sid " 1691fd558d18SJames Chapman "dest-tid/sid state user-data-ok\n"); 1692fd558d18SJames Chapman seq_puts(m, " mtu/mru/rcvseq/sendseq/lns debug reorderto\n"); 1693fd558d18SJames Chapman seq_puts(m, " nr/ns tx-pkts/bytes/errs rx-pkts/bytes/errs\n"); 1694fd558d18SJames Chapman goto out; 1695fd558d18SJames Chapman } 1696fd558d18SJames Chapman 169783494407SGuillaume Nault if (!pd->session) 1698fd558d18SJames Chapman pppol2tp_seq_tunnel_show(m, pd->tunnel); 169983494407SGuillaume Nault else 1700fd558d18SJames Chapman pppol2tp_seq_session_show(m, pd->session); 1701fd558d18SJames Chapman 1702fd558d18SJames Chapman out: 1703fd558d18SJames Chapman return 0; 1704fd558d18SJames Chapman } 1705fd558d18SJames Chapman 1706fd558d18SJames Chapman static const struct seq_operations pppol2tp_seq_ops = { 1707fd558d18SJames Chapman .start = pppol2tp_seq_start, 1708fd558d18SJames Chapman .next = pppol2tp_seq_next, 1709fd558d18SJames Chapman .stop = pppol2tp_seq_stop, 1710fd558d18SJames Chapman .show = pppol2tp_seq_show, 1711fd558d18SJames Chapman }; 1712fd558d18SJames Chapman #endif /* CONFIG_PROC_FS */ 1713fd558d18SJames Chapman 1714fd558d18SJames Chapman /***************************************************************************** 1715fd558d18SJames Chapman * Network namespace 1716fd558d18SJames Chapman *****************************************************************************/ 1717fd558d18SJames Chapman 1718fd558d18SJames Chapman static __net_init int pppol2tp_init_net(struct net *net) 1719fd558d18SJames Chapman { 1720fd558d18SJames Chapman struct proc_dir_entry *pde; 1721fd558d18SJames Chapman int err = 0; 1722fd558d18SJames Chapman 1723c3506372SChristoph Hellwig pde = proc_create_net("pppol2tp", 0444, net->proc_net, 1724c3506372SChristoph Hellwig &pppol2tp_seq_ops, sizeof(struct pppol2tp_seq_data)); 1725fd558d18SJames Chapman if (!pde) { 1726fd558d18SJames Chapman err = -ENOMEM; 1727fd558d18SJames Chapman goto out; 1728fd558d18SJames Chapman } 1729fd558d18SJames Chapman 1730fd558d18SJames Chapman out: 1731fd558d18SJames Chapman return err; 1732fd558d18SJames Chapman } 1733fd558d18SJames Chapman 1734fd558d18SJames Chapman static __net_exit void pppol2tp_exit_net(struct net *net) 1735fd558d18SJames Chapman { 1736ece31ffdSGao feng remove_proc_entry("pppol2tp", net->proc_net); 1737fd558d18SJames Chapman } 1738fd558d18SJames Chapman 1739fd558d18SJames Chapman static struct pernet_operations pppol2tp_net_ops = { 1740fd558d18SJames Chapman .init = pppol2tp_init_net, 1741fd558d18SJames Chapman .exit = pppol2tp_exit_net, 1742fd558d18SJames Chapman .id = &pppol2tp_net_id, 1743fd558d18SJames Chapman }; 1744fd558d18SJames Chapman 1745fd558d18SJames Chapman /***************************************************************************** 1746fd558d18SJames Chapman * Init and cleanup 1747fd558d18SJames Chapman *****************************************************************************/ 1748fd558d18SJames Chapman 1749fd558d18SJames Chapman static const struct proto_ops pppol2tp_ops = { 1750fd558d18SJames Chapman .family = AF_PPPOX, 1751fd558d18SJames Chapman .owner = THIS_MODULE, 1752fd558d18SJames Chapman .release = pppol2tp_release, 1753fd558d18SJames Chapman .bind = sock_no_bind, 1754fd558d18SJames Chapman .connect = pppol2tp_connect, 1755fd558d18SJames Chapman .socketpair = sock_no_socketpair, 1756fd558d18SJames Chapman .accept = sock_no_accept, 1757fd558d18SJames Chapman .getname = pppol2tp_getname, 1758a11e1d43SLinus Torvalds .poll = datagram_poll, 1759fd558d18SJames Chapman .listen = sock_no_listen, 1760fd558d18SJames Chapman .shutdown = sock_no_shutdown, 1761fd558d18SJames Chapman .setsockopt = pppol2tp_setsockopt, 1762fd558d18SJames Chapman .getsockopt = pppol2tp_getsockopt, 1763fd558d18SJames Chapman .sendmsg = pppol2tp_sendmsg, 1764fd558d18SJames Chapman .recvmsg = pppol2tp_recvmsg, 1765fd558d18SJames Chapman .mmap = sock_no_mmap, 1766fd558d18SJames Chapman .ioctl = pppox_ioctl, 1767fd558d18SJames Chapman }; 1768fd558d18SJames Chapman 1769756e64a0SEric Dumazet static const struct pppox_proto pppol2tp_proto = { 1770fd558d18SJames Chapman .create = pppol2tp_create, 1771e1558a93SWei Yongjun .ioctl = pppol2tp_ioctl, 1772e1558a93SWei Yongjun .owner = THIS_MODULE, 1773fd558d18SJames Chapman }; 1774fd558d18SJames Chapman 1775309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 1776309795f4SJames Chapman 1777309795f4SJames Chapman static const struct l2tp_nl_cmd_ops pppol2tp_nl_cmd_ops = { 1778309795f4SJames Chapman .session_create = pppol2tp_session_create, 1779cf2f5c88STom Parkin .session_delete = l2tp_session_delete, 1780309795f4SJames Chapman }; 1781309795f4SJames Chapman 1782309795f4SJames Chapman #endif /* CONFIG_L2TP_V3 */ 1783309795f4SJames Chapman 1784fd558d18SJames Chapman static int __init pppol2tp_init(void) 1785fd558d18SJames Chapman { 1786fd558d18SJames Chapman int err; 1787fd558d18SJames Chapman 1788fd558d18SJames Chapman err = register_pernet_device(&pppol2tp_net_ops); 1789fd558d18SJames Chapman if (err) 1790fd558d18SJames Chapman goto out; 1791fd558d18SJames Chapman 1792fd558d18SJames Chapman err = proto_register(&pppol2tp_sk_proto, 0); 1793fd558d18SJames Chapman if (err) 1794fd558d18SJames Chapman goto out_unregister_pppol2tp_pernet; 1795fd558d18SJames Chapman 1796fd558d18SJames Chapman err = register_pppox_proto(PX_PROTO_OL2TP, &pppol2tp_proto); 1797fd558d18SJames Chapman if (err) 1798fd558d18SJames Chapman goto out_unregister_pppol2tp_proto; 1799fd558d18SJames Chapman 1800309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 1801309795f4SJames Chapman err = l2tp_nl_register_ops(L2TP_PWTYPE_PPP, &pppol2tp_nl_cmd_ops); 1802309795f4SJames Chapman if (err) 1803309795f4SJames Chapman goto out_unregister_pppox; 1804309795f4SJames Chapman #endif 1805309795f4SJames Chapman 1806a4ca44faSJoe Perches pr_info("PPPoL2TP kernel driver, %s\n", PPPOL2TP_DRV_VERSION); 1807fd558d18SJames Chapman 1808fd558d18SJames Chapman out: 1809fd558d18SJames Chapman return err; 1810309795f4SJames Chapman 1811309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 1812309795f4SJames Chapman out_unregister_pppox: 1813309795f4SJames Chapman unregister_pppox_proto(PX_PROTO_OL2TP); 1814309795f4SJames Chapman #endif 1815fd558d18SJames Chapman out_unregister_pppol2tp_proto: 1816fd558d18SJames Chapman proto_unregister(&pppol2tp_sk_proto); 1817fd558d18SJames Chapman out_unregister_pppol2tp_pernet: 1818fd558d18SJames Chapman unregister_pernet_device(&pppol2tp_net_ops); 1819fd558d18SJames Chapman goto out; 1820fd558d18SJames Chapman } 1821fd558d18SJames Chapman 1822fd558d18SJames Chapman static void __exit pppol2tp_exit(void) 1823fd558d18SJames Chapman { 1824309795f4SJames Chapman #ifdef CONFIG_L2TP_V3 1825309795f4SJames Chapman l2tp_nl_unregister_ops(L2TP_PWTYPE_PPP); 1826309795f4SJames Chapman #endif 1827fd558d18SJames Chapman unregister_pppox_proto(PX_PROTO_OL2TP); 1828fd558d18SJames Chapman proto_unregister(&pppol2tp_sk_proto); 1829fd558d18SJames Chapman unregister_pernet_device(&pppol2tp_net_ops); 1830fd558d18SJames Chapman } 1831fd558d18SJames Chapman 1832fd558d18SJames Chapman module_init(pppol2tp_init); 1833fd558d18SJames Chapman module_exit(pppol2tp_exit); 1834fd558d18SJames Chapman 1835fd558d18SJames Chapman MODULE_AUTHOR("James Chapman <jchapman@katalix.com>"); 1836fd558d18SJames Chapman MODULE_DESCRIPTION("PPP over L2TP over UDP"); 1837fd558d18SJames Chapman MODULE_LICENSE("GPL"); 1838fd558d18SJames Chapman MODULE_VERSION(PPPOL2TP_DRV_VERSION); 1839681b4d88SGuillaume Nault MODULE_ALIAS_NET_PF_PROTO(PF_PPPOX, PX_PROTO_OL2TP); 1840249ee819SGuillaume Nault MODULE_ALIAS_L2TP_PWTYPE(7); 1841