GNU Linux-libre 4.19.264-gnu1
[releases.git] / net / l2tp / l2tp_ip6.c
1 /*
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
37 struct 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
49 static DEFINE_RWLOCK(l2tp_ip6_lock);
50 static struct hlist_head l2tp_ip6_table;
51 static struct hlist_head l2tp_ip6_bind_table;
52
53 static inline struct l2tp_ip6_sock *l2tp_ip6_sk(const struct sock *sk)
54 {
55         return (struct l2tp_ip6_sock *)sk;
56 }
57
58 static 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;
91 found:
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  */
128 static 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, session_id);
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         l2tp_session_dec_refcount(session);
184
185         return 0;
186
187 pass_up:
188         /* Get the tunnel_id from the L2TP header */
189         if (!pskb_may_pull(skb, 12))
190                 goto discard;
191
192         if ((skb->data[0] & 0xc0) != 0xc0)
193                 goto discard;
194
195         tunnel_id = ntohl(*(__be32 *) &skb->data[4]);
196         iph = ipv6_hdr(skb);
197
198         read_lock_bh(&l2tp_ip6_lock);
199         sk = __l2tp_ip6_bind_lookup(net, &iph->daddr, &iph->saddr,
200                                     inet6_iif(skb), tunnel_id);
201         if (!sk) {
202                 read_unlock_bh(&l2tp_ip6_lock);
203                 goto discard;
204         }
205         sock_hold(sk);
206         read_unlock_bh(&l2tp_ip6_lock);
207
208         if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb))
209                 goto discard_put;
210
211         nf_reset(skb);
212
213         return sk_receive_skb(sk, skb, 1);
214
215 discard_sess:
216         l2tp_session_dec_refcount(session);
217         goto discard;
218
219 discard_put:
220         sock_put(sk);
221
222 discard:
223         kfree_skb(skb);
224         return 0;
225 }
226
227 static int l2tp_ip6_hash(struct sock *sk)
228 {
229         if (sk_unhashed(sk)) {
230                 write_lock_bh(&l2tp_ip6_lock);
231                 sk_add_node(sk, &l2tp_ip6_table);
232                 write_unlock_bh(&l2tp_ip6_lock);
233         }
234         return 0;
235 }
236
237 static void l2tp_ip6_unhash(struct sock *sk)
238 {
239         if (sk_unhashed(sk))
240                 return;
241         write_lock_bh(&l2tp_ip6_lock);
242         sk_del_node_init(sk);
243         write_unlock_bh(&l2tp_ip6_lock);
244 }
245
246 static int l2tp_ip6_open(struct sock *sk)
247 {
248         /* Prevent autobind. We don't have ports. */
249         inet_sk(sk)->inet_num = IPPROTO_L2TP;
250
251         l2tp_ip6_hash(sk);
252         return 0;
253 }
254
255 static void l2tp_ip6_close(struct sock *sk, long timeout)
256 {
257         write_lock_bh(&l2tp_ip6_lock);
258         hlist_del_init(&sk->sk_bind_node);
259         sk_del_node_init(sk);
260         write_unlock_bh(&l2tp_ip6_lock);
261
262         sk_common_release(sk);
263 }
264
265 static void l2tp_ip6_destroy_sock(struct sock *sk)
266 {
267         struct l2tp_tunnel *tunnel = sk->sk_user_data;
268
269         lock_sock(sk);
270         ip6_flush_pending_frames(sk);
271         release_sock(sk);
272
273         if (tunnel)
274                 l2tp_tunnel_delete(tunnel);
275
276         inet6_destroy_sock(sk);
277 }
278
279 static int l2tp_ip6_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
280 {
281         struct inet_sock *inet = inet_sk(sk);
282         struct ipv6_pinfo *np = inet6_sk(sk);
283         struct sockaddr_l2tpip6 *addr = (struct sockaddr_l2tpip6 *) uaddr;
284         struct net *net = sock_net(sk);
285         __be32 v4addr = 0;
286         int bound_dev_if;
287         int addr_type;
288         int err;
289
290         if (addr->l2tp_family != AF_INET6)
291                 return -EINVAL;
292         if (addr_len < sizeof(*addr))
293                 return -EINVAL;
294
295         addr_type = ipv6_addr_type(&addr->l2tp_addr);
296
297         /* l2tp_ip6 sockets are IPv6 only */
298         if (addr_type == IPV6_ADDR_MAPPED)
299                 return -EADDRNOTAVAIL;
300
301         /* L2TP is point-point, not multicast */
302         if (addr_type & IPV6_ADDR_MULTICAST)
303                 return -EADDRNOTAVAIL;
304
305         lock_sock(sk);
306
307         err = -EINVAL;
308         if (!sock_flag(sk, SOCK_ZAPPED))
309                 goto out_unlock;
310
311         if (sk->sk_state != TCP_CLOSE)
312                 goto out_unlock;
313
314         bound_dev_if = sk->sk_bound_dev_if;
315
316         /* Check if the address belongs to the host. */
317         rcu_read_lock();
318         if (addr_type != IPV6_ADDR_ANY) {
319                 struct net_device *dev = NULL;
320
321                 if (addr_type & IPV6_ADDR_LINKLOCAL) {
322                         if (addr->l2tp_scope_id)
323                                 bound_dev_if = addr->l2tp_scope_id;
324
325                         /* Binding to link-local address requires an
326                          * interface.
327                          */
328                         if (!bound_dev_if)
329                                 goto out_unlock_rcu;
330
331                         err = -ENODEV;
332                         dev = dev_get_by_index_rcu(sock_net(sk), bound_dev_if);
333                         if (!dev)
334                                 goto out_unlock_rcu;
335                 }
336
337                 /* ipv4 addr of the socket is invalid.  Only the
338                  * unspecified and mapped address have a v4 equivalent.
339                  */
340                 v4addr = LOOPBACK4_IPV6;
341                 err = -EADDRNOTAVAIL;
342                 if (!ipv6_chk_addr(sock_net(sk), &addr->l2tp_addr, dev, 0))
343                         goto out_unlock_rcu;
344         }
345         rcu_read_unlock();
346
347         write_lock_bh(&l2tp_ip6_lock);
348         if (__l2tp_ip6_bind_lookup(net, &addr->l2tp_addr, NULL, bound_dev_if,
349                                    addr->l2tp_conn_id)) {
350                 write_unlock_bh(&l2tp_ip6_lock);
351                 err = -EADDRINUSE;
352                 goto out_unlock;
353         }
354
355         inet->inet_saddr = v4addr;
356         inet->inet_rcv_saddr = v4addr;
357         sk->sk_bound_dev_if = bound_dev_if;
358         sk->sk_v6_rcv_saddr = addr->l2tp_addr;
359         np->saddr = addr->l2tp_addr;
360
361         l2tp_ip6_sk(sk)->conn_id = addr->l2tp_conn_id;
362
363         sk_add_bind_node(sk, &l2tp_ip6_bind_table);
364         sk_del_node_init(sk);
365         write_unlock_bh(&l2tp_ip6_lock);
366
367         sock_reset_flag(sk, SOCK_ZAPPED);
368         release_sock(sk);
369         return 0;
370
371 out_unlock_rcu:
372         rcu_read_unlock();
373 out_unlock:
374         release_sock(sk);
375
376         return err;
377 }
378
379 static int l2tp_ip6_connect(struct sock *sk, struct sockaddr *uaddr,
380                             int addr_len)
381 {
382         struct sockaddr_l2tpip6 *lsa = (struct sockaddr_l2tpip6 *) uaddr;
383         struct sockaddr_in6     *usin = (struct sockaddr_in6 *) uaddr;
384         struct in6_addr *daddr;
385         int     addr_type;
386         int rc;
387
388         if (addr_len < sizeof(*lsa))
389                 return -EINVAL;
390
391         if (usin->sin6_family != AF_INET6)
392                 return -EINVAL;
393
394         addr_type = ipv6_addr_type(&usin->sin6_addr);
395         if (addr_type & IPV6_ADDR_MULTICAST)
396                 return -EINVAL;
397
398         if (addr_type & IPV6_ADDR_MAPPED) {
399                 daddr = &usin->sin6_addr;
400                 if (ipv4_is_multicast(daddr->s6_addr32[3]))
401                         return -EINVAL;
402         }
403
404         lock_sock(sk);
405
406          /* Must bind first - autobinding does not work */
407         if (sock_flag(sk, SOCK_ZAPPED)) {
408                 rc = -EINVAL;
409                 goto out_sk;
410         }
411
412         rc = __ip6_datagram_connect(sk, uaddr, addr_len);
413         if (rc < 0)
414                 goto out_sk;
415
416         l2tp_ip6_sk(sk)->peer_conn_id = lsa->l2tp_conn_id;
417
418         write_lock_bh(&l2tp_ip6_lock);
419         hlist_del_init(&sk->sk_bind_node);
420         sk_add_bind_node(sk, &l2tp_ip6_bind_table);
421         write_unlock_bh(&l2tp_ip6_lock);
422
423 out_sk:
424         release_sock(sk);
425
426         return rc;
427 }
428
429 static int l2tp_ip6_disconnect(struct sock *sk, int flags)
430 {
431         if (sock_flag(sk, SOCK_ZAPPED))
432                 return 0;
433
434         return __udp_disconnect(sk, flags);
435 }
436
437 static int l2tp_ip6_getname(struct socket *sock, struct sockaddr *uaddr,
438                             int peer)
439 {
440         struct sockaddr_l2tpip6 *lsa = (struct sockaddr_l2tpip6 *)uaddr;
441         struct sock *sk = sock->sk;
442         struct ipv6_pinfo *np = inet6_sk(sk);
443         struct l2tp_ip6_sock *lsk = l2tp_ip6_sk(sk);
444
445         lsa->l2tp_family = AF_INET6;
446         lsa->l2tp_flowinfo = 0;
447         lsa->l2tp_scope_id = 0;
448         lsa->l2tp_unused = 0;
449         if (peer) {
450                 if (!lsk->peer_conn_id)
451                         return -ENOTCONN;
452                 lsa->l2tp_conn_id = lsk->peer_conn_id;
453                 lsa->l2tp_addr = sk->sk_v6_daddr;
454                 if (np->sndflow)
455                         lsa->l2tp_flowinfo = np->flow_label;
456         } else {
457                 if (ipv6_addr_any(&sk->sk_v6_rcv_saddr))
458                         lsa->l2tp_addr = np->saddr;
459                 else
460                         lsa->l2tp_addr = sk->sk_v6_rcv_saddr;
461
462                 lsa->l2tp_conn_id = lsk->conn_id;
463         }
464         if (ipv6_addr_type(&lsa->l2tp_addr) & IPV6_ADDR_LINKLOCAL)
465                 lsa->l2tp_scope_id = sk->sk_bound_dev_if;
466         return sizeof(*lsa);
467 }
468
469 static int l2tp_ip6_backlog_recv(struct sock *sk, struct sk_buff *skb)
470 {
471         int rc;
472
473         /* Charge it to the socket, dropping if the queue is full. */
474         rc = sock_queue_rcv_skb(sk, skb);
475         if (rc < 0)
476                 goto drop;
477
478         return 0;
479
480 drop:
481         IP_INC_STATS(sock_net(sk), IPSTATS_MIB_INDISCARDS);
482         kfree_skb(skb);
483         return -1;
484 }
485
486 static int l2tp_ip6_push_pending_frames(struct sock *sk)
487 {
488         struct sk_buff *skb;
489         __be32 *transhdr = NULL;
490         int err = 0;
491
492         skb = skb_peek(&sk->sk_write_queue);
493         if (skb == NULL)
494                 goto out;
495
496         transhdr = (__be32 *)skb_transport_header(skb);
497         *transhdr = 0;
498
499         err = ip6_push_pending_frames(sk);
500
501 out:
502         return err;
503 }
504
505 /* Userspace will call sendmsg() on the tunnel socket to send L2TP
506  * control frames.
507  */
508 static int l2tp_ip6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
509 {
510         struct ipv6_txoptions opt_space;
511         DECLARE_SOCKADDR(struct sockaddr_l2tpip6 *, lsa, msg->msg_name);
512         struct in6_addr *daddr, *final_p, final;
513         struct ipv6_pinfo *np = inet6_sk(sk);
514         struct ipv6_txoptions *opt_to_free = NULL;
515         struct ipv6_txoptions *opt = NULL;
516         struct ip6_flowlabel *flowlabel = NULL;
517         struct dst_entry *dst = NULL;
518         struct flowi6 fl6;
519         struct ipcm6_cookie ipc6;
520         int addr_len = msg->msg_namelen;
521         int transhdrlen = 4; /* zero session-id */
522         int ulen;
523         int err;
524
525         /* Rough check on arithmetic overflow,
526            better check is made in ip6_append_data().
527          */
528         if (len > INT_MAX - transhdrlen)
529                 return -EMSGSIZE;
530         ulen = len + transhdrlen;
531
532         /* Mirror BSD error message compatibility */
533         if (msg->msg_flags & MSG_OOB)
534                 return -EOPNOTSUPP;
535
536         /*
537          *      Get and verify the address.
538          */
539         memset(&fl6, 0, sizeof(fl6));
540
541         fl6.flowi6_mark = sk->sk_mark;
542         fl6.flowi6_uid = sk->sk_uid;
543
544         ipcm6_init(&ipc6);
545
546         if (lsa) {
547                 if (addr_len < SIN6_LEN_RFC2133)
548                         return -EINVAL;
549
550                 if (lsa->l2tp_family && lsa->l2tp_family != AF_INET6)
551                         return -EAFNOSUPPORT;
552
553                 daddr = &lsa->l2tp_addr;
554                 if (np->sndflow) {
555                         fl6.flowlabel = lsa->l2tp_flowinfo & IPV6_FLOWINFO_MASK;
556                         if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
557                                 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
558                                 if (flowlabel == NULL)
559                                         return -EINVAL;
560                         }
561                 }
562
563                 /*
564                  * Otherwise it will be difficult to maintain
565                  * sk->sk_dst_cache.
566                  */
567                 if (sk->sk_state == TCP_ESTABLISHED &&
568                     ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
569                         daddr = &sk->sk_v6_daddr;
570
571                 if (addr_len >= sizeof(struct sockaddr_in6) &&
572                     lsa->l2tp_scope_id &&
573                     ipv6_addr_type(daddr) & IPV6_ADDR_LINKLOCAL)
574                         fl6.flowi6_oif = lsa->l2tp_scope_id;
575         } else {
576                 if (sk->sk_state != TCP_ESTABLISHED)
577                         return -EDESTADDRREQ;
578
579                 daddr = &sk->sk_v6_daddr;
580                 fl6.flowlabel = np->flow_label;
581         }
582
583         if (fl6.flowi6_oif == 0)
584                 fl6.flowi6_oif = sk->sk_bound_dev_if;
585
586         if (msg->msg_controllen) {
587                 opt = &opt_space;
588                 memset(opt, 0, sizeof(struct ipv6_txoptions));
589                 opt->tot_len = sizeof(struct ipv6_txoptions);
590                 ipc6.opt = opt;
591
592                 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, &ipc6);
593                 if (err < 0) {
594                         fl6_sock_release(flowlabel);
595                         return err;
596                 }
597                 if ((fl6.flowlabel & IPV6_FLOWLABEL_MASK) && !flowlabel) {
598                         flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
599                         if (flowlabel == NULL)
600                                 return -EINVAL;
601                 }
602                 if (!(opt->opt_nflen|opt->opt_flen))
603                         opt = NULL;
604         }
605
606         if (!opt) {
607                 opt = txopt_get(np);
608                 opt_to_free = opt;
609         }
610         if (flowlabel)
611                 opt = fl6_merge_options(&opt_space, flowlabel, opt);
612         opt = ipv6_fixup_options(&opt_space, opt);
613         ipc6.opt = opt;
614
615         fl6.flowi6_proto = sk->sk_protocol;
616         if (!ipv6_addr_any(daddr))
617                 fl6.daddr = *daddr;
618         else
619                 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
620         if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
621                 fl6.saddr = np->saddr;
622
623         final_p = fl6_update_dst(&fl6, opt, &final);
624
625         if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr))
626                 fl6.flowi6_oif = np->mcast_oif;
627         else if (!fl6.flowi6_oif)
628                 fl6.flowi6_oif = np->ucast_oif;
629
630         security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
631
632         if (ipc6.tclass < 0)
633                 ipc6.tclass = np->tclass;
634
635         fl6.flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6.flowlabel);
636
637         dst = ip6_dst_lookup_flow(sock_net(sk), sk, &fl6, final_p);
638         if (IS_ERR(dst)) {
639                 err = PTR_ERR(dst);
640                 goto out;
641         }
642
643         if (ipc6.hlimit < 0)
644                 ipc6.hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
645
646         if (ipc6.dontfrag < 0)
647                 ipc6.dontfrag = np->dontfrag;
648
649         if (msg->msg_flags & MSG_CONFIRM)
650                 goto do_confirm;
651
652 back_from_confirm:
653         lock_sock(sk);
654         err = ip6_append_data(sk, ip_generic_getfrag, msg,
655                               ulen, transhdrlen, &ipc6,
656                               &fl6, (struct rt6_info *)dst,
657                               msg->msg_flags);
658         if (err)
659                 ip6_flush_pending_frames(sk);
660         else if (!(msg->msg_flags & MSG_MORE))
661                 err = l2tp_ip6_push_pending_frames(sk);
662         release_sock(sk);
663 done:
664         dst_release(dst);
665 out:
666         fl6_sock_release(flowlabel);
667         txopt_put(opt_to_free);
668
669         return err < 0 ? err : len;
670
671 do_confirm:
672         if (msg->msg_flags & MSG_PROBE)
673                 dst_confirm_neigh(dst, &fl6.daddr);
674         if (!(msg->msg_flags & MSG_PROBE) || len)
675                 goto back_from_confirm;
676         err = 0;
677         goto done;
678 }
679
680 static int l2tp_ip6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
681                             int noblock, int flags, int *addr_len)
682 {
683         struct ipv6_pinfo *np = inet6_sk(sk);
684         DECLARE_SOCKADDR(struct sockaddr_l2tpip6 *, lsa, msg->msg_name);
685         size_t copied = 0;
686         int err = -EOPNOTSUPP;
687         struct sk_buff *skb;
688
689         if (flags & MSG_OOB)
690                 goto out;
691
692         if (flags & MSG_ERRQUEUE)
693                 return ipv6_recv_error(sk, msg, len, addr_len);
694
695         skb = skb_recv_datagram(sk, flags, noblock, &err);
696         if (!skb)
697                 goto out;
698
699         copied = skb->len;
700         if (len < copied) {
701                 msg->msg_flags |= MSG_TRUNC;
702                 copied = len;
703         }
704
705         err = skb_copy_datagram_msg(skb, 0, msg, copied);
706         if (err)
707                 goto done;
708
709         sock_recv_timestamp(msg, sk, skb);
710
711         /* Copy the address. */
712         if (lsa) {
713                 lsa->l2tp_family = AF_INET6;
714                 lsa->l2tp_unused = 0;
715                 lsa->l2tp_addr = ipv6_hdr(skb)->saddr;
716                 lsa->l2tp_flowinfo = 0;
717                 lsa->l2tp_scope_id = 0;
718                 lsa->l2tp_conn_id = 0;
719                 if (ipv6_addr_type(&lsa->l2tp_addr) & IPV6_ADDR_LINKLOCAL)
720                         lsa->l2tp_scope_id = inet6_iif(skb);
721                 *addr_len = sizeof(*lsa);
722         }
723
724         if (np->rxopt.all)
725                 ip6_datagram_recv_ctl(sk, msg, skb);
726
727         if (flags & MSG_TRUNC)
728                 copied = skb->len;
729 done:
730         skb_free_datagram(sk, skb);
731 out:
732         return err ? err : copied;
733 }
734
735 static struct proto l2tp_ip6_prot = {
736         .name              = "L2TP/IPv6",
737         .owner             = THIS_MODULE,
738         .init              = l2tp_ip6_open,
739         .close             = l2tp_ip6_close,
740         .bind              = l2tp_ip6_bind,
741         .connect           = l2tp_ip6_connect,
742         .disconnect        = l2tp_ip6_disconnect,
743         .ioctl             = l2tp_ioctl,
744         .destroy           = l2tp_ip6_destroy_sock,
745         .setsockopt        = ipv6_setsockopt,
746         .getsockopt        = ipv6_getsockopt,
747         .sendmsg           = l2tp_ip6_sendmsg,
748         .recvmsg           = l2tp_ip6_recvmsg,
749         .backlog_rcv       = l2tp_ip6_backlog_recv,
750         .hash              = l2tp_ip6_hash,
751         .unhash            = l2tp_ip6_unhash,
752         .obj_size          = sizeof(struct l2tp_ip6_sock),
753 #ifdef CONFIG_COMPAT
754         .compat_setsockopt = compat_ipv6_setsockopt,
755         .compat_getsockopt = compat_ipv6_getsockopt,
756 #endif
757 };
758
759 static const struct proto_ops l2tp_ip6_ops = {
760         .family            = PF_INET6,
761         .owner             = THIS_MODULE,
762         .release           = inet6_release,
763         .bind              = inet6_bind,
764         .connect           = inet_dgram_connect,
765         .socketpair        = sock_no_socketpair,
766         .accept            = sock_no_accept,
767         .getname           = l2tp_ip6_getname,
768         .poll              = datagram_poll,
769         .ioctl             = inet6_ioctl,
770         .listen            = sock_no_listen,
771         .shutdown          = inet_shutdown,
772         .setsockopt        = sock_common_setsockopt,
773         .getsockopt        = sock_common_getsockopt,
774         .sendmsg           = inet_sendmsg,
775         .recvmsg           = sock_common_recvmsg,
776         .mmap              = sock_no_mmap,
777         .sendpage          = sock_no_sendpage,
778 #ifdef CONFIG_COMPAT
779         .compat_setsockopt = compat_sock_common_setsockopt,
780         .compat_getsockopt = compat_sock_common_getsockopt,
781 #endif
782 };
783
784 static struct inet_protosw l2tp_ip6_protosw = {
785         .type           = SOCK_DGRAM,
786         .protocol       = IPPROTO_L2TP,
787         .prot           = &l2tp_ip6_prot,
788         .ops            = &l2tp_ip6_ops,
789 };
790
791 static struct inet6_protocol l2tp_ip6_protocol __read_mostly = {
792         .handler        = l2tp_ip6_recv,
793 };
794
795 static int __init l2tp_ip6_init(void)
796 {
797         int err;
798
799         pr_info("L2TP IP encapsulation support for IPv6 (L2TPv3)\n");
800
801         err = proto_register(&l2tp_ip6_prot, 1);
802         if (err != 0)
803                 goto out;
804
805         err = inet6_add_protocol(&l2tp_ip6_protocol, IPPROTO_L2TP);
806         if (err)
807                 goto out1;
808
809         inet6_register_protosw(&l2tp_ip6_protosw);
810         return 0;
811
812 out1:
813         proto_unregister(&l2tp_ip6_prot);
814 out:
815         return err;
816 }
817
818 static void __exit l2tp_ip6_exit(void)
819 {
820         inet6_unregister_protosw(&l2tp_ip6_protosw);
821         inet6_del_protocol(&l2tp_ip6_protocol, IPPROTO_L2TP);
822         proto_unregister(&l2tp_ip6_prot);
823 }
824
825 module_init(l2tp_ip6_init);
826 module_exit(l2tp_ip6_exit);
827
828 MODULE_LICENSE("GPL");
829 MODULE_AUTHOR("Chris Elston <celston@katalix.com>");
830 MODULE_DESCRIPTION("L2TP IP encapsulation for IPv6");
831 MODULE_VERSION("1.0");
832
833 /* Use the value of SOCK_DGRAM (2) directory, because __stringify doesn't like
834  * enums
835  */
836 MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_INET6, 2, IPPROTO_L2TP);
837 MODULE_ALIAS_NET_PF_PROTO(PF_INET6, IPPROTO_L2TP);