blob: 40cf7a78e331253e65c8cd606c81635f271e6d70 [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
125 struct sock *sock; /* Pointer to the session
126 * PPPoX socket */
127 struct sock *tunnel_sock; /* Pointer to the tunnel UDP
128 * socket */
129 int flags; /* accessed by PPPIOCGFLAGS.
130 * Unused. */
131};
132
133static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb);
134
stephen hemmingerd7100da2010-08-04 07:34:36 +0000135static const struct ppp_channel_ops pppol2tp_chan_ops = {
136 .start_xmit = pppol2tp_xmit,
137};
138
James Chapmanfd558d12010-04-02 06:18:33 +0000139static const struct proto_ops pppol2tp_ops;
140
141/* Helpers to obtain tunnel/session contexts from sockets.
142 */
143static inline struct l2tp_session *pppol2tp_sock_to_session(struct sock *sk)
144{
145 struct l2tp_session *session;
146
147 if (sk == NULL)
148 return NULL;
149
150 sock_hold(sk);
151 session = (struct l2tp_session *)(sk->sk_user_data);
152 if (session == NULL) {
153 sock_put(sk);
154 goto out;
155 }
156
157 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
158
159out:
160 return session;
161}
162
163/*****************************************************************************
164 * Receive data handling
165 *****************************************************************************/
166
167static int pppol2tp_recv_payload_hook(struct sk_buff *skb)
168{
169 /* Skip PPP header, if present. In testing, Microsoft L2TP clients
170 * don't send the PPP header (PPP header compression enabled), but
171 * other clients can include the header. So we cope with both cases
172 * here. The PPP header is always FF03 when using L2TP.
173 *
174 * Note that skb->data[] isn't dereferenced from a u16 ptr here since
175 * the field may be unaligned.
176 */
177 if (!pskb_may_pull(skb, 2))
178 return 1;
179
Gao Feng54c151d2016-08-22 22:50:02 +0800180 if ((skb->data[0] == PPP_ALLSTATIONS) && (skb->data[1] == PPP_UI))
James Chapmanfd558d12010-04-02 06:18:33 +0000181 skb_pull(skb, 2);
182
183 return 0;
184}
185
186/* Receive message. This is the recvmsg for the PPPoL2TP socket.
187 */
Ying Xue1b784142015-03-02 15:37:48 +0800188static int pppol2tp_recvmsg(struct socket *sock, struct msghdr *msg,
189 size_t len, int flags)
James Chapmanfd558d12010-04-02 06:18:33 +0000190{
191 int err;
192 struct sk_buff *skb;
193 struct sock *sk = sock->sk;
194
195 err = -EIO;
196 if (sk->sk_state & PPPOX_BOUND)
197 goto end;
198
James Chapmanfd558d12010-04-02 06:18:33 +0000199 err = 0;
200 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
201 flags & MSG_DONTWAIT, &err);
202 if (!skb)
203 goto end;
204
205 if (len > skb->len)
206 len = skb->len;
207 else if (len < skb->len)
208 msg->msg_flags |= MSG_TRUNC;
209
David S. Miller51f3d022014-11-05 16:46:40 -0500210 err = skb_copy_datagram_msg(skb, 0, msg, len);
James Chapmanfd558d12010-04-02 06:18:33 +0000211 if (likely(err == 0))
212 err = len;
213
214 kfree_skb(skb);
215end:
216 return err;
217}
218
219static void pppol2tp_recv(struct l2tp_session *session, struct sk_buff *skb, int data_len)
220{
221 struct pppol2tp_session *ps = l2tp_session_priv(session);
222 struct sock *sk = NULL;
223
224 /* If the socket is bound, send it in to PPP's input queue. Otherwise
225 * queue it on the session socket.
226 */
227 sk = ps->sock;
228 if (sk == NULL)
229 goto no_sock;
230
231 if (sk->sk_state & PPPOX_BOUND) {
232 struct pppox_sock *po;
Guillaume Nault98f40b32015-12-29 13:06:59 +0100233
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +0000234 l2tp_dbg(session, L2TP_MSG_DATA,
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000235 "%s: recv %d byte data frame, passing to ppp\n",
236 session->name, data_len);
James Chapmanfd558d12010-04-02 06:18:33 +0000237
James Chapmanfd558d12010-04-02 06:18:33 +0000238 po = pppox_sk(sk);
239 ppp_input(&po->chan, skb);
240 } else {
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +0000241 l2tp_dbg(session, L2TP_MSG_DATA,
Guillaume Nault9e9cb622014-03-06 11:15:10 +0100242 "%s: recv %d byte data frame, passing to L2TP socket\n",
243 session->name, data_len);
James Chapmanfd558d12010-04-02 06:18:33 +0000244
Guillaume Nault9e9cb622014-03-06 11:15:10 +0100245 if (sock_queue_rcv_skb(sk, skb) < 0) {
246 atomic_long_inc(&session->stats.rx_errors);
247 kfree_skb(skb);
248 }
James Chapmanfd558d12010-04-02 06:18:33 +0000249 }
250
251 return;
252
253no_sock:
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +0000254 l2tp_info(session, L2TP_MSG_DATA, "%s: no socket\n", session->name);
James Chapmanfd558d12010-04-02 06:18:33 +0000255 kfree_skb(skb);
256}
257
258static void pppol2tp_session_sock_hold(struct l2tp_session *session)
259{
260 struct pppol2tp_session *ps = l2tp_session_priv(session);
261
262 if (ps->sock)
263 sock_hold(ps->sock);
264}
265
266static void pppol2tp_session_sock_put(struct l2tp_session *session)
267{
268 struct pppol2tp_session *ps = l2tp_session_priv(session);
269
270 if (ps->sock)
271 sock_put(ps->sock);
272}
273
274/************************************************************************
275 * Transmit handling
276 ***********************************************************************/
277
James Chapmanfd558d12010-04-02 06:18:33 +0000278/* This is the sendmsg for the PPPoL2TP pppol2tp_session socket. We come here
279 * when a user application does a sendmsg() on the session socket. L2TP and
280 * PPP headers must be inserted into the user's data.
281 */
Ying Xue1b784142015-03-02 15:37:48 +0800282static int pppol2tp_sendmsg(struct socket *sock, struct msghdr *m,
James Chapmanfd558d12010-04-02 06:18:33 +0000283 size_t total_len)
284{
James Chapmanfd558d12010-04-02 06:18:33 +0000285 struct sock *sk = sock->sk;
286 struct sk_buff *skb;
287 int error;
288 struct l2tp_session *session;
289 struct l2tp_tunnel *tunnel;
290 struct pppol2tp_session *ps;
James Chapman0d767512010-04-02 06:19:00 +0000291 int uhlen;
James Chapmanfd558d12010-04-02 06:18:33 +0000292
293 error = -ENOTCONN;
294 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
295 goto error;
296
297 /* Get session and tunnel contexts */
298 error = -EBADF;
299 session = pppol2tp_sock_to_session(sk);
300 if (session == NULL)
301 goto error;
302
303 ps = l2tp_session_priv(session);
304 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
305 if (tunnel == NULL)
306 goto error_put_sess;
307
James Chapman0d767512010-04-02 06:19:00 +0000308 uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0;
309
James Chapmanfd558d12010-04-02 06:18:33 +0000310 /* Allocate a socket buffer */
311 error = -ENOMEM;
312 skb = sock_wmalloc(sk, NET_SKB_PAD + sizeof(struct iphdr) +
James Chapman0d767512010-04-02 06:19:00 +0000313 uhlen + session->hdr_len +
Gao Feng54c151d2016-08-22 22:50:02 +0800314 2 + total_len, /* 2 bytes for PPP_ALLSTATIONS & PPP_UI */
James Chapmanfd558d12010-04-02 06:18:33 +0000315 0, GFP_KERNEL);
316 if (!skb)
317 goto error_put_sess_tun;
318
319 /* Reserve space for headers. */
320 skb_reserve(skb, NET_SKB_PAD);
321 skb_reset_network_header(skb);
322 skb_reserve(skb, sizeof(struct iphdr));
323 skb_reset_transport_header(skb);
James Chapman0d767512010-04-02 06:19:00 +0000324 skb_reserve(skb, uhlen);
James Chapmanfd558d12010-04-02 06:18:33 +0000325
326 /* Add PPP header */
Gao Feng54c151d2016-08-22 22:50:02 +0800327 skb->data[0] = PPP_ALLSTATIONS;
328 skb->data[1] = PPP_UI;
James Chapmanfd558d12010-04-02 06:18:33 +0000329 skb_put(skb, 2);
330
331 /* Copy user data into skb */
Al Viro6ce8e9c2014-04-06 21:25:44 -0400332 error = memcpy_from_msg(skb_put(skb, total_len), m, total_len);
James Chapmanfd558d12010-04-02 06:18:33 +0000333 if (error < 0) {
334 kfree_skb(skb);
335 goto error_put_sess_tun;
336 }
James Chapmanfd558d12010-04-02 06:18:33 +0000337
Eric Dumazet455cc322013-10-10 06:30:09 -0700338 local_bh_disable();
James Chapmanfd558d12010-04-02 06:18:33 +0000339 l2tp_xmit_skb(session, skb, session->hdr_len);
Eric Dumazet455cc322013-10-10 06:30:09 -0700340 local_bh_enable();
James Chapmanfd558d12010-04-02 06:18:33 +0000341
342 sock_put(ps->tunnel_sock);
Guillaume Nault8b82547e33e2013-03-01 05:02:02 +0000343 sock_put(sk);
James Chapmanfd558d12010-04-02 06:18:33 +0000344
Guillaume Naulta6f79d02013-06-12 16:07:36 +0200345 return total_len;
James Chapmanfd558d12010-04-02 06:18:33 +0000346
347error_put_sess_tun:
348 sock_put(ps->tunnel_sock);
349error_put_sess:
350 sock_put(sk);
351error:
352 return error;
353}
354
355/* Transmit function called by generic PPP driver. Sends PPP frame
356 * over PPPoL2TP socket.
357 *
358 * This is almost the same as pppol2tp_sendmsg(), but rather than
359 * being called with a msghdr from userspace, it is called with a skb
360 * from the kernel.
361 *
362 * The supplied skb from ppp doesn't have enough headroom for the
363 * insertion of L2TP, UDP and IP headers so we need to allocate more
364 * headroom in the skb. This will create a cloned skb. But we must be
365 * careful in the error case because the caller will expect to free
366 * the skb it supplied, not our cloned skb. So we take care to always
367 * leave the original skb unfreed if we return an error.
368 */
369static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb)
370{
James Chapmanfd558d12010-04-02 06:18:33 +0000371 struct sock *sk = (struct sock *) chan->private;
372 struct sock *sk_tun;
James Chapmanfd558d12010-04-02 06:18:33 +0000373 struct l2tp_session *session;
374 struct l2tp_tunnel *tunnel;
375 struct pppol2tp_session *ps;
Eric Dumazet09df57c2011-10-07 05:45:57 +0000376 int uhlen, headroom;
James Chapmanfd558d12010-04-02 06:18:33 +0000377
378 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
379 goto abort;
380
381 /* Get session and tunnel contexts from the socket */
382 session = pppol2tp_sock_to_session(sk);
383 if (session == NULL)
384 goto abort;
385
386 ps = l2tp_session_priv(session);
387 sk_tun = ps->tunnel_sock;
388 if (sk_tun == NULL)
389 goto abort_put_sess;
390 tunnel = l2tp_sock_to_tunnel(sk_tun);
391 if (tunnel == NULL)
392 goto abort_put_sess;
393
Eric Dumazet09df57c2011-10-07 05:45:57 +0000394 uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0;
395 headroom = NET_SKB_PAD +
396 sizeof(struct iphdr) + /* IP header */
397 uhlen + /* UDP header (if L2TP_ENCAPTYPE_UDP) */
398 session->hdr_len + /* L2TP header */
Gao Feng54c151d2016-08-22 22:50:02 +0800399 2; /* 2 bytes for PPP_ALLSTATIONS & PPP_UI */
Eric Dumazet09df57c2011-10-07 05:45:57 +0000400 if (skb_cow_head(skb, headroom))
James Chapmanfd558d12010-04-02 06:18:33 +0000401 goto abort_put_sess_tun;
402
James Chapmanfd558d12010-04-02 06:18:33 +0000403 /* Setup PPP header */
Gao Feng54c151d2016-08-22 22:50:02 +0800404 __skb_push(skb, 2);
405 skb->data[0] = PPP_ALLSTATIONS;
406 skb->data[1] = PPP_UI;
James Chapmanfd558d12010-04-02 06:18:33 +0000407
Eric Dumazet455cc322013-10-10 06:30:09 -0700408 local_bh_disable();
James Chapmane0d44352010-04-02 06:18:54 +0000409 l2tp_xmit_skb(session, skb, session->hdr_len);
Eric Dumazet455cc322013-10-10 06:30:09 -0700410 local_bh_enable();
James Chapmanfd558d12010-04-02 06:18:33 +0000411
412 sock_put(sk_tun);
413 sock_put(sk);
414 return 1;
415
416abort_put_sess_tun:
417 sock_put(sk_tun);
418abort_put_sess:
419 sock_put(sk);
420abort:
421 /* Free the original skb */
422 kfree_skb(skb);
423 return 1;
424}
425
426/*****************************************************************************
427 * Session (and tunnel control) socket create/destroy.
428 *****************************************************************************/
429
430/* Called by l2tp_core when a session socket is being closed.
431 */
432static void pppol2tp_session_close(struct l2tp_session *session)
433{
434 struct pppol2tp_session *ps = l2tp_session_priv(session);
435 struct sock *sk = ps->sock;
Tom Parkincf2f5c82013-03-19 06:11:21 +0000436 struct socket *sock = sk->sk_socket;
James Chapmanfd558d12010-04-02 06:18:33 +0000437
438 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
439
Guillaume Naultcdd10c92017-09-22 15:39:23 +0200440 if (sock)
Gao Feng54c151d2016-08-22 22:50:02 +0800441 inet_shutdown(sock, SEND_SHUTDOWN);
Guillaume Naultcdd10c92017-09-22 15:39:23 +0200442
443 /* Don't let the session go away before our socket does */
444 l2tp_session_inc_refcount(session);
James Chapmanfd558d12010-04-02 06:18:33 +0000445}
446
447/* Really kill the session socket. (Called from sock_put() if
448 * refcnt == 0.)
449 */
450static void pppol2tp_session_destruct(struct sock *sk)
451{
Tom Parkinf6e16b22013-03-19 06:11:23 +0000452 struct l2tp_session *session = sk->sk_user_data;
Guillaume Naulte91793b2017-03-29 08:45:29 +0200453
454 skb_queue_purge(&sk->sk_receive_queue);
455 skb_queue_purge(&sk->sk_write_queue);
456
Tom Parkinf6e16b22013-03-19 06:11:23 +0000457 if (session) {
James Chapmanfd558d12010-04-02 06:18:33 +0000458 sk->sk_user_data = NULL;
459 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
460 l2tp_session_dec_refcount(session);
461 }
James Chapmanfd558d12010-04-02 06:18:33 +0000462}
463
464/* Called when the PPPoX socket (session) is closed.
465 */
466static int pppol2tp_release(struct socket *sock)
467{
468 struct sock *sk = sock->sk;
469 struct l2tp_session *session;
470 int error;
471
472 if (!sk)
473 return 0;
474
475 error = -EBADF;
476 lock_sock(sk);
477 if (sock_flag(sk, SOCK_DEAD) != 0)
478 goto error;
479
480 pppox_unbind_sock(sk);
481
482 /* Signal the death of the socket. */
483 sk->sk_state = PPPOX_DEAD;
484 sock_orphan(sk);
485 sock->sk = NULL;
486
487 session = pppol2tp_sock_to_session(sk);
488
489 /* Purge any queued data */
James Chapmanfd558d12010-04-02 06:18:33 +0000490 if (session != NULL) {
Tom Parkinf6e16b22013-03-19 06:11:23 +0000491 __l2tp_session_unhash(session);
Tom Parkincf2f5c82013-03-19 06:11:21 +0000492 l2tp_session_queue_purge(session);
James Chapmanfd558d12010-04-02 06:18:33 +0000493 sock_put(sk);
494 }
James Chapmanfd558d12010-04-02 06:18:33 +0000495 release_sock(sk);
496
497 /* This will delete the session context via
498 * pppol2tp_session_destruct() if the socket's refcnt drops to
499 * zero.
500 */
501 sock_put(sk);
502
503 return 0;
504
505error:
506 release_sock(sk);
507 return error;
508}
509
510static struct proto pppol2tp_sk_proto = {
511 .name = "PPPOL2TP",
512 .owner = THIS_MODULE,
513 .obj_size = sizeof(struct pppox_sock),
514};
515
516static int pppol2tp_backlog_recv(struct sock *sk, struct sk_buff *skb)
517{
518 int rc;
519
520 rc = l2tp_udp_encap_recv(sk, skb);
521 if (rc)
522 kfree_skb(skb);
523
524 return NET_RX_SUCCESS;
525}
526
527/* socket() handler. Initialize a new struct sock.
528 */
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500529static int pppol2tp_create(struct net *net, struct socket *sock, int kern)
James Chapmanfd558d12010-04-02 06:18:33 +0000530{
531 int error = -ENOMEM;
532 struct sock *sk;
533
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500534 sk = sk_alloc(net, PF_PPPOX, GFP_KERNEL, &pppol2tp_sk_proto, kern);
James Chapmanfd558d12010-04-02 06:18:33 +0000535 if (!sk)
536 goto out;
537
538 sock_init_data(sock, sk);
539
540 sock->state = SS_UNCONNECTED;
541 sock->ops = &pppol2tp_ops;
542
543 sk->sk_backlog_rcv = pppol2tp_backlog_recv;
544 sk->sk_protocol = PX_PROTO_OL2TP;
545 sk->sk_family = PF_PPPOX;
546 sk->sk_state = PPPOX_NONE;
547 sk->sk_type = SOCK_STREAM;
548 sk->sk_destruct = pppol2tp_session_destruct;
549
550 error = 0;
551
552out:
553 return error;
554}
555
Javier Martinez Canillas9dd79942016-09-09 08:43:17 -0400556#if IS_ENABLED(CONFIG_L2TP_DEBUGFS)
James Chapman0ad66142010-04-02 06:19:33 +0000557static void pppol2tp_show(struct seq_file *m, void *arg)
558{
559 struct l2tp_session *session = arg;
560 struct pppol2tp_session *ps = l2tp_session_priv(session);
561
562 if (ps) {
563 struct pppox_sock *po = pppox_sk(ps->sock);
564 if (po)
565 seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan));
566 }
567}
568#endif
569
James Chapmanfd558d12010-04-02 06:18:33 +0000570/* connect() handler. Attach a PPPoX socket to a tunnel UDP socket
571 */
572static int pppol2tp_connect(struct socket *sock, struct sockaddr *uservaddr,
573 int sockaddr_len, int flags)
574{
575 struct sock *sk = sock->sk;
576 struct sockaddr_pppol2tp *sp = (struct sockaddr_pppol2tp *) uservaddr;
577 struct pppox_sock *po = pppox_sk(sk);
578 struct l2tp_session *session = NULL;
579 struct l2tp_tunnel *tunnel;
580 struct pppol2tp_session *ps;
581 struct dst_entry *dst;
582 struct l2tp_session_cfg cfg = { 0, };
583 int error = 0;
James Chapmane0d44352010-04-02 06:18:54 +0000584 u32 tunnel_id, peer_tunnel_id;
585 u32 session_id, peer_session_id;
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200586 bool drop_refcnt = false;
James Chapmane0d44352010-04-02 06:18:54 +0000587 int ver = 2;
588 int fd;
James Chapmanfd558d12010-04-02 06:18:33 +0000589
590 lock_sock(sk);
591
592 error = -EINVAL;
593 if (sp->sa_protocol != PX_PROTO_OL2TP)
594 goto end;
595
596 /* Check for already bound sockets */
597 error = -EBUSY;
598 if (sk->sk_state & PPPOX_CONNECTED)
599 goto end;
600
601 /* We don't supporting rebinding anyway */
602 error = -EALREADY;
603 if (sk->sk_user_data)
604 goto end; /* socket is already attached */
605
James Chapmanb79585f2012-04-29 21:48:50 +0000606 /* Get params from socket address. Handle L2TPv2 and L2TPv3.
607 * This is nasty because there are different sockaddr_pppol2tp
608 * structs for L2TPv2, L2TPv3, over IPv4 and IPv6. We use
609 * the sockaddr size to determine which structure the caller
610 * is using.
611 */
612 peer_tunnel_id = 0;
James Chapmane0d44352010-04-02 06:18:54 +0000613 if (sockaddr_len == sizeof(struct sockaddr_pppol2tp)) {
614 fd = sp->pppol2tp.fd;
615 tunnel_id = sp->pppol2tp.s_tunnel;
616 peer_tunnel_id = sp->pppol2tp.d_tunnel;
617 session_id = sp->pppol2tp.s_session;
618 peer_session_id = sp->pppol2tp.d_session;
619 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3)) {
James Chapmanb79585f2012-04-29 21:48:50 +0000620 struct sockaddr_pppol2tpv3 *sp3 =
621 (struct sockaddr_pppol2tpv3 *) sp;
James Chapmane0d44352010-04-02 06:18:54 +0000622 ver = 3;
623 fd = sp3->pppol2tp.fd;
624 tunnel_id = sp3->pppol2tp.s_tunnel;
625 peer_tunnel_id = sp3->pppol2tp.d_tunnel;
626 session_id = sp3->pppol2tp.s_session;
627 peer_session_id = sp3->pppol2tp.d_session;
James Chapmanb79585f2012-04-29 21:48:50 +0000628 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpin6)) {
629 struct sockaddr_pppol2tpin6 *sp6 =
630 (struct sockaddr_pppol2tpin6 *) sp;
631 fd = sp6->pppol2tp.fd;
632 tunnel_id = sp6->pppol2tp.s_tunnel;
633 peer_tunnel_id = sp6->pppol2tp.d_tunnel;
634 session_id = sp6->pppol2tp.s_session;
635 peer_session_id = sp6->pppol2tp.d_session;
636 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3in6)) {
637 struct sockaddr_pppol2tpv3in6 *sp6 =
638 (struct sockaddr_pppol2tpv3in6 *) sp;
639 ver = 3;
640 fd = sp6->pppol2tp.fd;
641 tunnel_id = sp6->pppol2tp.s_tunnel;
642 peer_tunnel_id = sp6->pppol2tp.d_tunnel;
643 session_id = sp6->pppol2tp.s_session;
644 peer_session_id = sp6->pppol2tp.d_session;
James Chapmane0d44352010-04-02 06:18:54 +0000645 } else {
646 error = -EINVAL;
647 goto end; /* bad socket address */
648 }
649
650 /* Don't bind if tunnel_id is 0 */
James Chapmanfd558d12010-04-02 06:18:33 +0000651 error = -EINVAL;
James Chapmane0d44352010-04-02 06:18:54 +0000652 if (tunnel_id == 0)
James Chapmanfd558d12010-04-02 06:18:33 +0000653 goto end;
654
James Chapman309795f2010-04-02 06:19:10 +0000655 tunnel = l2tp_tunnel_find(sock_net(sk), tunnel_id);
656
James Chapmane0d44352010-04-02 06:18:54 +0000657 /* Special case: create tunnel context if session_id and
658 * peer_session_id is 0. Otherwise look up tunnel using supplied
James Chapmanfd558d12010-04-02 06:18:33 +0000659 * tunnel id.
660 */
James Chapmane0d44352010-04-02 06:18:54 +0000661 if ((session_id == 0) && (peer_session_id == 0)) {
James Chapman309795f2010-04-02 06:19:10 +0000662 if (tunnel == NULL) {
663 struct l2tp_tunnel_cfg tcfg = {
664 .encap = L2TP_ENCAPTYPE_UDP,
665 .debug = 0,
666 };
667 error = l2tp_tunnel_create(sock_net(sk), fd, ver, tunnel_id, peer_tunnel_id, &tcfg, &tunnel);
668 if (error < 0)
669 goto end;
670 }
James Chapmanfd558d12010-04-02 06:18:33 +0000671 } else {
James Chapmanfd558d12010-04-02 06:18:33 +0000672 /* Error if we can't find the tunnel */
673 error = -ENOENT;
674 if (tunnel == NULL)
675 goto end;
676
677 /* Error if socket is not prepped */
678 if (tunnel->sock == NULL)
679 goto end;
680 }
681
682 if (tunnel->recv_payload_hook == NULL)
683 tunnel->recv_payload_hook = pppol2tp_recv_payload_hook;
684
James Chapmanb79585f2012-04-29 21:48:50 +0000685 if (tunnel->peer_tunnel_id == 0)
686 tunnel->peer_tunnel_id = peer_tunnel_id;
James Chapmanfd558d12010-04-02 06:18:33 +0000687
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200688 session = l2tp_session_get(sock_net(sk), tunnel, session_id, false);
689 if (session) {
690 drop_refcnt = true;
691 ps = l2tp_session_priv(session);
James Chapman309795f2010-04-02 06:19:10 +0000692
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200693 /* Using a pre-existing session is fine as long as it hasn't
694 * been connected yet.
695 */
696 if (ps->sock) {
697 error = -EEXIST;
698 goto end;
699 }
700
701 /* consistency checks */
702 if (ps->tunnel_sock != tunnel->sock) {
703 error = -EEXIST;
James Chapman309795f2010-04-02 06:19:10 +0000704 goto end;
705 }
706 } else {
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200707 /* Default MTU must allow space for UDP/L2TP/PPP headers */
708 cfg.mtu = 1500 - PPPOL2TP_HEADER_OVERHEAD;
709 cfg.mru = cfg.mtu;
James Chapman309795f2010-04-02 06:19:10 +0000710
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200711 session = l2tp_session_create(sizeof(struct pppol2tp_session),
712 tunnel, session_id,
713 peer_session_id, &cfg);
714 if (IS_ERR(session)) {
715 error = PTR_ERR(session);
James Chapman309795f2010-04-02 06:19:10 +0000716 goto end;
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200717 }
Guillaume Nault3953ae72017-10-27 16:51:50 +0200718
719 l2tp_session_inc_refcount(session);
720 error = l2tp_session_register(session, tunnel);
721 if (error < 0) {
722 kfree(session);
723 goto end;
724 }
725 drop_refcnt = true;
James Chapman309795f2010-04-02 06:19:10 +0000726 }
727
728 /* Associate session with its PPPoL2TP socket */
James Chapmanfd558d12010-04-02 06:18:33 +0000729 ps = l2tp_session_priv(session);
730 ps->owner = current->pid;
731 ps->sock = sk;
732 ps->tunnel_sock = tunnel->sock;
733
734 session->recv_skb = pppol2tp_recv;
735 session->session_close = pppol2tp_session_close;
Javier Martinez Canillas9dd79942016-09-09 08:43:17 -0400736#if IS_ENABLED(CONFIG_L2TP_DEBUGFS)
James Chapman0ad66142010-04-02 06:19:33 +0000737 session->show = pppol2tp_show;
738#endif
James Chapmanfd558d12010-04-02 06:18:33 +0000739
740 /* We need to know each time a skb is dropped from the reorder
741 * queue.
742 */
743 session->ref = pppol2tp_session_sock_hold;
744 session->deref = pppol2tp_session_sock_put;
745
746 /* If PMTU discovery was enabled, use the MTU that was discovered */
Dmitry Petukhovf34c4a32014-04-09 02:23:20 +0600747 dst = sk_dst_get(tunnel->sock);
James Chapmanfd558d12010-04-02 06:18:33 +0000748 if (dst != NULL) {
Guillaume Naulteed4d832014-09-03 14:12:55 +0200749 u32 pmtu = dst_mtu(dst);
750
James Chapmanfd558d12010-04-02 06:18:33 +0000751 if (pmtu != 0)
752 session->mtu = session->mru = pmtu -
753 PPPOL2TP_HEADER_OVERHEAD;
754 dst_release(dst);
755 }
756
757 /* Special case: if source & dest session_id == 0x0000, this
758 * socket is being created to manage the tunnel. Just set up
759 * the internal context for use by ioctl() and sockopt()
760 * handlers.
761 */
762 if ((session->session_id == 0) &&
763 (session->peer_session_id == 0)) {
764 error = 0;
765 goto out_no_ppp;
766 }
767
768 /* The only header we need to worry about is the L2TP
769 * header. This size is different depending on whether
770 * sequence numbers are enabled for the data channel.
771 */
772 po->chan.hdrlen = PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
773
774 po->chan.private = sk;
775 po->chan.ops = &pppol2tp_chan_ops;
776 po->chan.mtu = session->mtu;
777
778 error = ppp_register_net_channel(sock_net(sk), &po->chan);
779 if (error)
780 goto end;
781
782out_no_ppp:
783 /* This is how we get the session context from the socket. */
784 sk->sk_user_data = session;
785 sk->sk_state = PPPOX_CONNECTED;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +0000786 l2tp_info(session, L2TP_MSG_CONTROL, "%s: created\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000787 session->name);
James Chapmanfd558d12010-04-02 06:18:33 +0000788
789end:
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200790 if (drop_refcnt)
791 l2tp_session_dec_refcount(session);
James Chapmanfd558d12010-04-02 06:18:33 +0000792 release_sock(sk);
793
794 return error;
795}
796
James Chapman309795f2010-04-02 06:19:10 +0000797#ifdef CONFIG_L2TP_V3
798
Guillaume Naultf026bc22017-09-01 17:58:51 +0200799/* Called when creating sessions via the netlink interface. */
800static int pppol2tp_session_create(struct net *net, struct l2tp_tunnel *tunnel,
801 u32 session_id, u32 peer_session_id,
802 struct l2tp_session_cfg *cfg)
James Chapman309795f2010-04-02 06:19:10 +0000803{
804 int error;
James Chapman309795f2010-04-02 06:19:10 +0000805 struct l2tp_session *session;
806 struct pppol2tp_session *ps;
807
James Chapman309795f2010-04-02 06:19:10 +0000808 /* Error if tunnel socket is not prepped */
Guillaume Naultf026bc22017-09-01 17:58:51 +0200809 if (!tunnel->sock) {
810 error = -ENOENT;
Guillaume Nault3953ae72017-10-27 16:51:50 +0200811 goto err;
Guillaume Naultf026bc22017-09-01 17:58:51 +0200812 }
James Chapman309795f2010-04-02 06:19:10 +0000813
James Chapman309795f2010-04-02 06:19:10 +0000814 /* Default MTU values. */
815 if (cfg->mtu == 0)
816 cfg->mtu = 1500 - PPPOL2TP_HEADER_OVERHEAD;
817 if (cfg->mru == 0)
818 cfg->mru = cfg->mtu;
819
820 /* Allocate and initialize a new session context. */
James Chapman309795f2010-04-02 06:19:10 +0000821 session = l2tp_session_create(sizeof(struct pppol2tp_session),
822 tunnel, session_id,
823 peer_session_id, cfg);
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200824 if (IS_ERR(session)) {
825 error = PTR_ERR(session);
Guillaume Nault3953ae72017-10-27 16:51:50 +0200826 goto err;
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200827 }
James Chapman309795f2010-04-02 06:19:10 +0000828
829 ps = l2tp_session_priv(session);
830 ps->tunnel_sock = tunnel->sock;
831
Guillaume Nault3953ae72017-10-27 16:51:50 +0200832 error = l2tp_session_register(session, tunnel);
833 if (error < 0)
834 goto err_sess;
James Chapman309795f2010-04-02 06:19:10 +0000835
Guillaume Nault3953ae72017-10-27 16:51:50 +0200836 return 0;
James Chapman309795f2010-04-02 06:19:10 +0000837
Guillaume Nault3953ae72017-10-27 16:51:50 +0200838err_sess:
839 kfree(session);
840err:
James Chapman309795f2010-04-02 06:19:10 +0000841 return error;
842}
843
James Chapman309795f2010-04-02 06:19:10 +0000844#endif /* CONFIG_L2TP_V3 */
845
James Chapmanfd558d12010-04-02 06:18:33 +0000846/* getname() support.
847 */
848static int pppol2tp_getname(struct socket *sock, struct sockaddr *uaddr,
849 int *usockaddr_len, int peer)
850{
James Chapmane0d44352010-04-02 06:18:54 +0000851 int len = 0;
James Chapmanfd558d12010-04-02 06:18:33 +0000852 int error = 0;
853 struct l2tp_session *session;
854 struct l2tp_tunnel *tunnel;
855 struct sock *sk = sock->sk;
856 struct inet_sock *inet;
857 struct pppol2tp_session *pls;
858
859 error = -ENOTCONN;
860 if (sk == NULL)
861 goto end;
Gao Feng56cff472016-08-19 13:36:23 +0800862 if (!(sk->sk_state & PPPOX_CONNECTED))
James Chapmanfd558d12010-04-02 06:18:33 +0000863 goto end;
864
865 error = -EBADF;
866 session = pppol2tp_sock_to_session(sk);
867 if (session == NULL)
868 goto end;
869
870 pls = l2tp_session_priv(session);
871 tunnel = l2tp_sock_to_tunnel(pls->tunnel_sock);
phil.turnbull@oracle.com4ac36a42016-07-26 15:14:35 -0400872 if (tunnel == NULL)
James Chapmanfd558d12010-04-02 06:18:33 +0000873 goto end_put_sess;
James Chapmanfd558d12010-04-02 06:18:33 +0000874
Benjamin LaHaisebbdb32c2012-03-20 03:57:54 +0000875 inet = inet_sk(tunnel->sock);
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000876 if ((tunnel->version == 2) && (tunnel->sock->sk_family == AF_INET)) {
James Chapmane0d44352010-04-02 06:18:54 +0000877 struct sockaddr_pppol2tp sp;
878 len = sizeof(sp);
879 memset(&sp, 0, len);
880 sp.sa_family = AF_PPPOX;
881 sp.sa_protocol = PX_PROTO_OL2TP;
882 sp.pppol2tp.fd = tunnel->fd;
883 sp.pppol2tp.pid = pls->owner;
884 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
885 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
886 sp.pppol2tp.s_session = session->session_id;
887 sp.pppol2tp.d_session = session->peer_session_id;
888 sp.pppol2tp.addr.sin_family = AF_INET;
889 sp.pppol2tp.addr.sin_port = inet->inet_dport;
890 sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr;
891 memcpy(uaddr, &sp, len);
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000892#if IS_ENABLED(CONFIG_IPV6)
893 } else if ((tunnel->version == 2) &&
894 (tunnel->sock->sk_family == AF_INET6)) {
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000895 struct sockaddr_pppol2tpin6 sp;
Eric Dumazetefe42082013-10-03 15:42:29 -0700896
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000897 len = sizeof(sp);
898 memset(&sp, 0, len);
899 sp.sa_family = AF_PPPOX;
900 sp.sa_protocol = PX_PROTO_OL2TP;
901 sp.pppol2tp.fd = tunnel->fd;
902 sp.pppol2tp.pid = pls->owner;
903 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
904 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
905 sp.pppol2tp.s_session = session->session_id;
906 sp.pppol2tp.d_session = session->peer_session_id;
907 sp.pppol2tp.addr.sin6_family = AF_INET6;
908 sp.pppol2tp.addr.sin6_port = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -0700909 memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr,
910 sizeof(tunnel->sock->sk_v6_daddr));
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000911 memcpy(uaddr, &sp, len);
912 } else if ((tunnel->version == 3) &&
913 (tunnel->sock->sk_family == AF_INET6)) {
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000914 struct sockaddr_pppol2tpv3in6 sp;
Eric Dumazetefe42082013-10-03 15:42:29 -0700915
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000916 len = sizeof(sp);
917 memset(&sp, 0, len);
918 sp.sa_family = AF_PPPOX;
919 sp.sa_protocol = PX_PROTO_OL2TP;
920 sp.pppol2tp.fd = tunnel->fd;
921 sp.pppol2tp.pid = pls->owner;
922 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
923 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
924 sp.pppol2tp.s_session = session->session_id;
925 sp.pppol2tp.d_session = session->peer_session_id;
926 sp.pppol2tp.addr.sin6_family = AF_INET6;
927 sp.pppol2tp.addr.sin6_port = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -0700928 memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr,
929 sizeof(tunnel->sock->sk_v6_daddr));
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000930 memcpy(uaddr, &sp, len);
931#endif
James Chapmane0d44352010-04-02 06:18:54 +0000932 } else if (tunnel->version == 3) {
933 struct sockaddr_pppol2tpv3 sp;
934 len = sizeof(sp);
935 memset(&sp, 0, len);
936 sp.sa_family = AF_PPPOX;
937 sp.sa_protocol = PX_PROTO_OL2TP;
938 sp.pppol2tp.fd = tunnel->fd;
939 sp.pppol2tp.pid = pls->owner;
940 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
941 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
942 sp.pppol2tp.s_session = session->session_id;
943 sp.pppol2tp.d_session = session->peer_session_id;
944 sp.pppol2tp.addr.sin_family = AF_INET;
945 sp.pppol2tp.addr.sin_port = inet->inet_dport;
946 sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr;
947 memcpy(uaddr, &sp, len);
948 }
James Chapmanfd558d12010-04-02 06:18:33 +0000949
950 *usockaddr_len = len;
phil.turnbull@oracle.com4ac36a42016-07-26 15:14:35 -0400951 error = 0;
James Chapmanfd558d12010-04-02 06:18:33 +0000952
953 sock_put(pls->tunnel_sock);
954end_put_sess:
955 sock_put(sk);
James Chapmanfd558d12010-04-02 06:18:33 +0000956end:
957 return error;
958}
959
960/****************************************************************************
961 * ioctl() handlers.
962 *
963 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
964 * sockets. However, in order to control kernel tunnel features, we allow
965 * userspace to create a special "tunnel" PPPoX socket which is used for
966 * control only. Tunnel PPPoX sockets have session_id == 0 and simply allow
967 * the user application to issue L2TP setsockopt(), getsockopt() and ioctl()
968 * calls.
969 ****************************************************************************/
970
971static void pppol2tp_copy_stats(struct pppol2tp_ioc_stats *dest,
972 struct l2tp_stats *stats)
973{
Tom Parkin7b7c0712013-03-19 06:11:22 +0000974 dest->tx_packets = atomic_long_read(&stats->tx_packets);
975 dest->tx_bytes = atomic_long_read(&stats->tx_bytes);
976 dest->tx_errors = atomic_long_read(&stats->tx_errors);
977 dest->rx_packets = atomic_long_read(&stats->rx_packets);
978 dest->rx_bytes = atomic_long_read(&stats->rx_bytes);
979 dest->rx_seq_discards = atomic_long_read(&stats->rx_seq_discards);
980 dest->rx_oos_packets = atomic_long_read(&stats->rx_oos_packets);
981 dest->rx_errors = atomic_long_read(&stats->rx_errors);
James Chapmanfd558d12010-04-02 06:18:33 +0000982}
983
984/* Session ioctl helper.
985 */
986static int pppol2tp_session_ioctl(struct l2tp_session *session,
987 unsigned int cmd, unsigned long arg)
988{
989 struct ifreq ifr;
990 int err = 0;
991 struct sock *sk;
992 int val = (int) arg;
993 struct pppol2tp_session *ps = l2tp_session_priv(session);
994 struct l2tp_tunnel *tunnel = session->tunnel;
995 struct pppol2tp_ioc_stats stats;
996
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +0000997 l2tp_dbg(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000998 "%s: pppol2tp_session_ioctl(cmd=%#x, arg=%#lx)\n",
999 session->name, cmd, arg);
James Chapmanfd558d12010-04-02 06:18:33 +00001000
1001 sk = ps->sock;
Guillaume Nault5903f592017-10-13 19:22:35 +02001002 if (!sk)
1003 return -EBADR;
1004
James Chapmanfd558d12010-04-02 06:18:33 +00001005 sock_hold(sk);
1006
1007 switch (cmd) {
1008 case SIOCGIFMTU:
1009 err = -ENXIO;
1010 if (!(sk->sk_state & PPPOX_CONNECTED))
1011 break;
1012
1013 err = -EFAULT;
1014 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1015 break;
1016 ifr.ifr_mtu = session->mtu;
1017 if (copy_to_user((void __user *) arg, &ifr, sizeof(struct ifreq)))
1018 break;
1019
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001020 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get mtu=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001021 session->name, session->mtu);
James Chapmanfd558d12010-04-02 06:18:33 +00001022 err = 0;
1023 break;
1024
1025 case SIOCSIFMTU:
1026 err = -ENXIO;
1027 if (!(sk->sk_state & PPPOX_CONNECTED))
1028 break;
1029
1030 err = -EFAULT;
1031 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1032 break;
1033
1034 session->mtu = ifr.ifr_mtu;
1035
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001036 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set mtu=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001037 session->name, session->mtu);
James Chapmanfd558d12010-04-02 06:18:33 +00001038 err = 0;
1039 break;
1040
1041 case PPPIOCGMRU:
1042 err = -ENXIO;
1043 if (!(sk->sk_state & PPPOX_CONNECTED))
1044 break;
1045
1046 err = -EFAULT;
1047 if (put_user(session->mru, (int __user *) arg))
1048 break;
1049
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001050 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get mru=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001051 session->name, session->mru);
James Chapmanfd558d12010-04-02 06:18:33 +00001052 err = 0;
1053 break;
1054
1055 case PPPIOCSMRU:
1056 err = -ENXIO;
1057 if (!(sk->sk_state & PPPOX_CONNECTED))
1058 break;
1059
1060 err = -EFAULT;
1061 if (get_user(val, (int __user *) arg))
1062 break;
1063
1064 session->mru = val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001065 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set mru=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001066 session->name, session->mru);
James Chapmanfd558d12010-04-02 06:18:33 +00001067 err = 0;
1068 break;
1069
1070 case PPPIOCGFLAGS:
1071 err = -EFAULT;
1072 if (put_user(ps->flags, (int __user *) arg))
1073 break;
1074
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001075 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get flags=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001076 session->name, ps->flags);
James Chapmanfd558d12010-04-02 06:18:33 +00001077 err = 0;
1078 break;
1079
1080 case PPPIOCSFLAGS:
1081 err = -EFAULT;
1082 if (get_user(val, (int __user *) arg))
1083 break;
1084 ps->flags = val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001085 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set flags=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001086 session->name, ps->flags);
James Chapmanfd558d12010-04-02 06:18:33 +00001087 err = 0;
1088 break;
1089
1090 case PPPIOCGL2TPSTATS:
1091 err = -ENXIO;
1092 if (!(sk->sk_state & PPPOX_CONNECTED))
1093 break;
1094
1095 memset(&stats, 0, sizeof(stats));
1096 stats.tunnel_id = tunnel->tunnel_id;
1097 stats.session_id = session->session_id;
1098 pppol2tp_copy_stats(&stats, &session->stats);
1099 if (copy_to_user((void __user *) arg, &stats,
1100 sizeof(stats)))
1101 break;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001102 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get L2TP stats\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001103 session->name);
James Chapmanfd558d12010-04-02 06:18:33 +00001104 err = 0;
1105 break;
1106
1107 default:
1108 err = -ENOSYS;
1109 break;
1110 }
1111
1112 sock_put(sk);
1113
1114 return err;
1115}
1116
1117/* Tunnel ioctl helper.
1118 *
1119 * Note the special handling for PPPIOCGL2TPSTATS below. If the ioctl data
1120 * specifies a session_id, the session ioctl handler is called. This allows an
1121 * application to retrieve session stats via a tunnel socket.
1122 */
1123static int pppol2tp_tunnel_ioctl(struct l2tp_tunnel *tunnel,
1124 unsigned int cmd, unsigned long arg)
1125{
1126 int err = 0;
1127 struct sock *sk;
1128 struct pppol2tp_ioc_stats stats;
1129
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001130 l2tp_dbg(tunnel, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001131 "%s: pppol2tp_tunnel_ioctl(cmd=%#x, arg=%#lx)\n",
1132 tunnel->name, cmd, arg);
James Chapmanfd558d12010-04-02 06:18:33 +00001133
1134 sk = tunnel->sock;
1135 sock_hold(sk);
1136
1137 switch (cmd) {
1138 case PPPIOCGL2TPSTATS:
1139 err = -ENXIO;
1140 if (!(sk->sk_state & PPPOX_CONNECTED))
1141 break;
1142
1143 if (copy_from_user(&stats, (void __user *) arg,
1144 sizeof(stats))) {
1145 err = -EFAULT;
1146 break;
1147 }
1148 if (stats.session_id != 0) {
1149 /* resend to session ioctl handler */
1150 struct l2tp_session *session =
Guillaume Nault57377d62017-03-31 13:02:26 +02001151 l2tp_session_get(sock_net(sk), tunnel,
1152 stats.session_id, true);
1153
1154 if (session) {
1155 err = pppol2tp_session_ioctl(session, cmd,
1156 arg);
1157 if (session->deref)
1158 session->deref(session);
1159 l2tp_session_dec_refcount(session);
1160 } else {
James Chapmanfd558d12010-04-02 06:18:33 +00001161 err = -EBADR;
Guillaume Nault57377d62017-03-31 13:02:26 +02001162 }
James Chapmanfd558d12010-04-02 06:18:33 +00001163 break;
1164 }
1165#ifdef CONFIG_XFRM
1166 stats.using_ipsec = (sk->sk_policy[0] || sk->sk_policy[1]) ? 1 : 0;
1167#endif
1168 pppol2tp_copy_stats(&stats, &tunnel->stats);
1169 if (copy_to_user((void __user *) arg, &stats, sizeof(stats))) {
1170 err = -EFAULT;
1171 break;
1172 }
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001173 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: get L2TP stats\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001174 tunnel->name);
James Chapmanfd558d12010-04-02 06:18:33 +00001175 err = 0;
1176 break;
1177
1178 default:
1179 err = -ENOSYS;
1180 break;
1181 }
1182
1183 sock_put(sk);
1184
1185 return err;
1186}
1187
1188/* Main ioctl() handler.
1189 * Dispatch to tunnel or session helpers depending on the socket.
1190 */
1191static int pppol2tp_ioctl(struct socket *sock, unsigned int cmd,
1192 unsigned long arg)
1193{
1194 struct sock *sk = sock->sk;
1195 struct l2tp_session *session;
1196 struct l2tp_tunnel *tunnel;
1197 struct pppol2tp_session *ps;
1198 int err;
1199
1200 if (!sk)
1201 return 0;
1202
1203 err = -EBADF;
1204 if (sock_flag(sk, SOCK_DEAD) != 0)
1205 goto end;
1206
1207 err = -ENOTCONN;
1208 if ((sk->sk_user_data == NULL) ||
1209 (!(sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND))))
1210 goto end;
1211
1212 /* Get session context from the socket */
1213 err = -EBADF;
1214 session = pppol2tp_sock_to_session(sk);
1215 if (session == NULL)
1216 goto end;
1217
1218 /* Special case: if session's session_id is zero, treat ioctl as a
1219 * tunnel ioctl
1220 */
1221 ps = l2tp_session_priv(session);
1222 if ((session->session_id == 0) &&
1223 (session->peer_session_id == 0)) {
1224 err = -EBADF;
1225 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1226 if (tunnel == NULL)
1227 goto end_put_sess;
1228
1229 err = pppol2tp_tunnel_ioctl(tunnel, cmd, arg);
1230 sock_put(ps->tunnel_sock);
1231 goto end_put_sess;
1232 }
1233
1234 err = pppol2tp_session_ioctl(session, cmd, arg);
1235
1236end_put_sess:
1237 sock_put(sk);
1238end:
1239 return err;
1240}
1241
1242/*****************************************************************************
1243 * setsockopt() / getsockopt() support.
1244 *
1245 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
1246 * sockets. In order to control kernel tunnel features, we allow userspace to
1247 * create a special "tunnel" PPPoX socket which is used for control only.
1248 * Tunnel PPPoX sockets have session_id == 0 and simply allow the user
1249 * application to issue L2TP setsockopt(), getsockopt() and ioctl() calls.
1250 *****************************************************************************/
1251
1252/* Tunnel setsockopt() helper.
1253 */
1254static int pppol2tp_tunnel_setsockopt(struct sock *sk,
1255 struct l2tp_tunnel *tunnel,
1256 int optname, int val)
1257{
1258 int err = 0;
1259
1260 switch (optname) {
1261 case PPPOL2TP_SO_DEBUG:
1262 tunnel->debug = val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001263 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: set debug=%x\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001264 tunnel->name, tunnel->debug);
James Chapmanfd558d12010-04-02 06:18:33 +00001265 break;
1266
1267 default:
1268 err = -ENOPROTOOPT;
1269 break;
1270 }
1271
1272 return err;
1273}
1274
1275/* Session setsockopt helper.
1276 */
1277static int pppol2tp_session_setsockopt(struct sock *sk,
1278 struct l2tp_session *session,
1279 int optname, int val)
1280{
1281 int err = 0;
1282 struct pppol2tp_session *ps = l2tp_session_priv(session);
1283
1284 switch (optname) {
1285 case PPPOL2TP_SO_RECVSEQ:
1286 if ((val != 0) && (val != 1)) {
1287 err = -EINVAL;
1288 break;
1289 }
Asbjørn Sloth Tønnesen3f9b9772016-11-07 20:39:28 +00001290 session->recv_seq = !!val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001291 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001292 "%s: set recv_seq=%d\n",
1293 session->name, session->recv_seq);
James Chapmanfd558d12010-04-02 06:18:33 +00001294 break;
1295
1296 case PPPOL2TP_SO_SENDSEQ:
1297 if ((val != 0) && (val != 1)) {
1298 err = -EINVAL;
1299 break;
1300 }
Asbjørn Sloth Tønnesen3f9b9772016-11-07 20:39:28 +00001301 session->send_seq = !!val;
James Chapmanfd558d12010-04-02 06:18:33 +00001302 {
1303 struct sock *ssk = ps->sock;
1304 struct pppox_sock *po = pppox_sk(ssk);
1305 po->chan.hdrlen = val ? PPPOL2TP_L2TP_HDR_SIZE_SEQ :
1306 PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
1307 }
Guillaume Naultbb5016e2014-03-06 11:14:30 +01001308 l2tp_session_set_header_len(session, session->tunnel->version);
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001309 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001310 "%s: set send_seq=%d\n",
1311 session->name, session->send_seq);
James Chapmanfd558d12010-04-02 06:18:33 +00001312 break;
1313
1314 case PPPOL2TP_SO_LNSMODE:
1315 if ((val != 0) && (val != 1)) {
1316 err = -EINVAL;
1317 break;
1318 }
Asbjørn Sloth Tønnesen3f9b9772016-11-07 20:39:28 +00001319 session->lns_mode = !!val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001320 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001321 "%s: set lns_mode=%d\n",
1322 session->name, session->lns_mode);
James Chapmanfd558d12010-04-02 06:18:33 +00001323 break;
1324
1325 case PPPOL2TP_SO_DEBUG:
1326 session->debug = val;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001327 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set debug=%x\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001328 session->name, session->debug);
James Chapmanfd558d12010-04-02 06:18:33 +00001329 break;
1330
1331 case PPPOL2TP_SO_REORDERTO:
1332 session->reorder_timeout = msecs_to_jiffies(val);
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001333 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001334 "%s: set reorder_timeout=%d\n",
1335 session->name, session->reorder_timeout);
James Chapmanfd558d12010-04-02 06:18:33 +00001336 break;
1337
1338 default:
1339 err = -ENOPROTOOPT;
1340 break;
1341 }
1342
1343 return err;
1344}
1345
1346/* Main setsockopt() entry point.
1347 * Does API checks, then calls either the tunnel or session setsockopt
1348 * handler, according to whether the PPPoL2TP socket is a for a regular
1349 * session or the special tunnel type.
1350 */
1351static int pppol2tp_setsockopt(struct socket *sock, int level, int optname,
1352 char __user *optval, unsigned int optlen)
1353{
1354 struct sock *sk = sock->sk;
1355 struct l2tp_session *session;
1356 struct l2tp_tunnel *tunnel;
1357 struct pppol2tp_session *ps;
1358 int val;
1359 int err;
1360
1361 if (level != SOL_PPPOL2TP)
Sasha Levin3cf521f2014-07-14 17:02:31 -07001362 return -EINVAL;
James Chapmanfd558d12010-04-02 06:18:33 +00001363
1364 if (optlen < sizeof(int))
1365 return -EINVAL;
1366
1367 if (get_user(val, (int __user *)optval))
1368 return -EFAULT;
1369
1370 err = -ENOTCONN;
1371 if (sk->sk_user_data == NULL)
1372 goto end;
1373
1374 /* Get session context from the socket */
1375 err = -EBADF;
1376 session = pppol2tp_sock_to_session(sk);
1377 if (session == NULL)
1378 goto end;
1379
1380 /* Special case: if session_id == 0x0000, treat as operation on tunnel
1381 */
1382 ps = l2tp_session_priv(session);
1383 if ((session->session_id == 0) &&
1384 (session->peer_session_id == 0)) {
1385 err = -EBADF;
1386 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1387 if (tunnel == NULL)
1388 goto end_put_sess;
1389
1390 err = pppol2tp_tunnel_setsockopt(sk, tunnel, optname, val);
1391 sock_put(ps->tunnel_sock);
1392 } else
1393 err = pppol2tp_session_setsockopt(sk, session, optname, val);
1394
James Chapmanfd558d12010-04-02 06:18:33 +00001395end_put_sess:
1396 sock_put(sk);
1397end:
1398 return err;
1399}
1400
1401/* Tunnel getsockopt helper. Called with sock locked.
1402 */
1403static int pppol2tp_tunnel_getsockopt(struct sock *sk,
1404 struct l2tp_tunnel *tunnel,
1405 int optname, int *val)
1406{
1407 int err = 0;
1408
1409 switch (optname) {
1410 case PPPOL2TP_SO_DEBUG:
1411 *val = tunnel->debug;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001412 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: get debug=%x\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001413 tunnel->name, tunnel->debug);
James Chapmanfd558d12010-04-02 06:18:33 +00001414 break;
1415
1416 default:
1417 err = -ENOPROTOOPT;
1418 break;
1419 }
1420
1421 return err;
1422}
1423
1424/* Session getsockopt helper. Called with sock locked.
1425 */
1426static int pppol2tp_session_getsockopt(struct sock *sk,
1427 struct l2tp_session *session,
1428 int optname, int *val)
1429{
1430 int err = 0;
1431
1432 switch (optname) {
1433 case PPPOL2TP_SO_RECVSEQ:
1434 *val = session->recv_seq;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001435 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001436 "%s: get recv_seq=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001437 break;
1438
1439 case PPPOL2TP_SO_SENDSEQ:
1440 *val = session->send_seq;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001441 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001442 "%s: get send_seq=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001443 break;
1444
1445 case PPPOL2TP_SO_LNSMODE:
1446 *val = session->lns_mode;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001447 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001448 "%s: get lns_mode=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001449 break;
1450
1451 case PPPOL2TP_SO_DEBUG:
1452 *val = session->debug;
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001453 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get debug=%d\n",
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001454 session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001455 break;
1456
1457 case PPPOL2TP_SO_REORDERTO:
1458 *val = (int) jiffies_to_msecs(session->reorder_timeout);
Asbjørn Sloth Tønnesenfba40c62016-12-11 00:18:59 +00001459 l2tp_info(session, L2TP_MSG_CONTROL,
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001460 "%s: get reorder_timeout=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001461 break;
1462
1463 default:
1464 err = -ENOPROTOOPT;
1465 }
1466
1467 return err;
1468}
1469
1470/* Main getsockopt() entry point.
1471 * Does API checks, then calls either the tunnel or session getsockopt
1472 * handler, according to whether the PPPoX socket is a for a regular session
1473 * or the special tunnel type.
1474 */
Joe Perchese3192692012-06-03 17:41:40 +00001475static int pppol2tp_getsockopt(struct socket *sock, int level, int optname,
1476 char __user *optval, int __user *optlen)
James Chapmanfd558d12010-04-02 06:18:33 +00001477{
1478 struct sock *sk = sock->sk;
1479 struct l2tp_session *session;
1480 struct l2tp_tunnel *tunnel;
1481 int val, len;
1482 int err;
1483 struct pppol2tp_session *ps;
1484
1485 if (level != SOL_PPPOL2TP)
Sasha Levin3cf521f2014-07-14 17:02:31 -07001486 return -EINVAL;
James Chapmanfd558d12010-04-02 06:18:33 +00001487
Joe Perchese3192692012-06-03 17:41:40 +00001488 if (get_user(len, optlen))
James Chapmanfd558d12010-04-02 06:18:33 +00001489 return -EFAULT;
1490
1491 len = min_t(unsigned int, len, sizeof(int));
1492
1493 if (len < 0)
1494 return -EINVAL;
1495
1496 err = -ENOTCONN;
1497 if (sk->sk_user_data == NULL)
1498 goto end;
1499
1500 /* Get the session context */
1501 err = -EBADF;
1502 session = pppol2tp_sock_to_session(sk);
1503 if (session == NULL)
1504 goto end;
1505
1506 /* Special case: if session_id == 0x0000, treat as operation on tunnel */
1507 ps = l2tp_session_priv(session);
1508 if ((session->session_id == 0) &&
1509 (session->peer_session_id == 0)) {
1510 err = -EBADF;
1511 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1512 if (tunnel == NULL)
1513 goto end_put_sess;
1514
1515 err = pppol2tp_tunnel_getsockopt(sk, tunnel, optname, &val);
1516 sock_put(ps->tunnel_sock);
Guillaume Nault321a52a2017-04-06 18:31:21 +02001517 if (err)
1518 goto end_put_sess;
1519 } else {
James Chapmanfd558d12010-04-02 06:18:33 +00001520 err = pppol2tp_session_getsockopt(sk, session, optname, &val);
Guillaume Nault321a52a2017-04-06 18:31:21 +02001521 if (err)
1522 goto end_put_sess;
1523 }
James Chapmanfd558d12010-04-02 06:18:33 +00001524
1525 err = -EFAULT;
Joe Perchese3192692012-06-03 17:41:40 +00001526 if (put_user(len, optlen))
James Chapmanfd558d12010-04-02 06:18:33 +00001527 goto end_put_sess;
1528
1529 if (copy_to_user((void __user *) optval, &val, len))
1530 goto end_put_sess;
1531
1532 err = 0;
1533
1534end_put_sess:
1535 sock_put(sk);
1536end:
1537 return err;
1538}
1539
1540/*****************************************************************************
1541 * /proc filesystem for debug
James Chapmanf7faffa2010-04-02 06:18:49 +00001542 * Since the original pppol2tp driver provided /proc/net/pppol2tp for
1543 * L2TPv2, we dump only L2TPv2 tunnels and sessions here.
James Chapmanfd558d12010-04-02 06:18:33 +00001544 *****************************************************************************/
1545
1546static unsigned int pppol2tp_net_id;
1547
1548#ifdef CONFIG_PROC_FS
1549
1550struct pppol2tp_seq_data {
1551 struct seq_net_private p;
1552 int tunnel_idx; /* current tunnel */
1553 int session_idx; /* index of session within current tunnel */
1554 struct l2tp_tunnel *tunnel;
1555 struct l2tp_session *session; /* NULL means get next tunnel */
1556};
1557
1558static void pppol2tp_next_tunnel(struct net *net, struct pppol2tp_seq_data *pd)
1559{
James Chapmanf7faffa2010-04-02 06:18:49 +00001560 for (;;) {
1561 pd->tunnel = l2tp_tunnel_find_nth(net, pd->tunnel_idx);
1562 pd->tunnel_idx++;
1563
1564 if (pd->tunnel == NULL)
1565 break;
1566
1567 /* Ignore L2TPv3 tunnels */
1568 if (pd->tunnel->version < 3)
1569 break;
1570 }
James Chapmanfd558d12010-04-02 06:18:33 +00001571}
1572
1573static void pppol2tp_next_session(struct net *net, struct pppol2tp_seq_data *pd)
1574{
Guillaume Naulte08293a2017-04-03 12:03:13 +02001575 pd->session = l2tp_session_get_nth(pd->tunnel, pd->session_idx, true);
James Chapmanfd558d12010-04-02 06:18:33 +00001576 pd->session_idx++;
James Chapmanf7faffa2010-04-02 06:18:49 +00001577
James Chapmanfd558d12010-04-02 06:18:33 +00001578 if (pd->session == NULL) {
1579 pd->session_idx = 0;
1580 pppol2tp_next_tunnel(net, pd);
1581 }
1582}
1583
1584static void *pppol2tp_seq_start(struct seq_file *m, loff_t *offs)
1585{
1586 struct pppol2tp_seq_data *pd = SEQ_START_TOKEN;
1587 loff_t pos = *offs;
1588 struct net *net;
1589
1590 if (!pos)
1591 goto out;
1592
1593 BUG_ON(m->private == NULL);
1594 pd = m->private;
1595 net = seq_file_net(m);
1596
1597 if (pd->tunnel == NULL)
1598 pppol2tp_next_tunnel(net, pd);
1599 else
1600 pppol2tp_next_session(net, pd);
1601
1602 /* NULL tunnel and session indicates end of list */
1603 if ((pd->tunnel == NULL) && (pd->session == NULL))
1604 pd = NULL;
1605
1606out:
1607 return pd;
1608}
1609
1610static void *pppol2tp_seq_next(struct seq_file *m, void *v, loff_t *pos)
1611{
1612 (*pos)++;
1613 return NULL;
1614}
1615
1616static void pppol2tp_seq_stop(struct seq_file *p, void *v)
1617{
1618 /* nothing to do */
1619}
1620
1621static void pppol2tp_seq_tunnel_show(struct seq_file *m, void *v)
1622{
1623 struct l2tp_tunnel *tunnel = v;
1624
1625 seq_printf(m, "\nTUNNEL '%s', %c %d\n",
1626 tunnel->name,
1627 (tunnel == tunnel->sock->sk_user_data) ? 'Y' : 'N',
Reshetova, Elenafbea9e02017-07-04 15:52:57 +03001628 refcount_read(&tunnel->ref_count) - 1);
Tom Parkin7b7c0712013-03-19 06:11:22 +00001629 seq_printf(m, " %08x %ld/%ld/%ld %ld/%ld/%ld\n",
James Chapmanfd558d12010-04-02 06:18:33 +00001630 tunnel->debug,
Tom Parkin7b7c0712013-03-19 06:11:22 +00001631 atomic_long_read(&tunnel->stats.tx_packets),
1632 atomic_long_read(&tunnel->stats.tx_bytes),
1633 atomic_long_read(&tunnel->stats.tx_errors),
1634 atomic_long_read(&tunnel->stats.rx_packets),
1635 atomic_long_read(&tunnel->stats.rx_bytes),
1636 atomic_long_read(&tunnel->stats.rx_errors));
James Chapmanfd558d12010-04-02 06:18:33 +00001637}
1638
1639static void pppol2tp_seq_session_show(struct seq_file *m, void *v)
1640{
1641 struct l2tp_session *session = v;
1642 struct l2tp_tunnel *tunnel = session->tunnel;
1643 struct pppol2tp_session *ps = l2tp_session_priv(session);
James Chapman93454712010-04-02 06:18:44 +00001644 struct pppox_sock *po = pppox_sk(ps->sock);
James Chapmanfd558d12010-04-02 06:18:33 +00001645 u32 ip = 0;
1646 u16 port = 0;
1647
1648 if (tunnel->sock) {
1649 struct inet_sock *inet = inet_sk(tunnel->sock);
1650 ip = ntohl(inet->inet_saddr);
1651 port = ntohs(inet->inet_sport);
1652 }
1653
1654 seq_printf(m, " SESSION '%s' %08X/%d %04X/%04X -> "
1655 "%04X/%04X %d %c\n",
1656 session->name, ip, port,
1657 tunnel->tunnel_id,
1658 session->session_id,
1659 tunnel->peer_tunnel_id,
1660 session->peer_session_id,
1661 ps->sock->sk_state,
1662 (session == ps->sock->sk_user_data) ?
1663 'Y' : 'N');
1664 seq_printf(m, " %d/%d/%c/%c/%s %08x %u\n",
1665 session->mtu, session->mru,
1666 session->recv_seq ? 'R' : '-',
1667 session->send_seq ? 'S' : '-',
1668 session->lns_mode ? "LNS" : "LAC",
1669 session->debug,
1670 jiffies_to_msecs(session->reorder_timeout));
Tom Parkin7b7c0712013-03-19 06:11:22 +00001671 seq_printf(m, " %hu/%hu %ld/%ld/%ld %ld/%ld/%ld\n",
James Chapmanfd558d12010-04-02 06:18:33 +00001672 session->nr, session->ns,
Tom Parkin7b7c0712013-03-19 06:11:22 +00001673 atomic_long_read(&session->stats.tx_packets),
1674 atomic_long_read(&session->stats.tx_bytes),
1675 atomic_long_read(&session->stats.tx_errors),
1676 atomic_long_read(&session->stats.rx_packets),
1677 atomic_long_read(&session->stats.rx_bytes),
1678 atomic_long_read(&session->stats.rx_errors));
James Chapman93454712010-04-02 06:18:44 +00001679
1680 if (po)
1681 seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan));
James Chapmanfd558d12010-04-02 06:18:33 +00001682}
1683
1684static int pppol2tp_seq_show(struct seq_file *m, void *v)
1685{
1686 struct pppol2tp_seq_data *pd = v;
1687
1688 /* display header on line 1 */
1689 if (v == SEQ_START_TOKEN) {
1690 seq_puts(m, "PPPoL2TP driver info, " PPPOL2TP_DRV_VERSION "\n");
1691 seq_puts(m, "TUNNEL name, user-data-ok session-count\n");
1692 seq_puts(m, " debug tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
1693 seq_puts(m, " SESSION name, addr/port src-tid/sid "
1694 "dest-tid/sid state user-data-ok\n");
1695 seq_puts(m, " mtu/mru/rcvseq/sendseq/lns debug reorderto\n");
1696 seq_puts(m, " nr/ns tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
1697 goto out;
1698 }
1699
1700 /* Show the tunnel or session context.
1701 */
Guillaume Naulte08293a2017-04-03 12:03:13 +02001702 if (!pd->session) {
James Chapmanfd558d12010-04-02 06:18:33 +00001703 pppol2tp_seq_tunnel_show(m, pd->tunnel);
Guillaume Naulte08293a2017-04-03 12:03:13 +02001704 } else {
James Chapmanfd558d12010-04-02 06:18:33 +00001705 pppol2tp_seq_session_show(m, pd->session);
Guillaume Naulte08293a2017-04-03 12:03:13 +02001706 if (pd->session->deref)
1707 pd->session->deref(pd->session);
1708 l2tp_session_dec_refcount(pd->session);
1709 }
James Chapmanfd558d12010-04-02 06:18:33 +00001710
1711out:
1712 return 0;
1713}
1714
1715static const struct seq_operations pppol2tp_seq_ops = {
1716 .start = pppol2tp_seq_start,
1717 .next = pppol2tp_seq_next,
1718 .stop = pppol2tp_seq_stop,
1719 .show = pppol2tp_seq_show,
1720};
1721
1722/* Called when our /proc file is opened. We allocate data for use when
1723 * iterating our tunnel / session contexts and store it in the private
1724 * data of the seq_file.
1725 */
1726static int pppol2tp_proc_open(struct inode *inode, struct file *file)
1727{
1728 return seq_open_net(inode, file, &pppol2tp_seq_ops,
1729 sizeof(struct pppol2tp_seq_data));
1730}
1731
1732static const struct file_operations pppol2tp_proc_fops = {
1733 .owner = THIS_MODULE,
1734 .open = pppol2tp_proc_open,
1735 .read = seq_read,
1736 .llseek = seq_lseek,
1737 .release = seq_release_net,
1738};
1739
1740#endif /* CONFIG_PROC_FS */
1741
1742/*****************************************************************************
1743 * Network namespace
1744 *****************************************************************************/
1745
1746static __net_init int pppol2tp_init_net(struct net *net)
1747{
1748 struct proc_dir_entry *pde;
1749 int err = 0;
1750
Gao fengd4beaa62013-02-18 01:34:54 +00001751 pde = proc_create("pppol2tp", S_IRUGO, net->proc_net,
1752 &pppol2tp_proc_fops);
James Chapmanfd558d12010-04-02 06:18:33 +00001753 if (!pde) {
1754 err = -ENOMEM;
1755 goto out;
1756 }
1757
1758out:
1759 return err;
1760}
1761
1762static __net_exit void pppol2tp_exit_net(struct net *net)
1763{
Gao fengece31ff2013-02-18 01:34:56 +00001764 remove_proc_entry("pppol2tp", net->proc_net);
James Chapmanfd558d12010-04-02 06:18:33 +00001765}
1766
1767static struct pernet_operations pppol2tp_net_ops = {
1768 .init = pppol2tp_init_net,
1769 .exit = pppol2tp_exit_net,
1770 .id = &pppol2tp_net_id,
1771};
1772
1773/*****************************************************************************
1774 * Init and cleanup
1775 *****************************************************************************/
1776
1777static const struct proto_ops pppol2tp_ops = {
1778 .family = AF_PPPOX,
1779 .owner = THIS_MODULE,
1780 .release = pppol2tp_release,
1781 .bind = sock_no_bind,
1782 .connect = pppol2tp_connect,
1783 .socketpair = sock_no_socketpair,
1784 .accept = sock_no_accept,
1785 .getname = pppol2tp_getname,
1786 .poll = datagram_poll,
1787 .listen = sock_no_listen,
1788 .shutdown = sock_no_shutdown,
1789 .setsockopt = pppol2tp_setsockopt,
1790 .getsockopt = pppol2tp_getsockopt,
1791 .sendmsg = pppol2tp_sendmsg,
1792 .recvmsg = pppol2tp_recvmsg,
1793 .mmap = sock_no_mmap,
1794 .ioctl = pppox_ioctl,
1795};
1796
Eric Dumazet756e64a2010-09-21 06:43:54 +00001797static const struct pppox_proto pppol2tp_proto = {
James Chapmanfd558d12010-04-02 06:18:33 +00001798 .create = pppol2tp_create,
Wei Yongjune1558a92013-07-02 09:02:07 +08001799 .ioctl = pppol2tp_ioctl,
1800 .owner = THIS_MODULE,
James Chapmanfd558d12010-04-02 06:18:33 +00001801};
1802
James Chapman309795f2010-04-02 06:19:10 +00001803#ifdef CONFIG_L2TP_V3
1804
1805static const struct l2tp_nl_cmd_ops pppol2tp_nl_cmd_ops = {
1806 .session_create = pppol2tp_session_create,
Tom Parkincf2f5c82013-03-19 06:11:21 +00001807 .session_delete = l2tp_session_delete,
James Chapman309795f2010-04-02 06:19:10 +00001808};
1809
1810#endif /* CONFIG_L2TP_V3 */
1811
James Chapmanfd558d12010-04-02 06:18:33 +00001812static int __init pppol2tp_init(void)
1813{
1814 int err;
1815
1816 err = register_pernet_device(&pppol2tp_net_ops);
1817 if (err)
1818 goto out;
1819
1820 err = proto_register(&pppol2tp_sk_proto, 0);
1821 if (err)
1822 goto out_unregister_pppol2tp_pernet;
1823
1824 err = register_pppox_proto(PX_PROTO_OL2TP, &pppol2tp_proto);
1825 if (err)
1826 goto out_unregister_pppol2tp_proto;
1827
James Chapman309795f2010-04-02 06:19:10 +00001828#ifdef CONFIG_L2TP_V3
1829 err = l2tp_nl_register_ops(L2TP_PWTYPE_PPP, &pppol2tp_nl_cmd_ops);
1830 if (err)
1831 goto out_unregister_pppox;
1832#endif
1833
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001834 pr_info("PPPoL2TP kernel driver, %s\n", PPPOL2TP_DRV_VERSION);
James Chapmanfd558d12010-04-02 06:18:33 +00001835
1836out:
1837 return err;
James Chapman309795f2010-04-02 06:19:10 +00001838
1839#ifdef CONFIG_L2TP_V3
1840out_unregister_pppox:
1841 unregister_pppox_proto(PX_PROTO_OL2TP);
1842#endif
James Chapmanfd558d12010-04-02 06:18:33 +00001843out_unregister_pppol2tp_proto:
1844 proto_unregister(&pppol2tp_sk_proto);
1845out_unregister_pppol2tp_pernet:
1846 unregister_pernet_device(&pppol2tp_net_ops);
1847 goto out;
1848}
1849
1850static void __exit pppol2tp_exit(void)
1851{
James Chapman309795f2010-04-02 06:19:10 +00001852#ifdef CONFIG_L2TP_V3
1853 l2tp_nl_unregister_ops(L2TP_PWTYPE_PPP);
1854#endif
James Chapmanfd558d12010-04-02 06:18:33 +00001855 unregister_pppox_proto(PX_PROTO_OL2TP);
1856 proto_unregister(&pppol2tp_sk_proto);
1857 unregister_pernet_device(&pppol2tp_net_ops);
1858}
1859
1860module_init(pppol2tp_init);
1861module_exit(pppol2tp_exit);
1862
1863MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
1864MODULE_DESCRIPTION("PPP over L2TP over UDP");
1865MODULE_LICENSE("GPL");
1866MODULE_VERSION(PPPOL2TP_DRV_VERSION);
Guillaume Nault681b4d82015-12-02 16:27:39 +01001867MODULE_ALIAS_NET_PF_PROTO(PF_PPPOX, PX_PROTO_OL2TP);
Guillaume Nault249ee812017-04-03 13:23:15 +02001868MODULE_ALIAS_L2TP_PWTYPE(7);