GNU Linux-libre 4.14.303-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         inet6_destroy_sock(sk);
282 }
283
284 static 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
376 out_unlock_rcu:
377         rcu_read_unlock();
378 out_unlock:
379         release_sock(sk);
380
381         return err;
382 }
383
384 static 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
428 out_sk:
429         release_sock(sk);
430
431         return rc;
432 }
433
434 static 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
442 static 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
475 static 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
486 drop:
487         IP_INC_STATS(sock_net(sk), IPSTATS_MIB_INDISCARDS);
488         kfree_skb(skb);
489         return -1;
490 }
491
492 static 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
507 out:
508         return err;
509 }
510
511 /* Userspace will call sendmsg() on the tunnel socket to send L2TP
512  * control frames.
513  */
514 static 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;
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 - transhdrlen)
536                 return -EMSGSIZE;
537         ulen = len + transhdrlen;
538
539         /* Mirror BSD error message compatibility */
540         if (msg->msg_flags & MSG_OOB)
541                 return -EOPNOTSUPP;
542
543         /*
544          *      Get and verify the address.
545          */
546         memset(&fl6, 0, sizeof(fl6));
547
548         fl6.flowi6_mark = sk->sk_mark;
549         fl6.flowi6_uid = sk->sk_uid;
550
551         ipc6.hlimit = -1;
552         ipc6.tclass = -1;
553         ipc6.dontfrag = -1;
554
555         if (lsa) {
556                 if (addr_len < SIN6_LEN_RFC2133)
557                         return -EINVAL;
558
559                 if (lsa->l2tp_family && lsa->l2tp_family != AF_INET6)
560                         return -EAFNOSUPPORT;
561
562                 daddr = &lsa->l2tp_addr;
563                 if (np->sndflow) {
564                         fl6.flowlabel = lsa->l2tp_flowinfo & IPV6_FLOWINFO_MASK;
565                         if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
566                                 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
567                                 if (flowlabel == NULL)
568                                         return -EINVAL;
569                         }
570                 }
571
572                 /*
573                  * Otherwise it will be difficult to maintain
574                  * sk->sk_dst_cache.
575                  */
576                 if (sk->sk_state == TCP_ESTABLISHED &&
577                     ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
578                         daddr = &sk->sk_v6_daddr;
579
580                 if (addr_len >= sizeof(struct sockaddr_in6) &&
581                     lsa->l2tp_scope_id &&
582                     ipv6_addr_type(daddr) & IPV6_ADDR_LINKLOCAL)
583                         fl6.flowi6_oif = lsa->l2tp_scope_id;
584         } else {
585                 if (sk->sk_state != TCP_ESTABLISHED)
586                         return -EDESTADDRREQ;
587
588                 daddr = &sk->sk_v6_daddr;
589                 fl6.flowlabel = np->flow_label;
590         }
591
592         if (fl6.flowi6_oif == 0)
593                 fl6.flowi6_oif = sk->sk_bound_dev_if;
594
595         if (msg->msg_controllen) {
596                 opt = &opt_space;
597                 memset(opt, 0, sizeof(struct ipv6_txoptions));
598                 opt->tot_len = sizeof(struct ipv6_txoptions);
599                 ipc6.opt = opt;
600
601                 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, &ipc6,
602                                             &sockc_unused);
603                 if (err < 0) {
604                         fl6_sock_release(flowlabel);
605                         return err;
606                 }
607                 if ((fl6.flowlabel & IPV6_FLOWLABEL_MASK) && !flowlabel) {
608                         flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
609                         if (flowlabel == NULL)
610                                 return -EINVAL;
611                 }
612                 if (!(opt->opt_nflen|opt->opt_flen))
613                         opt = NULL;
614         }
615
616         if (!opt) {
617                 opt = txopt_get(np);
618                 opt_to_free = opt;
619         }
620         if (flowlabel)
621                 opt = fl6_merge_options(&opt_space, flowlabel, opt);
622         opt = ipv6_fixup_options(&opt_space, opt);
623         ipc6.opt = opt;
624
625         fl6.flowi6_proto = sk->sk_protocol;
626         if (!ipv6_addr_any(daddr))
627                 fl6.daddr = *daddr;
628         else
629                 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
630         if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
631                 fl6.saddr = np->saddr;
632
633         final_p = fl6_update_dst(&fl6, opt, &final);
634
635         if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr))
636                 fl6.flowi6_oif = np->mcast_oif;
637         else if (!fl6.flowi6_oif)
638                 fl6.flowi6_oif = np->ucast_oif;
639
640         security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
641
642         if (ipc6.tclass < 0)
643                 ipc6.tclass = np->tclass;
644
645         fl6.flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6.flowlabel);
646
647         dst = ip6_dst_lookup_flow(sock_net(sk), sk, &fl6, final_p);
648         if (IS_ERR(dst)) {
649                 err = PTR_ERR(dst);
650                 goto out;
651         }
652
653         if (ipc6.hlimit < 0)
654                 ipc6.hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
655
656         if (ipc6.dontfrag < 0)
657                 ipc6.dontfrag = np->dontfrag;
658
659         if (msg->msg_flags & MSG_CONFIRM)
660                 goto do_confirm;
661
662 back_from_confirm:
663         lock_sock(sk);
664         err = ip6_append_data(sk, ip_generic_getfrag, msg,
665                               ulen, transhdrlen, &ipc6,
666                               &fl6, (struct rt6_info *)dst,
667                               msg->msg_flags, &sockc_unused);
668         if (err)
669                 ip6_flush_pending_frames(sk);
670         else if (!(msg->msg_flags & MSG_MORE))
671                 err = l2tp_ip6_push_pending_frames(sk);
672         release_sock(sk);
673 done:
674         dst_release(dst);
675 out:
676         fl6_sock_release(flowlabel);
677         txopt_put(opt_to_free);
678
679         return err < 0 ? err : len;
680
681 do_confirm:
682         if (msg->msg_flags & MSG_PROBE)
683                 dst_confirm_neigh(dst, &fl6.daddr);
684         if (!(msg->msg_flags & MSG_PROBE) || len)
685                 goto back_from_confirm;
686         err = 0;
687         goto done;
688 }
689
690 static int l2tp_ip6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
691                             int noblock, int flags, int *addr_len)
692 {
693         struct ipv6_pinfo *np = inet6_sk(sk);
694         DECLARE_SOCKADDR(struct sockaddr_l2tpip6 *, lsa, msg->msg_name);
695         size_t copied = 0;
696         int err = -EOPNOTSUPP;
697         struct sk_buff *skb;
698
699         if (flags & MSG_OOB)
700                 goto out;
701
702         if (flags & MSG_ERRQUEUE)
703                 return ipv6_recv_error(sk, msg, len, addr_len);
704
705         skb = skb_recv_datagram(sk, flags, noblock, &err);
706         if (!skb)
707                 goto out;
708
709         copied = skb->len;
710         if (len < copied) {
711                 msg->msg_flags |= MSG_TRUNC;
712                 copied = len;
713         }
714
715         err = skb_copy_datagram_msg(skb, 0, msg, copied);
716         if (err)
717                 goto done;
718
719         sock_recv_timestamp(msg, sk, skb);
720
721         /* Copy the address. */
722         if (lsa) {
723                 lsa->l2tp_family = AF_INET6;
724                 lsa->l2tp_unused = 0;
725                 lsa->l2tp_addr = ipv6_hdr(skb)->saddr;
726                 lsa->l2tp_flowinfo = 0;
727                 lsa->l2tp_scope_id = 0;
728                 lsa->l2tp_conn_id = 0;
729                 if (ipv6_addr_type(&lsa->l2tp_addr) & IPV6_ADDR_LINKLOCAL)
730                         lsa->l2tp_scope_id = inet6_iif(skb);
731                 *addr_len = sizeof(*lsa);
732         }
733
734         if (np->rxopt.all)
735                 ip6_datagram_recv_ctl(sk, msg, skb);
736
737         if (flags & MSG_TRUNC)
738                 copied = skb->len;
739 done:
740         skb_free_datagram(sk, skb);
741 out:
742         return err ? err : copied;
743 }
744
745 static struct proto l2tp_ip6_prot = {
746         .name              = "L2TP/IPv6",
747         .owner             = THIS_MODULE,
748         .init              = l2tp_ip6_open,
749         .close             = l2tp_ip6_close,
750         .bind              = l2tp_ip6_bind,
751         .connect           = l2tp_ip6_connect,
752         .disconnect        = l2tp_ip6_disconnect,
753         .ioctl             = l2tp_ioctl,
754         .destroy           = l2tp_ip6_destroy_sock,
755         .setsockopt        = ipv6_setsockopt,
756         .getsockopt        = ipv6_getsockopt,
757         .sendmsg           = l2tp_ip6_sendmsg,
758         .recvmsg           = l2tp_ip6_recvmsg,
759         .backlog_rcv       = l2tp_ip6_backlog_recv,
760         .hash              = l2tp_ip6_hash,
761         .unhash            = l2tp_ip6_unhash,
762         .obj_size          = sizeof(struct l2tp_ip6_sock),
763 #ifdef CONFIG_COMPAT
764         .compat_setsockopt = compat_ipv6_setsockopt,
765         .compat_getsockopt = compat_ipv6_getsockopt,
766 #endif
767 };
768
769 static const struct proto_ops l2tp_ip6_ops = {
770         .family            = PF_INET6,
771         .owner             = THIS_MODULE,
772         .release           = inet6_release,
773         .bind              = inet6_bind,
774         .connect           = inet_dgram_connect,
775         .socketpair        = sock_no_socketpair,
776         .accept            = sock_no_accept,
777         .getname           = l2tp_ip6_getname,
778         .poll              = datagram_poll,
779         .ioctl             = inet6_ioctl,
780         .listen            = sock_no_listen,
781         .shutdown          = inet_shutdown,
782         .setsockopt        = sock_common_setsockopt,
783         .getsockopt        = sock_common_getsockopt,
784         .sendmsg           = inet_sendmsg,
785         .recvmsg           = sock_common_recvmsg,
786         .mmap              = sock_no_mmap,
787         .sendpage          = sock_no_sendpage,
788 #ifdef CONFIG_COMPAT
789         .compat_setsockopt = compat_sock_common_setsockopt,
790         .compat_getsockopt = compat_sock_common_getsockopt,
791 #endif
792 };
793
794 static struct inet_protosw l2tp_ip6_protosw = {
795         .type           = SOCK_DGRAM,
796         .protocol       = IPPROTO_L2TP,
797         .prot           = &l2tp_ip6_prot,
798         .ops            = &l2tp_ip6_ops,
799 };
800
801 static struct inet6_protocol l2tp_ip6_protocol __read_mostly = {
802         .handler        = l2tp_ip6_recv,
803 };
804
805 static int __init l2tp_ip6_init(void)
806 {
807         int err;
808
809         pr_info("L2TP IP encapsulation support for IPv6 (L2TPv3)\n");
810
811         err = proto_register(&l2tp_ip6_prot, 1);
812         if (err != 0)
813                 goto out;
814
815         err = inet6_add_protocol(&l2tp_ip6_protocol, IPPROTO_L2TP);
816         if (err)
817                 goto out1;
818
819         inet6_register_protosw(&l2tp_ip6_protosw);
820         return 0;
821
822 out1:
823         proto_unregister(&l2tp_ip6_prot);
824 out:
825         return err;
826 }
827
828 static void __exit l2tp_ip6_exit(void)
829 {
830         inet6_unregister_protosw(&l2tp_ip6_protosw);
831         inet6_del_protocol(&l2tp_ip6_protocol, IPPROTO_L2TP);
832         proto_unregister(&l2tp_ip6_prot);
833 }
834
835 module_init(l2tp_ip6_init);
836 module_exit(l2tp_ip6_exit);
837
838 MODULE_LICENSE("GPL");
839 MODULE_AUTHOR("Chris Elston <celston@katalix.com>");
840 MODULE_DESCRIPTION("L2TP IP encapsulation for IPv6");
841 MODULE_VERSION("1.0");
842
843 /* Use the value of SOCK_DGRAM (2) directory, because __stringify doesn't like
844  * enums
845  */
846 MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_INET6, 2, IPPROTO_L2TP);
847 MODULE_ALIAS_NET_PF_PROTO(PF_INET6, IPPROTO_L2TP);