blob: 1387f547a09e15da0e5b2f71f5e1e44fc31ab42c [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
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000234 l2tp_dbg(session, PPPOL2TP_MSG_DATA,
235 "%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 {
Guillaume Nault9e9cb622014-03-06 11:15:10 +0100241 l2tp_dbg(session, PPPOL2TP_MSG_DATA,
242 "%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:
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000254 l2tp_info(session, PPPOL2TP_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
Tom Parkincf2f5c82013-03-19 06:11:21 +0000440 if (sock) {
Gao Feng54c151d2016-08-22 22:50:02 +0800441 inet_shutdown(sock, SEND_SHUTDOWN);
Tom Parkincf2f5c82013-03-19 06:11:21 +0000442 /* Don't let the session go away before our socket does */
443 l2tp_session_inc_refcount(session);
James Chapmanfd558d12010-04-02 06:18:33 +0000444 }
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 Nault3ae0fc92017-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;
586 int ver = 2;
587 int fd;
James Chapmanfd558d12010-04-02 06:18:33 +0000588
589 lock_sock(sk);
590
591 error = -EINVAL;
592 if (sp->sa_protocol != PX_PROTO_OL2TP)
593 goto end;
594
595 /* Check for already bound sockets */
596 error = -EBUSY;
597 if (sk->sk_state & PPPOX_CONNECTED)
598 goto end;
599
600 /* We don't supporting rebinding anyway */
601 error = -EALREADY;
602 if (sk->sk_user_data)
603 goto end; /* socket is already attached */
604
James Chapmanb79585f2012-04-29 21:48:50 +0000605 /* Get params from socket address. Handle L2TPv2 and L2TPv3.
606 * This is nasty because there are different sockaddr_pppol2tp
607 * structs for L2TPv2, L2TPv3, over IPv4 and IPv6. We use
608 * the sockaddr size to determine which structure the caller
609 * is using.
610 */
611 peer_tunnel_id = 0;
James Chapmane0d44352010-04-02 06:18:54 +0000612 if (sockaddr_len == sizeof(struct sockaddr_pppol2tp)) {
613 fd = sp->pppol2tp.fd;
614 tunnel_id = sp->pppol2tp.s_tunnel;
615 peer_tunnel_id = sp->pppol2tp.d_tunnel;
616 session_id = sp->pppol2tp.s_session;
617 peer_session_id = sp->pppol2tp.d_session;
618 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3)) {
James Chapmanb79585f2012-04-29 21:48:50 +0000619 struct sockaddr_pppol2tpv3 *sp3 =
620 (struct sockaddr_pppol2tpv3 *) sp;
James Chapmane0d44352010-04-02 06:18:54 +0000621 ver = 3;
622 fd = sp3->pppol2tp.fd;
623 tunnel_id = sp3->pppol2tp.s_tunnel;
624 peer_tunnel_id = sp3->pppol2tp.d_tunnel;
625 session_id = sp3->pppol2tp.s_session;
626 peer_session_id = sp3->pppol2tp.d_session;
James Chapmanb79585f2012-04-29 21:48:50 +0000627 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpin6)) {
628 struct sockaddr_pppol2tpin6 *sp6 =
629 (struct sockaddr_pppol2tpin6 *) sp;
630 fd = sp6->pppol2tp.fd;
631 tunnel_id = sp6->pppol2tp.s_tunnel;
632 peer_tunnel_id = sp6->pppol2tp.d_tunnel;
633 session_id = sp6->pppol2tp.s_session;
634 peer_session_id = sp6->pppol2tp.d_session;
635 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3in6)) {
636 struct sockaddr_pppol2tpv3in6 *sp6 =
637 (struct sockaddr_pppol2tpv3in6 *) sp;
638 ver = 3;
639 fd = sp6->pppol2tp.fd;
640 tunnel_id = sp6->pppol2tp.s_tunnel;
641 peer_tunnel_id = sp6->pppol2tp.d_tunnel;
642 session_id = sp6->pppol2tp.s_session;
643 peer_session_id = sp6->pppol2tp.d_session;
James Chapmane0d44352010-04-02 06:18:54 +0000644 } else {
645 error = -EINVAL;
646 goto end; /* bad socket address */
647 }
648
649 /* Don't bind if tunnel_id is 0 */
James Chapmanfd558d12010-04-02 06:18:33 +0000650 error = -EINVAL;
James Chapmane0d44352010-04-02 06:18:54 +0000651 if (tunnel_id == 0)
James Chapmanfd558d12010-04-02 06:18:33 +0000652 goto end;
653
James Chapman309795f2010-04-02 06:19:10 +0000654 tunnel = l2tp_tunnel_find(sock_net(sk), tunnel_id);
655
James Chapmane0d44352010-04-02 06:18:54 +0000656 /* Special case: create tunnel context if session_id and
657 * peer_session_id is 0. Otherwise look up tunnel using supplied
James Chapmanfd558d12010-04-02 06:18:33 +0000658 * tunnel id.
659 */
James Chapmane0d44352010-04-02 06:18:54 +0000660 if ((session_id == 0) && (peer_session_id == 0)) {
James Chapman309795f2010-04-02 06:19:10 +0000661 if (tunnel == NULL) {
662 struct l2tp_tunnel_cfg tcfg = {
663 .encap = L2TP_ENCAPTYPE_UDP,
664 .debug = 0,
665 };
666 error = l2tp_tunnel_create(sock_net(sk), fd, ver, tunnel_id, peer_tunnel_id, &tcfg, &tunnel);
667 if (error < 0)
668 goto end;
669 }
James Chapmanfd558d12010-04-02 06:18:33 +0000670 } else {
James Chapmanfd558d12010-04-02 06:18:33 +0000671 /* Error if we can't find the tunnel */
672 error = -ENOENT;
673 if (tunnel == NULL)
674 goto end;
675
676 /* Error if socket is not prepped */
677 if (tunnel->sock == NULL)
678 goto end;
679 }
680
681 if (tunnel->recv_payload_hook == NULL)
682 tunnel->recv_payload_hook = pppol2tp_recv_payload_hook;
683
James Chapmanb79585f2012-04-29 21:48:50 +0000684 if (tunnel->peer_tunnel_id == 0)
685 tunnel->peer_tunnel_id = peer_tunnel_id;
James Chapmanfd558d12010-04-02 06:18:33 +0000686
James Chapman309795f2010-04-02 06:19:10 +0000687 /* Create session if it doesn't already exist. We handle the
688 * case where a session was previously created by the netlink
689 * interface by checking that the session doesn't already have
690 * a socket and its tunnel socket are what we expect. If any
691 * of those checks fail, return EEXIST to the caller.
692 */
693 session = l2tp_session_find(sock_net(sk), tunnel, session_id);
694 if (session == NULL) {
695 /* Default MTU must allow space for UDP/L2TP/PPP
696 * headers.
697 */
698 cfg.mtu = cfg.mru = 1500 - PPPOL2TP_HEADER_OVERHEAD;
699
700 /* Allocate and initialize a new session context. */
701 session = l2tp_session_create(sizeof(struct pppol2tp_session),
702 tunnel, session_id,
703 peer_session_id, &cfg);
704 if (session == NULL) {
705 error = -ENOMEM;
706 goto end;
707 }
708 } else {
709 ps = l2tp_session_priv(session);
710 error = -EEXIST;
711 if (ps->sock != NULL)
712 goto end;
713
714 /* consistency checks */
715 if (ps->tunnel_sock != tunnel->sock)
716 goto end;
717 }
718
719 /* Associate session with its PPPoL2TP socket */
James Chapmanfd558d12010-04-02 06:18:33 +0000720 ps = l2tp_session_priv(session);
721 ps->owner = current->pid;
722 ps->sock = sk;
723 ps->tunnel_sock = tunnel->sock;
724
725 session->recv_skb = pppol2tp_recv;
726 session->session_close = pppol2tp_session_close;
Javier Martinez Canillas9dd79942016-09-09 08:43:17 -0400727#if IS_ENABLED(CONFIG_L2TP_DEBUGFS)
James Chapman0ad66142010-04-02 06:19:33 +0000728 session->show = pppol2tp_show;
729#endif
James Chapmanfd558d12010-04-02 06:18:33 +0000730
731 /* We need to know each time a skb is dropped from the reorder
732 * queue.
733 */
734 session->ref = pppol2tp_session_sock_hold;
735 session->deref = pppol2tp_session_sock_put;
736
737 /* If PMTU discovery was enabled, use the MTU that was discovered */
Dmitry Petukhovf34c4a32014-04-09 02:23:20 +0600738 dst = sk_dst_get(tunnel->sock);
James Chapmanfd558d12010-04-02 06:18:33 +0000739 if (dst != NULL) {
Guillaume Naulteed4d832014-09-03 14:12:55 +0200740 u32 pmtu = dst_mtu(dst);
741
James Chapmanfd558d12010-04-02 06:18:33 +0000742 if (pmtu != 0)
743 session->mtu = session->mru = pmtu -
744 PPPOL2TP_HEADER_OVERHEAD;
745 dst_release(dst);
746 }
747
748 /* Special case: if source & dest session_id == 0x0000, this
749 * socket is being created to manage the tunnel. Just set up
750 * the internal context for use by ioctl() and sockopt()
751 * handlers.
752 */
753 if ((session->session_id == 0) &&
754 (session->peer_session_id == 0)) {
755 error = 0;
756 goto out_no_ppp;
757 }
758
759 /* The only header we need to worry about is the L2TP
760 * header. This size is different depending on whether
761 * sequence numbers are enabled for the data channel.
762 */
763 po->chan.hdrlen = PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
764
765 po->chan.private = sk;
766 po->chan.ops = &pppol2tp_chan_ops;
767 po->chan.mtu = session->mtu;
768
769 error = ppp_register_net_channel(sock_net(sk), &po->chan);
770 if (error)
771 goto end;
772
773out_no_ppp:
774 /* This is how we get the session context from the socket. */
775 sk->sk_user_data = session;
776 sk->sk_state = PPPOX_CONNECTED;
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000777 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: created\n",
778 session->name);
James Chapmanfd558d12010-04-02 06:18:33 +0000779
780end:
781 release_sock(sk);
782
783 return error;
784}
785
James Chapman309795f2010-04-02 06:19:10 +0000786#ifdef CONFIG_L2TP_V3
787
788/* Called when creating sessions via the netlink interface.
789 */
790static int pppol2tp_session_create(struct net *net, u32 tunnel_id, u32 session_id, u32 peer_session_id, struct l2tp_session_cfg *cfg)
791{
792 int error;
793 struct l2tp_tunnel *tunnel;
794 struct l2tp_session *session;
795 struct pppol2tp_session *ps;
796
797 tunnel = l2tp_tunnel_find(net, tunnel_id);
798
799 /* Error if we can't find the tunnel */
800 error = -ENOENT;
801 if (tunnel == NULL)
802 goto out;
803
804 /* Error if tunnel socket is not prepped */
805 if (tunnel->sock == NULL)
806 goto out;
807
808 /* Check that this session doesn't already exist */
809 error = -EEXIST;
810 session = l2tp_session_find(net, tunnel, session_id);
811 if (session != NULL)
812 goto out;
813
814 /* 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. */
821 error = -ENOMEM;
822 session = l2tp_session_create(sizeof(struct pppol2tp_session),
823 tunnel, session_id,
824 peer_session_id, cfg);
825 if (session == NULL)
826 goto out;
827
828 ps = l2tp_session_priv(session);
829 ps->tunnel_sock = tunnel->sock;
830
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000831 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: created\n",
832 session->name);
James Chapman309795f2010-04-02 06:19:10 +0000833
834 error = 0;
835
836out:
837 return error;
838}
839
James Chapman309795f2010-04-02 06:19:10 +0000840#endif /* CONFIG_L2TP_V3 */
841
James Chapmanfd558d12010-04-02 06:18:33 +0000842/* getname() support.
843 */
844static int pppol2tp_getname(struct socket *sock, struct sockaddr *uaddr,
845 int *usockaddr_len, int peer)
846{
James Chapmane0d44352010-04-02 06:18:54 +0000847 int len = 0;
James Chapmanfd558d12010-04-02 06:18:33 +0000848 int error = 0;
849 struct l2tp_session *session;
850 struct l2tp_tunnel *tunnel;
851 struct sock *sk = sock->sk;
852 struct inet_sock *inet;
853 struct pppol2tp_session *pls;
854
855 error = -ENOTCONN;
856 if (sk == NULL)
857 goto end;
Gao Feng56cff472016-08-19 13:36:23 +0800858 if (!(sk->sk_state & PPPOX_CONNECTED))
James Chapmanfd558d12010-04-02 06:18:33 +0000859 goto end;
860
861 error = -EBADF;
862 session = pppol2tp_sock_to_session(sk);
863 if (session == NULL)
864 goto end;
865
866 pls = l2tp_session_priv(session);
867 tunnel = l2tp_sock_to_tunnel(pls->tunnel_sock);
phil.turnbull@oracle.com4ac36a42016-07-26 15:14:35 -0400868 if (tunnel == NULL)
James Chapmanfd558d12010-04-02 06:18:33 +0000869 goto end_put_sess;
James Chapmanfd558d12010-04-02 06:18:33 +0000870
Benjamin LaHaisebbdb32c2012-03-20 03:57:54 +0000871 inet = inet_sk(tunnel->sock);
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000872 if ((tunnel->version == 2) && (tunnel->sock->sk_family == AF_INET)) {
James Chapmane0d44352010-04-02 06:18:54 +0000873 struct sockaddr_pppol2tp sp;
874 len = sizeof(sp);
875 memset(&sp, 0, len);
876 sp.sa_family = AF_PPPOX;
877 sp.sa_protocol = PX_PROTO_OL2TP;
878 sp.pppol2tp.fd = tunnel->fd;
879 sp.pppol2tp.pid = pls->owner;
880 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
881 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
882 sp.pppol2tp.s_session = session->session_id;
883 sp.pppol2tp.d_session = session->peer_session_id;
884 sp.pppol2tp.addr.sin_family = AF_INET;
885 sp.pppol2tp.addr.sin_port = inet->inet_dport;
886 sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr;
887 memcpy(uaddr, &sp, len);
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000888#if IS_ENABLED(CONFIG_IPV6)
889 } else if ((tunnel->version == 2) &&
890 (tunnel->sock->sk_family == AF_INET6)) {
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000891 struct sockaddr_pppol2tpin6 sp;
Eric Dumazetefe42082013-10-03 15:42:29 -0700892
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000893 len = sizeof(sp);
894 memset(&sp, 0, len);
895 sp.sa_family = AF_PPPOX;
896 sp.sa_protocol = PX_PROTO_OL2TP;
897 sp.pppol2tp.fd = tunnel->fd;
898 sp.pppol2tp.pid = pls->owner;
899 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
900 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
901 sp.pppol2tp.s_session = session->session_id;
902 sp.pppol2tp.d_session = session->peer_session_id;
903 sp.pppol2tp.addr.sin6_family = AF_INET6;
904 sp.pppol2tp.addr.sin6_port = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -0700905 memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr,
906 sizeof(tunnel->sock->sk_v6_daddr));
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000907 memcpy(uaddr, &sp, len);
908 } else if ((tunnel->version == 3) &&
909 (tunnel->sock->sk_family == AF_INET6)) {
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000910 struct sockaddr_pppol2tpv3in6 sp;
Eric Dumazetefe42082013-10-03 15:42:29 -0700911
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000912 len = sizeof(sp);
913 memset(&sp, 0, len);
914 sp.sa_family = AF_PPPOX;
915 sp.sa_protocol = PX_PROTO_OL2TP;
916 sp.pppol2tp.fd = tunnel->fd;
917 sp.pppol2tp.pid = pls->owner;
918 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
919 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
920 sp.pppol2tp.s_session = session->session_id;
921 sp.pppol2tp.d_session = session->peer_session_id;
922 sp.pppol2tp.addr.sin6_family = AF_INET6;
923 sp.pppol2tp.addr.sin6_port = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -0700924 memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr,
925 sizeof(tunnel->sock->sk_v6_daddr));
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000926 memcpy(uaddr, &sp, len);
927#endif
James Chapmane0d44352010-04-02 06:18:54 +0000928 } else if (tunnel->version == 3) {
929 struct sockaddr_pppol2tpv3 sp;
930 len = sizeof(sp);
931 memset(&sp, 0, len);
932 sp.sa_family = AF_PPPOX;
933 sp.sa_protocol = PX_PROTO_OL2TP;
934 sp.pppol2tp.fd = tunnel->fd;
935 sp.pppol2tp.pid = pls->owner;
936 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
937 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
938 sp.pppol2tp.s_session = session->session_id;
939 sp.pppol2tp.d_session = session->peer_session_id;
940 sp.pppol2tp.addr.sin_family = AF_INET;
941 sp.pppol2tp.addr.sin_port = inet->inet_dport;
942 sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr;
943 memcpy(uaddr, &sp, len);
944 }
James Chapmanfd558d12010-04-02 06:18:33 +0000945
946 *usockaddr_len = len;
phil.turnbull@oracle.com4ac36a42016-07-26 15:14:35 -0400947 error = 0;
James Chapmanfd558d12010-04-02 06:18:33 +0000948
949 sock_put(pls->tunnel_sock);
950end_put_sess:
951 sock_put(sk);
James Chapmanfd558d12010-04-02 06:18:33 +0000952end:
953 return error;
954}
955
956/****************************************************************************
957 * ioctl() handlers.
958 *
959 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
960 * sockets. However, in order to control kernel tunnel features, we allow
961 * userspace to create a special "tunnel" PPPoX socket which is used for
962 * control only. Tunnel PPPoX sockets have session_id == 0 and simply allow
963 * the user application to issue L2TP setsockopt(), getsockopt() and ioctl()
964 * calls.
965 ****************************************************************************/
966
967static void pppol2tp_copy_stats(struct pppol2tp_ioc_stats *dest,
968 struct l2tp_stats *stats)
969{
Tom Parkin7b7c0712013-03-19 06:11:22 +0000970 dest->tx_packets = atomic_long_read(&stats->tx_packets);
971 dest->tx_bytes = atomic_long_read(&stats->tx_bytes);
972 dest->tx_errors = atomic_long_read(&stats->tx_errors);
973 dest->rx_packets = atomic_long_read(&stats->rx_packets);
974 dest->rx_bytes = atomic_long_read(&stats->rx_bytes);
975 dest->rx_seq_discards = atomic_long_read(&stats->rx_seq_discards);
976 dest->rx_oos_packets = atomic_long_read(&stats->rx_oos_packets);
977 dest->rx_errors = atomic_long_read(&stats->rx_errors);
James Chapmanfd558d12010-04-02 06:18:33 +0000978}
979
980/* Session ioctl helper.
981 */
982static int pppol2tp_session_ioctl(struct l2tp_session *session,
983 unsigned int cmd, unsigned long arg)
984{
985 struct ifreq ifr;
986 int err = 0;
987 struct sock *sk;
988 int val = (int) arg;
989 struct pppol2tp_session *ps = l2tp_session_priv(session);
990 struct l2tp_tunnel *tunnel = session->tunnel;
991 struct pppol2tp_ioc_stats stats;
992
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000993 l2tp_dbg(session, PPPOL2TP_MSG_CONTROL,
994 "%s: pppol2tp_session_ioctl(cmd=%#x, arg=%#lx)\n",
995 session->name, cmd, arg);
James Chapmanfd558d12010-04-02 06:18:33 +0000996
997 sk = ps->sock;
998 sock_hold(sk);
999
1000 switch (cmd) {
1001 case SIOCGIFMTU:
1002 err = -ENXIO;
1003 if (!(sk->sk_state & PPPOX_CONNECTED))
1004 break;
1005
1006 err = -EFAULT;
1007 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1008 break;
1009 ifr.ifr_mtu = session->mtu;
1010 if (copy_to_user((void __user *) arg, &ifr, sizeof(struct ifreq)))
1011 break;
1012
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001013 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: get mtu=%d\n",
1014 session->name, session->mtu);
James Chapmanfd558d12010-04-02 06:18:33 +00001015 err = 0;
1016 break;
1017
1018 case SIOCSIFMTU:
1019 err = -ENXIO;
1020 if (!(sk->sk_state & PPPOX_CONNECTED))
1021 break;
1022
1023 err = -EFAULT;
1024 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1025 break;
1026
1027 session->mtu = ifr.ifr_mtu;
1028
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001029 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: set mtu=%d\n",
1030 session->name, session->mtu);
James Chapmanfd558d12010-04-02 06:18:33 +00001031 err = 0;
1032 break;
1033
1034 case PPPIOCGMRU:
1035 err = -ENXIO;
1036 if (!(sk->sk_state & PPPOX_CONNECTED))
1037 break;
1038
1039 err = -EFAULT;
1040 if (put_user(session->mru, (int __user *) arg))
1041 break;
1042
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001043 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: get mru=%d\n",
1044 session->name, session->mru);
James Chapmanfd558d12010-04-02 06:18:33 +00001045 err = 0;
1046 break;
1047
1048 case PPPIOCSMRU:
1049 err = -ENXIO;
1050 if (!(sk->sk_state & PPPOX_CONNECTED))
1051 break;
1052
1053 err = -EFAULT;
1054 if (get_user(val, (int __user *) arg))
1055 break;
1056
1057 session->mru = val;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001058 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: set mru=%d\n",
1059 session->name, session->mru);
James Chapmanfd558d12010-04-02 06:18:33 +00001060 err = 0;
1061 break;
1062
1063 case PPPIOCGFLAGS:
1064 err = -EFAULT;
1065 if (put_user(ps->flags, (int __user *) arg))
1066 break;
1067
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001068 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: get flags=%d\n",
1069 session->name, ps->flags);
James Chapmanfd558d12010-04-02 06:18:33 +00001070 err = 0;
1071 break;
1072
1073 case PPPIOCSFLAGS:
1074 err = -EFAULT;
1075 if (get_user(val, (int __user *) arg))
1076 break;
1077 ps->flags = val;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001078 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: set flags=%d\n",
1079 session->name, ps->flags);
James Chapmanfd558d12010-04-02 06:18:33 +00001080 err = 0;
1081 break;
1082
1083 case PPPIOCGL2TPSTATS:
1084 err = -ENXIO;
1085 if (!(sk->sk_state & PPPOX_CONNECTED))
1086 break;
1087
1088 memset(&stats, 0, sizeof(stats));
1089 stats.tunnel_id = tunnel->tunnel_id;
1090 stats.session_id = session->session_id;
1091 pppol2tp_copy_stats(&stats, &session->stats);
1092 if (copy_to_user((void __user *) arg, &stats,
1093 sizeof(stats)))
1094 break;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001095 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: get L2TP stats\n",
1096 session->name);
James Chapmanfd558d12010-04-02 06:18:33 +00001097 err = 0;
1098 break;
1099
1100 default:
1101 err = -ENOSYS;
1102 break;
1103 }
1104
1105 sock_put(sk);
1106
1107 return err;
1108}
1109
1110/* Tunnel ioctl helper.
1111 *
1112 * Note the special handling for PPPIOCGL2TPSTATS below. If the ioctl data
1113 * specifies a session_id, the session ioctl handler is called. This allows an
1114 * application to retrieve session stats via a tunnel socket.
1115 */
1116static int pppol2tp_tunnel_ioctl(struct l2tp_tunnel *tunnel,
1117 unsigned int cmd, unsigned long arg)
1118{
1119 int err = 0;
1120 struct sock *sk;
1121 struct pppol2tp_ioc_stats stats;
1122
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001123 l2tp_dbg(tunnel, PPPOL2TP_MSG_CONTROL,
1124 "%s: pppol2tp_tunnel_ioctl(cmd=%#x, arg=%#lx)\n",
1125 tunnel->name, cmd, arg);
James Chapmanfd558d12010-04-02 06:18:33 +00001126
1127 sk = tunnel->sock;
1128 sock_hold(sk);
1129
1130 switch (cmd) {
1131 case PPPIOCGL2TPSTATS:
1132 err = -ENXIO;
1133 if (!(sk->sk_state & PPPOX_CONNECTED))
1134 break;
1135
1136 if (copy_from_user(&stats, (void __user *) arg,
1137 sizeof(stats))) {
1138 err = -EFAULT;
1139 break;
1140 }
1141 if (stats.session_id != 0) {
1142 /* resend to session ioctl handler */
1143 struct l2tp_session *session =
James Chapmanf7faffa2010-04-02 06:18:49 +00001144 l2tp_session_find(sock_net(sk), tunnel, stats.session_id);
James Chapmanfd558d12010-04-02 06:18:33 +00001145 if (session != NULL)
1146 err = pppol2tp_session_ioctl(session, cmd, arg);
1147 else
1148 err = -EBADR;
1149 break;
1150 }
1151#ifdef CONFIG_XFRM
1152 stats.using_ipsec = (sk->sk_policy[0] || sk->sk_policy[1]) ? 1 : 0;
1153#endif
1154 pppol2tp_copy_stats(&stats, &tunnel->stats);
1155 if (copy_to_user((void __user *) arg, &stats, sizeof(stats))) {
1156 err = -EFAULT;
1157 break;
1158 }
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001159 l2tp_info(tunnel, PPPOL2TP_MSG_CONTROL, "%s: get L2TP stats\n",
1160 tunnel->name);
James Chapmanfd558d12010-04-02 06:18:33 +00001161 err = 0;
1162 break;
1163
1164 default:
1165 err = -ENOSYS;
1166 break;
1167 }
1168
1169 sock_put(sk);
1170
1171 return err;
1172}
1173
1174/* Main ioctl() handler.
1175 * Dispatch to tunnel or session helpers depending on the socket.
1176 */
1177static int pppol2tp_ioctl(struct socket *sock, unsigned int cmd,
1178 unsigned long arg)
1179{
1180 struct sock *sk = sock->sk;
1181 struct l2tp_session *session;
1182 struct l2tp_tunnel *tunnel;
1183 struct pppol2tp_session *ps;
1184 int err;
1185
1186 if (!sk)
1187 return 0;
1188
1189 err = -EBADF;
1190 if (sock_flag(sk, SOCK_DEAD) != 0)
1191 goto end;
1192
1193 err = -ENOTCONN;
1194 if ((sk->sk_user_data == NULL) ||
1195 (!(sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND))))
1196 goto end;
1197
1198 /* Get session context from the socket */
1199 err = -EBADF;
1200 session = pppol2tp_sock_to_session(sk);
1201 if (session == NULL)
1202 goto end;
1203
1204 /* Special case: if session's session_id is zero, treat ioctl as a
1205 * tunnel ioctl
1206 */
1207 ps = l2tp_session_priv(session);
1208 if ((session->session_id == 0) &&
1209 (session->peer_session_id == 0)) {
1210 err = -EBADF;
1211 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1212 if (tunnel == NULL)
1213 goto end_put_sess;
1214
1215 err = pppol2tp_tunnel_ioctl(tunnel, cmd, arg);
1216 sock_put(ps->tunnel_sock);
1217 goto end_put_sess;
1218 }
1219
1220 err = pppol2tp_session_ioctl(session, cmd, arg);
1221
1222end_put_sess:
1223 sock_put(sk);
1224end:
1225 return err;
1226}
1227
1228/*****************************************************************************
1229 * setsockopt() / getsockopt() support.
1230 *
1231 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
1232 * sockets. In order to control kernel tunnel features, we allow userspace to
1233 * create a special "tunnel" PPPoX socket which is used for control only.
1234 * Tunnel PPPoX sockets have session_id == 0 and simply allow the user
1235 * application to issue L2TP setsockopt(), getsockopt() and ioctl() calls.
1236 *****************************************************************************/
1237
1238/* Tunnel setsockopt() helper.
1239 */
1240static int pppol2tp_tunnel_setsockopt(struct sock *sk,
1241 struct l2tp_tunnel *tunnel,
1242 int optname, int val)
1243{
1244 int err = 0;
1245
1246 switch (optname) {
1247 case PPPOL2TP_SO_DEBUG:
1248 tunnel->debug = val;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001249 l2tp_info(tunnel, PPPOL2TP_MSG_CONTROL, "%s: set debug=%x\n",
1250 tunnel->name, tunnel->debug);
James Chapmanfd558d12010-04-02 06:18:33 +00001251 break;
1252
1253 default:
1254 err = -ENOPROTOOPT;
1255 break;
1256 }
1257
1258 return err;
1259}
1260
1261/* Session setsockopt helper.
1262 */
1263static int pppol2tp_session_setsockopt(struct sock *sk,
1264 struct l2tp_session *session,
1265 int optname, int val)
1266{
1267 int err = 0;
1268 struct pppol2tp_session *ps = l2tp_session_priv(session);
1269
1270 switch (optname) {
1271 case PPPOL2TP_SO_RECVSEQ:
1272 if ((val != 0) && (val != 1)) {
1273 err = -EINVAL;
1274 break;
1275 }
1276 session->recv_seq = val ? -1 : 0;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001277 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1278 "%s: set recv_seq=%d\n",
1279 session->name, session->recv_seq);
James Chapmanfd558d12010-04-02 06:18:33 +00001280 break;
1281
1282 case PPPOL2TP_SO_SENDSEQ:
1283 if ((val != 0) && (val != 1)) {
1284 err = -EINVAL;
1285 break;
1286 }
1287 session->send_seq = val ? -1 : 0;
1288 {
1289 struct sock *ssk = ps->sock;
1290 struct pppox_sock *po = pppox_sk(ssk);
1291 po->chan.hdrlen = val ? PPPOL2TP_L2TP_HDR_SIZE_SEQ :
1292 PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
1293 }
Guillaume Naultbb5016e2014-03-06 11:14:30 +01001294 l2tp_session_set_header_len(session, session->tunnel->version);
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001295 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1296 "%s: set send_seq=%d\n",
1297 session->name, session->send_seq);
James Chapmanfd558d12010-04-02 06:18:33 +00001298 break;
1299
1300 case PPPOL2TP_SO_LNSMODE:
1301 if ((val != 0) && (val != 1)) {
1302 err = -EINVAL;
1303 break;
1304 }
1305 session->lns_mode = val ? -1 : 0;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001306 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1307 "%s: set lns_mode=%d\n",
1308 session->name, session->lns_mode);
James Chapmanfd558d12010-04-02 06:18:33 +00001309 break;
1310
1311 case PPPOL2TP_SO_DEBUG:
1312 session->debug = val;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001313 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: set debug=%x\n",
1314 session->name, session->debug);
James Chapmanfd558d12010-04-02 06:18:33 +00001315 break;
1316
1317 case PPPOL2TP_SO_REORDERTO:
1318 session->reorder_timeout = msecs_to_jiffies(val);
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001319 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1320 "%s: set reorder_timeout=%d\n",
1321 session->name, session->reorder_timeout);
James Chapmanfd558d12010-04-02 06:18:33 +00001322 break;
1323
1324 default:
1325 err = -ENOPROTOOPT;
1326 break;
1327 }
1328
1329 return err;
1330}
1331
1332/* Main setsockopt() entry point.
1333 * Does API checks, then calls either the tunnel or session setsockopt
1334 * handler, according to whether the PPPoL2TP socket is a for a regular
1335 * session or the special tunnel type.
1336 */
1337static int pppol2tp_setsockopt(struct socket *sock, int level, int optname,
1338 char __user *optval, unsigned int optlen)
1339{
1340 struct sock *sk = sock->sk;
1341 struct l2tp_session *session;
1342 struct l2tp_tunnel *tunnel;
1343 struct pppol2tp_session *ps;
1344 int val;
1345 int err;
1346
1347 if (level != SOL_PPPOL2TP)
Sasha Levin3cf521f2014-07-14 17:02:31 -07001348 return -EINVAL;
James Chapmanfd558d12010-04-02 06:18:33 +00001349
1350 if (optlen < sizeof(int))
1351 return -EINVAL;
1352
1353 if (get_user(val, (int __user *)optval))
1354 return -EFAULT;
1355
1356 err = -ENOTCONN;
1357 if (sk->sk_user_data == NULL)
1358 goto end;
1359
1360 /* Get session context from the socket */
1361 err = -EBADF;
1362 session = pppol2tp_sock_to_session(sk);
1363 if (session == NULL)
1364 goto end;
1365
1366 /* Special case: if session_id == 0x0000, treat as operation on tunnel
1367 */
1368 ps = l2tp_session_priv(session);
1369 if ((session->session_id == 0) &&
1370 (session->peer_session_id == 0)) {
1371 err = -EBADF;
1372 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1373 if (tunnel == NULL)
1374 goto end_put_sess;
1375
1376 err = pppol2tp_tunnel_setsockopt(sk, tunnel, optname, val);
1377 sock_put(ps->tunnel_sock);
1378 } else
1379 err = pppol2tp_session_setsockopt(sk, session, optname, val);
1380
1381 err = 0;
1382
1383end_put_sess:
1384 sock_put(sk);
1385end:
1386 return err;
1387}
1388
1389/* Tunnel getsockopt helper. Called with sock locked.
1390 */
1391static int pppol2tp_tunnel_getsockopt(struct sock *sk,
1392 struct l2tp_tunnel *tunnel,
1393 int optname, int *val)
1394{
1395 int err = 0;
1396
1397 switch (optname) {
1398 case PPPOL2TP_SO_DEBUG:
1399 *val = tunnel->debug;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001400 l2tp_info(tunnel, PPPOL2TP_MSG_CONTROL, "%s: get debug=%x\n",
1401 tunnel->name, tunnel->debug);
James Chapmanfd558d12010-04-02 06:18:33 +00001402 break;
1403
1404 default:
1405 err = -ENOPROTOOPT;
1406 break;
1407 }
1408
1409 return err;
1410}
1411
1412/* Session getsockopt helper. Called with sock locked.
1413 */
1414static int pppol2tp_session_getsockopt(struct sock *sk,
1415 struct l2tp_session *session,
1416 int optname, int *val)
1417{
1418 int err = 0;
1419
1420 switch (optname) {
1421 case PPPOL2TP_SO_RECVSEQ:
1422 *val = session->recv_seq;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001423 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1424 "%s: get recv_seq=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001425 break;
1426
1427 case PPPOL2TP_SO_SENDSEQ:
1428 *val = session->send_seq;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001429 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1430 "%s: get send_seq=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001431 break;
1432
1433 case PPPOL2TP_SO_LNSMODE:
1434 *val = session->lns_mode;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001435 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1436 "%s: get lns_mode=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001437 break;
1438
1439 case PPPOL2TP_SO_DEBUG:
1440 *val = session->debug;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001441 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: get debug=%d\n",
1442 session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001443 break;
1444
1445 case PPPOL2TP_SO_REORDERTO:
1446 *val = (int) jiffies_to_msecs(session->reorder_timeout);
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001447 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1448 "%s: get reorder_timeout=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001449 break;
1450
1451 default:
1452 err = -ENOPROTOOPT;
1453 }
1454
1455 return err;
1456}
1457
1458/* Main getsockopt() entry point.
1459 * Does API checks, then calls either the tunnel or session getsockopt
1460 * handler, according to whether the PPPoX socket is a for a regular session
1461 * or the special tunnel type.
1462 */
Joe Perchese3192692012-06-03 17:41:40 +00001463static int pppol2tp_getsockopt(struct socket *sock, int level, int optname,
1464 char __user *optval, int __user *optlen)
James Chapmanfd558d12010-04-02 06:18:33 +00001465{
1466 struct sock *sk = sock->sk;
1467 struct l2tp_session *session;
1468 struct l2tp_tunnel *tunnel;
1469 int val, len;
1470 int err;
1471 struct pppol2tp_session *ps;
1472
1473 if (level != SOL_PPPOL2TP)
Sasha Levin3cf521f2014-07-14 17:02:31 -07001474 return -EINVAL;
James Chapmanfd558d12010-04-02 06:18:33 +00001475
Joe Perchese3192692012-06-03 17:41:40 +00001476 if (get_user(len, optlen))
James Chapmanfd558d12010-04-02 06:18:33 +00001477 return -EFAULT;
1478
1479 len = min_t(unsigned int, len, sizeof(int));
1480
1481 if (len < 0)
1482 return -EINVAL;
1483
1484 err = -ENOTCONN;
1485 if (sk->sk_user_data == NULL)
1486 goto end;
1487
1488 /* Get the session context */
1489 err = -EBADF;
1490 session = pppol2tp_sock_to_session(sk);
1491 if (session == NULL)
1492 goto end;
1493
1494 /* Special case: if session_id == 0x0000, treat as operation on tunnel */
1495 ps = l2tp_session_priv(session);
1496 if ((session->session_id == 0) &&
1497 (session->peer_session_id == 0)) {
1498 err = -EBADF;
1499 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1500 if (tunnel == NULL)
1501 goto end_put_sess;
1502
1503 err = pppol2tp_tunnel_getsockopt(sk, tunnel, optname, &val);
1504 sock_put(ps->tunnel_sock);
1505 } else
1506 err = pppol2tp_session_getsockopt(sk, session, optname, &val);
1507
1508 err = -EFAULT;
Joe Perchese3192692012-06-03 17:41:40 +00001509 if (put_user(len, optlen))
James Chapmanfd558d12010-04-02 06:18:33 +00001510 goto end_put_sess;
1511
1512 if (copy_to_user((void __user *) optval, &val, len))
1513 goto end_put_sess;
1514
1515 err = 0;
1516
1517end_put_sess:
1518 sock_put(sk);
1519end:
1520 return err;
1521}
1522
1523/*****************************************************************************
1524 * /proc filesystem for debug
James Chapmanf7faffa2010-04-02 06:18:49 +00001525 * Since the original pppol2tp driver provided /proc/net/pppol2tp for
1526 * L2TPv2, we dump only L2TPv2 tunnels and sessions here.
James Chapmanfd558d12010-04-02 06:18:33 +00001527 *****************************************************************************/
1528
1529static unsigned int pppol2tp_net_id;
1530
1531#ifdef CONFIG_PROC_FS
1532
1533struct pppol2tp_seq_data {
1534 struct seq_net_private p;
1535 int tunnel_idx; /* current tunnel */
1536 int session_idx; /* index of session within current tunnel */
1537 struct l2tp_tunnel *tunnel;
1538 struct l2tp_session *session; /* NULL means get next tunnel */
1539};
1540
1541static void pppol2tp_next_tunnel(struct net *net, struct pppol2tp_seq_data *pd)
1542{
James Chapmanf7faffa2010-04-02 06:18:49 +00001543 for (;;) {
1544 pd->tunnel = l2tp_tunnel_find_nth(net, pd->tunnel_idx);
1545 pd->tunnel_idx++;
1546
1547 if (pd->tunnel == NULL)
1548 break;
1549
1550 /* Ignore L2TPv3 tunnels */
1551 if (pd->tunnel->version < 3)
1552 break;
1553 }
James Chapmanfd558d12010-04-02 06:18:33 +00001554}
1555
1556static void pppol2tp_next_session(struct net *net, struct pppol2tp_seq_data *pd)
1557{
Guillaume Naultb7902602017-04-03 12:03:13 +02001558 pd->session = l2tp_session_get_nth(pd->tunnel, pd->session_idx, true);
James Chapmanfd558d12010-04-02 06:18:33 +00001559 pd->session_idx++;
James Chapmanf7faffa2010-04-02 06:18:49 +00001560
James Chapmanfd558d12010-04-02 06:18:33 +00001561 if (pd->session == NULL) {
1562 pd->session_idx = 0;
1563 pppol2tp_next_tunnel(net, pd);
1564 }
1565}
1566
1567static void *pppol2tp_seq_start(struct seq_file *m, loff_t *offs)
1568{
1569 struct pppol2tp_seq_data *pd = SEQ_START_TOKEN;
1570 loff_t pos = *offs;
1571 struct net *net;
1572
1573 if (!pos)
1574 goto out;
1575
1576 BUG_ON(m->private == NULL);
1577 pd = m->private;
1578 net = seq_file_net(m);
1579
1580 if (pd->tunnel == NULL)
1581 pppol2tp_next_tunnel(net, pd);
1582 else
1583 pppol2tp_next_session(net, pd);
1584
1585 /* NULL tunnel and session indicates end of list */
1586 if ((pd->tunnel == NULL) && (pd->session == NULL))
1587 pd = NULL;
1588
1589out:
1590 return pd;
1591}
1592
1593static void *pppol2tp_seq_next(struct seq_file *m, void *v, loff_t *pos)
1594{
1595 (*pos)++;
1596 return NULL;
1597}
1598
1599static void pppol2tp_seq_stop(struct seq_file *p, void *v)
1600{
1601 /* nothing to do */
1602}
1603
1604static void pppol2tp_seq_tunnel_show(struct seq_file *m, void *v)
1605{
1606 struct l2tp_tunnel *tunnel = v;
1607
1608 seq_printf(m, "\nTUNNEL '%s', %c %d\n",
1609 tunnel->name,
1610 (tunnel == tunnel->sock->sk_user_data) ? 'Y' : 'N',
1611 atomic_read(&tunnel->ref_count) - 1);
Tom Parkin7b7c0712013-03-19 06:11:22 +00001612 seq_printf(m, " %08x %ld/%ld/%ld %ld/%ld/%ld\n",
James Chapmanfd558d12010-04-02 06:18:33 +00001613 tunnel->debug,
Tom Parkin7b7c0712013-03-19 06:11:22 +00001614 atomic_long_read(&tunnel->stats.tx_packets),
1615 atomic_long_read(&tunnel->stats.tx_bytes),
1616 atomic_long_read(&tunnel->stats.tx_errors),
1617 atomic_long_read(&tunnel->stats.rx_packets),
1618 atomic_long_read(&tunnel->stats.rx_bytes),
1619 atomic_long_read(&tunnel->stats.rx_errors));
James Chapmanfd558d12010-04-02 06:18:33 +00001620}
1621
1622static void pppol2tp_seq_session_show(struct seq_file *m, void *v)
1623{
1624 struct l2tp_session *session = v;
1625 struct l2tp_tunnel *tunnel = session->tunnel;
1626 struct pppol2tp_session *ps = l2tp_session_priv(session);
James Chapman93454712010-04-02 06:18:44 +00001627 struct pppox_sock *po = pppox_sk(ps->sock);
James Chapmanfd558d12010-04-02 06:18:33 +00001628 u32 ip = 0;
1629 u16 port = 0;
1630
1631 if (tunnel->sock) {
1632 struct inet_sock *inet = inet_sk(tunnel->sock);
1633 ip = ntohl(inet->inet_saddr);
1634 port = ntohs(inet->inet_sport);
1635 }
1636
1637 seq_printf(m, " SESSION '%s' %08X/%d %04X/%04X -> "
1638 "%04X/%04X %d %c\n",
1639 session->name, ip, port,
1640 tunnel->tunnel_id,
1641 session->session_id,
1642 tunnel->peer_tunnel_id,
1643 session->peer_session_id,
1644 ps->sock->sk_state,
1645 (session == ps->sock->sk_user_data) ?
1646 'Y' : 'N');
1647 seq_printf(m, " %d/%d/%c/%c/%s %08x %u\n",
1648 session->mtu, session->mru,
1649 session->recv_seq ? 'R' : '-',
1650 session->send_seq ? 'S' : '-',
1651 session->lns_mode ? "LNS" : "LAC",
1652 session->debug,
1653 jiffies_to_msecs(session->reorder_timeout));
Tom Parkin7b7c0712013-03-19 06:11:22 +00001654 seq_printf(m, " %hu/%hu %ld/%ld/%ld %ld/%ld/%ld\n",
James Chapmanfd558d12010-04-02 06:18:33 +00001655 session->nr, session->ns,
Tom Parkin7b7c0712013-03-19 06:11:22 +00001656 atomic_long_read(&session->stats.tx_packets),
1657 atomic_long_read(&session->stats.tx_bytes),
1658 atomic_long_read(&session->stats.tx_errors),
1659 atomic_long_read(&session->stats.rx_packets),
1660 atomic_long_read(&session->stats.rx_bytes),
1661 atomic_long_read(&session->stats.rx_errors));
James Chapman93454712010-04-02 06:18:44 +00001662
1663 if (po)
1664 seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan));
James Chapmanfd558d12010-04-02 06:18:33 +00001665}
1666
1667static int pppol2tp_seq_show(struct seq_file *m, void *v)
1668{
1669 struct pppol2tp_seq_data *pd = v;
1670
1671 /* display header on line 1 */
1672 if (v == SEQ_START_TOKEN) {
1673 seq_puts(m, "PPPoL2TP driver info, " PPPOL2TP_DRV_VERSION "\n");
1674 seq_puts(m, "TUNNEL name, user-data-ok session-count\n");
1675 seq_puts(m, " debug tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
1676 seq_puts(m, " SESSION name, addr/port src-tid/sid "
1677 "dest-tid/sid state user-data-ok\n");
1678 seq_puts(m, " mtu/mru/rcvseq/sendseq/lns debug reorderto\n");
1679 seq_puts(m, " nr/ns tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
1680 goto out;
1681 }
1682
1683 /* Show the tunnel or session context.
1684 */
Guillaume Naultb7902602017-04-03 12:03:13 +02001685 if (!pd->session) {
James Chapmanfd558d12010-04-02 06:18:33 +00001686 pppol2tp_seq_tunnel_show(m, pd->tunnel);
Guillaume Naultb7902602017-04-03 12:03:13 +02001687 } else {
James Chapmanfd558d12010-04-02 06:18:33 +00001688 pppol2tp_seq_session_show(m, pd->session);
Guillaume Naultb7902602017-04-03 12:03:13 +02001689 if (pd->session->deref)
1690 pd->session->deref(pd->session);
1691 l2tp_session_dec_refcount(pd->session);
1692 }
James Chapmanfd558d12010-04-02 06:18:33 +00001693
1694out:
1695 return 0;
1696}
1697
1698static const struct seq_operations pppol2tp_seq_ops = {
1699 .start = pppol2tp_seq_start,
1700 .next = pppol2tp_seq_next,
1701 .stop = pppol2tp_seq_stop,
1702 .show = pppol2tp_seq_show,
1703};
1704
1705/* Called when our /proc file is opened. We allocate data for use when
1706 * iterating our tunnel / session contexts and store it in the private
1707 * data of the seq_file.
1708 */
1709static int pppol2tp_proc_open(struct inode *inode, struct file *file)
1710{
1711 return seq_open_net(inode, file, &pppol2tp_seq_ops,
1712 sizeof(struct pppol2tp_seq_data));
1713}
1714
1715static const struct file_operations pppol2tp_proc_fops = {
1716 .owner = THIS_MODULE,
1717 .open = pppol2tp_proc_open,
1718 .read = seq_read,
1719 .llseek = seq_lseek,
1720 .release = seq_release_net,
1721};
1722
1723#endif /* CONFIG_PROC_FS */
1724
1725/*****************************************************************************
1726 * Network namespace
1727 *****************************************************************************/
1728
1729static __net_init int pppol2tp_init_net(struct net *net)
1730{
1731 struct proc_dir_entry *pde;
1732 int err = 0;
1733
Gao fengd4beaa62013-02-18 01:34:54 +00001734 pde = proc_create("pppol2tp", S_IRUGO, net->proc_net,
1735 &pppol2tp_proc_fops);
James Chapmanfd558d12010-04-02 06:18:33 +00001736 if (!pde) {
1737 err = -ENOMEM;
1738 goto out;
1739 }
1740
1741out:
1742 return err;
1743}
1744
1745static __net_exit void pppol2tp_exit_net(struct net *net)
1746{
Gao fengece31ff2013-02-18 01:34:56 +00001747 remove_proc_entry("pppol2tp", net->proc_net);
James Chapmanfd558d12010-04-02 06:18:33 +00001748}
1749
1750static struct pernet_operations pppol2tp_net_ops = {
1751 .init = pppol2tp_init_net,
1752 .exit = pppol2tp_exit_net,
1753 .id = &pppol2tp_net_id,
1754};
1755
1756/*****************************************************************************
1757 * Init and cleanup
1758 *****************************************************************************/
1759
1760static const struct proto_ops pppol2tp_ops = {
1761 .family = AF_PPPOX,
1762 .owner = THIS_MODULE,
1763 .release = pppol2tp_release,
1764 .bind = sock_no_bind,
1765 .connect = pppol2tp_connect,
1766 .socketpair = sock_no_socketpair,
1767 .accept = sock_no_accept,
1768 .getname = pppol2tp_getname,
1769 .poll = datagram_poll,
1770 .listen = sock_no_listen,
1771 .shutdown = sock_no_shutdown,
1772 .setsockopt = pppol2tp_setsockopt,
1773 .getsockopt = pppol2tp_getsockopt,
1774 .sendmsg = pppol2tp_sendmsg,
1775 .recvmsg = pppol2tp_recvmsg,
1776 .mmap = sock_no_mmap,
1777 .ioctl = pppox_ioctl,
1778};
1779
Eric Dumazet756e64a2010-09-21 06:43:54 +00001780static const struct pppox_proto pppol2tp_proto = {
James Chapmanfd558d12010-04-02 06:18:33 +00001781 .create = pppol2tp_create,
Wei Yongjune1558a92013-07-02 09:02:07 +08001782 .ioctl = pppol2tp_ioctl,
1783 .owner = THIS_MODULE,
James Chapmanfd558d12010-04-02 06:18:33 +00001784};
1785
James Chapman309795f2010-04-02 06:19:10 +00001786#ifdef CONFIG_L2TP_V3
1787
1788static const struct l2tp_nl_cmd_ops pppol2tp_nl_cmd_ops = {
1789 .session_create = pppol2tp_session_create,
Tom Parkincf2f5c82013-03-19 06:11:21 +00001790 .session_delete = l2tp_session_delete,
James Chapman309795f2010-04-02 06:19:10 +00001791};
1792
1793#endif /* CONFIG_L2TP_V3 */
1794
James Chapmanfd558d12010-04-02 06:18:33 +00001795static int __init pppol2tp_init(void)
1796{
1797 int err;
1798
1799 err = register_pernet_device(&pppol2tp_net_ops);
1800 if (err)
1801 goto out;
1802
1803 err = proto_register(&pppol2tp_sk_proto, 0);
1804 if (err)
1805 goto out_unregister_pppol2tp_pernet;
1806
1807 err = register_pppox_proto(PX_PROTO_OL2TP, &pppol2tp_proto);
1808 if (err)
1809 goto out_unregister_pppol2tp_proto;
1810
James Chapman309795f2010-04-02 06:19:10 +00001811#ifdef CONFIG_L2TP_V3
1812 err = l2tp_nl_register_ops(L2TP_PWTYPE_PPP, &pppol2tp_nl_cmd_ops);
1813 if (err)
1814 goto out_unregister_pppox;
1815#endif
1816
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001817 pr_info("PPPoL2TP kernel driver, %s\n", PPPOL2TP_DRV_VERSION);
James Chapmanfd558d12010-04-02 06:18:33 +00001818
1819out:
1820 return err;
James Chapman309795f2010-04-02 06:19:10 +00001821
1822#ifdef CONFIG_L2TP_V3
1823out_unregister_pppox:
1824 unregister_pppox_proto(PX_PROTO_OL2TP);
1825#endif
James Chapmanfd558d12010-04-02 06:18:33 +00001826out_unregister_pppol2tp_proto:
1827 proto_unregister(&pppol2tp_sk_proto);
1828out_unregister_pppol2tp_pernet:
1829 unregister_pernet_device(&pppol2tp_net_ops);
1830 goto out;
1831}
1832
1833static void __exit pppol2tp_exit(void)
1834{
James Chapman309795f2010-04-02 06:19:10 +00001835#ifdef CONFIG_L2TP_V3
1836 l2tp_nl_unregister_ops(L2TP_PWTYPE_PPP);
1837#endif
James Chapmanfd558d12010-04-02 06:18:33 +00001838 unregister_pppox_proto(PX_PROTO_OL2TP);
1839 proto_unregister(&pppol2tp_sk_proto);
1840 unregister_pernet_device(&pppol2tp_net_ops);
1841}
1842
1843module_init(pppol2tp_init);
1844module_exit(pppol2tp_exit);
1845
1846MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
1847MODULE_DESCRIPTION("PPP over L2TP over UDP");
1848MODULE_LICENSE("GPL");
1849MODULE_VERSION(PPPOL2TP_DRV_VERSION);
Guillaume Nault681b4d82015-12-02 16:27:39 +01001850MODULE_ALIAS_NET_PF_PROTO(PF_PPPOX, PX_PROTO_OL2TP);
Guillaume Nault425cc772017-04-03 13:23:15 +02001851MODULE_ALIAS_L2TP_PWTYPE(7);