blob: 4f29a4a0f3606266b0114f0e394077e1b185e977 [file] [log] [blame]
Chris Elstona32e0ee2012-04-29 21:48:54 +00001/*
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
Joe Perchesa4ca44f2012-05-16 09:55:56 +000012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
Chris Elstona32e0ee2012-04-29 21:48:54 +000014#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/inet_hashtables.h>
Craig Gallek496611d2016-02-10 11:50:36 -050028#include <net/inet6_hashtables.h>
Chris Elstona32e0ee2012-04-29 21:48:54 +000029#include <net/tcp_states.h>
30#include <net/protocol.h>
31#include <net/xfrm.h>
32
33#include <net/transp_v6.h>
34#include <net/addrconf.h>
35#include <net/ip6_route.h>
36
37#include "l2tp_core.h"
38
39struct l2tp_ip6_sock {
40 /* inet_sock has to be the first member of l2tp_ip6_sock */
41 struct inet_sock inet;
42
43 u32 conn_id;
44 u32 peer_conn_id;
45
46 /* ipv6_pinfo has to be the last member of l2tp_ip6_sock, see
47 inet6_sk_generic */
48 struct ipv6_pinfo inet6;
49};
50
51static DEFINE_RWLOCK(l2tp_ip6_lock);
52static struct hlist_head l2tp_ip6_table;
53static struct hlist_head l2tp_ip6_bind_table;
54
55static inline struct l2tp_ip6_sock *l2tp_ip6_sk(const struct sock *sk)
56{
57 return (struct l2tp_ip6_sock *)sk;
58}
59
60static struct sock *__l2tp_ip6_bind_lookup(struct net *net,
61 struct in6_addr *laddr,
62 int dif, u32 tunnel_id)
63{
Chris Elstona32e0ee2012-04-29 21:48:54 +000064 struct sock *sk;
65
Sasha Levinb67bfe02013-02-27 17:06:00 -080066 sk_for_each_bound(sk, &l2tp_ip6_bind_table) {
Eric Dumazetefe42082013-10-03 15:42:29 -070067 const struct in6_addr *addr = inet6_rcv_saddr(sk);
Chris Elstona32e0ee2012-04-29 21:48:54 +000068 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 !(addr && ipv6_addr_equal(addr, laddr)) &&
76 !(sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif))
77 goto found;
78 }
79
80 sk = NULL;
81found:
82 return sk;
83}
84
85static inline struct sock *l2tp_ip6_bind_lookup(struct net *net,
86 struct in6_addr *laddr,
87 int dif, u32 tunnel_id)
88{
89 struct sock *sk = __l2tp_ip6_bind_lookup(net, laddr, dif, tunnel_id);
90 if (sk)
91 sock_hold(sk);
92
93 return sk;
94}
95
96/* When processing receive frames, there are two cases to
97 * consider. Data frames consist of a non-zero session-id and an
98 * optional cookie. Control frames consist of a regular L2TP header
99 * preceded by 32-bits of zeros.
100 *
101 * L2TPv3 Session Header Over IP
102 *
103 * 0 1 2 3
104 * 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
105 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
106 * | Session ID |
107 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
108 * | Cookie (optional, maximum 64 bits)...
109 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
110 * |
111 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
112 *
113 * L2TPv3 Control Message Header Over IP
114 *
115 * 0 1 2 3
116 * 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
117 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
118 * | (32 bits of zeros) |
119 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
120 * |T|L|x|x|S|x|x|x|x|x|x|x| Ver | Length |
121 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
122 * | Control Connection ID |
123 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
124 * | Ns | Nr |
125 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
126 *
127 * All control frames are passed to userspace.
128 */
129static int l2tp_ip6_recv(struct sk_buff *skb)
130{
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 int length;
Chris Elstona32e0ee2012-04-29 21:48:54 +0000138
139 /* Point to L2TP header */
140 optr = ptr = skb->data;
141
142 if (!pskb_may_pull(skb, 4))
143 goto discard;
144
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_find(&init_net, NULL, session_id);
159 if (session == NULL)
160 goto discard;
161
162 tunnel = session->tunnel;
163 if (tunnel == NULL)
164 goto discard;
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;
171
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000172 pr_debug("%s: ip recv\n", tunnel->name);
173 print_hex_dump_bytes("", DUMP_PREFIX_OFFSET, ptr, length);
Chris Elstona32e0ee2012-04-29 21:48:54 +0000174 }
175
176 l2tp_recv_common(session, skb, ptr, optr, 0, skb->len,
177 tunnel->recv_payload_hook);
178 return 0;
179
180pass_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 tunnel = l2tp_tunnel_find(&init_net, tunnel_id);
190 if (tunnel != NULL)
191 sk = tunnel->sock;
192 else {
193 struct ipv6hdr *iph = ipv6_hdr(skb);
194
195 read_lock_bh(&l2tp_ip6_lock);
196 sk = __l2tp_ip6_bind_lookup(&init_net, &iph->daddr,
197 0, tunnel_id);
198 read_unlock_bh(&l2tp_ip6_lock);
199 }
200
201 if (sk == NULL)
202 goto discard;
203
204 sock_hold(sk);
205
206 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb))
207 goto discard_put;
208
209 nf_reset(skb);
210
211 return sk_receive_skb(sk, skb, 1);
212
213discard_put:
214 sock_put(sk);
215
216discard:
217 kfree_skb(skb);
218 return 0;
219}
220
221static int l2tp_ip6_open(struct sock *sk)
222{
223 /* Prevent autobind. We don't have ports. */
224 inet_sk(sk)->inet_num = IPPROTO_L2TP;
225
226 write_lock_bh(&l2tp_ip6_lock);
227 sk_add_node(sk, &l2tp_ip6_table);
228 write_unlock_bh(&l2tp_ip6_lock);
229
230 return 0;
231}
232
233static void l2tp_ip6_close(struct sock *sk, long timeout)
234{
235 write_lock_bh(&l2tp_ip6_lock);
236 hlist_del_init(&sk->sk_bind_node);
237 sk_del_node_init(sk);
238 write_unlock_bh(&l2tp_ip6_lock);
239
240 sk_common_release(sk);
241}
242
243static void l2tp_ip6_destroy_sock(struct sock *sk)
244{
Tom Parkin93606312013-03-19 06:11:15 +0000245 struct l2tp_tunnel *tunnel = l2tp_sock_to_tunnel(sk);
246
Chris Elstona32e0ee2012-04-29 21:48:54 +0000247 lock_sock(sk);
248 ip6_flush_pending_frames(sk);
249 release_sock(sk);
250
Tom Parkin93606312013-03-19 06:11:15 +0000251 if (tunnel) {
252 l2tp_tunnel_closeall(tunnel);
253 sock_put(sk);
254 }
255
Chris Elstona32e0ee2012-04-29 21:48:54 +0000256 inet6_destroy_sock(sk);
257}
258
259static int l2tp_ip6_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
260{
261 struct inet_sock *inet = inet_sk(sk);
262 struct ipv6_pinfo *np = inet6_sk(sk);
263 struct sockaddr_l2tpip6 *addr = (struct sockaddr_l2tpip6 *) uaddr;
264 __be32 v4addr = 0;
265 int addr_type;
266 int err;
267
James Chapmanc51ce492012-05-29 03:30:42 +0000268 if (!sock_flag(sk, SOCK_ZAPPED))
269 return -EINVAL;
270 if (addr->l2tp_family != AF_INET6)
271 return -EINVAL;
Chris Elstona32e0ee2012-04-29 21:48:54 +0000272 if (addr_len < sizeof(*addr))
273 return -EINVAL;
274
275 addr_type = ipv6_addr_type(&addr->l2tp_addr);
276
277 /* l2tp_ip6 sockets are IPv6 only */
278 if (addr_type == IPV6_ADDR_MAPPED)
279 return -EADDRNOTAVAIL;
280
281 /* L2TP is point-point, not multicast */
282 if (addr_type & IPV6_ADDR_MULTICAST)
283 return -EADDRNOTAVAIL;
284
285 err = -EADDRINUSE;
286 read_lock_bh(&l2tp_ip6_lock);
287 if (__l2tp_ip6_bind_lookup(&init_net, &addr->l2tp_addr,
288 sk->sk_bound_dev_if, addr->l2tp_conn_id))
289 goto out_in_use;
290 read_unlock_bh(&l2tp_ip6_lock);
291
292 lock_sock(sk);
293
294 err = -EINVAL;
295 if (sk->sk_state != TCP_CLOSE)
296 goto out_unlock;
297
298 /* Check if the address belongs to the host. */
299 rcu_read_lock();
300 if (addr_type != IPV6_ADDR_ANY) {
301 struct net_device *dev = NULL;
302
303 if (addr_type & IPV6_ADDR_LINKLOCAL) {
304 if (addr_len >= sizeof(struct sockaddr_in6) &&
305 addr->l2tp_scope_id) {
306 /* Override any existing binding, if another
307 * one is supplied by user.
308 */
309 sk->sk_bound_dev_if = addr->l2tp_scope_id;
310 }
311
312 /* Binding to link-local address requires an
313 interface */
314 if (!sk->sk_bound_dev_if)
315 goto out_unlock_rcu;
316
317 err = -ENODEV;
318 dev = dev_get_by_index_rcu(sock_net(sk),
319 sk->sk_bound_dev_if);
320 if (!dev)
321 goto out_unlock_rcu;
322 }
323
324 /* ipv4 addr of the socket is invalid. Only the
325 * unspecified and mapped address have a v4 equivalent.
326 */
327 v4addr = LOOPBACK4_IPV6;
328 err = -EADDRNOTAVAIL;
329 if (!ipv6_chk_addr(sock_net(sk), &addr->l2tp_addr, dev, 0))
330 goto out_unlock_rcu;
331 }
332 rcu_read_unlock();
333
334 inet->inet_rcv_saddr = inet->inet_saddr = v4addr;
Eric Dumazetefe42082013-10-03 15:42:29 -0700335 sk->sk_v6_rcv_saddr = addr->l2tp_addr;
Chris Elstona32e0ee2012-04-29 21:48:54 +0000336 np->saddr = addr->l2tp_addr;
337
338 l2tp_ip6_sk(sk)->conn_id = addr->l2tp_conn_id;
339
340 write_lock_bh(&l2tp_ip6_lock);
341 sk_add_bind_node(sk, &l2tp_ip6_bind_table);
342 sk_del_node_init(sk);
343 write_unlock_bh(&l2tp_ip6_lock);
344
James Chapmanc51ce492012-05-29 03:30:42 +0000345 sock_reset_flag(sk, SOCK_ZAPPED);
Chris Elstona32e0ee2012-04-29 21:48:54 +0000346 release_sock(sk);
347 return 0;
348
349out_unlock_rcu:
350 rcu_read_unlock();
351out_unlock:
352 release_sock(sk);
353 return err;
354
355out_in_use:
356 read_unlock_bh(&l2tp_ip6_lock);
357 return err;
358}
359
360static int l2tp_ip6_connect(struct sock *sk, struct sockaddr *uaddr,
361 int addr_len)
362{
363 struct sockaddr_l2tpip6 *lsa = (struct sockaddr_l2tpip6 *) uaddr;
364 struct sockaddr_in6 *usin = (struct sockaddr_in6 *) uaddr;
365 struct in6_addr *daddr;
366 int addr_type;
367 int rc;
368
James Chapmanc51ce492012-05-29 03:30:42 +0000369 if (sock_flag(sk, SOCK_ZAPPED)) /* Must bind first - autobinding does not work */
370 return -EINVAL;
371
Chris Elstona32e0ee2012-04-29 21:48:54 +0000372 if (addr_len < sizeof(*lsa))
373 return -EINVAL;
374
Hannes Frederic Sowa82b276c2014-01-20 05:16:39 +0100375 if (usin->sin6_family != AF_INET6)
376 return -EINVAL;
377
Chris Elstona32e0ee2012-04-29 21:48:54 +0000378 addr_type = ipv6_addr_type(&usin->sin6_addr);
379 if (addr_type & IPV6_ADDR_MULTICAST)
380 return -EINVAL;
381
382 if (addr_type & IPV6_ADDR_MAPPED) {
383 daddr = &usin->sin6_addr;
384 if (ipv4_is_multicast(daddr->s6_addr32[3]))
385 return -EINVAL;
386 }
387
388 rc = ip6_datagram_connect(sk, uaddr, addr_len);
389
390 lock_sock(sk);
391
392 l2tp_ip6_sk(sk)->peer_conn_id = lsa->l2tp_conn_id;
393
394 write_lock_bh(&l2tp_ip6_lock);
395 hlist_del_init(&sk->sk_bind_node);
396 sk_add_bind_node(sk, &l2tp_ip6_bind_table);
397 write_unlock_bh(&l2tp_ip6_lock);
398
399 release_sock(sk);
400
401 return rc;
402}
403
James Chapmanc51ce492012-05-29 03:30:42 +0000404static int l2tp_ip6_disconnect(struct sock *sk, int flags)
405{
406 if (sock_flag(sk, SOCK_ZAPPED))
407 return 0;
408
409 return udp_disconnect(sk, flags);
410}
411
Chris Elstona32e0ee2012-04-29 21:48:54 +0000412static int l2tp_ip6_getname(struct socket *sock, struct sockaddr *uaddr,
413 int *uaddr_len, int peer)
414{
415 struct sockaddr_l2tpip6 *lsa = (struct sockaddr_l2tpip6 *)uaddr;
416 struct sock *sk = sock->sk;
417 struct ipv6_pinfo *np = inet6_sk(sk);
418 struct l2tp_ip6_sock *lsk = l2tp_ip6_sk(sk);
419
420 lsa->l2tp_family = AF_INET6;
421 lsa->l2tp_flowinfo = 0;
422 lsa->l2tp_scope_id = 0;
Mathias Krause04d4fbc2012-08-15 11:31:52 +0000423 lsa->l2tp_unused = 0;
Chris Elstona32e0ee2012-04-29 21:48:54 +0000424 if (peer) {
425 if (!lsk->peer_conn_id)
426 return -ENOTCONN;
427 lsa->l2tp_conn_id = lsk->peer_conn_id;
Eric Dumazetefe42082013-10-03 15:42:29 -0700428 lsa->l2tp_addr = sk->sk_v6_daddr;
Chris Elstona32e0ee2012-04-29 21:48:54 +0000429 if (np->sndflow)
430 lsa->l2tp_flowinfo = np->flow_label;
431 } else {
Eric Dumazetefe42082013-10-03 15:42:29 -0700432 if (ipv6_addr_any(&sk->sk_v6_rcv_saddr))
Chris Elstona32e0ee2012-04-29 21:48:54 +0000433 lsa->l2tp_addr = np->saddr;
434 else
Eric Dumazetefe42082013-10-03 15:42:29 -0700435 lsa->l2tp_addr = sk->sk_v6_rcv_saddr;
Chris Elstona32e0ee2012-04-29 21:48:54 +0000436
437 lsa->l2tp_conn_id = lsk->conn_id;
438 }
439 if (ipv6_addr_type(&lsa->l2tp_addr) & IPV6_ADDR_LINKLOCAL)
440 lsa->l2tp_scope_id = sk->sk_bound_dev_if;
441 *uaddr_len = sizeof(*lsa);
442 return 0;
443}
444
445static int l2tp_ip6_backlog_recv(struct sock *sk, struct sk_buff *skb)
446{
447 int rc;
448
449 /* Charge it to the socket, dropping if the queue is full. */
450 rc = sock_queue_rcv_skb(sk, skb);
451 if (rc < 0)
452 goto drop;
453
454 return 0;
455
456drop:
457 IP_INC_STATS(&init_net, IPSTATS_MIB_INDISCARDS);
458 kfree_skb(skb);
459 return -1;
460}
461
462static int l2tp_ip6_push_pending_frames(struct sock *sk)
463{
464 struct sk_buff *skb;
465 __be32 *transhdr = NULL;
466 int err = 0;
467
468 skb = skb_peek(&sk->sk_write_queue);
469 if (skb == NULL)
470 goto out;
471
472 transhdr = (__be32 *)skb_transport_header(skb);
473 *transhdr = 0;
474
475 err = ip6_push_pending_frames(sk);
476
477out:
478 return err;
479}
480
481/* Userspace will call sendmsg() on the tunnel socket to send L2TP
482 * control frames.
483 */
Ying Xue1b784142015-03-02 15:37:48 +0800484static int l2tp_ip6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
Chris Elstona32e0ee2012-04-29 21:48:54 +0000485{
486 struct ipv6_txoptions opt_space;
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100487 DECLARE_SOCKADDR(struct sockaddr_l2tpip6 *, lsa, msg->msg_name);
Chris Elstona32e0ee2012-04-29 21:48:54 +0000488 struct in6_addr *daddr, *final_p, final;
489 struct ipv6_pinfo *np = inet6_sk(sk);
Eric Dumazet45f6fad2015-11-29 19:37:57 -0800490 struct ipv6_txoptions *opt_to_free = NULL;
Chris Elstona32e0ee2012-04-29 21:48:54 +0000491 struct ipv6_txoptions *opt = NULL;
492 struct ip6_flowlabel *flowlabel = NULL;
493 struct dst_entry *dst = NULL;
494 struct flowi6 fl6;
Soheil Hassas Yeganehad1e46a2016-04-02 23:08:11 -0400495 struct sockcm_cookie sockc_unused = {0};
Chris Elstona32e0ee2012-04-29 21:48:54 +0000496 int addr_len = msg->msg_namelen;
497 int hlimit = -1;
498 int tclass = -1;
499 int dontfrag = -1;
500 int transhdrlen = 4; /* zero session-id */
501 int ulen = len + transhdrlen;
502 int err;
503
504 /* Rough check on arithmetic overflow,
505 better check is made in ip6_append_data().
506 */
507 if (len > INT_MAX)
508 return -EMSGSIZE;
509
510 /* Mirror BSD error message compatibility */
511 if (msg->msg_flags & MSG_OOB)
512 return -EOPNOTSUPP;
513
514 /*
515 * Get and verify the address.
516 */
517 memset(&fl6, 0, sizeof(fl6));
518
519 fl6.flowi6_mark = sk->sk_mark;
520
521 if (lsa) {
522 if (addr_len < SIN6_LEN_RFC2133)
523 return -EINVAL;
524
525 if (lsa->l2tp_family && lsa->l2tp_family != AF_INET6)
526 return -EAFNOSUPPORT;
527
528 daddr = &lsa->l2tp_addr;
529 if (np->sndflow) {
530 fl6.flowlabel = lsa->l2tp_flowinfo & IPV6_FLOWINFO_MASK;
531 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
532 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
533 if (flowlabel == NULL)
534 return -EINVAL;
Chris Elstona32e0ee2012-04-29 21:48:54 +0000535 }
536 }
537
538 /*
539 * Otherwise it will be difficult to maintain
540 * sk->sk_dst_cache.
541 */
542 if (sk->sk_state == TCP_ESTABLISHED &&
Eric Dumazetefe42082013-10-03 15:42:29 -0700543 ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
544 daddr = &sk->sk_v6_daddr;
Chris Elstona32e0ee2012-04-29 21:48:54 +0000545
546 if (addr_len >= sizeof(struct sockaddr_in6) &&
547 lsa->l2tp_scope_id &&
548 ipv6_addr_type(daddr) & IPV6_ADDR_LINKLOCAL)
549 fl6.flowi6_oif = lsa->l2tp_scope_id;
550 } else {
551 if (sk->sk_state != TCP_ESTABLISHED)
552 return -EDESTADDRREQ;
553
Eric Dumazetefe42082013-10-03 15:42:29 -0700554 daddr = &sk->sk_v6_daddr;
Chris Elstona32e0ee2012-04-29 21:48:54 +0000555 fl6.flowlabel = np->flow_label;
556 }
557
558 if (fl6.flowi6_oif == 0)
559 fl6.flowi6_oif = sk->sk_bound_dev_if;
560
561 if (msg->msg_controllen) {
562 opt = &opt_space;
563 memset(opt, 0, sizeof(struct ipv6_txoptions));
564 opt->tot_len = sizeof(struct ipv6_txoptions);
565
Soheil Hassas Yeganehad1e46a2016-04-02 23:08:11 -0400566 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, opt,
567 &hlimit, &tclass, &dontfrag,
568 &sockc_unused);
569 if (err < 0) {
Chris Elstona32e0ee2012-04-29 21:48:54 +0000570 fl6_sock_release(flowlabel);
571 return err;
572 }
573 if ((fl6.flowlabel & IPV6_FLOWLABEL_MASK) && !flowlabel) {
574 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
575 if (flowlabel == NULL)
576 return -EINVAL;
577 }
578 if (!(opt->opt_nflen|opt->opt_flen))
579 opt = NULL;
580 }
581
Eric Dumazet45f6fad2015-11-29 19:37:57 -0800582 if (!opt) {
583 opt = txopt_get(np);
584 opt_to_free = opt;
585 }
Chris Elstona32e0ee2012-04-29 21:48:54 +0000586 if (flowlabel)
587 opt = fl6_merge_options(&opt_space, flowlabel, opt);
588 opt = ipv6_fixup_options(&opt_space, opt);
589
590 fl6.flowi6_proto = sk->sk_protocol;
591 if (!ipv6_addr_any(daddr))
592 fl6.daddr = *daddr;
593 else
594 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
595 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
596 fl6.saddr = np->saddr;
597
598 final_p = fl6_update_dst(&fl6, opt, &final);
599
600 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr))
601 fl6.flowi6_oif = np->mcast_oif;
602 else if (!fl6.flowi6_oif)
603 fl6.flowi6_oif = np->ucast_oif;
604
605 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
606
Steffen Klassert0e0d44a2013-08-28 08:04:14 +0200607 dst = ip6_dst_lookup_flow(sk, &fl6, final_p);
Chris Elstona32e0ee2012-04-29 21:48:54 +0000608 if (IS_ERR(dst)) {
609 err = PTR_ERR(dst);
610 goto out;
611 }
612
Lorenzo Colitti5c986312014-04-29 11:57:34 +0900613 if (hlimit < 0)
614 hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
Chris Elstona32e0ee2012-04-29 21:48:54 +0000615
616 if (tclass < 0)
617 tclass = np->tclass;
618
619 if (dontfrag < 0)
620 dontfrag = np->dontfrag;
621
622 if (msg->msg_flags & MSG_CONFIRM)
623 goto do_confirm;
624
625back_from_confirm:
626 lock_sock(sk);
Al Virof69e6d12014-11-24 13:23:40 -0500627 err = ip6_append_data(sk, ip_generic_getfrag, msg,
Chris Elstona32e0ee2012-04-29 21:48:54 +0000628 ulen, transhdrlen, hlimit, tclass, opt,
629 &fl6, (struct rt6_info *)dst,
630 msg->msg_flags, dontfrag);
631 if (err)
632 ip6_flush_pending_frames(sk);
633 else if (!(msg->msg_flags & MSG_MORE))
634 err = l2tp_ip6_push_pending_frames(sk);
635 release_sock(sk);
636done:
637 dst_release(dst);
638out:
639 fl6_sock_release(flowlabel);
Eric Dumazet45f6fad2015-11-29 19:37:57 -0800640 txopt_put(opt_to_free);
Chris Elstona32e0ee2012-04-29 21:48:54 +0000641
642 return err < 0 ? err : len;
643
644do_confirm:
645 dst_confirm(dst);
646 if (!(msg->msg_flags & MSG_PROBE) || len)
647 goto back_from_confirm;
648 err = 0;
649 goto done;
650}
651
Ying Xue1b784142015-03-02 15:37:48 +0800652static int l2tp_ip6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
653 int noblock, int flags, int *addr_len)
Chris Elstona32e0ee2012-04-29 21:48:54 +0000654{
Tom Parkin700163d2013-01-31 01:02:26 +0000655 struct ipv6_pinfo *np = inet6_sk(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100656 DECLARE_SOCKADDR(struct sockaddr_l2tpip6 *, lsa, msg->msg_name);
Chris Elstona32e0ee2012-04-29 21:48:54 +0000657 size_t copied = 0;
658 int err = -EOPNOTSUPP;
659 struct sk_buff *skb;
660
661 if (flags & MSG_OOB)
662 goto out;
663
664 if (addr_len)
665 *addr_len = sizeof(*lsa);
666
667 if (flags & MSG_ERRQUEUE)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100668 return ipv6_recv_error(sk, msg, len, addr_len);
Chris Elstona32e0ee2012-04-29 21:48:54 +0000669
670 skb = skb_recv_datagram(sk, flags, noblock, &err);
671 if (!skb)
672 goto out;
673
674 copied = skb->len;
675 if (len < copied) {
676 msg->msg_flags |= MSG_TRUNC;
677 copied = len;
678 }
679
David S. Miller51f3d022014-11-05 16:46:40 -0500680 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Chris Elstona32e0ee2012-04-29 21:48:54 +0000681 if (err)
682 goto done;
683
684 sock_recv_timestamp(msg, sk, skb);
685
686 /* Copy the address. */
687 if (lsa) {
688 lsa->l2tp_family = AF_INET6;
689 lsa->l2tp_unused = 0;
690 lsa->l2tp_addr = ipv6_hdr(skb)->saddr;
691 lsa->l2tp_flowinfo = 0;
692 lsa->l2tp_scope_id = 0;
Mathias Krauseb860d3c2013-04-07 01:51:55 +0000693 lsa->l2tp_conn_id = 0;
Chris Elstona32e0ee2012-04-29 21:48:54 +0000694 if (ipv6_addr_type(&lsa->l2tp_addr) & IPV6_ADDR_LINKLOCAL)
Duan Jiong43304872014-08-01 09:52:58 +0800695 lsa->l2tp_scope_id = inet6_iif(skb);
Chris Elstona32e0ee2012-04-29 21:48:54 +0000696 }
697
Tom Parkin700163d2013-01-31 01:02:26 +0000698 if (np->rxopt.all)
699 ip6_datagram_recv_ctl(sk, msg, skb);
Chris Elstona32e0ee2012-04-29 21:48:54 +0000700
701 if (flags & MSG_TRUNC)
702 copied = skb->len;
703done:
704 skb_free_datagram(sk, skb);
705out:
706 return err ? err : copied;
707}
708
709static struct proto l2tp_ip6_prot = {
710 .name = "L2TP/IPv6",
711 .owner = THIS_MODULE,
712 .init = l2tp_ip6_open,
713 .close = l2tp_ip6_close,
714 .bind = l2tp_ip6_bind,
715 .connect = l2tp_ip6_connect,
James Chapmanc51ce492012-05-29 03:30:42 +0000716 .disconnect = l2tp_ip6_disconnect,
Chris Elstona32e0ee2012-04-29 21:48:54 +0000717 .ioctl = udp_ioctl,
718 .destroy = l2tp_ip6_destroy_sock,
719 .setsockopt = ipv6_setsockopt,
720 .getsockopt = ipv6_getsockopt,
721 .sendmsg = l2tp_ip6_sendmsg,
722 .recvmsg = l2tp_ip6_recvmsg,
723 .backlog_rcv = l2tp_ip6_backlog_recv,
Craig Gallek496611d2016-02-10 11:50:36 -0500724 .hash = inet6_hash,
Chris Elstona32e0ee2012-04-29 21:48:54 +0000725 .unhash = inet_unhash,
726 .obj_size = sizeof(struct l2tp_ip6_sock),
727#ifdef CONFIG_COMPAT
728 .compat_setsockopt = compat_ipv6_setsockopt,
729 .compat_getsockopt = compat_ipv6_getsockopt,
730#endif
731};
732
733static const struct proto_ops l2tp_ip6_ops = {
734 .family = PF_INET6,
735 .owner = THIS_MODULE,
736 .release = inet6_release,
737 .bind = inet6_bind,
738 .connect = inet_dgram_connect,
739 .socketpair = sock_no_socketpair,
740 .accept = sock_no_accept,
741 .getname = l2tp_ip6_getname,
742 .poll = datagram_poll,
743 .ioctl = inet6_ioctl,
744 .listen = sock_no_listen,
745 .shutdown = inet_shutdown,
746 .setsockopt = sock_common_setsockopt,
747 .getsockopt = sock_common_getsockopt,
748 .sendmsg = inet_sendmsg,
749 .recvmsg = sock_common_recvmsg,
750 .mmap = sock_no_mmap,
751 .sendpage = sock_no_sendpage,
752#ifdef CONFIG_COMPAT
753 .compat_setsockopt = compat_sock_common_setsockopt,
754 .compat_getsockopt = compat_sock_common_getsockopt,
755#endif
756};
757
758static struct inet_protosw l2tp_ip6_protosw = {
759 .type = SOCK_DGRAM,
760 .protocol = IPPROTO_L2TP,
761 .prot = &l2tp_ip6_prot,
762 .ops = &l2tp_ip6_ops,
Chris Elstona32e0ee2012-04-29 21:48:54 +0000763};
764
765static struct inet6_protocol l2tp_ip6_protocol __read_mostly = {
766 .handler = l2tp_ip6_recv,
767};
768
769static int __init l2tp_ip6_init(void)
770{
771 int err;
772
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000773 pr_info("L2TP IP encapsulation support for IPv6 (L2TPv3)\n");
Chris Elstona32e0ee2012-04-29 21:48:54 +0000774
775 err = proto_register(&l2tp_ip6_prot, 1);
776 if (err != 0)
777 goto out;
778
779 err = inet6_add_protocol(&l2tp_ip6_protocol, IPPROTO_L2TP);
780 if (err)
781 goto out1;
782
783 inet6_register_protosw(&l2tp_ip6_protosw);
784 return 0;
785
786out1:
787 proto_unregister(&l2tp_ip6_prot);
788out:
789 return err;
790}
791
792static void __exit l2tp_ip6_exit(void)
793{
794 inet6_unregister_protosw(&l2tp_ip6_protosw);
795 inet6_del_protocol(&l2tp_ip6_protocol, IPPROTO_L2TP);
796 proto_unregister(&l2tp_ip6_prot);
797}
798
799module_init(l2tp_ip6_init);
800module_exit(l2tp_ip6_exit);
801
802MODULE_LICENSE("GPL");
803MODULE_AUTHOR("Chris Elston <celston@katalix.com>");
804MODULE_DESCRIPTION("L2TP IP encapsulation for IPv6");
805MODULE_VERSION("1.0");
806
807/* Use the value of SOCK_DGRAM (2) directory, because __stringify doesn't like
808 * enums
809 */
810MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_INET6, 2, IPPROTO_L2TP);
stephen hemminger163c2e22015-09-23 21:33:35 -0700811MODULE_ALIAS_NET_PF_PROTO(PF_INET6, IPPROTO_L2TP);