blob: 845aba543dce2270b398dcbb082b9b67272b09a7 [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 }
James Chapmanfd558d12010-04-02 06:18:33 +0000452}
453
454/* Really kill the session socket. (Called from sock_put() if
455 * refcnt == 0.)
456 */
457static void pppol2tp_session_destruct(struct sock *sk)
458{
Tom Parkinf6e16b22013-03-19 06:11:23 +0000459 struct l2tp_session *session = sk->sk_user_data;
Guillaume Naulte91793b2017-03-29 08:45:29 +0200460
461 skb_queue_purge(&sk->sk_receive_queue);
462 skb_queue_purge(&sk->sk_write_queue);
463
Tom Parkinf6e16b22013-03-19 06:11:23 +0000464 if (session) {
James Chapmanfd558d12010-04-02 06:18:33 +0000465 sk->sk_user_data = NULL;
466 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
467 l2tp_session_dec_refcount(session);
468 }
James Chapmanfd558d12010-04-02 06:18:33 +0000469}
470
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200471static void pppol2tp_put_sk(struct rcu_head *head)
472{
473 struct pppol2tp_session *ps;
474
475 ps = container_of(head, typeof(*ps), rcu);
476 sock_put(ps->__sk);
477}
478
James Chapmanfd558d12010-04-02 06:18:33 +0000479/* Called when the PPPoX socket (session) is closed.
480 */
481static int pppol2tp_release(struct socket *sock)
482{
483 struct sock *sk = sock->sk;
484 struct l2tp_session *session;
485 int error;
486
487 if (!sk)
488 return 0;
489
490 error = -EBADF;
491 lock_sock(sk);
492 if (sock_flag(sk, SOCK_DEAD) != 0)
493 goto error;
494
495 pppox_unbind_sock(sk);
496
497 /* Signal the death of the socket. */
498 sk->sk_state = PPPOX_DEAD;
499 sock_orphan(sk);
500 sock->sk = NULL;
501
502 session = pppol2tp_sock_to_session(sk);
503
James Chapmanfd558d12010-04-02 06:18:33 +0000504 if (session != NULL) {
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200505 struct pppol2tp_session *ps;
506
Guillaume Naultf98be6c2017-10-27 16:51:52 +0200507 l2tp_session_delete(session);
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200508
509 ps = l2tp_session_priv(session);
510 mutex_lock(&ps->sk_lock);
511 ps->__sk = rcu_dereference_protected(ps->sk,
512 lockdep_is_held(&ps->sk_lock));
513 RCU_INIT_POINTER(ps->sk, NULL);
514 mutex_unlock(&ps->sk_lock);
515 call_rcu(&ps->rcu, pppol2tp_put_sk);
516
517 /* Rely on the sock_put() call at the end of the function for
518 * dropping the reference held by pppol2tp_sock_to_session().
519 * The last reference will be dropped by pppol2tp_put_sk().
520 */
James Chapmanfd558d12010-04-02 06:18:33 +0000521 }
James Chapmanfd558d12010-04-02 06:18:33 +0000522 release_sock(sk);
523
524 /* This will delete the session context via
525 * pppol2tp_session_destruct() if the socket's refcnt drops to
526 * zero.
527 */
528 sock_put(sk);
529
530 return 0;
531
532error:
533 release_sock(sk);
534 return error;
535}
536
537static struct proto pppol2tp_sk_proto = {
538 .name = "PPPOL2TP",
539 .owner = THIS_MODULE,
540 .obj_size = sizeof(struct pppox_sock),
541};
542
543static int pppol2tp_backlog_recv(struct sock *sk, struct sk_buff *skb)
544{
545 int rc;
546
547 rc = l2tp_udp_encap_recv(sk, skb);
548 if (rc)
549 kfree_skb(skb);
550
551 return NET_RX_SUCCESS;
552}
553
554/* socket() handler. Initialize a new struct sock.
555 */
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500556static int pppol2tp_create(struct net *net, struct socket *sock, int kern)
James Chapmanfd558d12010-04-02 06:18:33 +0000557{
558 int error = -ENOMEM;
559 struct sock *sk;
560
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500561 sk = sk_alloc(net, PF_PPPOX, GFP_KERNEL, &pppol2tp_sk_proto, kern);
James Chapmanfd558d12010-04-02 06:18:33 +0000562 if (!sk)
563 goto out;
564
565 sock_init_data(sock, sk);
566
567 sock->state = SS_UNCONNECTED;
568 sock->ops = &pppol2tp_ops;
569
570 sk->sk_backlog_rcv = pppol2tp_backlog_recv;
571 sk->sk_protocol = PX_PROTO_OL2TP;
572 sk->sk_family = PF_PPPOX;
573 sk->sk_state = PPPOX_NONE;
574 sk->sk_type = SOCK_STREAM;
575 sk->sk_destruct = pppol2tp_session_destruct;
576
577 error = 0;
578
579out:
580 return error;
581}
582
Javier Martinez Canillas9dd79942016-09-09 08:43:17 -0400583#if IS_ENABLED(CONFIG_L2TP_DEBUGFS)
James Chapman0ad66142010-04-02 06:19:33 +0000584static void pppol2tp_show(struct seq_file *m, void *arg)
585{
586 struct l2tp_session *session = arg;
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200587 struct sock *sk;
James Chapman0ad66142010-04-02 06:19:33 +0000588
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200589 sk = pppol2tp_session_get_sock(session);
590 if (sk) {
591 struct pppox_sock *po = pppox_sk(sk);
592
593 seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan));
594 sock_put(sk);
James Chapman0ad66142010-04-02 06:19:33 +0000595 }
596}
597#endif
598
Guillaume Naultf98be6c2017-10-27 16:51:52 +0200599static void pppol2tp_session_init(struct l2tp_session *session)
600{
601 struct pppol2tp_session *ps;
602 struct dst_entry *dst;
603
604 session->recv_skb = pppol2tp_recv;
605 session->session_close = pppol2tp_session_close;
606#if IS_ENABLED(CONFIG_L2TP_DEBUGFS)
607 session->show = pppol2tp_show;
608#endif
609
610 ps = l2tp_session_priv(session);
611 mutex_init(&ps->sk_lock);
612 ps->tunnel_sock = session->tunnel->sock;
613 ps->owner = current->pid;
614
615 /* If PMTU discovery was enabled, use the MTU that was discovered */
616 dst = sk_dst_get(session->tunnel->sock);
617 if (dst) {
618 u32 pmtu = dst_mtu(dst);
619
620 if (pmtu) {
621 session->mtu = pmtu - PPPOL2TP_HEADER_OVERHEAD;
622 session->mru = pmtu - PPPOL2TP_HEADER_OVERHEAD;
623 }
624 dst_release(dst);
625 }
626}
627
James Chapmanfd558d12010-04-02 06:18:33 +0000628/* connect() handler. Attach a PPPoX socket to a tunnel UDP socket
629 */
630static int pppol2tp_connect(struct socket *sock, struct sockaddr *uservaddr,
631 int sockaddr_len, int flags)
632{
633 struct sock *sk = sock->sk;
634 struct sockaddr_pppol2tp *sp = (struct sockaddr_pppol2tp *) uservaddr;
635 struct pppox_sock *po = pppox_sk(sk);
636 struct l2tp_session *session = NULL;
637 struct l2tp_tunnel *tunnel;
638 struct pppol2tp_session *ps;
James Chapmanfd558d12010-04-02 06:18:33 +0000639 struct l2tp_session_cfg cfg = { 0, };
640 int error = 0;
James Chapmane0d44352010-04-02 06:18:54 +0000641 u32 tunnel_id, peer_tunnel_id;
642 u32 session_id, peer_session_id;
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200643 bool drop_refcnt = false;
James Chapmane0d44352010-04-02 06:18:54 +0000644 int ver = 2;
645 int fd;
James Chapmanfd558d12010-04-02 06:18:33 +0000646
647 lock_sock(sk);
648
649 error = -EINVAL;
650 if (sp->sa_protocol != PX_PROTO_OL2TP)
651 goto end;
652
653 /* Check for already bound sockets */
654 error = -EBUSY;
655 if (sk->sk_state & PPPOX_CONNECTED)
656 goto end;
657
658 /* We don't supporting rebinding anyway */
659 error = -EALREADY;
660 if (sk->sk_user_data)
661 goto end; /* socket is already attached */
662
James Chapmanb79585f2012-04-29 21:48:50 +0000663 /* Get params from socket address. Handle L2TPv2 and L2TPv3.
664 * This is nasty because there are different sockaddr_pppol2tp
665 * structs for L2TPv2, L2TPv3, over IPv4 and IPv6. We use
666 * the sockaddr size to determine which structure the caller
667 * is using.
668 */
669 peer_tunnel_id = 0;
James Chapmane0d44352010-04-02 06:18:54 +0000670 if (sockaddr_len == sizeof(struct sockaddr_pppol2tp)) {
671 fd = sp->pppol2tp.fd;
672 tunnel_id = sp->pppol2tp.s_tunnel;
673 peer_tunnel_id = sp->pppol2tp.d_tunnel;
674 session_id = sp->pppol2tp.s_session;
675 peer_session_id = sp->pppol2tp.d_session;
676 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3)) {
James Chapmanb79585f2012-04-29 21:48:50 +0000677 struct sockaddr_pppol2tpv3 *sp3 =
678 (struct sockaddr_pppol2tpv3 *) sp;
James Chapmane0d44352010-04-02 06:18:54 +0000679 ver = 3;
680 fd = sp3->pppol2tp.fd;
681 tunnel_id = sp3->pppol2tp.s_tunnel;
682 peer_tunnel_id = sp3->pppol2tp.d_tunnel;
683 session_id = sp3->pppol2tp.s_session;
684 peer_session_id = sp3->pppol2tp.d_session;
James Chapmanb79585f2012-04-29 21:48:50 +0000685 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpin6)) {
686 struct sockaddr_pppol2tpin6 *sp6 =
687 (struct sockaddr_pppol2tpin6 *) sp;
688 fd = sp6->pppol2tp.fd;
689 tunnel_id = sp6->pppol2tp.s_tunnel;
690 peer_tunnel_id = sp6->pppol2tp.d_tunnel;
691 session_id = sp6->pppol2tp.s_session;
692 peer_session_id = sp6->pppol2tp.d_session;
693 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3in6)) {
694 struct sockaddr_pppol2tpv3in6 *sp6 =
695 (struct sockaddr_pppol2tpv3in6 *) sp;
696 ver = 3;
697 fd = sp6->pppol2tp.fd;
698 tunnel_id = sp6->pppol2tp.s_tunnel;
699 peer_tunnel_id = sp6->pppol2tp.d_tunnel;
700 session_id = sp6->pppol2tp.s_session;
701 peer_session_id = sp6->pppol2tp.d_session;
James Chapmane0d44352010-04-02 06:18:54 +0000702 } else {
703 error = -EINVAL;
704 goto end; /* bad socket address */
705 }
706
707 /* Don't bind if tunnel_id is 0 */
James Chapmanfd558d12010-04-02 06:18:33 +0000708 error = -EINVAL;
James Chapmane0d44352010-04-02 06:18:54 +0000709 if (tunnel_id == 0)
James Chapmanfd558d12010-04-02 06:18:33 +0000710 goto end;
711
James Chapman309795f2010-04-02 06:19:10 +0000712 tunnel = l2tp_tunnel_find(sock_net(sk), tunnel_id);
713
James Chapmane0d44352010-04-02 06:18:54 +0000714 /* Special case: create tunnel context if session_id and
715 * peer_session_id is 0. Otherwise look up tunnel using supplied
James Chapmanfd558d12010-04-02 06:18:33 +0000716 * tunnel id.
717 */
James Chapmane0d44352010-04-02 06:18:54 +0000718 if ((session_id == 0) && (peer_session_id == 0)) {
James Chapman309795f2010-04-02 06:19:10 +0000719 if (tunnel == NULL) {
720 struct l2tp_tunnel_cfg tcfg = {
721 .encap = L2TP_ENCAPTYPE_UDP,
722 .debug = 0,
723 };
724 error = l2tp_tunnel_create(sock_net(sk), fd, ver, tunnel_id, peer_tunnel_id, &tcfg, &tunnel);
725 if (error < 0)
726 goto end;
727 }
James Chapmanfd558d12010-04-02 06:18:33 +0000728 } else {
James Chapmanfd558d12010-04-02 06:18:33 +0000729 /* Error if we can't find the tunnel */
730 error = -ENOENT;
731 if (tunnel == NULL)
732 goto end;
733
734 /* Error if socket is not prepped */
735 if (tunnel->sock == NULL)
736 goto end;
737 }
738
739 if (tunnel->recv_payload_hook == NULL)
740 tunnel->recv_payload_hook = pppol2tp_recv_payload_hook;
741
James Chapmanb79585f2012-04-29 21:48:50 +0000742 if (tunnel->peer_tunnel_id == 0)
743 tunnel->peer_tunnel_id = peer_tunnel_id;
James Chapmanfd558d12010-04-02 06:18:33 +0000744
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200745 session = l2tp_session_get(sock_net(sk), tunnel, session_id, false);
746 if (session) {
747 drop_refcnt = true;
748 ps = l2tp_session_priv(session);
James Chapman309795f2010-04-02 06:19:10 +0000749
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200750 /* Using a pre-existing session is fine as long as it hasn't
751 * been connected yet.
752 */
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200753 mutex_lock(&ps->sk_lock);
754 if (rcu_dereference_protected(ps->sk,
755 lockdep_is_held(&ps->sk_lock))) {
756 mutex_unlock(&ps->sk_lock);
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200757 error = -EEXIST;
758 goto end;
759 }
760
761 /* consistency checks */
762 if (ps->tunnel_sock != tunnel->sock) {
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200763 mutex_unlock(&ps->sk_lock);
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200764 error = -EEXIST;
James Chapman309795f2010-04-02 06:19:10 +0000765 goto end;
766 }
767 } else {
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200768 /* Default MTU must allow space for UDP/L2TP/PPP headers */
769 cfg.mtu = 1500 - PPPOL2TP_HEADER_OVERHEAD;
770 cfg.mru = cfg.mtu;
James Chapman309795f2010-04-02 06:19:10 +0000771
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200772 session = l2tp_session_create(sizeof(struct pppol2tp_session),
773 tunnel, session_id,
774 peer_session_id, &cfg);
775 if (IS_ERR(session)) {
776 error = PTR_ERR(session);
James Chapman309795f2010-04-02 06:19:10 +0000777 goto end;
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200778 }
Guillaume Nault3953ae72017-10-27 16:51:50 +0200779
Guillaume Naultf98be6c2017-10-27 16:51:52 +0200780 pppol2tp_session_init(session);
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200781 ps = l2tp_session_priv(session);
Guillaume Nault3953ae72017-10-27 16:51:50 +0200782 l2tp_session_inc_refcount(session);
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200783
784 mutex_lock(&ps->sk_lock);
Guillaume Nault3953ae72017-10-27 16:51:50 +0200785 error = l2tp_session_register(session, tunnel);
786 if (error < 0) {
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200787 mutex_unlock(&ps->sk_lock);
Guillaume Nault3953ae72017-10-27 16:51:50 +0200788 kfree(session);
789 goto end;
790 }
791 drop_refcnt = true;
James Chapman309795f2010-04-02 06:19:10 +0000792 }
793
James Chapmanfd558d12010-04-02 06:18:33 +0000794 /* Special case: if source & dest session_id == 0x0000, this
795 * socket is being created to manage the tunnel. Just set up
796 * the internal context for use by ioctl() and sockopt()
797 * handlers.
798 */
799 if ((session->session_id == 0) &&
800 (session->peer_session_id == 0)) {
801 error = 0;
802 goto out_no_ppp;
803 }
804
805 /* The only header we need to worry about is the L2TP
806 * header. This size is different depending on whether
807 * sequence numbers are enabled for the data channel.
808 */
809 po->chan.hdrlen = PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
810
811 po->chan.private = sk;
812 po->chan.ops = &pppol2tp_chan_ops;
813 po->chan.mtu = session->mtu;
814
815 error = ppp_register_net_channel(sock_net(sk), &po->chan);
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200816 if (error) {
817 mutex_unlock(&ps->sk_lock);
James Chapmanfd558d12010-04-02 06:18:33 +0000818 goto end;
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200819 }
James Chapmanfd558d12010-04-02 06:18:33 +0000820
821out_no_ppp:
822 /* This is how we get the session context from the socket. */
823 sk->sk_user_data = session;
Guillaume Naultee40fb2e2017-10-27 16:51:52 +0200824 rcu_assign_pointer(ps->sk, sk);
825 mutex_unlock(&ps->sk_lock);
826
Guillaume Naultf98be6c2017-10-27 16:51:52 +0200827 /* Keep the reference we've grabbed on the session: sk doesn't expect
828 * the session to disappear. pppol2tp_session_destruct() is responsible
829 * for dropping it.
830 */
831 drop_refcnt = false;
832
James Chapmanfd558d12010-04-02 06:18:33 +0000833 sk->sk_state = PPPOX_CONNECTED;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +0000834 l2tp_info(session, L2TP_MSG_CONTROL, "%s: created\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000835 session->name);
James Chapmanfd558d12010-04-02 06:18:33 +0000836
837end:
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200838 if (drop_refcnt)
839 l2tp_session_dec_refcount(session);
James Chapmanfd558d12010-04-02 06:18:33 +0000840 release_sock(sk);
841
842 return error;
843}
844
James Chapman309795f2010-04-02 06:19:10 +0000845#ifdef CONFIG_L2TP_V3
846
Guillaume Naultf026bc22017-09-01 17:58:51 +0200847/* Called when creating sessions via the netlink interface. */
848static int pppol2tp_session_create(struct net *net, struct l2tp_tunnel *tunnel,
849 u32 session_id, u32 peer_session_id,
850 struct l2tp_session_cfg *cfg)
James Chapman309795f2010-04-02 06:19:10 +0000851{
852 int error;
James Chapman309795f2010-04-02 06:19:10 +0000853 struct l2tp_session *session;
James Chapman309795f2010-04-02 06:19:10 +0000854
James Chapman309795f2010-04-02 06:19:10 +0000855 /* Error if tunnel socket is not prepped */
Guillaume Naultf026bc22017-09-01 17:58:51 +0200856 if (!tunnel->sock) {
857 error = -ENOENT;
Guillaume Nault3953ae72017-10-27 16:51:50 +0200858 goto err;
Guillaume Naultf026bc22017-09-01 17:58:51 +0200859 }
James Chapman309795f2010-04-02 06:19:10 +0000860
James Chapman309795f2010-04-02 06:19:10 +0000861 /* Default MTU values. */
862 if (cfg->mtu == 0)
863 cfg->mtu = 1500 - PPPOL2TP_HEADER_OVERHEAD;
864 if (cfg->mru == 0)
865 cfg->mru = cfg->mtu;
866
867 /* Allocate and initialize a new session context. */
James Chapman309795f2010-04-02 06:19:10 +0000868 session = l2tp_session_create(sizeof(struct pppol2tp_session),
869 tunnel, session_id,
870 peer_session_id, cfg);
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200871 if (IS_ERR(session)) {
872 error = PTR_ERR(session);
Guillaume Nault3953ae72017-10-27 16:51:50 +0200873 goto err;
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200874 }
James Chapman309795f2010-04-02 06:19:10 +0000875
Guillaume Naultf98be6c2017-10-27 16:51:52 +0200876 pppol2tp_session_init(session);
James Chapman309795f2010-04-02 06:19:10 +0000877
Guillaume Nault3953ae72017-10-27 16:51:50 +0200878 error = l2tp_session_register(session, tunnel);
879 if (error < 0)
880 goto err_sess;
James Chapman309795f2010-04-02 06:19:10 +0000881
Guillaume Nault3953ae72017-10-27 16:51:50 +0200882 return 0;
James Chapman309795f2010-04-02 06:19:10 +0000883
Guillaume Nault3953ae72017-10-27 16:51:50 +0200884err_sess:
885 kfree(session);
886err:
James Chapman309795f2010-04-02 06:19:10 +0000887 return error;
888}
889
James Chapman309795f2010-04-02 06:19:10 +0000890#endif /* CONFIG_L2TP_V3 */
891
James Chapmanfd558d12010-04-02 06:18:33 +0000892/* getname() support.
893 */
894static int pppol2tp_getname(struct socket *sock, struct sockaddr *uaddr,
895 int *usockaddr_len, int peer)
896{
James Chapmane0d44352010-04-02 06:18:54 +0000897 int len = 0;
James Chapmanfd558d12010-04-02 06:18:33 +0000898 int error = 0;
899 struct l2tp_session *session;
900 struct l2tp_tunnel *tunnel;
901 struct sock *sk = sock->sk;
902 struct inet_sock *inet;
903 struct pppol2tp_session *pls;
904
905 error = -ENOTCONN;
906 if (sk == NULL)
907 goto end;
Gao Feng56cff472016-08-19 13:36:23 +0800908 if (!(sk->sk_state & PPPOX_CONNECTED))
James Chapmanfd558d12010-04-02 06:18:33 +0000909 goto end;
910
911 error = -EBADF;
912 session = pppol2tp_sock_to_session(sk);
913 if (session == NULL)
914 goto end;
915
916 pls = l2tp_session_priv(session);
917 tunnel = l2tp_sock_to_tunnel(pls->tunnel_sock);
phil.turnbull@oracle.com4ac36a42016-07-26 15:14:35 -0400918 if (tunnel == NULL)
James Chapmanfd558d12010-04-02 06:18:33 +0000919 goto end_put_sess;
James Chapmanfd558d12010-04-02 06:18:33 +0000920
Benjamin LaHaisebbdb32c2012-03-20 03:57:54 +0000921 inet = inet_sk(tunnel->sock);
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000922 if ((tunnel->version == 2) && (tunnel->sock->sk_family == AF_INET)) {
James Chapmane0d44352010-04-02 06:18:54 +0000923 struct sockaddr_pppol2tp sp;
924 len = sizeof(sp);
925 memset(&sp, 0, len);
926 sp.sa_family = AF_PPPOX;
927 sp.sa_protocol = PX_PROTO_OL2TP;
928 sp.pppol2tp.fd = tunnel->fd;
929 sp.pppol2tp.pid = pls->owner;
930 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
931 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
932 sp.pppol2tp.s_session = session->session_id;
933 sp.pppol2tp.d_session = session->peer_session_id;
934 sp.pppol2tp.addr.sin_family = AF_INET;
935 sp.pppol2tp.addr.sin_port = inet->inet_dport;
936 sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr;
937 memcpy(uaddr, &sp, len);
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000938#if IS_ENABLED(CONFIG_IPV6)
939 } else if ((tunnel->version == 2) &&
940 (tunnel->sock->sk_family == AF_INET6)) {
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000941 struct sockaddr_pppol2tpin6 sp;
Eric Dumazetefe42082013-10-03 15:42:29 -0700942
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000943 len = sizeof(sp);
944 memset(&sp, 0, len);
945 sp.sa_family = AF_PPPOX;
946 sp.sa_protocol = PX_PROTO_OL2TP;
947 sp.pppol2tp.fd = tunnel->fd;
948 sp.pppol2tp.pid = pls->owner;
949 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
950 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
951 sp.pppol2tp.s_session = session->session_id;
952 sp.pppol2tp.d_session = session->peer_session_id;
953 sp.pppol2tp.addr.sin6_family = AF_INET6;
954 sp.pppol2tp.addr.sin6_port = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -0700955 memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr,
956 sizeof(tunnel->sock->sk_v6_daddr));
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000957 memcpy(uaddr, &sp, len);
958 } else if ((tunnel->version == 3) &&
959 (tunnel->sock->sk_family == AF_INET6)) {
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000960 struct sockaddr_pppol2tpv3in6 sp;
Eric Dumazetefe42082013-10-03 15:42:29 -0700961
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000962 len = sizeof(sp);
963 memset(&sp, 0, len);
964 sp.sa_family = AF_PPPOX;
965 sp.sa_protocol = PX_PROTO_OL2TP;
966 sp.pppol2tp.fd = tunnel->fd;
967 sp.pppol2tp.pid = pls->owner;
968 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
969 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
970 sp.pppol2tp.s_session = session->session_id;
971 sp.pppol2tp.d_session = session->peer_session_id;
972 sp.pppol2tp.addr.sin6_family = AF_INET6;
973 sp.pppol2tp.addr.sin6_port = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -0700974 memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr,
975 sizeof(tunnel->sock->sk_v6_daddr));
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000976 memcpy(uaddr, &sp, len);
977#endif
James Chapmane0d44352010-04-02 06:18:54 +0000978 } else if (tunnel->version == 3) {
979 struct sockaddr_pppol2tpv3 sp;
980 len = sizeof(sp);
981 memset(&sp, 0, len);
982 sp.sa_family = AF_PPPOX;
983 sp.sa_protocol = PX_PROTO_OL2TP;
984 sp.pppol2tp.fd = tunnel->fd;
985 sp.pppol2tp.pid = pls->owner;
986 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
987 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
988 sp.pppol2tp.s_session = session->session_id;
989 sp.pppol2tp.d_session = session->peer_session_id;
990 sp.pppol2tp.addr.sin_family = AF_INET;
991 sp.pppol2tp.addr.sin_port = inet->inet_dport;
992 sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr;
993 memcpy(uaddr, &sp, len);
994 }
James Chapmanfd558d12010-04-02 06:18:33 +0000995
996 *usockaddr_len = len;
phil.turnbull@oracle.com4ac36a42016-07-26 15:14:35 -0400997 error = 0;
James Chapmanfd558d12010-04-02 06:18:33 +0000998
999 sock_put(pls->tunnel_sock);
1000end_put_sess:
1001 sock_put(sk);
James Chapmanfd558d12010-04-02 06:18:33 +00001002end:
1003 return error;
1004}
1005
1006/****************************************************************************
1007 * ioctl() handlers.
1008 *
1009 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
1010 * sockets. However, in order to control kernel tunnel features, we allow
1011 * userspace to create a special "tunnel" PPPoX socket which is used for
1012 * control only. Tunnel PPPoX sockets have session_id == 0 and simply allow
1013 * the user application to issue L2TP setsockopt(), getsockopt() and ioctl()
1014 * calls.
1015 ****************************************************************************/
1016
1017static void pppol2tp_copy_stats(struct pppol2tp_ioc_stats *dest,
1018 struct l2tp_stats *stats)
1019{
Tom Parkin7b7c0712013-03-19 06:11:22 +00001020 dest->tx_packets = atomic_long_read(&stats->tx_packets);
1021 dest->tx_bytes = atomic_long_read(&stats->tx_bytes);
1022 dest->tx_errors = atomic_long_read(&stats->tx_errors);
1023 dest->rx_packets = atomic_long_read(&stats->rx_packets);
1024 dest->rx_bytes = atomic_long_read(&stats->rx_bytes);
1025 dest->rx_seq_discards = atomic_long_read(&stats->rx_seq_discards);
1026 dest->rx_oos_packets = atomic_long_read(&stats->rx_oos_packets);
1027 dest->rx_errors = atomic_long_read(&stats->rx_errors);
James Chapmanfd558d12010-04-02 06:18:33 +00001028}
1029
1030/* Session ioctl helper.
1031 */
1032static int pppol2tp_session_ioctl(struct l2tp_session *session,
1033 unsigned int cmd, unsigned long arg)
1034{
1035 struct ifreq ifr;
1036 int err = 0;
1037 struct sock *sk;
1038 int val = (int) arg;
1039 struct pppol2tp_session *ps = l2tp_session_priv(session);
1040 struct l2tp_tunnel *tunnel = session->tunnel;
1041 struct pppol2tp_ioc_stats stats;
1042
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001043 l2tp_dbg(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001044 "%s: pppol2tp_session_ioctl(cmd=%#x, arg=%#lx)\n",
1045 session->name, cmd, arg);
James Chapmanfd558d12010-04-02 06:18:33 +00001046
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001047 sk = pppol2tp_session_get_sock(session);
Guillaume Nault5903f592017-10-13 19:22:35 +02001048 if (!sk)
1049 return -EBADR;
1050
James Chapmanfd558d12010-04-02 06:18:33 +00001051 switch (cmd) {
1052 case SIOCGIFMTU:
1053 err = -ENXIO;
1054 if (!(sk->sk_state & PPPOX_CONNECTED))
1055 break;
1056
1057 err = -EFAULT;
1058 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1059 break;
1060 ifr.ifr_mtu = session->mtu;
1061 if (copy_to_user((void __user *) arg, &ifr, sizeof(struct ifreq)))
1062 break;
1063
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001064 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get mtu=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001065 session->name, session->mtu);
James Chapmanfd558d12010-04-02 06:18:33 +00001066 err = 0;
1067 break;
1068
1069 case SIOCSIFMTU:
1070 err = -ENXIO;
1071 if (!(sk->sk_state & PPPOX_CONNECTED))
1072 break;
1073
1074 err = -EFAULT;
1075 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1076 break;
1077
1078 session->mtu = ifr.ifr_mtu;
1079
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001080 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set mtu=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001081 session->name, session->mtu);
James Chapmanfd558d12010-04-02 06:18:33 +00001082 err = 0;
1083 break;
1084
1085 case PPPIOCGMRU:
1086 err = -ENXIO;
1087 if (!(sk->sk_state & PPPOX_CONNECTED))
1088 break;
1089
1090 err = -EFAULT;
1091 if (put_user(session->mru, (int __user *) arg))
1092 break;
1093
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001094 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get mru=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001095 session->name, session->mru);
James Chapmanfd558d12010-04-02 06:18:33 +00001096 err = 0;
1097 break;
1098
1099 case PPPIOCSMRU:
1100 err = -ENXIO;
1101 if (!(sk->sk_state & PPPOX_CONNECTED))
1102 break;
1103
1104 err = -EFAULT;
1105 if (get_user(val, (int __user *) arg))
1106 break;
1107
1108 session->mru = val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001109 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set mru=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001110 session->name, session->mru);
James Chapmanfd558d12010-04-02 06:18:33 +00001111 err = 0;
1112 break;
1113
1114 case PPPIOCGFLAGS:
1115 err = -EFAULT;
1116 if (put_user(ps->flags, (int __user *) arg))
1117 break;
1118
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001119 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get flags=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001120 session->name, ps->flags);
James Chapmanfd558d12010-04-02 06:18:33 +00001121 err = 0;
1122 break;
1123
1124 case PPPIOCSFLAGS:
1125 err = -EFAULT;
1126 if (get_user(val, (int __user *) arg))
1127 break;
1128 ps->flags = val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001129 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set flags=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001130 session->name, ps->flags);
James Chapmanfd558d12010-04-02 06:18:33 +00001131 err = 0;
1132 break;
1133
1134 case PPPIOCGL2TPSTATS:
1135 err = -ENXIO;
1136 if (!(sk->sk_state & PPPOX_CONNECTED))
1137 break;
1138
1139 memset(&stats, 0, sizeof(stats));
1140 stats.tunnel_id = tunnel->tunnel_id;
1141 stats.session_id = session->session_id;
1142 pppol2tp_copy_stats(&stats, &session->stats);
1143 if (copy_to_user((void __user *) arg, &stats,
1144 sizeof(stats)))
1145 break;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001146 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get L2TP stats\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001147 session->name);
James Chapmanfd558d12010-04-02 06:18:33 +00001148 err = 0;
1149 break;
1150
1151 default:
1152 err = -ENOSYS;
1153 break;
1154 }
1155
1156 sock_put(sk);
1157
1158 return err;
1159}
1160
1161/* Tunnel ioctl helper.
1162 *
1163 * Note the special handling for PPPIOCGL2TPSTATS below. If the ioctl data
1164 * specifies a session_id, the session ioctl handler is called. This allows an
1165 * application to retrieve session stats via a tunnel socket.
1166 */
1167static int pppol2tp_tunnel_ioctl(struct l2tp_tunnel *tunnel,
1168 unsigned int cmd, unsigned long arg)
1169{
1170 int err = 0;
1171 struct sock *sk;
1172 struct pppol2tp_ioc_stats stats;
1173
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001174 l2tp_dbg(tunnel, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001175 "%s: pppol2tp_tunnel_ioctl(cmd=%#x, arg=%#lx)\n",
1176 tunnel->name, cmd, arg);
James Chapmanfd558d12010-04-02 06:18:33 +00001177
1178 sk = tunnel->sock;
1179 sock_hold(sk);
1180
1181 switch (cmd) {
1182 case PPPIOCGL2TPSTATS:
1183 err = -ENXIO;
1184 if (!(sk->sk_state & PPPOX_CONNECTED))
1185 break;
1186
1187 if (copy_from_user(&stats, (void __user *) arg,
1188 sizeof(stats))) {
1189 err = -EFAULT;
1190 break;
1191 }
1192 if (stats.session_id != 0) {
1193 /* resend to session ioctl handler */
1194 struct l2tp_session *session =
Guillaume Nault57377d62017-03-31 13:02:26 +02001195 l2tp_session_get(sock_net(sk), tunnel,
1196 stats.session_id, true);
1197
1198 if (session) {
1199 err = pppol2tp_session_ioctl(session, cmd,
1200 arg);
1201 if (session->deref)
1202 session->deref(session);
1203 l2tp_session_dec_refcount(session);
1204 } else {
James Chapmanfd558d12010-04-02 06:18:33 +00001205 err = -EBADR;
Guillaume Nault57377d62017-03-31 13:02:26 +02001206 }
James Chapmanfd558d12010-04-02 06:18:33 +00001207 break;
1208 }
1209#ifdef CONFIG_XFRM
1210 stats.using_ipsec = (sk->sk_policy[0] || sk->sk_policy[1]) ? 1 : 0;
1211#endif
1212 pppol2tp_copy_stats(&stats, &tunnel->stats);
1213 if (copy_to_user((void __user *) arg, &stats, sizeof(stats))) {
1214 err = -EFAULT;
1215 break;
1216 }
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001217 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: get L2TP stats\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001218 tunnel->name);
James Chapmanfd558d12010-04-02 06:18:33 +00001219 err = 0;
1220 break;
1221
1222 default:
1223 err = -ENOSYS;
1224 break;
1225 }
1226
1227 sock_put(sk);
1228
1229 return err;
1230}
1231
1232/* Main ioctl() handler.
1233 * Dispatch to tunnel or session helpers depending on the socket.
1234 */
1235static int pppol2tp_ioctl(struct socket *sock, unsigned int cmd,
1236 unsigned long arg)
1237{
1238 struct sock *sk = sock->sk;
1239 struct l2tp_session *session;
1240 struct l2tp_tunnel *tunnel;
1241 struct pppol2tp_session *ps;
1242 int err;
1243
1244 if (!sk)
1245 return 0;
1246
1247 err = -EBADF;
1248 if (sock_flag(sk, SOCK_DEAD) != 0)
1249 goto end;
1250
1251 err = -ENOTCONN;
1252 if ((sk->sk_user_data == NULL) ||
1253 (!(sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND))))
1254 goto end;
1255
1256 /* Get session context from the socket */
1257 err = -EBADF;
1258 session = pppol2tp_sock_to_session(sk);
1259 if (session == NULL)
1260 goto end;
1261
1262 /* Special case: if session's session_id is zero, treat ioctl as a
1263 * tunnel ioctl
1264 */
1265 ps = l2tp_session_priv(session);
1266 if ((session->session_id == 0) &&
1267 (session->peer_session_id == 0)) {
1268 err = -EBADF;
1269 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1270 if (tunnel == NULL)
1271 goto end_put_sess;
1272
1273 err = pppol2tp_tunnel_ioctl(tunnel, cmd, arg);
1274 sock_put(ps->tunnel_sock);
1275 goto end_put_sess;
1276 }
1277
1278 err = pppol2tp_session_ioctl(session, cmd, arg);
1279
1280end_put_sess:
1281 sock_put(sk);
1282end:
1283 return err;
1284}
1285
1286/*****************************************************************************
1287 * setsockopt() / getsockopt() support.
1288 *
1289 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
1290 * sockets. In order to control kernel tunnel features, we allow userspace to
1291 * create a special "tunnel" PPPoX socket which is used for control only.
1292 * Tunnel PPPoX sockets have session_id == 0 and simply allow the user
1293 * application to issue L2TP setsockopt(), getsockopt() and ioctl() calls.
1294 *****************************************************************************/
1295
1296/* Tunnel setsockopt() helper.
1297 */
1298static int pppol2tp_tunnel_setsockopt(struct sock *sk,
1299 struct l2tp_tunnel *tunnel,
1300 int optname, int val)
1301{
1302 int err = 0;
1303
1304 switch (optname) {
1305 case PPPOL2TP_SO_DEBUG:
1306 tunnel->debug = val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001307 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: set debug=%x\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001308 tunnel->name, tunnel->debug);
James Chapmanfd558d12010-04-02 06:18:33 +00001309 break;
1310
1311 default:
1312 err = -ENOPROTOOPT;
1313 break;
1314 }
1315
1316 return err;
1317}
1318
1319/* Session setsockopt helper.
1320 */
1321static int pppol2tp_session_setsockopt(struct sock *sk,
1322 struct l2tp_session *session,
1323 int optname, int val)
1324{
1325 int err = 0;
James Chapmanfd558d12010-04-02 06:18:33 +00001326
1327 switch (optname) {
1328 case PPPOL2TP_SO_RECVSEQ:
1329 if ((val != 0) && (val != 1)) {
1330 err = -EINVAL;
1331 break;
1332 }
Asbjørn Sloth Tønnesen3f9b9772016-11-07 20:39:28 +00001333 session->recv_seq = !!val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001334 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001335 "%s: set recv_seq=%d\n",
1336 session->name, session->recv_seq);
James Chapmanfd558d12010-04-02 06:18:33 +00001337 break;
1338
1339 case PPPOL2TP_SO_SENDSEQ:
1340 if ((val != 0) && (val != 1)) {
1341 err = -EINVAL;
1342 break;
1343 }
Asbjørn Sloth Tønnesen3f9b9772016-11-07 20:39:28 +00001344 session->send_seq = !!val;
James Chapmanfd558d12010-04-02 06:18:33 +00001345 {
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001346 struct pppox_sock *po = pppox_sk(sk);
1347
James Chapmanfd558d12010-04-02 06:18:33 +00001348 po->chan.hdrlen = val ? PPPOL2TP_L2TP_HDR_SIZE_SEQ :
1349 PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
1350 }
Guillaume Naultbb5016e2014-03-06 11:14:30 +01001351 l2tp_session_set_header_len(session, session->tunnel->version);
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001352 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001353 "%s: set send_seq=%d\n",
1354 session->name, session->send_seq);
James Chapmanfd558d12010-04-02 06:18:33 +00001355 break;
1356
1357 case PPPOL2TP_SO_LNSMODE:
1358 if ((val != 0) && (val != 1)) {
1359 err = -EINVAL;
1360 break;
1361 }
Asbjørn Sloth Tønnesen3f9b9772016-11-07 20:39:28 +00001362 session->lns_mode = !!val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001363 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001364 "%s: set lns_mode=%d\n",
1365 session->name, session->lns_mode);
James Chapmanfd558d12010-04-02 06:18:33 +00001366 break;
1367
1368 case PPPOL2TP_SO_DEBUG:
1369 session->debug = val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001370 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set debug=%x\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001371 session->name, session->debug);
James Chapmanfd558d12010-04-02 06:18:33 +00001372 break;
1373
1374 case PPPOL2TP_SO_REORDERTO:
1375 session->reorder_timeout = msecs_to_jiffies(val);
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001376 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001377 "%s: set reorder_timeout=%d\n",
1378 session->name, session->reorder_timeout);
James Chapmanfd558d12010-04-02 06:18:33 +00001379 break;
1380
1381 default:
1382 err = -ENOPROTOOPT;
1383 break;
1384 }
1385
1386 return err;
1387}
1388
1389/* Main setsockopt() entry point.
1390 * Does API checks, then calls either the tunnel or session setsockopt
1391 * handler, according to whether the PPPoL2TP socket is a for a regular
1392 * session or the special tunnel type.
1393 */
1394static int pppol2tp_setsockopt(struct socket *sock, int level, int optname,
1395 char __user *optval, unsigned int optlen)
1396{
1397 struct sock *sk = sock->sk;
1398 struct l2tp_session *session;
1399 struct l2tp_tunnel *tunnel;
1400 struct pppol2tp_session *ps;
1401 int val;
1402 int err;
1403
1404 if (level != SOL_PPPOL2TP)
Sasha Levin3cf521f2014-07-14 17:02:31 -07001405 return -EINVAL;
James Chapmanfd558d12010-04-02 06:18:33 +00001406
1407 if (optlen < sizeof(int))
1408 return -EINVAL;
1409
1410 if (get_user(val, (int __user *)optval))
1411 return -EFAULT;
1412
1413 err = -ENOTCONN;
1414 if (sk->sk_user_data == NULL)
1415 goto end;
1416
1417 /* Get session context from the socket */
1418 err = -EBADF;
1419 session = pppol2tp_sock_to_session(sk);
1420 if (session == NULL)
1421 goto end;
1422
1423 /* Special case: if session_id == 0x0000, treat as operation on tunnel
1424 */
1425 ps = l2tp_session_priv(session);
1426 if ((session->session_id == 0) &&
1427 (session->peer_session_id == 0)) {
1428 err = -EBADF;
1429 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1430 if (tunnel == NULL)
1431 goto end_put_sess;
1432
1433 err = pppol2tp_tunnel_setsockopt(sk, tunnel, optname, val);
1434 sock_put(ps->tunnel_sock);
1435 } else
1436 err = pppol2tp_session_setsockopt(sk, session, optname, val);
1437
James Chapmanfd558d12010-04-02 06:18:33 +00001438end_put_sess:
1439 sock_put(sk);
1440end:
1441 return err;
1442}
1443
1444/* Tunnel getsockopt helper. Called with sock locked.
1445 */
1446static int pppol2tp_tunnel_getsockopt(struct sock *sk,
1447 struct l2tp_tunnel *tunnel,
1448 int optname, int *val)
1449{
1450 int err = 0;
1451
1452 switch (optname) {
1453 case PPPOL2TP_SO_DEBUG:
1454 *val = tunnel->debug;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001455 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: get debug=%x\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001456 tunnel->name, tunnel->debug);
James Chapmanfd558d12010-04-02 06:18:33 +00001457 break;
1458
1459 default:
1460 err = -ENOPROTOOPT;
1461 break;
1462 }
1463
1464 return err;
1465}
1466
1467/* Session getsockopt helper. Called with sock locked.
1468 */
1469static int pppol2tp_session_getsockopt(struct sock *sk,
1470 struct l2tp_session *session,
1471 int optname, int *val)
1472{
1473 int err = 0;
1474
1475 switch (optname) {
1476 case PPPOL2TP_SO_RECVSEQ:
1477 *val = session->recv_seq;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001478 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001479 "%s: get recv_seq=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001480 break;
1481
1482 case PPPOL2TP_SO_SENDSEQ:
1483 *val = session->send_seq;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001484 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001485 "%s: get send_seq=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001486 break;
1487
1488 case PPPOL2TP_SO_LNSMODE:
1489 *val = session->lns_mode;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001490 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001491 "%s: get lns_mode=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001492 break;
1493
1494 case PPPOL2TP_SO_DEBUG:
1495 *val = session->debug;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001496 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get debug=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001497 session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001498 break;
1499
1500 case PPPOL2TP_SO_REORDERTO:
1501 *val = (int) jiffies_to_msecs(session->reorder_timeout);
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001502 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001503 "%s: get reorder_timeout=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001504 break;
1505
1506 default:
1507 err = -ENOPROTOOPT;
1508 }
1509
1510 return err;
1511}
1512
1513/* Main getsockopt() entry point.
1514 * Does API checks, then calls either the tunnel or session getsockopt
1515 * handler, according to whether the PPPoX socket is a for a regular session
1516 * or the special tunnel type.
1517 */
Joe Perchese3192692012-06-03 17:41:40 +00001518static int pppol2tp_getsockopt(struct socket *sock, int level, int optname,
1519 char __user *optval, int __user *optlen)
James Chapmanfd558d12010-04-02 06:18:33 +00001520{
1521 struct sock *sk = sock->sk;
1522 struct l2tp_session *session;
1523 struct l2tp_tunnel *tunnel;
1524 int val, len;
1525 int err;
1526 struct pppol2tp_session *ps;
1527
1528 if (level != SOL_PPPOL2TP)
Sasha Levin3cf521f2014-07-14 17:02:31 -07001529 return -EINVAL;
James Chapmanfd558d12010-04-02 06:18:33 +00001530
Joe Perchese3192692012-06-03 17:41:40 +00001531 if (get_user(len, optlen))
James Chapmanfd558d12010-04-02 06:18:33 +00001532 return -EFAULT;
1533
1534 len = min_t(unsigned int, len, sizeof(int));
1535
1536 if (len < 0)
1537 return -EINVAL;
1538
1539 err = -ENOTCONN;
1540 if (sk->sk_user_data == NULL)
1541 goto end;
1542
1543 /* Get the session context */
1544 err = -EBADF;
1545 session = pppol2tp_sock_to_session(sk);
1546 if (session == NULL)
1547 goto end;
1548
1549 /* Special case: if session_id == 0x0000, treat as operation on tunnel */
1550 ps = l2tp_session_priv(session);
1551 if ((session->session_id == 0) &&
1552 (session->peer_session_id == 0)) {
1553 err = -EBADF;
1554 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1555 if (tunnel == NULL)
1556 goto end_put_sess;
1557
1558 err = pppol2tp_tunnel_getsockopt(sk, tunnel, optname, &val);
1559 sock_put(ps->tunnel_sock);
Guillaume Nault321a52a2017-04-06 18:31:21 +02001560 if (err)
1561 goto end_put_sess;
1562 } else {
James Chapmanfd558d12010-04-02 06:18:33 +00001563 err = pppol2tp_session_getsockopt(sk, session, optname, &val);
Guillaume Nault321a52a2017-04-06 18:31:21 +02001564 if (err)
1565 goto end_put_sess;
1566 }
James Chapmanfd558d12010-04-02 06:18:33 +00001567
1568 err = -EFAULT;
Joe Perchese3192692012-06-03 17:41:40 +00001569 if (put_user(len, optlen))
James Chapmanfd558d12010-04-02 06:18:33 +00001570 goto end_put_sess;
1571
1572 if (copy_to_user((void __user *) optval, &val, len))
1573 goto end_put_sess;
1574
1575 err = 0;
1576
1577end_put_sess:
1578 sock_put(sk);
1579end:
1580 return err;
1581}
1582
1583/*****************************************************************************
1584 * /proc filesystem for debug
James Chapmanf7faffa2010-04-02 06:18:49 +00001585 * Since the original pppol2tp driver provided /proc/net/pppol2tp for
1586 * L2TPv2, we dump only L2TPv2 tunnels and sessions here.
James Chapmanfd558d12010-04-02 06:18:33 +00001587 *****************************************************************************/
1588
1589static unsigned int pppol2tp_net_id;
1590
1591#ifdef CONFIG_PROC_FS
1592
1593struct pppol2tp_seq_data {
1594 struct seq_net_private p;
1595 int tunnel_idx; /* current tunnel */
1596 int session_idx; /* index of session within current tunnel */
1597 struct l2tp_tunnel *tunnel;
1598 struct l2tp_session *session; /* NULL means get next tunnel */
1599};
1600
1601static void pppol2tp_next_tunnel(struct net *net, struct pppol2tp_seq_data *pd)
1602{
James Chapmanf7faffa2010-04-02 06:18:49 +00001603 for (;;) {
1604 pd->tunnel = l2tp_tunnel_find_nth(net, pd->tunnel_idx);
1605 pd->tunnel_idx++;
1606
1607 if (pd->tunnel == NULL)
1608 break;
1609
1610 /* Ignore L2TPv3 tunnels */
1611 if (pd->tunnel->version < 3)
1612 break;
1613 }
James Chapmanfd558d12010-04-02 06:18:33 +00001614}
1615
1616static void pppol2tp_next_session(struct net *net, struct pppol2tp_seq_data *pd)
1617{
Guillaume Naulte08293a2017-04-03 12:03:13 +02001618 pd->session = l2tp_session_get_nth(pd->tunnel, pd->session_idx, true);
James Chapmanfd558d12010-04-02 06:18:33 +00001619 pd->session_idx++;
James Chapmanf7faffa2010-04-02 06:18:49 +00001620
James Chapmanfd558d12010-04-02 06:18:33 +00001621 if (pd->session == NULL) {
1622 pd->session_idx = 0;
1623 pppol2tp_next_tunnel(net, pd);
1624 }
1625}
1626
1627static void *pppol2tp_seq_start(struct seq_file *m, loff_t *offs)
1628{
1629 struct pppol2tp_seq_data *pd = SEQ_START_TOKEN;
1630 loff_t pos = *offs;
1631 struct net *net;
1632
1633 if (!pos)
1634 goto out;
1635
1636 BUG_ON(m->private == NULL);
1637 pd = m->private;
1638 net = seq_file_net(m);
1639
1640 if (pd->tunnel == NULL)
1641 pppol2tp_next_tunnel(net, pd);
1642 else
1643 pppol2tp_next_session(net, pd);
1644
1645 /* NULL tunnel and session indicates end of list */
1646 if ((pd->tunnel == NULL) && (pd->session == NULL))
1647 pd = NULL;
1648
1649out:
1650 return pd;
1651}
1652
1653static void *pppol2tp_seq_next(struct seq_file *m, void *v, loff_t *pos)
1654{
1655 (*pos)++;
1656 return NULL;
1657}
1658
1659static void pppol2tp_seq_stop(struct seq_file *p, void *v)
1660{
1661 /* nothing to do */
1662}
1663
1664static void pppol2tp_seq_tunnel_show(struct seq_file *m, void *v)
1665{
1666 struct l2tp_tunnel *tunnel = v;
1667
1668 seq_printf(m, "\nTUNNEL '%s', %c %d\n",
1669 tunnel->name,
1670 (tunnel == tunnel->sock->sk_user_data) ? 'Y' : 'N',
Reshetova, Elenafbea9e02017-07-04 15:52:57 +03001671 refcount_read(&tunnel->ref_count) - 1);
Tom Parkin7b7c0712013-03-19 06:11:22 +00001672 seq_printf(m, " %08x %ld/%ld/%ld %ld/%ld/%ld\n",
James Chapmanfd558d12010-04-02 06:18:33 +00001673 tunnel->debug,
Tom Parkin7b7c0712013-03-19 06:11:22 +00001674 atomic_long_read(&tunnel->stats.tx_packets),
1675 atomic_long_read(&tunnel->stats.tx_bytes),
1676 atomic_long_read(&tunnel->stats.tx_errors),
1677 atomic_long_read(&tunnel->stats.rx_packets),
1678 atomic_long_read(&tunnel->stats.rx_bytes),
1679 atomic_long_read(&tunnel->stats.rx_errors));
James Chapmanfd558d12010-04-02 06:18:33 +00001680}
1681
1682static void pppol2tp_seq_session_show(struct seq_file *m, void *v)
1683{
1684 struct l2tp_session *session = v;
1685 struct l2tp_tunnel *tunnel = session->tunnel;
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001686 unsigned char state;
1687 char user_data_ok;
1688 struct sock *sk;
James Chapmanfd558d12010-04-02 06:18:33 +00001689 u32 ip = 0;
1690 u16 port = 0;
1691
1692 if (tunnel->sock) {
1693 struct inet_sock *inet = inet_sk(tunnel->sock);
1694 ip = ntohl(inet->inet_saddr);
1695 port = ntohs(inet->inet_sport);
1696 }
1697
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001698 sk = pppol2tp_session_get_sock(session);
1699 if (sk) {
1700 state = sk->sk_state;
1701 user_data_ok = (session == sk->sk_user_data) ? 'Y' : 'N';
1702 } else {
1703 state = 0;
1704 user_data_ok = 'N';
1705 }
1706
James Chapmanfd558d12010-04-02 06:18:33 +00001707 seq_printf(m, " SESSION '%s' %08X/%d %04X/%04X -> "
1708 "%04X/%04X %d %c\n",
1709 session->name, ip, port,
1710 tunnel->tunnel_id,
1711 session->session_id,
1712 tunnel->peer_tunnel_id,
1713 session->peer_session_id,
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001714 state, user_data_ok);
James Chapmanfd558d12010-04-02 06:18:33 +00001715 seq_printf(m, " %d/%d/%c/%c/%s %08x %u\n",
1716 session->mtu, session->mru,
1717 session->recv_seq ? 'R' : '-',
1718 session->send_seq ? 'S' : '-',
1719 session->lns_mode ? "LNS" : "LAC",
1720 session->debug,
1721 jiffies_to_msecs(session->reorder_timeout));
Tom Parkin7b7c0712013-03-19 06:11:22 +00001722 seq_printf(m, " %hu/%hu %ld/%ld/%ld %ld/%ld/%ld\n",
James Chapmanfd558d12010-04-02 06:18:33 +00001723 session->nr, session->ns,
Tom Parkin7b7c0712013-03-19 06:11:22 +00001724 atomic_long_read(&session->stats.tx_packets),
1725 atomic_long_read(&session->stats.tx_bytes),
1726 atomic_long_read(&session->stats.tx_errors),
1727 atomic_long_read(&session->stats.rx_packets),
1728 atomic_long_read(&session->stats.rx_bytes),
1729 atomic_long_read(&session->stats.rx_errors));
James Chapman93454712010-04-02 06:18:44 +00001730
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001731 if (sk) {
1732 struct pppox_sock *po = pppox_sk(sk);
1733
James Chapman93454712010-04-02 06:18:44 +00001734 seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan));
Guillaume Naultee40fb2e2017-10-27 16:51:52 +02001735 sock_put(sk);
1736 }
James Chapmanfd558d12010-04-02 06:18:33 +00001737}
1738
1739static int pppol2tp_seq_show(struct seq_file *m, void *v)
1740{
1741 struct pppol2tp_seq_data *pd = v;
1742
1743 /* display header on line 1 */
1744 if (v == SEQ_START_TOKEN) {
1745 seq_puts(m, "PPPoL2TP driver info, " PPPOL2TP_DRV_VERSION "\n");
1746 seq_puts(m, "TUNNEL name, user-data-ok session-count\n");
1747 seq_puts(m, " debug tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
1748 seq_puts(m, " SESSION name, addr/port src-tid/sid "
1749 "dest-tid/sid state user-data-ok\n");
1750 seq_puts(m, " mtu/mru/rcvseq/sendseq/lns debug reorderto\n");
1751 seq_puts(m, " nr/ns tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
1752 goto out;
1753 }
1754
1755 /* Show the tunnel or session context.
1756 */
Guillaume Naulte08293a2017-04-03 12:03:13 +02001757 if (!pd->session) {
James Chapmanfd558d12010-04-02 06:18:33 +00001758 pppol2tp_seq_tunnel_show(m, pd->tunnel);
Guillaume Naulte08293a2017-04-03 12:03:13 +02001759 } else {
James Chapmanfd558d12010-04-02 06:18:33 +00001760 pppol2tp_seq_session_show(m, pd->session);
Guillaume Naulte08293a2017-04-03 12:03:13 +02001761 if (pd->session->deref)
1762 pd->session->deref(pd->session);
1763 l2tp_session_dec_refcount(pd->session);
1764 }
James Chapmanfd558d12010-04-02 06:18:33 +00001765
1766out:
1767 return 0;
1768}
1769
1770static const struct seq_operations pppol2tp_seq_ops = {
1771 .start = pppol2tp_seq_start,
1772 .next = pppol2tp_seq_next,
1773 .stop = pppol2tp_seq_stop,
1774 .show = pppol2tp_seq_show,
1775};
1776
1777/* Called when our /proc file is opened. We allocate data for use when
1778 * iterating our tunnel / session contexts and store it in the private
1779 * data of the seq_file.
1780 */
1781static int pppol2tp_proc_open(struct inode *inode, struct file *file)
1782{
1783 return seq_open_net(inode, file, &pppol2tp_seq_ops,
1784 sizeof(struct pppol2tp_seq_data));
1785}
1786
1787static const struct file_operations pppol2tp_proc_fops = {
1788 .owner = THIS_MODULE,
1789 .open = pppol2tp_proc_open,
1790 .read = seq_read,
1791 .llseek = seq_lseek,
1792 .release = seq_release_net,
1793};
1794
1795#endif /* CONFIG_PROC_FS */
1796
1797/*****************************************************************************
1798 * Network namespace
1799 *****************************************************************************/
1800
1801static __net_init int pppol2tp_init_net(struct net *net)
1802{
1803 struct proc_dir_entry *pde;
1804 int err = 0;
1805
Gao fengd4beaa62013-02-18 01:34:54 +00001806 pde = proc_create("pppol2tp", S_IRUGO, net->proc_net,
1807 &pppol2tp_proc_fops);
James Chapmanfd558d12010-04-02 06:18:33 +00001808 if (!pde) {
1809 err = -ENOMEM;
1810 goto out;
1811 }
1812
1813out:
1814 return err;
1815}
1816
1817static __net_exit void pppol2tp_exit_net(struct net *net)
1818{
Gao fengece31ff2013-02-18 01:34:56 +00001819 remove_proc_entry("pppol2tp", net->proc_net);
James Chapmanfd558d12010-04-02 06:18:33 +00001820}
1821
1822static struct pernet_operations pppol2tp_net_ops = {
1823 .init = pppol2tp_init_net,
1824 .exit = pppol2tp_exit_net,
1825 .id = &pppol2tp_net_id,
1826};
1827
1828/*****************************************************************************
1829 * Init and cleanup
1830 *****************************************************************************/
1831
1832static const struct proto_ops pppol2tp_ops = {
1833 .family = AF_PPPOX,
1834 .owner = THIS_MODULE,
1835 .release = pppol2tp_release,
1836 .bind = sock_no_bind,
1837 .connect = pppol2tp_connect,
1838 .socketpair = sock_no_socketpair,
1839 .accept = sock_no_accept,
1840 .getname = pppol2tp_getname,
1841 .poll = datagram_poll,
1842 .listen = sock_no_listen,
1843 .shutdown = sock_no_shutdown,
1844 .setsockopt = pppol2tp_setsockopt,
1845 .getsockopt = pppol2tp_getsockopt,
1846 .sendmsg = pppol2tp_sendmsg,
1847 .recvmsg = pppol2tp_recvmsg,
1848 .mmap = sock_no_mmap,
1849 .ioctl = pppox_ioctl,
1850};
1851
Eric Dumazet756e64a2010-09-21 06:43:54 +00001852static const struct pppox_proto pppol2tp_proto = {
James Chapmanfd558d12010-04-02 06:18:33 +00001853 .create = pppol2tp_create,
Wei Yongjune1558a92013-07-02 09:02:07 +08001854 .ioctl = pppol2tp_ioctl,
1855 .owner = THIS_MODULE,
James Chapmanfd558d12010-04-02 06:18:33 +00001856};
1857
James Chapman309795f2010-04-02 06:19:10 +00001858#ifdef CONFIG_L2TP_V3
1859
1860static const struct l2tp_nl_cmd_ops pppol2tp_nl_cmd_ops = {
1861 .session_create = pppol2tp_session_create,
Tom Parkincf2f5c82013-03-19 06:11:21 +00001862 .session_delete = l2tp_session_delete,
James Chapman309795f2010-04-02 06:19:10 +00001863};
1864
1865#endif /* CONFIG_L2TP_V3 */
1866
James Chapmanfd558d12010-04-02 06:18:33 +00001867static int __init pppol2tp_init(void)
1868{
1869 int err;
1870
1871 err = register_pernet_device(&pppol2tp_net_ops);
1872 if (err)
1873 goto out;
1874
1875 err = proto_register(&pppol2tp_sk_proto, 0);
1876 if (err)
1877 goto out_unregister_pppol2tp_pernet;
1878
1879 err = register_pppox_proto(PX_PROTO_OL2TP, &pppol2tp_proto);
1880 if (err)
1881 goto out_unregister_pppol2tp_proto;
1882
James Chapman309795f2010-04-02 06:19:10 +00001883#ifdef CONFIG_L2TP_V3
1884 err = l2tp_nl_register_ops(L2TP_PWTYPE_PPP, &pppol2tp_nl_cmd_ops);
1885 if (err)
1886 goto out_unregister_pppox;
1887#endif
1888
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001889 pr_info("PPPoL2TP kernel driver, %s\n", PPPOL2TP_DRV_VERSION);
James Chapmanfd558d12010-04-02 06:18:33 +00001890
1891out:
1892 return err;
James Chapman309795f2010-04-02 06:19:10 +00001893
1894#ifdef CONFIG_L2TP_V3
1895out_unregister_pppox:
1896 unregister_pppox_proto(PX_PROTO_OL2TP);
1897#endif
James Chapmanfd558d12010-04-02 06:18:33 +00001898out_unregister_pppol2tp_proto:
1899 proto_unregister(&pppol2tp_sk_proto);
1900out_unregister_pppol2tp_pernet:
1901 unregister_pernet_device(&pppol2tp_net_ops);
1902 goto out;
1903}
1904
1905static void __exit pppol2tp_exit(void)
1906{
James Chapman309795f2010-04-02 06:19:10 +00001907#ifdef CONFIG_L2TP_V3
1908 l2tp_nl_unregister_ops(L2TP_PWTYPE_PPP);
1909#endif
James Chapmanfd558d12010-04-02 06:18:33 +00001910 unregister_pppox_proto(PX_PROTO_OL2TP);
1911 proto_unregister(&pppol2tp_sk_proto);
1912 unregister_pernet_device(&pppol2tp_net_ops);
1913}
1914
1915module_init(pppol2tp_init);
1916module_exit(pppol2tp_exit);
1917
1918MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
1919MODULE_DESCRIPTION("PPP over L2TP over UDP");
1920MODULE_LICENSE("GPL");
1921MODULE_VERSION(PPPOL2TP_DRV_VERSION);
Guillaume Nault681b4d82015-12-02 16:27:39 +01001922MODULE_ALIAS_NET_PF_PROTO(PF_PPPOX, PX_PROTO_OL2TP);
Guillaume Nault249ee812017-04-03 13:23:15 +02001923MODULE_ALIAS_L2TP_PWTYPE(7);