GNU Linux-libre 4.9.317-gnu1
[releases.git] / net / l2tp / l2tp_ppp.c
1 /*****************************************************************************
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  */
122 struct 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
136 static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb);
137
138 static const struct ppp_channel_ops pppol2tp_chan_ops = {
139         .start_xmit =  pppol2tp_xmit,
140 };
141
142 static 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  */
148 static 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  */
164 static 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
180 out:
181         return session;
182 }
183
184 /*****************************************************************************
185  * Receive data handling
186  *****************************************************************************/
187
188 static 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  */
209 static 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);
236 end:
237         return err;
238 }
239
240 static 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
276 no_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  */
290 static 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
355 error_put_sess_tun:
356         sock_put(ps->tunnel_sock);
357 error_put_sess:
358         sock_put(sk);
359 error:
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  */
377 static 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
424 abort_put_sess_tun:
425         sock_put(sk_tun);
426 abort_put_sess:
427         sock_put(sk);
428 abort:
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  */
440 static 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  */
457 static 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
471 static 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  */
481 static 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
532 error:
533         release_sock(sk);
534         return error;
535 }
536
537 static struct proto pppol2tp_sk_proto = {
538         .name     = "PPPOL2TP",
539         .owner    = THIS_MODULE,
540         .obj_size = sizeof(struct pppox_sock),
541 };
542
543 static 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  */
556 static 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
579 out:
580         return error;
581 }
582
583 #if IS_ENABLED(CONFIG_L2TP_DEBUGFS)
584 static 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
599 static 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  */
630 static 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         int ver = 2;
645         int fd;
646
647         lock_sock(sk);
648
649         error = -EINVAL;
650
651         if (sockaddr_len != sizeof(struct sockaddr_pppol2tp) &&
652             sockaddr_len != sizeof(struct sockaddr_pppol2tpv3) &&
653             sockaddr_len != sizeof(struct sockaddr_pppol2tpin6) &&
654             sockaddr_len != sizeof(struct sockaddr_pppol2tpv3in6))
655                 goto end;
656
657         if (sp->sa_protocol != PX_PROTO_OL2TP)
658                 goto end;
659
660         /* Check for already bound sockets */
661         error = -EBUSY;
662         if (sk->sk_state & PPPOX_CONNECTED)
663                 goto end;
664
665         /* We don't supporting rebinding anyway */
666         error = -EALREADY;
667         if (sk->sk_user_data)
668                 goto end; /* socket is already attached */
669
670         /* Get params from socket address. Handle L2TPv2 and L2TPv3.
671          * This is nasty because there are different sockaddr_pppol2tp
672          * structs for L2TPv2, L2TPv3, over IPv4 and IPv6. We use
673          * the sockaddr size to determine which structure the caller
674          * is using.
675          */
676         peer_tunnel_id = 0;
677         if (sockaddr_len == sizeof(struct sockaddr_pppol2tp)) {
678                 fd = sp->pppol2tp.fd;
679                 tunnel_id = sp->pppol2tp.s_tunnel;
680                 peer_tunnel_id = sp->pppol2tp.d_tunnel;
681                 session_id = sp->pppol2tp.s_session;
682                 peer_session_id = sp->pppol2tp.d_session;
683         } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3)) {
684                 struct sockaddr_pppol2tpv3 *sp3 =
685                         (struct sockaddr_pppol2tpv3 *) sp;
686                 ver = 3;
687                 fd = sp3->pppol2tp.fd;
688                 tunnel_id = sp3->pppol2tp.s_tunnel;
689                 peer_tunnel_id = sp3->pppol2tp.d_tunnel;
690                 session_id = sp3->pppol2tp.s_session;
691                 peer_session_id = sp3->pppol2tp.d_session;
692         } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpin6)) {
693                 struct sockaddr_pppol2tpin6 *sp6 =
694                         (struct sockaddr_pppol2tpin6 *) sp;
695                 fd = sp6->pppol2tp.fd;
696                 tunnel_id = sp6->pppol2tp.s_tunnel;
697                 peer_tunnel_id = sp6->pppol2tp.d_tunnel;
698                 session_id = sp6->pppol2tp.s_session;
699                 peer_session_id = sp6->pppol2tp.d_session;
700         } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3in6)) {
701                 struct sockaddr_pppol2tpv3in6 *sp6 =
702                         (struct sockaddr_pppol2tpv3in6 *) sp;
703                 ver = 3;
704                 fd = sp6->pppol2tp.fd;
705                 tunnel_id = sp6->pppol2tp.s_tunnel;
706                 peer_tunnel_id = sp6->pppol2tp.d_tunnel;
707                 session_id = sp6->pppol2tp.s_session;
708                 peer_session_id = sp6->pppol2tp.d_session;
709         } else {
710                 error = -EINVAL;
711                 goto end; /* bad socket address */
712         }
713
714         /* Don't bind if tunnel_id is 0 */
715         error = -EINVAL;
716         if (tunnel_id == 0)
717                 goto end;
718
719         tunnel = l2tp_tunnel_find(sock_net(sk), tunnel_id);
720
721         /* Special case: create tunnel context if session_id and
722          * peer_session_id is 0. Otherwise look up tunnel using supplied
723          * tunnel id.
724          */
725         if ((session_id == 0) && (peer_session_id == 0)) {
726                 if (tunnel == NULL) {
727                         struct l2tp_tunnel_cfg tcfg = {
728                                 .encap = L2TP_ENCAPTYPE_UDP,
729                                 .debug = 0,
730                         };
731                         error = l2tp_tunnel_create(sock_net(sk), fd, ver, tunnel_id, peer_tunnel_id, &tcfg, &tunnel);
732                         if (error < 0)
733                                 goto end;
734                 }
735         } else {
736                 /* Error if we can't find the tunnel */
737                 error = -ENOENT;
738                 if (tunnel == NULL)
739                         goto end;
740
741                 /* Error if socket is not prepped */
742                 if (tunnel->sock == NULL)
743                         goto end;
744         }
745
746         if (tunnel->recv_payload_hook == NULL)
747                 tunnel->recv_payload_hook = pppol2tp_recv_payload_hook;
748
749         if (tunnel->peer_tunnel_id == 0)
750                 tunnel->peer_tunnel_id = peer_tunnel_id;
751
752         session = l2tp_session_get(sock_net(sk), tunnel, session_id, false);
753         if (session) {
754                 drop_refcnt = true;
755                 ps = l2tp_session_priv(session);
756
757                 /* Using a pre-existing session is fine as long as it hasn't
758                  * been connected yet.
759                  */
760                 mutex_lock(&ps->sk_lock);
761                 if (rcu_dereference_protected(ps->sk,
762                                               lockdep_is_held(&ps->sk_lock))) {
763                         mutex_unlock(&ps->sk_lock);
764                         error = -EEXIST;
765                         goto end;
766                 }
767
768                 /* consistency checks */
769                 if (ps->tunnel_sock != tunnel->sock) {
770                         mutex_unlock(&ps->sk_lock);
771                         error = -EEXIST;
772                         goto end;
773                 }
774         } else {
775                 /* Default MTU must allow space for UDP/L2TP/PPP headers */
776                 cfg.mtu = 1500 - PPPOL2TP_HEADER_OVERHEAD;
777                 cfg.mru = cfg.mtu;
778
779                 session = l2tp_session_create(sizeof(struct pppol2tp_session),
780                                               tunnel, session_id,
781                                               peer_session_id, &cfg);
782                 if (IS_ERR(session)) {
783                         error = PTR_ERR(session);
784                         goto end;
785                 }
786
787                 pppol2tp_session_init(session);
788                 ps = l2tp_session_priv(session);
789                 l2tp_session_inc_refcount(session);
790
791                 mutex_lock(&ps->sk_lock);
792                 error = l2tp_session_register(session, tunnel);
793                 if (error < 0) {
794                         mutex_unlock(&ps->sk_lock);
795                         kfree(session);
796                         goto end;
797                 }
798                 drop_refcnt = true;
799         }
800
801         /* Special case: if source & dest session_id == 0x0000, this
802          * socket is being created to manage the tunnel. Just set up
803          * the internal context for use by ioctl() and sockopt()
804          * handlers.
805          */
806         if ((session->session_id == 0) &&
807             (session->peer_session_id == 0)) {
808                 error = 0;
809                 goto out_no_ppp;
810         }
811
812         /* The only header we need to worry about is the L2TP
813          * header. This size is different depending on whether
814          * sequence numbers are enabled for the data channel.
815          */
816         po->chan.hdrlen = PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
817
818         po->chan.private = sk;
819         po->chan.ops     = &pppol2tp_chan_ops;
820         po->chan.mtu     = session->mtu;
821
822         error = ppp_register_net_channel(sock_net(sk), &po->chan);
823         if (error) {
824                 mutex_unlock(&ps->sk_lock);
825                 goto end;
826         }
827
828 out_no_ppp:
829         /* This is how we get the session context from the socket. */
830         sk->sk_user_data = session;
831         rcu_assign_pointer(ps->sk, sk);
832         mutex_unlock(&ps->sk_lock);
833
834         /* Keep the reference we've grabbed on the session: sk doesn't expect
835          * the session to disappear. pppol2tp_session_destruct() is responsible
836          * for dropping it.
837          */
838         drop_refcnt = false;
839
840         sk->sk_state = PPPOX_CONNECTED;
841         l2tp_info(session, L2TP_MSG_CONTROL, "%s: created\n",
842                   session->name);
843
844 end:
845         if (drop_refcnt)
846                 l2tp_session_dec_refcount(session);
847         release_sock(sk);
848
849         return error;
850 }
851
852 #ifdef CONFIG_L2TP_V3
853
854 /* Called when creating sessions via the netlink interface. */
855 static int pppol2tp_session_create(struct net *net, struct l2tp_tunnel *tunnel,
856                                    u32 session_id, u32 peer_session_id,
857                                    struct l2tp_session_cfg *cfg)
858 {
859         int error;
860         struct l2tp_session *session;
861
862         /* Error if tunnel socket is not prepped */
863         if (!tunnel->sock) {
864                 error = -ENOENT;
865                 goto err;
866         }
867
868         /* Default MTU values. */
869         if (cfg->mtu == 0)
870                 cfg->mtu = 1500 - PPPOL2TP_HEADER_OVERHEAD;
871         if (cfg->mru == 0)
872                 cfg->mru = cfg->mtu;
873
874         /* Allocate and initialize a new session context. */
875         session = l2tp_session_create(sizeof(struct pppol2tp_session),
876                                       tunnel, session_id,
877                                       peer_session_id, cfg);
878         if (IS_ERR(session)) {
879                 error = PTR_ERR(session);
880                 goto err;
881         }
882
883         pppol2tp_session_init(session);
884
885         error = l2tp_session_register(session, tunnel);
886         if (error < 0)
887                 goto err_sess;
888
889         return 0;
890
891 err_sess:
892         kfree(session);
893 err:
894         return error;
895 }
896
897 #endif /* CONFIG_L2TP_V3 */
898
899 /* getname() support.
900  */
901 static int pppol2tp_getname(struct socket *sock, struct sockaddr *uaddr,
902                             int *usockaddr_len, int peer)
903 {
904         int len = 0;
905         int error = 0;
906         struct l2tp_session *session;
907         struct l2tp_tunnel *tunnel;
908         struct sock *sk = sock->sk;
909         struct inet_sock *inet;
910         struct pppol2tp_session *pls;
911
912         error = -ENOTCONN;
913         if (sk == NULL)
914                 goto end;
915         if (!(sk->sk_state & PPPOX_CONNECTED))
916                 goto end;
917
918         error = -EBADF;
919         session = pppol2tp_sock_to_session(sk);
920         if (session == NULL)
921                 goto end;
922
923         pls = l2tp_session_priv(session);
924         tunnel = l2tp_sock_to_tunnel(pls->tunnel_sock);
925         if (tunnel == NULL)
926                 goto end_put_sess;
927
928         inet = inet_sk(tunnel->sock);
929         if ((tunnel->version == 2) && (tunnel->sock->sk_family == AF_INET)) {
930                 struct sockaddr_pppol2tp sp;
931                 len = sizeof(sp);
932                 memset(&sp, 0, len);
933                 sp.sa_family    = AF_PPPOX;
934                 sp.sa_protocol  = PX_PROTO_OL2TP;
935                 sp.pppol2tp.fd  = tunnel->fd;
936                 sp.pppol2tp.pid = pls->owner;
937                 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
938                 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
939                 sp.pppol2tp.s_session = session->session_id;
940                 sp.pppol2tp.d_session = session->peer_session_id;
941                 sp.pppol2tp.addr.sin_family = AF_INET;
942                 sp.pppol2tp.addr.sin_port = inet->inet_dport;
943                 sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr;
944                 memcpy(uaddr, &sp, len);
945 #if IS_ENABLED(CONFIG_IPV6)
946         } else if ((tunnel->version == 2) &&
947                    (tunnel->sock->sk_family == AF_INET6)) {
948                 struct sockaddr_pppol2tpin6 sp;
949
950                 len = sizeof(sp);
951                 memset(&sp, 0, len);
952                 sp.sa_family    = AF_PPPOX;
953                 sp.sa_protocol  = PX_PROTO_OL2TP;
954                 sp.pppol2tp.fd  = tunnel->fd;
955                 sp.pppol2tp.pid = pls->owner;
956                 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
957                 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
958                 sp.pppol2tp.s_session = session->session_id;
959                 sp.pppol2tp.d_session = session->peer_session_id;
960                 sp.pppol2tp.addr.sin6_family = AF_INET6;
961                 sp.pppol2tp.addr.sin6_port = inet->inet_dport;
962                 memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr,
963                        sizeof(tunnel->sock->sk_v6_daddr));
964                 memcpy(uaddr, &sp, len);
965         } else if ((tunnel->version == 3) &&
966                    (tunnel->sock->sk_family == AF_INET6)) {
967                 struct sockaddr_pppol2tpv3in6 sp;
968
969                 len = sizeof(sp);
970                 memset(&sp, 0, len);
971                 sp.sa_family    = AF_PPPOX;
972                 sp.sa_protocol  = PX_PROTO_OL2TP;
973                 sp.pppol2tp.fd  = tunnel->fd;
974                 sp.pppol2tp.pid = pls->owner;
975                 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
976                 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
977                 sp.pppol2tp.s_session = session->session_id;
978                 sp.pppol2tp.d_session = session->peer_session_id;
979                 sp.pppol2tp.addr.sin6_family = AF_INET6;
980                 sp.pppol2tp.addr.sin6_port = inet->inet_dport;
981                 memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr,
982                        sizeof(tunnel->sock->sk_v6_daddr));
983                 memcpy(uaddr, &sp, len);
984 #endif
985         } else if (tunnel->version == 3) {
986                 struct sockaddr_pppol2tpv3 sp;
987                 len = sizeof(sp);
988                 memset(&sp, 0, len);
989                 sp.sa_family    = AF_PPPOX;
990                 sp.sa_protocol  = PX_PROTO_OL2TP;
991                 sp.pppol2tp.fd  = tunnel->fd;
992                 sp.pppol2tp.pid = pls->owner;
993                 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
994                 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
995                 sp.pppol2tp.s_session = session->session_id;
996                 sp.pppol2tp.d_session = session->peer_session_id;
997                 sp.pppol2tp.addr.sin_family = AF_INET;
998                 sp.pppol2tp.addr.sin_port = inet->inet_dport;
999                 sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr;
1000                 memcpy(uaddr, &sp, len);
1001         }
1002
1003         *usockaddr_len = len;
1004         error = 0;
1005
1006         sock_put(pls->tunnel_sock);
1007 end_put_sess:
1008         sock_put(sk);
1009 end:
1010         return error;
1011 }
1012
1013 /****************************************************************************
1014  * ioctl() handlers.
1015  *
1016  * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
1017  * sockets. However, in order to control kernel tunnel features, we allow
1018  * userspace to create a special "tunnel" PPPoX socket which is used for
1019  * control only.  Tunnel PPPoX sockets have session_id == 0 and simply allow
1020  * the user application to issue L2TP setsockopt(), getsockopt() and ioctl()
1021  * calls.
1022  ****************************************************************************/
1023
1024 static void pppol2tp_copy_stats(struct pppol2tp_ioc_stats *dest,
1025                                 struct l2tp_stats *stats)
1026 {
1027         dest->tx_packets = atomic_long_read(&stats->tx_packets);
1028         dest->tx_bytes = atomic_long_read(&stats->tx_bytes);
1029         dest->tx_errors = atomic_long_read(&stats->tx_errors);
1030         dest->rx_packets = atomic_long_read(&stats->rx_packets);
1031         dest->rx_bytes = atomic_long_read(&stats->rx_bytes);
1032         dest->rx_seq_discards = atomic_long_read(&stats->rx_seq_discards);
1033         dest->rx_oos_packets = atomic_long_read(&stats->rx_oos_packets);
1034         dest->rx_errors = atomic_long_read(&stats->rx_errors);
1035 }
1036
1037 /* Session ioctl helper.
1038  */
1039 static int pppol2tp_session_ioctl(struct l2tp_session *session,
1040                                   unsigned int cmd, unsigned long arg)
1041 {
1042         struct ifreq ifr;
1043         int err = 0;
1044         struct sock *sk;
1045         int val = (int) arg;
1046         struct pppol2tp_session *ps = l2tp_session_priv(session);
1047         struct l2tp_tunnel *tunnel = session->tunnel;
1048         struct pppol2tp_ioc_stats stats;
1049
1050         l2tp_dbg(session, L2TP_MSG_CONTROL,
1051                  "%s: pppol2tp_session_ioctl(cmd=%#x, arg=%#lx)\n",
1052                  session->name, cmd, arg);
1053
1054         sk = pppol2tp_session_get_sock(session);
1055         if (!sk)
1056                 return -EBADR;
1057
1058         switch (cmd) {
1059         case SIOCGIFMTU:
1060                 err = -ENXIO;
1061                 if (!(sk->sk_state & PPPOX_CONNECTED))
1062                         break;
1063
1064                 err = -EFAULT;
1065                 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1066                         break;
1067                 ifr.ifr_mtu = session->mtu;
1068                 if (copy_to_user((void __user *) arg, &ifr, sizeof(struct ifreq)))
1069                         break;
1070
1071                 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get mtu=%d\n",
1072                           session->name, session->mtu);
1073                 err = 0;
1074                 break;
1075
1076         case SIOCSIFMTU:
1077                 err = -ENXIO;
1078                 if (!(sk->sk_state & PPPOX_CONNECTED))
1079                         break;
1080
1081                 err = -EFAULT;
1082                 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1083                         break;
1084
1085                 session->mtu = ifr.ifr_mtu;
1086
1087                 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set mtu=%d\n",
1088                           session->name, session->mtu);
1089                 err = 0;
1090                 break;
1091
1092         case PPPIOCGMRU:
1093                 err = -ENXIO;
1094                 if (!(sk->sk_state & PPPOX_CONNECTED))
1095                         break;
1096
1097                 err = -EFAULT;
1098                 if (put_user(session->mru, (int __user *) arg))
1099                         break;
1100
1101                 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get mru=%d\n",
1102                           session->name, session->mru);
1103                 err = 0;
1104                 break;
1105
1106         case PPPIOCSMRU:
1107                 err = -ENXIO;
1108                 if (!(sk->sk_state & PPPOX_CONNECTED))
1109                         break;
1110
1111                 err = -EFAULT;
1112                 if (get_user(val, (int __user *) arg))
1113                         break;
1114
1115                 session->mru = val;
1116                 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set mru=%d\n",
1117                           session->name, session->mru);
1118                 err = 0;
1119                 break;
1120
1121         case PPPIOCGFLAGS:
1122                 err = -EFAULT;
1123                 if (put_user(ps->flags, (int __user *) arg))
1124                         break;
1125
1126                 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get flags=%d\n",
1127                           session->name, ps->flags);
1128                 err = 0;
1129                 break;
1130
1131         case PPPIOCSFLAGS:
1132                 err = -EFAULT;
1133                 if (get_user(val, (int __user *) arg))
1134                         break;
1135                 ps->flags = val;
1136                 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set flags=%d\n",
1137                           session->name, ps->flags);
1138                 err = 0;
1139                 break;
1140
1141         case PPPIOCGL2TPSTATS:
1142                 err = -ENXIO;
1143                 if (!(sk->sk_state & PPPOX_CONNECTED))
1144                         break;
1145
1146                 memset(&stats, 0, sizeof(stats));
1147                 stats.tunnel_id = tunnel->tunnel_id;
1148                 stats.session_id = session->session_id;
1149                 pppol2tp_copy_stats(&stats, &session->stats);
1150                 if (copy_to_user((void __user *) arg, &stats,
1151                                  sizeof(stats)))
1152                         break;
1153                 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get L2TP stats\n",
1154                           session->name);
1155                 err = 0;
1156                 break;
1157
1158         default:
1159                 err = -ENOSYS;
1160                 break;
1161         }
1162
1163         sock_put(sk);
1164
1165         return err;
1166 }
1167
1168 /* Tunnel ioctl helper.
1169  *
1170  * Note the special handling for PPPIOCGL2TPSTATS below. If the ioctl data
1171  * specifies a session_id, the session ioctl handler is called. This allows an
1172  * application to retrieve session stats via a tunnel socket.
1173  */
1174 static int pppol2tp_tunnel_ioctl(struct l2tp_tunnel *tunnel,
1175                                  unsigned int cmd, unsigned long arg)
1176 {
1177         int err = 0;
1178         struct sock *sk;
1179         struct pppol2tp_ioc_stats stats;
1180
1181         l2tp_dbg(tunnel, L2TP_MSG_CONTROL,
1182                  "%s: pppol2tp_tunnel_ioctl(cmd=%#x, arg=%#lx)\n",
1183                  tunnel->name, cmd, arg);
1184
1185         sk = tunnel->sock;
1186         sock_hold(sk);
1187
1188         switch (cmd) {
1189         case PPPIOCGL2TPSTATS:
1190                 err = -ENXIO;
1191                 if (!(sk->sk_state & PPPOX_CONNECTED))
1192                         break;
1193
1194                 if (copy_from_user(&stats, (void __user *) arg,
1195                                    sizeof(stats))) {
1196                         err = -EFAULT;
1197                         break;
1198                 }
1199                 if (stats.session_id != 0) {
1200                         /* resend to session ioctl handler */
1201                         struct l2tp_session *session =
1202                                 l2tp_session_get(sock_net(sk), tunnel,
1203                                                  stats.session_id, true);
1204
1205                         if (session) {
1206                                 err = pppol2tp_session_ioctl(session, cmd,
1207                                                              arg);
1208                                 if (session->deref)
1209                                         session->deref(session);
1210                                 l2tp_session_dec_refcount(session);
1211                         } else {
1212                                 err = -EBADR;
1213                         }
1214                         break;
1215                 }
1216 #ifdef CONFIG_XFRM
1217                 stats.using_ipsec = (sk->sk_policy[0] || sk->sk_policy[1]) ? 1 : 0;
1218 #endif
1219                 pppol2tp_copy_stats(&stats, &tunnel->stats);
1220                 if (copy_to_user((void __user *) arg, &stats, sizeof(stats))) {
1221                         err = -EFAULT;
1222                         break;
1223                 }
1224                 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: get L2TP stats\n",
1225                           tunnel->name);
1226                 err = 0;
1227                 break;
1228
1229         default:
1230                 err = -ENOSYS;
1231                 break;
1232         }
1233
1234         sock_put(sk);
1235
1236         return err;
1237 }
1238
1239 /* Main ioctl() handler.
1240  * Dispatch to tunnel or session helpers depending on the socket.
1241  */
1242 static int pppol2tp_ioctl(struct socket *sock, unsigned int cmd,
1243                           unsigned long arg)
1244 {
1245         struct sock *sk = sock->sk;
1246         struct l2tp_session *session;
1247         struct l2tp_tunnel *tunnel;
1248         struct pppol2tp_session *ps;
1249         int err;
1250
1251         if (!sk)
1252                 return 0;
1253
1254         err = -EBADF;
1255         if (sock_flag(sk, SOCK_DEAD) != 0)
1256                 goto end;
1257
1258         err = -ENOTCONN;
1259         if ((sk->sk_user_data == NULL) ||
1260             (!(sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND))))
1261                 goto end;
1262
1263         /* Get session context from the socket */
1264         err = -EBADF;
1265         session = pppol2tp_sock_to_session(sk);
1266         if (session == NULL)
1267                 goto end;
1268
1269         /* Special case: if session's session_id is zero, treat ioctl as a
1270          * tunnel ioctl
1271          */
1272         ps = l2tp_session_priv(session);
1273         if ((session->session_id == 0) &&
1274             (session->peer_session_id == 0)) {
1275                 err = -EBADF;
1276                 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1277                 if (tunnel == NULL)
1278                         goto end_put_sess;
1279
1280                 err = pppol2tp_tunnel_ioctl(tunnel, cmd, arg);
1281                 sock_put(ps->tunnel_sock);
1282                 goto end_put_sess;
1283         }
1284
1285         err = pppol2tp_session_ioctl(session, cmd, arg);
1286
1287 end_put_sess:
1288         sock_put(sk);
1289 end:
1290         return err;
1291 }
1292
1293 /*****************************************************************************
1294  * setsockopt() / getsockopt() support.
1295  *
1296  * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
1297  * sockets. In order to control kernel tunnel features, we allow userspace to
1298  * create a special "tunnel" PPPoX socket which is used for control only.
1299  * Tunnel PPPoX sockets have session_id == 0 and simply allow the user
1300  * application to issue L2TP setsockopt(), getsockopt() and ioctl() calls.
1301  *****************************************************************************/
1302
1303 /* Tunnel setsockopt() helper.
1304  */
1305 static int pppol2tp_tunnel_setsockopt(struct sock *sk,
1306                                       struct l2tp_tunnel *tunnel,
1307                                       int optname, int val)
1308 {
1309         int err = 0;
1310
1311         switch (optname) {
1312         case PPPOL2TP_SO_DEBUG:
1313                 tunnel->debug = val;
1314                 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: set debug=%x\n",
1315                           tunnel->name, tunnel->debug);
1316                 break;
1317
1318         default:
1319                 err = -ENOPROTOOPT;
1320                 break;
1321         }
1322
1323         return err;
1324 }
1325
1326 /* Session setsockopt helper.
1327  */
1328 static int pppol2tp_session_setsockopt(struct sock *sk,
1329                                        struct l2tp_session *session,
1330                                        int optname, int val)
1331 {
1332         int err = 0;
1333
1334         switch (optname) {
1335         case PPPOL2TP_SO_RECVSEQ:
1336                 if ((val != 0) && (val != 1)) {
1337                         err = -EINVAL;
1338                         break;
1339                 }
1340                 session->recv_seq = val ? -1 : 0;
1341                 l2tp_info(session, L2TP_MSG_CONTROL,
1342                           "%s: set recv_seq=%d\n",
1343                           session->name, session->recv_seq);
1344                 break;
1345
1346         case PPPOL2TP_SO_SENDSEQ:
1347                 if ((val != 0) && (val != 1)) {
1348                         err = -EINVAL;
1349                         break;
1350                 }
1351                 session->send_seq = val ? -1 : 0;
1352                 {
1353                         struct pppox_sock *po = pppox_sk(sk);
1354
1355                         po->chan.hdrlen = val ? PPPOL2TP_L2TP_HDR_SIZE_SEQ :
1356                                 PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
1357                 }
1358                 l2tp_session_set_header_len(session, session->tunnel->version);
1359                 l2tp_info(session, L2TP_MSG_CONTROL,
1360                           "%s: set send_seq=%d\n",
1361                           session->name, session->send_seq);
1362                 break;
1363
1364         case PPPOL2TP_SO_LNSMODE:
1365                 if ((val != 0) && (val != 1)) {
1366                         err = -EINVAL;
1367                         break;
1368                 }
1369                 session->lns_mode = val ? -1 : 0;
1370                 l2tp_info(session, L2TP_MSG_CONTROL,
1371                           "%s: set lns_mode=%d\n",
1372                           session->name, session->lns_mode);
1373                 break;
1374
1375         case PPPOL2TP_SO_DEBUG:
1376                 session->debug = val;
1377                 l2tp_info(session, L2TP_MSG_CONTROL, "%s: set debug=%x\n",
1378                           session->name, session->debug);
1379                 break;
1380
1381         case PPPOL2TP_SO_REORDERTO:
1382                 session->reorder_timeout = msecs_to_jiffies(val);
1383                 l2tp_info(session, L2TP_MSG_CONTROL,
1384                           "%s: set reorder_timeout=%d\n",
1385                           session->name, session->reorder_timeout);
1386                 break;
1387
1388         default:
1389                 err = -ENOPROTOOPT;
1390                 break;
1391         }
1392
1393         return err;
1394 }
1395
1396 /* Main setsockopt() entry point.
1397  * Does API checks, then calls either the tunnel or session setsockopt
1398  * handler, according to whether the PPPoL2TP socket is a for a regular
1399  * session or the special tunnel type.
1400  */
1401 static int pppol2tp_setsockopt(struct socket *sock, int level, int optname,
1402                                char __user *optval, unsigned int optlen)
1403 {
1404         struct sock *sk = sock->sk;
1405         struct l2tp_session *session;
1406         struct l2tp_tunnel *tunnel;
1407         struct pppol2tp_session *ps;
1408         int val;
1409         int err;
1410
1411         if (level != SOL_PPPOL2TP)
1412                 return -EINVAL;
1413
1414         if (optlen < sizeof(int))
1415                 return -EINVAL;
1416
1417         if (get_user(val, (int __user *)optval))
1418                 return -EFAULT;
1419
1420         err = -ENOTCONN;
1421         if (sk->sk_user_data == NULL)
1422                 goto end;
1423
1424         /* Get session context from the socket */
1425         err = -EBADF;
1426         session = pppol2tp_sock_to_session(sk);
1427         if (session == NULL)
1428                 goto end;
1429
1430         /* Special case: if session_id == 0x0000, treat as operation on tunnel
1431          */
1432         ps = l2tp_session_priv(session);
1433         if ((session->session_id == 0) &&
1434             (session->peer_session_id == 0)) {
1435                 err = -EBADF;
1436                 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1437                 if (tunnel == NULL)
1438                         goto end_put_sess;
1439
1440                 err = pppol2tp_tunnel_setsockopt(sk, tunnel, optname, val);
1441                 sock_put(ps->tunnel_sock);
1442         } else
1443                 err = pppol2tp_session_setsockopt(sk, session, optname, val);
1444
1445         err = 0;
1446
1447 end_put_sess:
1448         sock_put(sk);
1449 end:
1450         return err;
1451 }
1452
1453 /* Tunnel getsockopt helper. Called with sock locked.
1454  */
1455 static int pppol2tp_tunnel_getsockopt(struct sock *sk,
1456                                       struct l2tp_tunnel *tunnel,
1457                                       int optname, int *val)
1458 {
1459         int err = 0;
1460
1461         switch (optname) {
1462         case PPPOL2TP_SO_DEBUG:
1463                 *val = tunnel->debug;
1464                 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: get debug=%x\n",
1465                           tunnel->name, tunnel->debug);
1466                 break;
1467
1468         default:
1469                 err = -ENOPROTOOPT;
1470                 break;
1471         }
1472
1473         return err;
1474 }
1475
1476 /* Session getsockopt helper. Called with sock locked.
1477  */
1478 static int pppol2tp_session_getsockopt(struct sock *sk,
1479                                        struct l2tp_session *session,
1480                                        int optname, int *val)
1481 {
1482         int err = 0;
1483
1484         switch (optname) {
1485         case PPPOL2TP_SO_RECVSEQ:
1486                 *val = session->recv_seq;
1487                 l2tp_info(session, L2TP_MSG_CONTROL,
1488                           "%s: get recv_seq=%d\n", session->name, *val);
1489                 break;
1490
1491         case PPPOL2TP_SO_SENDSEQ:
1492                 *val = session->send_seq;
1493                 l2tp_info(session, L2TP_MSG_CONTROL,
1494                           "%s: get send_seq=%d\n", session->name, *val);
1495                 break;
1496
1497         case PPPOL2TP_SO_LNSMODE:
1498                 *val = session->lns_mode;
1499                 l2tp_info(session, L2TP_MSG_CONTROL,
1500                           "%s: get lns_mode=%d\n", session->name, *val);
1501                 break;
1502
1503         case PPPOL2TP_SO_DEBUG:
1504                 *val = session->debug;
1505                 l2tp_info(session, L2TP_MSG_CONTROL, "%s: get debug=%d\n",
1506                           session->name, *val);
1507                 break;
1508
1509         case PPPOL2TP_SO_REORDERTO:
1510                 *val = (int) jiffies_to_msecs(session->reorder_timeout);
1511                 l2tp_info(session, L2TP_MSG_CONTROL,
1512                           "%s: get reorder_timeout=%d\n", session->name, *val);
1513                 break;
1514
1515         default:
1516                 err = -ENOPROTOOPT;
1517         }
1518
1519         return err;
1520 }
1521
1522 /* Main getsockopt() entry point.
1523  * Does API checks, then calls either the tunnel or session getsockopt
1524  * handler, according to whether the PPPoX socket is a for a regular session
1525  * or the special tunnel type.
1526  */
1527 static int pppol2tp_getsockopt(struct socket *sock, int level, int optname,
1528                                char __user *optval, int __user *optlen)
1529 {
1530         struct sock *sk = sock->sk;
1531         struct l2tp_session *session;
1532         struct l2tp_tunnel *tunnel;
1533         int val, len;
1534         int err;
1535         struct pppol2tp_session *ps;
1536
1537         if (level != SOL_PPPOL2TP)
1538                 return -EINVAL;
1539
1540         if (get_user(len, optlen))
1541                 return -EFAULT;
1542
1543         len = min_t(unsigned int, len, sizeof(int));
1544
1545         if (len < 0)
1546                 return -EINVAL;
1547
1548         err = -ENOTCONN;
1549         if (sk->sk_user_data == NULL)
1550                 goto end;
1551
1552         /* Get the session context */
1553         err = -EBADF;
1554         session = pppol2tp_sock_to_session(sk);
1555         if (session == NULL)
1556                 goto end;
1557
1558         /* Special case: if session_id == 0x0000, treat as operation on tunnel */
1559         ps = l2tp_session_priv(session);
1560         if ((session->session_id == 0) &&
1561             (session->peer_session_id == 0)) {
1562                 err = -EBADF;
1563                 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1564                 if (tunnel == NULL)
1565                         goto end_put_sess;
1566
1567                 err = pppol2tp_tunnel_getsockopt(sk, tunnel, optname, &val);
1568                 sock_put(ps->tunnel_sock);
1569         } else
1570                 err = pppol2tp_session_getsockopt(sk, session, optname, &val);
1571
1572         err = -EFAULT;
1573         if (put_user(len, optlen))
1574                 goto end_put_sess;
1575
1576         if (copy_to_user((void __user *) optval, &val, len))
1577                 goto end_put_sess;
1578
1579         err = 0;
1580
1581 end_put_sess:
1582         sock_put(sk);
1583 end:
1584         return err;
1585 }
1586
1587 /*****************************************************************************
1588  * /proc filesystem for debug
1589  * Since the original pppol2tp driver provided /proc/net/pppol2tp for
1590  * L2TPv2, we dump only L2TPv2 tunnels and sessions here.
1591  *****************************************************************************/
1592
1593 static unsigned int pppol2tp_net_id;
1594
1595 #ifdef CONFIG_PROC_FS
1596
1597 struct pppol2tp_seq_data {
1598         struct seq_net_private p;
1599         int tunnel_idx;                 /* current tunnel */
1600         int session_idx;                /* index of session within current tunnel */
1601         struct l2tp_tunnel *tunnel;
1602         struct l2tp_session *session;   /* NULL means get next tunnel */
1603 };
1604
1605 static void pppol2tp_next_tunnel(struct net *net, struct pppol2tp_seq_data *pd)
1606 {
1607         for (;;) {
1608                 pd->tunnel = l2tp_tunnel_find_nth(net, pd->tunnel_idx);
1609                 pd->tunnel_idx++;
1610
1611                 if (pd->tunnel == NULL)
1612                         break;
1613
1614                 /* Ignore L2TPv3 tunnels */
1615                 if (pd->tunnel->version < 3)
1616                         break;
1617         }
1618 }
1619
1620 static void pppol2tp_next_session(struct net *net, struct pppol2tp_seq_data *pd)
1621 {
1622         pd->session = l2tp_session_get_nth(pd->tunnel, pd->session_idx, true);
1623         pd->session_idx++;
1624
1625         if (pd->session == NULL) {
1626                 pd->session_idx = 0;
1627                 pppol2tp_next_tunnel(net, pd);
1628         }
1629 }
1630
1631 static void *pppol2tp_seq_start(struct seq_file *m, loff_t *offs)
1632 {
1633         struct pppol2tp_seq_data *pd = SEQ_START_TOKEN;
1634         loff_t pos = *offs;
1635         struct net *net;
1636
1637         if (!pos)
1638                 goto out;
1639
1640         BUG_ON(m->private == NULL);
1641         pd = m->private;
1642         net = seq_file_net(m);
1643
1644         if (pd->tunnel == NULL)
1645                 pppol2tp_next_tunnel(net, pd);
1646         else
1647                 pppol2tp_next_session(net, pd);
1648
1649         /* NULL tunnel and session indicates end of list */
1650         if ((pd->tunnel == NULL) && (pd->session == NULL))
1651                 pd = NULL;
1652
1653 out:
1654         return pd;
1655 }
1656
1657 static void *pppol2tp_seq_next(struct seq_file *m, void *v, loff_t *pos)
1658 {
1659         (*pos)++;
1660         return NULL;
1661 }
1662
1663 static void pppol2tp_seq_stop(struct seq_file *p, void *v)
1664 {
1665         /* nothing to do */
1666 }
1667
1668 static void pppol2tp_seq_tunnel_show(struct seq_file *m, void *v)
1669 {
1670         struct l2tp_tunnel *tunnel = v;
1671
1672         seq_printf(m, "\nTUNNEL '%s', %c %d\n",
1673                    tunnel->name,
1674                    (tunnel == tunnel->sock->sk_user_data) ? 'Y' : 'N',
1675                    atomic_read(&tunnel->ref_count) - 1);
1676         seq_printf(m, " %08x %ld/%ld/%ld %ld/%ld/%ld\n",
1677                    tunnel->debug,
1678                    atomic_long_read(&tunnel->stats.tx_packets),
1679                    atomic_long_read(&tunnel->stats.tx_bytes),
1680                    atomic_long_read(&tunnel->stats.tx_errors),
1681                    atomic_long_read(&tunnel->stats.rx_packets),
1682                    atomic_long_read(&tunnel->stats.rx_bytes),
1683                    atomic_long_read(&tunnel->stats.rx_errors));
1684 }
1685
1686 static void pppol2tp_seq_session_show(struct seq_file *m, void *v)
1687 {
1688         struct l2tp_session *session = v;
1689         struct l2tp_tunnel *tunnel = session->tunnel;
1690         unsigned char state;
1691         char user_data_ok;
1692         struct sock *sk;
1693         u32 ip = 0;
1694         u16 port = 0;
1695
1696         if (tunnel->sock) {
1697                 struct inet_sock *inet = inet_sk(tunnel->sock);
1698                 ip = ntohl(inet->inet_saddr);
1699                 port = ntohs(inet->inet_sport);
1700         }
1701
1702         sk = pppol2tp_session_get_sock(session);
1703         if (sk) {
1704                 state = sk->sk_state;
1705                 user_data_ok = (session == sk->sk_user_data) ? 'Y' : 'N';
1706         } else {
1707                 state = 0;
1708                 user_data_ok = 'N';
1709         }
1710
1711         seq_printf(m, "  SESSION '%s' %08X/%d %04X/%04X -> "
1712                    "%04X/%04X %d %c\n",
1713                    session->name, ip, port,
1714                    tunnel->tunnel_id,
1715                    session->session_id,
1716                    tunnel->peer_tunnel_id,
1717                    session->peer_session_id,
1718                    state, user_data_ok);
1719         seq_printf(m, "   %d/%d/%c/%c/%s %08x %u\n",
1720                    session->mtu, session->mru,
1721                    session->recv_seq ? 'R' : '-',
1722                    session->send_seq ? 'S' : '-',
1723                    session->lns_mode ? "LNS" : "LAC",
1724                    session->debug,
1725                    jiffies_to_msecs(session->reorder_timeout));
1726         seq_printf(m, "   %hu/%hu %ld/%ld/%ld %ld/%ld/%ld\n",
1727                    session->nr, session->ns,
1728                    atomic_long_read(&session->stats.tx_packets),
1729                    atomic_long_read(&session->stats.tx_bytes),
1730                    atomic_long_read(&session->stats.tx_errors),
1731                    atomic_long_read(&session->stats.rx_packets),
1732                    atomic_long_read(&session->stats.rx_bytes),
1733                    atomic_long_read(&session->stats.rx_errors));
1734
1735         if (sk) {
1736                 struct pppox_sock *po = pppox_sk(sk);
1737
1738                 seq_printf(m, "   interface %s\n", ppp_dev_name(&po->chan));
1739                 sock_put(sk);
1740         }
1741 }
1742
1743 static int pppol2tp_seq_show(struct seq_file *m, void *v)
1744 {
1745         struct pppol2tp_seq_data *pd = v;
1746
1747         /* display header on line 1 */
1748         if (v == SEQ_START_TOKEN) {
1749                 seq_puts(m, "PPPoL2TP driver info, " PPPOL2TP_DRV_VERSION "\n");
1750                 seq_puts(m, "TUNNEL name, user-data-ok session-count\n");
1751                 seq_puts(m, " debug tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
1752                 seq_puts(m, "  SESSION name, addr/port src-tid/sid "
1753                          "dest-tid/sid state user-data-ok\n");
1754                 seq_puts(m, "   mtu/mru/rcvseq/sendseq/lns debug reorderto\n");
1755                 seq_puts(m, "   nr/ns tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
1756                 goto out;
1757         }
1758
1759         /* Show the tunnel or session context.
1760          */
1761         if (!pd->session) {
1762                 pppol2tp_seq_tunnel_show(m, pd->tunnel);
1763         } else {
1764                 pppol2tp_seq_session_show(m, pd->session);
1765                 if (pd->session->deref)
1766                         pd->session->deref(pd->session);
1767                 l2tp_session_dec_refcount(pd->session);
1768         }
1769
1770 out:
1771         return 0;
1772 }
1773
1774 static const struct seq_operations pppol2tp_seq_ops = {
1775         .start          = pppol2tp_seq_start,
1776         .next           = pppol2tp_seq_next,
1777         .stop           = pppol2tp_seq_stop,
1778         .show           = pppol2tp_seq_show,
1779 };
1780
1781 /* Called when our /proc file is opened. We allocate data for use when
1782  * iterating our tunnel / session contexts and store it in the private
1783  * data of the seq_file.
1784  */
1785 static int pppol2tp_proc_open(struct inode *inode, struct file *file)
1786 {
1787         return seq_open_net(inode, file, &pppol2tp_seq_ops,
1788                             sizeof(struct pppol2tp_seq_data));
1789 }
1790
1791 static const struct file_operations pppol2tp_proc_fops = {
1792         .owner          = THIS_MODULE,
1793         .open           = pppol2tp_proc_open,
1794         .read           = seq_read,
1795         .llseek         = seq_lseek,
1796         .release        = seq_release_net,
1797 };
1798
1799 #endif /* CONFIG_PROC_FS */
1800
1801 /*****************************************************************************
1802  * Network namespace
1803  *****************************************************************************/
1804
1805 static __net_init int pppol2tp_init_net(struct net *net)
1806 {
1807         struct proc_dir_entry *pde;
1808         int err = 0;
1809
1810         pde = proc_create("pppol2tp", S_IRUGO, net->proc_net,
1811                           &pppol2tp_proc_fops);
1812         if (!pde) {
1813                 err = -ENOMEM;
1814                 goto out;
1815         }
1816
1817 out:
1818         return err;
1819 }
1820
1821 static __net_exit void pppol2tp_exit_net(struct net *net)
1822 {
1823         remove_proc_entry("pppol2tp", net->proc_net);
1824 }
1825
1826 static struct pernet_operations pppol2tp_net_ops = {
1827         .init = pppol2tp_init_net,
1828         .exit = pppol2tp_exit_net,
1829         .id   = &pppol2tp_net_id,
1830 };
1831
1832 /*****************************************************************************
1833  * Init and cleanup
1834  *****************************************************************************/
1835
1836 static const struct proto_ops pppol2tp_ops = {
1837         .family         = AF_PPPOX,
1838         .owner          = THIS_MODULE,
1839         .release        = pppol2tp_release,
1840         .bind           = sock_no_bind,
1841         .connect        = pppol2tp_connect,
1842         .socketpair     = sock_no_socketpair,
1843         .accept         = sock_no_accept,
1844         .getname        = pppol2tp_getname,
1845         .poll           = datagram_poll,
1846         .listen         = sock_no_listen,
1847         .shutdown       = sock_no_shutdown,
1848         .setsockopt     = pppol2tp_setsockopt,
1849         .getsockopt     = pppol2tp_getsockopt,
1850         .sendmsg        = pppol2tp_sendmsg,
1851         .recvmsg        = pppol2tp_recvmsg,
1852         .mmap           = sock_no_mmap,
1853         .ioctl          = pppox_ioctl,
1854 #ifdef CONFIG_COMPAT
1855         .compat_ioctl = pppox_compat_ioctl,
1856 #endif
1857 };
1858
1859 static const struct pppox_proto pppol2tp_proto = {
1860         .create         = pppol2tp_create,
1861         .ioctl          = pppol2tp_ioctl,
1862         .owner          = THIS_MODULE,
1863 };
1864
1865 #ifdef CONFIG_L2TP_V3
1866
1867 static const struct l2tp_nl_cmd_ops pppol2tp_nl_cmd_ops = {
1868         .session_create = pppol2tp_session_create,
1869         .session_delete = l2tp_session_delete,
1870 };
1871
1872 #endif /* CONFIG_L2TP_V3 */
1873
1874 static int __init pppol2tp_init(void)
1875 {
1876         int err;
1877
1878         err = register_pernet_device(&pppol2tp_net_ops);
1879         if (err)
1880                 goto out;
1881
1882         err = proto_register(&pppol2tp_sk_proto, 0);
1883         if (err)
1884                 goto out_unregister_pppol2tp_pernet;
1885
1886         err = register_pppox_proto(PX_PROTO_OL2TP, &pppol2tp_proto);
1887         if (err)
1888                 goto out_unregister_pppol2tp_proto;
1889
1890 #ifdef CONFIG_L2TP_V3
1891         err = l2tp_nl_register_ops(L2TP_PWTYPE_PPP, &pppol2tp_nl_cmd_ops);
1892         if (err)
1893                 goto out_unregister_pppox;
1894 #endif
1895
1896         pr_info("PPPoL2TP kernel driver, %s\n", PPPOL2TP_DRV_VERSION);
1897
1898 out:
1899         return err;
1900
1901 #ifdef CONFIG_L2TP_V3
1902 out_unregister_pppox:
1903         unregister_pppox_proto(PX_PROTO_OL2TP);
1904 #endif
1905 out_unregister_pppol2tp_proto:
1906         proto_unregister(&pppol2tp_sk_proto);
1907 out_unregister_pppol2tp_pernet:
1908         unregister_pernet_device(&pppol2tp_net_ops);
1909         goto out;
1910 }
1911
1912 static void __exit pppol2tp_exit(void)
1913 {
1914 #ifdef CONFIG_L2TP_V3
1915         l2tp_nl_unregister_ops(L2TP_PWTYPE_PPP);
1916 #endif
1917         unregister_pppox_proto(PX_PROTO_OL2TP);
1918         proto_unregister(&pppol2tp_sk_proto);
1919         unregister_pernet_device(&pppol2tp_net_ops);
1920 }
1921
1922 module_init(pppol2tp_init);
1923 module_exit(pppol2tp_exit);
1924
1925 MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
1926 MODULE_DESCRIPTION("PPP over L2TP over UDP");
1927 MODULE_LICENSE("GPL");
1928 MODULE_VERSION(PPPOL2TP_DRV_VERSION);
1929 MODULE_ALIAS_NET_PF_PROTO(PF_PPPOX, PX_PROTO_OL2TP);
1930 MODULE_ALIAS_L2TP_PWTYPE(7);