blob: ec40bc344be60208ef6eb2e5c0b6c650e383f496 [file] [log] [blame]
James Chapmanfd558d12010-04-02 06:18:33 +00001/*****************************************************************************
2 * Linux PPP over L2TP (PPPoX/PPPoL2TP) Sockets
3 *
4 * PPPoX --- Generic PPP encapsulation socket family
5 * PPPoL2TP --- PPP over L2TP (RFC 2661)
6 *
7 * Version: 2.0.0
8 *
9 * Authors: James Chapman (jchapman@katalix.com)
10 *
11 * Based on original work by Martijn van Oosterhout <kleptog@svana.org>
12 *
13 * License:
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
18 *
19 */
20
21/* This driver handles only L2TP data frames; control frames are handled by a
22 * userspace application.
23 *
24 * To send data in an L2TP session, userspace opens a PPPoL2TP socket and
25 * attaches it to a bound UDP socket with local tunnel_id / session_id and
26 * peer tunnel_id / session_id set. Data can then be sent or received using
27 * regular socket sendmsg() / recvmsg() calls. Kernel parameters of the socket
28 * can be read or modified using ioctl() or [gs]etsockopt() calls.
29 *
30 * When a PPPoL2TP socket is connected with local and peer session_id values
31 * zero, the socket is treated as a special tunnel management socket.
32 *
33 * Here's example userspace code to create a socket for sending/receiving data
34 * over an L2TP session:-
35 *
36 * struct sockaddr_pppol2tp sax;
37 * int fd;
38 * int session_fd;
39 *
40 * fd = socket(AF_PPPOX, SOCK_DGRAM, PX_PROTO_OL2TP);
41 *
42 * sax.sa_family = AF_PPPOX;
43 * sax.sa_protocol = PX_PROTO_OL2TP;
44 * sax.pppol2tp.fd = tunnel_fd; // bound UDP socket
45 * sax.pppol2tp.addr.sin_addr.s_addr = addr->sin_addr.s_addr;
46 * sax.pppol2tp.addr.sin_port = addr->sin_port;
47 * sax.pppol2tp.addr.sin_family = AF_INET;
48 * sax.pppol2tp.s_tunnel = tunnel_id;
49 * sax.pppol2tp.s_session = session_id;
50 * sax.pppol2tp.d_tunnel = peer_tunnel_id;
51 * sax.pppol2tp.d_session = peer_session_id;
52 *
53 * session_fd = connect(fd, (struct sockaddr *)&sax, sizeof(sax));
54 *
55 * A pppd plugin that allows PPP traffic to be carried over L2TP using
56 * this driver is available from the OpenL2TP project at
57 * http://openl2tp.sourceforge.net.
58 */
59
Joe Perchesa4ca44f2012-05-16 09:55:56 +000060#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
61
James Chapmanfd558d12010-04-02 06:18:33 +000062#include <linux/module.h>
63#include <linux/string.h>
64#include <linux/list.h>
65#include <linux/uaccess.h>
66
67#include <linux/kernel.h>
68#include <linux/spinlock.h>
69#include <linux/kthread.h>
70#include <linux/sched.h>
71#include <linux/slab.h>
72#include <linux/errno.h>
73#include <linux/jiffies.h>
74
75#include <linux/netdevice.h>
76#include <linux/net.h>
77#include <linux/inetdevice.h>
78#include <linux/skbuff.h>
79#include <linux/init.h>
80#include <linux/ip.h>
81#include <linux/udp.h>
82#include <linux/if_pppox.h>
83#include <linux/if_pppol2tp.h>
84#include <net/sock.h>
85#include <linux/ppp_channel.h>
86#include <linux/ppp_defs.h>
Paul Mackerras4b32da2b2012-03-04 12:56:55 +000087#include <linux/ppp-ioctl.h>
James Chapmanfd558d12010-04-02 06:18:33 +000088#include <linux/file.h>
89#include <linux/hash.h>
90#include <linux/sort.h>
91#include <linux/proc_fs.h>
James Chapman309795f2010-04-02 06:19:10 +000092#include <linux/l2tp.h>
James Chapmanfd558d12010-04-02 06:18:33 +000093#include <linux/nsproxy.h>
94#include <net/net_namespace.h>
95#include <net/netns/generic.h>
96#include <net/dst.h>
97#include <net/ip.h>
98#include <net/udp.h>
99#include <net/xfrm.h>
Tom Parkincf2f5c82013-03-19 06:11:21 +0000100#include <net/inet_common.h>
James Chapmanfd558d12010-04-02 06:18:33 +0000101
102#include <asm/byteorder.h>
Arun Sharma600634972011-07-26 16:09:06 -0700103#include <linux/atomic.h>
James Chapmanfd558d12010-04-02 06:18:33 +0000104
105#include "l2tp_core.h"
106
107#define PPPOL2TP_DRV_VERSION "V2.0"
108
109/* Space for UDP, L2TP and PPP headers */
110#define PPPOL2TP_HEADER_OVERHEAD 40
111
James Chapmanfd558d12010-04-02 06:18:33 +0000112/* Number of bytes to build transmit L2TP headers.
113 * Unfortunately the size is different depending on whether sequence numbers
114 * are enabled.
115 */
116#define PPPOL2TP_L2TP_HDR_SIZE_SEQ 10
117#define PPPOL2TP_L2TP_HDR_SIZE_NOSEQ 6
118
119/* Private data of each session. This data lives at the end of struct
120 * l2tp_session, referenced via session->priv[].
121 */
122struct pppol2tp_session {
123 int owner; /* pid that opened the socket */
124
125 struct sock *sock; /* Pointer to the session
126 * PPPoX socket */
127 struct sock *tunnel_sock; /* Pointer to the tunnel UDP
128 * socket */
129 int flags; /* accessed by PPPIOCGFLAGS.
130 * Unused. */
131};
132
133static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb);
134
stephen hemmingerd7100da2010-08-04 07:34:36 +0000135static const struct ppp_channel_ops pppol2tp_chan_ops = {
136 .start_xmit = pppol2tp_xmit,
137};
138
James Chapmanfd558d12010-04-02 06:18:33 +0000139static const struct proto_ops pppol2tp_ops;
140
141/* Helpers to obtain tunnel/session contexts from sockets.
142 */
143static inline struct l2tp_session *pppol2tp_sock_to_session(struct sock *sk)
144{
145 struct l2tp_session *session;
146
147 if (sk == NULL)
148 return NULL;
149
150 sock_hold(sk);
151 session = (struct l2tp_session *)(sk->sk_user_data);
152 if (session == NULL) {
153 sock_put(sk);
154 goto out;
155 }
156
157 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
158
159out:
160 return session;
161}
162
163/*****************************************************************************
164 * Receive data handling
165 *****************************************************************************/
166
167static int pppol2tp_recv_payload_hook(struct sk_buff *skb)
168{
169 /* Skip PPP header, if present. In testing, Microsoft L2TP clients
170 * don't send the PPP header (PPP header compression enabled), but
171 * other clients can include the header. So we cope with both cases
172 * here. The PPP header is always FF03 when using L2TP.
173 *
174 * Note that skb->data[] isn't dereferenced from a u16 ptr here since
175 * the field may be unaligned.
176 */
177 if (!pskb_may_pull(skb, 2))
178 return 1;
179
180 if ((skb->data[0] == 0xff) && (skb->data[1] == 0x03))
181 skb_pull(skb, 2);
182
183 return 0;
184}
185
186/* Receive message. This is the recvmsg for the PPPoL2TP socket.
187 */
188static int pppol2tp_recvmsg(struct kiocb *iocb, struct socket *sock,
189 struct msghdr *msg, size_t len,
190 int flags)
191{
192 int err;
193 struct sk_buff *skb;
194 struct sock *sk = sock->sk;
195
196 err = -EIO;
197 if (sk->sk_state & PPPOX_BOUND)
198 goto end;
199
James Chapmanfd558d12010-04-02 06:18:33 +0000200 err = 0;
201 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
202 flags & MSG_DONTWAIT, &err);
203 if (!skb)
204 goto end;
205
206 if (len > skb->len)
207 len = skb->len;
208 else if (len < skb->len)
209 msg->msg_flags |= MSG_TRUNC;
210
211 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, len);
212 if (likely(err == 0))
213 err = len;
214
215 kfree_skb(skb);
216end:
217 return err;
218}
219
220static void pppol2tp_recv(struct l2tp_session *session, struct sk_buff *skb, int data_len)
221{
222 struct pppol2tp_session *ps = l2tp_session_priv(session);
223 struct sock *sk = NULL;
224
225 /* If the socket is bound, send it in to PPP's input queue. Otherwise
226 * queue it on the session socket.
227 */
228 sk = ps->sock;
229 if (sk == NULL)
230 goto no_sock;
231
232 if (sk->sk_state & PPPOX_BOUND) {
233 struct pppox_sock *po;
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000234 l2tp_dbg(session, PPPOL2TP_MSG_DATA,
235 "%s: recv %d byte data frame, passing to ppp\n",
236 session->name, data_len);
James Chapmanfd558d12010-04-02 06:18:33 +0000237
238 /* We need to forget all info related to the L2TP packet
239 * gathered in the skb as we are going to reuse the same
240 * skb for the inner packet.
241 * Namely we need to:
242 * - reset xfrm (IPSec) information as it applies to
243 * the outer L2TP packet and not to the inner one
244 * - release the dst to force a route lookup on the inner
245 * IP packet since skb->dst currently points to the dst
246 * of the UDP tunnel
247 * - reset netfilter information as it doesn't apply
248 * to the inner packet either
249 */
250 secpath_reset(skb);
251 skb_dst_drop(skb);
252 nf_reset(skb);
253
254 po = pppox_sk(sk);
255 ppp_input(&po->chan, skb);
256 } else {
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000257 l2tp_info(session, PPPOL2TP_MSG_DATA, "%s: socket not bound\n",
258 session->name);
James Chapmanfd558d12010-04-02 06:18:33 +0000259
260 /* Not bound. Nothing we can do, so discard. */
Tom Parkin7b7c0712013-03-19 06:11:22 +0000261 atomic_long_inc(&session->stats.rx_errors);
James Chapmanfd558d12010-04-02 06:18:33 +0000262 kfree_skb(skb);
263 }
264
265 return;
266
267no_sock:
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000268 l2tp_info(session, PPPOL2TP_MSG_DATA, "%s: no socket\n", session->name);
James Chapmanfd558d12010-04-02 06:18:33 +0000269 kfree_skb(skb);
270}
271
272static void pppol2tp_session_sock_hold(struct l2tp_session *session)
273{
274 struct pppol2tp_session *ps = l2tp_session_priv(session);
275
276 if (ps->sock)
277 sock_hold(ps->sock);
278}
279
280static void pppol2tp_session_sock_put(struct l2tp_session *session)
281{
282 struct pppol2tp_session *ps = l2tp_session_priv(session);
283
284 if (ps->sock)
285 sock_put(ps->sock);
286}
287
288/************************************************************************
289 * Transmit handling
290 ***********************************************************************/
291
James Chapmanfd558d12010-04-02 06:18:33 +0000292/* This is the sendmsg for the PPPoL2TP pppol2tp_session socket. We come here
293 * when a user application does a sendmsg() on the session socket. L2TP and
294 * PPP headers must be inserted into the user's data.
295 */
296static int pppol2tp_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *m,
297 size_t total_len)
298{
299 static const unsigned char ppph[2] = { 0xff, 0x03 };
300 struct sock *sk = sock->sk;
301 struct sk_buff *skb;
302 int error;
303 struct l2tp_session *session;
304 struct l2tp_tunnel *tunnel;
305 struct pppol2tp_session *ps;
James Chapman0d767512010-04-02 06:19:00 +0000306 int uhlen;
James Chapmanfd558d12010-04-02 06:18:33 +0000307
308 error = -ENOTCONN;
309 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
310 goto error;
311
312 /* Get session and tunnel contexts */
313 error = -EBADF;
314 session = pppol2tp_sock_to_session(sk);
315 if (session == NULL)
316 goto error;
317
318 ps = l2tp_session_priv(session);
319 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
320 if (tunnel == NULL)
321 goto error_put_sess;
322
James Chapman0d767512010-04-02 06:19:00 +0000323 uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0;
324
James Chapmanfd558d12010-04-02 06:18:33 +0000325 /* Allocate a socket buffer */
326 error = -ENOMEM;
327 skb = sock_wmalloc(sk, NET_SKB_PAD + sizeof(struct iphdr) +
James Chapman0d767512010-04-02 06:19:00 +0000328 uhlen + session->hdr_len +
James Chapmanfd558d12010-04-02 06:18:33 +0000329 sizeof(ppph) + total_len,
330 0, GFP_KERNEL);
331 if (!skb)
332 goto error_put_sess_tun;
333
334 /* Reserve space for headers. */
335 skb_reserve(skb, NET_SKB_PAD);
336 skb_reset_network_header(skb);
337 skb_reserve(skb, sizeof(struct iphdr));
338 skb_reset_transport_header(skb);
James Chapman0d767512010-04-02 06:19:00 +0000339 skb_reserve(skb, uhlen);
James Chapmanfd558d12010-04-02 06:18:33 +0000340
341 /* Add PPP header */
342 skb->data[0] = ppph[0];
343 skb->data[1] = ppph[1];
344 skb_put(skb, 2);
345
346 /* Copy user data into skb */
Guillaume Nault55b92b72013-06-12 16:07:23 +0200347 error = memcpy_fromiovec(skb_put(skb, total_len), m->msg_iov,
348 total_len);
James Chapmanfd558d12010-04-02 06:18:33 +0000349 if (error < 0) {
350 kfree_skb(skb);
351 goto error_put_sess_tun;
352 }
James Chapmanfd558d12010-04-02 06:18:33 +0000353
Eric Dumazet455cc322013-10-10 06:30:09 -0700354 local_bh_disable();
James Chapmanfd558d12010-04-02 06:18:33 +0000355 l2tp_xmit_skb(session, skb, session->hdr_len);
Eric Dumazet455cc322013-10-10 06:30:09 -0700356 local_bh_enable();
James Chapmanfd558d12010-04-02 06:18:33 +0000357
358 sock_put(ps->tunnel_sock);
Guillaume Nault8b82547e33e2013-03-01 05:02:02 +0000359 sock_put(sk);
James Chapmanfd558d12010-04-02 06:18:33 +0000360
Guillaume Naulta6f79d02013-06-12 16:07:36 +0200361 return total_len;
James Chapmanfd558d12010-04-02 06:18:33 +0000362
363error_put_sess_tun:
364 sock_put(ps->tunnel_sock);
365error_put_sess:
366 sock_put(sk);
367error:
368 return error;
369}
370
371/* Transmit function called by generic PPP driver. Sends PPP frame
372 * over PPPoL2TP socket.
373 *
374 * This is almost the same as pppol2tp_sendmsg(), but rather than
375 * being called with a msghdr from userspace, it is called with a skb
376 * from the kernel.
377 *
378 * The supplied skb from ppp doesn't have enough headroom for the
379 * insertion of L2TP, UDP and IP headers so we need to allocate more
380 * headroom in the skb. This will create a cloned skb. But we must be
381 * careful in the error case because the caller will expect to free
382 * the skb it supplied, not our cloned skb. So we take care to always
383 * leave the original skb unfreed if we return an error.
384 */
385static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb)
386{
387 static const u8 ppph[2] = { 0xff, 0x03 };
388 struct sock *sk = (struct sock *) chan->private;
389 struct sock *sk_tun;
James Chapmanfd558d12010-04-02 06:18:33 +0000390 struct l2tp_session *session;
391 struct l2tp_tunnel *tunnel;
392 struct pppol2tp_session *ps;
Eric Dumazet09df57c2011-10-07 05:45:57 +0000393 int uhlen, headroom;
James Chapmanfd558d12010-04-02 06:18:33 +0000394
395 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
396 goto abort;
397
398 /* Get session and tunnel contexts from the socket */
399 session = pppol2tp_sock_to_session(sk);
400 if (session == NULL)
401 goto abort;
402
403 ps = l2tp_session_priv(session);
404 sk_tun = ps->tunnel_sock;
405 if (sk_tun == NULL)
406 goto abort_put_sess;
407 tunnel = l2tp_sock_to_tunnel(sk_tun);
408 if (tunnel == NULL)
409 goto abort_put_sess;
410
Eric Dumazet09df57c2011-10-07 05:45:57 +0000411 uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0;
412 headroom = NET_SKB_PAD +
413 sizeof(struct iphdr) + /* IP header */
414 uhlen + /* UDP header (if L2TP_ENCAPTYPE_UDP) */
415 session->hdr_len + /* L2TP header */
416 sizeof(ppph); /* PPP header */
417 if (skb_cow_head(skb, headroom))
James Chapmanfd558d12010-04-02 06:18:33 +0000418 goto abort_put_sess_tun;
419
James Chapmanfd558d12010-04-02 06:18:33 +0000420 /* Setup PPP header */
421 __skb_push(skb, sizeof(ppph));
422 skb->data[0] = ppph[0];
423 skb->data[1] = ppph[1];
424
Eric Dumazet455cc322013-10-10 06:30:09 -0700425 local_bh_disable();
James Chapmane0d44352010-04-02 06:18:54 +0000426 l2tp_xmit_skb(session, skb, session->hdr_len);
Eric Dumazet455cc322013-10-10 06:30:09 -0700427 local_bh_enable();
James Chapmanfd558d12010-04-02 06:18:33 +0000428
429 sock_put(sk_tun);
430 sock_put(sk);
431 return 1;
432
433abort_put_sess_tun:
434 sock_put(sk_tun);
435abort_put_sess:
436 sock_put(sk);
437abort:
438 /* Free the original skb */
439 kfree_skb(skb);
440 return 1;
441}
442
443/*****************************************************************************
444 * Session (and tunnel control) socket create/destroy.
445 *****************************************************************************/
446
447/* Called by l2tp_core when a session socket is being closed.
448 */
449static void pppol2tp_session_close(struct l2tp_session *session)
450{
451 struct pppol2tp_session *ps = l2tp_session_priv(session);
452 struct sock *sk = ps->sock;
Tom Parkincf2f5c82013-03-19 06:11:21 +0000453 struct socket *sock = sk->sk_socket;
James Chapmanfd558d12010-04-02 06:18:33 +0000454
455 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
456
Tom Parkincf2f5c82013-03-19 06:11:21 +0000457 if (sock) {
458 inet_shutdown(sock, 2);
459 /* Don't let the session go away before our socket does */
460 l2tp_session_inc_refcount(session);
James Chapmanfd558d12010-04-02 06:18:33 +0000461 }
James Chapmanfd558d12010-04-02 06:18:33 +0000462}
463
464/* Really kill the session socket. (Called from sock_put() if
465 * refcnt == 0.)
466 */
467static void pppol2tp_session_destruct(struct sock *sk)
468{
Tom Parkinf6e16b22013-03-19 06:11:23 +0000469 struct l2tp_session *session = sk->sk_user_data;
470 if (session) {
James Chapmanfd558d12010-04-02 06:18:33 +0000471 sk->sk_user_data = NULL;
472 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
473 l2tp_session_dec_refcount(session);
474 }
James Chapmanfd558d12010-04-02 06:18:33 +0000475}
476
477/* Called when the PPPoX socket (session) is closed.
478 */
479static int pppol2tp_release(struct socket *sock)
480{
481 struct sock *sk = sock->sk;
482 struct l2tp_session *session;
483 int error;
484
485 if (!sk)
486 return 0;
487
488 error = -EBADF;
489 lock_sock(sk);
490 if (sock_flag(sk, SOCK_DEAD) != 0)
491 goto error;
492
493 pppox_unbind_sock(sk);
494
495 /* Signal the death of the socket. */
496 sk->sk_state = PPPOX_DEAD;
497 sock_orphan(sk);
498 sock->sk = NULL;
499
500 session = pppol2tp_sock_to_session(sk);
501
502 /* Purge any queued data */
James Chapmanfd558d12010-04-02 06:18:33 +0000503 if (session != NULL) {
Tom Parkinf6e16b22013-03-19 06:11:23 +0000504 __l2tp_session_unhash(session);
Tom Parkincf2f5c82013-03-19 06:11:21 +0000505 l2tp_session_queue_purge(session);
James Chapmanfd558d12010-04-02 06:18:33 +0000506 sock_put(sk);
507 }
Tom Parkincf2f5c82013-03-19 06:11:21 +0000508 skb_queue_purge(&sk->sk_receive_queue);
509 skb_queue_purge(&sk->sk_write_queue);
James Chapmanfd558d12010-04-02 06:18:33 +0000510
511 release_sock(sk);
512
513 /* This will delete the session context via
514 * pppol2tp_session_destruct() if the socket's refcnt drops to
515 * zero.
516 */
517 sock_put(sk);
518
519 return 0;
520
521error:
522 release_sock(sk);
523 return error;
524}
525
526static struct proto pppol2tp_sk_proto = {
527 .name = "PPPOL2TP",
528 .owner = THIS_MODULE,
529 .obj_size = sizeof(struct pppox_sock),
530};
531
532static int pppol2tp_backlog_recv(struct sock *sk, struct sk_buff *skb)
533{
534 int rc;
535
536 rc = l2tp_udp_encap_recv(sk, skb);
537 if (rc)
538 kfree_skb(skb);
539
540 return NET_RX_SUCCESS;
541}
542
543/* socket() handler. Initialize a new struct sock.
544 */
545static int pppol2tp_create(struct net *net, struct socket *sock)
546{
547 int error = -ENOMEM;
548 struct sock *sk;
549
550 sk = sk_alloc(net, PF_PPPOX, GFP_KERNEL, &pppol2tp_sk_proto);
551 if (!sk)
552 goto out;
553
554 sock_init_data(sock, sk);
555
556 sock->state = SS_UNCONNECTED;
557 sock->ops = &pppol2tp_ops;
558
559 sk->sk_backlog_rcv = pppol2tp_backlog_recv;
560 sk->sk_protocol = PX_PROTO_OL2TP;
561 sk->sk_family = PF_PPPOX;
562 sk->sk_state = PPPOX_NONE;
563 sk->sk_type = SOCK_STREAM;
564 sk->sk_destruct = pppol2tp_session_destruct;
565
566 error = 0;
567
568out:
569 return error;
570}
571
David S. Millerf66ef2d2010-04-03 15:01:37 -0700572#if defined(CONFIG_L2TP_DEBUGFS) || defined(CONFIG_L2TP_DEBUGFS_MODULE)
James Chapman0ad66142010-04-02 06:19:33 +0000573static void pppol2tp_show(struct seq_file *m, void *arg)
574{
575 struct l2tp_session *session = arg;
576 struct pppol2tp_session *ps = l2tp_session_priv(session);
577
578 if (ps) {
579 struct pppox_sock *po = pppox_sk(ps->sock);
580 if (po)
581 seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan));
582 }
583}
584#endif
585
James Chapmanfd558d12010-04-02 06:18:33 +0000586/* connect() handler. Attach a PPPoX socket to a tunnel UDP socket
587 */
588static int pppol2tp_connect(struct socket *sock, struct sockaddr *uservaddr,
589 int sockaddr_len, int flags)
590{
591 struct sock *sk = sock->sk;
592 struct sockaddr_pppol2tp *sp = (struct sockaddr_pppol2tp *) uservaddr;
593 struct pppox_sock *po = pppox_sk(sk);
594 struct l2tp_session *session = NULL;
595 struct l2tp_tunnel *tunnel;
596 struct pppol2tp_session *ps;
597 struct dst_entry *dst;
598 struct l2tp_session_cfg cfg = { 0, };
599 int error = 0;
James Chapmane0d44352010-04-02 06:18:54 +0000600 u32 tunnel_id, peer_tunnel_id;
601 u32 session_id, peer_session_id;
602 int ver = 2;
603 int fd;
James Chapmanfd558d12010-04-02 06:18:33 +0000604
605 lock_sock(sk);
606
607 error = -EINVAL;
608 if (sp->sa_protocol != PX_PROTO_OL2TP)
609 goto end;
610
611 /* Check for already bound sockets */
612 error = -EBUSY;
613 if (sk->sk_state & PPPOX_CONNECTED)
614 goto end;
615
616 /* We don't supporting rebinding anyway */
617 error = -EALREADY;
618 if (sk->sk_user_data)
619 goto end; /* socket is already attached */
620
James Chapmanb79585f2012-04-29 21:48:50 +0000621 /* Get params from socket address. Handle L2TPv2 and L2TPv3.
622 * This is nasty because there are different sockaddr_pppol2tp
623 * structs for L2TPv2, L2TPv3, over IPv4 and IPv6. We use
624 * the sockaddr size to determine which structure the caller
625 * is using.
626 */
627 peer_tunnel_id = 0;
James Chapmane0d44352010-04-02 06:18:54 +0000628 if (sockaddr_len == sizeof(struct sockaddr_pppol2tp)) {
629 fd = sp->pppol2tp.fd;
630 tunnel_id = sp->pppol2tp.s_tunnel;
631 peer_tunnel_id = sp->pppol2tp.d_tunnel;
632 session_id = sp->pppol2tp.s_session;
633 peer_session_id = sp->pppol2tp.d_session;
634 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3)) {
James Chapmanb79585f2012-04-29 21:48:50 +0000635 struct sockaddr_pppol2tpv3 *sp3 =
636 (struct sockaddr_pppol2tpv3 *) sp;
James Chapmane0d44352010-04-02 06:18:54 +0000637 ver = 3;
638 fd = sp3->pppol2tp.fd;
639 tunnel_id = sp3->pppol2tp.s_tunnel;
640 peer_tunnel_id = sp3->pppol2tp.d_tunnel;
641 session_id = sp3->pppol2tp.s_session;
642 peer_session_id = sp3->pppol2tp.d_session;
James Chapmanb79585f2012-04-29 21:48:50 +0000643 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpin6)) {
644 struct sockaddr_pppol2tpin6 *sp6 =
645 (struct sockaddr_pppol2tpin6 *) sp;
646 fd = sp6->pppol2tp.fd;
647 tunnel_id = sp6->pppol2tp.s_tunnel;
648 peer_tunnel_id = sp6->pppol2tp.d_tunnel;
649 session_id = sp6->pppol2tp.s_session;
650 peer_session_id = sp6->pppol2tp.d_session;
651 } else if (sockaddr_len == sizeof(struct sockaddr_pppol2tpv3in6)) {
652 struct sockaddr_pppol2tpv3in6 *sp6 =
653 (struct sockaddr_pppol2tpv3in6 *) sp;
654 ver = 3;
655 fd = sp6->pppol2tp.fd;
656 tunnel_id = sp6->pppol2tp.s_tunnel;
657 peer_tunnel_id = sp6->pppol2tp.d_tunnel;
658 session_id = sp6->pppol2tp.s_session;
659 peer_session_id = sp6->pppol2tp.d_session;
James Chapmane0d44352010-04-02 06:18:54 +0000660 } else {
661 error = -EINVAL;
662 goto end; /* bad socket address */
663 }
664
665 /* Don't bind if tunnel_id is 0 */
James Chapmanfd558d12010-04-02 06:18:33 +0000666 error = -EINVAL;
James Chapmane0d44352010-04-02 06:18:54 +0000667 if (tunnel_id == 0)
James Chapmanfd558d12010-04-02 06:18:33 +0000668 goto end;
669
James Chapman309795f2010-04-02 06:19:10 +0000670 tunnel = l2tp_tunnel_find(sock_net(sk), tunnel_id);
671
James Chapmane0d44352010-04-02 06:18:54 +0000672 /* Special case: create tunnel context if session_id and
673 * peer_session_id is 0. Otherwise look up tunnel using supplied
James Chapmanfd558d12010-04-02 06:18:33 +0000674 * tunnel id.
675 */
James Chapmane0d44352010-04-02 06:18:54 +0000676 if ((session_id == 0) && (peer_session_id == 0)) {
James Chapman309795f2010-04-02 06:19:10 +0000677 if (tunnel == NULL) {
678 struct l2tp_tunnel_cfg tcfg = {
679 .encap = L2TP_ENCAPTYPE_UDP,
680 .debug = 0,
681 };
682 error = l2tp_tunnel_create(sock_net(sk), fd, ver, tunnel_id, peer_tunnel_id, &tcfg, &tunnel);
683 if (error < 0)
684 goto end;
685 }
James Chapmanfd558d12010-04-02 06:18:33 +0000686 } else {
James Chapmanfd558d12010-04-02 06:18:33 +0000687 /* Error if we can't find the tunnel */
688 error = -ENOENT;
689 if (tunnel == NULL)
690 goto end;
691
692 /* Error if socket is not prepped */
693 if (tunnel->sock == NULL)
694 goto end;
695 }
696
697 if (tunnel->recv_payload_hook == NULL)
698 tunnel->recv_payload_hook = pppol2tp_recv_payload_hook;
699
James Chapmanb79585f2012-04-29 21:48:50 +0000700 if (tunnel->peer_tunnel_id == 0)
701 tunnel->peer_tunnel_id = peer_tunnel_id;
James Chapmanfd558d12010-04-02 06:18:33 +0000702
James Chapman309795f2010-04-02 06:19:10 +0000703 /* Create session if it doesn't already exist. We handle the
704 * case where a session was previously created by the netlink
705 * interface by checking that the session doesn't already have
706 * a socket and its tunnel socket are what we expect. If any
707 * of those checks fail, return EEXIST to the caller.
708 */
709 session = l2tp_session_find(sock_net(sk), tunnel, session_id);
710 if (session == NULL) {
711 /* Default MTU must allow space for UDP/L2TP/PPP
712 * headers.
713 */
714 cfg.mtu = cfg.mru = 1500 - PPPOL2TP_HEADER_OVERHEAD;
715
716 /* Allocate and initialize a new session context. */
717 session = l2tp_session_create(sizeof(struct pppol2tp_session),
718 tunnel, session_id,
719 peer_session_id, &cfg);
720 if (session == NULL) {
721 error = -ENOMEM;
722 goto end;
723 }
724 } else {
725 ps = l2tp_session_priv(session);
726 error = -EEXIST;
727 if (ps->sock != NULL)
728 goto end;
729
730 /* consistency checks */
731 if (ps->tunnel_sock != tunnel->sock)
732 goto end;
733 }
734
735 /* Associate session with its PPPoL2TP socket */
James Chapmanfd558d12010-04-02 06:18:33 +0000736 ps = l2tp_session_priv(session);
737 ps->owner = current->pid;
738 ps->sock = sk;
739 ps->tunnel_sock = tunnel->sock;
740
741 session->recv_skb = pppol2tp_recv;
742 session->session_close = pppol2tp_session_close;
David S. Millerf66ef2d2010-04-03 15:01:37 -0700743#if defined(CONFIG_L2TP_DEBUGFS) || defined(CONFIG_L2TP_DEBUGFS_MODULE)
James Chapman0ad66142010-04-02 06:19:33 +0000744 session->show = pppol2tp_show;
745#endif
James Chapmanfd558d12010-04-02 06:18:33 +0000746
747 /* We need to know each time a skb is dropped from the reorder
748 * queue.
749 */
750 session->ref = pppol2tp_session_sock_hold;
751 session->deref = pppol2tp_session_sock_put;
752
753 /* If PMTU discovery was enabled, use the MTU that was discovered */
754 dst = sk_dst_get(sk);
755 if (dst != NULL) {
756 u32 pmtu = dst_mtu(__sk_dst_get(sk));
757 if (pmtu != 0)
758 session->mtu = session->mru = pmtu -
759 PPPOL2TP_HEADER_OVERHEAD;
760 dst_release(dst);
761 }
762
763 /* Special case: if source & dest session_id == 0x0000, this
764 * socket is being created to manage the tunnel. Just set up
765 * the internal context for use by ioctl() and sockopt()
766 * handlers.
767 */
768 if ((session->session_id == 0) &&
769 (session->peer_session_id == 0)) {
770 error = 0;
771 goto out_no_ppp;
772 }
773
774 /* The only header we need to worry about is the L2TP
775 * header. This size is different depending on whether
776 * sequence numbers are enabled for the data channel.
777 */
778 po->chan.hdrlen = PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
779
780 po->chan.private = sk;
781 po->chan.ops = &pppol2tp_chan_ops;
782 po->chan.mtu = session->mtu;
783
784 error = ppp_register_net_channel(sock_net(sk), &po->chan);
785 if (error)
786 goto end;
787
788out_no_ppp:
789 /* This is how we get the session context from the socket. */
790 sk->sk_user_data = session;
791 sk->sk_state = PPPOX_CONNECTED;
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000792 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: created\n",
793 session->name);
James Chapmanfd558d12010-04-02 06:18:33 +0000794
795end:
796 release_sock(sk);
797
798 return error;
799}
800
James Chapman309795f2010-04-02 06:19:10 +0000801#ifdef CONFIG_L2TP_V3
802
803/* Called when creating sessions via the netlink interface.
804 */
805static int pppol2tp_session_create(struct net *net, u32 tunnel_id, u32 session_id, u32 peer_session_id, struct l2tp_session_cfg *cfg)
806{
807 int error;
808 struct l2tp_tunnel *tunnel;
809 struct l2tp_session *session;
810 struct pppol2tp_session *ps;
811
812 tunnel = l2tp_tunnel_find(net, tunnel_id);
813
814 /* Error if we can't find the tunnel */
815 error = -ENOENT;
816 if (tunnel == NULL)
817 goto out;
818
819 /* Error if tunnel socket is not prepped */
820 if (tunnel->sock == NULL)
821 goto out;
822
823 /* Check that this session doesn't already exist */
824 error = -EEXIST;
825 session = l2tp_session_find(net, tunnel, session_id);
826 if (session != NULL)
827 goto out;
828
829 /* Default MTU values. */
830 if (cfg->mtu == 0)
831 cfg->mtu = 1500 - PPPOL2TP_HEADER_OVERHEAD;
832 if (cfg->mru == 0)
833 cfg->mru = cfg->mtu;
834
835 /* Allocate and initialize a new session context. */
836 error = -ENOMEM;
837 session = l2tp_session_create(sizeof(struct pppol2tp_session),
838 tunnel, session_id,
839 peer_session_id, cfg);
840 if (session == NULL)
841 goto out;
842
843 ps = l2tp_session_priv(session);
844 ps->tunnel_sock = tunnel->sock;
845
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000846 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: created\n",
847 session->name);
James Chapman309795f2010-04-02 06:19:10 +0000848
849 error = 0;
850
851out:
852 return error;
853}
854
James Chapman309795f2010-04-02 06:19:10 +0000855#endif /* CONFIG_L2TP_V3 */
856
James Chapmanfd558d12010-04-02 06:18:33 +0000857/* getname() support.
858 */
859static int pppol2tp_getname(struct socket *sock, struct sockaddr *uaddr,
860 int *usockaddr_len, int peer)
861{
James Chapmane0d44352010-04-02 06:18:54 +0000862 int len = 0;
James Chapmanfd558d12010-04-02 06:18:33 +0000863 int error = 0;
864 struct l2tp_session *session;
865 struct l2tp_tunnel *tunnel;
866 struct sock *sk = sock->sk;
867 struct inet_sock *inet;
868 struct pppol2tp_session *pls;
869
870 error = -ENOTCONN;
871 if (sk == NULL)
872 goto end;
873 if (sk->sk_state != PPPOX_CONNECTED)
874 goto end;
875
876 error = -EBADF;
877 session = pppol2tp_sock_to_session(sk);
878 if (session == NULL)
879 goto end;
880
881 pls = l2tp_session_priv(session);
882 tunnel = l2tp_sock_to_tunnel(pls->tunnel_sock);
883 if (tunnel == NULL) {
884 error = -EBADF;
885 goto end_put_sess;
886 }
887
Benjamin LaHaisebbdb32c2012-03-20 03:57:54 +0000888 inet = inet_sk(tunnel->sock);
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000889 if ((tunnel->version == 2) && (tunnel->sock->sk_family == AF_INET)) {
James Chapmane0d44352010-04-02 06:18:54 +0000890 struct sockaddr_pppol2tp sp;
891 len = sizeof(sp);
892 memset(&sp, 0, len);
893 sp.sa_family = AF_PPPOX;
894 sp.sa_protocol = PX_PROTO_OL2TP;
895 sp.pppol2tp.fd = tunnel->fd;
896 sp.pppol2tp.pid = pls->owner;
897 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
898 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
899 sp.pppol2tp.s_session = session->session_id;
900 sp.pppol2tp.d_session = session->peer_session_id;
901 sp.pppol2tp.addr.sin_family = AF_INET;
902 sp.pppol2tp.addr.sin_port = inet->inet_dport;
903 sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr;
904 memcpy(uaddr, &sp, len);
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000905#if IS_ENABLED(CONFIG_IPV6)
906 } else if ((tunnel->version == 2) &&
907 (tunnel->sock->sk_family == AF_INET6)) {
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000908 struct sockaddr_pppol2tpin6 sp;
Eric Dumazetefe42082013-10-03 15:42:29 -0700909
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000910 len = sizeof(sp);
911 memset(&sp, 0, len);
912 sp.sa_family = AF_PPPOX;
913 sp.sa_protocol = PX_PROTO_OL2TP;
914 sp.pppol2tp.fd = tunnel->fd;
915 sp.pppol2tp.pid = pls->owner;
916 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
917 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
918 sp.pppol2tp.s_session = session->session_id;
919 sp.pppol2tp.d_session = session->peer_session_id;
920 sp.pppol2tp.addr.sin6_family = AF_INET6;
921 sp.pppol2tp.addr.sin6_port = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -0700922 memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr,
923 sizeof(tunnel->sock->sk_v6_daddr));
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000924 memcpy(uaddr, &sp, len);
925 } else if ((tunnel->version == 3) &&
926 (tunnel->sock->sk_family == AF_INET6)) {
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000927 struct sockaddr_pppol2tpv3in6 sp;
Eric Dumazetefe42082013-10-03 15:42:29 -0700928
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000929 len = sizeof(sp);
930 memset(&sp, 0, len);
931 sp.sa_family = AF_PPPOX;
932 sp.sa_protocol = PX_PROTO_OL2TP;
933 sp.pppol2tp.fd = tunnel->fd;
934 sp.pppol2tp.pid = pls->owner;
935 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
936 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
937 sp.pppol2tp.s_session = session->session_id;
938 sp.pppol2tp.d_session = session->peer_session_id;
939 sp.pppol2tp.addr.sin6_family = AF_INET6;
940 sp.pppol2tp.addr.sin6_port = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -0700941 memcpy(&sp.pppol2tp.addr.sin6_addr, &tunnel->sock->sk_v6_daddr,
942 sizeof(tunnel->sock->sk_v6_daddr));
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000943 memcpy(uaddr, &sp, len);
944#endif
James Chapmane0d44352010-04-02 06:18:54 +0000945 } else if (tunnel->version == 3) {
946 struct sockaddr_pppol2tpv3 sp;
947 len = sizeof(sp);
948 memset(&sp, 0, len);
949 sp.sa_family = AF_PPPOX;
950 sp.sa_protocol = PX_PROTO_OL2TP;
951 sp.pppol2tp.fd = tunnel->fd;
952 sp.pppol2tp.pid = pls->owner;
953 sp.pppol2tp.s_tunnel = tunnel->tunnel_id;
954 sp.pppol2tp.d_tunnel = tunnel->peer_tunnel_id;
955 sp.pppol2tp.s_session = session->session_id;
956 sp.pppol2tp.d_session = session->peer_session_id;
957 sp.pppol2tp.addr.sin_family = AF_INET;
958 sp.pppol2tp.addr.sin_port = inet->inet_dport;
959 sp.pppol2tp.addr.sin_addr.s_addr = inet->inet_daddr;
960 memcpy(uaddr, &sp, len);
961 }
James Chapmanfd558d12010-04-02 06:18:33 +0000962
963 *usockaddr_len = len;
964
965 sock_put(pls->tunnel_sock);
966end_put_sess:
967 sock_put(sk);
968 error = 0;
969
970end:
971 return error;
972}
973
974/****************************************************************************
975 * ioctl() handlers.
976 *
977 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
978 * sockets. However, in order to control kernel tunnel features, we allow
979 * userspace to create a special "tunnel" PPPoX socket which is used for
980 * control only. Tunnel PPPoX sockets have session_id == 0 and simply allow
981 * the user application to issue L2TP setsockopt(), getsockopt() and ioctl()
982 * calls.
983 ****************************************************************************/
984
985static void pppol2tp_copy_stats(struct pppol2tp_ioc_stats *dest,
986 struct l2tp_stats *stats)
987{
Tom Parkin7b7c0712013-03-19 06:11:22 +0000988 dest->tx_packets = atomic_long_read(&stats->tx_packets);
989 dest->tx_bytes = atomic_long_read(&stats->tx_bytes);
990 dest->tx_errors = atomic_long_read(&stats->tx_errors);
991 dest->rx_packets = atomic_long_read(&stats->rx_packets);
992 dest->rx_bytes = atomic_long_read(&stats->rx_bytes);
993 dest->rx_seq_discards = atomic_long_read(&stats->rx_seq_discards);
994 dest->rx_oos_packets = atomic_long_read(&stats->rx_oos_packets);
995 dest->rx_errors = atomic_long_read(&stats->rx_errors);
James Chapmanfd558d12010-04-02 06:18:33 +0000996}
997
998/* Session ioctl helper.
999 */
1000static int pppol2tp_session_ioctl(struct l2tp_session *session,
1001 unsigned int cmd, unsigned long arg)
1002{
1003 struct ifreq ifr;
1004 int err = 0;
1005 struct sock *sk;
1006 int val = (int) arg;
1007 struct pppol2tp_session *ps = l2tp_session_priv(session);
1008 struct l2tp_tunnel *tunnel = session->tunnel;
1009 struct pppol2tp_ioc_stats stats;
1010
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001011 l2tp_dbg(session, PPPOL2TP_MSG_CONTROL,
1012 "%s: pppol2tp_session_ioctl(cmd=%#x, arg=%#lx)\n",
1013 session->name, cmd, arg);
James Chapmanfd558d12010-04-02 06:18:33 +00001014
1015 sk = ps->sock;
1016 sock_hold(sk);
1017
1018 switch (cmd) {
1019 case SIOCGIFMTU:
1020 err = -ENXIO;
1021 if (!(sk->sk_state & PPPOX_CONNECTED))
1022 break;
1023
1024 err = -EFAULT;
1025 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1026 break;
1027 ifr.ifr_mtu = session->mtu;
1028 if (copy_to_user((void __user *) arg, &ifr, sizeof(struct ifreq)))
1029 break;
1030
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001031 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: get mtu=%d\n",
1032 session->name, session->mtu);
James Chapmanfd558d12010-04-02 06:18:33 +00001033 err = 0;
1034 break;
1035
1036 case SIOCSIFMTU:
1037 err = -ENXIO;
1038 if (!(sk->sk_state & PPPOX_CONNECTED))
1039 break;
1040
1041 err = -EFAULT;
1042 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1043 break;
1044
1045 session->mtu = ifr.ifr_mtu;
1046
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001047 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: set mtu=%d\n",
1048 session->name, session->mtu);
James Chapmanfd558d12010-04-02 06:18:33 +00001049 err = 0;
1050 break;
1051
1052 case PPPIOCGMRU:
1053 err = -ENXIO;
1054 if (!(sk->sk_state & PPPOX_CONNECTED))
1055 break;
1056
1057 err = -EFAULT;
1058 if (put_user(session->mru, (int __user *) arg))
1059 break;
1060
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001061 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: get mru=%d\n",
1062 session->name, session->mru);
James Chapmanfd558d12010-04-02 06:18:33 +00001063 err = 0;
1064 break;
1065
1066 case PPPIOCSMRU:
1067 err = -ENXIO;
1068 if (!(sk->sk_state & PPPOX_CONNECTED))
1069 break;
1070
1071 err = -EFAULT;
1072 if (get_user(val, (int __user *) arg))
1073 break;
1074
1075 session->mru = val;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001076 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: set mru=%d\n",
1077 session->name, session->mru);
James Chapmanfd558d12010-04-02 06:18:33 +00001078 err = 0;
1079 break;
1080
1081 case PPPIOCGFLAGS:
1082 err = -EFAULT;
1083 if (put_user(ps->flags, (int __user *) arg))
1084 break;
1085
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001086 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: get flags=%d\n",
1087 session->name, ps->flags);
James Chapmanfd558d12010-04-02 06:18:33 +00001088 err = 0;
1089 break;
1090
1091 case PPPIOCSFLAGS:
1092 err = -EFAULT;
1093 if (get_user(val, (int __user *) arg))
1094 break;
1095 ps->flags = val;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001096 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: set flags=%d\n",
1097 session->name, ps->flags);
James Chapmanfd558d12010-04-02 06:18:33 +00001098 err = 0;
1099 break;
1100
1101 case PPPIOCGL2TPSTATS:
1102 err = -ENXIO;
1103 if (!(sk->sk_state & PPPOX_CONNECTED))
1104 break;
1105
1106 memset(&stats, 0, sizeof(stats));
1107 stats.tunnel_id = tunnel->tunnel_id;
1108 stats.session_id = session->session_id;
1109 pppol2tp_copy_stats(&stats, &session->stats);
1110 if (copy_to_user((void __user *) arg, &stats,
1111 sizeof(stats)))
1112 break;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001113 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: get L2TP stats\n",
1114 session->name);
James Chapmanfd558d12010-04-02 06:18:33 +00001115 err = 0;
1116 break;
1117
1118 default:
1119 err = -ENOSYS;
1120 break;
1121 }
1122
1123 sock_put(sk);
1124
1125 return err;
1126}
1127
1128/* Tunnel ioctl helper.
1129 *
1130 * Note the special handling for PPPIOCGL2TPSTATS below. If the ioctl data
1131 * specifies a session_id, the session ioctl handler is called. This allows an
1132 * application to retrieve session stats via a tunnel socket.
1133 */
1134static int pppol2tp_tunnel_ioctl(struct l2tp_tunnel *tunnel,
1135 unsigned int cmd, unsigned long arg)
1136{
1137 int err = 0;
1138 struct sock *sk;
1139 struct pppol2tp_ioc_stats stats;
1140
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001141 l2tp_dbg(tunnel, PPPOL2TP_MSG_CONTROL,
1142 "%s: pppol2tp_tunnel_ioctl(cmd=%#x, arg=%#lx)\n",
1143 tunnel->name, cmd, arg);
James Chapmanfd558d12010-04-02 06:18:33 +00001144
1145 sk = tunnel->sock;
1146 sock_hold(sk);
1147
1148 switch (cmd) {
1149 case PPPIOCGL2TPSTATS:
1150 err = -ENXIO;
1151 if (!(sk->sk_state & PPPOX_CONNECTED))
1152 break;
1153
1154 if (copy_from_user(&stats, (void __user *) arg,
1155 sizeof(stats))) {
1156 err = -EFAULT;
1157 break;
1158 }
1159 if (stats.session_id != 0) {
1160 /* resend to session ioctl handler */
1161 struct l2tp_session *session =
James Chapmanf7faffa2010-04-02 06:18:49 +00001162 l2tp_session_find(sock_net(sk), tunnel, stats.session_id);
James Chapmanfd558d12010-04-02 06:18:33 +00001163 if (session != NULL)
1164 err = pppol2tp_session_ioctl(session, cmd, arg);
1165 else
1166 err = -EBADR;
1167 break;
1168 }
1169#ifdef CONFIG_XFRM
1170 stats.using_ipsec = (sk->sk_policy[0] || sk->sk_policy[1]) ? 1 : 0;
1171#endif
1172 pppol2tp_copy_stats(&stats, &tunnel->stats);
1173 if (copy_to_user((void __user *) arg, &stats, sizeof(stats))) {
1174 err = -EFAULT;
1175 break;
1176 }
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001177 l2tp_info(tunnel, PPPOL2TP_MSG_CONTROL, "%s: get L2TP stats\n",
1178 tunnel->name);
James Chapmanfd558d12010-04-02 06:18:33 +00001179 err = 0;
1180 break;
1181
1182 default:
1183 err = -ENOSYS;
1184 break;
1185 }
1186
1187 sock_put(sk);
1188
1189 return err;
1190}
1191
1192/* Main ioctl() handler.
1193 * Dispatch to tunnel or session helpers depending on the socket.
1194 */
1195static int pppol2tp_ioctl(struct socket *sock, unsigned int cmd,
1196 unsigned long arg)
1197{
1198 struct sock *sk = sock->sk;
1199 struct l2tp_session *session;
1200 struct l2tp_tunnel *tunnel;
1201 struct pppol2tp_session *ps;
1202 int err;
1203
1204 if (!sk)
1205 return 0;
1206
1207 err = -EBADF;
1208 if (sock_flag(sk, SOCK_DEAD) != 0)
1209 goto end;
1210
1211 err = -ENOTCONN;
1212 if ((sk->sk_user_data == NULL) ||
1213 (!(sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND))))
1214 goto end;
1215
1216 /* Get session context from the socket */
1217 err = -EBADF;
1218 session = pppol2tp_sock_to_session(sk);
1219 if (session == NULL)
1220 goto end;
1221
1222 /* Special case: if session's session_id is zero, treat ioctl as a
1223 * tunnel ioctl
1224 */
1225 ps = l2tp_session_priv(session);
1226 if ((session->session_id == 0) &&
1227 (session->peer_session_id == 0)) {
1228 err = -EBADF;
1229 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1230 if (tunnel == NULL)
1231 goto end_put_sess;
1232
1233 err = pppol2tp_tunnel_ioctl(tunnel, cmd, arg);
1234 sock_put(ps->tunnel_sock);
1235 goto end_put_sess;
1236 }
1237
1238 err = pppol2tp_session_ioctl(session, cmd, arg);
1239
1240end_put_sess:
1241 sock_put(sk);
1242end:
1243 return err;
1244}
1245
1246/*****************************************************************************
1247 * setsockopt() / getsockopt() support.
1248 *
1249 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
1250 * sockets. In order to control kernel tunnel features, we allow userspace to
1251 * create a special "tunnel" PPPoX socket which is used for control only.
1252 * Tunnel PPPoX sockets have session_id == 0 and simply allow the user
1253 * application to issue L2TP setsockopt(), getsockopt() and ioctl() calls.
1254 *****************************************************************************/
1255
1256/* Tunnel setsockopt() helper.
1257 */
1258static int pppol2tp_tunnel_setsockopt(struct sock *sk,
1259 struct l2tp_tunnel *tunnel,
1260 int optname, int val)
1261{
1262 int err = 0;
1263
1264 switch (optname) {
1265 case PPPOL2TP_SO_DEBUG:
1266 tunnel->debug = val;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001267 l2tp_info(tunnel, PPPOL2TP_MSG_CONTROL, "%s: set debug=%x\n",
1268 tunnel->name, tunnel->debug);
James Chapmanfd558d12010-04-02 06:18:33 +00001269 break;
1270
1271 default:
1272 err = -ENOPROTOOPT;
1273 break;
1274 }
1275
1276 return err;
1277}
1278
1279/* Session setsockopt helper.
1280 */
1281static int pppol2tp_session_setsockopt(struct sock *sk,
1282 struct l2tp_session *session,
1283 int optname, int val)
1284{
1285 int err = 0;
1286 struct pppol2tp_session *ps = l2tp_session_priv(session);
1287
1288 switch (optname) {
1289 case PPPOL2TP_SO_RECVSEQ:
1290 if ((val != 0) && (val != 1)) {
1291 err = -EINVAL;
1292 break;
1293 }
1294 session->recv_seq = val ? -1 : 0;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001295 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1296 "%s: set recv_seq=%d\n",
1297 session->name, session->recv_seq);
James Chapmanfd558d12010-04-02 06:18:33 +00001298 break;
1299
1300 case PPPOL2TP_SO_SENDSEQ:
1301 if ((val != 0) && (val != 1)) {
1302 err = -EINVAL;
1303 break;
1304 }
1305 session->send_seq = val ? -1 : 0;
1306 {
1307 struct sock *ssk = ps->sock;
1308 struct pppox_sock *po = pppox_sk(ssk);
1309 po->chan.hdrlen = val ? PPPOL2TP_L2TP_HDR_SIZE_SEQ :
1310 PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
1311 }
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001312 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1313 "%s: set send_seq=%d\n",
1314 session->name, session->send_seq);
James Chapmanfd558d12010-04-02 06:18:33 +00001315 break;
1316
1317 case PPPOL2TP_SO_LNSMODE:
1318 if ((val != 0) && (val != 1)) {
1319 err = -EINVAL;
1320 break;
1321 }
1322 session->lns_mode = val ? -1 : 0;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001323 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1324 "%s: set lns_mode=%d\n",
1325 session->name, session->lns_mode);
James Chapmanfd558d12010-04-02 06:18:33 +00001326 break;
1327
1328 case PPPOL2TP_SO_DEBUG:
1329 session->debug = val;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001330 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: set debug=%x\n",
1331 session->name, session->debug);
James Chapmanfd558d12010-04-02 06:18:33 +00001332 break;
1333
1334 case PPPOL2TP_SO_REORDERTO:
1335 session->reorder_timeout = msecs_to_jiffies(val);
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001336 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1337 "%s: set reorder_timeout=%d\n",
1338 session->name, session->reorder_timeout);
James Chapmanfd558d12010-04-02 06:18:33 +00001339 break;
1340
1341 default:
1342 err = -ENOPROTOOPT;
1343 break;
1344 }
1345
1346 return err;
1347}
1348
1349/* Main setsockopt() entry point.
1350 * Does API checks, then calls either the tunnel or session setsockopt
1351 * handler, according to whether the PPPoL2TP socket is a for a regular
1352 * session or the special tunnel type.
1353 */
1354static int pppol2tp_setsockopt(struct socket *sock, int level, int optname,
1355 char __user *optval, unsigned int optlen)
1356{
1357 struct sock *sk = sock->sk;
1358 struct l2tp_session *session;
1359 struct l2tp_tunnel *tunnel;
1360 struct pppol2tp_session *ps;
1361 int val;
1362 int err;
1363
1364 if (level != SOL_PPPOL2TP)
1365 return udp_prot.setsockopt(sk, level, optname, optval, optlen);
1366
1367 if (optlen < sizeof(int))
1368 return -EINVAL;
1369
1370 if (get_user(val, (int __user *)optval))
1371 return -EFAULT;
1372
1373 err = -ENOTCONN;
1374 if (sk->sk_user_data == NULL)
1375 goto end;
1376
1377 /* Get session context from the socket */
1378 err = -EBADF;
1379 session = pppol2tp_sock_to_session(sk);
1380 if (session == NULL)
1381 goto end;
1382
1383 /* Special case: if session_id == 0x0000, treat as operation on tunnel
1384 */
1385 ps = l2tp_session_priv(session);
1386 if ((session->session_id == 0) &&
1387 (session->peer_session_id == 0)) {
1388 err = -EBADF;
1389 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1390 if (tunnel == NULL)
1391 goto end_put_sess;
1392
1393 err = pppol2tp_tunnel_setsockopt(sk, tunnel, optname, val);
1394 sock_put(ps->tunnel_sock);
1395 } else
1396 err = pppol2tp_session_setsockopt(sk, session, optname, val);
1397
1398 err = 0;
1399
1400end_put_sess:
1401 sock_put(sk);
1402end:
1403 return err;
1404}
1405
1406/* Tunnel getsockopt helper. Called with sock locked.
1407 */
1408static int pppol2tp_tunnel_getsockopt(struct sock *sk,
1409 struct l2tp_tunnel *tunnel,
1410 int optname, int *val)
1411{
1412 int err = 0;
1413
1414 switch (optname) {
1415 case PPPOL2TP_SO_DEBUG:
1416 *val = tunnel->debug;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001417 l2tp_info(tunnel, PPPOL2TP_MSG_CONTROL, "%s: get debug=%x\n",
1418 tunnel->name, tunnel->debug);
James Chapmanfd558d12010-04-02 06:18:33 +00001419 break;
1420
1421 default:
1422 err = -ENOPROTOOPT;
1423 break;
1424 }
1425
1426 return err;
1427}
1428
1429/* Session getsockopt helper. Called with sock locked.
1430 */
1431static int pppol2tp_session_getsockopt(struct sock *sk,
1432 struct l2tp_session *session,
1433 int optname, int *val)
1434{
1435 int err = 0;
1436
1437 switch (optname) {
1438 case PPPOL2TP_SO_RECVSEQ:
1439 *val = session->recv_seq;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001440 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1441 "%s: get recv_seq=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001442 break;
1443
1444 case PPPOL2TP_SO_SENDSEQ:
1445 *val = session->send_seq;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001446 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1447 "%s: get send_seq=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001448 break;
1449
1450 case PPPOL2TP_SO_LNSMODE:
1451 *val = session->lns_mode;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001452 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1453 "%s: get lns_mode=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001454 break;
1455
1456 case PPPOL2TP_SO_DEBUG:
1457 *val = session->debug;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001458 l2tp_info(session, PPPOL2TP_MSG_CONTROL, "%s: get debug=%d\n",
1459 session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001460 break;
1461
1462 case PPPOL2TP_SO_REORDERTO:
1463 *val = (int) jiffies_to_msecs(session->reorder_timeout);
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001464 l2tp_info(session, PPPOL2TP_MSG_CONTROL,
1465 "%s: get reorder_timeout=%d\n", session->name, *val);
James Chapmanfd558d12010-04-02 06:18:33 +00001466 break;
1467
1468 default:
1469 err = -ENOPROTOOPT;
1470 }
1471
1472 return err;
1473}
1474
1475/* Main getsockopt() entry point.
1476 * Does API checks, then calls either the tunnel or session getsockopt
1477 * handler, according to whether the PPPoX socket is a for a regular session
1478 * or the special tunnel type.
1479 */
Joe Perchese3192692012-06-03 17:41:40 +00001480static int pppol2tp_getsockopt(struct socket *sock, int level, int optname,
1481 char __user *optval, int __user *optlen)
James Chapmanfd558d12010-04-02 06:18:33 +00001482{
1483 struct sock *sk = sock->sk;
1484 struct l2tp_session *session;
1485 struct l2tp_tunnel *tunnel;
1486 int val, len;
1487 int err;
1488 struct pppol2tp_session *ps;
1489
1490 if (level != SOL_PPPOL2TP)
1491 return udp_prot.getsockopt(sk, level, optname, optval, optlen);
1492
Joe Perchese3192692012-06-03 17:41:40 +00001493 if (get_user(len, optlen))
James Chapmanfd558d12010-04-02 06:18:33 +00001494 return -EFAULT;
1495
1496 len = min_t(unsigned int, len, sizeof(int));
1497
1498 if (len < 0)
1499 return -EINVAL;
1500
1501 err = -ENOTCONN;
1502 if (sk->sk_user_data == NULL)
1503 goto end;
1504
1505 /* Get the session context */
1506 err = -EBADF;
1507 session = pppol2tp_sock_to_session(sk);
1508 if (session == NULL)
1509 goto end;
1510
1511 /* Special case: if session_id == 0x0000, treat as operation on tunnel */
1512 ps = l2tp_session_priv(session);
1513 if ((session->session_id == 0) &&
1514 (session->peer_session_id == 0)) {
1515 err = -EBADF;
1516 tunnel = l2tp_sock_to_tunnel(ps->tunnel_sock);
1517 if (tunnel == NULL)
1518 goto end_put_sess;
1519
1520 err = pppol2tp_tunnel_getsockopt(sk, tunnel, optname, &val);
1521 sock_put(ps->tunnel_sock);
1522 } else
1523 err = pppol2tp_session_getsockopt(sk, session, optname, &val);
1524
1525 err = -EFAULT;
Joe Perchese3192692012-06-03 17:41:40 +00001526 if (put_user(len, optlen))
James Chapmanfd558d12010-04-02 06:18:33 +00001527 goto end_put_sess;
1528
1529 if (copy_to_user((void __user *) optval, &val, len))
1530 goto end_put_sess;
1531
1532 err = 0;
1533
1534end_put_sess:
1535 sock_put(sk);
1536end:
1537 return err;
1538}
1539
1540/*****************************************************************************
1541 * /proc filesystem for debug
James Chapmanf7faffa2010-04-02 06:18:49 +00001542 * Since the original pppol2tp driver provided /proc/net/pppol2tp for
1543 * L2TPv2, we dump only L2TPv2 tunnels and sessions here.
James Chapmanfd558d12010-04-02 06:18:33 +00001544 *****************************************************************************/
1545
1546static unsigned int pppol2tp_net_id;
1547
1548#ifdef CONFIG_PROC_FS
1549
1550struct pppol2tp_seq_data {
1551 struct seq_net_private p;
1552 int tunnel_idx; /* current tunnel */
1553 int session_idx; /* index of session within current tunnel */
1554 struct l2tp_tunnel *tunnel;
1555 struct l2tp_session *session; /* NULL means get next tunnel */
1556};
1557
1558static void pppol2tp_next_tunnel(struct net *net, struct pppol2tp_seq_data *pd)
1559{
James Chapmanf7faffa2010-04-02 06:18:49 +00001560 for (;;) {
1561 pd->tunnel = l2tp_tunnel_find_nth(net, pd->tunnel_idx);
1562 pd->tunnel_idx++;
1563
1564 if (pd->tunnel == NULL)
1565 break;
1566
1567 /* Ignore L2TPv3 tunnels */
1568 if (pd->tunnel->version < 3)
1569 break;
1570 }
James Chapmanfd558d12010-04-02 06:18:33 +00001571}
1572
1573static void pppol2tp_next_session(struct net *net, struct pppol2tp_seq_data *pd)
1574{
1575 pd->session = l2tp_session_find_nth(pd->tunnel, pd->session_idx);
1576 pd->session_idx++;
James Chapmanf7faffa2010-04-02 06:18:49 +00001577
James Chapmanfd558d12010-04-02 06:18:33 +00001578 if (pd->session == NULL) {
1579 pd->session_idx = 0;
1580 pppol2tp_next_tunnel(net, pd);
1581 }
1582}
1583
1584static void *pppol2tp_seq_start(struct seq_file *m, loff_t *offs)
1585{
1586 struct pppol2tp_seq_data *pd = SEQ_START_TOKEN;
1587 loff_t pos = *offs;
1588 struct net *net;
1589
1590 if (!pos)
1591 goto out;
1592
1593 BUG_ON(m->private == NULL);
1594 pd = m->private;
1595 net = seq_file_net(m);
1596
1597 if (pd->tunnel == NULL)
1598 pppol2tp_next_tunnel(net, pd);
1599 else
1600 pppol2tp_next_session(net, pd);
1601
1602 /* NULL tunnel and session indicates end of list */
1603 if ((pd->tunnel == NULL) && (pd->session == NULL))
1604 pd = NULL;
1605
1606out:
1607 return pd;
1608}
1609
1610static void *pppol2tp_seq_next(struct seq_file *m, void *v, loff_t *pos)
1611{
1612 (*pos)++;
1613 return NULL;
1614}
1615
1616static void pppol2tp_seq_stop(struct seq_file *p, void *v)
1617{
1618 /* nothing to do */
1619}
1620
1621static void pppol2tp_seq_tunnel_show(struct seq_file *m, void *v)
1622{
1623 struct l2tp_tunnel *tunnel = v;
1624
1625 seq_printf(m, "\nTUNNEL '%s', %c %d\n",
1626 tunnel->name,
1627 (tunnel == tunnel->sock->sk_user_data) ? 'Y' : 'N',
1628 atomic_read(&tunnel->ref_count) - 1);
Tom Parkin7b7c0712013-03-19 06:11:22 +00001629 seq_printf(m, " %08x %ld/%ld/%ld %ld/%ld/%ld\n",
James Chapmanfd558d12010-04-02 06:18:33 +00001630 tunnel->debug,
Tom Parkin7b7c0712013-03-19 06:11:22 +00001631 atomic_long_read(&tunnel->stats.tx_packets),
1632 atomic_long_read(&tunnel->stats.tx_bytes),
1633 atomic_long_read(&tunnel->stats.tx_errors),
1634 atomic_long_read(&tunnel->stats.rx_packets),
1635 atomic_long_read(&tunnel->stats.rx_bytes),
1636 atomic_long_read(&tunnel->stats.rx_errors));
James Chapmanfd558d12010-04-02 06:18:33 +00001637}
1638
1639static void pppol2tp_seq_session_show(struct seq_file *m, void *v)
1640{
1641 struct l2tp_session *session = v;
1642 struct l2tp_tunnel *tunnel = session->tunnel;
1643 struct pppol2tp_session *ps = l2tp_session_priv(session);
James Chapman93454712010-04-02 06:18:44 +00001644 struct pppox_sock *po = pppox_sk(ps->sock);
James Chapmanfd558d12010-04-02 06:18:33 +00001645 u32 ip = 0;
1646 u16 port = 0;
1647
1648 if (tunnel->sock) {
1649 struct inet_sock *inet = inet_sk(tunnel->sock);
1650 ip = ntohl(inet->inet_saddr);
1651 port = ntohs(inet->inet_sport);
1652 }
1653
1654 seq_printf(m, " SESSION '%s' %08X/%d %04X/%04X -> "
1655 "%04X/%04X %d %c\n",
1656 session->name, ip, port,
1657 tunnel->tunnel_id,
1658 session->session_id,
1659 tunnel->peer_tunnel_id,
1660 session->peer_session_id,
1661 ps->sock->sk_state,
1662 (session == ps->sock->sk_user_data) ?
1663 'Y' : 'N');
1664 seq_printf(m, " %d/%d/%c/%c/%s %08x %u\n",
1665 session->mtu, session->mru,
1666 session->recv_seq ? 'R' : '-',
1667 session->send_seq ? 'S' : '-',
1668 session->lns_mode ? "LNS" : "LAC",
1669 session->debug,
1670 jiffies_to_msecs(session->reorder_timeout));
Tom Parkin7b7c0712013-03-19 06:11:22 +00001671 seq_printf(m, " %hu/%hu %ld/%ld/%ld %ld/%ld/%ld\n",
James Chapmanfd558d12010-04-02 06:18:33 +00001672 session->nr, session->ns,
Tom Parkin7b7c0712013-03-19 06:11:22 +00001673 atomic_long_read(&session->stats.tx_packets),
1674 atomic_long_read(&session->stats.tx_bytes),
1675 atomic_long_read(&session->stats.tx_errors),
1676 atomic_long_read(&session->stats.rx_packets),
1677 atomic_long_read(&session->stats.rx_bytes),
1678 atomic_long_read(&session->stats.rx_errors));
James Chapman93454712010-04-02 06:18:44 +00001679
1680 if (po)
1681 seq_printf(m, " interface %s\n", ppp_dev_name(&po->chan));
James Chapmanfd558d12010-04-02 06:18:33 +00001682}
1683
1684static int pppol2tp_seq_show(struct seq_file *m, void *v)
1685{
1686 struct pppol2tp_seq_data *pd = v;
1687
1688 /* display header on line 1 */
1689 if (v == SEQ_START_TOKEN) {
1690 seq_puts(m, "PPPoL2TP driver info, " PPPOL2TP_DRV_VERSION "\n");
1691 seq_puts(m, "TUNNEL name, user-data-ok session-count\n");
1692 seq_puts(m, " debug tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
1693 seq_puts(m, " SESSION name, addr/port src-tid/sid "
1694 "dest-tid/sid state user-data-ok\n");
1695 seq_puts(m, " mtu/mru/rcvseq/sendseq/lns debug reorderto\n");
1696 seq_puts(m, " nr/ns tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
1697 goto out;
1698 }
1699
1700 /* Show the tunnel or session context.
1701 */
1702 if (pd->session == NULL)
1703 pppol2tp_seq_tunnel_show(m, pd->tunnel);
1704 else
1705 pppol2tp_seq_session_show(m, pd->session);
1706
1707out:
1708 return 0;
1709}
1710
1711static const struct seq_operations pppol2tp_seq_ops = {
1712 .start = pppol2tp_seq_start,
1713 .next = pppol2tp_seq_next,
1714 .stop = pppol2tp_seq_stop,
1715 .show = pppol2tp_seq_show,
1716};
1717
1718/* Called when our /proc file is opened. We allocate data for use when
1719 * iterating our tunnel / session contexts and store it in the private
1720 * data of the seq_file.
1721 */
1722static int pppol2tp_proc_open(struct inode *inode, struct file *file)
1723{
1724 return seq_open_net(inode, file, &pppol2tp_seq_ops,
1725 sizeof(struct pppol2tp_seq_data));
1726}
1727
1728static const struct file_operations pppol2tp_proc_fops = {
1729 .owner = THIS_MODULE,
1730 .open = pppol2tp_proc_open,
1731 .read = seq_read,
1732 .llseek = seq_lseek,
1733 .release = seq_release_net,
1734};
1735
1736#endif /* CONFIG_PROC_FS */
1737
1738/*****************************************************************************
1739 * Network namespace
1740 *****************************************************************************/
1741
1742static __net_init int pppol2tp_init_net(struct net *net)
1743{
1744 struct proc_dir_entry *pde;
1745 int err = 0;
1746
Gao fengd4beaa62013-02-18 01:34:54 +00001747 pde = proc_create("pppol2tp", S_IRUGO, net->proc_net,
1748 &pppol2tp_proc_fops);
James Chapmanfd558d12010-04-02 06:18:33 +00001749 if (!pde) {
1750 err = -ENOMEM;
1751 goto out;
1752 }
1753
1754out:
1755 return err;
1756}
1757
1758static __net_exit void pppol2tp_exit_net(struct net *net)
1759{
Gao fengece31ff2013-02-18 01:34:56 +00001760 remove_proc_entry("pppol2tp", net->proc_net);
James Chapmanfd558d12010-04-02 06:18:33 +00001761}
1762
1763static struct pernet_operations pppol2tp_net_ops = {
1764 .init = pppol2tp_init_net,
1765 .exit = pppol2tp_exit_net,
1766 .id = &pppol2tp_net_id,
1767};
1768
1769/*****************************************************************************
1770 * Init and cleanup
1771 *****************************************************************************/
1772
1773static const struct proto_ops pppol2tp_ops = {
1774 .family = AF_PPPOX,
1775 .owner = THIS_MODULE,
1776 .release = pppol2tp_release,
1777 .bind = sock_no_bind,
1778 .connect = pppol2tp_connect,
1779 .socketpair = sock_no_socketpair,
1780 .accept = sock_no_accept,
1781 .getname = pppol2tp_getname,
1782 .poll = datagram_poll,
1783 .listen = sock_no_listen,
1784 .shutdown = sock_no_shutdown,
1785 .setsockopt = pppol2tp_setsockopt,
1786 .getsockopt = pppol2tp_getsockopt,
1787 .sendmsg = pppol2tp_sendmsg,
1788 .recvmsg = pppol2tp_recvmsg,
1789 .mmap = sock_no_mmap,
1790 .ioctl = pppox_ioctl,
1791};
1792
Eric Dumazet756e64a2010-09-21 06:43:54 +00001793static const struct pppox_proto pppol2tp_proto = {
James Chapmanfd558d12010-04-02 06:18:33 +00001794 .create = pppol2tp_create,
Wei Yongjune1558a92013-07-02 09:02:07 +08001795 .ioctl = pppol2tp_ioctl,
1796 .owner = THIS_MODULE,
James Chapmanfd558d12010-04-02 06:18:33 +00001797};
1798
James Chapman309795f2010-04-02 06:19:10 +00001799#ifdef CONFIG_L2TP_V3
1800
1801static const struct l2tp_nl_cmd_ops pppol2tp_nl_cmd_ops = {
1802 .session_create = pppol2tp_session_create,
Tom Parkincf2f5c82013-03-19 06:11:21 +00001803 .session_delete = l2tp_session_delete,
James Chapman309795f2010-04-02 06:19:10 +00001804};
1805
1806#endif /* CONFIG_L2TP_V3 */
1807
James Chapmanfd558d12010-04-02 06:18:33 +00001808static int __init pppol2tp_init(void)
1809{
1810 int err;
1811
1812 err = register_pernet_device(&pppol2tp_net_ops);
1813 if (err)
1814 goto out;
1815
1816 err = proto_register(&pppol2tp_sk_proto, 0);
1817 if (err)
1818 goto out_unregister_pppol2tp_pernet;
1819
1820 err = register_pppox_proto(PX_PROTO_OL2TP, &pppol2tp_proto);
1821 if (err)
1822 goto out_unregister_pppol2tp_proto;
1823
James Chapman309795f2010-04-02 06:19:10 +00001824#ifdef CONFIG_L2TP_V3
1825 err = l2tp_nl_register_ops(L2TP_PWTYPE_PPP, &pppol2tp_nl_cmd_ops);
1826 if (err)
1827 goto out_unregister_pppox;
1828#endif
1829
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001830 pr_info("PPPoL2TP kernel driver, %s\n", PPPOL2TP_DRV_VERSION);
James Chapmanfd558d12010-04-02 06:18:33 +00001831
1832out:
1833 return err;
James Chapman309795f2010-04-02 06:19:10 +00001834
1835#ifdef CONFIG_L2TP_V3
1836out_unregister_pppox:
1837 unregister_pppox_proto(PX_PROTO_OL2TP);
1838#endif
James Chapmanfd558d12010-04-02 06:18:33 +00001839out_unregister_pppol2tp_proto:
1840 proto_unregister(&pppol2tp_sk_proto);
1841out_unregister_pppol2tp_pernet:
1842 unregister_pernet_device(&pppol2tp_net_ops);
1843 goto out;
1844}
1845
1846static void __exit pppol2tp_exit(void)
1847{
James Chapman309795f2010-04-02 06:19:10 +00001848#ifdef CONFIG_L2TP_V3
1849 l2tp_nl_unregister_ops(L2TP_PWTYPE_PPP);
1850#endif
James Chapmanfd558d12010-04-02 06:18:33 +00001851 unregister_pppox_proto(PX_PROTO_OL2TP);
1852 proto_unregister(&pppol2tp_sk_proto);
1853 unregister_pernet_device(&pppol2tp_net_ops);
1854}
1855
1856module_init(pppol2tp_init);
1857module_exit(pppol2tp_exit);
1858
1859MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
1860MODULE_DESCRIPTION("PPP over L2TP over UDP");
1861MODULE_LICENSE("GPL");
1862MODULE_VERSION(PPPOL2TP_DRV_VERSION);
Benjamin LaHaise9395a092012-03-20 14:01:21 +00001863MODULE_ALIAS("pppox-proto-" __stringify(PX_PROTO_OL2TP));