xref: /linux/net/l2tp/l2tp_ip.c (revision 6b8a024d25ebf7535eb4a3e926309aa693cfe1bd)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* L2TPv3 IP encapsulation support
3  *
4  * Copyright (c) 2008,2009,2010 Katalix Systems Ltd
5  */
6 
7 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8 
9 #include <asm/ioctls.h>
10 #include <linux/icmp.h>
11 #include <linux/module.h>
12 #include <linux/skbuff.h>
13 #include <linux/random.h>
14 #include <linux/socket.h>
15 #include <linux/l2tp.h>
16 #include <linux/in.h>
17 #include <net/sock.h>
18 #include <net/ip.h>
19 #include <net/icmp.h>
20 #include <net/udp.h>
21 #include <net/inet_common.h>
22 #include <net/tcp_states.h>
23 #include <net/protocol.h>
24 #include <net/xfrm.h>
25 #include <net/net_namespace.h>
26 #include <net/netns/generic.h>
27 
28 #include "l2tp_core.h"
29 
30 /* per-net private data for this module */
31 static unsigned int l2tp_ip_net_id;
32 struct l2tp_ip_net {
33 	rwlock_t l2tp_ip_lock;
34 	struct hlist_head l2tp_ip_table;
35 	struct hlist_head l2tp_ip_bind_table;
36 };
37 
38 struct l2tp_ip_sock {
39 	/* inet_sock has to be the first member of l2tp_ip_sock */
40 	struct inet_sock	inet;
41 
42 	u32			conn_id;
43 	u32			peer_conn_id;
44 };
45 
46 static struct l2tp_ip_sock *l2tp_ip_sk(const struct sock *sk)
47 {
48 	return (struct l2tp_ip_sock *)sk;
49 }
50 
51 static struct l2tp_ip_net *l2tp_ip_pernet(const struct net *net)
52 {
53 	return net_generic(net, l2tp_ip_net_id);
54 }
55 
56 static struct sock *__l2tp_ip_bind_lookup(const struct net *net, __be32 laddr,
57 					  __be32 raddr, int dif, u32 tunnel_id)
58 {
59 	struct l2tp_ip_net *pn = l2tp_ip_pernet(net);
60 	struct sock *sk;
61 
62 	sk_for_each_bound(sk, &pn->l2tp_ip_bind_table) {
63 		const struct l2tp_ip_sock *l2tp = l2tp_ip_sk(sk);
64 		const struct inet_sock *inet = inet_sk(sk);
65 		int bound_dev_if;
66 
67 		if (!net_eq(sock_net(sk), net))
68 			continue;
69 
70 		bound_dev_if = READ_ONCE(sk->sk_bound_dev_if);
71 		if (bound_dev_if && dif && bound_dev_if != dif)
72 			continue;
73 
74 		if (inet->inet_rcv_saddr && laddr &&
75 		    inet->inet_rcv_saddr != laddr)
76 			continue;
77 
78 		if (inet->inet_daddr && raddr && inet->inet_daddr != raddr)
79 			continue;
80 
81 		if (l2tp->conn_id != tunnel_id)
82 			continue;
83 
84 		goto found;
85 	}
86 
87 	sk = NULL;
88 found:
89 	return sk;
90 }
91 
92 /* When processing receive frames, there are two cases to
93  * consider. Data frames consist of a non-zero session-id and an
94  * optional cookie. Control frames consist of a regular L2TP header
95  * preceded by 32-bits of zeros.
96  *
97  * L2TPv3 Session Header Over IP
98  *
99  *  0                   1                   2                   3
100  *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
101  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
102  * |                           Session ID                          |
103  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
104  * |               Cookie (optional, maximum 64 bits)...
105  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
106  *                                                                 |
107  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
108  *
109  * L2TPv3 Control Message Header Over IP
110  *
111  *  0                   1                   2                   3
112  *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
113  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
114  * |                      (32 bits of zeros)                       |
115  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
116  * |T|L|x|x|S|x|x|x|x|x|x|x|  Ver  |             Length            |
117  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
118  * |                     Control Connection ID                     |
119  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
120  * |               Ns              |               Nr              |
121  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
122  *
123  * All control frames are passed to userspace.
124  */
125 static int l2tp_ip_recv(struct sk_buff *skb)
126 {
127 	struct net *net = dev_net(skb->dev);
128 	struct l2tp_ip_net *pn;
129 	struct sock *sk;
130 	u32 session_id;
131 	u32 tunnel_id;
132 	unsigned char *ptr, *optr;
133 	struct l2tp_session *session;
134 	struct l2tp_tunnel *tunnel = NULL;
135 	struct iphdr *iph;
136 
137 	pn = l2tp_ip_pernet(net);
138 
139 	if (!pskb_may_pull(skb, 4))
140 		goto discard;
141 
142 	/* Point to L2TP header */
143 	optr = skb->data;
144 	ptr = skb->data;
145 	session_id = ntohl(*((__be32 *)ptr));
146 	ptr += 4;
147 
148 	/* RFC3931: L2TP/IP packets have the first 4 bytes containing
149 	 * the session_id. If it is 0, the packet is a L2TP control
150 	 * frame and the session_id value can be discarded.
151 	 */
152 	if (session_id == 0) {
153 		__skb_pull(skb, 4);
154 		goto pass_up;
155 	}
156 
157 	/* Ok, this is a data packet. Lookup the session. */
158 	session = l2tp_v3_session_get(net, NULL, session_id);
159 	if (!session)
160 		goto discard;
161 
162 	tunnel = session->tunnel;
163 	if (!tunnel)
164 		goto discard_sess;
165 
166 	if (l2tp_v3_ensure_opt_in_linear(session, skb, &ptr, &optr))
167 		goto discard_sess;
168 
169 	l2tp_recv_common(session, skb, ptr, optr, 0, skb->len);
170 	l2tp_session_put(session);
171 
172 	return 0;
173 
174 pass_up:
175 	/* Get the tunnel_id from the L2TP header */
176 	if (!pskb_may_pull(skb, 12))
177 		goto discard;
178 
179 	if ((skb->data[0] & 0xc0) != 0xc0)
180 		goto discard;
181 
182 	tunnel_id = ntohl(*(__be32 *)&skb->data[4]);
183 	iph = (struct iphdr *)skb_network_header(skb);
184 
185 	read_lock_bh(&pn->l2tp_ip_lock);
186 	sk = __l2tp_ip_bind_lookup(net, iph->daddr, iph->saddr, inet_iif(skb),
187 				   tunnel_id);
188 	if (!sk) {
189 		read_unlock_bh(&pn->l2tp_ip_lock);
190 		goto discard;
191 	}
192 	sock_hold(sk);
193 	read_unlock_bh(&pn->l2tp_ip_lock);
194 
195 	if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb))
196 		goto discard_put;
197 
198 	nf_reset_ct(skb);
199 
200 	return sk_receive_skb(sk, skb, 1);
201 
202 discard_sess:
203 	l2tp_session_put(session);
204 	goto discard;
205 
206 discard_put:
207 	sock_put(sk);
208 
209 discard:
210 	kfree_skb(skb);
211 	return 0;
212 }
213 
214 static int l2tp_ip_hash(struct sock *sk)
215 {
216 	struct l2tp_ip_net *pn = l2tp_ip_pernet(sock_net(sk));
217 
218 	if (sk_unhashed(sk)) {
219 		write_lock_bh(&pn->l2tp_ip_lock);
220 		sk_add_node(sk, &pn->l2tp_ip_table);
221 		write_unlock_bh(&pn->l2tp_ip_lock);
222 	}
223 	return 0;
224 }
225 
226 static void l2tp_ip_unhash(struct sock *sk)
227 {
228 	struct l2tp_ip_net *pn = l2tp_ip_pernet(sock_net(sk));
229 
230 	if (sk_unhashed(sk))
231 		return;
232 	write_lock_bh(&pn->l2tp_ip_lock);
233 	sk_del_node_init(sk);
234 	write_unlock_bh(&pn->l2tp_ip_lock);
235 }
236 
237 static int l2tp_ip_open(struct sock *sk)
238 {
239 	/* Prevent autobind. We don't have ports. */
240 	inet_sk(sk)->inet_num = IPPROTO_L2TP;
241 
242 	l2tp_ip_hash(sk);
243 	return 0;
244 }
245 
246 static void l2tp_ip_close(struct sock *sk, long timeout)
247 {
248 	struct l2tp_ip_net *pn = l2tp_ip_pernet(sock_net(sk));
249 
250 	write_lock_bh(&pn->l2tp_ip_lock);
251 	hlist_del_init(&sk->sk_bind_node);
252 	sk_del_node_init(sk);
253 	write_unlock_bh(&pn->l2tp_ip_lock);
254 	sk_common_release(sk);
255 }
256 
257 static void l2tp_ip_destroy_sock(struct sock *sk)
258 {
259 	struct l2tp_tunnel *tunnel;
260 
261 	lock_sock(sk);
262 	ip_flush_pending_frames(sk);
263 	release_sock(sk);
264 
265 	tunnel = l2tp_sk_to_tunnel(sk);
266 	if (tunnel) {
267 		l2tp_tunnel_delete(tunnel);
268 		l2tp_tunnel_put(tunnel);
269 	}
270 }
271 
272 static int l2tp_ip_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
273 {
274 	struct inet_sock *inet = inet_sk(sk);
275 	struct sockaddr_l2tpip *addr = (struct sockaddr_l2tpip *)uaddr;
276 	struct net *net = sock_net(sk);
277 	struct l2tp_ip_net *pn;
278 	int ret;
279 	int chk_addr_ret;
280 
281 	if (addr_len < sizeof(struct sockaddr_l2tpip))
282 		return -EINVAL;
283 	if (addr->l2tp_family != AF_INET)
284 		return -EINVAL;
285 
286 	lock_sock(sk);
287 
288 	ret = -EINVAL;
289 	if (!sock_flag(sk, SOCK_ZAPPED))
290 		goto out;
291 
292 	if (sk->sk_state != TCP_CLOSE)
293 		goto out;
294 
295 	chk_addr_ret = inet_addr_type(net, addr->l2tp_addr.s_addr);
296 	ret = -EADDRNOTAVAIL;
297 	if (addr->l2tp_addr.s_addr && chk_addr_ret != RTN_LOCAL &&
298 	    chk_addr_ret != RTN_MULTICAST && chk_addr_ret != RTN_BROADCAST)
299 		goto out;
300 
301 	if (addr->l2tp_addr.s_addr) {
302 		inet->inet_rcv_saddr = addr->l2tp_addr.s_addr;
303 		inet->inet_saddr = addr->l2tp_addr.s_addr;
304 	}
305 	if (chk_addr_ret == RTN_MULTICAST || chk_addr_ret == RTN_BROADCAST)
306 		inet->inet_saddr = 0;  /* Use device */
307 
308 	pn = l2tp_ip_pernet(net);
309 	write_lock_bh(&pn->l2tp_ip_lock);
310 	if (__l2tp_ip_bind_lookup(net, addr->l2tp_addr.s_addr, 0,
311 				  sk->sk_bound_dev_if, addr->l2tp_conn_id)) {
312 		write_unlock_bh(&pn->l2tp_ip_lock);
313 		ret = -EADDRINUSE;
314 		goto out;
315 	}
316 
317 	sk_dst_reset(sk);
318 	l2tp_ip_sk(sk)->conn_id = addr->l2tp_conn_id;
319 
320 	sk_add_bind_node(sk, &pn->l2tp_ip_bind_table);
321 	sk_del_node_init(sk);
322 	write_unlock_bh(&pn->l2tp_ip_lock);
323 
324 	ret = 0;
325 	sock_reset_flag(sk, SOCK_ZAPPED);
326 
327 out:
328 	release_sock(sk);
329 
330 	return ret;
331 }
332 
333 static int l2tp_ip_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
334 {
335 	struct sockaddr_l2tpip *lsa = (struct sockaddr_l2tpip *)uaddr;
336 	struct l2tp_ip_net *pn = l2tp_ip_pernet(sock_net(sk));
337 	int rc;
338 
339 	if (addr_len < sizeof(*lsa))
340 		return -EINVAL;
341 
342 	if (ipv4_is_multicast(lsa->l2tp_addr.s_addr))
343 		return -EINVAL;
344 
345 	lock_sock(sk);
346 
347 	/* Must bind first - autobinding does not work */
348 	if (sock_flag(sk, SOCK_ZAPPED)) {
349 		rc = -EINVAL;
350 		goto out_sk;
351 	}
352 
353 	rc = __ip4_datagram_connect(sk, uaddr, addr_len);
354 	if (rc < 0)
355 		goto out_sk;
356 
357 	l2tp_ip_sk(sk)->peer_conn_id = lsa->l2tp_conn_id;
358 
359 	write_lock_bh(&pn->l2tp_ip_lock);
360 	hlist_del_init(&sk->sk_bind_node);
361 	sk_add_bind_node(sk, &pn->l2tp_ip_bind_table);
362 	write_unlock_bh(&pn->l2tp_ip_lock);
363 
364 out_sk:
365 	release_sock(sk);
366 
367 	return rc;
368 }
369 
370 static int l2tp_ip_disconnect(struct sock *sk, int flags)
371 {
372 	if (sock_flag(sk, SOCK_ZAPPED))
373 		return 0;
374 
375 	return __udp_disconnect(sk, flags);
376 }
377 
378 static int l2tp_ip_getname(struct socket *sock, struct sockaddr *uaddr,
379 			   int peer)
380 {
381 	struct sock *sk		= sock->sk;
382 	struct inet_sock *inet	= inet_sk(sk);
383 	struct l2tp_ip_sock *lsk = l2tp_ip_sk(sk);
384 	struct sockaddr_l2tpip *lsa = (struct sockaddr_l2tpip *)uaddr;
385 
386 	memset(lsa, 0, sizeof(*lsa));
387 	lsa->l2tp_family = AF_INET;
388 	if (peer) {
389 		if (!inet->inet_dport)
390 			return -ENOTCONN;
391 		lsa->l2tp_conn_id = lsk->peer_conn_id;
392 		lsa->l2tp_addr.s_addr = inet->inet_daddr;
393 	} else {
394 		__be32 addr = inet->inet_rcv_saddr;
395 
396 		if (!addr)
397 			addr = inet->inet_saddr;
398 		lsa->l2tp_conn_id = lsk->conn_id;
399 		lsa->l2tp_addr.s_addr = addr;
400 	}
401 	return sizeof(*lsa);
402 }
403 
404 static int l2tp_ip_backlog_recv(struct sock *sk, struct sk_buff *skb)
405 {
406 	int rc;
407 
408 	/* Charge it to the socket, dropping if the queue is full. */
409 	rc = sock_queue_rcv_skb(sk, skb);
410 	if (rc < 0)
411 		goto drop;
412 
413 	return 0;
414 
415 drop:
416 	IP_INC_STATS(sock_net(sk), IPSTATS_MIB_INDISCARDS);
417 	kfree_skb(skb);
418 	return 0;
419 }
420 
421 /* Userspace will call sendmsg() on the tunnel socket to send L2TP
422  * control frames.
423  */
424 static int l2tp_ip_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
425 {
426 	struct sk_buff *skb;
427 	int rc;
428 	struct inet_sock *inet = inet_sk(sk);
429 	struct rtable *rt = NULL;
430 	struct flowi4 *fl4;
431 	int connected = 0;
432 	__be32 daddr;
433 
434 	lock_sock(sk);
435 
436 	rc = -ENOTCONN;
437 	if (sock_flag(sk, SOCK_DEAD))
438 		goto out;
439 
440 	/* Get and verify the address. */
441 	if (msg->msg_name) {
442 		DECLARE_SOCKADDR(struct sockaddr_l2tpip *, lip, msg->msg_name);
443 
444 		rc = -EINVAL;
445 		if (msg->msg_namelen < sizeof(*lip))
446 			goto out;
447 
448 		if (lip->l2tp_family != AF_INET) {
449 			rc = -EAFNOSUPPORT;
450 			if (lip->l2tp_family != AF_UNSPEC)
451 				goto out;
452 		}
453 
454 		daddr = lip->l2tp_addr.s_addr;
455 	} else {
456 		rc = -EDESTADDRREQ;
457 		if (sk->sk_state != TCP_ESTABLISHED)
458 			goto out;
459 
460 		daddr = inet->inet_daddr;
461 		connected = 1;
462 	}
463 
464 	/* Allocate a socket buffer */
465 	rc = -ENOMEM;
466 	skb = sock_wmalloc(sk, 2 + NET_SKB_PAD + sizeof(struct iphdr) +
467 			   4 + len, 0, GFP_KERNEL);
468 	if (!skb)
469 		goto error;
470 
471 	/* Reserve space for headers, putting IP header on 4-byte boundary. */
472 	skb_reserve(skb, 2 + NET_SKB_PAD);
473 	skb_reset_network_header(skb);
474 	skb_reserve(skb, sizeof(struct iphdr));
475 	skb_reset_transport_header(skb);
476 
477 	/* Insert 0 session_id */
478 	*((__be32 *)skb_put(skb, 4)) = 0;
479 
480 	/* Copy user data into skb */
481 	rc = memcpy_from_msg(skb_put(skb, len), msg, len);
482 	if (rc < 0) {
483 		kfree_skb(skb);
484 		goto error;
485 	}
486 
487 	fl4 = &inet->cork.fl.u.ip4;
488 	if (connected)
489 		rt = dst_rtable(__sk_dst_check(sk, 0));
490 
491 	rcu_read_lock();
492 	if (!rt) {
493 		const struct ip_options_rcu *inet_opt;
494 
495 		inet_opt = rcu_dereference(inet->inet_opt);
496 
497 		/* Use correct destination address if we have options. */
498 		if (inet_opt && inet_opt->opt.srr)
499 			daddr = inet_opt->opt.faddr;
500 
501 		/* If this fails, retransmit mechanism of transport layer will
502 		 * keep trying until route appears or the connection times
503 		 * itself out.
504 		 */
505 		rt = ip_route_output_ports(sock_net(sk), fl4, sk,
506 					   daddr, inet->inet_saddr,
507 					   inet->inet_dport, inet->inet_sport,
508 					   sk->sk_protocol, ip_sock_rt_tos(sk),
509 					   sk->sk_bound_dev_if);
510 		if (IS_ERR(rt))
511 			goto no_route;
512 		if (connected) {
513 			sk_setup_caps(sk, &rt->dst);
514 		} else {
515 			skb_dst_set(skb, &rt->dst);
516 			goto xmit;
517 		}
518 	}
519 
520 	/* We don't need to clone dst here, it is guaranteed to not disappear.
521 	 *  __dev_xmit_skb() might force a refcount if needed.
522 	 */
523 	skb_dst_set_noref(skb, &rt->dst);
524 
525 xmit:
526 	/* Queue the packet to IP for output */
527 	rc = ip_queue_xmit(sk, skb, &inet->cork.fl);
528 	rcu_read_unlock();
529 
530 error:
531 	if (rc >= 0)
532 		rc = len;
533 
534 out:
535 	release_sock(sk);
536 	return rc;
537 
538 no_route:
539 	rcu_read_unlock();
540 	IP_INC_STATS(sock_net(sk), IPSTATS_MIB_OUTNOROUTES);
541 	kfree_skb(skb);
542 	rc = -EHOSTUNREACH;
543 	goto out;
544 }
545 
546 static int l2tp_ip_recvmsg(struct sock *sk, struct msghdr *msg,
547 			   size_t len, int flags, int *addr_len)
548 {
549 	struct inet_sock *inet = inet_sk(sk);
550 	size_t copied = 0;
551 	int err = -EOPNOTSUPP;
552 	DECLARE_SOCKADDR(struct sockaddr_in *, sin, msg->msg_name);
553 	struct sk_buff *skb;
554 
555 	if (flags & MSG_OOB)
556 		goto out;
557 
558 	skb = skb_recv_datagram(sk, flags, &err);
559 	if (!skb)
560 		goto out;
561 
562 	copied = skb->len;
563 	if (len < copied) {
564 		msg->msg_flags |= MSG_TRUNC;
565 		copied = len;
566 	}
567 
568 	err = skb_copy_datagram_msg(skb, 0, msg, copied);
569 	if (err)
570 		goto done;
571 
572 	sock_recv_timestamp(msg, sk, skb);
573 
574 	/* Copy the address. */
575 	if (sin) {
576 		sin->sin_family = AF_INET;
577 		sin->sin_addr.s_addr = ip_hdr(skb)->saddr;
578 		sin->sin_port = 0;
579 		memset(&sin->sin_zero, 0, sizeof(sin->sin_zero));
580 		*addr_len = sizeof(*sin);
581 	}
582 	if (inet_cmsg_flags(inet))
583 		ip_cmsg_recv(msg, skb);
584 	if (flags & MSG_TRUNC)
585 		copied = skb->len;
586 done:
587 	skb_free_datagram(sk, skb);
588 out:
589 	return err ? err : copied;
590 }
591 
592 int l2tp_ioctl(struct sock *sk, int cmd, int *karg)
593 {
594 	struct sk_buff *skb;
595 
596 	switch (cmd) {
597 	case SIOCOUTQ:
598 		*karg = sk_wmem_alloc_get(sk);
599 		break;
600 	case SIOCINQ:
601 		spin_lock_bh(&sk->sk_receive_queue.lock);
602 		skb = skb_peek(&sk->sk_receive_queue);
603 		*karg = skb ? skb->len : 0;
604 		spin_unlock_bh(&sk->sk_receive_queue.lock);
605 		break;
606 
607 	default:
608 		return -ENOIOCTLCMD;
609 	}
610 
611 	return 0;
612 }
613 EXPORT_SYMBOL_GPL(l2tp_ioctl);
614 
615 static struct proto l2tp_ip_prot = {
616 	.name		   = "L2TP/IP",
617 	.owner		   = THIS_MODULE,
618 	.init		   = l2tp_ip_open,
619 	.close		   = l2tp_ip_close,
620 	.bind		   = l2tp_ip_bind,
621 	.connect	   = l2tp_ip_connect,
622 	.disconnect	   = l2tp_ip_disconnect,
623 	.ioctl		   = l2tp_ioctl,
624 	.destroy	   = l2tp_ip_destroy_sock,
625 	.setsockopt	   = ip_setsockopt,
626 	.getsockopt	   = ip_getsockopt,
627 	.sendmsg	   = l2tp_ip_sendmsg,
628 	.recvmsg	   = l2tp_ip_recvmsg,
629 	.backlog_rcv	   = l2tp_ip_backlog_recv,
630 	.hash		   = l2tp_ip_hash,
631 	.unhash		   = l2tp_ip_unhash,
632 	.obj_size	   = sizeof(struct l2tp_ip_sock),
633 };
634 
635 static const struct proto_ops l2tp_ip_ops = {
636 	.family		   = PF_INET,
637 	.owner		   = THIS_MODULE,
638 	.release	   = inet_release,
639 	.bind		   = inet_bind,
640 	.connect	   = inet_dgram_connect,
641 	.socketpair	   = sock_no_socketpair,
642 	.accept		   = sock_no_accept,
643 	.getname	   = l2tp_ip_getname,
644 	.poll		   = datagram_poll,
645 	.ioctl		   = inet_ioctl,
646 	.gettstamp	   = sock_gettstamp,
647 	.listen		   = sock_no_listen,
648 	.shutdown	   = inet_shutdown,
649 	.setsockopt	   = sock_common_setsockopt,
650 	.getsockopt	   = sock_common_getsockopt,
651 	.sendmsg	   = inet_sendmsg,
652 	.recvmsg	   = sock_common_recvmsg,
653 	.mmap		   = sock_no_mmap,
654 };
655 
656 static struct inet_protosw l2tp_ip_protosw = {
657 	.type		= SOCK_DGRAM,
658 	.protocol	= IPPROTO_L2TP,
659 	.prot		= &l2tp_ip_prot,
660 	.ops		= &l2tp_ip_ops,
661 };
662 
663 static struct net_protocol l2tp_ip_protocol __read_mostly = {
664 	.handler	= l2tp_ip_recv,
665 };
666 
667 static __net_init int l2tp_ip_init_net(struct net *net)
668 {
669 	struct l2tp_ip_net *pn = net_generic(net, l2tp_ip_net_id);
670 
671 	rwlock_init(&pn->l2tp_ip_lock);
672 	INIT_HLIST_HEAD(&pn->l2tp_ip_table);
673 	INIT_HLIST_HEAD(&pn->l2tp_ip_bind_table);
674 	return 0;
675 }
676 
677 static __net_exit void l2tp_ip_exit_net(struct net *net)
678 {
679 	struct l2tp_ip_net *pn = l2tp_ip_pernet(net);
680 
681 	write_lock_bh(&pn->l2tp_ip_lock);
682 	WARN_ON_ONCE(hlist_count_nodes(&pn->l2tp_ip_table) != 0);
683 	WARN_ON_ONCE(hlist_count_nodes(&pn->l2tp_ip_bind_table) != 0);
684 	write_unlock_bh(&pn->l2tp_ip_lock);
685 }
686 
687 static struct pernet_operations l2tp_ip_net_ops = {
688 	.init = l2tp_ip_init_net,
689 	.exit = l2tp_ip_exit_net,
690 	.id   = &l2tp_ip_net_id,
691 	.size = sizeof(struct l2tp_ip_net),
692 };
693 
694 static int __init l2tp_ip_init(void)
695 {
696 	int err;
697 
698 	pr_info("L2TP IP encapsulation support (L2TPv3)\n");
699 
700 	err = register_pernet_device(&l2tp_ip_net_ops);
701 	if (err)
702 		goto out;
703 
704 	err = proto_register(&l2tp_ip_prot, 1);
705 	if (err != 0)
706 		goto out1;
707 
708 	err = inet_add_protocol(&l2tp_ip_protocol, IPPROTO_L2TP);
709 	if (err)
710 		goto out2;
711 
712 	inet_register_protosw(&l2tp_ip_protosw);
713 	return 0;
714 
715 out2:
716 	proto_unregister(&l2tp_ip_prot);
717 out1:
718 	unregister_pernet_device(&l2tp_ip_net_ops);
719 out:
720 	return err;
721 }
722 
723 static void __exit l2tp_ip_exit(void)
724 {
725 	inet_unregister_protosw(&l2tp_ip_protosw);
726 	inet_del_protocol(&l2tp_ip_protocol, IPPROTO_L2TP);
727 	proto_unregister(&l2tp_ip_prot);
728 	unregister_pernet_device(&l2tp_ip_net_ops);
729 }
730 
731 module_init(l2tp_ip_init);
732 module_exit(l2tp_ip_exit);
733 
734 MODULE_LICENSE("GPL");
735 MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
736 MODULE_DESCRIPTION("L2TP over IP");
737 MODULE_VERSION("1.0");
738 
739 /* Use the values of SOCK_DGRAM (2) as type and IPPROTO_L2TP (115) as protocol,
740  * because __stringify doesn't like enums
741  */
742 MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_INET, 115, 2);
743 MODULE_ALIAS_NET_PF_PROTO(PF_INET, 115);
744