blob: ad07b7cb655815494a6f86f085d406b3e83a7089 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/*****************************************************************************
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
60#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
61
62#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>
87#include <linux/ppp-ioctl.h>
88#include <linux/file.h>
89#include <linux/hash.h>
90#include <linux/sort.h>
91#include <linux/proc_fs.h>
92#include <linux/l2tp.h>
93#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>
100#include <net/inet_common.h>
101
102#include <asm/byteorder.h>
103#include <linux/atomic.h>
104
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
112/* 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 mutex sk_lock; /* Protects .sk */
126 struct sock __rcu *sk; /* Pointer to the session
127 * PPPoX socket */
128 struct sock *__sk; /* Copy of .sk, for cleanup */
129 struct rcu_head rcu; /* For asynchronous release */
130 struct sock *tunnel_sock; /* Pointer to the tunnel UDP
131 * socket */
132 int flags; /* accessed by PPPIOCGFLAGS.
133 * Unused. */
134};
135
136static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb);
137
138static const struct ppp_channel_ops pppol2tp_chan_ops = {
139 .start_xmit = pppol2tp_xmit,
140};
141
142static const struct proto_ops pppol2tp_ops;
143
144/* Retrieves the pppol2tp socket associated to a session.
145 * A reference is held on the returned socket, so this function must be paired
146 * with sock_put().
147 */
148static struct sock *pppol2tp_session_get_sock(struct l2tp_session *session)
149{
150 struct pppol2tp_session *ps = l2tp_session_priv(session);
151 struct sock *sk;
152
153 rcu_read_lock();
154 sk = rcu_dereference(ps->sk);
155 if (sk)
156 sock_hold(sk);
157 rcu_read_unlock();
158
159 return sk;
160}
161
162/* Helpers to obtain tunnel/session contexts from sockets.
163 */
164static inline struct l2tp_session *pppol2tp_sock_to_session(struct sock *sk)
165{
166 struct l2tp_session *session;
167
168 if (sk == NULL)
169 return NULL;
170
171 sock_hold(sk);
172 session = (struct l2tp_session *)(sk->sk_user_data);
173 if (session == NULL) {
174 sock_put(sk);
175 goto out;
176 }
177
178 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
179
180out:
181 return session;
182}
183
184/*****************************************************************************
185 * Receive data handling
186 *****************************************************************************/
187
188static int pppol2tp_recv_payload_hook(struct sk_buff *skb)
189{
190 /* Skip PPP header, if present. In testing, Microsoft L2TP clients
191 * don't send the PPP header (PPP header compression enabled), but
192 * other clients can include the header. So we cope with both cases
193 * here. The PPP header is always FF03 when using L2TP.
194 *
195 * Note that skb->data[] isn't dereferenced from a u16 ptr here since
196 * the field may be unaligned.
197 */
198 if (!pskb_may_pull(skb, 2))
199 return 1;
200
201 if ((skb->data[0] == PPP_ALLSTATIONS) && (skb->data[1] == PPP_UI))
202 skb_pull(skb, 2);
203
204 return 0;
205}
206
207/* Receive message. This is the recvmsg for the PPPoL2TP socket.
208 */
209static int pppol2tp_recvmsg(struct socket *sock, struct msghdr *msg,
210 size_t len, int flags)
211{
212 int err;
213 struct sk_buff *skb;
214 struct sock *sk = sock->sk;
215
216 err = -EIO;
217 if (sk->sk_state & PPPOX_BOUND)
218 goto end;
219
220 err = 0;
221 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
222 flags & MSG_DONTWAIT, &err);
223 if (!skb)
224 goto end;
225
226 if (len > skb->len)
227 len = skb->len;
228 else if (len < skb->len)
229 msg->msg_flags |= MSG_TRUNC;
230
231 err = skb_copy_datagram_msg(skb, 0, msg, len);
232 if (likely(err == 0))
233 err = len;
234
235 kfree_skb(skb);
236end:
237 return err;
238}
239
240static void pppol2tp_recv(struct l2tp_session *session, struct sk_buff *skb, int data_len)
241{
242 struct pppol2tp_session *ps = l2tp_session_priv(session);
243 struct sock *sk = NULL;
244
245 /* If the socket is bound, send it in to PPP's input queue. Otherwise
246 * queue it on the session socket.
247 */
248 rcu_read_lock();
249 sk = rcu_dereference(ps->sk);
250 if (sk == NULL)
251 goto no_sock;
252
253 if (sk->sk_state & PPPOX_BOUND) {
254 struct pppox_sock *po;
255
256 l2tp_dbg(session, L2TP_MSG_DATA,
257 "%s: recv %d byte data frame, passing to ppp\n",
258 session->name, data_len);
259
260 po = pppox_sk(sk);
261 ppp_input(&po->chan, skb);
262 } else {
263 l2tp_dbg(session, L2TP_MSG_DATA,
264 "%s: recv %d byte data frame, passing to L2TP socket\n",
265 session->name, data_len);
266
267 if (sock_queue_rcv_skb(sk, skb) < 0) {
268 atomic_long_inc(&session->stats.rx_errors);
269 kfree_skb(skb);
270 }
271 }
272 rcu_read_unlock();
273
274 return;
275
276no_sock:
277 rcu_read_unlock();
278 l2tp_info(session, L2TP_MSG_DATA, "%s: no socket\n", session->name);
279 kfree_skb(skb);
280}
281
282/************************************************************************
283 * Transmit handling
284 ***********************************************************************/
285
286/* This is the sendmsg for the PPPoL2TP pppol2tp_session socket. We come here
287 * when a user application does a sendmsg() on the session socket. L2TP and
288 * PPP headers must be inserted into the user's data.
289 */
290static int pppol2tp_sendmsg(struct socket *sock, struct msghdr *m,
291 size_t total_len)
292{
293 struct sock *sk = sock->sk;
294 struct sk_buff *skb;
295 int error;
296 struct l2tp_session *session;
297 struct l2tp_tunnel *tunnel;
298 struct pppol2tp_session *ps;
299 int uhlen;
300
301 error = -ENOTCONN;
302 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
303 goto error;
304
305 /* Get session and tunnel contexts */
306 error = -EBADF;
307 session = pppol2tp_sock_to_session(sk);
308 if (session == NULL)
309 goto error;
310
311 ps = l2tp_session_priv(session);
312 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
313 if (tunnel == NULL)
314 goto error_put_sess;
315
316 uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0;
317
318 /* Allocate a socket buffer */
319 error = -ENOMEM;
320 skb = sock_wmalloc(sk, NET_SKB_PAD + sizeof(struct iphdr) +
321 uhlen + session->hdr_len +
322 2 + total_len, /* 2 bytes for PPP_ALLSTATIONS & PPP_UI */
323 0, GFP_KERNEL);
324 if (!skb)
325 goto error_put_sess_tun;
326
327 /* Reserve space for headers. */
328 skb_reserve(skb, NET_SKB_PAD);
329 skb_reset_network_header(skb);
330 skb_reserve(skb, sizeof(struct iphdr));
331 skb_reset_transport_header(skb);
332 skb_reserve(skb, uhlen);
333
334 /* Add PPP header */
335 skb->data[0] = PPP_ALLSTATIONS;
336 skb->data[1] = PPP_UI;
337 skb_put(skb, 2);
338
339 /* Copy user data into skb */
340 error = memcpy_from_msg(skb_put(skb, total_len), m, total_len);
341 if (error < 0) {
342 kfree_skb(skb);
343 goto error_put_sess_tun;
344 }
345
346 local_bh_disable();
347 l2tp_xmit_skb(session, skb, session->hdr_len);
348 local_bh_enable();
349
350 sock_put(ps->tunnel_sock);
351 sock_put(sk);
352
353 return total_len;
354
355error_put_sess_tun:
356 sock_put(ps->tunnel_sock);
357error_put_sess:
358 sock_put(sk);
359error:
360 return error;
361}
362
363/* Transmit function called by generic PPP driver. Sends PPP frame
364 * over PPPoL2TP socket.
365 *
366 * This is almost the same as pppol2tp_sendmsg(), but rather than
367 * being called with a msghdr from userspace, it is called with a skb
368 * from the kernel.
369 *
370 * The supplied skb from ppp doesn't have enough headroom for the
371 * insertion of L2TP, UDP and IP headers so we need to allocate more
372 * headroom in the skb. This will create a cloned skb. But we must be
373 * careful in the error case because the caller will expect to free
374 * the skb it supplied, not our cloned skb. So we take care to always
375 * leave the original skb unfreed if we return an error.
376 */
377static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb)
378{
379 struct sock *sk = (struct sock *) chan->private;
380 struct sock *sk_tun;
381 struct l2tp_session *session;
382 struct l2tp_tunnel *tunnel;
383 struct pppol2tp_session *ps;
384 int uhlen, headroom;
385
386 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
387 goto abort;
388
389 /* Get session and tunnel contexts from the socket */
390 session = pppol2tp_sock_to_session(sk);
391 if (session == NULL)
392 goto abort;
393
394 ps = l2tp_session_priv(session);
395 sk_tun = ps->tunnel_sock;
396 if (sk_tun == NULL)
397 goto abort_put_sess;
398 tunnel = l2tp_sock_to_tunnel(sk_tun);
399 if (tunnel == NULL)
400 goto abort_put_sess;
401
402 uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0;
403 headroom = NET_SKB_PAD +
404 sizeof(struct iphdr) + /* IP header */
405 uhlen + /* UDP header (if L2TP_ENCAPTYPE_UDP) */
406 session->hdr_len + /* L2TP header */
407 2; /* 2 bytes for PPP_ALLSTATIONS & PPP_UI */
408 if (skb_cow_head(skb, headroom))
409 goto abort_put_sess_tun;
410
411 /* Setup PPP header */
412 __skb_push(skb, 2);
413 skb->data[0] = PPP_ALLSTATIONS;
414 skb->data[1] = PPP_UI;
415
416 local_bh_disable();
417 l2tp_xmit_skb(session, skb, session->hdr_len);
418 local_bh_enable();
419
420 sock_put(sk_tun);
421 sock_put(sk);
422 return 1;
423
424abort_put_sess_tun:
425 sock_put(sk_tun);
426abort_put_sess:
427 sock_put(sk);
428abort:
429 /* Free the original skb */
430 kfree_skb(skb);
431 return 1;
432}
433
434/*****************************************************************************
435 * Session (and tunnel control) socket create/destroy.
436 *****************************************************************************/
437
438/* Called by l2tp_core when a session socket is being closed.
439 */
440static void pppol2tp_session_close(struct l2tp_session *session)
441{
442 struct sock *sk;
443
444 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
445
446 sk = pppol2tp_session_get_sock(session);
447 if (sk) {
448 if (sk->sk_socket)
449 inet_shutdown(sk->sk_socket, SEND_SHUTDOWN);
450 sock_put(sk);
451 }
452}
453
454/* Really kill the session socket. (Called from sock_put() if
455 * refcnt == 0.)
456 */
457static void pppol2tp_session_destruct(struct sock *sk)
458{
459 struct l2tp_session *session = sk->sk_user_data;
460
461 skb_queue_purge(&sk->sk_receive_queue);
462 skb_queue_purge(&sk->sk_write_queue);
463
464 if (session) {
465 sk->sk_user_data = NULL;
466 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
467 l2tp_session_dec_refcount(session);
468 }
469}
470
471static void pppol2tp_put_sk(struct rcu_head *head)
472{
473 struct pppol2tp_session *ps;
474
475 ps = container_of(head, typeof(*ps), rcu);
476 sock_put(ps->__sk);
477}
478
479/* Called when the PPPoX socket (session) is closed.
480 */
481static int pppol2tp_release(struct socket *sock)
482{
483 struct sock *sk = sock->sk;
484 struct l2tp_session *session;
485 int error;
486
487 if (!sk)
488 return 0;
489
490 error = -EBADF;
491 lock_sock(sk);
492 if (sock_flag(sk, SOCK_DEAD) != 0)
493 goto error;
494
495 pppox_unbind_sock(sk);
496
497 /* Signal the death of the socket. */
498 sk->sk_state = PPPOX_DEAD;
499 sock_orphan(sk);
500 sock->sk = NULL;
501
502 session = pppol2tp_sock_to_session(sk);
503
504 if (session != NULL) {
505 struct pppol2tp_session *ps;
506
507 l2tp_session_delete(session);
508
509 ps = l2tp_session_priv(session);
510 mutex_lock(&ps->sk_lock);
511 ps->__sk = rcu_dereference_protected(ps->sk,
512 lockdep_is_held(&ps->sk_lock));
513 RCU_INIT_POINTER(ps->sk, NULL);
514 mutex_unlock(&ps->sk_lock);
515 call_rcu(&ps->rcu, pppol2tp_put_sk);
516
517 /* Rely on the sock_put() call at the end of the function for
518 * dropping the reference held by pppol2tp_sock_to_session().
519 * The last reference will be dropped by pppol2tp_put_sk().
520 */
521 }
522 release_sock(sk);
523
524 /* This will delete the session context via
525 * pppol2tp_session_destruct() if the socket's refcnt drops to
526 * zero.
527 */
528 sock_put(sk);
529
530 return 0;
531
532error:
533 release_sock(sk);
534 return error;
535}
536
537static struct proto pppol2tp_sk_proto = {
538 .name = "PPPOL2TP",
539 .owner = THIS_MODULE,
540 .obj_size = sizeof(struct pppox_sock),
541};
542
543static int pppol2tp_backlog_recv(struct sock *sk, struct sk_buff *skb)
544{
545 int rc;
546
547 rc = l2tp_udp_encap_recv(sk, skb);
548 if (rc)
549 kfree_skb(skb);
550
551 return NET_RX_SUCCESS;
552}
553
554/* socket() handler. Initialize a new struct sock.
555 */
556static int pppol2tp_create(struct net *net, struct socket *sock, int kern)
557{
558 int error = -ENOMEM;
559 struct sock *sk;
560
561 sk = sk_alloc(net, PF_PPPOX, GFP_KERNEL, &pppol2tp_sk_proto, kern);
562 if (!sk)
563 goto out;
564
565 sock_init_data(sock, sk);
566
567 sock->state = SS_UNCONNECTED;
568 sock->ops = &pppol2tp_ops;
569
570 sk->sk_backlog_rcv = pppol2tp_backlog_recv;
571 sk->sk_protocol = PX_PROTO_OL2TP;
572 sk->sk_family = PF_PPPOX;
573 sk->sk_state = PPPOX_NONE;
574 sk->sk_type = SOCK_STREAM;
575 sk->sk_destruct = pppol2tp_session_destruct;
576
577 error = 0;
578
579out:
580 return error;
581}
582
583#if IS_ENABLED(CONFIG_L2TP_DEBUGFS)
584static void pppol2tp_show(struct seq_file *m, void *arg)
585{
586 struct l2tp_session *session = arg;
587 struct sock *sk;
588
589 sk = pppol2tp_session_get_sock(session);
590 if (sk) {
591 struct pppox_sock *po = pppox_sk(sk);
592
593 seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan));
594 sock_put(sk);
595 }
596}
597#endif
598
599static void pppol2tp_session_init(struct l2tp_session *session)
600{
601 struct pppol2tp_session *ps;
602 struct dst_entry *dst;
603
604 session->recv_skb = pppol2tp_recv;
605 session->session_close = pppol2tp_session_close;
606#if IS_ENABLED(CONFIG_L2TP_DEBUGFS)
607 session->show = pppol2tp_show;
608#endif
609
610 ps = l2tp_session_priv(session);
611 mutex_init(&ps->sk_lock);
612 ps->tunnel_sock = session->tunnel->sock;
613 ps->owner = current->pid;
614
615 /* If PMTU discovery was enabled, use the MTU that was discovered */
616 dst = sk_dst_get(session->tunnel->sock);
617 if (dst) {
618 u32 pmtu = dst_mtu(dst);
619
620 if (pmtu) {
621 session->mtu = pmtu - PPPOL2TP_HEADER_OVERHEAD;
622 session->mru = pmtu - PPPOL2TP_HEADER_OVERHEAD;
623 }
624 dst_release(dst);
625 }
626}
627
628/* connect() handler. Attach a PPPoX socket to a tunnel UDP socket
629 */
630static int pppol2tp_connect(struct socket *sock, struct sockaddr *uservaddr,
631 int sockaddr_len, int flags)
632{
633 struct sock *sk = sock->sk;
634 struct sockaddr_pppol2tp *sp = (struct sockaddr_pppol2tp *) uservaddr;
635 struct pppox_sock *po = pppox_sk(sk);
636 struct l2tp_session *session = NULL;
637 struct l2tp_tunnel *tunnel;
638 struct pppol2tp_session *ps;
639 struct l2tp_session_cfg cfg = { 0, };
640 int error = 0;
641 u32 tunnel_id, peer_tunnel_id;
642 u32 session_id, peer_session_id;
643 bool drop_refcnt = false;
644 bool drop_tunnel = false;
645 int ver = 2;
646 int fd;
647
648 lock_sock(sk);
649
650 error = -EINVAL;
651
652 if (sockaddr_len != sizeof(struct sockaddr_pppol2tp) &&
653 sockaddr_len != sizeof(struct sockaddr_pppol2tpv3) &&
654 sockaddr_len != sizeof(struct sockaddr_pppol2tpin6) &&
655 sockaddr_len != sizeof(struct sockaddr_pppol2tpv3in6))
656 goto end;
657
658 if (sp->sa_protocol != PX_PROTO_OL2TP)
659 goto end;
660
661 /* Check for already bound sockets */
662 error = -EBUSY;
663 if (sk->sk_state & PPPOX_CONNECTED)
664 goto end;
665
666 /* We don't supporting rebinding anyway */
667 error = -EALREADY;
668 if (sk->sk_user_data)
669 goto end; /* socket is already attached */
670
671 /* Get params from socket address. Handle L2TPv2 and L2TPv3.
672 * This is nasty because there are different sockaddr_pppol2tp
673 * structs for L2TPv2, L2TPv3, over IPv4 and IPv6. We use
674 * the sockaddr size to determine which structure the caller
675 * is using.
676 */
677 peer_tunnel_id = 0;
678 if (sockaddr_len == sizeof(struct sockaddr_pppol2tp)) {
679 fd = sp->pppol2tp.fd;
680 tunnel_id = sp->pppol2tp.s_tunnel;
681 peer_tunnel_id = sp->pppol2tp.d_tunnel;
682 session_id = sp->pppol2tp.s_session;
683 peer_session_id = sp->pppol2tp.d_session;
684 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3)) {
685 struct sockaddr_pppol2tpv3 *sp3 =
686 (struct sockaddr_pppol2tpv3 *) sp;
687 ver = 3;
688 fd = sp3->pppol2tp.fd;
689 tunnel_id = sp3->pppol2tp.s_tunnel;
690 peer_tunnel_id = sp3->pppol2tp.d_tunnel;
691 session_id = sp3->pppol2tp.s_session;
692 peer_session_id = sp3->pppol2tp.d_session;
693 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpin6)) {
694 struct sockaddr_pppol2tpin6 *sp6 =
695 (struct sockaddr_pppol2tpin6 *) sp;
696 fd = sp6->pppol2tp.fd;
697 tunnel_id = sp6->pppol2tp.s_tunnel;
698 peer_tunnel_id = sp6->pppol2tp.d_tunnel;
699 session_id = sp6->pppol2tp.s_session;
700 peer_session_id = sp6->pppol2tp.d_session;
701 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3in6)) {
702 struct sockaddr_pppol2tpv3in6 *sp6 =
703 (struct sockaddr_pppol2tpv3in6 *) sp;
704 ver = 3;
705 fd = sp6->pppol2tp.fd;
706 tunnel_id = sp6->pppol2tp.s_tunnel;
707 peer_tunnel_id = sp6->pppol2tp.d_tunnel;
708 session_id = sp6->pppol2tp.s_session;
709 peer_session_id = sp6->pppol2tp.d_session;
710 } else {
711 error = -EINVAL;
712 goto end; /* bad socket address */
713 }
714
715 /* Don't bind if tunnel_id is 0 */
716 error = -EINVAL;
717 if (tunnel_id == 0)
718 goto end;
719
720 tunnel = l2tp_tunnel_get(sock_net(sk), tunnel_id);
721 if (tunnel)
722 drop_tunnel = true;
723
724 /* Special case: create tunnel context if session_id and
725 * peer_session_id is 0. Otherwise look up tunnel using supplied
726 * tunnel id.
727 */
728 if ((session_id == 0) && (peer_session_id == 0)) {
729 if (tunnel == NULL) {
730 struct l2tp_tunnel_cfg tcfg = {
731 .encap = L2TP_ENCAPTYPE_UDP,
732 .debug = 0,
733 };
734 error = l2tp_tunnel_create(sock_net(sk), fd, ver, tunnel_id, peer_tunnel_id, &tcfg, &tunnel);
735 if (error < 0)
736 goto end;
737 }
738 } else {
739 /* Error if we can't find the tunnel */
740 error = -ENOENT;
741 if (tunnel == NULL)
742 goto end;
743
744 /* Error if socket is not prepped */
745 if (tunnel->sock == NULL)
746 goto end;
747 }
748
749 if (tunnel->recv_payload_hook == NULL)
750 tunnel->recv_payload_hook = pppol2tp_recv_payload_hook;
751
752 if (tunnel->peer_tunnel_id == 0)
753 tunnel->peer_tunnel_id = peer_tunnel_id;
754
755 session = l2tp_session_get(sock_net(sk), tunnel, session_id, false);
756 if (session) {
757 drop_refcnt = true;
758 ps = l2tp_session_priv(session);
759
760 /* Using a pre-existing session is fine as long as it hasn't
761 * been connected yet.
762 */
763 mutex_lock(&ps->sk_lock);
764 if (rcu_dereference_protected(ps->sk,
765 lockdep_is_held(&ps->sk_lock))) {
766 mutex_unlock(&ps->sk_lock);
767 error = -EEXIST;
768 goto end;
769 }
770
771 /* consistency checks */
772 if (ps->tunnel_sock != tunnel->sock) {
773 mutex_unlock(&ps->sk_lock);
774 error = -EEXIST;
775 goto end;
776 }
777 } else {
778 /* Default MTU must allow space for UDP/L2TP/PPP headers */
779 cfg.mtu = 1500 - PPPOL2TP_HEADER_OVERHEAD;
780 cfg.mru = cfg.mtu;
781
782 session = l2tp_session_create(sizeof(struct pppol2tp_session),
783 tunnel, session_id,
784 peer_session_id, &cfg);
785 if (IS_ERR(session)) {
786 error = PTR_ERR(session);
787 goto end;
788 }
789
790 pppol2tp_session_init(session);
791 ps = l2tp_session_priv(session);
792 l2tp_session_inc_refcount(session);
793
794 mutex_lock(&ps->sk_lock);
795 error = l2tp_session_register(session, tunnel);
796 if (error < 0) {
797 mutex_unlock(&ps->sk_lock);
798 kfree(session);
799 goto end;
800 }
801 drop_refcnt = true;
802 }
803
804 /* Special case: if source & dest session_id == 0x0000, this
805 * socket is being created to manage the tunnel. Just set up
806 * the internal context for use by ioctl() and sockopt()
807 * handlers.
808 */
809 if ((session->session_id == 0) &&
810 (session->peer_session_id == 0)) {
811 error = 0;
812 goto out_no_ppp;
813 }
814
815 /* The only header we need to worry about is the L2TP
816 * header. This size is different depending on whether
817 * sequence numbers are enabled for the data channel.
818 */
819 po->chan.hdrlen = PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
820
821 po->chan.private = sk;
822 po->chan.ops = &pppol2tp_chan_ops;
823 po->chan.mtu = session->mtu;
824
825 error = ppp_register_net_channel(sock_net(sk), &po->chan);
826 if (error) {
827 mutex_unlock(&ps->sk_lock);
828 goto end;
829 }
830
831out_no_ppp:
832 /* This is how we get the session context from the socket. */
833 sk->sk_user_data = session;
834 rcu_assign_pointer(ps->sk, sk);
835 mutex_unlock(&ps->sk_lock);
836
837 /* Keep the reference we've grabbed on the session: sk doesn't expect
838 * the session to disappear. pppol2tp_session_destruct() is responsible
839 * for dropping it.
840 */
841 drop_refcnt = false;
842
843 sk->sk_state = PPPOX_CONNECTED;
844 l2tp_info(session, L2TP_MSG_CONTROL, "%s: created\n",
845 session->name);
846
847end:
848 if (drop_refcnt)
849 l2tp_session_dec_refcount(session);
850 if (drop_tunnel)
851 l2tp_tunnel_dec_refcount(tunnel);
852 release_sock(sk);
853
854 return error;
855}
856
857#ifdef CONFIG_L2TP_V3
858
859/* Called when creating sessions via the netlink interface. */
860static int pppol2tp_session_create(struct net *net, struct l2tp_tunnel *tunnel,
861 u32 session_id, u32 peer_session_id,
862 struct l2tp_session_cfg *cfg)
863{
864 int error;
865 struct l2tp_session *session;
866
867 /* Error if tunnel socket is not prepped */
868 if (!tunnel->sock) {
869 error = -ENOENT;
870 goto err;
871 }
872
873 /* Default MTU values. */
874 if (cfg->mtu == 0)
875 cfg->mtu = 1500 - PPPOL2TP_HEADER_OVERHEAD;
876 if (cfg->mru == 0)
877 cfg->mru = cfg->mtu;
878
879 /* Allocate and initialize a new session context. */
880 session = l2tp_session_create(sizeof(struct pppol2tp_session),
881 tunnel, session_id,
882 peer_session_id, cfg);
883 if (IS_ERR(session)) {
884 error = PTR_ERR(session);
885 goto err;
886 }
887
888 pppol2tp_session_init(session);
889
890 error = l2tp_session_register(session, tunnel);
891 if (error < 0)
892 goto err_sess;
893
894 return 0;
895
896err_sess:
897 kfree(session);
898err:
899 return error;
900}
901
902#endif /* CONFIG_L2TP_V3 */
903
904/* getname() support.
905 */
906static int pppol2tp_getname(struct socket *sock, struct sockaddr *uaddr,
907 int *usockaddr_len, int peer)
908{
909 int len = 0;
910 int error = 0;
911 struct l2tp_session *session;
912 struct l2tp_tunnel *tunnel;
913 struct sock *sk = sock->sk;
914 struct inet_sock *inet;
915 struct pppol2tp_session *pls;
916
917 error = -ENOTCONN;
918 if (sk == NULL)
919 goto end;
920 if (!(sk->sk_state & PPPOX_CONNECTED))
921 goto end;
922
923 error = -EBADF;
924 session = pppol2tp_sock_to_session(sk);
925 if (session == NULL)
926 goto end;
927
928 pls = l2tp_session_priv(session);
929 tunnel = l2tp_sock_to_tunnel(pls->tunnel_sock);
930 if (tunnel == NULL)
931 goto end_put_sess;
932
933 inet = inet_sk(tunnel->sock);
934 if ((tunnel->version == 2) && (tunnel->sock->sk_family == AF_INET)) {
935 struct sockaddr_pppol2tp sp;
936 len = sizeof(sp);
937 memset(&sp, 0, len);
938 sp.sa_family = AF_PPPOX;
939 sp.sa_protocol = PX_PROTO_OL2TP;
940 sp.pppol2tp.fd = tunnel->fd;
941 sp.pppol2tp.pid = pls->owner;
942 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
943 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
944 sp.pppol2tp.s_session = session->session_id;
945 sp.pppol2tp.d_session = session->peer_session_id;
946 sp.pppol2tp.addr.sin_family = AF_INET;
947 sp.pppol2tp.addr.sin_port = inet->inet_dport;
948 sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr;
949 memcpy(uaddr, &sp, len);
950#if IS_ENABLED(CONFIG_IPV6)
951 } else if ((tunnel->version == 2) &&
952 (tunnel->sock->sk_family == AF_INET6)) {
953 struct sockaddr_pppol2tpin6 sp;
954
955 len = sizeof(sp);
956 memset(&sp, 0, len);
957 sp.sa_family = AF_PPPOX;
958 sp.sa_protocol = PX_PROTO_OL2TP;
959 sp.pppol2tp.fd = tunnel->fd;
960 sp.pppol2tp.pid = pls->owner;
961 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
962 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
963 sp.pppol2tp.s_session = session->session_id;
964 sp.pppol2tp.d_session = session->peer_session_id;
965 sp.pppol2tp.addr.sin6_family = AF_INET6;
966 sp.pppol2tp.addr.sin6_port = inet->inet_dport;
967 memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr,
968 sizeof(tunnel->sock->sk_v6_daddr));
969 memcpy(uaddr, &sp, len);
970 } else if ((tunnel->version == 3) &&
971 (tunnel->sock->sk_family == AF_INET6)) {
972 struct sockaddr_pppol2tpv3in6 sp;
973
974 len = sizeof(sp);
975 memset(&sp, 0, len);
976 sp.sa_family = AF_PPPOX;
977 sp.sa_protocol = PX_PROTO_OL2TP;
978 sp.pppol2tp.fd = tunnel->fd;
979 sp.pppol2tp.pid = pls->owner;
980 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
981 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
982 sp.pppol2tp.s_session = session->session_id;
983 sp.pppol2tp.d_session = session->peer_session_id;
984 sp.pppol2tp.addr.sin6_family = AF_INET6;
985 sp.pppol2tp.addr.sin6_port = inet->inet_dport;
986 memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr,
987 sizeof(tunnel->sock->sk_v6_daddr));
988 memcpy(uaddr, &sp, len);
989#endif
990 } else if (tunnel->version == 3) {
991 struct sockaddr_pppol2tpv3 sp;
992 len = sizeof(sp);
993 memset(&sp, 0, len);
994 sp.sa_family = AF_PPPOX;
995 sp.sa_protocol = PX_PROTO_OL2TP;
996 sp.pppol2tp.fd = tunnel->fd;
997 sp.pppol2tp.pid = pls->owner;
998 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
999 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
1000 sp.pppol2tp.s_session = session->session_id;
1001 sp.pppol2tp.d_session = session->peer_session_id;
1002 sp.pppol2tp.addr.sin_family = AF_INET;
1003 sp.pppol2tp.addr.sin_port = inet->inet_dport;
1004 sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr;
1005 memcpy(uaddr, &sp, len);
1006 }
1007
1008 *usockaddr_len = len;
1009 error = 0;
1010
1011 sock_put(pls->tunnel_sock);
1012end_put_sess:
1013 sock_put(sk);
1014end:
1015 return error;
1016}
1017
1018/****************************************************************************
1019 * ioctl() handlers.
1020 *
1021 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
1022 * sockets. However, in order to control kernel tunnel features, we allow
1023 * userspace to create a special "tunnel" PPPoX socket which is used for
1024 * control only. Tunnel PPPoX sockets have session_id == 0 and simply allow
1025 * the user application to issue L2TP setsockopt(), getsockopt() and ioctl()
1026 * calls.
1027 ****************************************************************************/
1028
1029static void pppol2tp_copy_stats(struct pppol2tp_ioc_stats *dest,
1030 struct l2tp_stats *stats)
1031{
1032 dest->tx_packets = atomic_long_read(&stats->tx_packets);
1033 dest->tx_bytes = atomic_long_read(&stats->tx_bytes);
1034 dest->tx_errors = atomic_long_read(&stats->tx_errors);
1035 dest->rx_packets = atomic_long_read(&stats->rx_packets);
1036 dest->rx_bytes = atomic_long_read(&stats->rx_bytes);
1037 dest->rx_seq_discards = atomic_long_read(&stats->rx_seq_discards);
1038 dest->rx_oos_packets = atomic_long_read(&stats->rx_oos_packets);
1039 dest->rx_errors = atomic_long_read(&stats->rx_errors);
1040}
1041
1042/* Session ioctl helper.
1043 */
1044static int pppol2tp_session_ioctl(struct l2tp_session *session,
1045 unsigned int cmd, unsigned long arg)
1046{
1047 struct ifreq ifr;
1048 int err = 0;
1049 struct sock *sk;
1050 int val = (int) arg;
1051 struct pppol2tp_session *ps = l2tp_session_priv(session);
1052 struct l2tp_tunnel *tunnel = session->tunnel;
1053 struct pppol2tp_ioc_stats stats;
1054
1055 l2tp_dbg(session, L2TP_MSG_CONTROL,
1056 "%s: pppol2tp_session_ioctl(cmd=%#x, arg=%#lx)\n",
1057 session->name, cmd, arg);
1058
1059 sk = pppol2tp_session_get_sock(session);
1060 if (!sk)
1061 return -EBADR;
1062
1063 switch (cmd) {
1064 case SIOCGIFMTU:
1065 err = -ENXIO;
1066 if (!(sk->sk_state & PPPOX_CONNECTED))
1067 break;
1068
1069 err = -EFAULT;
1070 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1071 break;
1072 ifr.ifr_mtu = session->mtu;
1073 if (copy_to_user((void __user *) arg, &ifr, sizeof(struct ifreq)))
1074 break;
1075
1076 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get mtu=%d\n",
1077 session->name, session->mtu);
1078 err = 0;
1079 break;
1080
1081 case SIOCSIFMTU:
1082 err = -ENXIO;
1083 if (!(sk->sk_state & PPPOX_CONNECTED))
1084 break;
1085
1086 err = -EFAULT;
1087 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1088 break;
1089
1090 session->mtu = ifr.ifr_mtu;
1091
1092 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set mtu=%d\n",
1093 session->name, session->mtu);
1094 err = 0;
1095 break;
1096
1097 case PPPIOCGMRU:
1098 err = -ENXIO;
1099 if (!(sk->sk_state & PPPOX_CONNECTED))
1100 break;
1101
1102 err = -EFAULT;
1103 if (put_user(session->mru, (int __user *) arg))
1104 break;
1105
1106 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get mru=%d\n",
1107 session->name, session->mru);
1108 err = 0;
1109 break;
1110
1111 case PPPIOCSMRU:
1112 err = -ENXIO;
1113 if (!(sk->sk_state & PPPOX_CONNECTED))
1114 break;
1115
1116 err = -EFAULT;
1117 if (get_user(val, (int __user *) arg))
1118 break;
1119
1120 session->mru = val;
1121 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set mru=%d\n",
1122 session->name, session->mru);
1123 err = 0;
1124 break;
1125
1126 case PPPIOCGFLAGS:
1127 err = -EFAULT;
1128 if (put_user(ps->flags, (int __user *) arg))
1129 break;
1130
1131 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get flags=%d\n",
1132 session->name, ps->flags);
1133 err = 0;
1134 break;
1135
1136 case PPPIOCSFLAGS:
1137 err = -EFAULT;
1138 if (get_user(val, (int __user *) arg))
1139 break;
1140 ps->flags = val;
1141 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set flags=%d\n",
1142 session->name, ps->flags);
1143 err = 0;
1144 break;
1145
1146 case PPPIOCGL2TPSTATS:
1147 err = -ENXIO;
1148 if (!(sk->sk_state & PPPOX_CONNECTED))
1149 break;
1150
1151 memset(&stats, 0, sizeof(stats));
1152 stats.tunnel_id = tunnel->tunnel_id;
1153 stats.session_id = session->session_id;
1154 pppol2tp_copy_stats(&stats, &session->stats);
1155 if (copy_to_user((void __user *) arg, &stats,
1156 sizeof(stats)))
1157 break;
1158 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get L2TP stats\n",
1159 session->name);
1160 err = 0;
1161 break;
1162
1163 default:
1164 err = -ENOSYS;
1165 break;
1166 }
1167
1168 sock_put(sk);
1169
1170 return err;
1171}
1172
1173/* Tunnel ioctl helper.
1174 *
1175 * Note the special handling for PPPIOCGL2TPSTATS below. If the ioctl data
1176 * specifies a session_id, the session ioctl handler is called. This allows an
1177 * application to retrieve session stats via a tunnel socket.
1178 */
1179static int pppol2tp_tunnel_ioctl(struct l2tp_tunnel *tunnel,
1180 unsigned int cmd, unsigned long arg)
1181{
1182 int err = 0;
1183 struct sock *sk;
1184 struct pppol2tp_ioc_stats stats;
1185
1186 l2tp_dbg(tunnel, L2TP_MSG_CONTROL,
1187 "%s: pppol2tp_tunnel_ioctl(cmd=%#x, arg=%#lx)\n",
1188 tunnel->name, cmd, arg);
1189
1190 sk = tunnel->sock;
1191 sock_hold(sk);
1192
1193 switch (cmd) {
1194 case PPPIOCGL2TPSTATS:
1195 err = -ENXIO;
1196 if (!(sk->sk_state & PPPOX_CONNECTED))
1197 break;
1198
1199 if (copy_from_user(&stats, (void __user *) arg,
1200 sizeof(stats))) {
1201 err = -EFAULT;
1202 break;
1203 }
1204 if (stats.session_id != 0) {
1205 /* resend to session ioctl handler */
1206 struct l2tp_session *session =
1207 l2tp_session_get(sock_net(sk), tunnel,
1208 stats.session_id, true);
1209
1210 if (session) {
1211 err = pppol2tp_session_ioctl(session, cmd,
1212 arg);
1213 if (session->deref)
1214 session->deref(session);
1215 l2tp_session_dec_refcount(session);
1216 } else {
1217 err = -EBADR;
1218 }
1219 break;
1220 }
1221#ifdef CONFIG_XFRM
1222 stats.using_ipsec = (sk->sk_policy[0] || sk->sk_policy[1]) ? 1 : 0;
1223#endif
1224 pppol2tp_copy_stats(&stats, &tunnel->stats);
1225 if (copy_to_user((void __user *) arg, &stats, sizeof(stats))) {
1226 err = -EFAULT;
1227 break;
1228 }
1229 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: get L2TP stats\n",
1230 tunnel->name);
1231 err = 0;
1232 break;
1233
1234 default:
1235 err = -ENOSYS;
1236 break;
1237 }
1238
1239 sock_put(sk);
1240
1241 return err;
1242}
1243
1244/* Main ioctl() handler.
1245 * Dispatch to tunnel or session helpers depending on the socket.
1246 */
1247static int pppol2tp_ioctl(struct socket *sock, unsigned int cmd,
1248 unsigned long arg)
1249{
1250 struct sock *sk = sock->sk;
1251 struct l2tp_session *session;
1252 struct l2tp_tunnel *tunnel;
1253 struct pppol2tp_session *ps;
1254 int err;
1255
1256 if (!sk)
1257 return 0;
1258
1259 err = -EBADF;
1260 if (sock_flag(sk, SOCK_DEAD) != 0)
1261 goto end;
1262
1263 err = -ENOTCONN;
1264 if ((sk->sk_user_data == NULL) ||
1265 (!(sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND))))
1266 goto end;
1267
1268 /* Get session context from the socket */
1269 err = -EBADF;
1270 session = pppol2tp_sock_to_session(sk);
1271 if (session == NULL)
1272 goto end;
1273
1274 /* Special case: if session's session_id is zero, treat ioctl as a
1275 * tunnel ioctl
1276 */
1277 ps = l2tp_session_priv(session);
1278 if ((session->session_id == 0) &&
1279 (session->peer_session_id == 0)) {
1280 err = -EBADF;
1281 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1282 if (tunnel == NULL)
1283 goto end_put_sess;
1284
1285 err = pppol2tp_tunnel_ioctl(tunnel, cmd, arg);
1286 sock_put(ps->tunnel_sock);
1287 goto end_put_sess;
1288 }
1289
1290 err = pppol2tp_session_ioctl(session, cmd, arg);
1291
1292end_put_sess:
1293 sock_put(sk);
1294end:
1295 return err;
1296}
1297
1298/*****************************************************************************
1299 * setsockopt() / getsockopt() support.
1300 *
1301 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
1302 * sockets. In order to control kernel tunnel features, we allow userspace to
1303 * create a special "tunnel" PPPoX socket which is used for control only.
1304 * Tunnel PPPoX sockets have session_id == 0 and simply allow the user
1305 * application to issue L2TP setsockopt(), getsockopt() and ioctl() calls.
1306 *****************************************************************************/
1307
1308/* Tunnel setsockopt() helper.
1309 */
1310static int pppol2tp_tunnel_setsockopt(struct sock *sk,
1311 struct l2tp_tunnel *tunnel,
1312 int optname, int val)
1313{
1314 int err = 0;
1315
1316 switch (optname) {
1317 case PPPOL2TP_SO_DEBUG:
1318 tunnel->debug = val;
1319 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: set debug=%x\n",
1320 tunnel->name, tunnel->debug);
1321 break;
1322
1323 default:
1324 err = -ENOPROTOOPT;
1325 break;
1326 }
1327
1328 return err;
1329}
1330
1331/* Session setsockopt helper.
1332 */
1333static int pppol2tp_session_setsockopt(struct sock *sk,
1334 struct l2tp_session *session,
1335 int optname, int val)
1336{
1337 int err = 0;
1338
1339 switch (optname) {
1340 case PPPOL2TP_SO_RECVSEQ:
1341 if ((val != 0) && (val != 1)) {
1342 err = -EINVAL;
1343 break;
1344 }
1345 session->recv_seq = !!val;
1346 l2tp_info(session, L2TP_MSG_CONTROL,
1347 "%s: set recv_seq=%d\n",
1348 session->name, session->recv_seq);
1349 break;
1350
1351 case PPPOL2TP_SO_SENDSEQ:
1352 if ((val != 0) && (val != 1)) {
1353 err = -EINVAL;
1354 break;
1355 }
1356 session->send_seq = !!val;
1357 {
1358 struct pppox_sock *po = pppox_sk(sk);
1359
1360 po->chan.hdrlen = val ? PPPOL2TP_L2TP_HDR_SIZE_SEQ :
1361 PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
1362 }
1363 l2tp_session_set_header_len(session, session->tunnel->version);
1364 l2tp_info(session, L2TP_MSG_CONTROL,
1365 "%s: set send_seq=%d\n",
1366 session->name, session->send_seq);
1367 break;
1368
1369 case PPPOL2TP_SO_LNSMODE:
1370 if ((val != 0) && (val != 1)) {
1371 err = -EINVAL;
1372 break;
1373 }
1374 session->lns_mode = !!val;
1375 l2tp_info(session, L2TP_MSG_CONTROL,
1376 "%s: set lns_mode=%d\n",
1377 session->name, session->lns_mode);
1378 break;
1379
1380 case PPPOL2TP_SO_DEBUG:
1381 session->debug = val;
1382 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set debug=%x\n",
1383 session->name, session->debug);
1384 break;
1385
1386 case PPPOL2TP_SO_REORDERTO:
1387 session->reorder_timeout = msecs_to_jiffies(val);
1388 l2tp_info(session, L2TP_MSG_CONTROL,
1389 "%s: set reorder_timeout=%d\n",
1390 session->name, session->reorder_timeout);
1391 break;
1392
1393 default:
1394 err = -ENOPROTOOPT;
1395 break;
1396 }
1397
1398 return err;
1399}
1400
1401/* Main setsockopt() entry point.
1402 * Does API checks, then calls either the tunnel or session setsockopt
1403 * handler, according to whether the PPPoL2TP socket is a for a regular
1404 * session or the special tunnel type.
1405 */
1406static int pppol2tp_setsockopt(struct socket *sock, int level, int optname,
1407 char __user *optval, unsigned int optlen)
1408{
1409 struct sock *sk = sock->sk;
1410 struct l2tp_session *session;
1411 struct l2tp_tunnel *tunnel;
1412 struct pppol2tp_session *ps;
1413 int val;
1414 int err;
1415
1416 if (level != SOL_PPPOL2TP)
1417 return -EINVAL;
1418
1419 if (optlen < sizeof(int))
1420 return -EINVAL;
1421
1422 if (get_user(val, (int __user *)optval))
1423 return -EFAULT;
1424
1425 err = -ENOTCONN;
1426 if (sk->sk_user_data == NULL)
1427 goto end;
1428
1429 /* Get session context from the socket */
1430 err = -EBADF;
1431 session = pppol2tp_sock_to_session(sk);
1432 if (session == NULL)
1433 goto end;
1434
1435 /* Special case: if session_id == 0x0000, treat as operation on tunnel
1436 */
1437 ps = l2tp_session_priv(session);
1438 if ((session->session_id == 0) &&
1439 (session->peer_session_id == 0)) {
1440 err = -EBADF;
1441 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1442 if (tunnel == NULL)
1443 goto end_put_sess;
1444
1445 err = pppol2tp_tunnel_setsockopt(sk, tunnel, optname, val);
1446 sock_put(ps->tunnel_sock);
1447 } else
1448 err = pppol2tp_session_setsockopt(sk, session, optname, val);
1449
1450end_put_sess:
1451 sock_put(sk);
1452end:
1453 return err;
1454}
1455
1456/* Tunnel getsockopt helper. Called with sock locked.
1457 */
1458static int pppol2tp_tunnel_getsockopt(struct sock *sk,
1459 struct l2tp_tunnel *tunnel,
1460 int optname, int *val)
1461{
1462 int err = 0;
1463
1464 switch (optname) {
1465 case PPPOL2TP_SO_DEBUG:
1466 *val = tunnel->debug;
1467 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: get debug=%x\n",
1468 tunnel->name, tunnel->debug);
1469 break;
1470
1471 default:
1472 err = -ENOPROTOOPT;
1473 break;
1474 }
1475
1476 return err;
1477}
1478
1479/* Session getsockopt helper. Called with sock locked.
1480 */
1481static int pppol2tp_session_getsockopt(struct sock *sk,
1482 struct l2tp_session *session,
1483 int optname, int *val)
1484{
1485 int err = 0;
1486
1487 switch (optname) {
1488 case PPPOL2TP_SO_RECVSEQ:
1489 *val = session->recv_seq;
1490 l2tp_info(session, L2TP_MSG_CONTROL,
1491 "%s: get recv_seq=%d\n", session->name, *val);
1492 break;
1493
1494 case PPPOL2TP_SO_SENDSEQ:
1495 *val = session->send_seq;
1496 l2tp_info(session, L2TP_MSG_CONTROL,
1497 "%s: get send_seq=%d\n", session->name, *val);
1498 break;
1499
1500 case PPPOL2TP_SO_LNSMODE:
1501 *val = session->lns_mode;
1502 l2tp_info(session, L2TP_MSG_CONTROL,
1503 "%s: get lns_mode=%d\n", session->name, *val);
1504 break;
1505
1506 case PPPOL2TP_SO_DEBUG:
1507 *val = session->debug;
1508 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get debug=%d\n",
1509 session->name, *val);
1510 break;
1511
1512 case PPPOL2TP_SO_REORDERTO:
1513 *val = (int) jiffies_to_msecs(session->reorder_timeout);
1514 l2tp_info(session, L2TP_MSG_CONTROL,
1515 "%s: get reorder_timeout=%d\n", session->name, *val);
1516 break;
1517
1518 default:
1519 err = -ENOPROTOOPT;
1520 }
1521
1522 return err;
1523}
1524
1525/* Main getsockopt() entry point.
1526 * Does API checks, then calls either the tunnel or session getsockopt
1527 * handler, according to whether the PPPoX socket is a for a regular session
1528 * or the special tunnel type.
1529 */
1530static int pppol2tp_getsockopt(struct socket *sock, int level, int optname,
1531 char __user *optval, int __user *optlen)
1532{
1533 struct sock *sk = sock->sk;
1534 struct l2tp_session *session;
1535 struct l2tp_tunnel *tunnel;
1536 int val, len;
1537 int err;
1538 struct pppol2tp_session *ps;
1539
1540 if (level != SOL_PPPOL2TP)
1541 return -EINVAL;
1542
1543 if (get_user(len, optlen))
1544 return -EFAULT;
1545
1546 len = min_t(unsigned int, len, sizeof(int));
1547
1548 if (len < 0)
1549 return -EINVAL;
1550
1551 err = -ENOTCONN;
1552 if (sk->sk_user_data == NULL)
1553 goto end;
1554
1555 /* Get the session context */
1556 err = -EBADF;
1557 session = pppol2tp_sock_to_session(sk);
1558 if (session == NULL)
1559 goto end;
1560
1561 /* Special case: if session_id == 0x0000, treat as operation on tunnel */
1562 ps = l2tp_session_priv(session);
1563 if ((session->session_id == 0) &&
1564 (session->peer_session_id == 0)) {
1565 err = -EBADF;
1566 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1567 if (tunnel == NULL)
1568 goto end_put_sess;
1569
1570 err = pppol2tp_tunnel_getsockopt(sk, tunnel, optname, &val);
1571 sock_put(ps->tunnel_sock);
1572 if (err)
1573 goto end_put_sess;
1574 } else {
1575 err = pppol2tp_session_getsockopt(sk, session, optname, &val);
1576 if (err)
1577 goto end_put_sess;
1578 }
1579
1580 err = -EFAULT;
1581 if (put_user(len, optlen))
1582 goto end_put_sess;
1583
1584 if (copy_to_user((void __user *) optval, &val, len))
1585 goto end_put_sess;
1586
1587 err = 0;
1588
1589end_put_sess:
1590 sock_put(sk);
1591end:
1592 return err;
1593}
1594
1595/*****************************************************************************
1596 * /proc filesystem for debug
1597 * Since the original pppol2tp driver provided /proc/net/pppol2tp for
1598 * L2TPv2, we dump only L2TPv2 tunnels and sessions here.
1599 *****************************************************************************/
1600
1601static unsigned int pppol2tp_net_id;
1602
1603#ifdef CONFIG_PROC_FS
1604
1605struct pppol2tp_seq_data {
1606 struct seq_net_private p;
1607 int tunnel_idx; /* current tunnel */
1608 int session_idx; /* index of session within current tunnel */
1609 struct l2tp_tunnel *tunnel;
1610 struct l2tp_session *session; /* NULL means get next tunnel */
1611};
1612
1613static void pppol2tp_next_tunnel(struct net *net, struct pppol2tp_seq_data *pd)
1614{
1615 for (;;) {
1616 pd->tunnel = l2tp_tunnel_find_nth(net, pd->tunnel_idx);
1617 pd->tunnel_idx++;
1618
1619 if (pd->tunnel == NULL)
1620 break;
1621
1622 /* Ignore L2TPv3 tunnels */
1623 if (pd->tunnel->version < 3)
1624 break;
1625 }
1626}
1627
1628static void pppol2tp_next_session(struct net *net, struct pppol2tp_seq_data *pd)
1629{
1630 pd->session = l2tp_session_get_nth(pd->tunnel, pd->session_idx, true);
1631 pd->session_idx++;
1632
1633 if (pd->session == NULL) {
1634 pd->session_idx = 0;
1635 pppol2tp_next_tunnel(net, pd);
1636 }
1637}
1638
1639static void *pppol2tp_seq_start(struct seq_file *m, loff_t *offs)
1640{
1641 struct pppol2tp_seq_data *pd = SEQ_START_TOKEN;
1642 loff_t pos = *offs;
1643 struct net *net;
1644
1645 if (!pos)
1646 goto out;
1647
1648 BUG_ON(m->private == NULL);
1649 pd = m->private;
1650 net = seq_file_net(m);
1651
1652 if (pd->tunnel == NULL)
1653 pppol2tp_next_tunnel(net, pd);
1654 else
1655 pppol2tp_next_session(net, pd);
1656
1657 /* NULL tunnel and session indicates end of list */
1658 if ((pd->tunnel == NULL) && (pd->session == NULL))
1659 pd = NULL;
1660
1661out:
1662 return pd;
1663}
1664
1665static void *pppol2tp_seq_next(struct seq_file *m, void *v, loff_t *pos)
1666{
1667 (*pos)++;
1668 return NULL;
1669}
1670
1671static void pppol2tp_seq_stop(struct seq_file *p, void *v)
1672{
1673 /* nothing to do */
1674}
1675
1676static void pppol2tp_seq_tunnel_show(struct seq_file *m, void *v)
1677{
1678 struct l2tp_tunnel *tunnel = v;
1679
1680 seq_printf(m, "\nTUNNEL '%s', %c %d\n",
1681 tunnel->name,
1682 (tunnel == tunnel->sock->sk_user_data) ? 'Y' : 'N',
1683 refcount_read(&tunnel->ref_count) - 1);
1684 seq_printf(m, " %08x %ld/%ld/%ld %ld/%ld/%ld\n",
1685 tunnel->debug,
1686 atomic_long_read(&tunnel->stats.tx_packets),
1687 atomic_long_read(&tunnel->stats.tx_bytes),
1688 atomic_long_read(&tunnel->stats.tx_errors),
1689 atomic_long_read(&tunnel->stats.rx_packets),
1690 atomic_long_read(&tunnel->stats.rx_bytes),
1691 atomic_long_read(&tunnel->stats.rx_errors));
1692}
1693
1694static void pppol2tp_seq_session_show(struct seq_file *m, void *v)
1695{
1696 struct l2tp_session *session = v;
1697 struct l2tp_tunnel *tunnel = session->tunnel;
1698 unsigned char state;
1699 char user_data_ok;
1700 struct sock *sk;
1701 u32 ip = 0;
1702 u16 port = 0;
1703
1704 if (tunnel->sock) {
1705 struct inet_sock *inet = inet_sk(tunnel->sock);
1706 ip = ntohl(inet->inet_saddr);
1707 port = ntohs(inet->inet_sport);
1708 }
1709
1710 sk = pppol2tp_session_get_sock(session);
1711 if (sk) {
1712 state = sk->sk_state;
1713 user_data_ok = (session == sk->sk_user_data) ? 'Y' : 'N';
1714 } else {
1715 state = 0;
1716 user_data_ok = 'N';
1717 }
1718
1719 seq_printf(m, " SESSION '%s' %08X/%d %04X/%04X -> "
1720 "%04X/%04X %d %c\n",
1721 session->name, ip, port,
1722 tunnel->tunnel_id,
1723 session->session_id,
1724 tunnel->peer_tunnel_id,
1725 session->peer_session_id,
1726 state, user_data_ok);
1727 seq_printf(m, " %d/%d/%c/%c/%s %08x %u\n",
1728 session->mtu, session->mru,
1729 session->recv_seq ? 'R' : '-',
1730 session->send_seq ? 'S' : '-',
1731 session->lns_mode ? "LNS" : "LAC",
1732 session->debug,
1733 jiffies_to_msecs(session->reorder_timeout));
1734 seq_printf(m, " %hu/%hu %ld/%ld/%ld %ld/%ld/%ld\n",
1735 session->nr, session->ns,
1736 atomic_long_read(&session->stats.tx_packets),
1737 atomic_long_read(&session->stats.tx_bytes),
1738 atomic_long_read(&session->stats.tx_errors),
1739 atomic_long_read(&session->stats.rx_packets),
1740 atomic_long_read(&session->stats.rx_bytes),
1741 atomic_long_read(&session->stats.rx_errors));
1742
1743 if (sk) {
1744 struct pppox_sock *po = pppox_sk(sk);
1745
1746 seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan));
1747 sock_put(sk);
1748 }
1749}
1750
1751static int pppol2tp_seq_show(struct seq_file *m, void *v)
1752{
1753 struct pppol2tp_seq_data *pd = v;
1754
1755 /* display header on line 1 */
1756 if (v == SEQ_START_TOKEN) {
1757 seq_puts(m, "PPPoL2TP driver info, " PPPOL2TP_DRV_VERSION "\n");
1758 seq_puts(m, "TUNNEL name, user-data-ok session-count\n");
1759 seq_puts(m, " debug tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
1760 seq_puts(m, " SESSION name, addr/port src-tid/sid "
1761 "dest-tid/sid state user-data-ok\n");
1762 seq_puts(m, " mtu/mru/rcvseq/sendseq/lns debug reorderto\n");
1763 seq_puts(m, " nr/ns tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
1764 goto out;
1765 }
1766
1767 /* Show the tunnel or session context.
1768 */
1769 if (!pd->session) {
1770 pppol2tp_seq_tunnel_show(m, pd->tunnel);
1771 } else {
1772 pppol2tp_seq_session_show(m, pd->session);
1773 if (pd->session->deref)
1774 pd->session->deref(pd->session);
1775 l2tp_session_dec_refcount(pd->session);
1776 }
1777
1778out:
1779 return 0;
1780}
1781
1782static const struct seq_operations pppol2tp_seq_ops = {
1783 .start = pppol2tp_seq_start,
1784 .next = pppol2tp_seq_next,
1785 .stop = pppol2tp_seq_stop,
1786 .show = pppol2tp_seq_show,
1787};
1788
1789/* Called when our /proc file is opened. We allocate data for use when
1790 * iterating our tunnel / session contexts and store it in the private
1791 * data of the seq_file.
1792 */
1793static int pppol2tp_proc_open(struct inode *inode, struct file *file)
1794{
1795 return seq_open_net(inode, file, &pppol2tp_seq_ops,
1796 sizeof(struct pppol2tp_seq_data));
1797}
1798
1799static const struct file_operations pppol2tp_proc_fops = {
1800 .owner = THIS_MODULE,
1801 .open = pppol2tp_proc_open,
1802 .read = seq_read,
1803 .llseek = seq_lseek,
1804 .release = seq_release_net,
1805};
1806
1807#endif /* CONFIG_PROC_FS */
1808
1809/*****************************************************************************
1810 * Network namespace
1811 *****************************************************************************/
1812
1813static __net_init int pppol2tp_init_net(struct net *net)
1814{
1815 struct proc_dir_entry *pde;
1816 int err = 0;
1817
1818 pde = proc_create("pppol2tp", S_IRUGO, net->proc_net,
1819 &pppol2tp_proc_fops);
1820 if (!pde) {
1821 err = -ENOMEM;
1822 goto out;
1823 }
1824
1825out:
1826 return err;
1827}
1828
1829static __net_exit void pppol2tp_exit_net(struct net *net)
1830{
1831 remove_proc_entry("pppol2tp", net->proc_net);
1832}
1833
1834static struct pernet_operations pppol2tp_net_ops = {
1835 .init = pppol2tp_init_net,
1836 .exit = pppol2tp_exit_net,
1837 .id = &pppol2tp_net_id,
1838};
1839
1840/*****************************************************************************
1841 * Init and cleanup
1842 *****************************************************************************/
1843
1844static const struct proto_ops pppol2tp_ops = {
1845 .family = AF_PPPOX,
1846 .owner = THIS_MODULE,
1847 .release = pppol2tp_release,
1848 .bind = sock_no_bind,
1849 .connect = pppol2tp_connect,
1850 .socketpair = sock_no_socketpair,
1851 .accept = sock_no_accept,
1852 .getname = pppol2tp_getname,
1853 .poll = datagram_poll,
1854 .listen = sock_no_listen,
1855 .shutdown = sock_no_shutdown,
1856 .setsockopt = pppol2tp_setsockopt,
1857 .getsockopt = pppol2tp_getsockopt,
1858 .sendmsg = pppol2tp_sendmsg,
1859 .recvmsg = pppol2tp_recvmsg,
1860 .mmap = sock_no_mmap,
1861 .ioctl = pppox_ioctl,
1862#ifdef CONFIG_COMPAT
1863 .compat_ioctl = pppox_compat_ioctl,
1864#endif
1865};
1866
1867static const struct pppox_proto pppol2tp_proto = {
1868 .create = pppol2tp_create,
1869 .ioctl = pppol2tp_ioctl,
1870 .owner = THIS_MODULE,
1871};
1872
1873#ifdef CONFIG_L2TP_V3
1874
1875static const struct l2tp_nl_cmd_ops pppol2tp_nl_cmd_ops = {
1876 .session_create = pppol2tp_session_create,
1877 .session_delete = l2tp_session_delete,
1878};
1879
1880#endif /* CONFIG_L2TP_V3 */
1881
1882static int __init pppol2tp_init(void)
1883{
1884 int err;
1885
1886 err = register_pernet_device(&pppol2tp_net_ops);
1887 if (err)
1888 goto out;
1889
1890 err = proto_register(&pppol2tp_sk_proto, 0);
1891 if (err)
1892 goto out_unregister_pppol2tp_pernet;
1893
1894 err = register_pppox_proto(PX_PROTO_OL2TP, &pppol2tp_proto);
1895 if (err)
1896 goto out_unregister_pppol2tp_proto;
1897
1898#ifdef CONFIG_L2TP_V3
1899 err = l2tp_nl_register_ops(L2TP_PWTYPE_PPP, &pppol2tp_nl_cmd_ops);
1900 if (err)
1901 goto out_unregister_pppox;
1902#endif
1903
1904 pr_info("PPPoL2TP kernel driver, %s\n", PPPOL2TP_DRV_VERSION);
1905
1906out:
1907 return err;
1908
1909#ifdef CONFIG_L2TP_V3
1910out_unregister_pppox:
1911 unregister_pppox_proto(PX_PROTO_OL2TP);
1912#endif
1913out_unregister_pppol2tp_proto:
1914 proto_unregister(&pppol2tp_sk_proto);
1915out_unregister_pppol2tp_pernet:
1916 unregister_pernet_device(&pppol2tp_net_ops);
1917 goto out;
1918}
1919
1920static void __exit pppol2tp_exit(void)
1921{
1922#ifdef CONFIG_L2TP_V3
1923 l2tp_nl_unregister_ops(L2TP_PWTYPE_PPP);
1924#endif
1925 unregister_pppox_proto(PX_PROTO_OL2TP);
1926 proto_unregister(&pppol2tp_sk_proto);
1927 unregister_pernet_device(&pppol2tp_net_ops);
1928}
1929
1930module_init(pppol2tp_init);
1931module_exit(pppol2tp_exit);
1932
1933MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
1934MODULE_DESCRIPTION("PPP over L2TP over UDP");
1935MODULE_LICENSE("GPL");
1936MODULE_VERSION(PPPOL2TP_DRV_VERSION);
1937MODULE_ALIAS_NET_PF_PROTO(PF_PPPOX, PX_PROTO_OL2TP);
1938MODULE_ALIAS_L2TP_PWTYPE(7);