blob: 9c4670fb29d74d42f15cc75925d3fc90d913b1f9 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/*
2 * L2TPv3 IP encapsulation support for IPv6
3 *
4 * Copyright (c) 2012 Katalix Systems Ltd
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
14#include <linux/icmp.h>
15#include <linux/module.h>
16#include <linux/skbuff.h>
17#include <linux/random.h>
18#include <linux/socket.h>
19#include <linux/l2tp.h>
20#include <linux/in.h>
21#include <linux/in6.h>
22#include <net/sock.h>
23#include <net/ip.h>
24#include <net/icmp.h>
25#include <net/udp.h>
26#include <net/inet_common.h>
27#include <net/tcp_states.h>
28#include <net/protocol.h>
29#include <net/xfrm.h>
30
31#include <net/transp_v6.h>
32#include <net/addrconf.h>
33#include <net/ip6_route.h>
34
35#include "l2tp_core.h"
36
37struct l2tp_ip6_sock {
38 /* inet_sock has to be the first member of l2tp_ip6_sock */
39 struct inet_sock inet;
40
41 u32 conn_id;
42 u32 peer_conn_id;
43
44 /* ipv6_pinfo has to be the last member of l2tp_ip6_sock, see
45 inet6_sk_generic */
46 struct ipv6_pinfo inet6;
47};
48
49static DEFINE_RWLOCK(l2tp_ip6_lock);
50static struct hlist_head l2tp_ip6_table;
51static struct hlist_head l2tp_ip6_bind_table;
52
53static inline struct l2tp_ip6_sock *l2tp_ip6_sk(const struct sock *sk)
54{
55 return (struct l2tp_ip6_sock *)sk;
56}
57
58static struct sock *__l2tp_ip6_bind_lookup(const struct net *net,
59 const struct in6_addr *laddr,
60 const struct in6_addr *raddr,
61 int dif, u32 tunnel_id)
62{
63 struct sock *sk;
64
65 sk_for_each_bound(sk, &l2tp_ip6_bind_table) {
66 const struct in6_addr *sk_laddr = inet6_rcv_saddr(sk);
67 const struct in6_addr *sk_raddr = &sk->sk_v6_daddr;
68 const struct l2tp_ip6_sock *l2tp = l2tp_ip6_sk(sk);
69
70 if (!net_eq(sock_net(sk), net))
71 continue;
72
73 if (sk->sk_bound_dev_if && dif && sk->sk_bound_dev_if != dif)
74 continue;
75
76 if (sk_laddr && !ipv6_addr_any(sk_laddr) &&
77 !ipv6_addr_any(laddr) && !ipv6_addr_equal(sk_laddr, laddr))
78 continue;
79
80 if (!ipv6_addr_any(sk_raddr) && raddr &&
81 !ipv6_addr_any(raddr) && !ipv6_addr_equal(sk_raddr, raddr))
82 continue;
83
84 if (l2tp->conn_id != tunnel_id)
85 continue;
86
87 goto found;
88 }
89
90 sk = NULL;
91found:
92 return sk;
93}
94
95/* When processing receive frames, there are two cases to
96 * consider. Data frames consist of a non-zero session-id and an
97 * optional cookie. Control frames consist of a regular L2TP header
98 * preceded by 32-bits of zeros.
99 *
100 * L2TPv3 Session Header Over IP
101 *
102 * 0 1 2 3
103 * 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
104 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
105 * | Session ID |
106 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
107 * | Cookie (optional, maximum 64 bits)...
108 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
109 * |
110 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
111 *
112 * L2TPv3 Control Message Header Over IP
113 *
114 * 0 1 2 3
115 * 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
116 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
117 * | (32 bits of zeros) |
118 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
119 * |T|L|x|x|S|x|x|x|x|x|x|x| Ver | Length |
120 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
121 * | Control Connection ID |
122 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
123 * | Ns | Nr |
124 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
125 *
126 * All control frames are passed to userspace.
127 */
128static int l2tp_ip6_recv(struct sk_buff *skb)
129{
130 struct net *net = dev_net(skb->dev);
131 struct sock *sk;
132 u32 session_id;
133 u32 tunnel_id;
134 unsigned char *ptr, *optr;
135 struct l2tp_session *session;
136 struct l2tp_tunnel *tunnel = NULL;
137 struct ipv6hdr *iph;
138 int length;
139
140 if (!pskb_may_pull(skb, 4))
141 goto discard;
142
143 /* Point to L2TP header */
144 optr = 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_session_get(net, NULL, session_id, true);
159 if (!session)
160 goto discard;
161
162 tunnel = session->tunnel;
163 if (!tunnel)
164 goto discard_sess;
165
166 /* Trace packet contents, if enabled */
167 if (tunnel->debug & L2TP_MSG_DATA) {
168 length = min(32u, skb->len);
169 if (!pskb_may_pull(skb, length))
170 goto discard_sess;
171
172 /* Point to L2TP header */
173 optr = ptr = skb->data;
174 ptr += 4;
175 pr_debug("%s: ip recv\n", tunnel->name);
176 print_hex_dump_bytes("", DUMP_PREFIX_OFFSET, ptr, length);
177 }
178
179 if (l2tp_v3_ensure_opt_in_linear(session, skb, &ptr, &optr))
180 goto discard_sess;
181
182 l2tp_recv_common(session, skb, ptr, optr, 0, skb->len,
183 tunnel->recv_payload_hook);
184 l2tp_session_dec_refcount(session);
185
186 return 0;
187
188pass_up:
189 /* Get the tunnel_id from the L2TP header */
190 if (!pskb_may_pull(skb, 12))
191 goto discard;
192
193 if ((skb->data[0] & 0xc0) != 0xc0)
194 goto discard;
195
196 tunnel_id = ntohl(*(__be32 *) &skb->data[4]);
197 iph = ipv6_hdr(skb);
198
199 read_lock_bh(&l2tp_ip6_lock);
200 sk = __l2tp_ip6_bind_lookup(net, &iph->daddr, &iph->saddr,
201 inet6_iif(skb), tunnel_id);
202 if (!sk) {
203 read_unlock_bh(&l2tp_ip6_lock);
204 goto discard;
205 }
206 sock_hold(sk);
207 read_unlock_bh(&l2tp_ip6_lock);
208
209 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb))
210 goto discard_put;
211
212 nf_reset(skb);
213
214 return sk_receive_skb(sk, skb, 1);
215
216discard_sess:
217 if (session->deref)
218 session->deref(session);
219 l2tp_session_dec_refcount(session);
220 goto discard;
221
222discard_put:
223 sock_put(sk);
224
225discard:
226 kfree_skb(skb);
227 return 0;
228}
229
230static int l2tp_ip6_hash(struct sock *sk)
231{
232 if (sk_unhashed(sk)) {
233 write_lock_bh(&l2tp_ip6_lock);
234 sk_add_node(sk, &l2tp_ip6_table);
235 write_unlock_bh(&l2tp_ip6_lock);
236 }
237 return 0;
238}
239
240static void l2tp_ip6_unhash(struct sock *sk)
241{
242 if (sk_unhashed(sk))
243 return;
244 write_lock_bh(&l2tp_ip6_lock);
245 sk_del_node_init(sk);
246 write_unlock_bh(&l2tp_ip6_lock);
247}
248
249static int l2tp_ip6_open(struct sock *sk)
250{
251 /* Prevent autobind. We don't have ports. */
252 inet_sk(sk)->inet_num = IPPROTO_L2TP;
253
254 l2tp_ip6_hash(sk);
255 return 0;
256}
257
258static void l2tp_ip6_close(struct sock *sk, long timeout)
259{
260 write_lock_bh(&l2tp_ip6_lock);
261 hlist_del_init(&sk->sk_bind_node);
262 sk_del_node_init(sk);
263 write_unlock_bh(&l2tp_ip6_lock);
264
265 sk_common_release(sk);
266}
267
268static void l2tp_ip6_destroy_sock(struct sock *sk)
269{
270 struct l2tp_tunnel *tunnel = l2tp_sock_to_tunnel(sk);
271
272 lock_sock(sk);
273 ip6_flush_pending_frames(sk);
274 release_sock(sk);
275
276 if (tunnel) {
277 l2tp_tunnel_closeall(tunnel);
278 sock_put(sk);
279 }
280
281 inet6_destroy_sock(sk);
282}
283
284static int l2tp_ip6_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
285{
286 struct inet_sock *inet = inet_sk(sk);
287 struct ipv6_pinfo *np = inet6_sk(sk);
288 struct sockaddr_l2tpip6 *addr = (struct sockaddr_l2tpip6 *) uaddr;
289 struct net *net = sock_net(sk);
290 __be32 v4addr = 0;
291 int bound_dev_if;
292 int addr_type;
293 int err;
294
295 if (addr->l2tp_family != AF_INET6)
296 return -EINVAL;
297 if (addr_len < sizeof(*addr))
298 return -EINVAL;
299
300 addr_type = ipv6_addr_type(&addr->l2tp_addr);
301
302 /* l2tp_ip6 sockets are IPv6 only */
303 if (addr_type == IPV6_ADDR_MAPPED)
304 return -EADDRNOTAVAIL;
305
306 /* L2TP is point-point, not multicast */
307 if (addr_type & IPV6_ADDR_MULTICAST)
308 return -EADDRNOTAVAIL;
309
310 lock_sock(sk);
311
312 err = -EINVAL;
313 if (!sock_flag(sk, SOCK_ZAPPED))
314 goto out_unlock;
315
316 if (sk->sk_state != TCP_CLOSE)
317 goto out_unlock;
318
319 bound_dev_if = sk->sk_bound_dev_if;
320
321 /* Check if the address belongs to the host. */
322 rcu_read_lock();
323 if (addr_type != IPV6_ADDR_ANY) {
324 struct net_device *dev = NULL;
325
326 if (addr_type & IPV6_ADDR_LINKLOCAL) {
327 if (addr->l2tp_scope_id)
328 bound_dev_if = addr->l2tp_scope_id;
329
330 /* Binding to link-local address requires an
331 * interface.
332 */
333 if (!bound_dev_if)
334 goto out_unlock_rcu;
335
336 err = -ENODEV;
337 dev = dev_get_by_index_rcu(sock_net(sk), bound_dev_if);
338 if (!dev)
339 goto out_unlock_rcu;
340 }
341
342 /* ipv4 addr of the socket is invalid. Only the
343 * unspecified and mapped address have a v4 equivalent.
344 */
345 v4addr = LOOPBACK4_IPV6;
346 err = -EADDRNOTAVAIL;
347 if (!ipv6_chk_addr(sock_net(sk), &addr->l2tp_addr, dev, 0))
348 goto out_unlock_rcu;
349 }
350 rcu_read_unlock();
351
352 write_lock_bh(&l2tp_ip6_lock);
353 if (__l2tp_ip6_bind_lookup(net, &addr->l2tp_addr, NULL, bound_dev_if,
354 addr->l2tp_conn_id)) {
355 write_unlock_bh(&l2tp_ip6_lock);
356 err = -EADDRINUSE;
357 goto out_unlock;
358 }
359
360 inet->inet_saddr = v4addr;
361 inet->inet_rcv_saddr = v4addr;
362 sk->sk_bound_dev_if = bound_dev_if;
363 sk->sk_v6_rcv_saddr = addr->l2tp_addr;
364 np->saddr = addr->l2tp_addr;
365
366 l2tp_ip6_sk(sk)->conn_id = addr->l2tp_conn_id;
367
368 sk_add_bind_node(sk, &l2tp_ip6_bind_table);
369 sk_del_node_init(sk);
370 write_unlock_bh(&l2tp_ip6_lock);
371
372 sock_reset_flag(sk, SOCK_ZAPPED);
373 release_sock(sk);
374 return 0;
375
376out_unlock_rcu:
377 rcu_read_unlock();
378out_unlock:
379 release_sock(sk);
380
381 return err;
382}
383
384static int l2tp_ip6_connect(struct sock *sk, struct sockaddr *uaddr,
385 int addr_len)
386{
387 struct sockaddr_l2tpip6 *lsa = (struct sockaddr_l2tpip6 *) uaddr;
388 struct sockaddr_in6 *usin = (struct sockaddr_in6 *) uaddr;
389 struct in6_addr *daddr;
390 int addr_type;
391 int rc;
392
393 if (addr_len < sizeof(*lsa))
394 return -EINVAL;
395
396 if (usin->sin6_family != AF_INET6)
397 return -EINVAL;
398
399 addr_type = ipv6_addr_type(&usin->sin6_addr);
400 if (addr_type & IPV6_ADDR_MULTICAST)
401 return -EINVAL;
402
403 if (addr_type & IPV6_ADDR_MAPPED) {
404 daddr = &usin->sin6_addr;
405 if (ipv4_is_multicast(daddr->s6_addr32[3]))
406 return -EINVAL;
407 }
408
409 lock_sock(sk);
410
411 /* Must bind first - autobinding does not work */
412 if (sock_flag(sk, SOCK_ZAPPED)) {
413 rc = -EINVAL;
414 goto out_sk;
415 }
416
417 rc = __ip6_datagram_connect(sk, uaddr, addr_len);
418 if (rc < 0)
419 goto out_sk;
420
421 l2tp_ip6_sk(sk)->peer_conn_id = lsa->l2tp_conn_id;
422
423 write_lock_bh(&l2tp_ip6_lock);
424 hlist_del_init(&sk->sk_bind_node);
425 sk_add_bind_node(sk, &l2tp_ip6_bind_table);
426 write_unlock_bh(&l2tp_ip6_lock);
427
428out_sk:
429 release_sock(sk);
430
431 return rc;
432}
433
434static int l2tp_ip6_disconnect(struct sock *sk, int flags)
435{
436 if (sock_flag(sk, SOCK_ZAPPED))
437 return 0;
438
439 return __udp_disconnect(sk, flags);
440}
441
442static int l2tp_ip6_getname(struct socket *sock, struct sockaddr *uaddr,
443 int *uaddr_len, int peer)
444{
445 struct sockaddr_l2tpip6 *lsa = (struct sockaddr_l2tpip6 *)uaddr;
446 struct sock *sk = sock->sk;
447 struct ipv6_pinfo *np = inet6_sk(sk);
448 struct l2tp_ip6_sock *lsk = l2tp_ip6_sk(sk);
449
450 lsa->l2tp_family = AF_INET6;
451 lsa->l2tp_flowinfo = 0;
452 lsa->l2tp_scope_id = 0;
453 lsa->l2tp_unused = 0;
454 if (peer) {
455 if (!lsk->peer_conn_id)
456 return -ENOTCONN;
457 lsa->l2tp_conn_id = lsk->peer_conn_id;
458 lsa->l2tp_addr = sk->sk_v6_daddr;
459 if (np->sndflow)
460 lsa->l2tp_flowinfo = np->flow_label;
461 } else {
462 if (ipv6_addr_any(&sk->sk_v6_rcv_saddr))
463 lsa->l2tp_addr = np->saddr;
464 else
465 lsa->l2tp_addr = sk->sk_v6_rcv_saddr;
466
467 lsa->l2tp_conn_id = lsk->conn_id;
468 }
469 if (ipv6_addr_type(&lsa->l2tp_addr) & IPV6_ADDR_LINKLOCAL)
470 lsa->l2tp_scope_id = sk->sk_bound_dev_if;
471 *uaddr_len = sizeof(*lsa);
472 return 0;
473}
474
475static int l2tp_ip6_backlog_recv(struct sock *sk, struct sk_buff *skb)
476{
477 int rc;
478
479 /* Charge it to the socket, dropping if the queue is full. */
480 rc = sock_queue_rcv_skb(sk, skb);
481 if (rc < 0)
482 goto drop;
483
484 return 0;
485
486drop:
487 IP_INC_STATS(sock_net(sk), IPSTATS_MIB_INDISCARDS);
488 kfree_skb(skb);
489 return -1;
490}
491
492static int l2tp_ip6_push_pending_frames(struct sock *sk)
493{
494 struct sk_buff *skb;
495 __be32 *transhdr = NULL;
496 int err = 0;
497
498 skb = skb_peek(&sk->sk_write_queue);
499 if (skb == NULL)
500 goto out;
501
502 transhdr = (__be32 *)skb_transport_header(skb);
503 *transhdr = 0;
504
505 err = ip6_push_pending_frames(sk);
506
507out:
508 return err;
509}
510
511/* Userspace will call sendmsg() on the tunnel socket to send L2TP
512 * control frames.
513 */
514static int l2tp_ip6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
515{
516 struct ipv6_txoptions opt_space;
517 DECLARE_SOCKADDR(struct sockaddr_l2tpip6 *, lsa, msg->msg_name);
518 struct in6_addr *daddr, *final_p, final;
519 struct ipv6_pinfo *np = inet6_sk(sk);
520 struct ipv6_txoptions *opt_to_free = NULL;
521 struct ipv6_txoptions *opt = NULL;
522 struct ip6_flowlabel *flowlabel = NULL;
523 struct dst_entry *dst = NULL;
524 struct flowi6 fl6;
525 struct sockcm_cookie sockc_unused = {0};
526 struct ipcm6_cookie ipc6;
527 int addr_len = msg->msg_namelen;
528 int transhdrlen = 4; /* zero session-id */
529 int ulen = len + transhdrlen;
530 int err;
531
532 /* Rough check on arithmetic overflow,
533 better check is made in ip6_append_data().
534 */
535 if (len > INT_MAX)
536 return -EMSGSIZE;
537
538 /* Mirror BSD error message compatibility */
539 if (msg->msg_flags & MSG_OOB)
540 return -EOPNOTSUPP;
541
542 /*
543 * Get and verify the address.
544 */
545 memset(&fl6, 0, sizeof(fl6));
546
547 fl6.flowi6_mark = sk->sk_mark;
548 fl6.flowi6_uid = sk->sk_uid;
549
550 ipc6.hlimit = -1;
551 ipc6.tclass = -1;
552 ipc6.dontfrag = -1;
553
554 if (lsa) {
555 if (addr_len < SIN6_LEN_RFC2133)
556 return -EINVAL;
557
558 if (lsa->l2tp_family && lsa->l2tp_family != AF_INET6)
559 return -EAFNOSUPPORT;
560
561 daddr = &lsa->l2tp_addr;
562 if (np->sndflow) {
563 fl6.flowlabel = lsa->l2tp_flowinfo & IPV6_FLOWINFO_MASK;
564 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
565 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
566 if (flowlabel == NULL)
567 return -EINVAL;
568 }
569 }
570
571 /*
572 * Otherwise it will be difficult to maintain
573 * sk->sk_dst_cache.
574 */
575 if (sk->sk_state == TCP_ESTABLISHED &&
576 ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
577 daddr = &sk->sk_v6_daddr;
578
579 if (addr_len >= sizeof(struct sockaddr_in6) &&
580 lsa->l2tp_scope_id &&
581 ipv6_addr_type(daddr) & IPV6_ADDR_LINKLOCAL)
582 fl6.flowi6_oif = lsa->l2tp_scope_id;
583 } else {
584 if (sk->sk_state != TCP_ESTABLISHED)
585 return -EDESTADDRREQ;
586
587 daddr = &sk->sk_v6_daddr;
588 fl6.flowlabel = np->flow_label;
589 }
590
591 if (fl6.flowi6_oif == 0)
592 fl6.flowi6_oif = sk->sk_bound_dev_if;
593
594 if (msg->msg_controllen) {
595 opt = &opt_space;
596 memset(opt, 0, sizeof(struct ipv6_txoptions));
597 opt->tot_len = sizeof(struct ipv6_txoptions);
598 ipc6.opt = opt;
599
600 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, &ipc6,
601 &sockc_unused);
602 if (err < 0) {
603 fl6_sock_release(flowlabel);
604 return err;
605 }
606 if ((fl6.flowlabel & IPV6_FLOWLABEL_MASK) && !flowlabel) {
607 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
608 if (flowlabel == NULL)
609 return -EINVAL;
610 }
611 if (!(opt->opt_nflen|opt->opt_flen))
612 opt = NULL;
613 }
614
615 if (!opt) {
616 opt = txopt_get(np);
617 opt_to_free = opt;
618 }
619 if (flowlabel)
620 opt = fl6_merge_options(&opt_space, flowlabel, opt);
621 opt = ipv6_fixup_options(&opt_space, opt);
622 ipc6.opt = opt;
623
624 fl6.flowi6_proto = sk->sk_protocol;
625 if (!ipv6_addr_any(daddr))
626 fl6.daddr = *daddr;
627 else
628 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
629 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
630 fl6.saddr = np->saddr;
631
632 final_p = fl6_update_dst(&fl6, opt, &final);
633
634 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr))
635 fl6.flowi6_oif = np->mcast_oif;
636 else if (!fl6.flowi6_oif)
637 fl6.flowi6_oif = np->ucast_oif;
638
639 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
640
641 if (ipc6.tclass < 0)
642 ipc6.tclass = np->tclass;
643
644 fl6.flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6.flowlabel);
645
646 dst = ip6_dst_lookup_flow(sock_net(sk), sk, &fl6, final_p);
647 if (IS_ERR(dst)) {
648 err = PTR_ERR(dst);
649 goto out;
650 }
651
652 if (ipc6.hlimit < 0)
653 ipc6.hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
654
655 if (ipc6.dontfrag < 0)
656 ipc6.dontfrag = np->dontfrag;
657
658 if (msg->msg_flags & MSG_CONFIRM)
659 goto do_confirm;
660
661back_from_confirm:
662 lock_sock(sk);
663 err = ip6_append_data(sk, ip_generic_getfrag, msg,
664 ulen, transhdrlen, &ipc6,
665 &fl6, (struct rt6_info *)dst,
666 msg->msg_flags, &sockc_unused);
667 if (err)
668 ip6_flush_pending_frames(sk);
669 else if (!(msg->msg_flags & MSG_MORE))
670 err = l2tp_ip6_push_pending_frames(sk);
671 release_sock(sk);
672done:
673 dst_release(dst);
674out:
675 fl6_sock_release(flowlabel);
676 txopt_put(opt_to_free);
677
678 return err < 0 ? err : len;
679
680do_confirm:
681 if (msg->msg_flags & MSG_PROBE)
682 dst_confirm_neigh(dst, &fl6.daddr);
683 if (!(msg->msg_flags & MSG_PROBE) || len)
684 goto back_from_confirm;
685 err = 0;
686 goto done;
687}
688
689static int l2tp_ip6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
690 int noblock, int flags, int *addr_len)
691{
692 struct ipv6_pinfo *np = inet6_sk(sk);
693 DECLARE_SOCKADDR(struct sockaddr_l2tpip6 *, lsa, msg->msg_name);
694 size_t copied = 0;
695 int err = -EOPNOTSUPP;
696 struct sk_buff *skb;
697
698 if (flags & MSG_OOB)
699 goto out;
700
701 if (flags & MSG_ERRQUEUE)
702 return ipv6_recv_error(sk, msg, len, addr_len);
703
704 skb = skb_recv_datagram(sk, flags, noblock, &err);
705 if (!skb)
706 goto out;
707
708 copied = skb->len;
709 if (len < copied) {
710 msg->msg_flags |= MSG_TRUNC;
711 copied = len;
712 }
713
714 err = skb_copy_datagram_msg(skb, 0, msg, copied);
715 if (err)
716 goto done;
717
718 sock_recv_timestamp(msg, sk, skb);
719
720 /* Copy the address. */
721 if (lsa) {
722 lsa->l2tp_family = AF_INET6;
723 lsa->l2tp_unused = 0;
724 lsa->l2tp_addr = ipv6_hdr(skb)->saddr;
725 lsa->l2tp_flowinfo = 0;
726 lsa->l2tp_scope_id = 0;
727 lsa->l2tp_conn_id = 0;
728 if (ipv6_addr_type(&lsa->l2tp_addr) & IPV6_ADDR_LINKLOCAL)
729 lsa->l2tp_scope_id = inet6_iif(skb);
730 *addr_len = sizeof(*lsa);
731 }
732
733 if (np->rxopt.all)
734 ip6_datagram_recv_ctl(sk, msg, skb);
735
736 if (flags & MSG_TRUNC)
737 copied = skb->len;
738done:
739 skb_free_datagram(sk, skb);
740out:
741 return err ? err : copied;
742}
743
744static struct proto l2tp_ip6_prot = {
745 .name = "L2TP/IPv6",
746 .owner = THIS_MODULE,
747 .init = l2tp_ip6_open,
748 .close = l2tp_ip6_close,
749 .bind = l2tp_ip6_bind,
750 .connect = l2tp_ip6_connect,
751 .disconnect = l2tp_ip6_disconnect,
752 .ioctl = l2tp_ioctl,
753 .destroy = l2tp_ip6_destroy_sock,
754 .setsockopt = ipv6_setsockopt,
755 .getsockopt = ipv6_getsockopt,
756 .sendmsg = l2tp_ip6_sendmsg,
757 .recvmsg = l2tp_ip6_recvmsg,
758 .backlog_rcv = l2tp_ip6_backlog_recv,
759 .hash = l2tp_ip6_hash,
760 .unhash = l2tp_ip6_unhash,
761 .obj_size = sizeof(struct l2tp_ip6_sock),
762#ifdef CONFIG_COMPAT
763 .compat_setsockopt = compat_ipv6_setsockopt,
764 .compat_getsockopt = compat_ipv6_getsockopt,
765#endif
766};
767
768static const struct proto_ops l2tp_ip6_ops = {
769 .family = PF_INET6,
770 .owner = THIS_MODULE,
771 .release = inet6_release,
772 .bind = inet6_bind,
773 .connect = inet_dgram_connect,
774 .socketpair = sock_no_socketpair,
775 .accept = sock_no_accept,
776 .getname = l2tp_ip6_getname,
777 .poll = datagram_poll,
778 .ioctl = inet6_ioctl,
779 .listen = sock_no_listen,
780 .shutdown = inet_shutdown,
781 .setsockopt = sock_common_setsockopt,
782 .getsockopt = sock_common_getsockopt,
783 .sendmsg = inet_sendmsg,
784 .recvmsg = sock_common_recvmsg,
785 .mmap = sock_no_mmap,
786 .sendpage = sock_no_sendpage,
787#ifdef CONFIG_COMPAT
788 .compat_setsockopt = compat_sock_common_setsockopt,
789 .compat_getsockopt = compat_sock_common_getsockopt,
790#endif
791};
792
793static struct inet_protosw l2tp_ip6_protosw = {
794 .type = SOCK_DGRAM,
795 .protocol = IPPROTO_L2TP,
796 .prot = &l2tp_ip6_prot,
797 .ops = &l2tp_ip6_ops,
798};
799
800static struct inet6_protocol l2tp_ip6_protocol __read_mostly = {
801 .handler = l2tp_ip6_recv,
802};
803
804static int __init l2tp_ip6_init(void)
805{
806 int err;
807
808 pr_info("L2TP IP encapsulation support for IPv6 (L2TPv3)\n");
809
810 err = proto_register(&l2tp_ip6_prot, 1);
811 if (err != 0)
812 goto out;
813
814 err = inet6_add_protocol(&l2tp_ip6_protocol, IPPROTO_L2TP);
815 if (err)
816 goto out1;
817
818 inet6_register_protosw(&l2tp_ip6_protosw);
819 return 0;
820
821out1:
822 proto_unregister(&l2tp_ip6_prot);
823out:
824 return err;
825}
826
827static void __exit l2tp_ip6_exit(void)
828{
829 inet6_unregister_protosw(&l2tp_ip6_protosw);
830 inet6_del_protocol(&l2tp_ip6_protocol, IPPROTO_L2TP);
831 proto_unregister(&l2tp_ip6_prot);
832}
833
834module_init(l2tp_ip6_init);
835module_exit(l2tp_ip6_exit);
836
837MODULE_LICENSE("GPL");
838MODULE_AUTHOR("Chris Elston <celston@katalix.com>");
839MODULE_DESCRIPTION("L2TP IP encapsulation for IPv6");
840MODULE_VERSION("1.0");
841
842/* Use the value of SOCK_DGRAM (2) directory, because __stringify doesn't like
843 * enums
844 */
845MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_INET6, 2, IPPROTO_L2TP);
846MODULE_ALIAS_NET_PF_PROTO(PF_INET6, IPPROTO_L2TP);