blob: d40d5492c14809c01786413fed133f43c7d73334 [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 struct sock *tunnel_sock; /* Pointer to the tunnel UDP
131 * socket */
132 int flags; /* accessed by PPPIOCGFLAGS.
133 * Unused. */
134};
135
136static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb);
137
stephen hemmingerd7100da2010-08-04 07:34:36 +0000138static const struct ppp_channel_ops pppol2tp_chan_ops = {
139 .start_xmit = pppol2tp_xmit,
140};
141
James Chapmanfd558d12010-04-02 06:18:33 +0000142static const struct proto_ops pppol2tp_ops;
143
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200144/* Retrieves the pppol2tp socket associated to a session.
145 * A reference is held on the returned socket, so this function must be paired
146 * with sock_put().
147 */
148static struct sock *pppol2tp_session_get_sock(struct l2tp_session *session)
149{
150 struct pppol2tp_session *ps = l2tp_session_priv(session);
151 struct sock *sk;
152
153 rcu_read_lock();
154 sk = rcu_dereference(ps->sk);
155 if (sk)
156 sock_hold(sk);
157 rcu_read_unlock();
158
159 return sk;
160}
161
James Chapmanfd558d12010-04-02 06:18:33 +0000162/* Helpers to obtain tunnel/session contexts from sockets.
163 */
164static inline struct l2tp_session *pppol2tp_sock_to_session(struct sock *sk)
165{
166 struct l2tp_session *session;
167
168 if (sk == NULL)
169 return NULL;
170
171 sock_hold(sk);
172 session = (struct l2tp_session *)(sk->sk_user_data);
173 if (session == NULL) {
174 sock_put(sk);
175 goto out;
176 }
177
178 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
179
180out:
181 return session;
182}
183
184/*****************************************************************************
185 * Receive data handling
186 *****************************************************************************/
187
188static int pppol2tp_recv_payload_hook(struct sk_buff *skb)
189{
190 /* Skip PPP header, if present. In testing, Microsoft L2TP clients
191 * don't send the PPP header (PPP header compression enabled), but
192 * other clients can include the header. So we cope with both cases
193 * here. The PPP header is always FF03 when using L2TP.
194 *
195 * Note that skb->data[] isn't dereferenced from a u16 ptr here since
196 * the field may be unaligned.
197 */
198 if (!pskb_may_pull(skb, 2))
199 return 1;
200
Gao Feng54c151d2016-08-22 22:50:02 +0800201 if ((skb->data[0] == PPP_ALLSTATIONS) && (skb->data[1] == PPP_UI))
James Chapmanfd558d12010-04-02 06:18:33 +0000202 skb_pull(skb, 2);
203
204 return 0;
205}
206
207/* Receive message. This is the recvmsg for the PPPoL2TP socket.
208 */
Ying Xue1b784142015-03-02 15:37:48 +0800209static int pppol2tp_recvmsg(struct socket *sock, struct msghdr *msg,
210 size_t len, int flags)
James Chapmanfd558d12010-04-02 06:18:33 +0000211{
212 int err;
213 struct sk_buff *skb;
214 struct sock *sk = sock->sk;
215
216 err = -EIO;
217 if (sk->sk_state & PPPOX_BOUND)
218 goto end;
219
James Chapmanfd558d12010-04-02 06:18:33 +0000220 err = 0;
221 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
222 flags & MSG_DONTWAIT, &err);
223 if (!skb)
224 goto end;
225
226 if (len > skb->len)
227 len = skb->len;
228 else if (len < skb->len)
229 msg->msg_flags |= MSG_TRUNC;
230
David S. Miller51f3d022014-11-05 16:46:40 -0500231 err = skb_copy_datagram_msg(skb, 0, msg, len);
James Chapmanfd558d12010-04-02 06:18:33 +0000232 if (likely(err == 0))
233 err = len;
234
235 kfree_skb(skb);
236end:
237 return err;
238}
239
240static void pppol2tp_recv(struct l2tp_session *session, struct sk_buff *skb, int data_len)
241{
242 struct pppol2tp_session *ps = l2tp_session_priv(session);
243 struct sock *sk = NULL;
244
245 /* If the socket is bound, send it in to PPP's input queue. Otherwise
246 * queue it on the session socket.
247 */
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200248 rcu_read_lock();
249 sk = rcu_dereference(ps->sk);
James Chapmanfd558d12010-04-02 06:18:33 +0000250 if (sk == NULL)
251 goto no_sock;
252
253 if (sk->sk_state & PPPOX_BOUND) {
254 struct pppox_sock *po;
Guillaume Nault98f40b32015-12-29 13:06:59 +0100255
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +0000256 l2tp_dbg(session, L2TP_MSG_DATA,
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000257 "%s: recv %d byte data frame, passing to ppp\n",
258 session->name, data_len);
James Chapmanfd558d12010-04-02 06:18:33 +0000259
James Chapmanfd558d12010-04-02 06:18:33 +0000260 po = pppox_sk(sk);
261 ppp_input(&po->chan, skb);
262 } else {
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +0000263 l2tp_dbg(session, L2TP_MSG_DATA,
Guillaume Nault9e9cb622014-03-06 11:15:10 +0100264 "%s: recv %d byte data frame, passing to L2TP socket\n",
265 session->name, data_len);
James Chapmanfd558d12010-04-02 06:18:33 +0000266
Guillaume Nault9e9cb622014-03-06 11:15:10 +0100267 if (sock_queue_rcv_skb(sk, skb) < 0) {
268 atomic_long_inc(&session->stats.rx_errors);
269 kfree_skb(skb);
270 }
James Chapmanfd558d12010-04-02 06:18:33 +0000271 }
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200272 rcu_read_unlock();
James Chapmanfd558d12010-04-02 06:18:33 +0000273
274 return;
275
276no_sock:
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200277 rcu_read_unlock();
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +0000278 l2tp_info(session, L2TP_MSG_DATA, "%s: no socket\n", session->name);
James Chapmanfd558d12010-04-02 06:18:33 +0000279 kfree_skb(skb);
280}
281
James Chapmanfd558d12010-04-02 06:18:33 +0000282/************************************************************************
283 * Transmit handling
284 ***********************************************************************/
285
James Chapmanfd558d12010-04-02 06:18:33 +0000286/* This is the sendmsg for the PPPoL2TP pppol2tp_session socket. We come here
287 * when a user application does a sendmsg() on the session socket. L2TP and
288 * PPP headers must be inserted into the user's data.
289 */
Ying Xue1b784142015-03-02 15:37:48 +0800290static int pppol2tp_sendmsg(struct socket *sock, struct msghdr *m,
James Chapmanfd558d12010-04-02 06:18:33 +0000291 size_t total_len)
292{
James Chapmanfd558d12010-04-02 06:18:33 +0000293 struct sock *sk = sock->sk;
294 struct sk_buff *skb;
295 int error;
296 struct l2tp_session *session;
297 struct l2tp_tunnel *tunnel;
298 struct pppol2tp_session *ps;
James Chapman0d767512010-04-02 06:19:00 +0000299 int uhlen;
James Chapmanfd558d12010-04-02 06:18:33 +0000300
301 error = -ENOTCONN;
302 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
303 goto error;
304
305 /* Get session and tunnel contexts */
306 error = -EBADF;
307 session = pppol2tp_sock_to_session(sk);
308 if (session == NULL)
309 goto error;
310
311 ps = l2tp_session_priv(session);
312 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
313 if (tunnel == NULL)
314 goto error_put_sess;
315
James Chapman0d767512010-04-02 06:19:00 +0000316 uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0;
317
James Chapmanfd558d12010-04-02 06:18:33 +0000318 /* Allocate a socket buffer */
319 error = -ENOMEM;
320 skb = sock_wmalloc(sk, NET_SKB_PAD + sizeof(struct iphdr) +
James Chapman0d767512010-04-02 06:19:00 +0000321 uhlen + session->hdr_len +
Gao Feng54c151d2016-08-22 22:50:02 +0800322 2 + total_len, /* 2 bytes for PPP_ALLSTATIONS & PPP_UI */
James Chapmanfd558d12010-04-02 06:18:33 +0000323 0, GFP_KERNEL);
324 if (!skb)
325 goto error_put_sess_tun;
326
327 /* Reserve space for headers. */
328 skb_reserve(skb, NET_SKB_PAD);
329 skb_reset_network_header(skb);
330 skb_reserve(skb, sizeof(struct iphdr));
331 skb_reset_transport_header(skb);
James Chapman0d767512010-04-02 06:19:00 +0000332 skb_reserve(skb, uhlen);
James Chapmanfd558d12010-04-02 06:18:33 +0000333
334 /* Add PPP header */
Gao Feng54c151d2016-08-22 22:50:02 +0800335 skb->data[0] = PPP_ALLSTATIONS;
336 skb->data[1] = PPP_UI;
James Chapmanfd558d12010-04-02 06:18:33 +0000337 skb_put(skb, 2);
338
339 /* Copy user data into skb */
Al Viro6ce8e9c2014-04-06 21:25:44 -0400340 error = memcpy_from_msg(skb_put(skb, total_len), m, total_len);
James Chapmanfd558d12010-04-02 06:18:33 +0000341 if (error < 0) {
342 kfree_skb(skb);
343 goto error_put_sess_tun;
344 }
James Chapmanfd558d12010-04-02 06:18:33 +0000345
Eric Dumazet455cc322013-10-10 06:30:09 -0700346 local_bh_disable();
James Chapmanfd558d12010-04-02 06:18:33 +0000347 l2tp_xmit_skb(session, skb, session->hdr_len);
Eric Dumazet455cc322013-10-10 06:30:09 -0700348 local_bh_enable();
James Chapmanfd558d12010-04-02 06:18:33 +0000349
350 sock_put(ps->tunnel_sock);
Guillaume Nault8b82547e33e2013-03-01 05:02:02 +0000351 sock_put(sk);
James Chapmanfd558d12010-04-02 06:18:33 +0000352
Guillaume Naulta6f79d02013-06-12 16:07:36 +0200353 return total_len;
James Chapmanfd558d12010-04-02 06:18:33 +0000354
355error_put_sess_tun:
356 sock_put(ps->tunnel_sock);
357error_put_sess:
358 sock_put(sk);
359error:
360 return error;
361}
362
363/* Transmit function called by generic PPP driver. Sends PPP frame
364 * over PPPoL2TP socket.
365 *
366 * This is almost the same as pppol2tp_sendmsg(), but rather than
367 * being called with a msghdr from userspace, it is called with a skb
368 * from the kernel.
369 *
370 * The supplied skb from ppp doesn't have enough headroom for the
371 * insertion of L2TP, UDP and IP headers so we need to allocate more
372 * headroom in the skb. This will create a cloned skb. But we must be
373 * careful in the error case because the caller will expect to free
374 * the skb it supplied, not our cloned skb. So we take care to always
375 * leave the original skb unfreed if we return an error.
376 */
377static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb)
378{
James Chapmanfd558d12010-04-02 06:18:33 +0000379 struct sock *sk = (struct sock *) chan->private;
380 struct sock *sk_tun;
James Chapmanfd558d12010-04-02 06:18:33 +0000381 struct l2tp_session *session;
382 struct l2tp_tunnel *tunnel;
383 struct pppol2tp_session *ps;
Eric Dumazet09df57c2011-10-07 05:45:57 +0000384 int uhlen, headroom;
James Chapmanfd558d12010-04-02 06:18:33 +0000385
386 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
387 goto abort;
388
389 /* Get session and tunnel contexts from the socket */
390 session = pppol2tp_sock_to_session(sk);
391 if (session == NULL)
392 goto abort;
393
394 ps = l2tp_session_priv(session);
395 sk_tun = ps->tunnel_sock;
396 if (sk_tun == NULL)
397 goto abort_put_sess;
398 tunnel = l2tp_sock_to_tunnel(sk_tun);
399 if (tunnel == NULL)
400 goto abort_put_sess;
401
Eric Dumazet09df57c2011-10-07 05:45:57 +0000402 uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0;
403 headroom = NET_SKB_PAD +
404 sizeof(struct iphdr) + /* IP header */
405 uhlen + /* UDP header (if L2TP_ENCAPTYPE_UDP) */
406 session->hdr_len + /* L2TP header */
Gao Feng54c151d2016-08-22 22:50:02 +0800407 2; /* 2 bytes for PPP_ALLSTATIONS & PPP_UI */
Eric Dumazet09df57c2011-10-07 05:45:57 +0000408 if (skb_cow_head(skb, headroom))
James Chapmanfd558d12010-04-02 06:18:33 +0000409 goto abort_put_sess_tun;
410
James Chapmanfd558d12010-04-02 06:18:33 +0000411 /* Setup PPP header */
Gao Feng54c151d2016-08-22 22:50:02 +0800412 __skb_push(skb, 2);
413 skb->data[0] = PPP_ALLSTATIONS;
414 skb->data[1] = PPP_UI;
James Chapmanfd558d12010-04-02 06:18:33 +0000415
Eric Dumazet455cc322013-10-10 06:30:09 -0700416 local_bh_disable();
James Chapmane0d44352010-04-02 06:18:54 +0000417 l2tp_xmit_skb(session, skb, session->hdr_len);
Eric Dumazet455cc322013-10-10 06:30:09 -0700418 local_bh_enable();
James Chapmanfd558d12010-04-02 06:18:33 +0000419
420 sock_put(sk_tun);
421 sock_put(sk);
422 return 1;
423
424abort_put_sess_tun:
425 sock_put(sk_tun);
426abort_put_sess:
427 sock_put(sk);
428abort:
429 /* Free the original skb */
430 kfree_skb(skb);
431 return 1;
432}
433
434/*****************************************************************************
435 * Session (and tunnel control) socket create/destroy.
436 *****************************************************************************/
437
438/* Called by l2tp_core when a session socket is being closed.
439 */
440static void pppol2tp_session_close(struct l2tp_session *session)
441{
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200442 struct sock *sk;
James Chapmanfd558d12010-04-02 06:18:33 +0000443
444 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
445
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200446 sk = pppol2tp_session_get_sock(session);
447 if (sk) {
448 if (sk->sk_socket)
449 inet_shutdown(sk->sk_socket, SEND_SHUTDOWN);
450 sock_put(sk);
451 }
Guillaume Naultcdd10c92017-09-22 15:39:23 +0200452
453 /* Don't let the session go away before our socket does */
454 l2tp_session_inc_refcount(session);
James Chapmanfd558d12010-04-02 06:18:33 +0000455}
456
457/* Really kill the session socket. (Called from sock_put() if
458 * refcnt == 0.)
459 */
460static void pppol2tp_session_destruct(struct sock *sk)
461{
Tom Parkinf6e16b22013-03-19 06:11:23 +0000462 struct l2tp_session *session = sk->sk_user_data;
Guillaume Naulte91793b2017-03-29 08:45:29 +0200463
464 skb_queue_purge(&sk->sk_receive_queue);
465 skb_queue_purge(&sk->sk_write_queue);
466
Tom Parkinf6e16b22013-03-19 06:11:23 +0000467 if (session) {
James Chapmanfd558d12010-04-02 06:18:33 +0000468 sk->sk_user_data = NULL;
469 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
470 l2tp_session_dec_refcount(session);
471 }
James Chapmanfd558d12010-04-02 06:18:33 +0000472}
473
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200474static void pppol2tp_put_sk(struct rcu_head *head)
475{
476 struct pppol2tp_session *ps;
477
478 ps = container_of(head, typeof(*ps), rcu);
479 sock_put(ps->__sk);
480}
481
James Chapmanfd558d12010-04-02 06:18:33 +0000482/* Called when the PPPoX socket (session) is closed.
483 */
484static int pppol2tp_release(struct socket *sock)
485{
486 struct sock *sk = sock->sk;
487 struct l2tp_session *session;
488 int error;
489
490 if (!sk)
491 return 0;
492
493 error = -EBADF;
494 lock_sock(sk);
495 if (sock_flag(sk, SOCK_DEAD) != 0)
496 goto error;
497
498 pppox_unbind_sock(sk);
499
500 /* Signal the death of the socket. */
501 sk->sk_state = PPPOX_DEAD;
502 sock_orphan(sk);
503 sock->sk = NULL;
504
505 session = pppol2tp_sock_to_session(sk);
506
James Chapmanfd558d12010-04-02 06:18:33 +0000507 if (session != NULL) {
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200508 struct pppol2tp_session *ps;
509
Tom Parkinf6e16b22013-03-19 06:11:23 +0000510 __l2tp_session_unhash(session);
Tom Parkincf2f5c82013-03-19 06:11:21 +0000511 l2tp_session_queue_purge(session);
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200512
513 ps = l2tp_session_priv(session);
514 mutex_lock(&ps->sk_lock);
515 ps->__sk = rcu_dereference_protected(ps->sk,
516 lockdep_is_held(&ps->sk_lock));
517 RCU_INIT_POINTER(ps->sk, NULL);
518 mutex_unlock(&ps->sk_lock);
519 call_rcu(&ps->rcu, pppol2tp_put_sk);
520
521 /* Rely on the sock_put() call at the end of the function for
522 * dropping the reference held by pppol2tp_sock_to_session().
523 * The last reference will be dropped by pppol2tp_put_sk().
524 */
James Chapmanfd558d12010-04-02 06:18:33 +0000525 }
James Chapmanfd558d12010-04-02 06:18:33 +0000526 release_sock(sk);
527
528 /* This will delete the session context via
529 * pppol2tp_session_destruct() if the socket's refcnt drops to
530 * zero.
531 */
532 sock_put(sk);
533
534 return 0;
535
536error:
537 release_sock(sk);
538 return error;
539}
540
541static struct proto pppol2tp_sk_proto = {
542 .name = "PPPOL2TP",
543 .owner = THIS_MODULE,
544 .obj_size = sizeof(struct pppox_sock),
545};
546
547static int pppol2tp_backlog_recv(struct sock *sk, struct sk_buff *skb)
548{
549 int rc;
550
551 rc = l2tp_udp_encap_recv(sk, skb);
552 if (rc)
553 kfree_skb(skb);
554
555 return NET_RX_SUCCESS;
556}
557
558/* socket() handler. Initialize a new struct sock.
559 */
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500560static int pppol2tp_create(struct net *net, struct socket *sock, int kern)
James Chapmanfd558d12010-04-02 06:18:33 +0000561{
562 int error = -ENOMEM;
563 struct sock *sk;
564
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500565 sk = sk_alloc(net, PF_PPPOX, GFP_KERNEL, &pppol2tp_sk_proto, kern);
James Chapmanfd558d12010-04-02 06:18:33 +0000566 if (!sk)
567 goto out;
568
569 sock_init_data(sock, sk);
570
571 sock->state = SS_UNCONNECTED;
572 sock->ops = &pppol2tp_ops;
573
574 sk->sk_backlog_rcv = pppol2tp_backlog_recv;
575 sk->sk_protocol = PX_PROTO_OL2TP;
576 sk->sk_family = PF_PPPOX;
577 sk->sk_state = PPPOX_NONE;
578 sk->sk_type = SOCK_STREAM;
579 sk->sk_destruct = pppol2tp_session_destruct;
580
581 error = 0;
582
583out:
584 return error;
585}
586
Javier Martinez Canillas9dd79942016-09-09 08:43:17 -0400587#if IS_ENABLED(CONFIG_L2TP_DEBUGFS)
James Chapman0ad66142010-04-02 06:19:33 +0000588static void pppol2tp_show(struct seq_file *m, void *arg)
589{
590 struct l2tp_session *session = arg;
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200591 struct sock *sk;
James Chapman0ad66142010-04-02 06:19:33 +0000592
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200593 sk = pppol2tp_session_get_sock(session);
594 if (sk) {
595 struct pppox_sock *po = pppox_sk(sk);
596
597 seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan));
598 sock_put(sk);
James Chapman0ad66142010-04-02 06:19:33 +0000599 }
600}
601#endif
602
James Chapmanfd558d12010-04-02 06:18:33 +0000603/* connect() handler. Attach a PPPoX socket to a tunnel UDP socket
604 */
605static int pppol2tp_connect(struct socket *sock, struct sockaddr *uservaddr,
606 int sockaddr_len, int flags)
607{
608 struct sock *sk = sock->sk;
609 struct sockaddr_pppol2tp *sp = (struct sockaddr_pppol2tp *) uservaddr;
610 struct pppox_sock *po = pppox_sk(sk);
611 struct l2tp_session *session = NULL;
612 struct l2tp_tunnel *tunnel;
613 struct pppol2tp_session *ps;
614 struct dst_entry *dst;
615 struct l2tp_session_cfg cfg = { 0, };
616 int error = 0;
James Chapmane0d44352010-04-02 06:18:54 +0000617 u32 tunnel_id, peer_tunnel_id;
618 u32 session_id, peer_session_id;
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200619 bool drop_refcnt = false;
James Chapmane0d44352010-04-02 06:18:54 +0000620 int ver = 2;
621 int fd;
James Chapmanfd558d12010-04-02 06:18:33 +0000622
623 lock_sock(sk);
624
625 error = -EINVAL;
626 if (sp->sa_protocol != PX_PROTO_OL2TP)
627 goto end;
628
629 /* Check for already bound sockets */
630 error = -EBUSY;
631 if (sk->sk_state & PPPOX_CONNECTED)
632 goto end;
633
634 /* We don't supporting rebinding anyway */
635 error = -EALREADY;
636 if (sk->sk_user_data)
637 goto end; /* socket is already attached */
638
James Chapmanb79585f2012-04-29 21:48:50 +0000639 /* Get params from socket address. Handle L2TPv2 and L2TPv3.
640 * This is nasty because there are different sockaddr_pppol2tp
641 * structs for L2TPv2, L2TPv3, over IPv4 and IPv6. We use
642 * the sockaddr size to determine which structure the caller
643 * is using.
644 */
645 peer_tunnel_id = 0;
James Chapmane0d44352010-04-02 06:18:54 +0000646 if (sockaddr_len == sizeof(struct sockaddr_pppol2tp)) {
647 fd = sp->pppol2tp.fd;
648 tunnel_id = sp->pppol2tp.s_tunnel;
649 peer_tunnel_id = sp->pppol2tp.d_tunnel;
650 session_id = sp->pppol2tp.s_session;
651 peer_session_id = sp->pppol2tp.d_session;
652 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3)) {
James Chapmanb79585f2012-04-29 21:48:50 +0000653 struct sockaddr_pppol2tpv3 *sp3 =
654 (struct sockaddr_pppol2tpv3 *) sp;
James Chapmane0d44352010-04-02 06:18:54 +0000655 ver = 3;
656 fd = sp3->pppol2tp.fd;
657 tunnel_id = sp3->pppol2tp.s_tunnel;
658 peer_tunnel_id = sp3->pppol2tp.d_tunnel;
659 session_id = sp3->pppol2tp.s_session;
660 peer_session_id = sp3->pppol2tp.d_session;
James Chapmanb79585f2012-04-29 21:48:50 +0000661 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpin6)) {
662 struct sockaddr_pppol2tpin6 *sp6 =
663 (struct sockaddr_pppol2tpin6 *) sp;
664 fd = sp6->pppol2tp.fd;
665 tunnel_id = sp6->pppol2tp.s_tunnel;
666 peer_tunnel_id = sp6->pppol2tp.d_tunnel;
667 session_id = sp6->pppol2tp.s_session;
668 peer_session_id = sp6->pppol2tp.d_session;
669 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3in6)) {
670 struct sockaddr_pppol2tpv3in6 *sp6 =
671 (struct sockaddr_pppol2tpv3in6 *) sp;
672 ver = 3;
673 fd = sp6->pppol2tp.fd;
674 tunnel_id = sp6->pppol2tp.s_tunnel;
675 peer_tunnel_id = sp6->pppol2tp.d_tunnel;
676 session_id = sp6->pppol2tp.s_session;
677 peer_session_id = sp6->pppol2tp.d_session;
James Chapmane0d44352010-04-02 06:18:54 +0000678 } else {
679 error = -EINVAL;
680 goto end; /* bad socket address */
681 }
682
683 /* Don't bind if tunnel_id is 0 */
James Chapmanfd558d12010-04-02 06:18:33 +0000684 error = -EINVAL;
James Chapmane0d44352010-04-02 06:18:54 +0000685 if (tunnel_id == 0)
James Chapmanfd558d12010-04-02 06:18:33 +0000686 goto end;
687
James Chapman309795f2010-04-02 06:19:10 +0000688 tunnel = l2tp_tunnel_find(sock_net(sk), tunnel_id);
689
James Chapmane0d44352010-04-02 06:18:54 +0000690 /* Special case: create tunnel context if session_id and
691 * peer_session_id is 0. Otherwise look up tunnel using supplied
James Chapmanfd558d12010-04-02 06:18:33 +0000692 * tunnel id.
693 */
James Chapmane0d44352010-04-02 06:18:54 +0000694 if ((session_id == 0) && (peer_session_id == 0)) {
James Chapman309795f2010-04-02 06:19:10 +0000695 if (tunnel == NULL) {
696 struct l2tp_tunnel_cfg tcfg = {
697 .encap = L2TP_ENCAPTYPE_UDP,
698 .debug = 0,
699 };
700 error = l2tp_tunnel_create(sock_net(sk), fd, ver, tunnel_id, peer_tunnel_id, &tcfg, &tunnel);
701 if (error < 0)
702 goto end;
703 }
James Chapmanfd558d12010-04-02 06:18:33 +0000704 } else {
James Chapmanfd558d12010-04-02 06:18:33 +0000705 /* Error if we can't find the tunnel */
706 error = -ENOENT;
707 if (tunnel == NULL)
708 goto end;
709
710 /* Error if socket is not prepped */
711 if (tunnel->sock == NULL)
712 goto end;
713 }
714
715 if (tunnel->recv_payload_hook == NULL)
716 tunnel->recv_payload_hook = pppol2tp_recv_payload_hook;
717
James Chapmanb79585f2012-04-29 21:48:50 +0000718 if (tunnel->peer_tunnel_id == 0)
719 tunnel->peer_tunnel_id = peer_tunnel_id;
James Chapmanfd558d12010-04-02 06:18:33 +0000720
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200721 session = l2tp_session_get(sock_net(sk), tunnel, session_id, false);
722 if (session) {
723 drop_refcnt = true;
724 ps = l2tp_session_priv(session);
James Chapman309795f2010-04-02 06:19:10 +0000725
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200726 /* Using a pre-existing session is fine as long as it hasn't
727 * been connected yet.
728 */
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200729 mutex_lock(&ps->sk_lock);
730 if (rcu_dereference_protected(ps->sk,
731 lockdep_is_held(&ps->sk_lock))) {
732 mutex_unlock(&ps->sk_lock);
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200733 error = -EEXIST;
734 goto end;
735 }
736
737 /* consistency checks */
738 if (ps->tunnel_sock != tunnel->sock) {
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200739 mutex_unlock(&ps->sk_lock);
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200740 error = -EEXIST;
James Chapman309795f2010-04-02 06:19:10 +0000741 goto end;
742 }
743 } 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 Naultee40fb2e2017-10-27 16:51:52 +0200756 ps = l2tp_session_priv(session);
757 mutex_init(&ps->sk_lock);
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 ps->owner = current->pid;
James Chapmanfd558d12010-04-02 06:18:33 +0000771 ps->tunnel_sock = tunnel->sock;
772
773 session->recv_skb = pppol2tp_recv;
774 session->session_close = pppol2tp_session_close;
Javier Martinez Canillas9dd79942016-09-09 08:43:17 -0400775#if IS_ENABLED(CONFIG_L2TP_DEBUGFS)
James Chapman0ad66142010-04-02 06:19:33 +0000776 session->show = pppol2tp_show;
777#endif
James Chapmanfd558d12010-04-02 06:18:33 +0000778
James Chapmanfd558d12010-04-02 06:18:33 +0000779 /* If PMTU discovery was enabled, use the MTU that was discovered */
Dmitry Petukhovf34c4a32014-04-09 02:23:20 +0600780 dst = sk_dst_get(tunnel->sock);
James Chapmanfd558d12010-04-02 06:18:33 +0000781 if (dst != NULL) {
Guillaume Naulteed4d832014-09-03 14:12:55 +0200782 u32 pmtu = dst_mtu(dst);
783
James Chapmanfd558d12010-04-02 06:18:33 +0000784 if (pmtu != 0)
785 session->mtu = session->mru = pmtu -
786 PPPOL2TP_HEADER_OVERHEAD;
787 dst_release(dst);
788 }
789
790 /* Special case: if source & dest session_id == 0x0000, this
791 * socket is being created to manage the tunnel. Just set up
792 * the internal context for use by ioctl() and sockopt()
793 * handlers.
794 */
795 if ((session->session_id == 0) &&
796 (session->peer_session_id == 0)) {
797 error = 0;
798 goto out_no_ppp;
799 }
800
801 /* The only header we need to worry about is the L2TP
802 * header. This size is different depending on whether
803 * sequence numbers are enabled for the data channel.
804 */
805 po->chan.hdrlen = PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
806
807 po->chan.private = sk;
808 po->chan.ops = &pppol2tp_chan_ops;
809 po->chan.mtu = session->mtu;
810
811 error = ppp_register_net_channel(sock_net(sk), &po->chan);
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200812 if (error) {
813 mutex_unlock(&ps->sk_lock);
James Chapmanfd558d12010-04-02 06:18:33 +0000814 goto end;
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200815 }
James Chapmanfd558d12010-04-02 06:18:33 +0000816
817out_no_ppp:
818 /* This is how we get the session context from the socket. */
819 sk->sk_user_data = session;
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200820 rcu_assign_pointer(ps->sk, sk);
821 mutex_unlock(&ps->sk_lock);
822
James Chapmanfd558d12010-04-02 06:18:33 +0000823 sk->sk_state = PPPOX_CONNECTED;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +0000824 l2tp_info(session, L2TP_MSG_CONTROL, "%s: created\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000825 session->name);
James Chapmanfd558d12010-04-02 06:18:33 +0000826
827end:
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200828 if (drop_refcnt)
829 l2tp_session_dec_refcount(session);
James Chapmanfd558d12010-04-02 06:18:33 +0000830 release_sock(sk);
831
832 return error;
833}
834
James Chapman309795f2010-04-02 06:19:10 +0000835#ifdef CONFIG_L2TP_V3
836
Guillaume Naultf026bc22017-09-01 17:58:51 +0200837/* Called when creating sessions via the netlink interface. */
838static int pppol2tp_session_create(struct net *net, struct l2tp_tunnel *tunnel,
839 u32 session_id, u32 peer_session_id,
840 struct l2tp_session_cfg *cfg)
James Chapman309795f2010-04-02 06:19:10 +0000841{
842 int error;
James Chapman309795f2010-04-02 06:19:10 +0000843 struct l2tp_session *session;
844 struct pppol2tp_session *ps;
845
James Chapman309795f2010-04-02 06:19:10 +0000846 /* Error if tunnel socket is not prepped */
Guillaume Naultf026bc22017-09-01 17:58:51 +0200847 if (!tunnel->sock) {
848 error = -ENOENT;
Guillaume Nault3953ae72017-10-27 16:51:50 +0200849 goto err;
Guillaume Naultf026bc22017-09-01 17:58:51 +0200850 }
James Chapman309795f2010-04-02 06:19:10 +0000851
James Chapman309795f2010-04-02 06:19:10 +0000852 /* Default MTU values. */
853 if (cfg->mtu == 0)
854 cfg->mtu = 1500 - PPPOL2TP_HEADER_OVERHEAD;
855 if (cfg->mru == 0)
856 cfg->mru = cfg->mtu;
857
858 /* Allocate and initialize a new session context. */
James Chapman309795f2010-04-02 06:19:10 +0000859 session = l2tp_session_create(sizeof(struct pppol2tp_session),
860 tunnel, session_id,
861 peer_session_id, cfg);
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200862 if (IS_ERR(session)) {
863 error = PTR_ERR(session);
Guillaume Nault3953ae72017-10-27 16:51:50 +0200864 goto err;
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200865 }
James Chapman309795f2010-04-02 06:19:10 +0000866
867 ps = l2tp_session_priv(session);
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200868 mutex_init(&ps->sk_lock);
James Chapman309795f2010-04-02 06:19:10 +0000869 ps->tunnel_sock = tunnel->sock;
870
Guillaume Nault3953ae72017-10-27 16:51:50 +0200871 error = l2tp_session_register(session, tunnel);
872 if (error < 0)
873 goto err_sess;
James Chapman309795f2010-04-02 06:19:10 +0000874
Guillaume Nault3953ae72017-10-27 16:51:50 +0200875 return 0;
James Chapman309795f2010-04-02 06:19:10 +0000876
Guillaume Nault3953ae72017-10-27 16:51:50 +0200877err_sess:
878 kfree(session);
879err:
James Chapman309795f2010-04-02 06:19:10 +0000880 return error;
881}
882
James Chapman309795f2010-04-02 06:19:10 +0000883#endif /* CONFIG_L2TP_V3 */
884
James Chapmanfd558d12010-04-02 06:18:33 +0000885/* getname() support.
886 */
887static int pppol2tp_getname(struct socket *sock, struct sockaddr *uaddr,
888 int *usockaddr_len, int peer)
889{
James Chapmane0d44352010-04-02 06:18:54 +0000890 int len = 0;
James Chapmanfd558d12010-04-02 06:18:33 +0000891 int error = 0;
892 struct l2tp_session *session;
893 struct l2tp_tunnel *tunnel;
894 struct sock *sk = sock->sk;
895 struct inet_sock *inet;
896 struct pppol2tp_session *pls;
897
898 error = -ENOTCONN;
899 if (sk == NULL)
900 goto end;
Gao Feng56cff472016-08-19 13:36:23 +0800901 if (!(sk->sk_state & PPPOX_CONNECTED))
James Chapmanfd558d12010-04-02 06:18:33 +0000902 goto end;
903
904 error = -EBADF;
905 session = pppol2tp_sock_to_session(sk);
906 if (session == NULL)
907 goto end;
908
909 pls = l2tp_session_priv(session);
910 tunnel = l2tp_sock_to_tunnel(pls->tunnel_sock);
phil.turnbull@oracle.com4ac36a42016-07-26 15:14:35 -0400911 if (tunnel == NULL)
James Chapmanfd558d12010-04-02 06:18:33 +0000912 goto end_put_sess;
James Chapmanfd558d12010-04-02 06:18:33 +0000913
Benjamin LaHaisebbdb32c2012-03-20 03:57:54 +0000914 inet = inet_sk(tunnel->sock);
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000915 if ((tunnel->version == 2) && (tunnel->sock->sk_family == AF_INET)) {
James Chapmane0d44352010-04-02 06:18:54 +0000916 struct sockaddr_pppol2tp sp;
917 len = sizeof(sp);
918 memset(&sp, 0, len);
919 sp.sa_family = AF_PPPOX;
920 sp.sa_protocol = PX_PROTO_OL2TP;
921 sp.pppol2tp.fd = tunnel->fd;
922 sp.pppol2tp.pid = pls->owner;
923 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
924 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
925 sp.pppol2tp.s_session = session->session_id;
926 sp.pppol2tp.d_session = session->peer_session_id;
927 sp.pppol2tp.addr.sin_family = AF_INET;
928 sp.pppol2tp.addr.sin_port = inet->inet_dport;
929 sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr;
930 memcpy(uaddr, &sp, len);
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000931#if IS_ENABLED(CONFIG_IPV6)
932 } else if ((tunnel->version == 2) &&
933 (tunnel->sock->sk_family == AF_INET6)) {
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000934 struct sockaddr_pppol2tpin6 sp;
Eric Dumazetefe42082013-10-03 15:42:29 -0700935
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000936 len = sizeof(sp);
937 memset(&sp, 0, len);
938 sp.sa_family = AF_PPPOX;
939 sp.sa_protocol = PX_PROTO_OL2TP;
940 sp.pppol2tp.fd = tunnel->fd;
941 sp.pppol2tp.pid = pls->owner;
942 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
943 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
944 sp.pppol2tp.s_session = session->session_id;
945 sp.pppol2tp.d_session = session->peer_session_id;
946 sp.pppol2tp.addr.sin6_family = AF_INET6;
947 sp.pppol2tp.addr.sin6_port = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -0700948 memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr,
949 sizeof(tunnel->sock->sk_v6_daddr));
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000950 memcpy(uaddr, &sp, len);
951 } else if ((tunnel->version == 3) &&
952 (tunnel->sock->sk_family == AF_INET6)) {
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000953 struct sockaddr_pppol2tpv3in6 sp;
Eric Dumazetefe42082013-10-03 15:42:29 -0700954
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000955 len = sizeof(sp);
956 memset(&sp, 0, len);
957 sp.sa_family = AF_PPPOX;
958 sp.sa_protocol = PX_PROTO_OL2TP;
959 sp.pppol2tp.fd = tunnel->fd;
960 sp.pppol2tp.pid = pls->owner;
961 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
962 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
963 sp.pppol2tp.s_session = session->session_id;
964 sp.pppol2tp.d_session = session->peer_session_id;
965 sp.pppol2tp.addr.sin6_family = AF_INET6;
966 sp.pppol2tp.addr.sin6_port = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -0700967 memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr,
968 sizeof(tunnel->sock->sk_v6_daddr));
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000969 memcpy(uaddr, &sp, len);
970#endif
James Chapmane0d44352010-04-02 06:18:54 +0000971 } else if (tunnel->version == 3) {
972 struct sockaddr_pppol2tpv3 sp;
973 len = sizeof(sp);
974 memset(&sp, 0, len);
975 sp.sa_family = AF_PPPOX;
976 sp.sa_protocol = PX_PROTO_OL2TP;
977 sp.pppol2tp.fd = tunnel->fd;
978 sp.pppol2tp.pid = pls->owner;
979 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
980 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
981 sp.pppol2tp.s_session = session->session_id;
982 sp.pppol2tp.d_session = session->peer_session_id;
983 sp.pppol2tp.addr.sin_family = AF_INET;
984 sp.pppol2tp.addr.sin_port = inet->inet_dport;
985 sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr;
986 memcpy(uaddr, &sp, len);
987 }
James Chapmanfd558d12010-04-02 06:18:33 +0000988
989 *usockaddr_len = len;
phil.turnbull@oracle.com4ac36a42016-07-26 15:14:35 -0400990 error = 0;
James Chapmanfd558d12010-04-02 06:18:33 +0000991
992 sock_put(pls->tunnel_sock);
993end_put_sess:
994 sock_put(sk);
James Chapmanfd558d12010-04-02 06:18:33 +0000995end:
996 return error;
997}
998
999/****************************************************************************
1000 * ioctl() handlers.
1001 *
1002 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
1003 * sockets. However, in order to control kernel tunnel features, we allow
1004 * userspace to create a special "tunnel" PPPoX socket which is used for
1005 * control only. Tunnel PPPoX sockets have session_id == 0 and simply allow
1006 * the user application to issue L2TP setsockopt(), getsockopt() and ioctl()
1007 * calls.
1008 ****************************************************************************/
1009
1010static void pppol2tp_copy_stats(struct pppol2tp_ioc_stats *dest,
1011 struct l2tp_stats *stats)
1012{
Tom Parkin7b7c0712013-03-19 06:11:22 +00001013 dest->tx_packets = atomic_long_read(&stats->tx_packets);
1014 dest->tx_bytes = atomic_long_read(&stats->tx_bytes);
1015 dest->tx_errors = atomic_long_read(&stats->tx_errors);
1016 dest->rx_packets = atomic_long_read(&stats->rx_packets);
1017 dest->rx_bytes = atomic_long_read(&stats->rx_bytes);
1018 dest->rx_seq_discards = atomic_long_read(&stats->rx_seq_discards);
1019 dest->rx_oos_packets = atomic_long_read(&stats->rx_oos_packets);
1020 dest->rx_errors = atomic_long_read(&stats->rx_errors);
James Chapmanfd558d12010-04-02 06:18:33 +00001021}
1022
1023/* Session ioctl helper.
1024 */
1025static int pppol2tp_session_ioctl(struct l2tp_session *session,
1026 unsigned int cmd, unsigned long arg)
1027{
1028 struct ifreq ifr;
1029 int err = 0;
1030 struct sock *sk;
1031 int val = (int) arg;
1032 struct pppol2tp_session *ps = l2tp_session_priv(session);
1033 struct l2tp_tunnel *tunnel = session->tunnel;
1034 struct pppol2tp_ioc_stats stats;
1035
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001036 l2tp_dbg(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001037 "%s: pppol2tp_session_ioctl(cmd=%#x, arg=%#lx)\n",
1038 session->name, cmd, arg);
James Chapmanfd558d12010-04-02 06:18:33 +00001039
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001040 sk = pppol2tp_session_get_sock(session);
Guillaume Nault5903f592017-10-13 19:22:35 +02001041 if (!sk)
1042 return -EBADR;
1043
James Chapmanfd558d12010-04-02 06:18:33 +00001044 switch (cmd) {
1045 case SIOCGIFMTU:
1046 err = -ENXIO;
1047 if (!(sk->sk_state & PPPOX_CONNECTED))
1048 break;
1049
1050 err = -EFAULT;
1051 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1052 break;
1053 ifr.ifr_mtu = session->mtu;
1054 if (copy_to_user((void __user *) arg, &ifr, sizeof(struct ifreq)))
1055 break;
1056
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001057 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get mtu=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001058 session->name, session->mtu);
James Chapmanfd558d12010-04-02 06:18:33 +00001059 err = 0;
1060 break;
1061
1062 case SIOCSIFMTU:
1063 err = -ENXIO;
1064 if (!(sk->sk_state & PPPOX_CONNECTED))
1065 break;
1066
1067 err = -EFAULT;
1068 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1069 break;
1070
1071 session->mtu = ifr.ifr_mtu;
1072
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001073 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set mtu=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001074 session->name, session->mtu);
James Chapmanfd558d12010-04-02 06:18:33 +00001075 err = 0;
1076 break;
1077
1078 case PPPIOCGMRU:
1079 err = -ENXIO;
1080 if (!(sk->sk_state & PPPOX_CONNECTED))
1081 break;
1082
1083 err = -EFAULT;
1084 if (put_user(session->mru, (int __user *) arg))
1085 break;
1086
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001087 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get mru=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001088 session->name, session->mru);
James Chapmanfd558d12010-04-02 06:18:33 +00001089 err = 0;
1090 break;
1091
1092 case PPPIOCSMRU:
1093 err = -ENXIO;
1094 if (!(sk->sk_state & PPPOX_CONNECTED))
1095 break;
1096
1097 err = -EFAULT;
1098 if (get_user(val, (int __user *) arg))
1099 break;
1100
1101 session->mru = val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001102 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set mru=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001103 session->name, session->mru);
James Chapmanfd558d12010-04-02 06:18:33 +00001104 err = 0;
1105 break;
1106
1107 case PPPIOCGFLAGS:
1108 err = -EFAULT;
1109 if (put_user(ps->flags, (int __user *) arg))
1110 break;
1111
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001112 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get flags=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001113 session->name, ps->flags);
James Chapmanfd558d12010-04-02 06:18:33 +00001114 err = 0;
1115 break;
1116
1117 case PPPIOCSFLAGS:
1118 err = -EFAULT;
1119 if (get_user(val, (int __user *) arg))
1120 break;
1121 ps->flags = val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001122 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set flags=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001123 session->name, ps->flags);
James Chapmanfd558d12010-04-02 06:18:33 +00001124 err = 0;
1125 break;
1126
1127 case PPPIOCGL2TPSTATS:
1128 err = -ENXIO;
1129 if (!(sk->sk_state & PPPOX_CONNECTED))
1130 break;
1131
1132 memset(&stats, 0, sizeof(stats));
1133 stats.tunnel_id = tunnel->tunnel_id;
1134 stats.session_id = session->session_id;
1135 pppol2tp_copy_stats(&stats, &session->stats);
1136 if (copy_to_user((void __user *) arg, &stats,
1137 sizeof(stats)))
1138 break;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001139 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get L2TP stats\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001140 session->name);
James Chapmanfd558d12010-04-02 06:18:33 +00001141 err = 0;
1142 break;
1143
1144 default:
1145 err = -ENOSYS;
1146 break;
1147 }
1148
1149 sock_put(sk);
1150
1151 return err;
1152}
1153
1154/* Tunnel ioctl helper.
1155 *
1156 * Note the special handling for PPPIOCGL2TPSTATS below. If the ioctl data
1157 * specifies a session_id, the session ioctl handler is called. This allows an
1158 * application to retrieve session stats via a tunnel socket.
1159 */
1160static int pppol2tp_tunnel_ioctl(struct l2tp_tunnel *tunnel,
1161 unsigned int cmd, unsigned long arg)
1162{
1163 int err = 0;
1164 struct sock *sk;
1165 struct pppol2tp_ioc_stats stats;
1166
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001167 l2tp_dbg(tunnel, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001168 "%s: pppol2tp_tunnel_ioctl(cmd=%#x, arg=%#lx)\n",
1169 tunnel->name, cmd, arg);
James Chapmanfd558d12010-04-02 06:18:33 +00001170
1171 sk = tunnel->sock;
1172 sock_hold(sk);
1173
1174 switch (cmd) {
1175 case PPPIOCGL2TPSTATS:
1176 err = -ENXIO;
1177 if (!(sk->sk_state & PPPOX_CONNECTED))
1178 break;
1179
1180 if (copy_from_user(&stats, (void __user *) arg,
1181 sizeof(stats))) {
1182 err = -EFAULT;
1183 break;
1184 }
1185 if (stats.session_id != 0) {
1186 /* resend to session ioctl handler */
1187 struct l2tp_session *session =
Guillaume Nault57377d62017-03-31 13:02:26 +02001188 l2tp_session_get(sock_net(sk), tunnel,
1189 stats.session_id, true);
1190
1191 if (session) {
1192 err = pppol2tp_session_ioctl(session, cmd,
1193 arg);
1194 if (session->deref)
1195 session->deref(session);
1196 l2tp_session_dec_refcount(session);
1197 } else {
James Chapmanfd558d12010-04-02 06:18:33 +00001198 err = -EBADR;
Guillaume Nault57377d62017-03-31 13:02:26 +02001199 }
James Chapmanfd558d12010-04-02 06:18:33 +00001200 break;
1201 }
1202#ifdef CONFIG_XFRM
1203 stats.using_ipsec = (sk->sk_policy[0] || sk->sk_policy[1]) ? 1 : 0;
1204#endif
1205 pppol2tp_copy_stats(&stats, &tunnel->stats);
1206 if (copy_to_user((void __user *) arg, &stats, sizeof(stats))) {
1207 err = -EFAULT;
1208 break;
1209 }
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001210 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: get L2TP stats\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001211 tunnel->name);
James Chapmanfd558d12010-04-02 06:18:33 +00001212 err = 0;
1213 break;
1214
1215 default:
1216 err = -ENOSYS;
1217 break;
1218 }
1219
1220 sock_put(sk);
1221
1222 return err;
1223}
1224
1225/* Main ioctl() handler.
1226 * Dispatch to tunnel or session helpers depending on the socket.
1227 */
1228static int pppol2tp_ioctl(struct socket *sock, unsigned int cmd,
1229 unsigned long arg)
1230{
1231 struct sock *sk = sock->sk;
1232 struct l2tp_session *session;
1233 struct l2tp_tunnel *tunnel;
1234 struct pppol2tp_session *ps;
1235 int err;
1236
1237 if (!sk)
1238 return 0;
1239
1240 err = -EBADF;
1241 if (sock_flag(sk, SOCK_DEAD) != 0)
1242 goto end;
1243
1244 err = -ENOTCONN;
1245 if ((sk->sk_user_data == NULL) ||
1246 (!(sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND))))
1247 goto end;
1248
1249 /* Get session context from the socket */
1250 err = -EBADF;
1251 session = pppol2tp_sock_to_session(sk);
1252 if (session == NULL)
1253 goto end;
1254
1255 /* Special case: if session's session_id is zero, treat ioctl as a
1256 * tunnel ioctl
1257 */
1258 ps = l2tp_session_priv(session);
1259 if ((session->session_id == 0) &&
1260 (session->peer_session_id == 0)) {
1261 err = -EBADF;
1262 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1263 if (tunnel == NULL)
1264 goto end_put_sess;
1265
1266 err = pppol2tp_tunnel_ioctl(tunnel, cmd, arg);
1267 sock_put(ps->tunnel_sock);
1268 goto end_put_sess;
1269 }
1270
1271 err = pppol2tp_session_ioctl(session, cmd, arg);
1272
1273end_put_sess:
1274 sock_put(sk);
1275end:
1276 return err;
1277}
1278
1279/*****************************************************************************
1280 * setsockopt() / getsockopt() support.
1281 *
1282 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
1283 * sockets. In order to control kernel tunnel features, we allow userspace to
1284 * create a special "tunnel" PPPoX socket which is used for control only.
1285 * Tunnel PPPoX sockets have session_id == 0 and simply allow the user
1286 * application to issue L2TP setsockopt(), getsockopt() and ioctl() calls.
1287 *****************************************************************************/
1288
1289/* Tunnel setsockopt() helper.
1290 */
1291static int pppol2tp_tunnel_setsockopt(struct sock *sk,
1292 struct l2tp_tunnel *tunnel,
1293 int optname, int val)
1294{
1295 int err = 0;
1296
1297 switch (optname) {
1298 case PPPOL2TP_SO_DEBUG:
1299 tunnel->debug = val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001300 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: set debug=%x\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001301 tunnel->name, tunnel->debug);
James Chapmanfd558d12010-04-02 06:18:33 +00001302 break;
1303
1304 default:
1305 err = -ENOPROTOOPT;
1306 break;
1307 }
1308
1309 return err;
1310}
1311
1312/* Session setsockopt helper.
1313 */
1314static int pppol2tp_session_setsockopt(struct sock *sk,
1315 struct l2tp_session *session,
1316 int optname, int val)
1317{
1318 int err = 0;
James Chapmanfd558d12010-04-02 06:18:33 +00001319
1320 switch (optname) {
1321 case PPPOL2TP_SO_RECVSEQ:
1322 if ((val != 0) && (val != 1)) {
1323 err = -EINVAL;
1324 break;
1325 }
Asbjørn Sloth Tønnesen3f9b9772016-11-07 20:39:28 +00001326 session->recv_seq = !!val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001327 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001328 "%s: set recv_seq=%d\n",
1329 session->name, session->recv_seq);
James Chapmanfd558d12010-04-02 06:18:33 +00001330 break;
1331
1332 case PPPOL2TP_SO_SENDSEQ:
1333 if ((val != 0) && (val != 1)) {
1334 err = -EINVAL;
1335 break;
1336 }
Asbjørn Sloth Tønnesen3f9b9772016-11-07 20:39:28 +00001337 session->send_seq = !!val;
James Chapmanfd558d12010-04-02 06:18:33 +00001338 {
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001339 struct pppox_sock *po = pppox_sk(sk);
1340
James Chapmanfd558d12010-04-02 06:18:33 +00001341 po->chan.hdrlen = val ? PPPOL2TP_L2TP_HDR_SIZE_SEQ :
1342 PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
1343 }
Guillaume Naultbb5016e2014-03-06 11:14:30 +01001344 l2tp_session_set_header_len(session, session->tunnel->version);
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001345 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001346 "%s: set send_seq=%d\n",
1347 session->name, session->send_seq);
James Chapmanfd558d12010-04-02 06:18:33 +00001348 break;
1349
1350 case PPPOL2TP_SO_LNSMODE:
1351 if ((val != 0) && (val != 1)) {
1352 err = -EINVAL;
1353 break;
1354 }
Asbjørn Sloth Tønnesen3f9b9772016-11-07 20:39:28 +00001355 session->lns_mode = !!val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001356 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001357 "%s: set lns_mode=%d\n",
1358 session->name, session->lns_mode);
James Chapmanfd558d12010-04-02 06:18:33 +00001359 break;
1360
1361 case PPPOL2TP_SO_DEBUG:
1362 session->debug = val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001363 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set debug=%x\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001364 session->name, session->debug);
James Chapmanfd558d12010-04-02 06:18:33 +00001365 break;
1366
1367 case PPPOL2TP_SO_REORDERTO:
1368 session->reorder_timeout = msecs_to_jiffies(val);
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001369 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001370 "%s: set reorder_timeout=%d\n",
1371 session->name, session->reorder_timeout);
James Chapmanfd558d12010-04-02 06:18:33 +00001372 break;
1373
1374 default:
1375 err = -ENOPROTOOPT;
1376 break;
1377 }
1378
1379 return err;
1380}
1381
1382/* Main setsockopt() entry point.
1383 * Does API checks, then calls either the tunnel or session setsockopt
1384 * handler, according to whether the PPPoL2TP socket is a for a regular
1385 * session or the special tunnel type.
1386 */
1387static int pppol2tp_setsockopt(struct socket *sock, int level, int optname,
1388 char __user *optval, unsigned int optlen)
1389{
1390 struct sock *sk = sock->sk;
1391 struct l2tp_session *session;
1392 struct l2tp_tunnel *tunnel;
1393 struct pppol2tp_session *ps;
1394 int val;
1395 int err;
1396
1397 if (level != SOL_PPPOL2TP)
Sasha Levin3cf521f2014-07-14 17:02:31 -07001398 return -EINVAL;
James Chapmanfd558d12010-04-02 06:18:33 +00001399
1400 if (optlen < sizeof(int))
1401 return -EINVAL;
1402
1403 if (get_user(val, (int __user *)optval))
1404 return -EFAULT;
1405
1406 err = -ENOTCONN;
1407 if (sk->sk_user_data == NULL)
1408 goto end;
1409
1410 /* Get session context from the socket */
1411 err = -EBADF;
1412 session = pppol2tp_sock_to_session(sk);
1413 if (session == NULL)
1414 goto end;
1415
1416 /* Special case: if session_id == 0x0000, treat as operation on tunnel
1417 */
1418 ps = l2tp_session_priv(session);
1419 if ((session->session_id == 0) &&
1420 (session->peer_session_id == 0)) {
1421 err = -EBADF;
1422 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1423 if (tunnel == NULL)
1424 goto end_put_sess;
1425
1426 err = pppol2tp_tunnel_setsockopt(sk, tunnel, optname, val);
1427 sock_put(ps->tunnel_sock);
1428 } else
1429 err = pppol2tp_session_setsockopt(sk, session, optname, val);
1430
James Chapmanfd558d12010-04-02 06:18:33 +00001431end_put_sess:
1432 sock_put(sk);
1433end:
1434 return err;
1435}
1436
1437/* Tunnel getsockopt helper. Called with sock locked.
1438 */
1439static int pppol2tp_tunnel_getsockopt(struct sock *sk,
1440 struct l2tp_tunnel *tunnel,
1441 int optname, int *val)
1442{
1443 int err = 0;
1444
1445 switch (optname) {
1446 case PPPOL2TP_SO_DEBUG:
1447 *val = tunnel->debug;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001448 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: get debug=%x\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001449 tunnel->name, tunnel->debug);
James Chapmanfd558d12010-04-02 06:18:33 +00001450 break;
1451
1452 default:
1453 err = -ENOPROTOOPT;
1454 break;
1455 }
1456
1457 return err;
1458}
1459
1460/* Session getsockopt helper. Called with sock locked.
1461 */
1462static int pppol2tp_session_getsockopt(struct sock *sk,
1463 struct l2tp_session *session,
1464 int optname, int *val)
1465{
1466 int err = 0;
1467
1468 switch (optname) {
1469 case PPPOL2TP_SO_RECVSEQ:
1470 *val = session->recv_seq;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001471 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001472 "%s: get recv_seq=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001473 break;
1474
1475 case PPPOL2TP_SO_SENDSEQ:
1476 *val = session->send_seq;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001477 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001478 "%s: get send_seq=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001479 break;
1480
1481 case PPPOL2TP_SO_LNSMODE:
1482 *val = session->lns_mode;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001483 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001484 "%s: get lns_mode=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001485 break;
1486
1487 case PPPOL2TP_SO_DEBUG:
1488 *val = session->debug;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001489 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get debug=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001490 session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001491 break;
1492
1493 case PPPOL2TP_SO_REORDERTO:
1494 *val = (int) jiffies_to_msecs(session->reorder_timeout);
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001495 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001496 "%s: get reorder_timeout=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001497 break;
1498
1499 default:
1500 err = -ENOPROTOOPT;
1501 }
1502
1503 return err;
1504}
1505
1506/* Main getsockopt() entry point.
1507 * Does API checks, then calls either the tunnel or session getsockopt
1508 * handler, according to whether the PPPoX socket is a for a regular session
1509 * or the special tunnel type.
1510 */
Joe Perchese3192692012-06-03 17:41:40 +00001511static int pppol2tp_getsockopt(struct socket *sock, int level, int optname,
1512 char __user *optval, int __user *optlen)
James Chapmanfd558d12010-04-02 06:18:33 +00001513{
1514 struct sock *sk = sock->sk;
1515 struct l2tp_session *session;
1516 struct l2tp_tunnel *tunnel;
1517 int val, len;
1518 int err;
1519 struct pppol2tp_session *ps;
1520
1521 if (level != SOL_PPPOL2TP)
Sasha Levin3cf521f2014-07-14 17:02:31 -07001522 return -EINVAL;
James Chapmanfd558d12010-04-02 06:18:33 +00001523
Joe Perchese3192692012-06-03 17:41:40 +00001524 if (get_user(len, optlen))
James Chapmanfd558d12010-04-02 06:18:33 +00001525 return -EFAULT;
1526
1527 len = min_t(unsigned int, len, sizeof(int));
1528
1529 if (len < 0)
1530 return -EINVAL;
1531
1532 err = -ENOTCONN;
1533 if (sk->sk_user_data == NULL)
1534 goto end;
1535
1536 /* Get the session context */
1537 err = -EBADF;
1538 session = pppol2tp_sock_to_session(sk);
1539 if (session == NULL)
1540 goto end;
1541
1542 /* Special case: if session_id == 0x0000, treat as operation on tunnel */
1543 ps = l2tp_session_priv(session);
1544 if ((session->session_id == 0) &&
1545 (session->peer_session_id == 0)) {
1546 err = -EBADF;
1547 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1548 if (tunnel == NULL)
1549 goto end_put_sess;
1550
1551 err = pppol2tp_tunnel_getsockopt(sk, tunnel, optname, &val);
1552 sock_put(ps->tunnel_sock);
Guillaume Nault321a52a2017-04-06 18:31:21 +02001553 if (err)
1554 goto end_put_sess;
1555 } else {
James Chapmanfd558d12010-04-02 06:18:33 +00001556 err = pppol2tp_session_getsockopt(sk, session, optname, &val);
Guillaume Nault321a52a2017-04-06 18:31:21 +02001557 if (err)
1558 goto end_put_sess;
1559 }
James Chapmanfd558d12010-04-02 06:18:33 +00001560
1561 err = -EFAULT;
Joe Perchese3192692012-06-03 17:41:40 +00001562 if (put_user(len, optlen))
James Chapmanfd558d12010-04-02 06:18:33 +00001563 goto end_put_sess;
1564
1565 if (copy_to_user((void __user *) optval, &val, len))
1566 goto end_put_sess;
1567
1568 err = 0;
1569
1570end_put_sess:
1571 sock_put(sk);
1572end:
1573 return err;
1574}
1575
1576/*****************************************************************************
1577 * /proc filesystem for debug
James Chapmanf7faffa2010-04-02 06:18:49 +00001578 * Since the original pppol2tp driver provided /proc/net/pppol2tp for
1579 * L2TPv2, we dump only L2TPv2 tunnels and sessions here.
James Chapmanfd558d12010-04-02 06:18:33 +00001580 *****************************************************************************/
1581
1582static unsigned int pppol2tp_net_id;
1583
1584#ifdef CONFIG_PROC_FS
1585
1586struct pppol2tp_seq_data {
1587 struct seq_net_private p;
1588 int tunnel_idx; /* current tunnel */
1589 int session_idx; /* index of session within current tunnel */
1590 struct l2tp_tunnel *tunnel;
1591 struct l2tp_session *session; /* NULL means get next tunnel */
1592};
1593
1594static void pppol2tp_next_tunnel(struct net *net, struct pppol2tp_seq_data *pd)
1595{
James Chapmanf7faffa2010-04-02 06:18:49 +00001596 for (;;) {
1597 pd->tunnel = l2tp_tunnel_find_nth(net, pd->tunnel_idx);
1598 pd->tunnel_idx++;
1599
1600 if (pd->tunnel == NULL)
1601 break;
1602
1603 /* Ignore L2TPv3 tunnels */
1604 if (pd->tunnel->version < 3)
1605 break;
1606 }
James Chapmanfd558d12010-04-02 06:18:33 +00001607}
1608
1609static void pppol2tp_next_session(struct net *net, struct pppol2tp_seq_data *pd)
1610{
Guillaume Naulte08293a2017-04-03 12:03:13 +02001611 pd->session = l2tp_session_get_nth(pd->tunnel, pd->session_idx, true);
James Chapmanfd558d12010-04-02 06:18:33 +00001612 pd->session_idx++;
James Chapmanf7faffa2010-04-02 06:18:49 +00001613
James Chapmanfd558d12010-04-02 06:18:33 +00001614 if (pd->session == NULL) {
1615 pd->session_idx = 0;
1616 pppol2tp_next_tunnel(net, pd);
1617 }
1618}
1619
1620static void *pppol2tp_seq_start(struct seq_file *m, loff_t *offs)
1621{
1622 struct pppol2tp_seq_data *pd = SEQ_START_TOKEN;
1623 loff_t pos = *offs;
1624 struct net *net;
1625
1626 if (!pos)
1627 goto out;
1628
1629 BUG_ON(m->private == NULL);
1630 pd = m->private;
1631 net = seq_file_net(m);
1632
1633 if (pd->tunnel == NULL)
1634 pppol2tp_next_tunnel(net, pd);
1635 else
1636 pppol2tp_next_session(net, pd);
1637
1638 /* NULL tunnel and session indicates end of list */
1639 if ((pd->tunnel == NULL) && (pd->session == NULL))
1640 pd = NULL;
1641
1642out:
1643 return pd;
1644}
1645
1646static void *pppol2tp_seq_next(struct seq_file *m, void *v, loff_t *pos)
1647{
1648 (*pos)++;
1649 return NULL;
1650}
1651
1652static void pppol2tp_seq_stop(struct seq_file *p, void *v)
1653{
1654 /* nothing to do */
1655}
1656
1657static void pppol2tp_seq_tunnel_show(struct seq_file *m, void *v)
1658{
1659 struct l2tp_tunnel *tunnel = v;
1660
1661 seq_printf(m, "\nTUNNEL '%s', %c %d\n",
1662 tunnel->name,
1663 (tunnel == tunnel->sock->sk_user_data) ? 'Y' : 'N',
Reshetova, Elenafbea9e02017-07-04 15:52:57 +03001664 refcount_read(&tunnel->ref_count) - 1);
Tom Parkin7b7c0712013-03-19 06:11:22 +00001665 seq_printf(m, " %08x %ld/%ld/%ld %ld/%ld/%ld\n",
James Chapmanfd558d12010-04-02 06:18:33 +00001666 tunnel->debug,
Tom Parkin7b7c0712013-03-19 06:11:22 +00001667 atomic_long_read(&tunnel->stats.tx_packets),
1668 atomic_long_read(&tunnel->stats.tx_bytes),
1669 atomic_long_read(&tunnel->stats.tx_errors),
1670 atomic_long_read(&tunnel->stats.rx_packets),
1671 atomic_long_read(&tunnel->stats.rx_bytes),
1672 atomic_long_read(&tunnel->stats.rx_errors));
James Chapmanfd558d12010-04-02 06:18:33 +00001673}
1674
1675static void pppol2tp_seq_session_show(struct seq_file *m, void *v)
1676{
1677 struct l2tp_session *session = v;
1678 struct l2tp_tunnel *tunnel = session->tunnel;
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001679 unsigned char state;
1680 char user_data_ok;
1681 struct sock *sk;
James Chapmanfd558d12010-04-02 06:18:33 +00001682 u32 ip = 0;
1683 u16 port = 0;
1684
1685 if (tunnel->sock) {
1686 struct inet_sock *inet = inet_sk(tunnel->sock);
1687 ip = ntohl(inet->inet_saddr);
1688 port = ntohs(inet->inet_sport);
1689 }
1690
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001691 sk = pppol2tp_session_get_sock(session);
1692 if (sk) {
1693 state = sk->sk_state;
1694 user_data_ok = (session == sk->sk_user_data) ? 'Y' : 'N';
1695 } else {
1696 state = 0;
1697 user_data_ok = 'N';
1698 }
1699
James Chapmanfd558d12010-04-02 06:18:33 +00001700 seq_printf(m, " SESSION '%s' %08X/%d %04X/%04X -> "
1701 "%04X/%04X %d %c\n",
1702 session->name, ip, port,
1703 tunnel->tunnel_id,
1704 session->session_id,
1705 tunnel->peer_tunnel_id,
1706 session->peer_session_id,
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001707 state, user_data_ok);
James Chapmanfd558d12010-04-02 06:18:33 +00001708 seq_printf(m, " %d/%d/%c/%c/%s %08x %u\n",
1709 session->mtu, session->mru,
1710 session->recv_seq ? 'R' : '-',
1711 session->send_seq ? 'S' : '-',
1712 session->lns_mode ? "LNS" : "LAC",
1713 session->debug,
1714 jiffies_to_msecs(session->reorder_timeout));
Tom Parkin7b7c0712013-03-19 06:11:22 +00001715 seq_printf(m, " %hu/%hu %ld/%ld/%ld %ld/%ld/%ld\n",
James Chapmanfd558d12010-04-02 06:18:33 +00001716 session->nr, session->ns,
Tom Parkin7b7c0712013-03-19 06:11:22 +00001717 atomic_long_read(&session->stats.tx_packets),
1718 atomic_long_read(&session->stats.tx_bytes),
1719 atomic_long_read(&session->stats.tx_errors),
1720 atomic_long_read(&session->stats.rx_packets),
1721 atomic_long_read(&session->stats.rx_bytes),
1722 atomic_long_read(&session->stats.rx_errors));
James Chapman93454712010-04-02 06:18:44 +00001723
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001724 if (sk) {
1725 struct pppox_sock *po = pppox_sk(sk);
1726
James Chapman93454712010-04-02 06:18:44 +00001727 seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan));
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001728 sock_put(sk);
1729 }
James Chapmanfd558d12010-04-02 06:18:33 +00001730}
1731
1732static int pppol2tp_seq_show(struct seq_file *m, void *v)
1733{
1734 struct pppol2tp_seq_data *pd = v;
1735
1736 /* display header on line 1 */
1737 if (v == SEQ_START_TOKEN) {
1738 seq_puts(m, "PPPoL2TP driver info, " PPPOL2TP_DRV_VERSION "\n");
1739 seq_puts(m, "TUNNEL name, user-data-ok session-count\n");
1740 seq_puts(m, " debug tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
1741 seq_puts(m, " SESSION name, addr/port src-tid/sid "
1742 "dest-tid/sid state user-data-ok\n");
1743 seq_puts(m, " mtu/mru/rcvseq/sendseq/lns debug reorderto\n");
1744 seq_puts(m, " nr/ns tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
1745 goto out;
1746 }
1747
1748 /* Show the tunnel or session context.
1749 */
Guillaume Naulte08293a2017-04-03 12:03:13 +02001750 if (!pd->session) {
James Chapmanfd558d12010-04-02 06:18:33 +00001751 pppol2tp_seq_tunnel_show(m, pd->tunnel);
Guillaume Naulte08293a2017-04-03 12:03:13 +02001752 } else {
James Chapmanfd558d12010-04-02 06:18:33 +00001753 pppol2tp_seq_session_show(m, pd->session);
Guillaume Naulte08293a2017-04-03 12:03:13 +02001754 if (pd->session->deref)
1755 pd->session->deref(pd->session);
1756 l2tp_session_dec_refcount(pd->session);
1757 }
James Chapmanfd558d12010-04-02 06:18:33 +00001758
1759out:
1760 return 0;
1761}
1762
1763static const struct seq_operations pppol2tp_seq_ops = {
1764 .start = pppol2tp_seq_start,
1765 .next = pppol2tp_seq_next,
1766 .stop = pppol2tp_seq_stop,
1767 .show = pppol2tp_seq_show,
1768};
1769
1770/* Called when our /proc file is opened. We allocate data for use when
1771 * iterating our tunnel / session contexts and store it in the private
1772 * data of the seq_file.
1773 */
1774static int pppol2tp_proc_open(struct inode *inode, struct file *file)
1775{
1776 return seq_open_net(inode, file, &pppol2tp_seq_ops,
1777 sizeof(struct pppol2tp_seq_data));
1778}
1779
1780static const struct file_operations pppol2tp_proc_fops = {
1781 .owner = THIS_MODULE,
1782 .open = pppol2tp_proc_open,
1783 .read = seq_read,
1784 .llseek = seq_lseek,
1785 .release = seq_release_net,
1786};
1787
1788#endif /* CONFIG_PROC_FS */
1789
1790/*****************************************************************************
1791 * Network namespace
1792 *****************************************************************************/
1793
1794static __net_init int pppol2tp_init_net(struct net *net)
1795{
1796 struct proc_dir_entry *pde;
1797 int err = 0;
1798
Gao fengd4beaa62013-02-18 01:34:54 +00001799 pde = proc_create("pppol2tp", S_IRUGO, net->proc_net,
1800 &pppol2tp_proc_fops);
James Chapmanfd558d12010-04-02 06:18:33 +00001801 if (!pde) {
1802 err = -ENOMEM;
1803 goto out;
1804 }
1805
1806out:
1807 return err;
1808}
1809
1810static __net_exit void pppol2tp_exit_net(struct net *net)
1811{
Gao fengece31ff2013-02-18 01:34:56 +00001812 remove_proc_entry("pppol2tp", net->proc_net);
James Chapmanfd558d12010-04-02 06:18:33 +00001813}
1814
1815static struct pernet_operations pppol2tp_net_ops = {
1816 .init = pppol2tp_init_net,
1817 .exit = pppol2tp_exit_net,
1818 .id = &pppol2tp_net_id,
1819};
1820
1821/*****************************************************************************
1822 * Init and cleanup
1823 *****************************************************************************/
1824
1825static const struct proto_ops pppol2tp_ops = {
1826 .family = AF_PPPOX,
1827 .owner = THIS_MODULE,
1828 .release = pppol2tp_release,
1829 .bind = sock_no_bind,
1830 .connect = pppol2tp_connect,
1831 .socketpair = sock_no_socketpair,
1832 .accept = sock_no_accept,
1833 .getname = pppol2tp_getname,
1834 .poll = datagram_poll,
1835 .listen = sock_no_listen,
1836 .shutdown = sock_no_shutdown,
1837 .setsockopt = pppol2tp_setsockopt,
1838 .getsockopt = pppol2tp_getsockopt,
1839 .sendmsg = pppol2tp_sendmsg,
1840 .recvmsg = pppol2tp_recvmsg,
1841 .mmap = sock_no_mmap,
1842 .ioctl = pppox_ioctl,
1843};
1844
Eric Dumazet756e64a2010-09-21 06:43:54 +00001845static const struct pppox_proto pppol2tp_proto = {
James Chapmanfd558d12010-04-02 06:18:33 +00001846 .create = pppol2tp_create,
Wei Yongjune1558a92013-07-02 09:02:07 +08001847 .ioctl = pppol2tp_ioctl,
1848 .owner = THIS_MODULE,
James Chapmanfd558d12010-04-02 06:18:33 +00001849};
1850
James Chapman309795f2010-04-02 06:19:10 +00001851#ifdef CONFIG_L2TP_V3
1852
1853static const struct l2tp_nl_cmd_ops pppol2tp_nl_cmd_ops = {
1854 .session_create = pppol2tp_session_create,
Tom Parkincf2f5c82013-03-19 06:11:21 +00001855 .session_delete = l2tp_session_delete,
James Chapman309795f2010-04-02 06:19:10 +00001856};
1857
1858#endif /* CONFIG_L2TP_V3 */
1859
James Chapmanfd558d12010-04-02 06:18:33 +00001860static int __init pppol2tp_init(void)
1861{
1862 int err;
1863
1864 err = register_pernet_device(&pppol2tp_net_ops);
1865 if (err)
1866 goto out;
1867
1868 err = proto_register(&pppol2tp_sk_proto, 0);
1869 if (err)
1870 goto out_unregister_pppol2tp_pernet;
1871
1872 err = register_pppox_proto(PX_PROTO_OL2TP, &pppol2tp_proto);
1873 if (err)
1874 goto out_unregister_pppol2tp_proto;
1875
James Chapman309795f2010-04-02 06:19:10 +00001876#ifdef CONFIG_L2TP_V3
1877 err = l2tp_nl_register_ops(L2TP_PWTYPE_PPP, &pppol2tp_nl_cmd_ops);
1878 if (err)
1879 goto out_unregister_pppox;
1880#endif
1881
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001882 pr_info("PPPoL2TP kernel driver, %s\n", PPPOL2TP_DRV_VERSION);
James Chapmanfd558d12010-04-02 06:18:33 +00001883
1884out:
1885 return err;
James Chapman309795f2010-04-02 06:19:10 +00001886
1887#ifdef CONFIG_L2TP_V3
1888out_unregister_pppox:
1889 unregister_pppox_proto(PX_PROTO_OL2TP);
1890#endif
James Chapmanfd558d12010-04-02 06:18:33 +00001891out_unregister_pppol2tp_proto:
1892 proto_unregister(&pppol2tp_sk_proto);
1893out_unregister_pppol2tp_pernet:
1894 unregister_pernet_device(&pppol2tp_net_ops);
1895 goto out;
1896}
1897
1898static void __exit pppol2tp_exit(void)
1899{
James Chapman309795f2010-04-02 06:19:10 +00001900#ifdef CONFIG_L2TP_V3
1901 l2tp_nl_unregister_ops(L2TP_PWTYPE_PPP);
1902#endif
James Chapmanfd558d12010-04-02 06:18:33 +00001903 unregister_pppox_proto(PX_PROTO_OL2TP);
1904 proto_unregister(&pppol2tp_sk_proto);
1905 unregister_pernet_device(&pppol2tp_net_ops);
1906}
1907
1908module_init(pppol2tp_init);
1909module_exit(pppol2tp_exit);
1910
1911MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
1912MODULE_DESCRIPTION("PPP over L2TP over UDP");
1913MODULE_LICENSE("GPL");
1914MODULE_VERSION(PPPOL2TP_DRV_VERSION);
Guillaume Nault681b4d82015-12-02 16:27:39 +01001915MODULE_ALIAS_NET_PF_PROTO(PF_PPPOX, PX_PROTO_OL2TP);
Guillaume Nault249ee812017-04-03 13:23:15 +02001916MODULE_ALIAS_L2TP_PWTYPE(7);