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