1 /*****************************************************************************
2 * Linux PPP over L2TP (PPPoX/PPPoL2TP) Sockets
4 * PPPoX --- Generic PPP encapsulation socket family
5 * PPPoL2TP --- PPP over L2TP (RFC 2661)
9 * Authors: James Chapman (jchapman@katalix.com)
11 * Based on original work by Martijn van Oosterhout <kleptog@svana.org>
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.
21 /* This driver handles only L2TP data frames; control frames are handled by a
22 * userspace application.
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.
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.
33 * Here's example userspace code to create a socket for sending/receiving data
34 * over an L2TP session:-
36 * struct sockaddr_pppol2tp sax;
40 * fd = socket(AF_PPPOX, SOCK_DGRAM, PX_PROTO_OL2TP);
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;
53 * session_fd = connect(fd, (struct sockaddr *)&sax, sizeof(sax));
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.
60 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
62 #include <linux/module.h>
63 #include <linux/string.h>
64 #include <linux/list.h>
65 #include <linux/uaccess.h>
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>
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>
81 #include <linux/udp.h>
82 #include <linux/if_pppox.h>
83 #include <linux/if_pppol2tp.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>
100 #include <net/inet_common.h>
102 #include <asm/byteorder.h>
103 #include <linux/atomic.h>
105 #include "l2tp_core.h"
107 #define PPPOL2TP_DRV_VERSION "V2.0"
109 /* Space for UDP, L2TP and PPP headers */
110 #define PPPOL2TP_HEADER_OVERHEAD 40
112 /* Number of bytes to build transmit L2TP headers.
113 * Unfortunately the size is different depending on whether sequence numbers
116 #define PPPOL2TP_L2TP_HDR_SIZE_SEQ 10
117 #define PPPOL2TP_L2TP_HDR_SIZE_NOSEQ 6
119 /* Private data of each session. This data lives at the end of struct
120 * l2tp_session, referenced via session->priv[].
122 struct pppol2tp_session {
123 int owner; /* pid that opened the socket */
125 struct sock *sock; /* Pointer to the session
127 struct sock *tunnel_sock; /* Pointer to the tunnel UDP
129 int flags; /* accessed by PPPIOCGFLAGS.
133 static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb);
135 static const struct ppp_channel_ops pppol2tp_chan_ops = {
136 .start_xmit = pppol2tp_xmit,
139 static const struct proto_ops pppol2tp_ops;
141 /* Helpers to obtain tunnel/session contexts from sockets.
143 static inline struct l2tp_session *pppol2tp_sock_to_session(struct sock *sk)
145 struct l2tp_session *session;
151 session = (struct l2tp_session *)(sk->sk_user_data);
152 if (session == NULL) {
157 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
163 /*****************************************************************************
164 * Receive data handling
165 *****************************************************************************/
167 static int pppol2tp_recv_payload_hook(struct sk_buff *skb)
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.
174 * Note that skb->data[] isn't dereferenced from a u16 ptr here since
175 * the field may be unaligned.
177 if (!pskb_may_pull(skb, 2))
180 if ((skb->data[0] == 0xff) && (skb->data[1] == 0x03))
186 /* Receive message. This is the recvmsg for the PPPoL2TP socket.
188 static int pppol2tp_recvmsg(struct kiocb *iocb, struct socket *sock,
189 struct msghdr *msg, size_t len,
194 struct sock *sk = sock->sk;
197 if (sk->sk_state & PPPOX_BOUND)
201 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
202 flags & MSG_DONTWAIT, &err);
208 else if (len < skb->len)
209 msg->msg_flags |= MSG_TRUNC;
211 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, len);
212 if (likely(err == 0))
220 static void pppol2tp_recv(struct l2tp_session *session, struct sk_buff *skb, int data_len)
222 struct pppol2tp_session *ps = l2tp_session_priv(session);
223 struct sock *sk = NULL;
225 /* If the socket is bound, send it in to PPP's input queue. Otherwise
226 * queue it on the session socket.
232 if (sk->sk_state & PPPOX_BOUND) {
233 struct pppox_sock *po;
234 l2tp_dbg(session, PPPOL2TP_MSG_DATA,
235 "%s: recv %d byte data frame, passing to ppp\n",
236 session->name, data_len);
238 /* We need to forget all info related to the L2TP packet
239 * gathered in the skb as we are going to reuse the same
240 * skb for the inner packet.
242 * - reset xfrm (IPSec) information as it applies to
243 * the outer L2TP packet and not to the inner one
244 * - release the dst to force a route lookup on the inner
245 * IP packet since skb->dst currently points to the dst
247 * - reset netfilter information as it doesn't apply
248 * to the inner packet either
255 ppp_input(&po->chan, skb);
257 l2tp_info(session, PPPOL2TP_MSG_DATA, "%s: socket not bound\n",
260 /* Not bound. Nothing we can do, so discard. */
261 atomic_long_inc(&session->stats.rx_errors);
268 l2tp_info(session, PPPOL2TP_MSG_DATA, "%s: no socket\n", session->name);
272 static void pppol2tp_session_sock_hold(struct l2tp_session *session)
274 struct pppol2tp_session *ps = l2tp_session_priv(session);
280 static void pppol2tp_session_sock_put(struct l2tp_session *session)
282 struct pppol2tp_session *ps = l2tp_session_priv(session);
288 /************************************************************************
290 ***********************************************************************/
292 /* This is the sendmsg for the PPPoL2TP pppol2tp_session socket. We come here
293 * when a user application does a sendmsg() on the session socket. L2TP and
294 * PPP headers must be inserted into the user's data.
296 static int pppol2tp_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *m,
299 static const unsigned char ppph[2] = { 0xff, 0x03 };
300 struct sock *sk = sock->sk;
303 struct l2tp_session *session;
304 struct l2tp_tunnel *tunnel;
305 struct pppol2tp_session *ps;
309 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
312 /* Get session and tunnel contexts */
314 session = pppol2tp_sock_to_session(sk);
318 ps = l2tp_session_priv(session);
319 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
323 uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0;
325 /* Allocate a socket buffer */
327 skb = sock_wmalloc(sk, NET_SKB_PAD + sizeof(struct iphdr) +
328 uhlen + session->hdr_len +
329 sizeof(ppph) + total_len,
332 goto error_put_sess_tun;
334 /* Reserve space for headers. */
335 skb_reserve(skb, NET_SKB_PAD);
336 skb_reset_network_header(skb);
337 skb_reserve(skb, sizeof(struct iphdr));
338 skb_reset_transport_header(skb);
339 skb_reserve(skb, uhlen);
342 skb->data[0] = ppph[0];
343 skb->data[1] = ppph[1];
346 /* Copy user data into skb */
347 error = memcpy_fromiovec(skb_put(skb, total_len), m->msg_iov,
351 goto error_put_sess_tun;
355 l2tp_xmit_skb(session, skb, session->hdr_len);
358 sock_put(ps->tunnel_sock);
364 sock_put(ps->tunnel_sock);
371 /* Transmit function called by generic PPP driver. Sends PPP frame
372 * over PPPoL2TP socket.
374 * This is almost the same as pppol2tp_sendmsg(), but rather than
375 * being called with a msghdr from userspace, it is called with a skb
378 * The supplied skb from ppp doesn't have enough headroom for the
379 * insertion of L2TP, UDP and IP headers so we need to allocate more
380 * headroom in the skb. This will create a cloned skb. But we must be
381 * careful in the error case because the caller will expect to free
382 * the skb it supplied, not our cloned skb. So we take care to always
383 * leave the original skb unfreed if we return an error.
385 static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb)
387 static const u8 ppph[2] = { 0xff, 0x03 };
388 struct sock *sk = (struct sock *) chan->private;
390 struct l2tp_session *session;
391 struct l2tp_tunnel *tunnel;
392 struct pppol2tp_session *ps;
395 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
398 /* Get session and tunnel contexts from the socket */
399 session = pppol2tp_sock_to_session(sk);
403 ps = l2tp_session_priv(session);
404 sk_tun = ps->tunnel_sock;
407 tunnel = l2tp_sock_to_tunnel(sk_tun);
411 uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0;
412 headroom = NET_SKB_PAD +
413 sizeof(struct iphdr) + /* IP header */
414 uhlen + /* UDP header (if L2TP_ENCAPTYPE_UDP) */
415 session->hdr_len + /* L2TP header */
416 sizeof(ppph); /* PPP header */
417 if (skb_cow_head(skb, headroom))
418 goto abort_put_sess_tun;
420 /* Setup PPP header */
421 __skb_push(skb, sizeof(ppph));
422 skb->data[0] = ppph[0];
423 skb->data[1] = ppph[1];
426 l2tp_xmit_skb(session, skb, session->hdr_len);
438 /* Free the original skb */
443 /*****************************************************************************
444 * Session (and tunnel control) socket create/destroy.
445 *****************************************************************************/
447 /* Called by l2tp_core when a session socket is being closed.
449 static void pppol2tp_session_close(struct l2tp_session *session)
451 struct pppol2tp_session *ps = l2tp_session_priv(session);
452 struct sock *sk = ps->sock;
453 struct socket *sock = sk->sk_socket;
455 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
459 inet_shutdown(sock, 2);
460 /* Don't let the session go away before our socket does */
461 l2tp_session_inc_refcount(session);
466 /* Really kill the session socket. (Called from sock_put() if
469 static void pppol2tp_session_destruct(struct sock *sk)
471 struct l2tp_session *session = sk->sk_user_data;
473 sk->sk_user_data = NULL;
474 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
475 l2tp_session_dec_refcount(session);
480 /* Called when the PPPoX socket (session) is closed.
482 static int pppol2tp_release(struct socket *sock)
484 struct sock *sk = sock->sk;
485 struct l2tp_session *session;
493 if (sock_flag(sk, SOCK_DEAD) != 0)
496 pppox_unbind_sock(sk);
498 /* Signal the death of the socket. */
499 sk->sk_state = PPPOX_DEAD;
503 session = pppol2tp_sock_to_session(sk);
505 /* Purge any queued data */
506 if (session != NULL) {
507 __l2tp_session_unhash(session);
508 l2tp_session_queue_purge(session);
511 skb_queue_purge(&sk->sk_receive_queue);
512 skb_queue_purge(&sk->sk_write_queue);
516 /* This will delete the session context via
517 * pppol2tp_session_destruct() if the socket's refcnt drops to
529 static struct proto pppol2tp_sk_proto = {
531 .owner = THIS_MODULE,
532 .obj_size = sizeof(struct pppox_sock),
535 static int pppol2tp_backlog_recv(struct sock *sk, struct sk_buff *skb)
539 rc = l2tp_udp_encap_recv(sk, skb);
543 return NET_RX_SUCCESS;
546 /* socket() handler. Initialize a new struct sock.
548 static int pppol2tp_create(struct net *net, struct socket *sock)
553 sk = sk_alloc(net, PF_PPPOX, GFP_KERNEL, &pppol2tp_sk_proto);
557 sock_init_data(sock, sk);
559 sock->state = SS_UNCONNECTED;
560 sock->ops = &pppol2tp_ops;
562 sk->sk_backlog_rcv = pppol2tp_backlog_recv;
563 sk->sk_protocol = PX_PROTO_OL2TP;
564 sk->sk_family = PF_PPPOX;
565 sk->sk_state = PPPOX_NONE;
566 sk->sk_type = SOCK_STREAM;
567 sk->sk_destruct = pppol2tp_session_destruct;
575 #if defined(CONFIG_L2TP_DEBUGFS) || defined(CONFIG_L2TP_DEBUGFS_MODULE)
576 static void pppol2tp_show(struct seq_file *m, void *arg)
578 struct l2tp_session *session = arg;
579 struct pppol2tp_session *ps = l2tp_session_priv(session);
582 struct pppox_sock *po = pppox_sk(ps->sock);
584 seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan));
589 /* connect() handler. Attach a PPPoX socket to a tunnel UDP socket
591 static int pppol2tp_connect(struct socket *sock, struct sockaddr *uservaddr,
592 int sockaddr_len, int flags)
594 struct sock *sk = sock->sk;
595 struct sockaddr_pppol2tp *sp = (struct sockaddr_pppol2tp *) uservaddr;
596 struct pppox_sock *po = pppox_sk(sk);
597 struct l2tp_session *session = NULL;
598 struct l2tp_tunnel *tunnel;
599 struct pppol2tp_session *ps;
600 struct dst_entry *dst;
601 struct l2tp_session_cfg cfg = { 0, };
603 u32 tunnel_id, peer_tunnel_id;
604 u32 session_id, peer_session_id;
611 if (sp->sa_protocol != PX_PROTO_OL2TP)
614 /* Check for already bound sockets */
616 if (sk->sk_state & PPPOX_CONNECTED)
619 /* We don't supporting rebinding anyway */
621 if (sk->sk_user_data)
622 goto end; /* socket is already attached */
624 /* Get params from socket address. Handle L2TPv2 and L2TPv3.
625 * This is nasty because there are different sockaddr_pppol2tp
626 * structs for L2TPv2, L2TPv3, over IPv4 and IPv6. We use
627 * the sockaddr size to determine which structure the caller
631 if (sockaddr_len == sizeof(struct sockaddr_pppol2tp)) {
632 fd = sp->pppol2tp.fd;
633 tunnel_id = sp->pppol2tp.s_tunnel;
634 peer_tunnel_id = sp->pppol2tp.d_tunnel;
635 session_id = sp->pppol2tp.s_session;
636 peer_session_id = sp->pppol2tp.d_session;
637 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3)) {
638 struct sockaddr_pppol2tpv3 *sp3 =
639 (struct sockaddr_pppol2tpv3 *) sp;
641 fd = sp3->pppol2tp.fd;
642 tunnel_id = sp3->pppol2tp.s_tunnel;
643 peer_tunnel_id = sp3->pppol2tp.d_tunnel;
644 session_id = sp3->pppol2tp.s_session;
645 peer_session_id = sp3->pppol2tp.d_session;
646 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpin6)) {
647 struct sockaddr_pppol2tpin6 *sp6 =
648 (struct sockaddr_pppol2tpin6 *) sp;
649 fd = sp6->pppol2tp.fd;
650 tunnel_id = sp6->pppol2tp.s_tunnel;
651 peer_tunnel_id = sp6->pppol2tp.d_tunnel;
652 session_id = sp6->pppol2tp.s_session;
653 peer_session_id = sp6->pppol2tp.d_session;
654 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3in6)) {
655 struct sockaddr_pppol2tpv3in6 *sp6 =
656 (struct sockaddr_pppol2tpv3in6 *) sp;
658 fd = sp6->pppol2tp.fd;
659 tunnel_id = sp6->pppol2tp.s_tunnel;
660 peer_tunnel_id = sp6->pppol2tp.d_tunnel;
661 session_id = sp6->pppol2tp.s_session;
662 peer_session_id = sp6->pppol2tp.d_session;
665 goto end; /* bad socket address */
668 /* Don't bind if tunnel_id is 0 */
673 tunnel = l2tp_tunnel_find(sock_net(sk), tunnel_id);
675 /* Special case: create tunnel context if session_id and
676 * peer_session_id is 0. Otherwise look up tunnel using supplied
679 if ((session_id == 0) && (peer_session_id == 0)) {
680 if (tunnel == NULL) {
681 struct l2tp_tunnel_cfg tcfg = {
682 .encap = L2TP_ENCAPTYPE_UDP,
685 error = l2tp_tunnel_create(sock_net(sk), fd, ver, tunnel_id, peer_tunnel_id, &tcfg, &tunnel);
690 /* Error if we can't find the tunnel */
695 /* Error if socket is not prepped */
696 if (tunnel->sock == NULL)
700 if (tunnel->recv_payload_hook == NULL)
701 tunnel->recv_payload_hook = pppol2tp_recv_payload_hook;
703 if (tunnel->peer_tunnel_id == 0)
704 tunnel->peer_tunnel_id = peer_tunnel_id;
706 /* Create session if it doesn't already exist. We handle the
707 * case where a session was previously created by the netlink
708 * interface by checking that the session doesn't already have
709 * a socket and its tunnel socket are what we expect. If any
710 * of those checks fail, return EEXIST to the caller.
712 session = l2tp_session_find(sock_net(sk), tunnel, session_id);
713 if (session == NULL) {
714 /* Default MTU must allow space for UDP/L2TP/PPP
717 cfg.mtu = cfg.mru = 1500 - PPPOL2TP_HEADER_OVERHEAD;
719 /* Allocate and initialize a new session context. */
720 session = l2tp_session_create(sizeof(struct pppol2tp_session),
722 peer_session_id, &cfg);
723 if (session == NULL) {
728 ps = l2tp_session_priv(session);
730 if (ps->sock != NULL)
733 /* consistency checks */
734 if (ps->tunnel_sock != tunnel->sock)
738 /* Associate session with its PPPoL2TP socket */
739 ps = l2tp_session_priv(session);
740 ps->owner = current->pid;
742 ps->tunnel_sock = tunnel->sock;
744 session->recv_skb = pppol2tp_recv;
745 session->session_close = pppol2tp_session_close;
746 #if defined(CONFIG_L2TP_DEBUGFS) || defined(CONFIG_L2TP_DEBUGFS_MODULE)
747 session->show = pppol2tp_show;
750 /* We need to know each time a skb is dropped from the reorder
753 session->ref = pppol2tp_session_sock_hold;
754 session->deref = pppol2tp_session_sock_put;
756 /* If PMTU discovery was enabled, use the MTU that was discovered */
757 dst = sk_dst_get(sk);
759 u32 pmtu = dst_mtu(__sk_dst_get(sk));
761 session->mtu = session->mru = pmtu -
762 PPPOL2TP_HEADER_OVERHEAD;
766 /* Special case: if source & dest session_id == 0x0000, this
767 * socket is being created to manage the tunnel. Just set up
768 * the internal context for use by ioctl() and sockopt()
771 if ((session->session_id == 0) &&
772 (session->peer_session_id == 0)) {
777 /* The only header we need to worry about is the L2TP
778 * header. This size is different depending on whether
779 * sequence numbers are enabled for the data channel.
781 po->chan.hdrlen = PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
783 po->chan.private = sk;
784 po->chan.ops = &pppol2tp_chan_ops;
785 po->chan.mtu = session->mtu;
787 error = ppp_register_net_channel(sock_net(sk), &po->chan);
792 /* This is how we get the session context from the socket. */
793 sk->sk_user_data = session;
794 sk->sk_state = PPPOX_CONNECTED;
795 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: created\n",
804 #ifdef CONFIG_L2TP_V3
806 /* Called when creating sessions via the netlink interface.
808 static int pppol2tp_session_create(struct net *net, u32 tunnel_id, u32 session_id, u32 peer_session_id, struct l2tp_session_cfg *cfg)
811 struct l2tp_tunnel *tunnel;
812 struct l2tp_session *session;
813 struct pppol2tp_session *ps;
815 tunnel = l2tp_tunnel_find(net, tunnel_id);
817 /* Error if we can't find the tunnel */
822 /* Error if tunnel socket is not prepped */
823 if (tunnel->sock == NULL)
826 /* Check that this session doesn't already exist */
828 session = l2tp_session_find(net, tunnel, session_id);
832 /* Default MTU values. */
834 cfg->mtu = 1500 - PPPOL2TP_HEADER_OVERHEAD;
838 /* Allocate and initialize a new session context. */
840 session = l2tp_session_create(sizeof(struct pppol2tp_session),
842 peer_session_id, cfg);
846 ps = l2tp_session_priv(session);
847 ps->tunnel_sock = tunnel->sock;
849 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: created\n",
858 #endif /* CONFIG_L2TP_V3 */
860 /* getname() support.
862 static int pppol2tp_getname(struct socket *sock, struct sockaddr *uaddr,
863 int *usockaddr_len, int peer)
867 struct l2tp_session *session;
868 struct l2tp_tunnel *tunnel;
869 struct sock *sk = sock->sk;
870 struct inet_sock *inet;
871 struct pppol2tp_session *pls;
876 if (sk->sk_state != PPPOX_CONNECTED)
880 session = pppol2tp_sock_to_session(sk);
884 pls = l2tp_session_priv(session);
885 tunnel = l2tp_sock_to_tunnel(pls->tunnel_sock);
886 if (tunnel == NULL) {
891 inet = inet_sk(tunnel->sock);
892 if ((tunnel->version == 2) && (tunnel->sock->sk_family == AF_INET)) {
893 struct sockaddr_pppol2tp sp;
896 sp.sa_family = AF_PPPOX;
897 sp.sa_protocol = PX_PROTO_OL2TP;
898 sp.pppol2tp.fd = tunnel->fd;
899 sp.pppol2tp.pid = pls->owner;
900 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
901 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
902 sp.pppol2tp.s_session = session->session_id;
903 sp.pppol2tp.d_session = session->peer_session_id;
904 sp.pppol2tp.addr.sin_family = AF_INET;
905 sp.pppol2tp.addr.sin_port = inet->inet_dport;
906 sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr;
907 memcpy(uaddr, &sp, len);
908 #if IS_ENABLED(CONFIG_IPV6)
909 } else if ((tunnel->version == 2) &&
910 (tunnel->sock->sk_family == AF_INET6)) {
911 struct sockaddr_pppol2tpin6 sp;
915 sp.sa_family = AF_PPPOX;
916 sp.sa_protocol = PX_PROTO_OL2TP;
917 sp.pppol2tp.fd = tunnel->fd;
918 sp.pppol2tp.pid = pls->owner;
919 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
920 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
921 sp.pppol2tp.s_session = session->session_id;
922 sp.pppol2tp.d_session = session->peer_session_id;
923 sp.pppol2tp.addr.sin6_family = AF_INET6;
924 sp.pppol2tp.addr.sin6_port = inet->inet_dport;
925 memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr,
926 sizeof(tunnel->sock->sk_v6_daddr));
927 memcpy(uaddr, &sp, len);
928 } else if ((tunnel->version == 3) &&
929 (tunnel->sock->sk_family == AF_INET6)) {
930 struct sockaddr_pppol2tpv3in6 sp;
934 sp.sa_family = AF_PPPOX;
935 sp.sa_protocol = PX_PROTO_OL2TP;
936 sp.pppol2tp.fd = tunnel->fd;
937 sp.pppol2tp.pid = pls->owner;
938 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
939 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
940 sp.pppol2tp.s_session = session->session_id;
941 sp.pppol2tp.d_session = session->peer_session_id;
942 sp.pppol2tp.addr.sin6_family = AF_INET6;
943 sp.pppol2tp.addr.sin6_port = inet->inet_dport;
944 memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr,
945 sizeof(tunnel->sock->sk_v6_daddr));
946 memcpy(uaddr, &sp, len);
948 } else if (tunnel->version == 3) {
949 struct sockaddr_pppol2tpv3 sp;
952 sp.sa_family = AF_PPPOX;
953 sp.sa_protocol = PX_PROTO_OL2TP;
954 sp.pppol2tp.fd = tunnel->fd;
955 sp.pppol2tp.pid = pls->owner;
956 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
957 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
958 sp.pppol2tp.s_session = session->session_id;
959 sp.pppol2tp.d_session = session->peer_session_id;
960 sp.pppol2tp.addr.sin_family = AF_INET;
961 sp.pppol2tp.addr.sin_port = inet->inet_dport;
962 sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr;
963 memcpy(uaddr, &sp, len);
966 *usockaddr_len = len;
968 sock_put(pls->tunnel_sock);
977 /****************************************************************************
980 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
981 * sockets. However, in order to control kernel tunnel features, we allow
982 * userspace to create a special "tunnel" PPPoX socket which is used for
983 * control only. Tunnel PPPoX sockets have session_id == 0 and simply allow
984 * the user application to issue L2TP setsockopt(), getsockopt() and ioctl()
986 ****************************************************************************/
988 static void pppol2tp_copy_stats(struct pppol2tp_ioc_stats *dest,
989 struct l2tp_stats *stats)
991 dest->tx_packets = atomic_long_read(&stats->tx_packets);
992 dest->tx_bytes = atomic_long_read(&stats->tx_bytes);
993 dest->tx_errors = atomic_long_read(&stats->tx_errors);
994 dest->rx_packets = atomic_long_read(&stats->rx_packets);
995 dest->rx_bytes = atomic_long_read(&stats->rx_bytes);
996 dest->rx_seq_discards = atomic_long_read(&stats->rx_seq_discards);
997 dest->rx_oos_packets = atomic_long_read(&stats->rx_oos_packets);
998 dest->rx_errors = atomic_long_read(&stats->rx_errors);
1001 /* Session ioctl helper.
1003 static int pppol2tp_session_ioctl(struct l2tp_session *session,
1004 unsigned int cmd, unsigned long arg)
1009 int val = (int) arg;
1010 struct pppol2tp_session *ps = l2tp_session_priv(session);
1011 struct l2tp_tunnel *tunnel = session->tunnel;
1012 struct pppol2tp_ioc_stats stats;
1014 l2tp_dbg(session, PPPOL2TP_MSG_CONTROL,
1015 "%s: pppol2tp_session_ioctl(cmd=%#x, arg=%#lx)\n",
1016 session->name, cmd, arg);
1024 if (!(sk->sk_state & PPPOX_CONNECTED))
1028 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1030 ifr.ifr_mtu = session->mtu;
1031 if (copy_to_user((void __user *) arg, &ifr, sizeof(struct ifreq)))
1034 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: get mtu=%d\n",
1035 session->name, session->mtu);
1041 if (!(sk->sk_state & PPPOX_CONNECTED))
1045 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1048 session->mtu = ifr.ifr_mtu;
1050 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: set mtu=%d\n",
1051 session->name, session->mtu);
1057 if (!(sk->sk_state & PPPOX_CONNECTED))
1061 if (put_user(session->mru, (int __user *) arg))
1064 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: get mru=%d\n",
1065 session->name, session->mru);
1071 if (!(sk->sk_state & PPPOX_CONNECTED))
1075 if (get_user(val, (int __user *) arg))
1079 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: set mru=%d\n",
1080 session->name, session->mru);
1086 if (put_user(ps->flags, (int __user *) arg))
1089 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: get flags=%d\n",
1090 session->name, ps->flags);
1096 if (get_user(val, (int __user *) arg))
1099 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: set flags=%d\n",
1100 session->name, ps->flags);
1104 case PPPIOCGL2TPSTATS:
1106 if (!(sk->sk_state & PPPOX_CONNECTED))
1109 memset(&stats, 0, sizeof(stats));
1110 stats.tunnel_id = tunnel->tunnel_id;
1111 stats.session_id = session->session_id;
1112 pppol2tp_copy_stats(&stats, &session->stats);
1113 if (copy_to_user((void __user *) arg, &stats,
1116 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: get L2TP stats\n",
1131 /* Tunnel ioctl helper.
1133 * Note the special handling for PPPIOCGL2TPSTATS below. If the ioctl data
1134 * specifies a session_id, the session ioctl handler is called. This allows an
1135 * application to retrieve session stats via a tunnel socket.
1137 static int pppol2tp_tunnel_ioctl(struct l2tp_tunnel *tunnel,
1138 unsigned int cmd, unsigned long arg)
1142 struct pppol2tp_ioc_stats stats;
1144 l2tp_dbg(tunnel, PPPOL2TP_MSG_CONTROL,
1145 "%s: pppol2tp_tunnel_ioctl(cmd=%#x, arg=%#lx)\n",
1146 tunnel->name, cmd, arg);
1152 case PPPIOCGL2TPSTATS:
1154 if (!(sk->sk_state & PPPOX_CONNECTED))
1157 if (copy_from_user(&stats, (void __user *) arg,
1162 if (stats.session_id != 0) {
1163 /* resend to session ioctl handler */
1164 struct l2tp_session *session =
1165 l2tp_session_find(sock_net(sk), tunnel, stats.session_id);
1166 if (session != NULL)
1167 err = pppol2tp_session_ioctl(session, cmd, arg);
1173 stats.using_ipsec = (sk->sk_policy[0] || sk->sk_policy[1]) ? 1 : 0;
1175 pppol2tp_copy_stats(&stats, &tunnel->stats);
1176 if (copy_to_user((void __user *) arg, &stats, sizeof(stats))) {
1180 l2tp_info(tunnel, PPPOL2TP_MSG_CONTROL, "%s: get L2TP stats\n",
1195 /* Main ioctl() handler.
1196 * Dispatch to tunnel or session helpers depending on the socket.
1198 static int pppol2tp_ioctl(struct socket *sock, unsigned int cmd,
1201 struct sock *sk = sock->sk;
1202 struct l2tp_session *session;
1203 struct l2tp_tunnel *tunnel;
1204 struct pppol2tp_session *ps;
1211 if (sock_flag(sk, SOCK_DEAD) != 0)
1215 if ((sk->sk_user_data == NULL) ||
1216 (!(sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND))))
1219 /* Get session context from the socket */
1221 session = pppol2tp_sock_to_session(sk);
1222 if (session == NULL)
1225 /* Special case: if session's session_id is zero, treat ioctl as a
1228 ps = l2tp_session_priv(session);
1229 if ((session->session_id == 0) &&
1230 (session->peer_session_id == 0)) {
1232 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1236 err = pppol2tp_tunnel_ioctl(tunnel, cmd, arg);
1237 sock_put(ps->tunnel_sock);
1241 err = pppol2tp_session_ioctl(session, cmd, arg);
1249 /*****************************************************************************
1250 * setsockopt() / getsockopt() support.
1252 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
1253 * sockets. In order to control kernel tunnel features, we allow userspace to
1254 * create a special "tunnel" PPPoX socket which is used for control only.
1255 * Tunnel PPPoX sockets have session_id == 0 and simply allow the user
1256 * application to issue L2TP setsockopt(), getsockopt() and ioctl() calls.
1257 *****************************************************************************/
1259 /* Tunnel setsockopt() helper.
1261 static int pppol2tp_tunnel_setsockopt(struct sock *sk,
1262 struct l2tp_tunnel *tunnel,
1263 int optname, int val)
1268 case PPPOL2TP_SO_DEBUG:
1269 tunnel->debug = val;
1270 l2tp_info(tunnel, PPPOL2TP_MSG_CONTROL, "%s: set debug=%x\n",
1271 tunnel->name, tunnel->debug);
1282 /* Session setsockopt helper.
1284 static int pppol2tp_session_setsockopt(struct sock *sk,
1285 struct l2tp_session *session,
1286 int optname, int val)
1289 struct pppol2tp_session *ps = l2tp_session_priv(session);
1292 case PPPOL2TP_SO_RECVSEQ:
1293 if ((val != 0) && (val != 1)) {
1297 session->recv_seq = val ? -1 : 0;
1298 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1299 "%s: set recv_seq=%d\n",
1300 session->name, session->recv_seq);
1303 case PPPOL2TP_SO_SENDSEQ:
1304 if ((val != 0) && (val != 1)) {
1308 session->send_seq = val ? -1 : 0;
1310 struct sock *ssk = ps->sock;
1311 struct pppox_sock *po = pppox_sk(ssk);
1312 po->chan.hdrlen = val ? PPPOL2TP_L2TP_HDR_SIZE_SEQ :
1313 PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
1315 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1316 "%s: set send_seq=%d\n",
1317 session->name, session->send_seq);
1320 case PPPOL2TP_SO_LNSMODE:
1321 if ((val != 0) && (val != 1)) {
1325 session->lns_mode = val ? -1 : 0;
1326 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1327 "%s: set lns_mode=%d\n",
1328 session->name, session->lns_mode);
1331 case PPPOL2TP_SO_DEBUG:
1332 session->debug = val;
1333 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: set debug=%x\n",
1334 session->name, session->debug);
1337 case PPPOL2TP_SO_REORDERTO:
1338 session->reorder_timeout = msecs_to_jiffies(val);
1339 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1340 "%s: set reorder_timeout=%d\n",
1341 session->name, session->reorder_timeout);
1352 /* Main setsockopt() entry point.
1353 * Does API checks, then calls either the tunnel or session setsockopt
1354 * handler, according to whether the PPPoL2TP socket is a for a regular
1355 * session or the special tunnel type.
1357 static int pppol2tp_setsockopt(struct socket *sock, int level, int optname,
1358 char __user *optval, unsigned int optlen)
1360 struct sock *sk = sock->sk;
1361 struct l2tp_session *session;
1362 struct l2tp_tunnel *tunnel;
1363 struct pppol2tp_session *ps;
1367 if (level != SOL_PPPOL2TP)
1368 return udp_prot.setsockopt(sk, level, optname, optval, optlen);
1370 if (optlen < sizeof(int))
1373 if (get_user(val, (int __user *)optval))
1377 if (sk->sk_user_data == NULL)
1380 /* Get session context from the socket */
1382 session = pppol2tp_sock_to_session(sk);
1383 if (session == NULL)
1386 /* Special case: if session_id == 0x0000, treat as operation on tunnel
1388 ps = l2tp_session_priv(session);
1389 if ((session->session_id == 0) &&
1390 (session->peer_session_id == 0)) {
1392 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1396 err = pppol2tp_tunnel_setsockopt(sk, tunnel, optname, val);
1397 sock_put(ps->tunnel_sock);
1399 err = pppol2tp_session_setsockopt(sk, session, optname, val);
1409 /* Tunnel getsockopt helper. Called with sock locked.
1411 static int pppol2tp_tunnel_getsockopt(struct sock *sk,
1412 struct l2tp_tunnel *tunnel,
1413 int optname, int *val)
1418 case PPPOL2TP_SO_DEBUG:
1419 *val = tunnel->debug;
1420 l2tp_info(tunnel, PPPOL2TP_MSG_CONTROL, "%s: get debug=%x\n",
1421 tunnel->name, tunnel->debug);
1432 /* Session getsockopt helper. Called with sock locked.
1434 static int pppol2tp_session_getsockopt(struct sock *sk,
1435 struct l2tp_session *session,
1436 int optname, int *val)
1441 case PPPOL2TP_SO_RECVSEQ:
1442 *val = session->recv_seq;
1443 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1444 "%s: get recv_seq=%d\n", session->name, *val);
1447 case PPPOL2TP_SO_SENDSEQ:
1448 *val = session->send_seq;
1449 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1450 "%s: get send_seq=%d\n", session->name, *val);
1453 case PPPOL2TP_SO_LNSMODE:
1454 *val = session->lns_mode;
1455 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1456 "%s: get lns_mode=%d\n", session->name, *val);
1459 case PPPOL2TP_SO_DEBUG:
1460 *val = session->debug;
1461 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: get debug=%d\n",
1462 session->name, *val);
1465 case PPPOL2TP_SO_REORDERTO:
1466 *val = (int) jiffies_to_msecs(session->reorder_timeout);
1467 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1468 "%s: get reorder_timeout=%d\n", session->name, *val);
1478 /* Main getsockopt() entry point.
1479 * Does API checks, then calls either the tunnel or session getsockopt
1480 * handler, according to whether the PPPoX socket is a for a regular session
1481 * or the special tunnel type.
1483 static int pppol2tp_getsockopt(struct socket *sock, int level, int optname,
1484 char __user *optval, int __user *optlen)
1486 struct sock *sk = sock->sk;
1487 struct l2tp_session *session;
1488 struct l2tp_tunnel *tunnel;
1491 struct pppol2tp_session *ps;
1493 if (level != SOL_PPPOL2TP)
1494 return udp_prot.getsockopt(sk, level, optname, optval, optlen);
1496 if (get_user(len, optlen))
1499 len = min_t(unsigned int, len, sizeof(int));
1505 if (sk->sk_user_data == NULL)
1508 /* Get the session context */
1510 session = pppol2tp_sock_to_session(sk);
1511 if (session == NULL)
1514 /* Special case: if session_id == 0x0000, treat as operation on tunnel */
1515 ps = l2tp_session_priv(session);
1516 if ((session->session_id == 0) &&
1517 (session->peer_session_id == 0)) {
1519 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1523 err = pppol2tp_tunnel_getsockopt(sk, tunnel, optname, &val);
1524 sock_put(ps->tunnel_sock);
1526 err = pppol2tp_session_getsockopt(sk, session, optname, &val);
1529 if (put_user(len, optlen))
1532 if (copy_to_user((void __user *) optval, &val, len))
1543 /*****************************************************************************
1544 * /proc filesystem for debug
1545 * Since the original pppol2tp driver provided /proc/net/pppol2tp for
1546 * L2TPv2, we dump only L2TPv2 tunnels and sessions here.
1547 *****************************************************************************/
1549 static unsigned int pppol2tp_net_id;
1551 #ifdef CONFIG_PROC_FS
1553 struct pppol2tp_seq_data {
1554 struct seq_net_private p;
1555 int tunnel_idx; /* current tunnel */
1556 int session_idx; /* index of session within current tunnel */
1557 struct l2tp_tunnel *tunnel;
1558 struct l2tp_session *session; /* NULL means get next tunnel */
1561 static void pppol2tp_next_tunnel(struct net *net, struct pppol2tp_seq_data *pd)
1564 pd->tunnel = l2tp_tunnel_find_nth(net, pd->tunnel_idx);
1567 if (pd->tunnel == NULL)
1570 /* Ignore L2TPv3 tunnels */
1571 if (pd->tunnel->version < 3)
1576 static void pppol2tp_next_session(struct net *net, struct pppol2tp_seq_data *pd)
1578 pd->session = l2tp_session_find_nth(pd->tunnel, pd->session_idx);
1581 if (pd->session == NULL) {
1582 pd->session_idx = 0;
1583 pppol2tp_next_tunnel(net, pd);
1587 static void *pppol2tp_seq_start(struct seq_file *m, loff_t *offs)
1589 struct pppol2tp_seq_data *pd = SEQ_START_TOKEN;
1596 BUG_ON(m->private == NULL);
1598 net = seq_file_net(m);
1600 if (pd->tunnel == NULL)
1601 pppol2tp_next_tunnel(net, pd);
1603 pppol2tp_next_session(net, pd);
1605 /* NULL tunnel and session indicates end of list */
1606 if ((pd->tunnel == NULL) && (pd->session == NULL))
1613 static void *pppol2tp_seq_next(struct seq_file *m, void *v, loff_t *pos)
1619 static void pppol2tp_seq_stop(struct seq_file *p, void *v)
1624 static void pppol2tp_seq_tunnel_show(struct seq_file *m, void *v)
1626 struct l2tp_tunnel *tunnel = v;
1628 seq_printf(m, "\nTUNNEL '%s', %c %d\n",
1630 (tunnel == tunnel->sock->sk_user_data) ? 'Y' : 'N',
1631 atomic_read(&tunnel->ref_count) - 1);
1632 seq_printf(m, " %08x %ld/%ld/%ld %ld/%ld/%ld\n",
1634 atomic_long_read(&tunnel->stats.tx_packets),
1635 atomic_long_read(&tunnel->stats.tx_bytes),
1636 atomic_long_read(&tunnel->stats.tx_errors),
1637 atomic_long_read(&tunnel->stats.rx_packets),
1638 atomic_long_read(&tunnel->stats.rx_bytes),
1639 atomic_long_read(&tunnel->stats.rx_errors));
1642 static void pppol2tp_seq_session_show(struct seq_file *m, void *v)
1644 struct l2tp_session *session = v;
1645 struct l2tp_tunnel *tunnel = session->tunnel;
1646 struct pppol2tp_session *ps = l2tp_session_priv(session);
1647 struct pppox_sock *po = pppox_sk(ps->sock);
1652 struct inet_sock *inet = inet_sk(tunnel->sock);
1653 ip = ntohl(inet->inet_saddr);
1654 port = ntohs(inet->inet_sport);
1657 seq_printf(m, " SESSION '%s' %08X/%d %04X/%04X -> "
1658 "%04X/%04X %d %c\n",
1659 session->name, ip, port,
1661 session->session_id,
1662 tunnel->peer_tunnel_id,
1663 session->peer_session_id,
1665 (session == ps->sock->sk_user_data) ?
1667 seq_printf(m, " %d/%d/%c/%c/%s %08x %u\n",
1668 session->mtu, session->mru,
1669 session->recv_seq ? 'R' : '-',
1670 session->send_seq ? 'S' : '-',
1671 session->lns_mode ? "LNS" : "LAC",
1673 jiffies_to_msecs(session->reorder_timeout));
1674 seq_printf(m, " %hu/%hu %ld/%ld/%ld %ld/%ld/%ld\n",
1675 session->nr, session->ns,
1676 atomic_long_read(&session->stats.tx_packets),
1677 atomic_long_read(&session->stats.tx_bytes),
1678 atomic_long_read(&session->stats.tx_errors),
1679 atomic_long_read(&session->stats.rx_packets),
1680 atomic_long_read(&session->stats.rx_bytes),
1681 atomic_long_read(&session->stats.rx_errors));
1684 seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan));
1687 static int pppol2tp_seq_show(struct seq_file *m, void *v)
1689 struct pppol2tp_seq_data *pd = v;
1691 /* display header on line 1 */
1692 if (v == SEQ_START_TOKEN) {
1693 seq_puts(m, "PPPoL2TP driver info, " PPPOL2TP_DRV_VERSION "\n");
1694 seq_puts(m, "TUNNEL name, user-data-ok session-count\n");
1695 seq_puts(m, " debug tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
1696 seq_puts(m, " SESSION name, addr/port src-tid/sid "
1697 "dest-tid/sid state user-data-ok\n");
1698 seq_puts(m, " mtu/mru/rcvseq/sendseq/lns debug reorderto\n");
1699 seq_puts(m, " nr/ns tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
1703 /* Show the tunnel or session context.
1705 if (pd->session == NULL)
1706 pppol2tp_seq_tunnel_show(m, pd->tunnel);
1708 pppol2tp_seq_session_show(m, pd->session);
1714 static const struct seq_operations pppol2tp_seq_ops = {
1715 .start = pppol2tp_seq_start,
1716 .next = pppol2tp_seq_next,
1717 .stop = pppol2tp_seq_stop,
1718 .show = pppol2tp_seq_show,
1721 /* Called when our /proc file is opened. We allocate data for use when
1722 * iterating our tunnel / session contexts and store it in the private
1723 * data of the seq_file.
1725 static int pppol2tp_proc_open(struct inode *inode, struct file *file)
1727 return seq_open_net(inode, file, &pppol2tp_seq_ops,
1728 sizeof(struct pppol2tp_seq_data));
1731 static const struct file_operations pppol2tp_proc_fops = {
1732 .owner = THIS_MODULE,
1733 .open = pppol2tp_proc_open,
1735 .llseek = seq_lseek,
1736 .release = seq_release_net,
1739 #endif /* CONFIG_PROC_FS */
1741 /*****************************************************************************
1743 *****************************************************************************/
1745 static __net_init int pppol2tp_init_net(struct net *net)
1747 struct proc_dir_entry *pde;
1750 pde = proc_create("pppol2tp", S_IRUGO, net->proc_net,
1751 &pppol2tp_proc_fops);
1761 static __net_exit void pppol2tp_exit_net(struct net *net)
1763 remove_proc_entry("pppol2tp", net->proc_net);
1766 static struct pernet_operations pppol2tp_net_ops = {
1767 .init = pppol2tp_init_net,
1768 .exit = pppol2tp_exit_net,
1769 .id = &pppol2tp_net_id,
1772 /*****************************************************************************
1774 *****************************************************************************/
1776 static const struct proto_ops pppol2tp_ops = {
1778 .owner = THIS_MODULE,
1779 .release = pppol2tp_release,
1780 .bind = sock_no_bind,
1781 .connect = pppol2tp_connect,
1782 .socketpair = sock_no_socketpair,
1783 .accept = sock_no_accept,
1784 .getname = pppol2tp_getname,
1785 .poll = datagram_poll,
1786 .listen = sock_no_listen,
1787 .shutdown = sock_no_shutdown,
1788 .setsockopt = pppol2tp_setsockopt,
1789 .getsockopt = pppol2tp_getsockopt,
1790 .sendmsg = pppol2tp_sendmsg,
1791 .recvmsg = pppol2tp_recvmsg,
1792 .mmap = sock_no_mmap,
1793 .ioctl = pppox_ioctl,
1796 static const struct pppox_proto pppol2tp_proto = {
1797 .create = pppol2tp_create,
1798 .ioctl = pppol2tp_ioctl,
1799 .owner = THIS_MODULE,
1802 #ifdef CONFIG_L2TP_V3
1804 static const struct l2tp_nl_cmd_ops pppol2tp_nl_cmd_ops = {
1805 .session_create = pppol2tp_session_create,
1806 .session_delete = l2tp_session_delete,
1809 #endif /* CONFIG_L2TP_V3 */
1811 static int __init pppol2tp_init(void)
1815 err = register_pernet_device(&pppol2tp_net_ops);
1819 err = proto_register(&pppol2tp_sk_proto, 0);
1821 goto out_unregister_pppol2tp_pernet;
1823 err = register_pppox_proto(PX_PROTO_OL2TP, &pppol2tp_proto);
1825 goto out_unregister_pppol2tp_proto;
1827 #ifdef CONFIG_L2TP_V3
1828 err = l2tp_nl_register_ops(L2TP_PWTYPE_PPP, &pppol2tp_nl_cmd_ops);
1830 goto out_unregister_pppox;
1833 pr_info("PPPoL2TP kernel driver, %s\n", PPPOL2TP_DRV_VERSION);
1838 #ifdef CONFIG_L2TP_V3
1839 out_unregister_pppox:
1840 unregister_pppox_proto(PX_PROTO_OL2TP);
1842 out_unregister_pppol2tp_proto:
1843 proto_unregister(&pppol2tp_sk_proto);
1844 out_unregister_pppol2tp_pernet:
1845 unregister_pernet_device(&pppol2tp_net_ops);
1849 static void __exit pppol2tp_exit(void)
1851 #ifdef CONFIG_L2TP_V3
1852 l2tp_nl_unregister_ops(L2TP_PWTYPE_PPP);
1854 unregister_pppox_proto(PX_PROTO_OL2TP);
1855 proto_unregister(&pppol2tp_sk_proto);
1856 unregister_pernet_device(&pppol2tp_net_ops);
1859 module_init(pppol2tp_init);
1860 module_exit(pppol2tp_exit);
1862 MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
1863 MODULE_DESCRIPTION("PPP over L2TP over UDP");
1864 MODULE_LICENSE("GPL");
1865 MODULE_VERSION(PPPOL2TP_DRV_VERSION);
1866 MODULE_ALIAS("pppox-proto-" __stringify(PX_PROTO_OL2TP));