GNU Linux-libre 4.9.328-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(struct net *net,
59                                            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                 struct l2tp_ip6_sock *l2tp = l2tp_ip6_sk(sk);
69
70                 if (l2tp == NULL)
71                         continue;
72
73                 if ((l2tp->conn_id == tunnel_id) &&
74                     net_eq(sock_net(sk), net) &&
75                     (!sk_laddr || ipv6_addr_any(sk_laddr) || ipv6_addr_equal(sk_laddr, laddr)) &&
76                     (!raddr || ipv6_addr_any(sk_raddr) || ipv6_addr_equal(sk_raddr, raddr)) &&
77                     (!sk->sk_bound_dev_if || !dif ||
78                      sk->sk_bound_dev_if == dif))
79                         goto found;
80         }
81
82         sk = NULL;
83 found:
84         return sk;
85 }
86
87 /* When processing receive frames, there are two cases to
88  * consider. Data frames consist of a non-zero session-id and an
89  * optional cookie. Control frames consist of a regular L2TP header
90  * preceded by 32-bits of zeros.
91  *
92  * L2TPv3 Session Header Over IP
93  *
94  *  0                   1                   2                   3
95  *  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
96  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
97  * |                           Session ID                          |
98  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
99  * |               Cookie (optional, maximum 64 bits)...
100  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
101  *                                                                 |
102  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
103  *
104  * L2TPv3 Control Message Header Over IP
105  *
106  *  0                   1                   2                   3
107  *  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
108  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
109  * |                      (32 bits of zeros)                       |
110  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
111  * |T|L|x|x|S|x|x|x|x|x|x|x|  Ver  |             Length            |
112  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
113  * |                     Control Connection ID                     |
114  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
115  * |               Ns              |               Nr              |
116  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
117  *
118  * All control frames are passed to userspace.
119  */
120 static int l2tp_ip6_recv(struct sk_buff *skb)
121 {
122         struct net *net = dev_net(skb->dev);
123         struct sock *sk;
124         u32 session_id;
125         u32 tunnel_id;
126         unsigned char *ptr, *optr;
127         struct l2tp_session *session;
128         struct l2tp_tunnel *tunnel = NULL;
129         struct ipv6hdr *iph;
130         int length;
131
132         if (!pskb_may_pull(skb, 4))
133                 goto discard;
134
135         /* Point to L2TP header */
136         optr = ptr = skb->data;
137         session_id = ntohl(*((__be32 *) ptr));
138         ptr += 4;
139
140         /* RFC3931: L2TP/IP packets have the first 4 bytes containing
141          * the session_id. If it is 0, the packet is a L2TP control
142          * frame and the session_id value can be discarded.
143          */
144         if (session_id == 0) {
145                 __skb_pull(skb, 4);
146                 goto pass_up;
147         }
148
149         /* Ok, this is a data packet. Lookup the session. */
150         session = l2tp_session_get(net, NULL, session_id, true);
151         if (!session)
152                 goto discard;
153
154         tunnel = session->tunnel;
155         if (!tunnel)
156                 goto discard_sess;
157
158         /* Trace packet contents, if enabled */
159         if (tunnel->debug & L2TP_MSG_DATA) {
160                 length = min(32u, skb->len);
161                 if (!pskb_may_pull(skb, length))
162                         goto discard_sess;
163
164                 /* Point to L2TP header */
165                 optr = ptr = skb->data;
166                 ptr += 4;
167                 pr_debug("%s: ip recv\n", tunnel->name);
168                 print_hex_dump_bytes("", DUMP_PREFIX_OFFSET, ptr, length);
169         }
170
171         if (l2tp_v3_ensure_opt_in_linear(session, skb, &ptr, &optr))
172                 goto discard_sess;
173
174         l2tp_recv_common(session, skb, ptr, optr, 0, skb->len,
175                          tunnel->recv_payload_hook);
176         l2tp_session_dec_refcount(session);
177
178         return 0;
179
180 pass_up:
181         /* Get the tunnel_id from the L2TP header */
182         if (!pskb_may_pull(skb, 12))
183                 goto discard;
184
185         if ((skb->data[0] & 0xc0) != 0xc0)
186                 goto discard;
187
188         tunnel_id = ntohl(*(__be32 *) &skb->data[4]);
189         iph = ipv6_hdr(skb);
190
191         read_lock_bh(&l2tp_ip6_lock);
192         sk = __l2tp_ip6_bind_lookup(net, &iph->daddr, &iph->saddr,
193                                     inet6_iif(skb), tunnel_id);
194         if (!sk) {
195                 read_unlock_bh(&l2tp_ip6_lock);
196                 goto discard;
197         }
198         sock_hold(sk);
199         read_unlock_bh(&l2tp_ip6_lock);
200
201         if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb))
202                 goto discard_put;
203
204         nf_reset(skb);
205
206         return sk_receive_skb(sk, skb, 1);
207
208 discard_sess:
209         if (session->deref)
210                 session->deref(session);
211         l2tp_session_dec_refcount(session);
212         goto discard;
213
214 discard_put:
215         sock_put(sk);
216
217 discard:
218         kfree_skb(skb);
219         return 0;
220 }
221
222 static int l2tp_ip6_hash(struct sock *sk)
223 {
224         if (sk_unhashed(sk)) {
225                 write_lock_bh(&l2tp_ip6_lock);
226                 sk_add_node(sk, &l2tp_ip6_table);
227                 write_unlock_bh(&l2tp_ip6_lock);
228         }
229         return 0;
230 }
231
232 static void l2tp_ip6_unhash(struct sock *sk)
233 {
234         if (sk_unhashed(sk))
235                 return;
236         write_lock_bh(&l2tp_ip6_lock);
237         sk_del_node_init(sk);
238         write_unlock_bh(&l2tp_ip6_lock);
239 }
240
241 static int l2tp_ip6_open(struct sock *sk)
242 {
243         /* Prevent autobind. We don't have ports. */
244         inet_sk(sk)->inet_num = IPPROTO_L2TP;
245
246         l2tp_ip6_hash(sk);
247         return 0;
248 }
249
250 static void l2tp_ip6_close(struct sock *sk, long timeout)
251 {
252         write_lock_bh(&l2tp_ip6_lock);
253         hlist_del_init(&sk->sk_bind_node);
254         sk_del_node_init(sk);
255         write_unlock_bh(&l2tp_ip6_lock);
256
257         sk_common_release(sk);
258 }
259
260 static void l2tp_ip6_destroy_sock(struct sock *sk)
261 {
262         struct l2tp_tunnel *tunnel = l2tp_sock_to_tunnel(sk);
263
264         lock_sock(sk);
265         ip6_flush_pending_frames(sk);
266         release_sock(sk);
267
268         if (tunnel) {
269                 l2tp_tunnel_closeall(tunnel);
270                 sock_put(sk);
271         }
272
273         inet6_destroy_sock(sk);
274 }
275
276 static int l2tp_ip6_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
277 {
278         struct inet_sock *inet = inet_sk(sk);
279         struct ipv6_pinfo *np = inet6_sk(sk);
280         struct sockaddr_l2tpip6 *addr = (struct sockaddr_l2tpip6 *) uaddr;
281         struct net *net = sock_net(sk);
282         __be32 v4addr = 0;
283         int bound_dev_if;
284         int addr_type;
285         int err;
286
287         if (addr->l2tp_family != AF_INET6)
288                 return -EINVAL;
289         if (addr_len < sizeof(*addr))
290                 return -EINVAL;
291
292         addr_type = ipv6_addr_type(&addr->l2tp_addr);
293
294         /* l2tp_ip6 sockets are IPv6 only */
295         if (addr_type == IPV6_ADDR_MAPPED)
296                 return -EADDRNOTAVAIL;
297
298         /* L2TP is point-point, not multicast */
299         if (addr_type & IPV6_ADDR_MULTICAST)
300                 return -EADDRNOTAVAIL;
301
302         lock_sock(sk);
303
304         err = -EINVAL;
305         if (!sock_flag(sk, SOCK_ZAPPED))
306                 goto out_unlock;
307
308         if (sk->sk_state != TCP_CLOSE)
309                 goto out_unlock;
310
311         bound_dev_if = sk->sk_bound_dev_if;
312
313         /* Check if the address belongs to the host. */
314         rcu_read_lock();
315         if (addr_type != IPV6_ADDR_ANY) {
316                 struct net_device *dev = NULL;
317
318                 if (addr_type & IPV6_ADDR_LINKLOCAL) {
319                         if (addr->l2tp_scope_id)
320                                 bound_dev_if = addr->l2tp_scope_id;
321
322                         /* Binding to link-local address requires an
323                          * interface.
324                          */
325                         if (!bound_dev_if)
326                                 goto out_unlock_rcu;
327
328                         err = -ENODEV;
329                         dev = dev_get_by_index_rcu(sock_net(sk), bound_dev_if);
330                         if (!dev)
331                                 goto out_unlock_rcu;
332                 }
333
334                 /* ipv4 addr of the socket is invalid.  Only the
335                  * unspecified and mapped address have a v4 equivalent.
336                  */
337                 v4addr = LOOPBACK4_IPV6;
338                 err = -EADDRNOTAVAIL;
339                 if (!ipv6_chk_addr(sock_net(sk), &addr->l2tp_addr, dev, 0))
340                         goto out_unlock_rcu;
341         }
342         rcu_read_unlock();
343
344         write_lock_bh(&l2tp_ip6_lock);
345         if (__l2tp_ip6_bind_lookup(net, &addr->l2tp_addr, NULL, bound_dev_if,
346                                    addr->l2tp_conn_id)) {
347                 write_unlock_bh(&l2tp_ip6_lock);
348                 err = -EADDRINUSE;
349                 goto out_unlock;
350         }
351
352         inet->inet_saddr = v4addr;
353         inet->inet_rcv_saddr = v4addr;
354         sk->sk_bound_dev_if = bound_dev_if;
355         sk->sk_v6_rcv_saddr = addr->l2tp_addr;
356         np->saddr = addr->l2tp_addr;
357
358         l2tp_ip6_sk(sk)->conn_id = addr->l2tp_conn_id;
359
360         sk_add_bind_node(sk, &l2tp_ip6_bind_table);
361         sk_del_node_init(sk);
362         write_unlock_bh(&l2tp_ip6_lock);
363
364         sock_reset_flag(sk, SOCK_ZAPPED);
365         release_sock(sk);
366         return 0;
367
368 out_unlock_rcu:
369         rcu_read_unlock();
370 out_unlock:
371         release_sock(sk);
372
373         return err;
374 }
375
376 static int l2tp_ip6_connect(struct sock *sk, struct sockaddr *uaddr,
377                             int addr_len)
378 {
379         struct sockaddr_l2tpip6 *lsa = (struct sockaddr_l2tpip6 *) uaddr;
380         struct sockaddr_in6     *usin = (struct sockaddr_in6 *) uaddr;
381         struct in6_addr *daddr;
382         int     addr_type;
383         int rc;
384
385         if (addr_len < sizeof(*lsa))
386                 return -EINVAL;
387
388         if (usin->sin6_family != AF_INET6)
389                 return -EINVAL;
390
391         addr_type = ipv6_addr_type(&usin->sin6_addr);
392         if (addr_type & IPV6_ADDR_MULTICAST)
393                 return -EINVAL;
394
395         if (addr_type & IPV6_ADDR_MAPPED) {
396                 daddr = &usin->sin6_addr;
397                 if (ipv4_is_multicast(daddr->s6_addr32[3]))
398                         return -EINVAL;
399         }
400
401         lock_sock(sk);
402
403          /* Must bind first - autobinding does not work */
404         if (sock_flag(sk, SOCK_ZAPPED)) {
405                 rc = -EINVAL;
406                 goto out_sk;
407         }
408
409         rc = __ip6_datagram_connect(sk, uaddr, addr_len);
410         if (rc < 0)
411                 goto out_sk;
412
413         l2tp_ip6_sk(sk)->peer_conn_id = lsa->l2tp_conn_id;
414
415         write_lock_bh(&l2tp_ip6_lock);
416         hlist_del_init(&sk->sk_bind_node);
417         sk_add_bind_node(sk, &l2tp_ip6_bind_table);
418         write_unlock_bh(&l2tp_ip6_lock);
419
420 out_sk:
421         release_sock(sk);
422
423         return rc;
424 }
425
426 static int l2tp_ip6_disconnect(struct sock *sk, int flags)
427 {
428         if (sock_flag(sk, SOCK_ZAPPED))
429                 return 0;
430
431         return __udp_disconnect(sk, flags);
432 }
433
434 static int l2tp_ip6_getname(struct socket *sock, struct sockaddr *uaddr,
435                             int *uaddr_len, int peer)
436 {
437         struct sockaddr_l2tpip6 *lsa = (struct sockaddr_l2tpip6 *)uaddr;
438         struct sock *sk = sock->sk;
439         struct ipv6_pinfo *np = inet6_sk(sk);
440         struct l2tp_ip6_sock *lsk = l2tp_ip6_sk(sk);
441
442         lsa->l2tp_family = AF_INET6;
443         lsa->l2tp_flowinfo = 0;
444         lsa->l2tp_scope_id = 0;
445         lsa->l2tp_unused = 0;
446         if (peer) {
447                 if (!lsk->peer_conn_id)
448                         return -ENOTCONN;
449                 lsa->l2tp_conn_id = lsk->peer_conn_id;
450                 lsa->l2tp_addr = sk->sk_v6_daddr;
451                 if (np->sndflow)
452                         lsa->l2tp_flowinfo = np->flow_label;
453         } else {
454                 if (ipv6_addr_any(&sk->sk_v6_rcv_saddr))
455                         lsa->l2tp_addr = np->saddr;
456                 else
457                         lsa->l2tp_addr = sk->sk_v6_rcv_saddr;
458
459                 lsa->l2tp_conn_id = lsk->conn_id;
460         }
461         if (ipv6_addr_type(&lsa->l2tp_addr) & IPV6_ADDR_LINKLOCAL)
462                 lsa->l2tp_scope_id = sk->sk_bound_dev_if;
463         *uaddr_len = sizeof(*lsa);
464         return 0;
465 }
466
467 static int l2tp_ip6_backlog_recv(struct sock *sk, struct sk_buff *skb)
468 {
469         int rc;
470
471         /* Charge it to the socket, dropping if the queue is full. */
472         rc = sock_queue_rcv_skb(sk, skb);
473         if (rc < 0)
474                 goto drop;
475
476         return 0;
477
478 drop:
479         IP_INC_STATS(sock_net(sk), IPSTATS_MIB_INDISCARDS);
480         kfree_skb(skb);
481         return -1;
482 }
483
484 static int l2tp_ip6_push_pending_frames(struct sock *sk)
485 {
486         struct sk_buff *skb;
487         __be32 *transhdr = NULL;
488         int err = 0;
489
490         skb = skb_peek(&sk->sk_write_queue);
491         if (skb == NULL)
492                 goto out;
493
494         transhdr = (__be32 *)skb_transport_header(skb);
495         *transhdr = 0;
496
497         err = ip6_push_pending_frames(sk);
498
499 out:
500         return err;
501 }
502
503 /* Userspace will call sendmsg() on the tunnel socket to send L2TP
504  * control frames.
505  */
506 static int l2tp_ip6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
507 {
508         struct ipv6_txoptions opt_space;
509         DECLARE_SOCKADDR(struct sockaddr_l2tpip6 *, lsa, msg->msg_name);
510         struct in6_addr *daddr, *final_p, final;
511         struct ipv6_pinfo *np = inet6_sk(sk);
512         struct ipv6_txoptions *opt_to_free = NULL;
513         struct ipv6_txoptions *opt = NULL;
514         struct ip6_flowlabel *flowlabel = NULL;
515         struct dst_entry *dst = NULL;
516         struct flowi6 fl6;
517         struct sockcm_cookie sockc_unused = {0};
518         struct ipcm6_cookie ipc6;
519         int addr_len = msg->msg_namelen;
520         int transhdrlen = 4; /* zero session-id */
521         int ulen;
522         int err;
523
524         /* Rough check on arithmetic overflow,
525            better check is made in ip6_append_data().
526          */
527         if (len > INT_MAX - transhdrlen)
528                 return -EMSGSIZE;
529         ulen = len + transhdrlen;
530
531         /* Mirror BSD error message compatibility */
532         if (msg->msg_flags & MSG_OOB)
533                 return -EOPNOTSUPP;
534
535         /*
536          *      Get and verify the address.
537          */
538         memset(&fl6, 0, sizeof(fl6));
539
540         fl6.flowi6_mark = sk->sk_mark;
541
542         ipc6.hlimit = -1;
543         ipc6.tclass = -1;
544         ipc6.dontfrag = -1;
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                                             &sockc_unused);
594                 if (err < 0) {
595                         fl6_sock_release(flowlabel);
596                         return err;
597                 }
598                 if ((fl6.flowlabel & IPV6_FLOWLABEL_MASK) && !flowlabel) {
599                         flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
600                         if (flowlabel == NULL)
601                                 return -EINVAL;
602                 }
603                 if (!(opt->opt_nflen|opt->opt_flen))
604                         opt = NULL;
605         }
606
607         if (!opt) {
608                 opt = txopt_get(np);
609                 opt_to_free = opt;
610         }
611         if (flowlabel)
612                 opt = fl6_merge_options(&opt_space, flowlabel, opt);
613         opt = ipv6_fixup_options(&opt_space, opt);
614         ipc6.opt = opt;
615
616         fl6.flowi6_proto = sk->sk_protocol;
617         if (!ipv6_addr_any(daddr))
618                 fl6.daddr = *daddr;
619         else
620                 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
621         if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
622                 fl6.saddr = np->saddr;
623
624         final_p = fl6_update_dst(&fl6, opt, &final);
625
626         if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr))
627                 fl6.flowi6_oif = np->mcast_oif;
628         else if (!fl6.flowi6_oif)
629                 fl6.flowi6_oif = np->ucast_oif;
630
631         security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
632
633         if (ipc6.tclass < 0)
634                 ipc6.tclass = np->tclass;
635
636         fl6.flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6.flowlabel);
637
638         dst = ip6_dst_lookup_flow(sock_net(sk), sk, &fl6, final_p);
639         if (IS_ERR(dst)) {
640                 err = PTR_ERR(dst);
641                 goto out;
642         }
643
644         if (ipc6.hlimit < 0)
645                 ipc6.hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
646
647         if (ipc6.dontfrag < 0)
648                 ipc6.dontfrag = np->dontfrag;
649
650         if (msg->msg_flags & MSG_CONFIRM)
651                 goto do_confirm;
652
653 back_from_confirm:
654         lock_sock(sk);
655         err = ip6_append_data(sk, ip_generic_getfrag, msg,
656                               ulen, transhdrlen, &ipc6,
657                               &fl6, (struct rt6_info *)dst,
658                               msg->msg_flags, &sockc_unused);
659         if (err)
660                 ip6_flush_pending_frames(sk);
661         else if (!(msg->msg_flags & MSG_MORE))
662                 err = l2tp_ip6_push_pending_frames(sk);
663         release_sock(sk);
664 done:
665         dst_release(dst);
666 out:
667         fl6_sock_release(flowlabel);
668         txopt_put(opt_to_free);
669
670         return err < 0 ? err : len;
671
672 do_confirm:
673         dst_confirm(dst);
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);