blob: 1404bc1c1bb73366e12f9d61dfd3a27697b4281f [file] [log] [blame]
James Chapmanfd558d12010-04-02 06:18:33 +00001/*****************************************************************************
2 * Linux PPP over L2TP (PPPoX/PPPoL2TP) Sockets
3 *
4 * PPPoX --- Generic PPP encapsulation socket family
5 * PPPoL2TP --- PPP over L2TP (RFC 2661)
6 *
7 * Version: 2.0.0
8 *
9 * Authors: James Chapman (jchapman@katalix.com)
10 *
11 * Based on original work by Martijn van Oosterhout <kleptog@svana.org>
12 *
13 * License:
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
18 *
19 */
20
21/* This driver handles only L2TP data frames; control frames are handled by a
22 * userspace application.
23 *
24 * To send data in an L2TP session, userspace opens a PPPoL2TP socket and
25 * attaches it to a bound UDP socket with local tunnel_id / session_id and
26 * peer tunnel_id / session_id set. Data can then be sent or received using
27 * regular socket sendmsg() / recvmsg() calls. Kernel parameters of the socket
28 * can be read or modified using ioctl() or [gs]etsockopt() calls.
29 *
30 * When a PPPoL2TP socket is connected with local and peer session_id values
31 * zero, the socket is treated as a special tunnel management socket.
32 *
33 * Here's example userspace code to create a socket for sending/receiving data
34 * over an L2TP session:-
35 *
36 * struct sockaddr_pppol2tp sax;
37 * int fd;
38 * int session_fd;
39 *
40 * fd = socket(AF_PPPOX, SOCK_DGRAM, PX_PROTO_OL2TP);
41 *
42 * sax.sa_family = AF_PPPOX;
43 * sax.sa_protocol = PX_PROTO_OL2TP;
44 * sax.pppol2tp.fd = tunnel_fd; // bound UDP socket
45 * sax.pppol2tp.addr.sin_addr.s_addr = addr->sin_addr.s_addr;
46 * sax.pppol2tp.addr.sin_port = addr->sin_port;
47 * sax.pppol2tp.addr.sin_family = AF_INET;
48 * sax.pppol2tp.s_tunnel = tunnel_id;
49 * sax.pppol2tp.s_session = session_id;
50 * sax.pppol2tp.d_tunnel = peer_tunnel_id;
51 * sax.pppol2tp.d_session = peer_session_id;
52 *
53 * session_fd = connect(fd, (struct sockaddr *)&sax, sizeof(sax));
54 *
55 * A pppd plugin that allows PPP traffic to be carried over L2TP using
56 * this driver is available from the OpenL2TP project at
57 * http://openl2tp.sourceforge.net.
58 */
59
Joe Perchesa4ca44f2012-05-16 09:55:56 +000060#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
61
James Chapmanfd558d12010-04-02 06:18:33 +000062#include <linux/module.h>
63#include <linux/string.h>
64#include <linux/list.h>
65#include <linux/uaccess.h>
66
67#include <linux/kernel.h>
68#include <linux/spinlock.h>
69#include <linux/kthread.h>
70#include <linux/sched.h>
71#include <linux/slab.h>
72#include <linux/errno.h>
73#include <linux/jiffies.h>
74
75#include <linux/netdevice.h>
76#include <linux/net.h>
77#include <linux/inetdevice.h>
78#include <linux/skbuff.h>
79#include <linux/init.h>
80#include <linux/ip.h>
81#include <linux/udp.h>
82#include <linux/if_pppox.h>
83#include <linux/if_pppol2tp.h>
84#include <net/sock.h>
85#include <linux/ppp_channel.h>
86#include <linux/ppp_defs.h>
Paul Mackerras4b32da2b2012-03-04 12:56:55 +000087#include <linux/ppp-ioctl.h>
James Chapmanfd558d12010-04-02 06:18:33 +000088#include <linux/file.h>
89#include <linux/hash.h>
90#include <linux/sort.h>
91#include <linux/proc_fs.h>
James Chapman309795f2010-04-02 06:19:10 +000092#include <linux/l2tp.h>
James Chapmanfd558d12010-04-02 06:18:33 +000093#include <linux/nsproxy.h>
94#include <net/net_namespace.h>
95#include <net/netns/generic.h>
96#include <net/dst.h>
97#include <net/ip.h>
98#include <net/udp.h>
99#include <net/xfrm.h>
Tom Parkincf2f5c82013-03-19 06:11:21 +0000100#include <net/inet_common.h>
James Chapmanfd558d12010-04-02 06:18:33 +0000101
102#include <asm/byteorder.h>
Arun Sharma600634972011-07-26 16:09:06 -0700103#include <linux/atomic.h>
James Chapmanfd558d12010-04-02 06:18:33 +0000104
105#include "l2tp_core.h"
106
107#define PPPOL2TP_DRV_VERSION "V2.0"
108
109/* Space for UDP, L2TP and PPP headers */
110#define PPPOL2TP_HEADER_OVERHEAD 40
111
James Chapmanfd558d12010-04-02 06:18:33 +0000112/* Number of bytes to build transmit L2TP headers.
113 * Unfortunately the size is different depending on whether sequence numbers
114 * are enabled.
115 */
116#define PPPOL2TP_L2TP_HDR_SIZE_SEQ 10
117#define PPPOL2TP_L2TP_HDR_SIZE_NOSEQ 6
118
119/* Private data of each session. This data lives at the end of struct
120 * l2tp_session, referenced via session->priv[].
121 */
122struct pppol2tp_session {
123 int owner; /* pid that opened the socket */
124
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200125 struct mutex sk_lock; /* Protects .sk */
126 struct sock __rcu *sk; /* Pointer to the session
James Chapmanfd558d12010-04-02 06:18:33 +0000127 * PPPoX socket */
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200128 struct sock *__sk; /* Copy of .sk, for cleanup */
129 struct rcu_head rcu; /* For asynchronous release */
James Chapmanfd558d12010-04-02 06:18:33 +0000130 int flags; /* accessed by PPPIOCGFLAGS.
131 * Unused. */
132};
133
134static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb);
135
stephen hemmingerd7100da2010-08-04 07:34:36 +0000136static const struct ppp_channel_ops pppol2tp_chan_ops = {
137 .start_xmit = pppol2tp_xmit,
138};
139
James Chapmanfd558d12010-04-02 06:18:33 +0000140static const struct proto_ops pppol2tp_ops;
141
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200142/* Retrieves the pppol2tp socket associated to a session.
143 * A reference is held on the returned socket, so this function must be paired
144 * with sock_put().
145 */
146static struct sock *pppol2tp_session_get_sock(struct l2tp_session *session)
147{
148 struct pppol2tp_session *ps = l2tp_session_priv(session);
149 struct sock *sk;
150
151 rcu_read_lock();
152 sk = rcu_dereference(ps->sk);
153 if (sk)
154 sock_hold(sk);
155 rcu_read_unlock();
156
157 return sk;
158}
159
James Chapmanfd558d12010-04-02 06:18:33 +0000160/* Helpers to obtain tunnel/session contexts from sockets.
161 */
162static inline struct l2tp_session *pppol2tp_sock_to_session(struct sock *sk)
163{
164 struct l2tp_session *session;
165
166 if (sk == NULL)
167 return NULL;
168
169 sock_hold(sk);
170 session = (struct l2tp_session *)(sk->sk_user_data);
171 if (session == NULL) {
172 sock_put(sk);
173 goto out;
174 }
175
176 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
177
178out:
179 return session;
180}
181
182/*****************************************************************************
183 * Receive data handling
184 *****************************************************************************/
185
186static int pppol2tp_recv_payload_hook(struct sk_buff *skb)
187{
188 /* Skip PPP header, if present. In testing, Microsoft L2TP clients
189 * don't send the PPP header (PPP header compression enabled), but
190 * other clients can include the header. So we cope with both cases
191 * here. The PPP header is always FF03 when using L2TP.
192 *
193 * Note that skb->data[] isn't dereferenced from a u16 ptr here since
194 * the field may be unaligned.
195 */
196 if (!pskb_may_pull(skb, 2))
197 return 1;
198
Gao Feng54c151d2016-08-22 22:50:02 +0800199 if ((skb->data[0] == PPP_ALLSTATIONS) && (skb->data[1] == PPP_UI))
James Chapmanfd558d12010-04-02 06:18:33 +0000200 skb_pull(skb, 2);
201
202 return 0;
203}
204
205/* Receive message. This is the recvmsg for the PPPoL2TP socket.
206 */
Ying Xue1b784142015-03-02 15:37:48 +0800207static int pppol2tp_recvmsg(struct socket *sock, struct msghdr *msg,
208 size_t len, int flags)
James Chapmanfd558d12010-04-02 06:18:33 +0000209{
210 int err;
211 struct sk_buff *skb;
212 struct sock *sk = sock->sk;
213
214 err = -EIO;
215 if (sk->sk_state & PPPOX_BOUND)
216 goto end;
217
James Chapmanfd558d12010-04-02 06:18:33 +0000218 err = 0;
219 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
220 flags & MSG_DONTWAIT, &err);
221 if (!skb)
222 goto end;
223
224 if (len > skb->len)
225 len = skb->len;
226 else if (len < skb->len)
227 msg->msg_flags |= MSG_TRUNC;
228
David S. Miller51f3d022014-11-05 16:46:40 -0500229 err = skb_copy_datagram_msg(skb, 0, msg, len);
James Chapmanfd558d12010-04-02 06:18:33 +0000230 if (likely(err == 0))
231 err = len;
232
233 kfree_skb(skb);
234end:
235 return err;
236}
237
238static void pppol2tp_recv(struct l2tp_session *session, struct sk_buff *skb, int data_len)
239{
240 struct pppol2tp_session *ps = l2tp_session_priv(session);
241 struct sock *sk = NULL;
242
243 /* If the socket is bound, send it in to PPP's input queue. Otherwise
244 * queue it on the session socket.
245 */
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200246 rcu_read_lock();
247 sk = rcu_dereference(ps->sk);
James Chapmanfd558d12010-04-02 06:18:33 +0000248 if (sk == NULL)
249 goto no_sock;
250
251 if (sk->sk_state & PPPOX_BOUND) {
252 struct pppox_sock *po;
Guillaume Nault98f40b32015-12-29 13:06:59 +0100253
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +0000254 l2tp_dbg(session, L2TP_MSG_DATA,
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000255 "%s: recv %d byte data frame, passing to ppp\n",
256 session->name, data_len);
James Chapmanfd558d12010-04-02 06:18:33 +0000257
James Chapmanfd558d12010-04-02 06:18:33 +0000258 po = pppox_sk(sk);
259 ppp_input(&po->chan, skb);
260 } else {
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +0000261 l2tp_dbg(session, L2TP_MSG_DATA,
Guillaume Nault9e9cb622014-03-06 11:15:10 +0100262 "%s: recv %d byte data frame, passing to L2TP socket\n",
263 session->name, data_len);
James Chapmanfd558d12010-04-02 06:18:33 +0000264
Guillaume Nault9e9cb622014-03-06 11:15:10 +0100265 if (sock_queue_rcv_skb(sk, skb) < 0) {
266 atomic_long_inc(&session->stats.rx_errors);
267 kfree_skb(skb);
268 }
James Chapmanfd558d12010-04-02 06:18:33 +0000269 }
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200270 rcu_read_unlock();
James Chapmanfd558d12010-04-02 06:18:33 +0000271
272 return;
273
274no_sock:
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200275 rcu_read_unlock();
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +0000276 l2tp_info(session, L2TP_MSG_DATA, "%s: no socket\n", session->name);
James Chapmanfd558d12010-04-02 06:18:33 +0000277 kfree_skb(skb);
278}
279
James Chapmanfd558d12010-04-02 06:18:33 +0000280/************************************************************************
281 * Transmit handling
282 ***********************************************************************/
283
James Chapmanfd558d12010-04-02 06:18:33 +0000284/* This is the sendmsg for the PPPoL2TP pppol2tp_session socket. We come here
285 * when a user application does a sendmsg() on the session socket. L2TP and
286 * PPP headers must be inserted into the user's data.
287 */
Ying Xue1b784142015-03-02 15:37:48 +0800288static int pppol2tp_sendmsg(struct socket *sock, struct msghdr *m,
James Chapmanfd558d12010-04-02 06:18:33 +0000289 size_t total_len)
290{
James Chapmanfd558d12010-04-02 06:18:33 +0000291 struct sock *sk = sock->sk;
292 struct sk_buff *skb;
293 int error;
294 struct l2tp_session *session;
295 struct l2tp_tunnel *tunnel;
James Chapman0d767512010-04-02 06:19:00 +0000296 int uhlen;
James Chapmanfd558d12010-04-02 06:18:33 +0000297
298 error = -ENOTCONN;
299 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
300 goto error;
301
302 /* Get session and tunnel contexts */
303 error = -EBADF;
304 session = pppol2tp_sock_to_session(sk);
305 if (session == NULL)
306 goto error;
307
Guillaume Nault7198c772017-11-11 06:06:31 +0900308 tunnel = session->tunnel;
James Chapmanfd558d12010-04-02 06:18:33 +0000309
James Chapman0d767512010-04-02 06:19:00 +0000310 uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0;
311
James Chapmanfd558d12010-04-02 06:18:33 +0000312 /* Allocate a socket buffer */
313 error = -ENOMEM;
314 skb = sock_wmalloc(sk, NET_SKB_PAD + sizeof(struct iphdr) +
James Chapman0d767512010-04-02 06:19:00 +0000315 uhlen + session->hdr_len +
Gao Feng54c151d2016-08-22 22:50:02 +0800316 2 + total_len, /* 2 bytes for PPP_ALLSTATIONS & PPP_UI */
James Chapmanfd558d12010-04-02 06:18:33 +0000317 0, GFP_KERNEL);
318 if (!skb)
Guillaume Nault7198c772017-11-11 06:06:31 +0900319 goto error_put_sess;
James Chapmanfd558d12010-04-02 06:18:33 +0000320
321 /* Reserve space for headers. */
322 skb_reserve(skb, NET_SKB_PAD);
323 skb_reset_network_header(skb);
324 skb_reserve(skb, sizeof(struct iphdr));
325 skb_reset_transport_header(skb);
James Chapman0d767512010-04-02 06:19:00 +0000326 skb_reserve(skb, uhlen);
James Chapmanfd558d12010-04-02 06:18:33 +0000327
328 /* Add PPP header */
Gao Feng54c151d2016-08-22 22:50:02 +0800329 skb->data[0] = PPP_ALLSTATIONS;
330 skb->data[1] = PPP_UI;
James Chapmanfd558d12010-04-02 06:18:33 +0000331 skb_put(skb, 2);
332
333 /* Copy user data into skb */
Al Viro6ce8e9c2014-04-06 21:25:44 -0400334 error = memcpy_from_msg(skb_put(skb, total_len), m, total_len);
James Chapmanfd558d12010-04-02 06:18:33 +0000335 if (error < 0) {
336 kfree_skb(skb);
Guillaume Nault7198c772017-11-11 06:06:31 +0900337 goto error_put_sess;
James Chapmanfd558d12010-04-02 06:18:33 +0000338 }
James Chapmanfd558d12010-04-02 06:18:33 +0000339
Eric Dumazet455cc322013-10-10 06:30:09 -0700340 local_bh_disable();
James Chapmanfd558d12010-04-02 06:18:33 +0000341 l2tp_xmit_skb(session, skb, session->hdr_len);
Eric Dumazet455cc322013-10-10 06:30:09 -0700342 local_bh_enable();
James Chapmanfd558d12010-04-02 06:18:33 +0000343
Guillaume Nault8b82547e33e2013-03-01 05:02:02 +0000344 sock_put(sk);
James Chapmanfd558d12010-04-02 06:18:33 +0000345
Guillaume Naulta6f79d02013-06-12 16:07:36 +0200346 return total_len;
James Chapmanfd558d12010-04-02 06:18:33 +0000347
James Chapmanfd558d12010-04-02 06:18:33 +0000348error_put_sess:
349 sock_put(sk);
350error:
351 return error;
352}
353
354/* Transmit function called by generic PPP driver. Sends PPP frame
355 * over PPPoL2TP socket.
356 *
357 * This is almost the same as pppol2tp_sendmsg(), but rather than
358 * being called with a msghdr from userspace, it is called with a skb
359 * from the kernel.
360 *
361 * The supplied skb from ppp doesn't have enough headroom for the
362 * insertion of L2TP, UDP and IP headers so we need to allocate more
363 * headroom in the skb. This will create a cloned skb. But we must be
364 * careful in the error case because the caller will expect to free
365 * the skb it supplied, not our cloned skb. So we take care to always
366 * leave the original skb unfreed if we return an error.
367 */
368static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb)
369{
James Chapmanfd558d12010-04-02 06:18:33 +0000370 struct sock *sk = (struct sock *) chan->private;
James Chapmanfd558d12010-04-02 06:18:33 +0000371 struct l2tp_session *session;
372 struct l2tp_tunnel *tunnel;
Eric Dumazet09df57c2011-10-07 05:45:57 +0000373 int uhlen, headroom;
James Chapmanfd558d12010-04-02 06:18:33 +0000374
375 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
376 goto abort;
377
378 /* Get session and tunnel contexts from the socket */
379 session = pppol2tp_sock_to_session(sk);
380 if (session == NULL)
381 goto abort;
382
Guillaume Nault7198c772017-11-11 06:06:31 +0900383 tunnel = session->tunnel;
James Chapmanfd558d12010-04-02 06:18:33 +0000384
Eric Dumazet09df57c2011-10-07 05:45:57 +0000385 uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0;
386 headroom = NET_SKB_PAD +
387 sizeof(struct iphdr) + /* IP header */
388 uhlen + /* UDP header (if L2TP_ENCAPTYPE_UDP) */
389 session->hdr_len + /* L2TP header */
Gao Feng54c151d2016-08-22 22:50:02 +0800390 2; /* 2 bytes for PPP_ALLSTATIONS & PPP_UI */
Eric Dumazet09df57c2011-10-07 05:45:57 +0000391 if (skb_cow_head(skb, headroom))
Guillaume Nault7198c772017-11-11 06:06:31 +0900392 goto abort_put_sess;
James Chapmanfd558d12010-04-02 06:18:33 +0000393
James Chapmanfd558d12010-04-02 06:18:33 +0000394 /* Setup PPP header */
Gao Feng54c151d2016-08-22 22:50:02 +0800395 __skb_push(skb, 2);
396 skb->data[0] = PPP_ALLSTATIONS;
397 skb->data[1] = PPP_UI;
James Chapmanfd558d12010-04-02 06:18:33 +0000398
Eric Dumazet455cc322013-10-10 06:30:09 -0700399 local_bh_disable();
James Chapmane0d44352010-04-02 06:18:54 +0000400 l2tp_xmit_skb(session, skb, session->hdr_len);
Eric Dumazet455cc322013-10-10 06:30:09 -0700401 local_bh_enable();
James Chapmanfd558d12010-04-02 06:18:33 +0000402
James Chapmanfd558d12010-04-02 06:18:33 +0000403 sock_put(sk);
Guillaume Nault7198c772017-11-11 06:06:31 +0900404
James Chapmanfd558d12010-04-02 06:18:33 +0000405 return 1;
406
James Chapmanfd558d12010-04-02 06:18:33 +0000407abort_put_sess:
408 sock_put(sk);
409abort:
410 /* Free the original skb */
411 kfree_skb(skb);
412 return 1;
413}
414
415/*****************************************************************************
416 * Session (and tunnel control) socket create/destroy.
417 *****************************************************************************/
418
James Chapmand02ba2a2018-02-23 17:45:46 +0000419static void pppol2tp_put_sk(struct rcu_head *head)
420{
421 struct pppol2tp_session *ps;
422
423 ps = container_of(head, typeof(*ps), rcu);
424 sock_put(ps->__sk);
425}
426
James Chapmanfd558d12010-04-02 06:18:33 +0000427/* Called by l2tp_core when a session socket is being closed.
428 */
429static void pppol2tp_session_close(struct l2tp_session *session)
430{
James Chapmand02ba2a2018-02-23 17:45:46 +0000431 struct pppol2tp_session *ps;
James Chapmanfd558d12010-04-02 06:18:33 +0000432
James Chapmand02ba2a2018-02-23 17:45:46 +0000433 ps = l2tp_session_priv(session);
434 mutex_lock(&ps->sk_lock);
435 ps->__sk = rcu_dereference_protected(ps->sk,
436 lockdep_is_held(&ps->sk_lock));
437 RCU_INIT_POINTER(ps->sk, NULL);
438 if (ps->__sk)
439 call_rcu(&ps->rcu, pppol2tp_put_sk);
440 mutex_unlock(&ps->sk_lock);
James Chapmanfd558d12010-04-02 06:18:33 +0000441}
442
443/* Really kill the session socket. (Called from sock_put() if
444 * refcnt == 0.)
445 */
446static void pppol2tp_session_destruct(struct sock *sk)
447{
Tom Parkinf6e16b22013-03-19 06:11:23 +0000448 struct l2tp_session *session = sk->sk_user_data;
Guillaume Naulte91793b2017-03-29 08:45:29 +0200449
450 skb_queue_purge(&sk->sk_receive_queue);
451 skb_queue_purge(&sk->sk_write_queue);
452
Tom Parkinf6e16b22013-03-19 06:11:23 +0000453 if (session) {
James Chapmanfd558d12010-04-02 06:18:33 +0000454 sk->sk_user_data = NULL;
455 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
456 l2tp_session_dec_refcount(session);
457 }
James Chapmanfd558d12010-04-02 06:18:33 +0000458}
459
460/* Called when the PPPoX socket (session) is closed.
461 */
462static int pppol2tp_release(struct socket *sock)
463{
464 struct sock *sk = sock->sk;
465 struct l2tp_session *session;
466 int error;
467
468 if (!sk)
469 return 0;
470
471 error = -EBADF;
472 lock_sock(sk);
473 if (sock_flag(sk, SOCK_DEAD) != 0)
474 goto error;
475
476 pppox_unbind_sock(sk);
477
478 /* Signal the death of the socket. */
479 sk->sk_state = PPPOX_DEAD;
480 sock_orphan(sk);
481 sock->sk = NULL;
482
James Chapmand02ba2a2018-02-23 17:45:46 +0000483 /* If the socket is associated with a session,
484 * l2tp_session_delete will call pppol2tp_session_close which
485 * will drop the session's ref on the socket.
486 */
James Chapmanfd558d12010-04-02 06:18:33 +0000487 session = pppol2tp_sock_to_session(sk);
James Chapmand02ba2a2018-02-23 17:45:46 +0000488 if (session) {
Guillaume Naultf98be6c2017-10-27 16:51:52 +0200489 l2tp_session_delete(session);
James Chapmand02ba2a2018-02-23 17:45:46 +0000490 /* drop the ref obtained by pppol2tp_sock_to_session */
491 sock_put(sk);
James Chapmanfd558d12010-04-02 06:18:33 +0000492 }
James Chapmand02ba2a2018-02-23 17:45:46 +0000493
James Chapmanfd558d12010-04-02 06:18:33 +0000494 release_sock(sk);
495
496 /* This will delete the session context via
497 * pppol2tp_session_destruct() if the socket's refcnt drops to
498 * zero.
499 */
500 sock_put(sk);
501
502 return 0;
503
504error:
505 release_sock(sk);
506 return error;
507}
508
509static struct proto pppol2tp_sk_proto = {
510 .name = "PPPOL2TP",
511 .owner = THIS_MODULE,
512 .obj_size = sizeof(struct pppox_sock),
513};
514
515static int pppol2tp_backlog_recv(struct sock *sk, struct sk_buff *skb)
516{
517 int rc;
518
519 rc = l2tp_udp_encap_recv(sk, skb);
520 if (rc)
521 kfree_skb(skb);
522
523 return NET_RX_SUCCESS;
524}
525
526/* socket() handler. Initialize a new struct sock.
527 */
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500528static int pppol2tp_create(struct net *net, struct socket *sock, int kern)
James Chapmanfd558d12010-04-02 06:18:33 +0000529{
530 int error = -ENOMEM;
531 struct sock *sk;
532
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500533 sk = sk_alloc(net, PF_PPPOX, GFP_KERNEL, &pppol2tp_sk_proto, kern);
James Chapmanfd558d12010-04-02 06:18:33 +0000534 if (!sk)
535 goto out;
536
537 sock_init_data(sock, sk);
538
539 sock->state = SS_UNCONNECTED;
540 sock->ops = &pppol2tp_ops;
541
542 sk->sk_backlog_rcv = pppol2tp_backlog_recv;
543 sk->sk_protocol = PX_PROTO_OL2TP;
544 sk->sk_family = PF_PPPOX;
545 sk->sk_state = PPPOX_NONE;
546 sk->sk_type = SOCK_STREAM;
547 sk->sk_destruct = pppol2tp_session_destruct;
548
549 error = 0;
550
551out:
552 return error;
553}
554
Javier Martinez Canillas9dd79942016-09-09 08:43:17 -0400555#if IS_ENABLED(CONFIG_L2TP_DEBUGFS)
James Chapman0ad66142010-04-02 06:19:33 +0000556static void pppol2tp_show(struct seq_file *m, void *arg)
557{
558 struct l2tp_session *session = arg;
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200559 struct sock *sk;
James Chapman0ad66142010-04-02 06:19:33 +0000560
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200561 sk = pppol2tp_session_get_sock(session);
562 if (sk) {
563 struct pppox_sock *po = pppox_sk(sk);
564
565 seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan));
566 sock_put(sk);
James Chapman0ad66142010-04-02 06:19:33 +0000567 }
568}
569#endif
570
Guillaume Naultf98be6c2017-10-27 16:51:52 +0200571static void pppol2tp_session_init(struct l2tp_session *session)
572{
573 struct pppol2tp_session *ps;
574 struct dst_entry *dst;
575
576 session->recv_skb = pppol2tp_recv;
577 session->session_close = pppol2tp_session_close;
578#if IS_ENABLED(CONFIG_L2TP_DEBUGFS)
579 session->show = pppol2tp_show;
580#endif
581
582 ps = l2tp_session_priv(session);
583 mutex_init(&ps->sk_lock);
Guillaume Naultf98be6c2017-10-27 16:51:52 +0200584 ps->owner = current->pid;
585
586 /* If PMTU discovery was enabled, use the MTU that was discovered */
587 dst = sk_dst_get(session->tunnel->sock);
588 if (dst) {
589 u32 pmtu = dst_mtu(dst);
590
591 if (pmtu) {
592 session->mtu = pmtu - PPPOL2TP_HEADER_OVERHEAD;
593 session->mru = pmtu - PPPOL2TP_HEADER_OVERHEAD;
594 }
595 dst_release(dst);
596 }
597}
598
James Chapmanfd558d12010-04-02 06:18:33 +0000599/* connect() handler. Attach a PPPoX socket to a tunnel UDP socket
600 */
601static int pppol2tp_connect(struct socket *sock, struct sockaddr *uservaddr,
602 int sockaddr_len, int flags)
603{
604 struct sock *sk = sock->sk;
605 struct sockaddr_pppol2tp *sp = (struct sockaddr_pppol2tp *) uservaddr;
606 struct pppox_sock *po = pppox_sk(sk);
607 struct l2tp_session *session = NULL;
608 struct l2tp_tunnel *tunnel;
609 struct pppol2tp_session *ps;
James Chapmanfd558d12010-04-02 06:18:33 +0000610 struct l2tp_session_cfg cfg = { 0, };
611 int error = 0;
James Chapmane0d44352010-04-02 06:18:54 +0000612 u32 tunnel_id, peer_tunnel_id;
613 u32 session_id, peer_session_id;
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200614 bool drop_refcnt = false;
Guillaume Naultf9e56ba2017-10-30 17:58:58 +0100615 bool drop_tunnel = false;
James Chapmane0d44352010-04-02 06:18:54 +0000616 int ver = 2;
617 int fd;
James Chapmanfd558d12010-04-02 06:18:33 +0000618
619 lock_sock(sk);
620
621 error = -EINVAL;
622 if (sp->sa_protocol != PX_PROTO_OL2TP)
623 goto end;
624
625 /* Check for already bound sockets */
626 error = -EBUSY;
627 if (sk->sk_state & PPPOX_CONNECTED)
628 goto end;
629
630 /* We don't supporting rebinding anyway */
631 error = -EALREADY;
632 if (sk->sk_user_data)
633 goto end; /* socket is already attached */
634
James Chapmanb79585f2012-04-29 21:48:50 +0000635 /* Get params from socket address. Handle L2TPv2 and L2TPv3.
636 * This is nasty because there are different sockaddr_pppol2tp
637 * structs for L2TPv2, L2TPv3, over IPv4 and IPv6. We use
638 * the sockaddr size to determine which structure the caller
639 * is using.
640 */
641 peer_tunnel_id = 0;
James Chapmane0d44352010-04-02 06:18:54 +0000642 if (sockaddr_len == sizeof(struct sockaddr_pppol2tp)) {
643 fd = sp->pppol2tp.fd;
644 tunnel_id = sp->pppol2tp.s_tunnel;
645 peer_tunnel_id = sp->pppol2tp.d_tunnel;
646 session_id = sp->pppol2tp.s_session;
647 peer_session_id = sp->pppol2tp.d_session;
648 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3)) {
James Chapmanb79585f2012-04-29 21:48:50 +0000649 struct sockaddr_pppol2tpv3 *sp3 =
650 (struct sockaddr_pppol2tpv3 *) sp;
James Chapmane0d44352010-04-02 06:18:54 +0000651 ver = 3;
652 fd = sp3->pppol2tp.fd;
653 tunnel_id = sp3->pppol2tp.s_tunnel;
654 peer_tunnel_id = sp3->pppol2tp.d_tunnel;
655 session_id = sp3->pppol2tp.s_session;
656 peer_session_id = sp3->pppol2tp.d_session;
James Chapmanb79585f2012-04-29 21:48:50 +0000657 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpin6)) {
658 struct sockaddr_pppol2tpin6 *sp6 =
659 (struct sockaddr_pppol2tpin6 *) sp;
660 fd = sp6->pppol2tp.fd;
661 tunnel_id = sp6->pppol2tp.s_tunnel;
662 peer_tunnel_id = sp6->pppol2tp.d_tunnel;
663 session_id = sp6->pppol2tp.s_session;
664 peer_session_id = sp6->pppol2tp.d_session;
665 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3in6)) {
666 struct sockaddr_pppol2tpv3in6 *sp6 =
667 (struct sockaddr_pppol2tpv3in6 *) sp;
668 ver = 3;
669 fd = sp6->pppol2tp.fd;
670 tunnel_id = sp6->pppol2tp.s_tunnel;
671 peer_tunnel_id = sp6->pppol2tp.d_tunnel;
672 session_id = sp6->pppol2tp.s_session;
673 peer_session_id = sp6->pppol2tp.d_session;
James Chapmane0d44352010-04-02 06:18:54 +0000674 } else {
675 error = -EINVAL;
676 goto end; /* bad socket address */
677 }
678
679 /* Don't bind if tunnel_id is 0 */
James Chapmanfd558d12010-04-02 06:18:33 +0000680 error = -EINVAL;
James Chapmane0d44352010-04-02 06:18:54 +0000681 if (tunnel_id == 0)
James Chapmanfd558d12010-04-02 06:18:33 +0000682 goto end;
683
Guillaume Naultf9e56ba2017-10-30 17:58:58 +0100684 tunnel = l2tp_tunnel_get(sock_net(sk), tunnel_id);
685 if (tunnel)
686 drop_tunnel = true;
James Chapman309795f2010-04-02 06:19:10 +0000687
James Chapmane0d44352010-04-02 06:18:54 +0000688 /* Special case: create tunnel context if session_id and
689 * peer_session_id is 0. Otherwise look up tunnel using supplied
James Chapmanfd558d12010-04-02 06:18:33 +0000690 * tunnel id.
691 */
James Chapmane0d44352010-04-02 06:18:54 +0000692 if ((session_id == 0) && (peer_session_id == 0)) {
James Chapman309795f2010-04-02 06:19:10 +0000693 if (tunnel == NULL) {
694 struct l2tp_tunnel_cfg tcfg = {
695 .encap = L2TP_ENCAPTYPE_UDP,
696 .debug = 0,
697 };
698 error = l2tp_tunnel_create(sock_net(sk), fd, ver, tunnel_id, peer_tunnel_id, &tcfg, &tunnel);
699 if (error < 0)
700 goto end;
Guillaume Nault6b9f3422018-04-10 21:01:12 +0200701
702 l2tp_tunnel_inc_refcount(tunnel);
703 error = l2tp_tunnel_register(tunnel, sock_net(sk),
704 &tcfg);
705 if (error < 0) {
706 kfree(tunnel);
707 goto end;
708 }
709 drop_tunnel = true;
James Chapman309795f2010-04-02 06:19:10 +0000710 }
James Chapmanfd558d12010-04-02 06:18:33 +0000711 } else {
James Chapmanfd558d12010-04-02 06:18:33 +0000712 /* Error if we can't find the tunnel */
713 error = -ENOENT;
714 if (tunnel == NULL)
715 goto end;
716
717 /* Error if socket is not prepped */
718 if (tunnel->sock == NULL)
719 goto end;
720 }
721
722 if (tunnel->recv_payload_hook == NULL)
723 tunnel->recv_payload_hook = pppol2tp_recv_payload_hook;
724
James Chapmanb79585f2012-04-29 21:48:50 +0000725 if (tunnel->peer_tunnel_id == 0)
726 tunnel->peer_tunnel_id = peer_tunnel_id;
James Chapmanfd558d12010-04-02 06:18:33 +0000727
Guillaume Naulta4346212017-10-31 17:36:42 +0100728 session = l2tp_session_get(sock_net(sk), tunnel, session_id);
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200729 if (session) {
730 drop_refcnt = true;
731 ps = l2tp_session_priv(session);
James Chapman309795f2010-04-02 06:19:10 +0000732
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200733 /* Using a pre-existing session is fine as long as it hasn't
734 * been connected yet.
735 */
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200736 mutex_lock(&ps->sk_lock);
737 if (rcu_dereference_protected(ps->sk,
738 lockdep_is_held(&ps->sk_lock))) {
739 mutex_unlock(&ps->sk_lock);
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200740 error = -EEXIST;
741 goto end;
742 }
James Chapman309795f2010-04-02 06:19:10 +0000743 } else {
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200744 /* Default MTU must allow space for UDP/L2TP/PPP headers */
745 cfg.mtu = 1500 - PPPOL2TP_HEADER_OVERHEAD;
746 cfg.mru = cfg.mtu;
James Chapman309795f2010-04-02 06:19:10 +0000747
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200748 session = l2tp_session_create(sizeof(struct pppol2tp_session),
749 tunnel, session_id,
750 peer_session_id, &cfg);
751 if (IS_ERR(session)) {
752 error = PTR_ERR(session);
James Chapman309795f2010-04-02 06:19:10 +0000753 goto end;
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200754 }
Guillaume Nault3953ae72017-10-27 16:51:50 +0200755
Guillaume Naultf98be6c2017-10-27 16:51:52 +0200756 pppol2tp_session_init(session);
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200757 ps = l2tp_session_priv(session);
Guillaume Nault3953ae72017-10-27 16:51:50 +0200758 l2tp_session_inc_refcount(session);
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200759
760 mutex_lock(&ps->sk_lock);
Guillaume Nault3953ae72017-10-27 16:51:50 +0200761 error = l2tp_session_register(session, tunnel);
762 if (error < 0) {
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200763 mutex_unlock(&ps->sk_lock);
Guillaume Nault3953ae72017-10-27 16:51:50 +0200764 kfree(session);
765 goto end;
766 }
767 drop_refcnt = true;
James Chapman309795f2010-04-02 06:19:10 +0000768 }
769
James Chapmanfd558d12010-04-02 06:18:33 +0000770 /* Special case: if source & dest session_id == 0x0000, this
771 * socket is being created to manage the tunnel. Just set up
772 * the internal context for use by ioctl() and sockopt()
773 * handlers.
774 */
775 if ((session->session_id == 0) &&
776 (session->peer_session_id == 0)) {
777 error = 0;
778 goto out_no_ppp;
779 }
780
781 /* The only header we need to worry about is the L2TP
782 * header. This size is different depending on whether
783 * sequence numbers are enabled for the data channel.
784 */
785 po->chan.hdrlen = PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
786
787 po->chan.private = sk;
788 po->chan.ops = &pppol2tp_chan_ops;
789 po->chan.mtu = session->mtu;
790
791 error = ppp_register_net_channel(sock_net(sk), &po->chan);
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200792 if (error) {
793 mutex_unlock(&ps->sk_lock);
James Chapmanfd558d12010-04-02 06:18:33 +0000794 goto end;
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200795 }
James Chapmanfd558d12010-04-02 06:18:33 +0000796
797out_no_ppp:
798 /* This is how we get the session context from the socket. */
James Chapmand02ba2a2018-02-23 17:45:46 +0000799 sock_hold(sk);
James Chapmanfd558d12010-04-02 06:18:33 +0000800 sk->sk_user_data = session;
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200801 rcu_assign_pointer(ps->sk, sk);
802 mutex_unlock(&ps->sk_lock);
803
Guillaume Naultf98be6c2017-10-27 16:51:52 +0200804 /* Keep the reference we've grabbed on the session: sk doesn't expect
805 * the session to disappear. pppol2tp_session_destruct() is responsible
806 * for dropping it.
807 */
808 drop_refcnt = false;
809
James Chapmanfd558d12010-04-02 06:18:33 +0000810 sk->sk_state = PPPOX_CONNECTED;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +0000811 l2tp_info(session, L2TP_MSG_CONTROL, "%s: created\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000812 session->name);
James Chapmanfd558d12010-04-02 06:18:33 +0000813
814end:
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200815 if (drop_refcnt)
816 l2tp_session_dec_refcount(session);
Guillaume Naultf9e56ba2017-10-30 17:58:58 +0100817 if (drop_tunnel)
818 l2tp_tunnel_dec_refcount(tunnel);
James Chapmanfd558d12010-04-02 06:18:33 +0000819 release_sock(sk);
820
821 return error;
822}
823
James Chapman309795f2010-04-02 06:19:10 +0000824#ifdef CONFIG_L2TP_V3
825
Guillaume Naultf026bc22017-09-01 17:58:51 +0200826/* Called when creating sessions via the netlink interface. */
827static int pppol2tp_session_create(struct net *net, struct l2tp_tunnel *tunnel,
828 u32 session_id, u32 peer_session_id,
829 struct l2tp_session_cfg *cfg)
James Chapman309795f2010-04-02 06:19:10 +0000830{
831 int error;
James Chapman309795f2010-04-02 06:19:10 +0000832 struct l2tp_session *session;
James Chapman309795f2010-04-02 06:19:10 +0000833
James Chapman309795f2010-04-02 06:19:10 +0000834 /* Error if tunnel socket is not prepped */
Guillaume Naultf026bc22017-09-01 17:58:51 +0200835 if (!tunnel->sock) {
836 error = -ENOENT;
Guillaume Nault3953ae72017-10-27 16:51:50 +0200837 goto err;
Guillaume Naultf026bc22017-09-01 17:58:51 +0200838 }
James Chapman309795f2010-04-02 06:19:10 +0000839
James Chapman309795f2010-04-02 06:19:10 +0000840 /* Default MTU values. */
841 if (cfg->mtu == 0)
842 cfg->mtu = 1500 - PPPOL2TP_HEADER_OVERHEAD;
843 if (cfg->mru == 0)
844 cfg->mru = cfg->mtu;
845
846 /* Allocate and initialize a new session context. */
James Chapman309795f2010-04-02 06:19:10 +0000847 session = l2tp_session_create(sizeof(struct pppol2tp_session),
848 tunnel, session_id,
849 peer_session_id, cfg);
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200850 if (IS_ERR(session)) {
851 error = PTR_ERR(session);
Guillaume Nault3953ae72017-10-27 16:51:50 +0200852 goto err;
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200853 }
James Chapman309795f2010-04-02 06:19:10 +0000854
Guillaume Naultf98be6c2017-10-27 16:51:52 +0200855 pppol2tp_session_init(session);
James Chapman309795f2010-04-02 06:19:10 +0000856
Guillaume Nault3953ae72017-10-27 16:51:50 +0200857 error = l2tp_session_register(session, tunnel);
858 if (error < 0)
859 goto err_sess;
James Chapman309795f2010-04-02 06:19:10 +0000860
Guillaume Nault3953ae72017-10-27 16:51:50 +0200861 return 0;
James Chapman309795f2010-04-02 06:19:10 +0000862
Guillaume Nault3953ae72017-10-27 16:51:50 +0200863err_sess:
864 kfree(session);
865err:
James Chapman309795f2010-04-02 06:19:10 +0000866 return error;
867}
868
James Chapman309795f2010-04-02 06:19:10 +0000869#endif /* CONFIG_L2TP_V3 */
870
James Chapmanfd558d12010-04-02 06:18:33 +0000871/* getname() support.
872 */
873static int pppol2tp_getname(struct socket *sock, struct sockaddr *uaddr,
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +0100874 int peer)
James Chapmanfd558d12010-04-02 06:18:33 +0000875{
James Chapmane0d44352010-04-02 06:18:54 +0000876 int len = 0;
James Chapmanfd558d12010-04-02 06:18:33 +0000877 int error = 0;
878 struct l2tp_session *session;
879 struct l2tp_tunnel *tunnel;
880 struct sock *sk = sock->sk;
881 struct inet_sock *inet;
882 struct pppol2tp_session *pls;
883
884 error = -ENOTCONN;
885 if (sk == NULL)
886 goto end;
Gao Feng56cff472016-08-19 13:36:23 +0800887 if (!(sk->sk_state & PPPOX_CONNECTED))
James Chapmanfd558d12010-04-02 06:18:33 +0000888 goto end;
889
890 error = -EBADF;
891 session = pppol2tp_sock_to_session(sk);
892 if (session == NULL)
893 goto end;
894
895 pls = l2tp_session_priv(session);
Guillaume Nault7198c772017-11-11 06:06:31 +0900896 tunnel = session->tunnel;
James Chapmanfd558d12010-04-02 06:18:33 +0000897
Benjamin LaHaisebbdb32c2012-03-20 03:57:54 +0000898 inet = inet_sk(tunnel->sock);
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000899 if ((tunnel->version == 2) && (tunnel->sock->sk_family == AF_INET)) {
James Chapmane0d44352010-04-02 06:18:54 +0000900 struct sockaddr_pppol2tp sp;
901 len = sizeof(sp);
902 memset(&sp, 0, len);
903 sp.sa_family = AF_PPPOX;
904 sp.sa_protocol = PX_PROTO_OL2TP;
905 sp.pppol2tp.fd = tunnel->fd;
906 sp.pppol2tp.pid = pls->owner;
907 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
908 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
909 sp.pppol2tp.s_session = session->session_id;
910 sp.pppol2tp.d_session = session->peer_session_id;
911 sp.pppol2tp.addr.sin_family = AF_INET;
912 sp.pppol2tp.addr.sin_port = inet->inet_dport;
913 sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr;
914 memcpy(uaddr, &sp, len);
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000915#if IS_ENABLED(CONFIG_IPV6)
916 } else if ((tunnel->version == 2) &&
917 (tunnel->sock->sk_family == AF_INET6)) {
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000918 struct sockaddr_pppol2tpin6 sp;
Eric Dumazetefe42082013-10-03 15:42:29 -0700919
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000920 len = sizeof(sp);
921 memset(&sp, 0, len);
922 sp.sa_family = AF_PPPOX;
923 sp.sa_protocol = PX_PROTO_OL2TP;
924 sp.pppol2tp.fd = tunnel->fd;
925 sp.pppol2tp.pid = pls->owner;
926 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
927 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
928 sp.pppol2tp.s_session = session->session_id;
929 sp.pppol2tp.d_session = session->peer_session_id;
930 sp.pppol2tp.addr.sin6_family = AF_INET6;
931 sp.pppol2tp.addr.sin6_port = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -0700932 memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr,
933 sizeof(tunnel->sock->sk_v6_daddr));
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000934 memcpy(uaddr, &sp, len);
935 } else if ((tunnel->version == 3) &&
936 (tunnel->sock->sk_family == AF_INET6)) {
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000937 struct sockaddr_pppol2tpv3in6 sp;
Eric Dumazetefe42082013-10-03 15:42:29 -0700938
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000939 len = sizeof(sp);
940 memset(&sp, 0, len);
941 sp.sa_family = AF_PPPOX;
942 sp.sa_protocol = PX_PROTO_OL2TP;
943 sp.pppol2tp.fd = tunnel->fd;
944 sp.pppol2tp.pid = pls->owner;
945 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
946 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
947 sp.pppol2tp.s_session = session->session_id;
948 sp.pppol2tp.d_session = session->peer_session_id;
949 sp.pppol2tp.addr.sin6_family = AF_INET6;
950 sp.pppol2tp.addr.sin6_port = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -0700951 memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr,
952 sizeof(tunnel->sock->sk_v6_daddr));
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000953 memcpy(uaddr, &sp, len);
954#endif
James Chapmane0d44352010-04-02 06:18:54 +0000955 } else if (tunnel->version == 3) {
956 struct sockaddr_pppol2tpv3 sp;
957 len = sizeof(sp);
958 memset(&sp, 0, len);
959 sp.sa_family = AF_PPPOX;
960 sp.sa_protocol = PX_PROTO_OL2TP;
961 sp.pppol2tp.fd = tunnel->fd;
962 sp.pppol2tp.pid = pls->owner;
963 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
964 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
965 sp.pppol2tp.s_session = session->session_id;
966 sp.pppol2tp.d_session = session->peer_session_id;
967 sp.pppol2tp.addr.sin_family = AF_INET;
968 sp.pppol2tp.addr.sin_port = inet->inet_dport;
969 sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr;
970 memcpy(uaddr, &sp, len);
971 }
James Chapmanfd558d12010-04-02 06:18:33 +0000972
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +0100973 error = len;
James Chapmanfd558d12010-04-02 06:18:33 +0000974
James Chapmanfd558d12010-04-02 06:18:33 +0000975 sock_put(sk);
James Chapmanfd558d12010-04-02 06:18:33 +0000976end:
977 return error;
978}
979
980/****************************************************************************
981 * ioctl() handlers.
982 *
983 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
984 * sockets. However, in order to control kernel tunnel features, we allow
985 * userspace to create a special "tunnel" PPPoX socket which is used for
986 * control only. Tunnel PPPoX sockets have session_id == 0 and simply allow
987 * the user application to issue L2TP setsockopt(), getsockopt() and ioctl()
988 * calls.
989 ****************************************************************************/
990
991static void pppol2tp_copy_stats(struct pppol2tp_ioc_stats *dest,
992 struct l2tp_stats *stats)
993{
Tom Parkin7b7c0712013-03-19 06:11:22 +0000994 dest->tx_packets = atomic_long_read(&stats->tx_packets);
995 dest->tx_bytes = atomic_long_read(&stats->tx_bytes);
996 dest->tx_errors = atomic_long_read(&stats->tx_errors);
997 dest->rx_packets = atomic_long_read(&stats->rx_packets);
998 dest->rx_bytes = atomic_long_read(&stats->rx_bytes);
999 dest->rx_seq_discards = atomic_long_read(&stats->rx_seq_discards);
1000 dest->rx_oos_packets = atomic_long_read(&stats->rx_oos_packets);
1001 dest->rx_errors = atomic_long_read(&stats->rx_errors);
James Chapmanfd558d12010-04-02 06:18:33 +00001002}
1003
1004/* Session ioctl helper.
1005 */
1006static int pppol2tp_session_ioctl(struct l2tp_session *session,
1007 unsigned int cmd, unsigned long arg)
1008{
1009 struct ifreq ifr;
1010 int err = 0;
1011 struct sock *sk;
1012 int val = (int) arg;
1013 struct pppol2tp_session *ps = l2tp_session_priv(session);
1014 struct l2tp_tunnel *tunnel = session->tunnel;
1015 struct pppol2tp_ioc_stats stats;
1016
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001017 l2tp_dbg(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001018 "%s: pppol2tp_session_ioctl(cmd=%#x, arg=%#lx)\n",
1019 session->name, cmd, arg);
James Chapmanfd558d12010-04-02 06:18:33 +00001020
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001021 sk = pppol2tp_session_get_sock(session);
Guillaume Nault5903f592017-10-13 19:22:35 +02001022 if (!sk)
1023 return -EBADR;
1024
James Chapmanfd558d12010-04-02 06:18:33 +00001025 switch (cmd) {
1026 case SIOCGIFMTU:
1027 err = -ENXIO;
1028 if (!(sk->sk_state & PPPOX_CONNECTED))
1029 break;
1030
1031 err = -EFAULT;
1032 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1033 break;
1034 ifr.ifr_mtu = session->mtu;
1035 if (copy_to_user((void __user *) arg, &ifr, sizeof(struct ifreq)))
1036 break;
1037
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001038 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get mtu=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001039 session->name, session->mtu);
James Chapmanfd558d12010-04-02 06:18:33 +00001040 err = 0;
1041 break;
1042
1043 case SIOCSIFMTU:
1044 err = -ENXIO;
1045 if (!(sk->sk_state & PPPOX_CONNECTED))
1046 break;
1047
1048 err = -EFAULT;
1049 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1050 break;
1051
1052 session->mtu = ifr.ifr_mtu;
1053
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001054 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set mtu=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001055 session->name, session->mtu);
James Chapmanfd558d12010-04-02 06:18:33 +00001056 err = 0;
1057 break;
1058
1059 case PPPIOCGMRU:
1060 err = -ENXIO;
1061 if (!(sk->sk_state & PPPOX_CONNECTED))
1062 break;
1063
1064 err = -EFAULT;
1065 if (put_user(session->mru, (int __user *) arg))
1066 break;
1067
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001068 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get mru=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001069 session->name, session->mru);
James Chapmanfd558d12010-04-02 06:18:33 +00001070 err = 0;
1071 break;
1072
1073 case PPPIOCSMRU:
1074 err = -ENXIO;
1075 if (!(sk->sk_state & PPPOX_CONNECTED))
1076 break;
1077
1078 err = -EFAULT;
1079 if (get_user(val, (int __user *) arg))
1080 break;
1081
1082 session->mru = val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001083 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set mru=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001084 session->name, session->mru);
James Chapmanfd558d12010-04-02 06:18:33 +00001085 err = 0;
1086 break;
1087
1088 case PPPIOCGFLAGS:
1089 err = -EFAULT;
1090 if (put_user(ps->flags, (int __user *) arg))
1091 break;
1092
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001093 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get flags=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001094 session->name, ps->flags);
James Chapmanfd558d12010-04-02 06:18:33 +00001095 err = 0;
1096 break;
1097
1098 case PPPIOCSFLAGS:
1099 err = -EFAULT;
1100 if (get_user(val, (int __user *) arg))
1101 break;
1102 ps->flags = val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001103 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set flags=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001104 session->name, ps->flags);
James Chapmanfd558d12010-04-02 06:18:33 +00001105 err = 0;
1106 break;
1107
1108 case PPPIOCGL2TPSTATS:
1109 err = -ENXIO;
1110 if (!(sk->sk_state & PPPOX_CONNECTED))
1111 break;
1112
1113 memset(&stats, 0, sizeof(stats));
1114 stats.tunnel_id = tunnel->tunnel_id;
1115 stats.session_id = session->session_id;
1116 pppol2tp_copy_stats(&stats, &session->stats);
1117 if (copy_to_user((void __user *) arg, &stats,
1118 sizeof(stats)))
1119 break;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001120 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get L2TP stats\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001121 session->name);
James Chapmanfd558d12010-04-02 06:18:33 +00001122 err = 0;
1123 break;
1124
1125 default:
1126 err = -ENOSYS;
1127 break;
1128 }
1129
1130 sock_put(sk);
1131
1132 return err;
1133}
1134
1135/* Tunnel ioctl helper.
1136 *
1137 * Note the special handling for PPPIOCGL2TPSTATS below. If the ioctl data
1138 * specifies a session_id, the session ioctl handler is called. This allows an
1139 * application to retrieve session stats via a tunnel socket.
1140 */
1141static int pppol2tp_tunnel_ioctl(struct l2tp_tunnel *tunnel,
1142 unsigned int cmd, unsigned long arg)
1143{
1144 int err = 0;
1145 struct sock *sk;
1146 struct pppol2tp_ioc_stats stats;
1147
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001148 l2tp_dbg(tunnel, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001149 "%s: pppol2tp_tunnel_ioctl(cmd=%#x, arg=%#lx)\n",
1150 tunnel->name, cmd, arg);
James Chapmanfd558d12010-04-02 06:18:33 +00001151
1152 sk = tunnel->sock;
1153 sock_hold(sk);
1154
1155 switch (cmd) {
1156 case PPPIOCGL2TPSTATS:
1157 err = -ENXIO;
1158 if (!(sk->sk_state & PPPOX_CONNECTED))
1159 break;
1160
1161 if (copy_from_user(&stats, (void __user *) arg,
1162 sizeof(stats))) {
1163 err = -EFAULT;
1164 break;
1165 }
1166 if (stats.session_id != 0) {
1167 /* resend to session ioctl handler */
1168 struct l2tp_session *session =
Guillaume Nault57377d62017-03-31 13:02:26 +02001169 l2tp_session_get(sock_net(sk), tunnel,
Guillaume Naulta4346212017-10-31 17:36:42 +01001170 stats.session_id);
Guillaume Nault57377d62017-03-31 13:02:26 +02001171
1172 if (session) {
1173 err = pppol2tp_session_ioctl(session, cmd,
1174 arg);
Guillaume Nault57377d62017-03-31 13:02:26 +02001175 l2tp_session_dec_refcount(session);
1176 } else {
James Chapmanfd558d12010-04-02 06:18:33 +00001177 err = -EBADR;
Guillaume Nault57377d62017-03-31 13:02:26 +02001178 }
James Chapmanfd558d12010-04-02 06:18:33 +00001179 break;
1180 }
1181#ifdef CONFIG_XFRM
1182 stats.using_ipsec = (sk->sk_policy[0] || sk->sk_policy[1]) ? 1 : 0;
1183#endif
1184 pppol2tp_copy_stats(&stats, &tunnel->stats);
1185 if (copy_to_user((void __user *) arg, &stats, sizeof(stats))) {
1186 err = -EFAULT;
1187 break;
1188 }
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001189 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: get L2TP stats\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001190 tunnel->name);
James Chapmanfd558d12010-04-02 06:18:33 +00001191 err = 0;
1192 break;
1193
1194 default:
1195 err = -ENOSYS;
1196 break;
1197 }
1198
1199 sock_put(sk);
1200
1201 return err;
1202}
1203
1204/* Main ioctl() handler.
1205 * Dispatch to tunnel or session helpers depending on the socket.
1206 */
1207static int pppol2tp_ioctl(struct socket *sock, unsigned int cmd,
1208 unsigned long arg)
1209{
1210 struct sock *sk = sock->sk;
1211 struct l2tp_session *session;
1212 struct l2tp_tunnel *tunnel;
James Chapmanfd558d12010-04-02 06:18:33 +00001213 int err;
1214
1215 if (!sk)
1216 return 0;
1217
1218 err = -EBADF;
1219 if (sock_flag(sk, SOCK_DEAD) != 0)
1220 goto end;
1221
1222 err = -ENOTCONN;
1223 if ((sk->sk_user_data == NULL) ||
1224 (!(sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND))))
1225 goto end;
1226
1227 /* Get session context from the socket */
1228 err = -EBADF;
1229 session = pppol2tp_sock_to_session(sk);
1230 if (session == NULL)
1231 goto end;
1232
1233 /* Special case: if session's session_id is zero, treat ioctl as a
1234 * tunnel ioctl
1235 */
James Chapmanfd558d12010-04-02 06:18:33 +00001236 if ((session->session_id == 0) &&
1237 (session->peer_session_id == 0)) {
Guillaume Nault7198c772017-11-11 06:06:31 +09001238 tunnel = session->tunnel;
James Chapmanfd558d12010-04-02 06:18:33 +00001239 err = pppol2tp_tunnel_ioctl(tunnel, cmd, arg);
James Chapmanfd558d12010-04-02 06:18:33 +00001240 goto end_put_sess;
1241 }
1242
1243 err = pppol2tp_session_ioctl(session, cmd, arg);
1244
1245end_put_sess:
1246 sock_put(sk);
1247end:
1248 return err;
1249}
1250
1251/*****************************************************************************
1252 * setsockopt() / getsockopt() support.
1253 *
1254 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
1255 * sockets. In order to control kernel tunnel features, we allow userspace to
1256 * create a special "tunnel" PPPoX socket which is used for control only.
1257 * Tunnel PPPoX sockets have session_id == 0 and simply allow the user
1258 * application to issue L2TP setsockopt(), getsockopt() and ioctl() calls.
1259 *****************************************************************************/
1260
1261/* Tunnel setsockopt() helper.
1262 */
1263static int pppol2tp_tunnel_setsockopt(struct sock *sk,
1264 struct l2tp_tunnel *tunnel,
1265 int optname, int val)
1266{
1267 int err = 0;
1268
1269 switch (optname) {
1270 case PPPOL2TP_SO_DEBUG:
1271 tunnel->debug = val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001272 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: set debug=%x\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001273 tunnel->name, tunnel->debug);
James Chapmanfd558d12010-04-02 06:18:33 +00001274 break;
1275
1276 default:
1277 err = -ENOPROTOOPT;
1278 break;
1279 }
1280
1281 return err;
1282}
1283
1284/* Session setsockopt helper.
1285 */
1286static int pppol2tp_session_setsockopt(struct sock *sk,
1287 struct l2tp_session *session,
1288 int optname, int val)
1289{
1290 int err = 0;
James Chapmanfd558d12010-04-02 06:18:33 +00001291
1292 switch (optname) {
1293 case PPPOL2TP_SO_RECVSEQ:
1294 if ((val != 0) && (val != 1)) {
1295 err = -EINVAL;
1296 break;
1297 }
Asbjørn Sloth Tønnesen3f9b9772016-11-07 20:39:28 +00001298 session->recv_seq = !!val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001299 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001300 "%s: set recv_seq=%d\n",
1301 session->name, session->recv_seq);
James Chapmanfd558d12010-04-02 06:18:33 +00001302 break;
1303
1304 case PPPOL2TP_SO_SENDSEQ:
1305 if ((val != 0) && (val != 1)) {
1306 err = -EINVAL;
1307 break;
1308 }
Asbjørn Sloth Tønnesen3f9b9772016-11-07 20:39:28 +00001309 session->send_seq = !!val;
James Chapmanfd558d12010-04-02 06:18:33 +00001310 {
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001311 struct pppox_sock *po = pppox_sk(sk);
1312
James Chapmanfd558d12010-04-02 06:18:33 +00001313 po->chan.hdrlen = val ? PPPOL2TP_L2TP_HDR_SIZE_SEQ :
1314 PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
1315 }
Guillaume Naultbb5016e2014-03-06 11:14:30 +01001316 l2tp_session_set_header_len(session, session->tunnel->version);
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001317 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001318 "%s: set send_seq=%d\n",
1319 session->name, session->send_seq);
James Chapmanfd558d12010-04-02 06:18:33 +00001320 break;
1321
1322 case PPPOL2TP_SO_LNSMODE:
1323 if ((val != 0) && (val != 1)) {
1324 err = -EINVAL;
1325 break;
1326 }
Asbjørn Sloth Tønnesen3f9b9772016-11-07 20:39:28 +00001327 session->lns_mode = !!val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001328 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001329 "%s: set lns_mode=%d\n",
1330 session->name, session->lns_mode);
James Chapmanfd558d12010-04-02 06:18:33 +00001331 break;
1332
1333 case PPPOL2TP_SO_DEBUG:
1334 session->debug = val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001335 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set debug=%x\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001336 session->name, session->debug);
James Chapmanfd558d12010-04-02 06:18:33 +00001337 break;
1338
1339 case PPPOL2TP_SO_REORDERTO:
1340 session->reorder_timeout = msecs_to_jiffies(val);
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001341 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001342 "%s: set reorder_timeout=%d\n",
1343 session->name, session->reorder_timeout);
James Chapmanfd558d12010-04-02 06:18:33 +00001344 break;
1345
1346 default:
1347 err = -ENOPROTOOPT;
1348 break;
1349 }
1350
1351 return err;
1352}
1353
1354/* Main setsockopt() entry point.
1355 * Does API checks, then calls either the tunnel or session setsockopt
1356 * handler, according to whether the PPPoL2TP socket is a for a regular
1357 * session or the special tunnel type.
1358 */
1359static int pppol2tp_setsockopt(struct socket *sock, int level, int optname,
1360 char __user *optval, unsigned int optlen)
1361{
1362 struct sock *sk = sock->sk;
1363 struct l2tp_session *session;
1364 struct l2tp_tunnel *tunnel;
James Chapmanfd558d12010-04-02 06:18:33 +00001365 int val;
1366 int err;
1367
1368 if (level != SOL_PPPOL2TP)
Sasha Levin3cf521f2014-07-14 17:02:31 -07001369 return -EINVAL;
James Chapmanfd558d12010-04-02 06:18:33 +00001370
1371 if (optlen < sizeof(int))
1372 return -EINVAL;
1373
1374 if (get_user(val, (int __user *)optval))
1375 return -EFAULT;
1376
1377 err = -ENOTCONN;
1378 if (sk->sk_user_data == NULL)
1379 goto end;
1380
1381 /* Get session context from the socket */
1382 err = -EBADF;
1383 session = pppol2tp_sock_to_session(sk);
1384 if (session == NULL)
1385 goto end;
1386
1387 /* Special case: if session_id == 0x0000, treat as operation on tunnel
1388 */
James Chapmanfd558d12010-04-02 06:18:33 +00001389 if ((session->session_id == 0) &&
1390 (session->peer_session_id == 0)) {
Guillaume Nault7198c772017-11-11 06:06:31 +09001391 tunnel = session->tunnel;
James Chapmanfd558d12010-04-02 06:18:33 +00001392 err = pppol2tp_tunnel_setsockopt(sk, tunnel, optname, val);
Guillaume Nault7198c772017-11-11 06:06:31 +09001393 } else {
James Chapmanfd558d12010-04-02 06:18:33 +00001394 err = pppol2tp_session_setsockopt(sk, session, optname, val);
Guillaume Nault7198c772017-11-11 06:06:31 +09001395 }
James Chapmanfd558d12010-04-02 06:18:33 +00001396
James Chapmanfd558d12010-04-02 06:18:33 +00001397 sock_put(sk);
1398end:
1399 return err;
1400}
1401
1402/* Tunnel getsockopt helper. Called with sock locked.
1403 */
1404static int pppol2tp_tunnel_getsockopt(struct sock *sk,
1405 struct l2tp_tunnel *tunnel,
1406 int optname, int *val)
1407{
1408 int err = 0;
1409
1410 switch (optname) {
1411 case PPPOL2TP_SO_DEBUG:
1412 *val = tunnel->debug;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001413 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: get debug=%x\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001414 tunnel->name, tunnel->debug);
James Chapmanfd558d12010-04-02 06:18:33 +00001415 break;
1416
1417 default:
1418 err = -ENOPROTOOPT;
1419 break;
1420 }
1421
1422 return err;
1423}
1424
1425/* Session getsockopt helper. Called with sock locked.
1426 */
1427static int pppol2tp_session_getsockopt(struct sock *sk,
1428 struct l2tp_session *session,
1429 int optname, int *val)
1430{
1431 int err = 0;
1432
1433 switch (optname) {
1434 case PPPOL2TP_SO_RECVSEQ:
1435 *val = session->recv_seq;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001436 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001437 "%s: get recv_seq=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001438 break;
1439
1440 case PPPOL2TP_SO_SENDSEQ:
1441 *val = session->send_seq;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001442 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001443 "%s: get send_seq=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001444 break;
1445
1446 case PPPOL2TP_SO_LNSMODE:
1447 *val = session->lns_mode;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001448 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001449 "%s: get lns_mode=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001450 break;
1451
1452 case PPPOL2TP_SO_DEBUG:
1453 *val = session->debug;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001454 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get debug=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001455 session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001456 break;
1457
1458 case PPPOL2TP_SO_REORDERTO:
1459 *val = (int) jiffies_to_msecs(session->reorder_timeout);
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001460 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001461 "%s: get reorder_timeout=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001462 break;
1463
1464 default:
1465 err = -ENOPROTOOPT;
1466 }
1467
1468 return err;
1469}
1470
1471/* Main getsockopt() entry point.
1472 * Does API checks, then calls either the tunnel or session getsockopt
1473 * handler, according to whether the PPPoX socket is a for a regular session
1474 * or the special tunnel type.
1475 */
Joe Perchese3192692012-06-03 17:41:40 +00001476static int pppol2tp_getsockopt(struct socket *sock, int level, int optname,
1477 char __user *optval, int __user *optlen)
James Chapmanfd558d12010-04-02 06:18:33 +00001478{
1479 struct sock *sk = sock->sk;
1480 struct l2tp_session *session;
1481 struct l2tp_tunnel *tunnel;
1482 int val, len;
1483 int err;
James Chapmanfd558d12010-04-02 06:18:33 +00001484
1485 if (level != SOL_PPPOL2TP)
Sasha Levin3cf521f2014-07-14 17:02:31 -07001486 return -EINVAL;
James Chapmanfd558d12010-04-02 06:18:33 +00001487
Joe Perchese3192692012-06-03 17:41:40 +00001488 if (get_user(len, optlen))
James Chapmanfd558d12010-04-02 06:18:33 +00001489 return -EFAULT;
1490
1491 len = min_t(unsigned int, len, sizeof(int));
1492
1493 if (len < 0)
1494 return -EINVAL;
1495
1496 err = -ENOTCONN;
1497 if (sk->sk_user_data == NULL)
1498 goto end;
1499
1500 /* Get the session context */
1501 err = -EBADF;
1502 session = pppol2tp_sock_to_session(sk);
1503 if (session == NULL)
1504 goto end;
1505
1506 /* Special case: if session_id == 0x0000, treat as operation on tunnel */
James Chapmanfd558d12010-04-02 06:18:33 +00001507 if ((session->session_id == 0) &&
1508 (session->peer_session_id == 0)) {
Guillaume Nault7198c772017-11-11 06:06:31 +09001509 tunnel = session->tunnel;
James Chapmanfd558d12010-04-02 06:18:33 +00001510 err = pppol2tp_tunnel_getsockopt(sk, tunnel, optname, &val);
Guillaume Nault321a52a2017-04-06 18:31:21 +02001511 if (err)
1512 goto end_put_sess;
1513 } else {
James Chapmanfd558d12010-04-02 06:18:33 +00001514 err = pppol2tp_session_getsockopt(sk, session, optname, &val);
Guillaume Nault321a52a2017-04-06 18:31:21 +02001515 if (err)
1516 goto end_put_sess;
1517 }
James Chapmanfd558d12010-04-02 06:18:33 +00001518
1519 err = -EFAULT;
Joe Perchese3192692012-06-03 17:41:40 +00001520 if (put_user(len, optlen))
James Chapmanfd558d12010-04-02 06:18:33 +00001521 goto end_put_sess;
1522
1523 if (copy_to_user((void __user *) optval, &val, len))
1524 goto end_put_sess;
1525
1526 err = 0;
1527
1528end_put_sess:
1529 sock_put(sk);
1530end:
1531 return err;
1532}
1533
1534/*****************************************************************************
1535 * /proc filesystem for debug
James Chapmanf7faffa2010-04-02 06:18:49 +00001536 * Since the original pppol2tp driver provided /proc/net/pppol2tp for
1537 * L2TPv2, we dump only L2TPv2 tunnels and sessions here.
James Chapmanfd558d12010-04-02 06:18:33 +00001538 *****************************************************************************/
1539
1540static unsigned int pppol2tp_net_id;
1541
1542#ifdef CONFIG_PROC_FS
1543
1544struct pppol2tp_seq_data {
1545 struct seq_net_private p;
1546 int tunnel_idx; /* current tunnel */
1547 int session_idx; /* index of session within current tunnel */
1548 struct l2tp_tunnel *tunnel;
1549 struct l2tp_session *session; /* NULL means get next tunnel */
1550};
1551
1552static void pppol2tp_next_tunnel(struct net *net, struct pppol2tp_seq_data *pd)
1553{
Guillaume Nault0e0c3fe2018-04-12 20:50:34 +02001554 /* Drop reference taken during previous invocation */
1555 if (pd->tunnel)
1556 l2tp_tunnel_dec_refcount(pd->tunnel);
1557
James Chapmanf7faffa2010-04-02 06:18:49 +00001558 for (;;) {
Guillaume Nault0e0c3fe2018-04-12 20:50:34 +02001559 pd->tunnel = l2tp_tunnel_get_nth(net, pd->tunnel_idx);
James Chapmanf7faffa2010-04-02 06:18:49 +00001560 pd->tunnel_idx++;
1561
Guillaume Nault0e0c3fe2018-04-12 20:50:34 +02001562 /* Only accept L2TPv2 tunnels */
1563 if (!pd->tunnel || pd->tunnel->version == 2)
1564 return;
James Chapmanf7faffa2010-04-02 06:18:49 +00001565
Guillaume Nault0e0c3fe2018-04-12 20:50:34 +02001566 l2tp_tunnel_dec_refcount(pd->tunnel);
James Chapmanf7faffa2010-04-02 06:18:49 +00001567 }
James Chapmanfd558d12010-04-02 06:18:33 +00001568}
1569
1570static void pppol2tp_next_session(struct net *net, struct pppol2tp_seq_data *pd)
1571{
Guillaume Naulta4346212017-10-31 17:36:42 +01001572 pd->session = l2tp_session_get_nth(pd->tunnel, pd->session_idx);
James Chapmanfd558d12010-04-02 06:18:33 +00001573 pd->session_idx++;
James Chapmanf7faffa2010-04-02 06:18:49 +00001574
James Chapmanfd558d12010-04-02 06:18:33 +00001575 if (pd->session == NULL) {
1576 pd->session_idx = 0;
1577 pppol2tp_next_tunnel(net, pd);
1578 }
1579}
1580
1581static void *pppol2tp_seq_start(struct seq_file *m, loff_t *offs)
1582{
1583 struct pppol2tp_seq_data *pd = SEQ_START_TOKEN;
1584 loff_t pos = *offs;
1585 struct net *net;
1586
1587 if (!pos)
1588 goto out;
1589
1590 BUG_ON(m->private == NULL);
1591 pd = m->private;
1592 net = seq_file_net(m);
1593
1594 if (pd->tunnel == NULL)
1595 pppol2tp_next_tunnel(net, pd);
1596 else
1597 pppol2tp_next_session(net, pd);
1598
1599 /* NULL tunnel and session indicates end of list */
1600 if ((pd->tunnel == NULL) && (pd->session == NULL))
1601 pd = NULL;
1602
1603out:
1604 return pd;
1605}
1606
1607static void *pppol2tp_seq_next(struct seq_file *m, void *v, loff_t *pos)
1608{
1609 (*pos)++;
1610 return NULL;
1611}
1612
1613static void pppol2tp_seq_stop(struct seq_file *p, void *v)
1614{
Guillaume Nault0e0c3fe2018-04-12 20:50:34 +02001615 struct pppol2tp_seq_data *pd = v;
1616
1617 if (!pd || pd == SEQ_START_TOKEN)
1618 return;
1619
1620 /* Drop reference taken by last invocation of pppol2tp_next_tunnel() */
Guillaume Nault5411b6182018-04-19 16:20:48 +02001621 if (pd->tunnel) {
Guillaume Nault0e0c3fe2018-04-12 20:50:34 +02001622 l2tp_tunnel_dec_refcount(pd->tunnel);
Guillaume Nault5411b6182018-04-19 16:20:48 +02001623 pd->tunnel = NULL;
1624 pd->session = NULL;
1625 }
James Chapmanfd558d12010-04-02 06:18:33 +00001626}
1627
1628static void pppol2tp_seq_tunnel_show(struct seq_file *m, void *v)
1629{
1630 struct l2tp_tunnel *tunnel = v;
1631
1632 seq_printf(m, "\nTUNNEL '%s', %c %d\n",
1633 tunnel->name,
1634 (tunnel == tunnel->sock->sk_user_data) ? 'Y' : 'N',
Reshetova, Elenafbea9e02017-07-04 15:52:57 +03001635 refcount_read(&tunnel->ref_count) - 1);
Tom Parkin7b7c0712013-03-19 06:11:22 +00001636 seq_printf(m, " %08x %ld/%ld/%ld %ld/%ld/%ld\n",
James Chapmanfd558d12010-04-02 06:18:33 +00001637 tunnel->debug,
Tom Parkin7b7c0712013-03-19 06:11:22 +00001638 atomic_long_read(&tunnel->stats.tx_packets),
1639 atomic_long_read(&tunnel->stats.tx_bytes),
1640 atomic_long_read(&tunnel->stats.tx_errors),
1641 atomic_long_read(&tunnel->stats.rx_packets),
1642 atomic_long_read(&tunnel->stats.rx_bytes),
1643 atomic_long_read(&tunnel->stats.rx_errors));
James Chapmanfd558d12010-04-02 06:18:33 +00001644}
1645
1646static void pppol2tp_seq_session_show(struct seq_file *m, void *v)
1647{
1648 struct l2tp_session *session = v;
1649 struct l2tp_tunnel *tunnel = session->tunnel;
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001650 unsigned char state;
1651 char user_data_ok;
1652 struct sock *sk;
James Chapmanfd558d12010-04-02 06:18:33 +00001653 u32 ip = 0;
1654 u16 port = 0;
1655
1656 if (tunnel->sock) {
1657 struct inet_sock *inet = inet_sk(tunnel->sock);
1658 ip = ntohl(inet->inet_saddr);
1659 port = ntohs(inet->inet_sport);
1660 }
1661
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001662 sk = pppol2tp_session_get_sock(session);
1663 if (sk) {
1664 state = sk->sk_state;
1665 user_data_ok = (session == sk->sk_user_data) ? 'Y' : 'N';
1666 } else {
1667 state = 0;
1668 user_data_ok = 'N';
1669 }
1670
James Chapmanfd558d12010-04-02 06:18:33 +00001671 seq_printf(m, " SESSION '%s' %08X/%d %04X/%04X -> "
1672 "%04X/%04X %d %c\n",
1673 session->name, ip, port,
1674 tunnel->tunnel_id,
1675 session->session_id,
1676 tunnel->peer_tunnel_id,
1677 session->peer_session_id,
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001678 state, user_data_ok);
James Chapmanfd558d12010-04-02 06:18:33 +00001679 seq_printf(m, " %d/%d/%c/%c/%s %08x %u\n",
1680 session->mtu, session->mru,
1681 session->recv_seq ? 'R' : '-',
1682 session->send_seq ? 'S' : '-',
1683 session->lns_mode ? "LNS" : "LAC",
1684 session->debug,
1685 jiffies_to_msecs(session->reorder_timeout));
Tom Parkin7b7c0712013-03-19 06:11:22 +00001686 seq_printf(m, " %hu/%hu %ld/%ld/%ld %ld/%ld/%ld\n",
James Chapmanfd558d12010-04-02 06:18:33 +00001687 session->nr, session->ns,
Tom Parkin7b7c0712013-03-19 06:11:22 +00001688 atomic_long_read(&session->stats.tx_packets),
1689 atomic_long_read(&session->stats.tx_bytes),
1690 atomic_long_read(&session->stats.tx_errors),
1691 atomic_long_read(&session->stats.rx_packets),
1692 atomic_long_read(&session->stats.rx_bytes),
1693 atomic_long_read(&session->stats.rx_errors));
James Chapman93454712010-04-02 06:18:44 +00001694
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001695 if (sk) {
1696 struct pppox_sock *po = pppox_sk(sk);
1697
James Chapman93454712010-04-02 06:18:44 +00001698 seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan));
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001699 sock_put(sk);
1700 }
James Chapmanfd558d12010-04-02 06:18:33 +00001701}
1702
1703static int pppol2tp_seq_show(struct seq_file *m, void *v)
1704{
1705 struct pppol2tp_seq_data *pd = v;
1706
1707 /* display header on line 1 */
1708 if (v == SEQ_START_TOKEN) {
1709 seq_puts(m, "PPPoL2TP driver info, " PPPOL2TP_DRV_VERSION "\n");
1710 seq_puts(m, "TUNNEL name, user-data-ok session-count\n");
1711 seq_puts(m, " debug tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
1712 seq_puts(m, " SESSION name, addr/port src-tid/sid "
1713 "dest-tid/sid state user-data-ok\n");
1714 seq_puts(m, " mtu/mru/rcvseq/sendseq/lns debug reorderto\n");
1715 seq_puts(m, " nr/ns tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
1716 goto out;
1717 }
1718
1719 /* Show the tunnel or session context.
1720 */
Guillaume Naulte08293a2017-04-03 12:03:13 +02001721 if (!pd->session) {
James Chapmanfd558d12010-04-02 06:18:33 +00001722 pppol2tp_seq_tunnel_show(m, pd->tunnel);
Guillaume Naulte08293a2017-04-03 12:03:13 +02001723 } else {
James Chapmanfd558d12010-04-02 06:18:33 +00001724 pppol2tp_seq_session_show(m, pd->session);
Guillaume Naulte08293a2017-04-03 12:03:13 +02001725 l2tp_session_dec_refcount(pd->session);
1726 }
James Chapmanfd558d12010-04-02 06:18:33 +00001727
1728out:
1729 return 0;
1730}
1731
1732static const struct seq_operations pppol2tp_seq_ops = {
1733 .start = pppol2tp_seq_start,
1734 .next = pppol2tp_seq_next,
1735 .stop = pppol2tp_seq_stop,
1736 .show = pppol2tp_seq_show,
1737};
1738
1739/* Called when our /proc file is opened. We allocate data for use when
1740 * iterating our tunnel / session contexts and store it in the private
1741 * data of the seq_file.
1742 */
1743static int pppol2tp_proc_open(struct inode *inode, struct file *file)
1744{
1745 return seq_open_net(inode, file, &pppol2tp_seq_ops,
1746 sizeof(struct pppol2tp_seq_data));
1747}
1748
1749static const struct file_operations pppol2tp_proc_fops = {
James Chapmanfd558d12010-04-02 06:18:33 +00001750 .open = pppol2tp_proc_open,
1751 .read = seq_read,
1752 .llseek = seq_lseek,
1753 .release = seq_release_net,
1754};
1755
1756#endif /* CONFIG_PROC_FS */
1757
1758/*****************************************************************************
1759 * Network namespace
1760 *****************************************************************************/
1761
1762static __net_init int pppol2tp_init_net(struct net *net)
1763{
1764 struct proc_dir_entry *pde;
1765 int err = 0;
1766
Joe Perchesd6444062018-03-23 15:54:38 -07001767 pde = proc_create("pppol2tp", 0444, net->proc_net,
Gao fengd4beaa62013-02-18 01:34:54 +00001768 &pppol2tp_proc_fops);
James Chapmanfd558d12010-04-02 06:18:33 +00001769 if (!pde) {
1770 err = -ENOMEM;
1771 goto out;
1772 }
1773
1774out:
1775 return err;
1776}
1777
1778static __net_exit void pppol2tp_exit_net(struct net *net)
1779{
Gao fengece31ff2013-02-18 01:34:56 +00001780 remove_proc_entry("pppol2tp", net->proc_net);
James Chapmanfd558d12010-04-02 06:18:33 +00001781}
1782
1783static struct pernet_operations pppol2tp_net_ops = {
1784 .init = pppol2tp_init_net,
1785 .exit = pppol2tp_exit_net,
1786 .id = &pppol2tp_net_id,
1787};
1788
1789/*****************************************************************************
1790 * Init and cleanup
1791 *****************************************************************************/
1792
1793static const struct proto_ops pppol2tp_ops = {
1794 .family = AF_PPPOX,
1795 .owner = THIS_MODULE,
1796 .release = pppol2tp_release,
1797 .bind = sock_no_bind,
1798 .connect = pppol2tp_connect,
1799 .socketpair = sock_no_socketpair,
1800 .accept = sock_no_accept,
1801 .getname = pppol2tp_getname,
1802 .poll = datagram_poll,
1803 .listen = sock_no_listen,
1804 .shutdown = sock_no_shutdown,
1805 .setsockopt = pppol2tp_setsockopt,
1806 .getsockopt = pppol2tp_getsockopt,
1807 .sendmsg = pppol2tp_sendmsg,
1808 .recvmsg = pppol2tp_recvmsg,
1809 .mmap = sock_no_mmap,
1810 .ioctl = pppox_ioctl,
1811};
1812
Eric Dumazet756e64a2010-09-21 06:43:54 +00001813static const struct pppox_proto pppol2tp_proto = {
James Chapmanfd558d12010-04-02 06:18:33 +00001814 .create = pppol2tp_create,
Wei Yongjune1558a92013-07-02 09:02:07 +08001815 .ioctl = pppol2tp_ioctl,
1816 .owner = THIS_MODULE,
James Chapmanfd558d12010-04-02 06:18:33 +00001817};
1818
James Chapman309795f2010-04-02 06:19:10 +00001819#ifdef CONFIG_L2TP_V3
1820
1821static const struct l2tp_nl_cmd_ops pppol2tp_nl_cmd_ops = {
1822 .session_create = pppol2tp_session_create,
Tom Parkincf2f5c82013-03-19 06:11:21 +00001823 .session_delete = l2tp_session_delete,
James Chapman309795f2010-04-02 06:19:10 +00001824};
1825
1826#endif /* CONFIG_L2TP_V3 */
1827
James Chapmanfd558d12010-04-02 06:18:33 +00001828static int __init pppol2tp_init(void)
1829{
1830 int err;
1831
1832 err = register_pernet_device(&pppol2tp_net_ops);
1833 if (err)
1834 goto out;
1835
1836 err = proto_register(&pppol2tp_sk_proto, 0);
1837 if (err)
1838 goto out_unregister_pppol2tp_pernet;
1839
1840 err = register_pppox_proto(PX_PROTO_OL2TP, &pppol2tp_proto);
1841 if (err)
1842 goto out_unregister_pppol2tp_proto;
1843
James Chapman309795f2010-04-02 06:19:10 +00001844#ifdef CONFIG_L2TP_V3
1845 err = l2tp_nl_register_ops(L2TP_PWTYPE_PPP, &pppol2tp_nl_cmd_ops);
1846 if (err)
1847 goto out_unregister_pppox;
1848#endif
1849
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001850 pr_info("PPPoL2TP kernel driver, %s\n", PPPOL2TP_DRV_VERSION);
James Chapmanfd558d12010-04-02 06:18:33 +00001851
1852out:
1853 return err;
James Chapman309795f2010-04-02 06:19:10 +00001854
1855#ifdef CONFIG_L2TP_V3
1856out_unregister_pppox:
1857 unregister_pppox_proto(PX_PROTO_OL2TP);
1858#endif
James Chapmanfd558d12010-04-02 06:18:33 +00001859out_unregister_pppol2tp_proto:
1860 proto_unregister(&pppol2tp_sk_proto);
1861out_unregister_pppol2tp_pernet:
1862 unregister_pernet_device(&pppol2tp_net_ops);
1863 goto out;
1864}
1865
1866static void __exit pppol2tp_exit(void)
1867{
James Chapman309795f2010-04-02 06:19:10 +00001868#ifdef CONFIG_L2TP_V3
1869 l2tp_nl_unregister_ops(L2TP_PWTYPE_PPP);
1870#endif
James Chapmanfd558d12010-04-02 06:18:33 +00001871 unregister_pppox_proto(PX_PROTO_OL2TP);
1872 proto_unregister(&pppol2tp_sk_proto);
1873 unregister_pernet_device(&pppol2tp_net_ops);
1874}
1875
1876module_init(pppol2tp_init);
1877module_exit(pppol2tp_exit);
1878
1879MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
1880MODULE_DESCRIPTION("PPP over L2TP over UDP");
1881MODULE_LICENSE("GPL");
1882MODULE_VERSION(PPPOL2TP_DRV_VERSION);
Guillaume Nault681b4d82015-12-02 16:27:39 +01001883MODULE_ALIAS_NET_PF_PROTO(PF_PPPOX, PX_PROTO_OL2TP);
Guillaume Nault249ee812017-04-03 13:23:15 +02001884MODULE_ALIAS_L2TP_PWTYPE(7);