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