Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 2 | /***************************************************************************** |
| 3 | * Linux PPP over L2TP (PPPoX/PPPoL2TP) Sockets |
| 4 | * |
| 5 | * PPPoX --- Generic PPP encapsulation socket family |
| 6 | * PPPoL2TP --- PPP over L2TP (RFC 2661) |
| 7 | * |
| 8 | * Version: 2.0.0 |
| 9 | * |
| 10 | * Authors: James Chapman (jchapman@katalix.com) |
| 11 | * |
| 12 | * Based on original work by Martijn van Oosterhout <kleptog@svana.org> |
| 13 | * |
| 14 | * License: |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 15 | */ |
| 16 | |
| 17 | /* This driver handles only L2TP data frames; control frames are handled by a |
| 18 | * userspace application. |
| 19 | * |
| 20 | * To send data in an L2TP session, userspace opens a PPPoL2TP socket and |
| 21 | * attaches it to a bound UDP socket with local tunnel_id / session_id and |
| 22 | * peer tunnel_id / session_id set. Data can then be sent or received using |
| 23 | * regular socket sendmsg() / recvmsg() calls. Kernel parameters of the socket |
| 24 | * can be read or modified using ioctl() or [gs]etsockopt() calls. |
| 25 | * |
| 26 | * When a PPPoL2TP socket is connected with local and peer session_id values |
| 27 | * zero, the socket is treated as a special tunnel management socket. |
| 28 | * |
| 29 | * Here's example userspace code to create a socket for sending/receiving data |
| 30 | * over an L2TP session:- |
| 31 | * |
| 32 | * struct sockaddr_pppol2tp sax; |
| 33 | * int fd; |
| 34 | * int session_fd; |
| 35 | * |
| 36 | * fd = socket(AF_PPPOX, SOCK_DGRAM, PX_PROTO_OL2TP); |
| 37 | * |
| 38 | * sax.sa_family = AF_PPPOX; |
| 39 | * sax.sa_protocol = PX_PROTO_OL2TP; |
| 40 | * sax.pppol2tp.fd = tunnel_fd; // bound UDP socket |
| 41 | * sax.pppol2tp.addr.sin_addr.s_addr = addr->sin_addr.s_addr; |
| 42 | * sax.pppol2tp.addr.sin_port = addr->sin_port; |
| 43 | * sax.pppol2tp.addr.sin_family = AF_INET; |
| 44 | * sax.pppol2tp.s_tunnel = tunnel_id; |
| 45 | * sax.pppol2tp.s_session = session_id; |
| 46 | * sax.pppol2tp.d_tunnel = peer_tunnel_id; |
| 47 | * sax.pppol2tp.d_session = peer_session_id; |
| 48 | * |
| 49 | * session_fd = connect(fd, (struct sockaddr *)&sax, sizeof(sax)); |
| 50 | * |
| 51 | * A pppd plugin that allows PPP traffic to be carried over L2TP using |
| 52 | * this driver is available from the OpenL2TP project at |
| 53 | * http://openl2tp.sourceforge.net. |
| 54 | */ |
| 55 | |
Joe Perches | a4ca44f | 2012-05-16 09:55:56 +0000 | [diff] [blame] | 56 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 57 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 58 | #include <linux/module.h> |
| 59 | #include <linux/string.h> |
| 60 | #include <linux/list.h> |
| 61 | #include <linux/uaccess.h> |
| 62 | |
| 63 | #include <linux/kernel.h> |
| 64 | #include <linux/spinlock.h> |
| 65 | #include <linux/kthread.h> |
| 66 | #include <linux/sched.h> |
| 67 | #include <linux/slab.h> |
| 68 | #include <linux/errno.h> |
| 69 | #include <linux/jiffies.h> |
| 70 | |
| 71 | #include <linux/netdevice.h> |
| 72 | #include <linux/net.h> |
| 73 | #include <linux/inetdevice.h> |
| 74 | #include <linux/skbuff.h> |
| 75 | #include <linux/init.h> |
| 76 | #include <linux/ip.h> |
| 77 | #include <linux/udp.h> |
| 78 | #include <linux/if_pppox.h> |
| 79 | #include <linux/if_pppol2tp.h> |
| 80 | #include <net/sock.h> |
| 81 | #include <linux/ppp_channel.h> |
| 82 | #include <linux/ppp_defs.h> |
Paul Mackerras | 4b32da2b | 2012-03-04 12:56:55 +0000 | [diff] [blame] | 83 | #include <linux/ppp-ioctl.h> |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 84 | #include <linux/file.h> |
| 85 | #include <linux/hash.h> |
| 86 | #include <linux/sort.h> |
| 87 | #include <linux/proc_fs.h> |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 88 | #include <linux/l2tp.h> |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 89 | #include <linux/nsproxy.h> |
| 90 | #include <net/net_namespace.h> |
| 91 | #include <net/netns/generic.h> |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 92 | #include <net/ip.h> |
| 93 | #include <net/udp.h> |
Tom Parkin | cf2f5c8 | 2013-03-19 06:11:21 +0000 | [diff] [blame] | 94 | #include <net/inet_common.h> |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 95 | |
| 96 | #include <asm/byteorder.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 97 | #include <linux/atomic.h> |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 98 | |
| 99 | #include "l2tp_core.h" |
| 100 | |
| 101 | #define PPPOL2TP_DRV_VERSION "V2.0" |
| 102 | |
| 103 | /* Space for UDP, L2TP and PPP headers */ |
| 104 | #define PPPOL2TP_HEADER_OVERHEAD 40 |
| 105 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 106 | /* Number of bytes to build transmit L2TP headers. |
| 107 | * Unfortunately the size is different depending on whether sequence numbers |
| 108 | * are enabled. |
| 109 | */ |
| 110 | #define PPPOL2TP_L2TP_HDR_SIZE_SEQ 10 |
| 111 | #define PPPOL2TP_L2TP_HDR_SIZE_NOSEQ 6 |
| 112 | |
| 113 | /* Private data of each session. This data lives at the end of struct |
| 114 | * l2tp_session, referenced via session->priv[]. |
| 115 | */ |
| 116 | struct pppol2tp_session { |
| 117 | int owner; /* pid that opened the socket */ |
| 118 | |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 119 | struct mutex sk_lock; /* Protects .sk */ |
Tom Parkin | 20dcb11 | 2020-07-22 17:32:06 +0100 | [diff] [blame] | 120 | struct sock __rcu *sk; /* Pointer to the session PPPoX socket */ |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 121 | struct sock *__sk; /* Copy of .sk, for cleanup */ |
| 122 | struct rcu_head rcu; /* For asynchronous release */ |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 123 | }; |
| 124 | |
| 125 | static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb); |
| 126 | |
stephen hemminger | d7100da | 2010-08-04 07:34:36 +0000 | [diff] [blame] | 127 | static const struct ppp_channel_ops pppol2tp_chan_ops = { |
| 128 | .start_xmit = pppol2tp_xmit, |
| 129 | }; |
| 130 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 131 | static const struct proto_ops pppol2tp_ops; |
| 132 | |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 133 | /* Retrieves the pppol2tp socket associated to a session. |
| 134 | * A reference is held on the returned socket, so this function must be paired |
| 135 | * with sock_put(). |
| 136 | */ |
| 137 | static struct sock *pppol2tp_session_get_sock(struct l2tp_session *session) |
| 138 | { |
| 139 | struct pppol2tp_session *ps = l2tp_session_priv(session); |
| 140 | struct sock *sk; |
| 141 | |
| 142 | rcu_read_lock(); |
| 143 | sk = rcu_dereference(ps->sk); |
| 144 | if (sk) |
| 145 | sock_hold(sk); |
| 146 | rcu_read_unlock(); |
| 147 | |
| 148 | return sk; |
| 149 | } |
| 150 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 151 | /* Helpers to obtain tunnel/session contexts from sockets. |
| 152 | */ |
| 153 | static inline struct l2tp_session *pppol2tp_sock_to_session(struct sock *sk) |
| 154 | { |
| 155 | struct l2tp_session *session; |
| 156 | |
Tom Parkin | 0febc7b | 2020-07-23 12:29:50 +0100 | [diff] [blame] | 157 | if (!sk) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 158 | return NULL; |
| 159 | |
| 160 | sock_hold(sk); |
| 161 | session = (struct l2tp_session *)(sk->sk_user_data); |
Tom Parkin | 0febc7b | 2020-07-23 12:29:50 +0100 | [diff] [blame] | 162 | if (!session) { |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 163 | sock_put(sk); |
| 164 | goto out; |
| 165 | } |
Tom Parkin | 1aa646a | 2020-07-24 16:31:53 +0100 | [diff] [blame] | 166 | if (WARN_ON(session->magic != L2TP_SESSION_MAGIC)) { |
| 167 | session = NULL; |
| 168 | sock_put(sk); |
| 169 | goto out; |
| 170 | } |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 171 | |
| 172 | out: |
| 173 | return session; |
| 174 | } |
| 175 | |
| 176 | /***************************************************************************** |
| 177 | * Receive data handling |
| 178 | *****************************************************************************/ |
| 179 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 180 | /* Receive message. This is the recvmsg for the PPPoL2TP socket. |
| 181 | */ |
Ying Xue | 1b78414 | 2015-03-02 15:37:48 +0800 | [diff] [blame] | 182 | static int pppol2tp_recvmsg(struct socket *sock, struct msghdr *msg, |
| 183 | size_t len, int flags) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 184 | { |
| 185 | int err; |
| 186 | struct sk_buff *skb; |
| 187 | struct sock *sk = sock->sk; |
| 188 | |
| 189 | err = -EIO; |
| 190 | if (sk->sk_state & PPPOX_BOUND) |
| 191 | goto end; |
| 192 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 193 | err = 0; |
| 194 | skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT, |
| 195 | flags & MSG_DONTWAIT, &err); |
| 196 | if (!skb) |
| 197 | goto end; |
| 198 | |
| 199 | if (len > skb->len) |
| 200 | len = skb->len; |
| 201 | else if (len < skb->len) |
| 202 | msg->msg_flags |= MSG_TRUNC; |
| 203 | |
David S. Miller | 51f3d02 | 2014-11-05 16:46:40 -0500 | [diff] [blame] | 204 | err = skb_copy_datagram_msg(skb, 0, msg, len); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 205 | if (likely(err == 0)) |
| 206 | err = len; |
| 207 | |
| 208 | kfree_skb(skb); |
| 209 | end: |
| 210 | return err; |
| 211 | } |
| 212 | |
| 213 | static void pppol2tp_recv(struct l2tp_session *session, struct sk_buff *skb, int data_len) |
| 214 | { |
| 215 | struct pppol2tp_session *ps = l2tp_session_priv(session); |
| 216 | struct sock *sk = NULL; |
| 217 | |
| 218 | /* If the socket is bound, send it in to PPP's input queue. Otherwise |
| 219 | * queue it on the session socket. |
| 220 | */ |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 221 | rcu_read_lock(); |
| 222 | sk = rcu_dereference(ps->sk); |
Tom Parkin | 0febc7b | 2020-07-23 12:29:50 +0100 | [diff] [blame] | 223 | if (!sk) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 224 | goto no_sock; |
| 225 | |
Guillaume Nault | 2b139e6 | 2018-07-25 14:53:33 +0200 | [diff] [blame] | 226 | /* If the first two bytes are 0xFF03, consider that it is the PPP's |
| 227 | * Address and Control fields and skip them. The L2TP module has always |
| 228 | * worked this way, although, in theory, the use of these fields should |
Zheng Yongjun | 7f553ff | 2021-06-07 23:01:37 +0800 | [diff] [blame] | 229 | * be negotiated and handled at the PPP layer. These fields are |
Guillaume Nault | 2b139e6 | 2018-07-25 14:53:33 +0200 | [diff] [blame] | 230 | * constant: 0xFF is the All-Stations Address and 0x03 the Unnumbered |
| 231 | * Information command with Poll/Final bit set to zero (RFC 1662). |
| 232 | */ |
| 233 | if (pskb_may_pull(skb, 2) && skb->data[0] == PPP_ALLSTATIONS && |
| 234 | skb->data[1] == PPP_UI) |
| 235 | skb_pull(skb, 2); |
| 236 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 237 | if (sk->sk_state & PPPOX_BOUND) { |
| 238 | struct pppox_sock *po; |
Guillaume Nault | 98f40b3 | 2015-12-29 13:06:59 +0100 | [diff] [blame] | 239 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 240 | po = pppox_sk(sk); |
| 241 | ppp_input(&po->chan, skb); |
| 242 | } else { |
Guillaume Nault | 9e9cb62 | 2014-03-06 11:15:10 +0100 | [diff] [blame] | 243 | if (sock_queue_rcv_skb(sk, skb) < 0) { |
| 244 | atomic_long_inc(&session->stats.rx_errors); |
| 245 | kfree_skb(skb); |
| 246 | } |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 247 | } |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 248 | rcu_read_unlock(); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 249 | |
| 250 | return; |
| 251 | |
| 252 | no_sock: |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 253 | rcu_read_unlock(); |
Tom Parkin | 5ee759c | 2020-08-22 15:59:03 +0100 | [diff] [blame] | 254 | pr_warn_ratelimited("%s: no socket in recv\n", session->name); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 255 | kfree_skb(skb); |
| 256 | } |
| 257 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 258 | /************************************************************************ |
| 259 | * Transmit handling |
| 260 | ***********************************************************************/ |
| 261 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 262 | /* This is the sendmsg for the PPPoL2TP pppol2tp_session socket. We come here |
| 263 | * when a user application does a sendmsg() on the session socket. L2TP and |
| 264 | * PPP headers must be inserted into the user's data. |
| 265 | */ |
Ying Xue | 1b78414 | 2015-03-02 15:37:48 +0800 | [diff] [blame] | 266 | static int pppol2tp_sendmsg(struct socket *sock, struct msghdr *m, |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 267 | size_t total_len) |
| 268 | { |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 269 | struct sock *sk = sock->sk; |
| 270 | struct sk_buff *skb; |
| 271 | int error; |
| 272 | struct l2tp_session *session; |
| 273 | struct l2tp_tunnel *tunnel; |
James Chapman | 0d76751 | 2010-04-02 06:19:00 +0000 | [diff] [blame] | 274 | int uhlen; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 275 | |
| 276 | error = -ENOTCONN; |
| 277 | if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED)) |
| 278 | goto error; |
| 279 | |
| 280 | /* Get session and tunnel contexts */ |
| 281 | error = -EBADF; |
| 282 | session = pppol2tp_sock_to_session(sk); |
Tom Parkin | 0febc7b | 2020-07-23 12:29:50 +0100 | [diff] [blame] | 283 | if (!session) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 284 | goto error; |
| 285 | |
Guillaume Nault | 7198c77 | 2017-11-11 06:06:31 +0900 | [diff] [blame] | 286 | tunnel = session->tunnel; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 287 | |
James Chapman | 0d76751 | 2010-04-02 06:19:00 +0000 | [diff] [blame] | 288 | uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0; |
| 289 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 290 | /* Allocate a socket buffer */ |
| 291 | error = -ENOMEM; |
| 292 | skb = sock_wmalloc(sk, NET_SKB_PAD + sizeof(struct iphdr) + |
James Chapman | 0d76751 | 2010-04-02 06:19:00 +0000 | [diff] [blame] | 293 | uhlen + session->hdr_len + |
Gao Feng | 54c151d | 2016-08-22 22:50:02 +0800 | [diff] [blame] | 294 | 2 + total_len, /* 2 bytes for PPP_ALLSTATIONS & PPP_UI */ |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 295 | 0, GFP_KERNEL); |
| 296 | if (!skb) |
Guillaume Nault | 7198c77 | 2017-11-11 06:06:31 +0900 | [diff] [blame] | 297 | goto error_put_sess; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 298 | |
| 299 | /* Reserve space for headers. */ |
| 300 | skb_reserve(skb, NET_SKB_PAD); |
| 301 | skb_reset_network_header(skb); |
| 302 | skb_reserve(skb, sizeof(struct iphdr)); |
| 303 | skb_reset_transport_header(skb); |
James Chapman | 0d76751 | 2010-04-02 06:19:00 +0000 | [diff] [blame] | 304 | skb_reserve(skb, uhlen); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 305 | |
| 306 | /* Add PPP header */ |
Gao Feng | 54c151d | 2016-08-22 22:50:02 +0800 | [diff] [blame] | 307 | skb->data[0] = PPP_ALLSTATIONS; |
| 308 | skb->data[1] = PPP_UI; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 309 | skb_put(skb, 2); |
| 310 | |
| 311 | /* Copy user data into skb */ |
Al Viro | 6ce8e9c | 2014-04-06 21:25:44 -0400 | [diff] [blame] | 312 | error = memcpy_from_msg(skb_put(skb, total_len), m, total_len); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 313 | if (error < 0) { |
| 314 | kfree_skb(skb); |
Guillaume Nault | 7198c77 | 2017-11-11 06:06:31 +0900 | [diff] [blame] | 315 | goto error_put_sess; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 316 | } |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 317 | |
Eric Dumazet | 455cc32 | 2013-10-10 06:30:09 -0700 | [diff] [blame] | 318 | local_bh_disable(); |
Tom Parkin | efe0527 | 2020-09-03 09:54:47 +0100 | [diff] [blame] | 319 | l2tp_xmit_skb(session, skb); |
Eric Dumazet | 455cc32 | 2013-10-10 06:30:09 -0700 | [diff] [blame] | 320 | local_bh_enable(); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 321 | |
Guillaume Nault | 8b82547e33e | 2013-03-01 05:02:02 +0000 | [diff] [blame] | 322 | sock_put(sk); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 323 | |
Guillaume Nault | a6f79d0 | 2013-06-12 16:07:36 +0200 | [diff] [blame] | 324 | return total_len; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 325 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 326 | error_put_sess: |
| 327 | sock_put(sk); |
| 328 | error: |
| 329 | return error; |
| 330 | } |
| 331 | |
| 332 | /* Transmit function called by generic PPP driver. Sends PPP frame |
| 333 | * over PPPoL2TP socket. |
| 334 | * |
| 335 | * This is almost the same as pppol2tp_sendmsg(), but rather than |
| 336 | * being called with a msghdr from userspace, it is called with a skb |
| 337 | * from the kernel. |
| 338 | * |
| 339 | * The supplied skb from ppp doesn't have enough headroom for the |
| 340 | * insertion of L2TP, UDP and IP headers so we need to allocate more |
| 341 | * headroom in the skb. This will create a cloned skb. But we must be |
| 342 | * careful in the error case because the caller will expect to free |
| 343 | * the skb it supplied, not our cloned skb. So we take care to always |
| 344 | * leave the original skb unfreed if we return an error. |
| 345 | */ |
| 346 | static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb) |
| 347 | { |
Tom Parkin | b71a61c | 2020-07-22 17:32:05 +0100 | [diff] [blame] | 348 | struct sock *sk = (struct sock *)chan->private; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 349 | struct l2tp_session *session; |
| 350 | struct l2tp_tunnel *tunnel; |
Eric Dumazet | 09df57c | 2011-10-07 05:45:57 +0000 | [diff] [blame] | 351 | int uhlen, headroom; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 352 | |
| 353 | if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED)) |
| 354 | goto abort; |
| 355 | |
| 356 | /* Get session and tunnel contexts from the socket */ |
| 357 | session = pppol2tp_sock_to_session(sk); |
Tom Parkin | 0febc7b | 2020-07-23 12:29:50 +0100 | [diff] [blame] | 358 | if (!session) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 359 | goto abort; |
| 360 | |
Guillaume Nault | 7198c77 | 2017-11-11 06:06:31 +0900 | [diff] [blame] | 361 | tunnel = session->tunnel; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 362 | |
Eric Dumazet | 09df57c | 2011-10-07 05:45:57 +0000 | [diff] [blame] | 363 | uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0; |
| 364 | headroom = NET_SKB_PAD + |
| 365 | sizeof(struct iphdr) + /* IP header */ |
| 366 | uhlen + /* UDP header (if L2TP_ENCAPTYPE_UDP) */ |
| 367 | session->hdr_len + /* L2TP header */ |
Gao Feng | 54c151d | 2016-08-22 22:50:02 +0800 | [diff] [blame] | 368 | 2; /* 2 bytes for PPP_ALLSTATIONS & PPP_UI */ |
Eric Dumazet | 09df57c | 2011-10-07 05:45:57 +0000 | [diff] [blame] | 369 | if (skb_cow_head(skb, headroom)) |
Guillaume Nault | 7198c77 | 2017-11-11 06:06:31 +0900 | [diff] [blame] | 370 | goto abort_put_sess; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 371 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 372 | /* Setup PPP header */ |
Gao Feng | 54c151d | 2016-08-22 22:50:02 +0800 | [diff] [blame] | 373 | __skb_push(skb, 2); |
| 374 | skb->data[0] = PPP_ALLSTATIONS; |
| 375 | skb->data[1] = PPP_UI; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 376 | |
Eric Dumazet | 455cc32 | 2013-10-10 06:30:09 -0700 | [diff] [blame] | 377 | local_bh_disable(); |
Tom Parkin | efe0527 | 2020-09-03 09:54:47 +0100 | [diff] [blame] | 378 | l2tp_xmit_skb(session, skb); |
Eric Dumazet | 455cc32 | 2013-10-10 06:30:09 -0700 | [diff] [blame] | 379 | local_bh_enable(); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 380 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 381 | sock_put(sk); |
Guillaume Nault | 7198c77 | 2017-11-11 06:06:31 +0900 | [diff] [blame] | 382 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 383 | return 1; |
| 384 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 385 | abort_put_sess: |
| 386 | sock_put(sk); |
| 387 | abort: |
| 388 | /* Free the original skb */ |
| 389 | kfree_skb(skb); |
| 390 | return 1; |
| 391 | } |
| 392 | |
| 393 | /***************************************************************************** |
| 394 | * Session (and tunnel control) socket create/destroy. |
| 395 | *****************************************************************************/ |
| 396 | |
James Chapman | d02ba2a | 2018-02-23 17:45:46 +0000 | [diff] [blame] | 397 | static void pppol2tp_put_sk(struct rcu_head *head) |
| 398 | { |
| 399 | struct pppol2tp_session *ps; |
| 400 | |
| 401 | ps = container_of(head, typeof(*ps), rcu); |
| 402 | sock_put(ps->__sk); |
| 403 | } |
| 404 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 405 | /* Really kill the session socket. (Called from sock_put() if |
| 406 | * refcnt == 0.) |
| 407 | */ |
| 408 | static void pppol2tp_session_destruct(struct sock *sk) |
| 409 | { |
Tom Parkin | f6e16b2 | 2013-03-19 06:11:23 +0000 | [diff] [blame] | 410 | struct l2tp_session *session = sk->sk_user_data; |
Guillaume Nault | e91793b | 2017-03-29 08:45:29 +0200 | [diff] [blame] | 411 | |
| 412 | skb_queue_purge(&sk->sk_receive_queue); |
| 413 | skb_queue_purge(&sk->sk_write_queue); |
| 414 | |
Tom Parkin | f6e16b2 | 2013-03-19 06:11:23 +0000 | [diff] [blame] | 415 | if (session) { |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 416 | sk->sk_user_data = NULL; |
Tom Parkin | 1aa646a | 2020-07-24 16:31:53 +0100 | [diff] [blame] | 417 | if (WARN_ON(session->magic != L2TP_SESSION_MAGIC)) |
| 418 | return; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 419 | l2tp_session_dec_refcount(session); |
| 420 | } |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 421 | } |
| 422 | |
| 423 | /* Called when the PPPoX socket (session) is closed. |
| 424 | */ |
| 425 | static int pppol2tp_release(struct socket *sock) |
| 426 | { |
| 427 | struct sock *sk = sock->sk; |
| 428 | struct l2tp_session *session; |
| 429 | int error; |
| 430 | |
| 431 | if (!sk) |
| 432 | return 0; |
| 433 | |
| 434 | error = -EBADF; |
| 435 | lock_sock(sk); |
| 436 | if (sock_flag(sk, SOCK_DEAD) != 0) |
| 437 | goto error; |
| 438 | |
| 439 | pppox_unbind_sock(sk); |
| 440 | |
| 441 | /* Signal the death of the socket. */ |
| 442 | sk->sk_state = PPPOX_DEAD; |
| 443 | sock_orphan(sk); |
| 444 | sock->sk = NULL; |
| 445 | |
| 446 | session = pppol2tp_sock_to_session(sk); |
James Chapman | d02ba2a | 2018-02-23 17:45:46 +0000 | [diff] [blame] | 447 | if (session) { |
Guillaume Nault | 3d60934 | 2018-06-04 18:52:19 +0200 | [diff] [blame] | 448 | struct pppol2tp_session *ps; |
| 449 | |
Guillaume Nault | f98be6c | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 450 | l2tp_session_delete(session); |
Guillaume Nault | 3d60934 | 2018-06-04 18:52:19 +0200 | [diff] [blame] | 451 | |
| 452 | ps = l2tp_session_priv(session); |
| 453 | mutex_lock(&ps->sk_lock); |
| 454 | ps->__sk = rcu_dereference_protected(ps->sk, |
| 455 | lockdep_is_held(&ps->sk_lock)); |
| 456 | RCU_INIT_POINTER(ps->sk, NULL); |
| 457 | mutex_unlock(&ps->sk_lock); |
| 458 | call_rcu(&ps->rcu, pppol2tp_put_sk); |
| 459 | |
| 460 | /* Rely on the sock_put() call at the end of the function for |
| 461 | * dropping the reference held by pppol2tp_sock_to_session(). |
| 462 | * The last reference will be dropped by pppol2tp_put_sk(). |
| 463 | */ |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 464 | } |
James Chapman | d02ba2a | 2018-02-23 17:45:46 +0000 | [diff] [blame] | 465 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 466 | release_sock(sk); |
| 467 | |
| 468 | /* This will delete the session context via |
| 469 | * pppol2tp_session_destruct() if the socket's refcnt drops to |
| 470 | * zero. |
| 471 | */ |
| 472 | sock_put(sk); |
| 473 | |
| 474 | return 0; |
| 475 | |
| 476 | error: |
| 477 | release_sock(sk); |
| 478 | return error; |
| 479 | } |
| 480 | |
| 481 | static struct proto pppol2tp_sk_proto = { |
| 482 | .name = "PPPOL2TP", |
| 483 | .owner = THIS_MODULE, |
| 484 | .obj_size = sizeof(struct pppox_sock), |
| 485 | }; |
| 486 | |
| 487 | static int pppol2tp_backlog_recv(struct sock *sk, struct sk_buff *skb) |
| 488 | { |
| 489 | int rc; |
| 490 | |
| 491 | rc = l2tp_udp_encap_recv(sk, skb); |
| 492 | if (rc) |
| 493 | kfree_skb(skb); |
| 494 | |
| 495 | return NET_RX_SUCCESS; |
| 496 | } |
| 497 | |
| 498 | /* socket() handler. Initialize a new struct sock. |
| 499 | */ |
Eric W. Biederman | 11aa9c2 | 2015-05-08 21:09:13 -0500 | [diff] [blame] | 500 | static int pppol2tp_create(struct net *net, struct socket *sock, int kern) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 501 | { |
| 502 | int error = -ENOMEM; |
| 503 | struct sock *sk; |
| 504 | |
Eric W. Biederman | 11aa9c2 | 2015-05-08 21:09:13 -0500 | [diff] [blame] | 505 | sk = sk_alloc(net, PF_PPPOX, GFP_KERNEL, &pppol2tp_sk_proto, kern); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 506 | if (!sk) |
| 507 | goto out; |
| 508 | |
| 509 | sock_init_data(sock, sk); |
| 510 | |
| 511 | sock->state = SS_UNCONNECTED; |
| 512 | sock->ops = &pppol2tp_ops; |
| 513 | |
| 514 | sk->sk_backlog_rcv = pppol2tp_backlog_recv; |
| 515 | sk->sk_protocol = PX_PROTO_OL2TP; |
| 516 | sk->sk_family = PF_PPPOX; |
| 517 | sk->sk_state = PPPOX_NONE; |
| 518 | sk->sk_type = SOCK_STREAM; |
| 519 | sk->sk_destruct = pppol2tp_session_destruct; |
| 520 | |
| 521 | error = 0; |
| 522 | |
| 523 | out: |
| 524 | return error; |
| 525 | } |
| 526 | |
James Chapman | 0ad6614 | 2010-04-02 06:19:33 +0000 | [diff] [blame] | 527 | static void pppol2tp_show(struct seq_file *m, void *arg) |
| 528 | { |
| 529 | struct l2tp_session *session = arg; |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 530 | struct sock *sk; |
James Chapman | 0ad6614 | 2010-04-02 06:19:33 +0000 | [diff] [blame] | 531 | |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 532 | sk = pppol2tp_session_get_sock(session); |
| 533 | if (sk) { |
| 534 | struct pppox_sock *po = pppox_sk(sk); |
| 535 | |
| 536 | seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan)); |
| 537 | sock_put(sk); |
James Chapman | 0ad6614 | 2010-04-02 06:19:33 +0000 | [diff] [blame] | 538 | } |
| 539 | } |
James Chapman | 0ad6614 | 2010-04-02 06:19:33 +0000 | [diff] [blame] | 540 | |
Guillaume Nault | f98be6c | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 541 | static void pppol2tp_session_init(struct l2tp_session *session) |
| 542 | { |
| 543 | struct pppol2tp_session *ps; |
Guillaume Nault | f98be6c | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 544 | |
| 545 | session->recv_skb = pppol2tp_recv; |
Arnd Bergmann | c2ebc25 | 2018-08-13 23:43:05 +0200 | [diff] [blame] | 546 | if (IS_ENABLED(CONFIG_L2TP_DEBUGFS)) |
| 547 | session->show = pppol2tp_show; |
Guillaume Nault | f98be6c | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 548 | |
| 549 | ps = l2tp_session_priv(session); |
| 550 | mutex_init(&ps->sk_lock); |
Guillaume Nault | f98be6c | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 551 | ps->owner = current->pid; |
Guillaume Nault | f98be6c | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 552 | } |
| 553 | |
Guillaume Nault | a408194 | 2018-06-26 18:41:36 +0200 | [diff] [blame] | 554 | struct l2tp_connect_info { |
| 555 | u8 version; |
| 556 | int fd; |
| 557 | u32 tunnel_id; |
| 558 | u32 peer_tunnel_id; |
| 559 | u32 session_id; |
| 560 | u32 peer_session_id; |
| 561 | }; |
| 562 | |
| 563 | static int pppol2tp_sockaddr_get_info(const void *sa, int sa_len, |
| 564 | struct l2tp_connect_info *info) |
| 565 | { |
| 566 | switch (sa_len) { |
| 567 | case sizeof(struct sockaddr_pppol2tp): |
| 568 | { |
| 569 | const struct sockaddr_pppol2tp *sa_v2in4 = sa; |
| 570 | |
| 571 | if (sa_v2in4->sa_protocol != PX_PROTO_OL2TP) |
| 572 | return -EINVAL; |
| 573 | |
| 574 | info->version = 2; |
| 575 | info->fd = sa_v2in4->pppol2tp.fd; |
| 576 | info->tunnel_id = sa_v2in4->pppol2tp.s_tunnel; |
| 577 | info->peer_tunnel_id = sa_v2in4->pppol2tp.d_tunnel; |
| 578 | info->session_id = sa_v2in4->pppol2tp.s_session; |
| 579 | info->peer_session_id = sa_v2in4->pppol2tp.d_session; |
| 580 | |
| 581 | break; |
| 582 | } |
| 583 | case sizeof(struct sockaddr_pppol2tpv3): |
| 584 | { |
| 585 | const struct sockaddr_pppol2tpv3 *sa_v3in4 = sa; |
| 586 | |
| 587 | if (sa_v3in4->sa_protocol != PX_PROTO_OL2TP) |
| 588 | return -EINVAL; |
| 589 | |
| 590 | info->version = 3; |
| 591 | info->fd = sa_v3in4->pppol2tp.fd; |
| 592 | info->tunnel_id = sa_v3in4->pppol2tp.s_tunnel; |
| 593 | info->peer_tunnel_id = sa_v3in4->pppol2tp.d_tunnel; |
| 594 | info->session_id = sa_v3in4->pppol2tp.s_session; |
| 595 | info->peer_session_id = sa_v3in4->pppol2tp.d_session; |
| 596 | |
| 597 | break; |
| 598 | } |
| 599 | case sizeof(struct sockaddr_pppol2tpin6): |
| 600 | { |
| 601 | const struct sockaddr_pppol2tpin6 *sa_v2in6 = sa; |
| 602 | |
| 603 | if (sa_v2in6->sa_protocol != PX_PROTO_OL2TP) |
| 604 | return -EINVAL; |
| 605 | |
| 606 | info->version = 2; |
| 607 | info->fd = sa_v2in6->pppol2tp.fd; |
| 608 | info->tunnel_id = sa_v2in6->pppol2tp.s_tunnel; |
| 609 | info->peer_tunnel_id = sa_v2in6->pppol2tp.d_tunnel; |
| 610 | info->session_id = sa_v2in6->pppol2tp.s_session; |
| 611 | info->peer_session_id = sa_v2in6->pppol2tp.d_session; |
| 612 | |
| 613 | break; |
| 614 | } |
| 615 | case sizeof(struct sockaddr_pppol2tpv3in6): |
| 616 | { |
| 617 | const struct sockaddr_pppol2tpv3in6 *sa_v3in6 = sa; |
| 618 | |
| 619 | if (sa_v3in6->sa_protocol != PX_PROTO_OL2TP) |
| 620 | return -EINVAL; |
| 621 | |
| 622 | info->version = 3; |
| 623 | info->fd = sa_v3in6->pppol2tp.fd; |
| 624 | info->tunnel_id = sa_v3in6->pppol2tp.s_tunnel; |
| 625 | info->peer_tunnel_id = sa_v3in6->pppol2tp.d_tunnel; |
| 626 | info->session_id = sa_v3in6->pppol2tp.s_session; |
| 627 | info->peer_session_id = sa_v3in6->pppol2tp.d_session; |
| 628 | |
| 629 | break; |
| 630 | } |
| 631 | default: |
| 632 | return -EINVAL; |
| 633 | } |
| 634 | |
| 635 | return 0; |
| 636 | } |
| 637 | |
Guillaume Nault | 789141b | 2018-08-03 12:38:37 +0200 | [diff] [blame] | 638 | /* Rough estimation of the maximum payload size a tunnel can transmit without |
| 639 | * fragmenting at the lower IP layer. Assumes L2TPv2 with sequence |
| 640 | * numbers and no IP option. Not quite accurate, but the result is mostly |
| 641 | * unused anyway. |
| 642 | */ |
| 643 | static int pppol2tp_tunnel_mtu(const struct l2tp_tunnel *tunnel) |
| 644 | { |
| 645 | int mtu; |
| 646 | |
| 647 | mtu = l2tp_tunnel_dst_mtu(tunnel); |
| 648 | if (mtu <= PPPOL2TP_HEADER_OVERHEAD) |
| 649 | return 1500 - PPPOL2TP_HEADER_OVERHEAD; |
| 650 | |
| 651 | return mtu - PPPOL2TP_HEADER_OVERHEAD; |
| 652 | } |
| 653 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 654 | /* connect() handler. Attach a PPPoX socket to a tunnel UDP socket |
| 655 | */ |
| 656 | static int pppol2tp_connect(struct socket *sock, struct sockaddr *uservaddr, |
| 657 | int sockaddr_len, int flags) |
| 658 | { |
| 659 | struct sock *sk = sock->sk; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 660 | struct pppox_sock *po = pppox_sk(sk); |
| 661 | struct l2tp_session *session = NULL; |
Guillaume Nault | a408194 | 2018-06-26 18:41:36 +0200 | [diff] [blame] | 662 | struct l2tp_connect_info info; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 663 | struct l2tp_tunnel *tunnel; |
| 664 | struct pppol2tp_session *ps; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 665 | struct l2tp_session_cfg cfg = { 0, }; |
Guillaume Nault | dbdbc73 | 2017-03-31 13:02:27 +0200 | [diff] [blame] | 666 | bool drop_refcnt = false; |
Guillaume Nault | f9e56ba | 2017-10-30 17:58:58 +0100 | [diff] [blame] | 667 | bool drop_tunnel = false; |
Guillaume Nault | bda06be | 2018-06-13 15:09:21 +0200 | [diff] [blame] | 668 | bool new_session = false; |
| 669 | bool new_tunnel = false; |
Guillaume Nault | a408194 | 2018-06-26 18:41:36 +0200 | [diff] [blame] | 670 | int error; |
| 671 | |
| 672 | error = pppol2tp_sockaddr_get_info(uservaddr, sockaddr_len, &info); |
| 673 | if (error < 0) |
| 674 | return error; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 675 | |
| 676 | lock_sock(sk); |
| 677 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 678 | /* Check for already bound sockets */ |
| 679 | error = -EBUSY; |
| 680 | if (sk->sk_state & PPPOX_CONNECTED) |
| 681 | goto end; |
| 682 | |
| 683 | /* We don't supporting rebinding anyway */ |
| 684 | error = -EALREADY; |
| 685 | if (sk->sk_user_data) |
| 686 | goto end; /* socket is already attached */ |
| 687 | |
James Chapman | e0d4435 | 2010-04-02 06:18:54 +0000 | [diff] [blame] | 688 | /* Don't bind if tunnel_id is 0 */ |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 689 | error = -EINVAL; |
Guillaume Nault | a408194 | 2018-06-26 18:41:36 +0200 | [diff] [blame] | 690 | if (!info.tunnel_id) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 691 | goto end; |
| 692 | |
Guillaume Nault | a408194 | 2018-06-26 18:41:36 +0200 | [diff] [blame] | 693 | tunnel = l2tp_tunnel_get(sock_net(sk), info.tunnel_id); |
Guillaume Nault | f9e56ba | 2017-10-30 17:58:58 +0100 | [diff] [blame] | 694 | if (tunnel) |
| 695 | drop_tunnel = true; |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 696 | |
James Chapman | e0d4435 | 2010-04-02 06:18:54 +0000 | [diff] [blame] | 697 | /* Special case: create tunnel context if session_id and |
| 698 | * peer_session_id is 0. Otherwise look up tunnel using supplied |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 699 | * tunnel id. |
| 700 | */ |
Guillaume Nault | a408194 | 2018-06-26 18:41:36 +0200 | [diff] [blame] | 701 | if (!info.session_id && !info.peer_session_id) { |
Tom Parkin | 0febc7b | 2020-07-23 12:29:50 +0100 | [diff] [blame] | 702 | if (!tunnel) { |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 703 | struct l2tp_tunnel_cfg tcfg = { |
| 704 | .encap = L2TP_ENCAPTYPE_UDP, |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 705 | }; |
Guillaume Nault | 3e1bc8b | 2018-06-13 15:09:20 +0200 | [diff] [blame] | 706 | |
| 707 | /* Prevent l2tp_tunnel_register() from trying to set up |
| 708 | * a kernel socket. |
| 709 | */ |
Guillaume Nault | a408194 | 2018-06-26 18:41:36 +0200 | [diff] [blame] | 710 | if (info.fd < 0) { |
Guillaume Nault | 3e1bc8b | 2018-06-13 15:09:20 +0200 | [diff] [blame] | 711 | error = -EBADF; |
| 712 | goto end; |
| 713 | } |
| 714 | |
Tom Parkin | c9ccd4c | 2020-09-03 09:54:49 +0100 | [diff] [blame] | 715 | error = l2tp_tunnel_create(info.fd, |
Guillaume Nault | a408194 | 2018-06-26 18:41:36 +0200 | [diff] [blame] | 716 | info.version, |
| 717 | info.tunnel_id, |
| 718 | info.peer_tunnel_id, &tcfg, |
| 719 | &tunnel); |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 720 | if (error < 0) |
| 721 | goto end; |
Guillaume Nault | 6b9f342 | 2018-04-10 21:01:12 +0200 | [diff] [blame] | 722 | |
| 723 | l2tp_tunnel_inc_refcount(tunnel); |
| 724 | error = l2tp_tunnel_register(tunnel, sock_net(sk), |
| 725 | &tcfg); |
| 726 | if (error < 0) { |
| 727 | kfree(tunnel); |
| 728 | goto end; |
| 729 | } |
| 730 | drop_tunnel = true; |
Guillaume Nault | bda06be | 2018-06-13 15:09:21 +0200 | [diff] [blame] | 731 | new_tunnel = true; |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 732 | } |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 733 | } else { |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 734 | /* Error if we can't find the tunnel */ |
| 735 | error = -ENOENT; |
Tom Parkin | 0febc7b | 2020-07-23 12:29:50 +0100 | [diff] [blame] | 736 | if (!tunnel) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 737 | goto end; |
| 738 | |
| 739 | /* Error if socket is not prepped */ |
Tom Parkin | 0febc7b | 2020-07-23 12:29:50 +0100 | [diff] [blame] | 740 | if (!tunnel->sock) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 741 | goto end; |
| 742 | } |
| 743 | |
James Chapman | b79585f | 2012-04-29 21:48:50 +0000 | [diff] [blame] | 744 | if (tunnel->peer_tunnel_id == 0) |
Guillaume Nault | a408194 | 2018-06-26 18:41:36 +0200 | [diff] [blame] | 745 | tunnel->peer_tunnel_id = info.peer_tunnel_id; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 746 | |
Guillaume Nault | 01e28b9 | 2018-08-10 13:21:57 +0200 | [diff] [blame] | 747 | session = l2tp_tunnel_get_session(tunnel, info.session_id); |
Guillaume Nault | dbdbc73 | 2017-03-31 13:02:27 +0200 | [diff] [blame] | 748 | if (session) { |
| 749 | drop_refcnt = true; |
Guillaume Nault | 7ac6ab1 | 2018-06-13 15:09:19 +0200 | [diff] [blame] | 750 | |
| 751 | if (session->pwtype != L2TP_PWTYPE_PPP) { |
| 752 | error = -EPROTOTYPE; |
| 753 | goto end; |
| 754 | } |
| 755 | |
Guillaume Nault | dbdbc73 | 2017-03-31 13:02:27 +0200 | [diff] [blame] | 756 | ps = l2tp_session_priv(session); |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 757 | |
Guillaume Nault | dbdbc73 | 2017-03-31 13:02:27 +0200 | [diff] [blame] | 758 | /* Using a pre-existing session is fine as long as it hasn't |
| 759 | * been connected yet. |
| 760 | */ |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 761 | mutex_lock(&ps->sk_lock); |
| 762 | if (rcu_dereference_protected(ps->sk, |
Guillaume Nault | 3d60934 | 2018-06-04 18:52:19 +0200 | [diff] [blame] | 763 | lockdep_is_held(&ps->sk_lock)) || |
| 764 | ps->__sk) { |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 765 | mutex_unlock(&ps->sk_lock); |
Guillaume Nault | dbdbc73 | 2017-03-31 13:02:27 +0200 | [diff] [blame] | 766 | error = -EEXIST; |
| 767 | goto end; |
| 768 | } |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 769 | } else { |
Guillaume Nault | 90904ff | 2018-06-13 15:09:18 +0200 | [diff] [blame] | 770 | cfg.pw_type = L2TP_PWTYPE_PPP; |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 771 | |
Guillaume Nault | dbdbc73 | 2017-03-31 13:02:27 +0200 | [diff] [blame] | 772 | session = l2tp_session_create(sizeof(struct pppol2tp_session), |
Guillaume Nault | a408194 | 2018-06-26 18:41:36 +0200 | [diff] [blame] | 773 | tunnel, info.session_id, |
| 774 | info.peer_session_id, &cfg); |
Guillaume Nault | dbdbc73 | 2017-03-31 13:02:27 +0200 | [diff] [blame] | 775 | if (IS_ERR(session)) { |
| 776 | error = PTR_ERR(session); |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 777 | goto end; |
Guillaume Nault | dbdbc73 | 2017-03-31 13:02:27 +0200 | [diff] [blame] | 778 | } |
Guillaume Nault | 3953ae7 | 2017-10-27 16:51:50 +0200 | [diff] [blame] | 779 | |
Guillaume Nault | f98be6c | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 780 | pppol2tp_session_init(session); |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 781 | ps = l2tp_session_priv(session); |
Guillaume Nault | 3953ae7 | 2017-10-27 16:51:50 +0200 | [diff] [blame] | 782 | l2tp_session_inc_refcount(session); |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 783 | |
| 784 | mutex_lock(&ps->sk_lock); |
Guillaume Nault | 3953ae7 | 2017-10-27 16:51:50 +0200 | [diff] [blame] | 785 | error = l2tp_session_register(session, tunnel); |
| 786 | if (error < 0) { |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 787 | mutex_unlock(&ps->sk_lock); |
Guillaume Nault | 3953ae7 | 2017-10-27 16:51:50 +0200 | [diff] [blame] | 788 | kfree(session); |
| 789 | goto end; |
| 790 | } |
| 791 | drop_refcnt = true; |
Guillaume Nault | bda06be | 2018-06-13 15:09:21 +0200 | [diff] [blame] | 792 | new_session = true; |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 793 | } |
| 794 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 795 | /* Special case: if source & dest session_id == 0x0000, this |
| 796 | * socket is being created to manage the tunnel. Just set up |
| 797 | * the internal context for use by ioctl() and sockopt() |
| 798 | * handlers. |
| 799 | */ |
Tom Parkin | 6c0ec37 | 2020-07-23 12:29:51 +0100 | [diff] [blame] | 800 | if (session->session_id == 0 && session->peer_session_id == 0) { |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 801 | error = 0; |
| 802 | goto out_no_ppp; |
| 803 | } |
| 804 | |
| 805 | /* The only header we need to worry about is the L2TP |
| 806 | * header. This size is different depending on whether |
| 807 | * sequence numbers are enabled for the data channel. |
| 808 | */ |
| 809 | po->chan.hdrlen = PPPOL2TP_L2TP_HDR_SIZE_NOSEQ; |
| 810 | |
| 811 | po->chan.private = sk; |
| 812 | po->chan.ops = &pppol2tp_chan_ops; |
Guillaume Nault | 789141b | 2018-08-03 12:38:37 +0200 | [diff] [blame] | 813 | po->chan.mtu = pppol2tp_tunnel_mtu(tunnel); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 814 | |
| 815 | error = ppp_register_net_channel(sock_net(sk), &po->chan); |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 816 | if (error) { |
| 817 | mutex_unlock(&ps->sk_lock); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 818 | goto end; |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 819 | } |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 820 | |
| 821 | out_no_ppp: |
| 822 | /* This is how we get the session context from the socket. */ |
| 823 | sk->sk_user_data = session; |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 824 | rcu_assign_pointer(ps->sk, sk); |
| 825 | mutex_unlock(&ps->sk_lock); |
| 826 | |
Guillaume Nault | f98be6c | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 827 | /* Keep the reference we've grabbed on the session: sk doesn't expect |
| 828 | * the session to disappear. pppol2tp_session_destruct() is responsible |
| 829 | * for dropping it. |
| 830 | */ |
| 831 | drop_refcnt = false; |
| 832 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 833 | sk->sk_state = PPPOX_CONNECTED; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 834 | |
| 835 | end: |
Guillaume Nault | bda06be | 2018-06-13 15:09:21 +0200 | [diff] [blame] | 836 | if (error) { |
| 837 | if (new_session) |
| 838 | l2tp_session_delete(session); |
| 839 | if (new_tunnel) |
| 840 | l2tp_tunnel_delete(tunnel); |
| 841 | } |
Guillaume Nault | dbdbc73 | 2017-03-31 13:02:27 +0200 | [diff] [blame] | 842 | if (drop_refcnt) |
| 843 | l2tp_session_dec_refcount(session); |
Guillaume Nault | f9e56ba | 2017-10-30 17:58:58 +0100 | [diff] [blame] | 844 | if (drop_tunnel) |
| 845 | l2tp_tunnel_dec_refcount(tunnel); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 846 | release_sock(sk); |
| 847 | |
| 848 | return error; |
| 849 | } |
| 850 | |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 851 | #ifdef CONFIG_L2TP_V3 |
| 852 | |
Guillaume Nault | f026bc2 | 2017-09-01 17:58:51 +0200 | [diff] [blame] | 853 | /* Called when creating sessions via the netlink interface. */ |
| 854 | static int pppol2tp_session_create(struct net *net, struct l2tp_tunnel *tunnel, |
| 855 | u32 session_id, u32 peer_session_id, |
| 856 | struct l2tp_session_cfg *cfg) |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 857 | { |
| 858 | int error; |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 859 | struct l2tp_session *session; |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 860 | |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 861 | /* Error if tunnel socket is not prepped */ |
Guillaume Nault | f026bc2 | 2017-09-01 17:58:51 +0200 | [diff] [blame] | 862 | if (!tunnel->sock) { |
| 863 | error = -ENOENT; |
Guillaume Nault | 3953ae7 | 2017-10-27 16:51:50 +0200 | [diff] [blame] | 864 | goto err; |
Guillaume Nault | f026bc2 | 2017-09-01 17:58:51 +0200 | [diff] [blame] | 865 | } |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 866 | |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 867 | /* Allocate and initialize a new session context. */ |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 868 | session = l2tp_session_create(sizeof(struct pppol2tp_session), |
| 869 | tunnel, session_id, |
| 870 | peer_session_id, cfg); |
Guillaume Nault | dbdbc73 | 2017-03-31 13:02:27 +0200 | [diff] [blame] | 871 | if (IS_ERR(session)) { |
| 872 | error = PTR_ERR(session); |
Guillaume Nault | 3953ae7 | 2017-10-27 16:51:50 +0200 | [diff] [blame] | 873 | goto err; |
Guillaume Nault | dbdbc73 | 2017-03-31 13:02:27 +0200 | [diff] [blame] | 874 | } |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 875 | |
Guillaume Nault | f98be6c | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 876 | pppol2tp_session_init(session); |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 877 | |
Guillaume Nault | 3953ae7 | 2017-10-27 16:51:50 +0200 | [diff] [blame] | 878 | error = l2tp_session_register(session, tunnel); |
| 879 | if (error < 0) |
| 880 | goto err_sess; |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 881 | |
Guillaume Nault | 3953ae7 | 2017-10-27 16:51:50 +0200 | [diff] [blame] | 882 | return 0; |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 883 | |
Guillaume Nault | 3953ae7 | 2017-10-27 16:51:50 +0200 | [diff] [blame] | 884 | err_sess: |
| 885 | kfree(session); |
| 886 | err: |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 887 | return error; |
| 888 | } |
| 889 | |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 890 | #endif /* CONFIG_L2TP_V3 */ |
| 891 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 892 | /* getname() support. |
| 893 | */ |
| 894 | static int pppol2tp_getname(struct socket *sock, struct sockaddr *uaddr, |
Denys Vlasenko | 9b2c45d | 2018-02-12 20:00:20 +0100 | [diff] [blame] | 895 | int peer) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 896 | { |
James Chapman | e0d4435 | 2010-04-02 06:18:54 +0000 | [diff] [blame] | 897 | int len = 0; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 898 | int error = 0; |
| 899 | struct l2tp_session *session; |
| 900 | struct l2tp_tunnel *tunnel; |
| 901 | struct sock *sk = sock->sk; |
| 902 | struct inet_sock *inet; |
| 903 | struct pppol2tp_session *pls; |
| 904 | |
| 905 | error = -ENOTCONN; |
Tom Parkin | 0febc7b | 2020-07-23 12:29:50 +0100 | [diff] [blame] | 906 | if (!sk) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 907 | goto end; |
Gao Feng | 56cff47 | 2016-08-19 13:36:23 +0800 | [diff] [blame] | 908 | if (!(sk->sk_state & PPPOX_CONNECTED)) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 909 | goto end; |
| 910 | |
| 911 | error = -EBADF; |
| 912 | session = pppol2tp_sock_to_session(sk); |
Tom Parkin | 0febc7b | 2020-07-23 12:29:50 +0100 | [diff] [blame] | 913 | if (!session) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 914 | goto end; |
| 915 | |
| 916 | pls = l2tp_session_priv(session); |
Guillaume Nault | 7198c77 | 2017-11-11 06:06:31 +0900 | [diff] [blame] | 917 | tunnel = session->tunnel; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 918 | |
Benjamin LaHaise | bbdb32c | 2012-03-20 03:57:54 +0000 | [diff] [blame] | 919 | inet = inet_sk(tunnel->sock); |
Tom Parkin | 6c0ec37 | 2020-07-23 12:29:51 +0100 | [diff] [blame] | 920 | if (tunnel->version == 2 && tunnel->sock->sk_family == AF_INET) { |
James Chapman | e0d4435 | 2010-04-02 06:18:54 +0000 | [diff] [blame] | 921 | struct sockaddr_pppol2tp sp; |
Tom Parkin | b71a61c | 2020-07-22 17:32:05 +0100 | [diff] [blame] | 922 | |
James Chapman | e0d4435 | 2010-04-02 06:18:54 +0000 | [diff] [blame] | 923 | len = sizeof(sp); |
| 924 | memset(&sp, 0, len); |
| 925 | sp.sa_family = AF_PPPOX; |
| 926 | sp.sa_protocol = PX_PROTO_OL2TP; |
| 927 | sp.pppol2tp.fd = tunnel->fd; |
| 928 | sp.pppol2tp.pid = pls->owner; |
| 929 | sp.pppol2tp.s_tunnel = tunnel->tunnel_id; |
| 930 | sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; |
| 931 | sp.pppol2tp.s_session = session->session_id; |
| 932 | sp.pppol2tp.d_session = session->peer_session_id; |
| 933 | sp.pppol2tp.addr.sin_family = AF_INET; |
| 934 | sp.pppol2tp.addr.sin_port = inet->inet_dport; |
| 935 | sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr; |
| 936 | memcpy(uaddr, &sp, len); |
Benjamin LaHaise | d2cf336 | 2012-04-27 08:24:18 +0000 | [diff] [blame] | 937 | #if IS_ENABLED(CONFIG_IPV6) |
Tom Parkin | 6c0ec37 | 2020-07-23 12:29:51 +0100 | [diff] [blame] | 938 | } else if (tunnel->version == 2 && tunnel->sock->sk_family == AF_INET6) { |
Benjamin LaHaise | d2cf336 | 2012-04-27 08:24:18 +0000 | [diff] [blame] | 939 | struct sockaddr_pppol2tpin6 sp; |
Eric Dumazet | efe4208 | 2013-10-03 15:42:29 -0700 | [diff] [blame] | 940 | |
Benjamin LaHaise | d2cf336 | 2012-04-27 08:24:18 +0000 | [diff] [blame] | 941 | len = sizeof(sp); |
| 942 | memset(&sp, 0, len); |
| 943 | sp.sa_family = AF_PPPOX; |
| 944 | sp.sa_protocol = PX_PROTO_OL2TP; |
| 945 | sp.pppol2tp.fd = tunnel->fd; |
| 946 | sp.pppol2tp.pid = pls->owner; |
| 947 | sp.pppol2tp.s_tunnel = tunnel->tunnel_id; |
| 948 | sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; |
| 949 | sp.pppol2tp.s_session = session->session_id; |
| 950 | sp.pppol2tp.d_session = session->peer_session_id; |
| 951 | sp.pppol2tp.addr.sin6_family = AF_INET6; |
| 952 | sp.pppol2tp.addr.sin6_port = inet->inet_dport; |
Eric Dumazet | efe4208 | 2013-10-03 15:42:29 -0700 | [diff] [blame] | 953 | memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr, |
| 954 | sizeof(tunnel->sock->sk_v6_daddr)); |
Benjamin LaHaise | d2cf336 | 2012-04-27 08:24:18 +0000 | [diff] [blame] | 955 | memcpy(uaddr, &sp, len); |
Tom Parkin | 6c0ec37 | 2020-07-23 12:29:51 +0100 | [diff] [blame] | 956 | } else if (tunnel->version == 3 && tunnel->sock->sk_family == AF_INET6) { |
Benjamin LaHaise | d2cf336 | 2012-04-27 08:24:18 +0000 | [diff] [blame] | 957 | struct sockaddr_pppol2tpv3in6 sp; |
Eric Dumazet | efe4208 | 2013-10-03 15:42:29 -0700 | [diff] [blame] | 958 | |
Benjamin LaHaise | d2cf336 | 2012-04-27 08:24:18 +0000 | [diff] [blame] | 959 | len = sizeof(sp); |
| 960 | memset(&sp, 0, len); |
| 961 | sp.sa_family = AF_PPPOX; |
| 962 | sp.sa_protocol = PX_PROTO_OL2TP; |
| 963 | sp.pppol2tp.fd = tunnel->fd; |
| 964 | sp.pppol2tp.pid = pls->owner; |
| 965 | sp.pppol2tp.s_tunnel = tunnel->tunnel_id; |
| 966 | sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; |
| 967 | sp.pppol2tp.s_session = session->session_id; |
| 968 | sp.pppol2tp.d_session = session->peer_session_id; |
| 969 | sp.pppol2tp.addr.sin6_family = AF_INET6; |
| 970 | sp.pppol2tp.addr.sin6_port = inet->inet_dport; |
Eric Dumazet | efe4208 | 2013-10-03 15:42:29 -0700 | [diff] [blame] | 971 | memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr, |
| 972 | sizeof(tunnel->sock->sk_v6_daddr)); |
Benjamin LaHaise | d2cf336 | 2012-04-27 08:24:18 +0000 | [diff] [blame] | 973 | memcpy(uaddr, &sp, len); |
| 974 | #endif |
James Chapman | e0d4435 | 2010-04-02 06:18:54 +0000 | [diff] [blame] | 975 | } else if (tunnel->version == 3) { |
| 976 | struct sockaddr_pppol2tpv3 sp; |
Tom Parkin | b71a61c | 2020-07-22 17:32:05 +0100 | [diff] [blame] | 977 | |
James Chapman | e0d4435 | 2010-04-02 06:18:54 +0000 | [diff] [blame] | 978 | len = sizeof(sp); |
| 979 | memset(&sp, 0, len); |
| 980 | sp.sa_family = AF_PPPOX; |
| 981 | sp.sa_protocol = PX_PROTO_OL2TP; |
| 982 | sp.pppol2tp.fd = tunnel->fd; |
| 983 | sp.pppol2tp.pid = pls->owner; |
| 984 | sp.pppol2tp.s_tunnel = tunnel->tunnel_id; |
| 985 | sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id; |
| 986 | sp.pppol2tp.s_session = session->session_id; |
| 987 | sp.pppol2tp.d_session = session->peer_session_id; |
| 988 | sp.pppol2tp.addr.sin_family = AF_INET; |
| 989 | sp.pppol2tp.addr.sin_port = inet->inet_dport; |
| 990 | sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr; |
| 991 | memcpy(uaddr, &sp, len); |
| 992 | } |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 993 | |
Denys Vlasenko | 9b2c45d | 2018-02-12 20:00:20 +0100 | [diff] [blame] | 994 | error = len; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 995 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 996 | sock_put(sk); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 997 | end: |
| 998 | return error; |
| 999 | } |
| 1000 | |
| 1001 | /**************************************************************************** |
| 1002 | * ioctl() handlers. |
| 1003 | * |
| 1004 | * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP |
| 1005 | * sockets. However, in order to control kernel tunnel features, we allow |
| 1006 | * userspace to create a special "tunnel" PPPoX socket which is used for |
| 1007 | * control only. Tunnel PPPoX sockets have session_id == 0 and simply allow |
| 1008 | * the user application to issue L2TP setsockopt(), getsockopt() and ioctl() |
| 1009 | * calls. |
| 1010 | ****************************************************************************/ |
| 1011 | |
| 1012 | static void pppol2tp_copy_stats(struct pppol2tp_ioc_stats *dest, |
Guillaume Nault | 7390ed8 | 2018-08-10 13:22:02 +0200 | [diff] [blame] | 1013 | const struct l2tp_stats *stats) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1014 | { |
Guillaume Nault | 7390ed8 | 2018-08-10 13:22:02 +0200 | [diff] [blame] | 1015 | memset(dest, 0, sizeof(*dest)); |
| 1016 | |
Tom Parkin | 7b7c071 | 2013-03-19 06:11:22 +0000 | [diff] [blame] | 1017 | dest->tx_packets = atomic_long_read(&stats->tx_packets); |
| 1018 | dest->tx_bytes = atomic_long_read(&stats->tx_bytes); |
| 1019 | dest->tx_errors = atomic_long_read(&stats->tx_errors); |
| 1020 | dest->rx_packets = atomic_long_read(&stats->rx_packets); |
| 1021 | dest->rx_bytes = atomic_long_read(&stats->rx_bytes); |
| 1022 | dest->rx_seq_discards = atomic_long_read(&stats->rx_seq_discards); |
| 1023 | dest->rx_oos_packets = atomic_long_read(&stats->rx_oos_packets); |
| 1024 | dest->rx_errors = atomic_long_read(&stats->rx_errors); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1025 | } |
| 1026 | |
Guillaume Nault | 528534f | 2018-08-10 13:22:00 +0200 | [diff] [blame] | 1027 | static int pppol2tp_tunnel_copy_stats(struct pppol2tp_ioc_stats *stats, |
| 1028 | struct l2tp_tunnel *tunnel) |
| 1029 | { |
| 1030 | struct l2tp_session *session; |
| 1031 | |
| 1032 | if (!stats->session_id) { |
Guillaume Nault | 528534f | 2018-08-10 13:22:00 +0200 | [diff] [blame] | 1033 | pppol2tp_copy_stats(stats, &tunnel->stats); |
| 1034 | return 0; |
| 1035 | } |
| 1036 | |
| 1037 | /* If session_id is set, search the corresponding session in the |
| 1038 | * context of this tunnel and record the session's statistics. |
| 1039 | */ |
| 1040 | session = l2tp_tunnel_get_session(tunnel, stats->session_id); |
| 1041 | if (!session) |
| 1042 | return -EBADR; |
| 1043 | |
| 1044 | if (session->pwtype != L2TP_PWTYPE_PPP) { |
| 1045 | l2tp_session_dec_refcount(session); |
| 1046 | return -EBADR; |
| 1047 | } |
| 1048 | |
Guillaume Nault | 528534f | 2018-08-10 13:22:00 +0200 | [diff] [blame] | 1049 | pppol2tp_copy_stats(stats, &session->stats); |
| 1050 | l2tp_session_dec_refcount(session); |
| 1051 | |
| 1052 | return 0; |
| 1053 | } |
| 1054 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1055 | static int pppol2tp_ioctl(struct socket *sock, unsigned int cmd, |
| 1056 | unsigned long arg) |
| 1057 | { |
Guillaume Nault | 528534f | 2018-08-10 13:22:00 +0200 | [diff] [blame] | 1058 | struct pppol2tp_ioc_stats stats; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1059 | struct l2tp_session *session; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1060 | |
Guillaume Nault | 79e6760 | 2018-08-10 13:21:58 +0200 | [diff] [blame] | 1061 | switch (cmd) { |
| 1062 | case PPPIOCGMRU: |
| 1063 | case PPPIOCGFLAGS: |
| 1064 | session = sock->sk->sk_user_data; |
| 1065 | if (!session) |
| 1066 | return -ENOTCONN; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1067 | |
Tom Parkin | 45faeff | 2020-09-03 09:54:51 +0100 | [diff] [blame] | 1068 | if (WARN_ON(session->magic != L2TP_SESSION_MAGIC)) |
| 1069 | return -EBADF; |
| 1070 | |
Guillaume Nault | 79e6760 | 2018-08-10 13:21:58 +0200 | [diff] [blame] | 1071 | /* Not defined for tunnels */ |
| 1072 | if (!session->session_id && !session->peer_session_id) |
| 1073 | return -ENOSYS; |
Guillaume Nault | bdd0292 | 2018-08-10 13:21:58 +0200 | [diff] [blame] | 1074 | |
Guillaume Nault | 79e6760 | 2018-08-10 13:21:58 +0200 | [diff] [blame] | 1075 | if (put_user(0, (int __user *)arg)) |
| 1076 | return -EFAULT; |
| 1077 | break; |
| 1078 | |
| 1079 | case PPPIOCSMRU: |
| 1080 | case PPPIOCSFLAGS: |
| 1081 | session = sock->sk->sk_user_data; |
| 1082 | if (!session) |
| 1083 | return -ENOTCONN; |
| 1084 | |
Tom Parkin | 45faeff | 2020-09-03 09:54:51 +0100 | [diff] [blame] | 1085 | if (WARN_ON(session->magic != L2TP_SESSION_MAGIC)) |
| 1086 | return -EBADF; |
| 1087 | |
Guillaume Nault | 79e6760 | 2018-08-10 13:21:58 +0200 | [diff] [blame] | 1088 | /* Not defined for tunnels */ |
| 1089 | if (!session->session_id && !session->peer_session_id) |
| 1090 | return -ENOSYS; |
| 1091 | |
Jakub Kicinski | 503c018 | 2019-04-17 13:51:55 -0700 | [diff] [blame] | 1092 | if (!access_ok((int __user *)arg, sizeof(int))) |
Guillaume Nault | 79e6760 | 2018-08-10 13:21:58 +0200 | [diff] [blame] | 1093 | return -EFAULT; |
| 1094 | break; |
| 1095 | |
| 1096 | case PPPIOCGL2TPSTATS: |
| 1097 | session = sock->sk->sk_user_data; |
| 1098 | if (!session) |
| 1099 | return -ENOTCONN; |
| 1100 | |
Tom Parkin | 45faeff | 2020-09-03 09:54:51 +0100 | [diff] [blame] | 1101 | if (WARN_ON(session->magic != L2TP_SESSION_MAGIC)) |
| 1102 | return -EBADF; |
| 1103 | |
Guillaume Nault | 79e6760 | 2018-08-10 13:21:58 +0200 | [diff] [blame] | 1104 | /* Session 0 represents the parent tunnel */ |
Guillaume Nault | 528534f | 2018-08-10 13:22:00 +0200 | [diff] [blame] | 1105 | if (!session->session_id && !session->peer_session_id) { |
| 1106 | u32 session_id; |
| 1107 | int err; |
| 1108 | |
| 1109 | if (copy_from_user(&stats, (void __user *)arg, |
| 1110 | sizeof(stats))) |
| 1111 | return -EFAULT; |
| 1112 | |
| 1113 | session_id = stats.session_id; |
| 1114 | err = pppol2tp_tunnel_copy_stats(&stats, |
| 1115 | session->tunnel); |
| 1116 | if (err < 0) |
| 1117 | return err; |
| 1118 | |
| 1119 | stats.session_id = session_id; |
| 1120 | } else { |
Guillaume Nault | b0e2906 | 2018-08-10 13:22:01 +0200 | [diff] [blame] | 1121 | pppol2tp_copy_stats(&stats, &session->stats); |
| 1122 | stats.session_id = session->session_id; |
Guillaume Nault | 528534f | 2018-08-10 13:22:00 +0200 | [diff] [blame] | 1123 | } |
| 1124 | stats.tunnel_id = session->tunnel->tunnel_id; |
| 1125 | stats.using_ipsec = l2tp_tunnel_uses_xfrm(session->tunnel); |
| 1126 | |
| 1127 | if (copy_to_user((void __user *)arg, &stats, sizeof(stats))) |
| 1128 | return -EFAULT; |
Guillaume Nault | 79e6760 | 2018-08-10 13:21:58 +0200 | [diff] [blame] | 1129 | break; |
| 1130 | |
| 1131 | default: |
Guillaume Nault | 4f5f85e | 2018-08-10 13:22:03 +0200 | [diff] [blame] | 1132 | return -ENOIOCTLCMD; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1133 | } |
| 1134 | |
Guillaume Nault | 79e6760 | 2018-08-10 13:21:58 +0200 | [diff] [blame] | 1135 | return 0; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1136 | } |
| 1137 | |
| 1138 | /***************************************************************************** |
| 1139 | * setsockopt() / getsockopt() support. |
| 1140 | * |
| 1141 | * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP |
| 1142 | * sockets. In order to control kernel tunnel features, we allow userspace to |
| 1143 | * create a special "tunnel" PPPoX socket which is used for control only. |
| 1144 | * Tunnel PPPoX sockets have session_id == 0 and simply allow the user |
| 1145 | * application to issue L2TP setsockopt(), getsockopt() and ioctl() calls. |
| 1146 | *****************************************************************************/ |
| 1147 | |
| 1148 | /* Tunnel setsockopt() helper. |
| 1149 | */ |
| 1150 | static int pppol2tp_tunnel_setsockopt(struct sock *sk, |
| 1151 | struct l2tp_tunnel *tunnel, |
| 1152 | int optname, int val) |
| 1153 | { |
| 1154 | int err = 0; |
| 1155 | |
| 1156 | switch (optname) { |
| 1157 | case PPPOL2TP_SO_DEBUG: |
Tom Parkin | eee049c | 2020-08-22 15:59:08 +0100 | [diff] [blame] | 1158 | /* Tunnel debug flags option is deprecated */ |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1159 | break; |
| 1160 | |
| 1161 | default: |
| 1162 | err = -ENOPROTOOPT; |
| 1163 | break; |
| 1164 | } |
| 1165 | |
| 1166 | return err; |
| 1167 | } |
| 1168 | |
| 1169 | /* Session setsockopt helper. |
| 1170 | */ |
| 1171 | static int pppol2tp_session_setsockopt(struct sock *sk, |
| 1172 | struct l2tp_session *session, |
| 1173 | int optname, int val) |
| 1174 | { |
| 1175 | int err = 0; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1176 | |
| 1177 | switch (optname) { |
| 1178 | case PPPOL2TP_SO_RECVSEQ: |
Tom Parkin | 6c0ec37 | 2020-07-23 12:29:51 +0100 | [diff] [blame] | 1179 | if (val != 0 && val != 1) { |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1180 | err = -EINVAL; |
| 1181 | break; |
| 1182 | } |
Asbjørn Sloth Tønnesen | 3f9b977 | 2016-11-07 20:39:28 +0000 | [diff] [blame] | 1183 | session->recv_seq = !!val; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1184 | break; |
| 1185 | |
| 1186 | case PPPOL2TP_SO_SENDSEQ: |
Tom Parkin | 6c0ec37 | 2020-07-23 12:29:51 +0100 | [diff] [blame] | 1187 | if (val != 0 && val != 1) { |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1188 | err = -EINVAL; |
| 1189 | break; |
| 1190 | } |
Asbjørn Sloth Tønnesen | 3f9b977 | 2016-11-07 20:39:28 +0000 | [diff] [blame] | 1191 | session->send_seq = !!val; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1192 | { |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 1193 | struct pppox_sock *po = pppox_sk(sk); |
| 1194 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1195 | po->chan.hdrlen = val ? PPPOL2TP_L2TP_HDR_SIZE_SEQ : |
| 1196 | PPPOL2TP_L2TP_HDR_SIZE_NOSEQ; |
| 1197 | } |
Guillaume Nault | bb5016e | 2014-03-06 11:14:30 +0100 | [diff] [blame] | 1198 | l2tp_session_set_header_len(session, session->tunnel->version); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1199 | break; |
| 1200 | |
| 1201 | case PPPOL2TP_SO_LNSMODE: |
Tom Parkin | 6c0ec37 | 2020-07-23 12:29:51 +0100 | [diff] [blame] | 1202 | if (val != 0 && val != 1) { |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1203 | err = -EINVAL; |
| 1204 | break; |
| 1205 | } |
Asbjørn Sloth Tønnesen | 3f9b977 | 2016-11-07 20:39:28 +0000 | [diff] [blame] | 1206 | session->lns_mode = !!val; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1207 | break; |
| 1208 | |
| 1209 | case PPPOL2TP_SO_DEBUG: |
Tom Parkin | eee049c | 2020-08-22 15:59:08 +0100 | [diff] [blame] | 1210 | /* Session debug flags option is deprecated */ |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1211 | break; |
| 1212 | |
| 1213 | case PPPOL2TP_SO_REORDERTO: |
| 1214 | session->reorder_timeout = msecs_to_jiffies(val); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1215 | break; |
| 1216 | |
| 1217 | default: |
| 1218 | err = -ENOPROTOOPT; |
| 1219 | break; |
| 1220 | } |
| 1221 | |
| 1222 | return err; |
| 1223 | } |
| 1224 | |
| 1225 | /* Main setsockopt() entry point. |
| 1226 | * Does API checks, then calls either the tunnel or session setsockopt |
| 1227 | * handler, according to whether the PPPoL2TP socket is a for a regular |
| 1228 | * session or the special tunnel type. |
| 1229 | */ |
| 1230 | static int pppol2tp_setsockopt(struct socket *sock, int level, int optname, |
Christoph Hellwig | a7b75c5 | 2020-07-23 08:09:07 +0200 | [diff] [blame] | 1231 | sockptr_t optval, unsigned int optlen) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1232 | { |
| 1233 | struct sock *sk = sock->sk; |
| 1234 | struct l2tp_session *session; |
| 1235 | struct l2tp_tunnel *tunnel; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1236 | int val; |
| 1237 | int err; |
| 1238 | |
| 1239 | if (level != SOL_PPPOL2TP) |
Sasha Levin | 3cf521f | 2014-07-14 17:02:31 -0700 | [diff] [blame] | 1240 | return -EINVAL; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1241 | |
| 1242 | if (optlen < sizeof(int)) |
| 1243 | return -EINVAL; |
| 1244 | |
Christoph Hellwig | a7b75c5 | 2020-07-23 08:09:07 +0200 | [diff] [blame] | 1245 | if (copy_from_sockptr(&val, optval, sizeof(int))) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1246 | return -EFAULT; |
| 1247 | |
| 1248 | err = -ENOTCONN; |
Tom Parkin | 0febc7b | 2020-07-23 12:29:50 +0100 | [diff] [blame] | 1249 | if (!sk->sk_user_data) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1250 | goto end; |
| 1251 | |
| 1252 | /* Get session context from the socket */ |
| 1253 | err = -EBADF; |
| 1254 | session = pppol2tp_sock_to_session(sk); |
Tom Parkin | 0febc7b | 2020-07-23 12:29:50 +0100 | [diff] [blame] | 1255 | if (!session) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1256 | goto end; |
| 1257 | |
| 1258 | /* Special case: if session_id == 0x0000, treat as operation on tunnel |
| 1259 | */ |
Tom Parkin | 6c0ec37 | 2020-07-23 12:29:51 +0100 | [diff] [blame] | 1260 | if (session->session_id == 0 && session->peer_session_id == 0) { |
Guillaume Nault | 7198c77 | 2017-11-11 06:06:31 +0900 | [diff] [blame] | 1261 | tunnel = session->tunnel; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1262 | err = pppol2tp_tunnel_setsockopt(sk, tunnel, optname, val); |
Guillaume Nault | 7198c77 | 2017-11-11 06:06:31 +0900 | [diff] [blame] | 1263 | } else { |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1264 | err = pppol2tp_session_setsockopt(sk, session, optname, val); |
Guillaume Nault | 7198c77 | 2017-11-11 06:06:31 +0900 | [diff] [blame] | 1265 | } |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1266 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1267 | sock_put(sk); |
| 1268 | end: |
| 1269 | return err; |
| 1270 | } |
| 1271 | |
| 1272 | /* Tunnel getsockopt helper. Called with sock locked. |
| 1273 | */ |
| 1274 | static int pppol2tp_tunnel_getsockopt(struct sock *sk, |
| 1275 | struct l2tp_tunnel *tunnel, |
| 1276 | int optname, int *val) |
| 1277 | { |
| 1278 | int err = 0; |
| 1279 | |
| 1280 | switch (optname) { |
| 1281 | case PPPOL2TP_SO_DEBUG: |
Tom Parkin | eee049c | 2020-08-22 15:59:08 +0100 | [diff] [blame] | 1282 | /* Tunnel debug flags option is deprecated */ |
| 1283 | *val = 0; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1284 | break; |
| 1285 | |
| 1286 | default: |
| 1287 | err = -ENOPROTOOPT; |
| 1288 | break; |
| 1289 | } |
| 1290 | |
| 1291 | return err; |
| 1292 | } |
| 1293 | |
| 1294 | /* Session getsockopt helper. Called with sock locked. |
| 1295 | */ |
| 1296 | static int pppol2tp_session_getsockopt(struct sock *sk, |
| 1297 | struct l2tp_session *session, |
| 1298 | int optname, int *val) |
| 1299 | { |
| 1300 | int err = 0; |
| 1301 | |
| 1302 | switch (optname) { |
| 1303 | case PPPOL2TP_SO_RECVSEQ: |
| 1304 | *val = session->recv_seq; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1305 | break; |
| 1306 | |
| 1307 | case PPPOL2TP_SO_SENDSEQ: |
| 1308 | *val = session->send_seq; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1309 | break; |
| 1310 | |
| 1311 | case PPPOL2TP_SO_LNSMODE: |
| 1312 | *val = session->lns_mode; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1313 | break; |
| 1314 | |
| 1315 | case PPPOL2TP_SO_DEBUG: |
Tom Parkin | eee049c | 2020-08-22 15:59:08 +0100 | [diff] [blame] | 1316 | /* Session debug flags option is deprecated */ |
| 1317 | *val = 0; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1318 | break; |
| 1319 | |
| 1320 | case PPPOL2TP_SO_REORDERTO: |
Tom Parkin | b71a61c | 2020-07-22 17:32:05 +0100 | [diff] [blame] | 1321 | *val = (int)jiffies_to_msecs(session->reorder_timeout); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1322 | break; |
| 1323 | |
| 1324 | default: |
| 1325 | err = -ENOPROTOOPT; |
| 1326 | } |
| 1327 | |
| 1328 | return err; |
| 1329 | } |
| 1330 | |
| 1331 | /* Main getsockopt() entry point. |
| 1332 | * Does API checks, then calls either the tunnel or session getsockopt |
| 1333 | * handler, according to whether the PPPoX socket is a for a regular session |
| 1334 | * or the special tunnel type. |
| 1335 | */ |
Joe Perches | e319269 | 2012-06-03 17:41:40 +0000 | [diff] [blame] | 1336 | static int pppol2tp_getsockopt(struct socket *sock, int level, int optname, |
| 1337 | char __user *optval, int __user *optlen) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1338 | { |
| 1339 | struct sock *sk = sock->sk; |
| 1340 | struct l2tp_session *session; |
| 1341 | struct l2tp_tunnel *tunnel; |
| 1342 | int val, len; |
| 1343 | int err; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1344 | |
| 1345 | if (level != SOL_PPPOL2TP) |
Sasha Levin | 3cf521f | 2014-07-14 17:02:31 -0700 | [diff] [blame] | 1346 | return -EINVAL; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1347 | |
Joe Perches | e319269 | 2012-06-03 17:41:40 +0000 | [diff] [blame] | 1348 | if (get_user(len, optlen)) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1349 | return -EFAULT; |
| 1350 | |
| 1351 | len = min_t(unsigned int, len, sizeof(int)); |
| 1352 | |
| 1353 | if (len < 0) |
| 1354 | return -EINVAL; |
| 1355 | |
| 1356 | err = -ENOTCONN; |
Tom Parkin | 0febc7b | 2020-07-23 12:29:50 +0100 | [diff] [blame] | 1357 | if (!sk->sk_user_data) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1358 | goto end; |
| 1359 | |
| 1360 | /* Get the session context */ |
| 1361 | err = -EBADF; |
| 1362 | session = pppol2tp_sock_to_session(sk); |
Tom Parkin | 0febc7b | 2020-07-23 12:29:50 +0100 | [diff] [blame] | 1363 | if (!session) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1364 | goto end; |
| 1365 | |
| 1366 | /* Special case: if session_id == 0x0000, treat as operation on tunnel */ |
Tom Parkin | 6c0ec37 | 2020-07-23 12:29:51 +0100 | [diff] [blame] | 1367 | if (session->session_id == 0 && session->peer_session_id == 0) { |
Guillaume Nault | 7198c77 | 2017-11-11 06:06:31 +0900 | [diff] [blame] | 1368 | tunnel = session->tunnel; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1369 | err = pppol2tp_tunnel_getsockopt(sk, tunnel, optname, &val); |
Guillaume Nault | 321a52a | 2017-04-06 18:31:21 +0200 | [diff] [blame] | 1370 | if (err) |
| 1371 | goto end_put_sess; |
| 1372 | } else { |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1373 | err = pppol2tp_session_getsockopt(sk, session, optname, &val); |
Guillaume Nault | 321a52a | 2017-04-06 18:31:21 +0200 | [diff] [blame] | 1374 | if (err) |
| 1375 | goto end_put_sess; |
| 1376 | } |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1377 | |
| 1378 | err = -EFAULT; |
Joe Perches | e319269 | 2012-06-03 17:41:40 +0000 | [diff] [blame] | 1379 | if (put_user(len, optlen)) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1380 | goto end_put_sess; |
| 1381 | |
Tom Parkin | b71a61c | 2020-07-22 17:32:05 +0100 | [diff] [blame] | 1382 | if (copy_to_user((void __user *)optval, &val, len)) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1383 | goto end_put_sess; |
| 1384 | |
| 1385 | err = 0; |
| 1386 | |
| 1387 | end_put_sess: |
| 1388 | sock_put(sk); |
| 1389 | end: |
| 1390 | return err; |
| 1391 | } |
| 1392 | |
| 1393 | /***************************************************************************** |
| 1394 | * /proc filesystem for debug |
James Chapman | f7faffa | 2010-04-02 06:18:49 +0000 | [diff] [blame] | 1395 | * Since the original pppol2tp driver provided /proc/net/pppol2tp for |
| 1396 | * L2TPv2, we dump only L2TPv2 tunnels and sessions here. |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1397 | *****************************************************************************/ |
| 1398 | |
| 1399 | static unsigned int pppol2tp_net_id; |
| 1400 | |
| 1401 | #ifdef CONFIG_PROC_FS |
| 1402 | |
| 1403 | struct pppol2tp_seq_data { |
| 1404 | struct seq_net_private p; |
| 1405 | int tunnel_idx; /* current tunnel */ |
| 1406 | int session_idx; /* index of session within current tunnel */ |
| 1407 | struct l2tp_tunnel *tunnel; |
| 1408 | struct l2tp_session *session; /* NULL means get next tunnel */ |
| 1409 | }; |
| 1410 | |
| 1411 | static void pppol2tp_next_tunnel(struct net *net, struct pppol2tp_seq_data *pd) |
| 1412 | { |
Guillaume Nault | 0e0c3fe | 2018-04-12 20:50:34 +0200 | [diff] [blame] | 1413 | /* Drop reference taken during previous invocation */ |
| 1414 | if (pd->tunnel) |
| 1415 | l2tp_tunnel_dec_refcount(pd->tunnel); |
| 1416 | |
James Chapman | f7faffa | 2010-04-02 06:18:49 +0000 | [diff] [blame] | 1417 | for (;;) { |
Guillaume Nault | 0e0c3fe | 2018-04-12 20:50:34 +0200 | [diff] [blame] | 1418 | pd->tunnel = l2tp_tunnel_get_nth(net, pd->tunnel_idx); |
James Chapman | f7faffa | 2010-04-02 06:18:49 +0000 | [diff] [blame] | 1419 | pd->tunnel_idx++; |
| 1420 | |
Guillaume Nault | 0e0c3fe | 2018-04-12 20:50:34 +0200 | [diff] [blame] | 1421 | /* Only accept L2TPv2 tunnels */ |
| 1422 | if (!pd->tunnel || pd->tunnel->version == 2) |
| 1423 | return; |
James Chapman | f7faffa | 2010-04-02 06:18:49 +0000 | [diff] [blame] | 1424 | |
Guillaume Nault | 0e0c3fe | 2018-04-12 20:50:34 +0200 | [diff] [blame] | 1425 | l2tp_tunnel_dec_refcount(pd->tunnel); |
James Chapman | f7faffa | 2010-04-02 06:18:49 +0000 | [diff] [blame] | 1426 | } |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1427 | } |
| 1428 | |
| 1429 | static void pppol2tp_next_session(struct net *net, struct pppol2tp_seq_data *pd) |
| 1430 | { |
Guillaume Nault | 8349440 | 2018-04-25 19:54:14 +0200 | [diff] [blame] | 1431 | /* Drop reference taken during previous invocation */ |
| 1432 | if (pd->session) |
| 1433 | l2tp_session_dec_refcount(pd->session); |
| 1434 | |
Guillaume Nault | a434621 | 2017-10-31 17:36:42 +0100 | [diff] [blame] | 1435 | pd->session = l2tp_session_get_nth(pd->tunnel, pd->session_idx); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1436 | pd->session_idx++; |
James Chapman | f7faffa | 2010-04-02 06:18:49 +0000 | [diff] [blame] | 1437 | |
Tom Parkin | 0febc7b | 2020-07-23 12:29:50 +0100 | [diff] [blame] | 1438 | if (!pd->session) { |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1439 | pd->session_idx = 0; |
| 1440 | pppol2tp_next_tunnel(net, pd); |
| 1441 | } |
| 1442 | } |
| 1443 | |
| 1444 | static void *pppol2tp_seq_start(struct seq_file *m, loff_t *offs) |
| 1445 | { |
| 1446 | struct pppol2tp_seq_data *pd = SEQ_START_TOKEN; |
| 1447 | loff_t pos = *offs; |
| 1448 | struct net *net; |
| 1449 | |
| 1450 | if (!pos) |
| 1451 | goto out; |
| 1452 | |
Tom Parkin | ebb4f5e | 2020-07-24 16:31:54 +0100 | [diff] [blame] | 1453 | if (WARN_ON(!m->private)) { |
| 1454 | pd = NULL; |
| 1455 | goto out; |
| 1456 | } |
| 1457 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1458 | pd = m->private; |
| 1459 | net = seq_file_net(m); |
| 1460 | |
Tom Parkin | 0febc7b | 2020-07-23 12:29:50 +0100 | [diff] [blame] | 1461 | if (!pd->tunnel) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1462 | pppol2tp_next_tunnel(net, pd); |
| 1463 | else |
| 1464 | pppol2tp_next_session(net, pd); |
| 1465 | |
| 1466 | /* NULL tunnel and session indicates end of list */ |
Tom Parkin | 0febc7b | 2020-07-23 12:29:50 +0100 | [diff] [blame] | 1467 | if (!pd->tunnel && !pd->session) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1468 | pd = NULL; |
| 1469 | |
| 1470 | out: |
| 1471 | return pd; |
| 1472 | } |
| 1473 | |
| 1474 | static void *pppol2tp_seq_next(struct seq_file *m, void *v, loff_t *pos) |
| 1475 | { |
| 1476 | (*pos)++; |
| 1477 | return NULL; |
| 1478 | } |
| 1479 | |
| 1480 | static void pppol2tp_seq_stop(struct seq_file *p, void *v) |
| 1481 | { |
Guillaume Nault | 0e0c3fe | 2018-04-12 20:50:34 +0200 | [diff] [blame] | 1482 | struct pppol2tp_seq_data *pd = v; |
| 1483 | |
| 1484 | if (!pd || pd == SEQ_START_TOKEN) |
| 1485 | return; |
| 1486 | |
Guillaume Nault | 8349440 | 2018-04-25 19:54:14 +0200 | [diff] [blame] | 1487 | /* Drop reference taken by last invocation of pppol2tp_next_session() |
| 1488 | * or pppol2tp_next_tunnel(). |
| 1489 | */ |
| 1490 | if (pd->session) { |
| 1491 | l2tp_session_dec_refcount(pd->session); |
| 1492 | pd->session = NULL; |
| 1493 | } |
Guillaume Nault | 5411b618 | 2018-04-19 16:20:48 +0200 | [diff] [blame] | 1494 | if (pd->tunnel) { |
Guillaume Nault | 0e0c3fe | 2018-04-12 20:50:34 +0200 | [diff] [blame] | 1495 | l2tp_tunnel_dec_refcount(pd->tunnel); |
Guillaume Nault | 5411b618 | 2018-04-19 16:20:48 +0200 | [diff] [blame] | 1496 | pd->tunnel = NULL; |
Guillaume Nault | 5411b618 | 2018-04-19 16:20:48 +0200 | [diff] [blame] | 1497 | } |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1498 | } |
| 1499 | |
| 1500 | static void pppol2tp_seq_tunnel_show(struct seq_file *m, void *v) |
| 1501 | { |
| 1502 | struct l2tp_tunnel *tunnel = v; |
| 1503 | |
| 1504 | seq_printf(m, "\nTUNNEL '%s', %c %d\n", |
| 1505 | tunnel->name, |
| 1506 | (tunnel == tunnel->sock->sk_user_data) ? 'Y' : 'N', |
Reshetova, Elena | fbea9e0 | 2017-07-04 15:52:57 +0300 | [diff] [blame] | 1507 | refcount_read(&tunnel->ref_count) - 1); |
Tom Parkin | 7b7c071 | 2013-03-19 06:11:22 +0000 | [diff] [blame] | 1508 | seq_printf(m, " %08x %ld/%ld/%ld %ld/%ld/%ld\n", |
Tom Parkin | eee049c | 2020-08-22 15:59:08 +0100 | [diff] [blame] | 1509 | 0, |
Tom Parkin | 7b7c071 | 2013-03-19 06:11:22 +0000 | [diff] [blame] | 1510 | atomic_long_read(&tunnel->stats.tx_packets), |
| 1511 | atomic_long_read(&tunnel->stats.tx_bytes), |
| 1512 | atomic_long_read(&tunnel->stats.tx_errors), |
| 1513 | atomic_long_read(&tunnel->stats.rx_packets), |
| 1514 | atomic_long_read(&tunnel->stats.rx_bytes), |
| 1515 | atomic_long_read(&tunnel->stats.rx_errors)); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1516 | } |
| 1517 | |
| 1518 | static void pppol2tp_seq_session_show(struct seq_file *m, void *v) |
| 1519 | { |
| 1520 | struct l2tp_session *session = v; |
| 1521 | struct l2tp_tunnel *tunnel = session->tunnel; |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 1522 | unsigned char state; |
| 1523 | char user_data_ok; |
| 1524 | struct sock *sk; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1525 | u32 ip = 0; |
| 1526 | u16 port = 0; |
| 1527 | |
| 1528 | if (tunnel->sock) { |
| 1529 | struct inet_sock *inet = inet_sk(tunnel->sock); |
Tom Parkin | b71a61c | 2020-07-22 17:32:05 +0100 | [diff] [blame] | 1530 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1531 | ip = ntohl(inet->inet_saddr); |
| 1532 | port = ntohs(inet->inet_sport); |
| 1533 | } |
| 1534 | |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 1535 | sk = pppol2tp_session_get_sock(session); |
| 1536 | if (sk) { |
| 1537 | state = sk->sk_state; |
| 1538 | user_data_ok = (session == sk->sk_user_data) ? 'Y' : 'N'; |
| 1539 | } else { |
| 1540 | state = 0; |
| 1541 | user_data_ok = 'N'; |
| 1542 | } |
| 1543 | |
Tom Parkin | 9f7da9a | 2020-07-22 17:32:07 +0100 | [diff] [blame] | 1544 | seq_printf(m, " SESSION '%s' %08X/%d %04X/%04X -> %04X/%04X %d %c\n", |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1545 | session->name, ip, port, |
| 1546 | tunnel->tunnel_id, |
| 1547 | session->session_id, |
| 1548 | tunnel->peer_tunnel_id, |
| 1549 | session->peer_session_id, |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 1550 | state, user_data_ok); |
Guillaume Nault | 789141b | 2018-08-03 12:38:37 +0200 | [diff] [blame] | 1551 | seq_printf(m, " 0/0/%c/%c/%s %08x %u\n", |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1552 | session->recv_seq ? 'R' : '-', |
| 1553 | session->send_seq ? 'S' : '-', |
| 1554 | session->lns_mode ? "LNS" : "LAC", |
Tom Parkin | eee049c | 2020-08-22 15:59:08 +0100 | [diff] [blame] | 1555 | 0, |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1556 | jiffies_to_msecs(session->reorder_timeout)); |
Tom Parkin | 7b7c071 | 2013-03-19 06:11:22 +0000 | [diff] [blame] | 1557 | seq_printf(m, " %hu/%hu %ld/%ld/%ld %ld/%ld/%ld\n", |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1558 | session->nr, session->ns, |
Tom Parkin | 7b7c071 | 2013-03-19 06:11:22 +0000 | [diff] [blame] | 1559 | atomic_long_read(&session->stats.tx_packets), |
| 1560 | atomic_long_read(&session->stats.tx_bytes), |
| 1561 | atomic_long_read(&session->stats.tx_errors), |
| 1562 | atomic_long_read(&session->stats.rx_packets), |
| 1563 | atomic_long_read(&session->stats.rx_bytes), |
| 1564 | atomic_long_read(&session->stats.rx_errors)); |
James Chapman | 9345471 | 2010-04-02 06:18:44 +0000 | [diff] [blame] | 1565 | |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 1566 | if (sk) { |
| 1567 | struct pppox_sock *po = pppox_sk(sk); |
| 1568 | |
James Chapman | 9345471 | 2010-04-02 06:18:44 +0000 | [diff] [blame] | 1569 | seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan)); |
Guillaume Nault | ee40fb2e | 2017-10-27 16:51:52 +0200 | [diff] [blame] | 1570 | sock_put(sk); |
| 1571 | } |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1572 | } |
| 1573 | |
| 1574 | static int pppol2tp_seq_show(struct seq_file *m, void *v) |
| 1575 | { |
| 1576 | struct pppol2tp_seq_data *pd = v; |
| 1577 | |
| 1578 | /* display header on line 1 */ |
| 1579 | if (v == SEQ_START_TOKEN) { |
| 1580 | seq_puts(m, "PPPoL2TP driver info, " PPPOL2TP_DRV_VERSION "\n"); |
| 1581 | seq_puts(m, "TUNNEL name, user-data-ok session-count\n"); |
| 1582 | seq_puts(m, " debug tx-pkts/bytes/errs rx-pkts/bytes/errs\n"); |
Tom Parkin | 9f7da9a | 2020-07-22 17:32:07 +0100 | [diff] [blame] | 1583 | seq_puts(m, " SESSION name, addr/port src-tid/sid dest-tid/sid state user-data-ok\n"); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1584 | seq_puts(m, " mtu/mru/rcvseq/sendseq/lns debug reorderto\n"); |
| 1585 | seq_puts(m, " nr/ns tx-pkts/bytes/errs rx-pkts/bytes/errs\n"); |
| 1586 | goto out; |
| 1587 | } |
| 1588 | |
Guillaume Nault | 8349440 | 2018-04-25 19:54:14 +0200 | [diff] [blame] | 1589 | if (!pd->session) |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1590 | pppol2tp_seq_tunnel_show(m, pd->tunnel); |
Guillaume Nault | 8349440 | 2018-04-25 19:54:14 +0200 | [diff] [blame] | 1591 | else |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1592 | pppol2tp_seq_session_show(m, pd->session); |
| 1593 | |
| 1594 | out: |
| 1595 | return 0; |
| 1596 | } |
| 1597 | |
| 1598 | static const struct seq_operations pppol2tp_seq_ops = { |
| 1599 | .start = pppol2tp_seq_start, |
| 1600 | .next = pppol2tp_seq_next, |
| 1601 | .stop = pppol2tp_seq_stop, |
| 1602 | .show = pppol2tp_seq_show, |
| 1603 | }; |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1604 | #endif /* CONFIG_PROC_FS */ |
| 1605 | |
| 1606 | /***************************************************************************** |
| 1607 | * Network namespace |
| 1608 | *****************************************************************************/ |
| 1609 | |
| 1610 | static __net_init int pppol2tp_init_net(struct net *net) |
| 1611 | { |
| 1612 | struct proc_dir_entry *pde; |
| 1613 | int err = 0; |
| 1614 | |
Christoph Hellwig | c350637 | 2018-04-10 19:42:55 +0200 | [diff] [blame] | 1615 | pde = proc_create_net("pppol2tp", 0444, net->proc_net, |
Tom Parkin | 8ce9825a | 2020-07-22 17:32:08 +0100 | [diff] [blame] | 1616 | &pppol2tp_seq_ops, sizeof(struct pppol2tp_seq_data)); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1617 | if (!pde) { |
| 1618 | err = -ENOMEM; |
| 1619 | goto out; |
| 1620 | } |
| 1621 | |
| 1622 | out: |
| 1623 | return err; |
| 1624 | } |
| 1625 | |
| 1626 | static __net_exit void pppol2tp_exit_net(struct net *net) |
| 1627 | { |
Gao feng | ece31ff | 2013-02-18 01:34:56 +0000 | [diff] [blame] | 1628 | remove_proc_entry("pppol2tp", net->proc_net); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1629 | } |
| 1630 | |
| 1631 | static struct pernet_operations pppol2tp_net_ops = { |
| 1632 | .init = pppol2tp_init_net, |
| 1633 | .exit = pppol2tp_exit_net, |
| 1634 | .id = &pppol2tp_net_id, |
| 1635 | }; |
| 1636 | |
| 1637 | /***************************************************************************** |
| 1638 | * Init and cleanup |
| 1639 | *****************************************************************************/ |
| 1640 | |
| 1641 | static const struct proto_ops pppol2tp_ops = { |
| 1642 | .family = AF_PPPOX, |
| 1643 | .owner = THIS_MODULE, |
| 1644 | .release = pppol2tp_release, |
| 1645 | .bind = sock_no_bind, |
| 1646 | .connect = pppol2tp_connect, |
| 1647 | .socketpair = sock_no_socketpair, |
| 1648 | .accept = sock_no_accept, |
| 1649 | .getname = pppol2tp_getname, |
Linus Torvalds | a11e1d4 | 2018-06-28 09:43:44 -0700 | [diff] [blame] | 1650 | .poll = datagram_poll, |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1651 | .listen = sock_no_listen, |
| 1652 | .shutdown = sock_no_shutdown, |
| 1653 | .setsockopt = pppol2tp_setsockopt, |
| 1654 | .getsockopt = pppol2tp_getsockopt, |
| 1655 | .sendmsg = pppol2tp_sendmsg, |
| 1656 | .recvmsg = pppol2tp_recvmsg, |
| 1657 | .mmap = sock_no_mmap, |
| 1658 | .ioctl = pppox_ioctl, |
Arnd Bergmann | 055d882 | 2019-07-30 21:25:20 +0200 | [diff] [blame] | 1659 | #ifdef CONFIG_COMPAT |
| 1660 | .compat_ioctl = pppox_compat_ioctl, |
| 1661 | #endif |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1662 | }; |
| 1663 | |
Eric Dumazet | 756e64a | 2010-09-21 06:43:54 +0000 | [diff] [blame] | 1664 | static const struct pppox_proto pppol2tp_proto = { |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1665 | .create = pppol2tp_create, |
Wei Yongjun | e1558a9 | 2013-07-02 09:02:07 +0800 | [diff] [blame] | 1666 | .ioctl = pppol2tp_ioctl, |
| 1667 | .owner = THIS_MODULE, |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1668 | }; |
| 1669 | |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 1670 | #ifdef CONFIG_L2TP_V3 |
| 1671 | |
| 1672 | static const struct l2tp_nl_cmd_ops pppol2tp_nl_cmd_ops = { |
| 1673 | .session_create = pppol2tp_session_create, |
Tom Parkin | cf2f5c8 | 2013-03-19 06:11:21 +0000 | [diff] [blame] | 1674 | .session_delete = l2tp_session_delete, |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 1675 | }; |
| 1676 | |
| 1677 | #endif /* CONFIG_L2TP_V3 */ |
| 1678 | |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1679 | static int __init pppol2tp_init(void) |
| 1680 | { |
| 1681 | int err; |
| 1682 | |
| 1683 | err = register_pernet_device(&pppol2tp_net_ops); |
| 1684 | if (err) |
| 1685 | goto out; |
| 1686 | |
| 1687 | err = proto_register(&pppol2tp_sk_proto, 0); |
| 1688 | if (err) |
| 1689 | goto out_unregister_pppol2tp_pernet; |
| 1690 | |
| 1691 | err = register_pppox_proto(PX_PROTO_OL2TP, &pppol2tp_proto); |
| 1692 | if (err) |
| 1693 | goto out_unregister_pppol2tp_proto; |
| 1694 | |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 1695 | #ifdef CONFIG_L2TP_V3 |
| 1696 | err = l2tp_nl_register_ops(L2TP_PWTYPE_PPP, &pppol2tp_nl_cmd_ops); |
| 1697 | if (err) |
| 1698 | goto out_unregister_pppox; |
| 1699 | #endif |
| 1700 | |
Joe Perches | a4ca44f | 2012-05-16 09:55:56 +0000 | [diff] [blame] | 1701 | pr_info("PPPoL2TP kernel driver, %s\n", PPPOL2TP_DRV_VERSION); |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1702 | |
| 1703 | out: |
| 1704 | return err; |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 1705 | |
| 1706 | #ifdef CONFIG_L2TP_V3 |
| 1707 | out_unregister_pppox: |
| 1708 | unregister_pppox_proto(PX_PROTO_OL2TP); |
| 1709 | #endif |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1710 | out_unregister_pppol2tp_proto: |
| 1711 | proto_unregister(&pppol2tp_sk_proto); |
| 1712 | out_unregister_pppol2tp_pernet: |
| 1713 | unregister_pernet_device(&pppol2tp_net_ops); |
| 1714 | goto out; |
| 1715 | } |
| 1716 | |
| 1717 | static void __exit pppol2tp_exit(void) |
| 1718 | { |
James Chapman | 309795f | 2010-04-02 06:19:10 +0000 | [diff] [blame] | 1719 | #ifdef CONFIG_L2TP_V3 |
| 1720 | l2tp_nl_unregister_ops(L2TP_PWTYPE_PPP); |
| 1721 | #endif |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1722 | unregister_pppox_proto(PX_PROTO_OL2TP); |
| 1723 | proto_unregister(&pppol2tp_sk_proto); |
| 1724 | unregister_pernet_device(&pppol2tp_net_ops); |
| 1725 | } |
| 1726 | |
| 1727 | module_init(pppol2tp_init); |
| 1728 | module_exit(pppol2tp_exit); |
| 1729 | |
| 1730 | MODULE_AUTHOR("James Chapman <jchapman@katalix.com>"); |
| 1731 | MODULE_DESCRIPTION("PPP over L2TP over UDP"); |
| 1732 | MODULE_LICENSE("GPL"); |
| 1733 | MODULE_VERSION(PPPOL2TP_DRV_VERSION); |
Guillaume Nault | 681b4d8 | 2015-12-02 16:27:39 +0100 | [diff] [blame] | 1734 | MODULE_ALIAS_NET_PF_PROTO(PF_PPPOX, PX_PROTO_OL2TP); |
Guillaume Nault | 249ee81 | 2017-04-03 13:23:15 +0200 | [diff] [blame] | 1735 | MODULE_ALIAS_L2TP_PWTYPE(7); |