datagram.c 24.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 *	common UDP/RAW code
3
 *	Linux INET6 implementation
L
Linus Torvalds 已提交
4 5
 *
 *	Authors:
6
 *	Pedro Roque		<roque@di.fc.ul.pt>
L
Linus Torvalds 已提交
7 8 9 10 11 12 13
 *
 *	This program is free software; you can redistribute it and/or
 *      modify it under the terms of the GNU General Public License
 *      as published by the Free Software Foundation; either version
 *      2 of the License, or (at your option) any later version.
 */

14
#include <linux/capability.h>
L
Linus Torvalds 已提交
15 16 17 18 19 20 21 22 23
#include <linux/errno.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/interrupt.h>
#include <linux/socket.h>
#include <linux/sockios.h>
#include <linux/in6.h>
#include <linux/ipv6.h>
#include <linux/route.h>
24
#include <linux/slab.h>
25
#include <linux/export.h>
L
Linus Torvalds 已提交
26 27 28 29 30 31

#include <net/ipv6.h>
#include <net/ndisc.h>
#include <net/addrconf.h>
#include <net/transp_v6.h>
#include <net/ip6_route.h>
32
#include <net/tcp_states.h>
33
#include <net/dsfield.h>
L
Linus Torvalds 已提交
34 35 36 37

#include <linux/errqueue.h>
#include <asm/uaccess.h>

38
static bool ipv6_mapped_addr_any(const struct in6_addr *a)
39
{
40
	return ipv6_addr_v4mapped(a) && (a->s6_addr32[3] == 0);
41 42
}

43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
static void ip6_datagram_flow_key_init(struct flowi6 *fl6, struct sock *sk)
{
	struct inet_sock *inet = inet_sk(sk);
	struct ipv6_pinfo *np = inet6_sk(sk);

	memset(fl6, 0, sizeof(*fl6));
	fl6->flowi6_proto = sk->sk_protocol;
	fl6->daddr = sk->sk_v6_daddr;
	fl6->saddr = np->saddr;
	fl6->flowi6_oif = sk->sk_bound_dev_if;
	fl6->flowi6_mark = sk->sk_mark;
	fl6->fl6_dport = inet->inet_dport;
	fl6->fl6_sport = inet->inet_sport;
	fl6->flowlabel = np->flow_label;

	if (!fl6->flowi6_oif)
		fl6->flowi6_oif = np->sticky_pktinfo.ipi6_ifindex;

	if (!fl6->flowi6_oif && ipv6_addr_is_multicast(&fl6->daddr))
		fl6->flowi6_oif = np->mcast_oif;

	security_sk_classify_flow(sk, flowi6_to_flowi(fl6));
}

67
int ip6_datagram_dst_update(struct sock *sk, bool fix_sk_saddr)
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
{
	struct ip6_flowlabel *flowlabel = NULL;
	struct in6_addr *final_p, final;
	struct ipv6_txoptions *opt;
	struct dst_entry *dst;
	struct inet_sock *inet = inet_sk(sk);
	struct ipv6_pinfo *np = inet6_sk(sk);
	struct flowi6 fl6;
	int err = 0;

	if (np->sndflow && (np->flow_label & IPV6_FLOWLABEL_MASK)) {
		flowlabel = fl6_sock_lookup(sk, np->flow_label);
		if (!flowlabel)
			return -EINVAL;
	}
	ip6_datagram_flow_key_init(&fl6, sk);

	rcu_read_lock();
	opt = flowlabel ? flowlabel->opt : rcu_dereference(np->opt);
	final_p = fl6_update_dst(&fl6, opt, &final);
	rcu_read_unlock();

	dst = ip6_dst_lookup_flow(sk, &fl6, final_p);
	if (IS_ERR(dst)) {
		err = PTR_ERR(dst);
		goto out;
	}

96 97 98
	if (fix_sk_saddr) {
		if (ipv6_addr_any(&np->saddr))
			np->saddr = fl6.saddr;
99

100 101 102 103 104 105
		if (ipv6_addr_any(&sk->sk_v6_rcv_saddr)) {
			sk->sk_v6_rcv_saddr = fl6.saddr;
			inet->inet_rcv_saddr = LOOPBACK4_IPV6;
			if (sk->sk_prot->rehash)
				sk->sk_prot->rehash(sk);
		}
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
	}

	ip6_dst_store(sk, dst,
		      ipv6_addr_equal(&fl6.daddr, &sk->sk_v6_daddr) ?
		      &sk->sk_v6_daddr : NULL,
#ifdef CONFIG_IPV6_SUBTREES
		      ipv6_addr_equal(&fl6.saddr, &np->saddr) ?
		      &np->saddr :
#endif
		      NULL);

out:
	fl6_sock_release(flowlabel);
	return err;
}

122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
void ip6_datagram_release_cb(struct sock *sk)
{
	struct dst_entry *dst;

	if (ipv6_addr_v4mapped(&sk->sk_v6_daddr))
		return;

	rcu_read_lock();
	dst = __sk_dst_get(sk);
	if (!dst || !dst->obsolete ||
	    dst->ops->check(dst, inet6_sk(sk)->dst_cookie)) {
		rcu_read_unlock();
		return;
	}
	rcu_read_unlock();

	ip6_datagram_dst_update(sk, false);
}
EXPORT_SYMBOL_GPL(ip6_datagram_release_cb);

142 143
int __ip6_datagram_connect(struct sock *sk, struct sockaddr *uaddr,
			   int addr_len)
L
Linus Torvalds 已提交
144 145
{
	struct sockaddr_in6	*usin = (struct sockaddr_in6 *) uaddr;
146 147
	struct inet_sock	*inet = inet_sk(sk);
	struct ipv6_pinfo	*np = inet6_sk(sk);
148
	struct in6_addr		*daddr;
L
Linus Torvalds 已提交
149 150
	int			addr_type;
	int			err;
151
	__be32			fl6_flowlabel = 0;
L
Linus Torvalds 已提交
152 153 154 155

	if (usin->sin6_family == AF_INET) {
		if (__ipv6_only_sock(sk))
			return -EAFNOSUPPORT;
156
		err = __ip4_datagram_connect(sk, uaddr, addr_len);
L
Linus Torvalds 已提交
157 158 159 160
		goto ipv4_connected;
	}

	if (addr_len < SIN6_LEN_RFC2133)
161
		return -EINVAL;
L
Linus Torvalds 已提交
162

163 164
	if (usin->sin6_family != AF_INET6)
		return -EAFNOSUPPORT;
L
Linus Torvalds 已提交
165

166
	if (np->sndflow)
167
		fl6_flowlabel = usin->sin6_flowinfo & IPV6_FLOWINFO_MASK;
L
Linus Torvalds 已提交
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190

	addr_type = ipv6_addr_type(&usin->sin6_addr);

	if (addr_type == IPV6_ADDR_ANY) {
		/*
		 *	connect to self
		 */
		usin->sin6_addr.s6_addr[15] = 0x01;
	}

	daddr = &usin->sin6_addr;

	if (addr_type == IPV6_ADDR_MAPPED) {
		struct sockaddr_in sin;

		if (__ipv6_only_sock(sk)) {
			err = -ENETUNREACH;
			goto out;
		}
		sin.sin_family = AF_INET;
		sin.sin_addr.s_addr = daddr->s6_addr32[3];
		sin.sin_port = usin->sin6_port;

191 192 193
		err = __ip4_datagram_connect(sk,
					     (struct sockaddr *) &sin,
					     sizeof(sin));
L
Linus Torvalds 已提交
194 195 196 197

ipv4_connected:
		if (err)
			goto out;
198

199
		ipv6_addr_set_v4mapped(inet->inet_daddr, &sk->sk_v6_daddr);
L
Linus Torvalds 已提交
200

201 202
		if (ipv6_addr_any(&np->saddr) ||
		    ipv6_mapped_addr_any(&np->saddr))
E
Eric Dumazet 已提交
203
			ipv6_addr_set_v4mapped(inet->inet_saddr, &np->saddr);
B
Brian Haley 已提交
204

205 206
		if (ipv6_addr_any(&sk->sk_v6_rcv_saddr) ||
		    ipv6_mapped_addr_any(&sk->sk_v6_rcv_saddr)) {
E
Eric Dumazet 已提交
207
			ipv6_addr_set_v4mapped(inet->inet_rcv_saddr,
208
					       &sk->sk_v6_rcv_saddr);
E
Eric Dumazet 已提交
209 210 211
			if (sk->sk_prot->rehash)
				sk->sk_prot->rehash(sk);
		}
L
Linus Torvalds 已提交
212 213 214 215

		goto out;
	}

216
	if (__ipv6_addr_needs_scope_id(addr_type)) {
L
Linus Torvalds 已提交
217 218 219 220 221 222 223 224 225 226
		if (addr_len >= sizeof(struct sockaddr_in6) &&
		    usin->sin6_scope_id) {
			if (sk->sk_bound_dev_if &&
			    sk->sk_bound_dev_if != usin->sin6_scope_id) {
				err = -EINVAL;
				goto out;
			}
			sk->sk_bound_dev_if = usin->sin6_scope_id;
		}

227 228 229
		if (!sk->sk_bound_dev_if && (addr_type & IPV6_ADDR_MULTICAST))
			sk->sk_bound_dev_if = np->mcast_oif;

L
Linus Torvalds 已提交
230 231 232 233 234 235 236
		/* Connect to link-local address requires an interface */
		if (!sk->sk_bound_dev_if) {
			err = -EINVAL;
			goto out;
		}
	}

237
	sk->sk_v6_daddr = *daddr;
238
	np->flow_label = fl6_flowlabel;
L
Linus Torvalds 已提交
239

E
Eric Dumazet 已提交
240
	inet->inet_dport = usin->sin6_port;
L
Linus Torvalds 已提交
241 242 243 244 245 246

	/*
	 *	Check for a route to destination an obtain the
	 *	destination cache for it.
	 */

247
	err = ip6_datagram_dst_update(sk, true);
248
	if (err)
L
Linus Torvalds 已提交
249 250 251
		goto out;

	sk->sk_state = TCP_ESTABLISHED;
252
	sk_set_txhash(sk);
L
Linus Torvalds 已提交
253 254 255
out:
	return err;
}
256
EXPORT_SYMBOL_GPL(__ip6_datagram_connect);
257 258 259 260 261 262 263 264 265 266

int ip6_datagram_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
{
	int res;

	lock_sock(sk);
	res = __ip6_datagram_connect(sk, uaddr, addr_len);
	release_sock(sk);
	return res;
}
267
EXPORT_SYMBOL_GPL(ip6_datagram_connect);
L
Linus Torvalds 已提交
268

269 270 271 272 273 274 275 276 277 278
int ip6_datagram_connect_v6_only(struct sock *sk, struct sockaddr *uaddr,
				 int addr_len)
{
	DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, uaddr);
	if (sin6->sin6_family != AF_INET6)
		return -EAFNOSUPPORT;
	return ip6_datagram_connect(sk, uaddr, addr_len);
}
EXPORT_SYMBOL_GPL(ip6_datagram_connect_v6_only);

279
void ipv6_icmp_error(struct sock *sk, struct sk_buff *skb, int err,
A
Al Viro 已提交
280
		     __be16 port, u32 info, u8 *payload)
L
Linus Torvalds 已提交
281 282
{
	struct ipv6_pinfo *np  = inet6_sk(sk);
283
	struct icmp6hdr *icmph = icmp6_hdr(skb);
L
Linus Torvalds 已提交
284 285 286 287 288 289 290 291 292
	struct sock_exterr_skb *serr;

	if (!np->recverr)
		return;

	skb = skb_clone(skb, GFP_ATOMIC);
	if (!skb)
		return;

293 294
	skb->protocol = htons(ETH_P_IPV6);

L
Linus Torvalds 已提交
295 296 297
	serr = SKB_EXT_ERR(skb);
	serr->ee.ee_errno = err;
	serr->ee.ee_origin = SO_EE_ORIGIN_ICMP6;
298
	serr->ee.ee_type = icmph->icmp6_type;
L
Linus Torvalds 已提交
299 300 301 302
	serr->ee.ee_code = icmph->icmp6_code;
	serr->ee.ee_pad = 0;
	serr->ee.ee_info = info;
	serr->ee.ee_data = 0;
303 304
	serr->addr_offset = (u8 *)&(((struct ipv6hdr *)(icmph + 1))->daddr) -
				  skb_network_header(skb);
L
Linus Torvalds 已提交
305 306 307
	serr->port = port;

	__skb_pull(skb, payload - skb->data);
308
	skb_reset_transport_header(skb);
L
Linus Torvalds 已提交
309 310 311 312 313

	if (sock_queue_err_skb(sk, skb))
		kfree_skb(skb);
}

314
void ipv6_local_error(struct sock *sk, int err, struct flowi6 *fl6, u32 info)
L
Linus Torvalds 已提交
315
{
316
	const struct ipv6_pinfo *np = inet6_sk(sk);
L
Linus Torvalds 已提交
317 318 319 320 321 322 323 324 325 326 327
	struct sock_exterr_skb *serr;
	struct ipv6hdr *iph;
	struct sk_buff *skb;

	if (!np->recverr)
		return;

	skb = alloc_skb(sizeof(struct ipv6hdr), GFP_ATOMIC);
	if (!skb)
		return;

328 329
	skb->protocol = htons(ETH_P_IPV6);

330 331
	skb_put(skb, sizeof(struct ipv6hdr));
	skb_reset_network_header(skb);
332
	iph = ipv6_hdr(skb);
A
Alexey Dobriyan 已提交
333
	iph->daddr = fl6->daddr;
L
Linus Torvalds 已提交
334 335 336 337

	serr = SKB_EXT_ERR(skb);
	serr->ee.ee_errno = err;
	serr->ee.ee_origin = SO_EE_ORIGIN_LOCAL;
338
	serr->ee.ee_type = 0;
L
Linus Torvalds 已提交
339 340 341 342
	serr->ee.ee_code = 0;
	serr->ee.ee_pad = 0;
	serr->ee.ee_info = info;
	serr->ee.ee_data = 0;
343
	serr->addr_offset = (u8 *)&iph->daddr - skb_network_header(skb);
344
	serr->port = fl6->fl6_dport;
L
Linus Torvalds 已提交
345

346
	__skb_pull(skb, skb_tail_pointer(skb) - skb->data);
347
	skb_reset_transport_header(skb);
L
Linus Torvalds 已提交
348 349 350 351 352

	if (sock_queue_err_skb(sk, skb))
		kfree_skb(skb);
}

353
void ipv6_local_rxpmtu(struct sock *sk, struct flowi6 *fl6, u32 mtu)
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
{
	struct ipv6_pinfo *np = inet6_sk(sk);
	struct ipv6hdr *iph;
	struct sk_buff *skb;
	struct ip6_mtuinfo *mtu_info;

	if (!np->rxopt.bits.rxpmtu)
		return;

	skb = alloc_skb(sizeof(struct ipv6hdr), GFP_ATOMIC);
	if (!skb)
		return;

	skb_put(skb, sizeof(struct ipv6hdr));
	skb_reset_network_header(skb);
	iph = ipv6_hdr(skb);
A
Alexey Dobriyan 已提交
370
	iph->daddr = fl6->daddr;
371 372 373 374 375 376 377

	mtu_info = IP6CBMTU(skb);

	mtu_info->ip6m_mtu = mtu;
	mtu_info->ip6m_addr.sin6_family = AF_INET6;
	mtu_info->ip6m_addr.sin6_port = 0;
	mtu_info->ip6m_addr.sin6_flowinfo = 0;
378
	mtu_info->ip6m_addr.sin6_scope_id = fl6->flowi6_oif;
A
Alexey Dobriyan 已提交
379
	mtu_info->ip6m_addr.sin6_addr = ipv6_hdr(skb)->daddr;
380 381 382 383 384 385 386 387

	__skb_pull(skb, skb_tail_pointer(skb) - skb->data);
	skb_reset_transport_header(skb);

	skb = xchg(&np->rxpmtu, skb);
	kfree_skb(skb);
}

388 389 390 391 392 393 394 395 396 397
/* For some errors we have valid addr_offset even with zero payload and
 * zero port. Also, addr_offset should be supported if port is set.
 */
static inline bool ipv6_datagram_support_addr(struct sock_exterr_skb *serr)
{
	return serr->ee.ee_origin == SO_EE_ORIGIN_ICMP6 ||
	       serr->ee.ee_origin == SO_EE_ORIGIN_ICMP ||
	       serr->ee.ee_origin == SO_EE_ORIGIN_LOCAL || serr->port;
}

398 399 400 401 402 403 404 405 406 407 408
/* IPv6 supports cmsg on all origins aside from SO_EE_ORIGIN_LOCAL.
 *
 * At one point, excluding local errors was a quick test to identify icmp/icmp6
 * errors. This is no longer true, but the test remained, so the v6 stack,
 * unlike v4, also honors cmsg requests on all wifi and timestamp errors.
 *
 * Timestamp code paths do not initialize the fields expected by cmsg:
 * the PKTINFO fields in skb->cb[]. Fill those in here.
 */
static bool ip6_datagram_support_cmsg(struct sk_buff *skb,
				      struct sock_exterr_skb *serr)
409
{
410 411 412 413 414 415 416 417 418
	if (serr->ee.ee_origin == SO_EE_ORIGIN_ICMP ||
	    serr->ee.ee_origin == SO_EE_ORIGIN_ICMP6)
		return true;

	if (serr->ee.ee_origin == SO_EE_ORIGIN_LOCAL)
		return false;

	if (!skb->dev)
		return false;
419 420

	if (skb->protocol == htons(ETH_P_IPV6))
421
		IP6CB(skb)->iif = skb->dev->ifindex;
422
	else
423 424 425
		PKTINFO_SKB_CB(skb)->ipi_ifindex = skb->dev->ifindex;

	return true;
426 427
}

428
/*
L
Linus Torvalds 已提交
429 430
 *	Handle MSG_ERRQUEUE
 */
431
int ipv6_recv_error(struct sock *sk, struct msghdr *msg, int len, int *addr_len)
L
Linus Torvalds 已提交
432 433 434
{
	struct ipv6_pinfo *np = inet6_sk(sk);
	struct sock_exterr_skb *serr;
435
	struct sk_buff *skb;
436
	DECLARE_SOCKADDR(struct sockaddr_in6 *, sin, msg->msg_name);
L
Linus Torvalds 已提交
437 438 439 440 441 442 443 444
	struct {
		struct sock_extended_err ee;
		struct sockaddr_in6	 offender;
	} errhdr;
	int err;
	int copied;

	err = -EAGAIN;
445
	skb = sock_dequeue_err_skb(sk);
446
	if (!skb)
L
Linus Torvalds 已提交
447 448 449 450 451 452 453
		goto out;

	copied = skb->len;
	if (copied > len) {
		msg->msg_flags |= MSG_TRUNC;
		copied = len;
	}
454
	err = skb_copy_datagram_msg(skb, 0, msg, copied);
455 456 457 458
	if (unlikely(err)) {
		kfree_skb(skb);
		return err;
	}
L
Linus Torvalds 已提交
459 460 461 462
	sock_recv_timestamp(msg, sk, skb);

	serr = SKB_EXT_ERR(skb);

463
	if (sin && ipv6_datagram_support_addr(serr)) {
464
		const unsigned char *nh = skb_network_header(skb);
L
Linus Torvalds 已提交
465 466
		sin->sin6_family = AF_INET6;
		sin->sin6_flowinfo = 0;
467
		sin->sin6_port = serr->port;
468
		if (skb->protocol == htons(ETH_P_IPV6)) {
469 470 471
			const struct ipv6hdr *ip6h = container_of((struct in6_addr *)(nh + serr->addr_offset),
								  struct ipv6hdr, daddr);
			sin->sin6_addr = ip6h->daddr;
L
Linus Torvalds 已提交
472
			if (np->sndflow)
473
				sin->sin6_flowinfo = ip6_flowinfo(ip6h);
474 475 476
			sin->sin6_scope_id =
				ipv6_iface_scope_id(&sin->sin6_addr,
						    IP6CB(skb)->iif);
L
Linus Torvalds 已提交
477
		} else {
B
Brian Haley 已提交
478 479
			ipv6_addr_set_v4mapped(*(__be32 *)(nh + serr->addr_offset),
					       &sin->sin6_addr);
480
			sin->sin6_scope_id = 0;
L
Linus Torvalds 已提交
481
		}
482
		*addr_len = sizeof(*sin);
L
Linus Torvalds 已提交
483 484 485 486
	}

	memcpy(&errhdr.ee, &serr->ee, sizeof(struct sock_extended_err));
	sin = &errhdr.offender;
487
	memset(sin, 0, sizeof(*sin));
488 489

	if (ip6_datagram_support_cmsg(skb, serr)) {
L
Linus Torvalds 已提交
490
		sin->sin6_family = AF_INET6;
491
		if (np->rxopt.all)
492
			ip6_datagram_recv_common_ctl(sk, msg, skb);
493
		if (skb->protocol == htons(ETH_P_IPV6)) {
A
Alexey Dobriyan 已提交
494
			sin->sin6_addr = ipv6_hdr(skb)->saddr;
L
Linus Torvalds 已提交
495
			if (np->rxopt.all)
496
				ip6_datagram_recv_specific_ctl(sk, msg, skb);
497 498 499
			sin->sin6_scope_id =
				ipv6_iface_scope_id(&sin->sin6_addr,
						    IP6CB(skb)->iif);
L
Linus Torvalds 已提交
500
		} else {
B
Brian Haley 已提交
501 502
			ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
					       &sin->sin6_addr);
503
			if (inet_sk(sk)->cmsg_flags)
L
Linus Torvalds 已提交
504 505 506 507 508 509 510 511 512 513 514
				ip_cmsg_recv(msg, skb);
		}
	}

	put_cmsg(msg, SOL_IPV6, IPV6_RECVERR, sizeof(errhdr), &errhdr);

	/* Now we could try to dump offended packet options */

	msg->msg_flags |= MSG_ERRQUEUE;
	err = copied;

515
	consume_skb(skb);
L
Linus Torvalds 已提交
516 517 518
out:
	return err;
}
519
EXPORT_SYMBOL_GPL(ipv6_recv_error);
L
Linus Torvalds 已提交
520

521 522 523
/*
 *	Handle IPV6_RECVPATHMTU
 */
524 525
int ipv6_recv_rxpmtu(struct sock *sk, struct msghdr *msg, int len,
		     int *addr_len)
526 527 528 529
{
	struct ipv6_pinfo *np = inet6_sk(sk);
	struct sk_buff *skb;
	struct ip6_mtuinfo mtu_info;
530
	DECLARE_SOCKADDR(struct sockaddr_in6 *, sin, msg->msg_name);
531 532 533 534 535
	int err;
	int copied;

	err = -EAGAIN;
	skb = xchg(&np->rxpmtu, NULL);
536
	if (!skb)
537 538 539 540 541 542 543
		goto out;

	copied = skb->len;
	if (copied > len) {
		msg->msg_flags |= MSG_TRUNC;
		copied = len;
	}
544
	err = skb_copy_datagram_msg(skb, 0, msg, copied);
545 546 547 548 549 550 551 552 553 554 555 556
	if (err)
		goto out_free_skb;

	sock_recv_timestamp(msg, sk, skb);

	memcpy(&mtu_info, IP6CBMTU(skb), sizeof(mtu_info));

	if (sin) {
		sin->sin6_family = AF_INET6;
		sin->sin6_flowinfo = 0;
		sin->sin6_port = 0;
		sin->sin6_scope_id = mtu_info.ip6m_addr.sin6_scope_id;
A
Alexey Dobriyan 已提交
557
		sin->sin6_addr = mtu_info.ip6m_addr.sin6_addr;
558
		*addr_len = sizeof(*sin);
559 560 561 562 563 564 565 566 567 568 569
	}

	put_cmsg(msg, SOL_IPV6, IPV6_PATHMTU, sizeof(mtu_info), &mtu_info);

	err = copied;

out_free_skb:
	kfree_skb(skb);
out:
	return err;
}
L
Linus Torvalds 已提交
570 571


572 573
void ip6_datagram_recv_common_ctl(struct sock *sk, struct msghdr *msg,
				 struct sk_buff *skb)
L
Linus Torvalds 已提交
574 575
{
	struct ipv6_pinfo *np = inet6_sk(sk);
576
	bool is_ipv6 = skb->protocol == htons(ETH_P_IPV6);
L
Linus Torvalds 已提交
577 578 579 580

	if (np->rxopt.bits.rxinfo) {
		struct in6_pktinfo src_info;

581 582 583 584 585 586 587 588 589
		if (is_ipv6) {
			src_info.ipi6_ifindex = IP6CB(skb)->iif;
			src_info.ipi6_addr = ipv6_hdr(skb)->daddr;
		} else {
			src_info.ipi6_ifindex =
				PKTINFO_SKB_CB(skb)->ipi_ifindex;
			ipv6_addr_set_v4mapped(ip_hdr(skb)->daddr,
					       &src_info.ipi6_addr);
		}
590 591 592 593

		if (src_info.ipi6_ifindex >= 0)
			put_cmsg(msg, SOL_IPV6, IPV6_PKTINFO,
				 sizeof(src_info), &src_info);
L
Linus Torvalds 已提交
594
	}
595 596 597 598 599 600 601 602
}

void ip6_datagram_recv_specific_ctl(struct sock *sk, struct msghdr *msg,
				    struct sk_buff *skb)
{
	struct ipv6_pinfo *np = inet6_sk(sk);
	struct inet6_skb_parm *opt = IP6CB(skb);
	unsigned char *nh = skb_network_header(skb);
L
Linus Torvalds 已提交
603 604

	if (np->rxopt.bits.rxhlim) {
605
		int hlim = ipv6_hdr(skb)->hop_limit;
L
Linus Torvalds 已提交
606 607 608
		put_cmsg(msg, SOL_IPV6, IPV6_HOPLIMIT, sizeof(hlim), &hlim);
	}

609
	if (np->rxopt.bits.rxtclass) {
610
		int tclass = ipv6_get_dsfield(ipv6_hdr(skb));
611 612 613
		put_cmsg(msg, SOL_IPV6, IPV6_TCLASS, sizeof(tclass), &tclass);
	}

614 615 616 617
	if (np->rxopt.bits.rxflow) {
		__be32 flowinfo = ip6_flowinfo((struct ipv6hdr *)nh);
		if (flowinfo)
			put_cmsg(msg, SOL_IPV6, IPV6_FLOWINFO, sizeof(flowinfo), &flowinfo);
L
Linus Torvalds 已提交
618
	}
619 620

	/* HbH is allowed only once */
621 622
	if (np->rxopt.bits.hopopts && (opt->flags & IP6SKB_HOPBYHOP)) {
		u8 *ptr = nh + sizeof(struct ipv6hdr);
L
Linus Torvalds 已提交
623 624
		put_cmsg(msg, SOL_IPV6, IPV6_HOPOPTS, (ptr[1]+1)<<3, ptr);
	}
625 626 627 628 629 630 631 632

	if (opt->lastopt &&
	    (np->rxopt.bits.dstopts || np->rxopt.bits.srcrt)) {
		/*
		 * Silly enough, but we need to reparse in order to
		 * report extension headers (except for HbH)
		 * in order.
		 *
633
		 * Also note that IPV6_RECVRTHDRDSTOPTS is NOT
634 635 636 637
		 * (and WILL NOT be) defined because
		 * IPV6_RECVDSTOPTS is more generic. --yoshfuji
		 */
		unsigned int off = sizeof(struct ipv6hdr);
638
		u8 nexthdr = ipv6_hdr(skb)->nexthdr;
639 640

		while (off <= opt->lastopt) {
641
			unsigned int len;
642
			u8 *ptr = nh + off;
643

644
			switch (nexthdr) {
645 646 647 648 649 650 651 652 653 654 655 656 657 658
			case IPPROTO_DSTOPTS:
				nexthdr = ptr[0];
				len = (ptr[1] + 1) << 3;
				if (np->rxopt.bits.dstopts)
					put_cmsg(msg, SOL_IPV6, IPV6_DSTOPTS, len, ptr);
				break;
			case IPPROTO_ROUTING:
				nexthdr = ptr[0];
				len = (ptr[1] + 1) << 3;
				if (np->rxopt.bits.srcrt)
					put_cmsg(msg, SOL_IPV6, IPV6_RTHDR, len, ptr);
				break;
			case IPPROTO_AH:
				nexthdr = ptr[0];
659
				len = (ptr[1] + 2) << 2;
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
				break;
			default:
				nexthdr = ptr[0];
				len = (ptr[1] + 1) << 3;
				break;
			}

			off += len;
		}
	}

	/* socket options in old style */
	if (np->rxopt.bits.rxoinfo) {
		struct in6_pktinfo src_info;

		src_info.ipi6_ifindex = opt->iif;
A
Alexey Dobriyan 已提交
676
		src_info.ipi6_addr = ipv6_hdr(skb)->daddr;
677 678 679
		put_cmsg(msg, SOL_IPV6, IPV6_2292PKTINFO, sizeof(src_info), &src_info);
	}
	if (np->rxopt.bits.rxohlim) {
680
		int hlim = ipv6_hdr(skb)->hop_limit;
681 682
		put_cmsg(msg, SOL_IPV6, IPV6_2292HOPLIMIT, sizeof(hlim), &hlim);
	}
683 684
	if (np->rxopt.bits.ohopopts && (opt->flags & IP6SKB_HOPBYHOP)) {
		u8 *ptr = nh + sizeof(struct ipv6hdr);
685 686 687
		put_cmsg(msg, SOL_IPV6, IPV6_2292HOPOPTS, (ptr[1]+1)<<3, ptr);
	}
	if (np->rxopt.bits.odstopts && opt->dst0) {
688
		u8 *ptr = nh + opt->dst0;
689
		put_cmsg(msg, SOL_IPV6, IPV6_2292DSTOPTS, (ptr[1]+1)<<3, ptr);
L
Linus Torvalds 已提交
690
	}
691
	if (np->rxopt.bits.osrcrt && opt->srcrt) {
692
		struct ipv6_rt_hdr *rthdr = (struct ipv6_rt_hdr *)(nh + opt->srcrt);
693
		put_cmsg(msg, SOL_IPV6, IPV6_2292RTHDR, (rthdr->hdrlen+1) << 3, rthdr);
L
Linus Torvalds 已提交
694
	}
695
	if (np->rxopt.bits.odstopts && opt->dst1) {
696
		u8 *ptr = nh + opt->dst1;
697
		put_cmsg(msg, SOL_IPV6, IPV6_2292DSTOPTS, (ptr[1]+1)<<3, ptr);
L
Linus Torvalds 已提交
698
	}
699 700
	if (np->rxopt.bits.rxorigdstaddr) {
		struct sockaddr_in6 sin6;
E
Eric Dumazet 已提交
701
		__be16 *ports = (__be16 *) skb_transport_header(skb);
702 703 704 705 706 707 708 709

		if (skb_transport_offset(skb) + 4 <= skb->len) {
			/* All current transport protocols have the port numbers in the
			 * first four bytes of the transport header and this function is
			 * written with this assumption in mind.
			 */

			sin6.sin6_family = AF_INET6;
A
Alexey Dobriyan 已提交
710
			sin6.sin6_addr = ipv6_hdr(skb)->daddr;
711 712
			sin6.sin6_port = ports[1];
			sin6.sin6_flowinfo = 0;
713 714 715
			sin6.sin6_scope_id =
				ipv6_iface_scope_id(&ipv6_hdr(skb)->daddr,
						    opt->iif);
716 717 718 719

			put_cmsg(msg, SOL_IPV6, IPV6_ORIGDSTADDR, sizeof(sin6), &sin6);
		}
	}
720 721 722 723 724 725 726
}

void ip6_datagram_recv_ctl(struct sock *sk, struct msghdr *msg,
			  struct sk_buff *skb)
{
	ip6_datagram_recv_common_ctl(sk, msg, skb);
	ip6_datagram_recv_specific_ctl(sk, msg, skb);
L
Linus Torvalds 已提交
727
}
T
Tom Parkin 已提交
728
EXPORT_SYMBOL_GPL(ip6_datagram_recv_ctl);
L
Linus Torvalds 已提交
729

730 731
int ip6_datagram_send_ctl(struct net *net, struct sock *sk,
			  struct msghdr *msg, struct flowi6 *fl6,
W
Wei Wang 已提交
732
			  struct ipcm6_cookie *ipc6, struct sockcm_cookie *sockc)
L
Linus Torvalds 已提交
733 734 735 736 737
{
	struct in6_pktinfo *src_info;
	struct cmsghdr *cmsg;
	struct ipv6_rt_hdr *rthdr;
	struct ipv6_opt_hdr *hdr;
W
Wei Wang 已提交
738
	struct ipv6_txoptions *opt = ipc6->opt;
L
Linus Torvalds 已提交
739 740 741
	int len;
	int err = 0;

742
	for_each_cmsghdr(cmsg, msg) {
L
Linus Torvalds 已提交
743 744 745 746 747 748 749
		int addr_type;

		if (!CMSG_OK(msg, cmsg)) {
			err = -EINVAL;
			goto exit_f;
		}

750
		if (cmsg->cmsg_level == SOL_SOCKET) {
751 752 753
			err = __sock_cmsg_send(sk, msg, cmsg, sockc);
			if (err)
				return err;
754 755 756
			continue;
		}

L
Linus Torvalds 已提交
757 758 759 760
		if (cmsg->cmsg_level != SOL_IPV6)
			continue;

		switch (cmsg->cmsg_type) {
761 762
		case IPV6_PKTINFO:
		case IPV6_2292PKTINFO:
763 764 765
		    {
			struct net_device *dev = NULL;

766
			if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct in6_pktinfo))) {
L
Linus Torvalds 已提交
767 768 769 770 771
				err = -EINVAL;
				goto exit_f;
			}

			src_info = (struct in6_pktinfo *)CMSG_DATA(cmsg);
772

L
Linus Torvalds 已提交
773
			if (src_info->ipi6_ifindex) {
774 775
				if (fl6->flowi6_oif &&
				    src_info->ipi6_ifindex != fl6->flowi6_oif)
L
Linus Torvalds 已提交
776
					return -EINVAL;
777
				fl6->flowi6_oif = src_info->ipi6_ifindex;
L
Linus Torvalds 已提交
778 779
			}

780
			addr_type = __ipv6_addr_type(&src_info->ipi6_addr);
L
Linus Torvalds 已提交
781

782
			rcu_read_lock();
783 784
			if (fl6->flowi6_oif) {
				dev = dev_get_by_index_rcu(net, fl6->flowi6_oif);
785 786
				if (!dev) {
					rcu_read_unlock();
787
					return -ENODEV;
788 789 790
				}
			} else if (addr_type & IPV6_ADDR_LINKLOCAL) {
				rcu_read_unlock();
791
				return -EINVAL;
792
			}
793

794 795
			if (addr_type != IPV6_ADDR_ANY) {
				int strict = __ipv6_addr_src_scope(addr_type) <= IPV6_ADDR_SCOPE_LINKLOCAL;
796
				if (!(inet_sk(sk)->freebind || inet_sk(sk)->transparent) &&
797
				    !ipv6_chk_addr(net, &src_info->ipi6_addr,
798 799 800
						   strict ? dev : NULL, 0) &&
				    !ipv6_chk_acast_addr_src(net, dev,
							     &src_info->ipi6_addr))
801 802
					err = -EINVAL;
				else
A
Alexey Dobriyan 已提交
803
					fl6->saddr = src_info->ipi6_addr;
L
Linus Torvalds 已提交
804
			}
805

806
			rcu_read_unlock();
L
Linus Torvalds 已提交
807

808 809 810
			if (err)
				goto exit_f;

L
Linus Torvalds 已提交
811
			break;
812
		    }
L
Linus Torvalds 已提交
813 814

		case IPV6_FLOWINFO:
815
			if (cmsg->cmsg_len < CMSG_LEN(4)) {
L
Linus Torvalds 已提交
816 817 818 819
				err = -EINVAL;
				goto exit_f;
			}

820 821
			if (fl6->flowlabel&IPV6_FLOWINFO_MASK) {
				if ((fl6->flowlabel^*(__be32 *)CMSG_DATA(cmsg))&~IPV6_FLOWINFO_MASK) {
L
Linus Torvalds 已提交
822 823 824 825
					err = -EINVAL;
					goto exit_f;
				}
			}
826
			fl6->flowlabel = IPV6_FLOWINFO_MASK & *(__be32 *)CMSG_DATA(cmsg);
L
Linus Torvalds 已提交
827 828
			break;

829
		case IPV6_2292HOPOPTS:
L
Linus Torvalds 已提交
830
		case IPV6_HOPOPTS:
831
			if (opt->hopopt || cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
L
Linus Torvalds 已提交
832 833 834 835 836 837 838 839 840 841
				err = -EINVAL;
				goto exit_f;
			}

			hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
			len = ((hdr->hdrlen + 1) << 3);
			if (cmsg->cmsg_len < CMSG_LEN(len)) {
				err = -EINVAL;
				goto exit_f;
			}
842
			if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
L
Linus Torvalds 已提交
843 844 845 846 847 848 849
				err = -EPERM;
				goto exit_f;
			}
			opt->opt_nflen += len;
			opt->hopopt = hdr;
			break;

850
		case IPV6_2292DSTOPTS:
851
			if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
L
Linus Torvalds 已提交
852 853 854 855 856 857 858 859 860 861
				err = -EINVAL;
				goto exit_f;
			}

			hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
			len = ((hdr->hdrlen + 1) << 3);
			if (cmsg->cmsg_len < CMSG_LEN(len)) {
				err = -EINVAL;
				goto exit_f;
			}
862
			if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
L
Linus Torvalds 已提交
863 864 865 866 867 868 869 870 871 872 873
				err = -EPERM;
				goto exit_f;
			}
			if (opt->dst1opt) {
				err = -EINVAL;
				goto exit_f;
			}
			opt->opt_flen += len;
			opt->dst1opt = hdr;
			break;

874 875 876 877 878 879 880 881 882 883 884 885 886
		case IPV6_DSTOPTS:
		case IPV6_RTHDRDSTOPTS:
			if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
				err = -EINVAL;
				goto exit_f;
			}

			hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
			len = ((hdr->hdrlen + 1) << 3);
			if (cmsg->cmsg_len < CMSG_LEN(len)) {
				err = -EINVAL;
				goto exit_f;
			}
887
			if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
888 889 890 891 892 893 894 895 896 897 898 899 900
				err = -EPERM;
				goto exit_f;
			}
			if (cmsg->cmsg_type == IPV6_DSTOPTS) {
				opt->opt_flen += len;
				opt->dst1opt = hdr;
			} else {
				opt->opt_nflen += len;
				opt->dst0opt = hdr;
			}
			break;

		case IPV6_2292RTHDR:
L
Linus Torvalds 已提交
901
		case IPV6_RTHDR:
902
			if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_rt_hdr))) {
L
Linus Torvalds 已提交
903 904 905 906 907 908
				err = -EINVAL;
				goto exit_f;
			}

			rthdr = (struct ipv6_rt_hdr *)CMSG_DATA(cmsg);

909
			switch (rthdr->type) {
A
Amerigo Wang 已提交
910
#if IS_ENABLED(CONFIG_IPV6_MIP6)
911
			case IPV6_SRCRT_TYPE_2:
B
Brian Haley 已提交
912 913 914 915 916
				if (rthdr->hdrlen != 2 ||
				    rthdr->segments_left != 1) {
					err = -EINVAL;
					goto exit_f;
				}
917
				break;
918
#endif
919
			default:
L
Linus Torvalds 已提交
920 921 922 923 924 925
				err = -EINVAL;
				goto exit_f;
			}

			len = ((rthdr->hdrlen + 1) << 3);

926
			if (cmsg->cmsg_len < CMSG_LEN(len)) {
L
Linus Torvalds 已提交
927 928 929 930 931 932 933 934 935 936 937 938 939
				err = -EINVAL;
				goto exit_f;
			}

			/* segments left must also match */
			if ((rthdr->hdrlen >> 1) != rthdr->segments_left) {
				err = -EINVAL;
				goto exit_f;
			}

			opt->opt_nflen += len;
			opt->srcrt = rthdr;

940
			if (cmsg->cmsg_type == IPV6_2292RTHDR && opt->dst1opt) {
L
Linus Torvalds 已提交
941 942 943 944 945 946 947 948 949 950
				int dsthdrlen = ((opt->dst1opt->hdrlen+1)<<3);

				opt->opt_nflen += dsthdrlen;
				opt->dst0opt = opt->dst1opt;
				opt->dst1opt = NULL;
				opt->opt_flen -= dsthdrlen;
			}

			break;

951
		case IPV6_2292HOPLIMIT:
L
Linus Torvalds 已提交
952 953 954 955 956 957
		case IPV6_HOPLIMIT:
			if (cmsg->cmsg_len != CMSG_LEN(sizeof(int))) {
				err = -EINVAL;
				goto exit_f;
			}

W
Wei Wang 已提交
958 959
			ipc6->hlimit = *(int *)CMSG_DATA(cmsg);
			if (ipc6->hlimit < -1 || ipc6->hlimit > 0xff) {
960 961 962 963
				err = -EINVAL;
				goto exit_f;
			}

L
Linus Torvalds 已提交
964 965
			break;

966 967 968 969 970
		case IPV6_TCLASS:
		    {
			int tc;

			err = -EINVAL;
971
			if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)))
972 973 974
				goto exit_f;

			tc = *(int *)CMSG_DATA(cmsg);
975
			if (tc < -1 || tc > 0xff)
976 977 978
				goto exit_f;

			err = 0;
W
Wei Wang 已提交
979
			ipc6->tclass = tc;
980

981 982 983 984 985 986 987 988
			break;
		    }

		case IPV6_DONTFRAG:
		    {
			int df;

			err = -EINVAL;
989
			if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)))
990 991 992 993 994 995 996
				goto exit_f;

			df = *(int *)CMSG_DATA(cmsg);
			if (df < 0 || df > 1)
				goto exit_f;

			err = 0;
W
Wei Wang 已提交
997
			ipc6->dontfrag = df;
998

999 1000
			break;
		    }
L
Linus Torvalds 已提交
1001
		default:
1002 1003
			net_dbg_ratelimited("invalid cmsg type: %d\n",
					    cmsg->cmsg_type);
L
Linus Torvalds 已提交
1004
			err = -EINVAL;
1005
			goto exit_f;
1006
		}
L
Linus Torvalds 已提交
1007 1008 1009 1010 1011
	}

exit_f:
	return err;
}
1012
EXPORT_SYMBOL_GPL(ip6_datagram_send_ctl);
1013 1014 1015 1016 1017 1018

void ip6_dgram_sock_seq_show(struct seq_file *seq, struct sock *sp,
			     __u16 srcp, __u16 destp, int bucket)
{
	const struct in6_addr *dest, *src;

1019 1020
	dest  = &sp->sk_v6_daddr;
	src   = &sp->sk_v6_rcv_saddr;
1021 1022
	seq_printf(seq,
		   "%5d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X "
1023
		   "%02X %08X:%08X %02X:%08lX %08X %5u %8d %lu %d %pK %d\n",
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038
		   bucket,
		   src->s6_addr32[0], src->s6_addr32[1],
		   src->s6_addr32[2], src->s6_addr32[3], srcp,
		   dest->s6_addr32[0], dest->s6_addr32[1],
		   dest->s6_addr32[2], dest->s6_addr32[3], destp,
		   sp->sk_state,
		   sk_wmem_alloc_get(sp),
		   sk_rmem_alloc_get(sp),
		   0, 0L, 0,
		   from_kuid_munged(seq_user_ns(seq), sock_i_uid(sp)),
		   0,
		   sock_i_ino(sp),
		   atomic_read(&sp->sk_refcnt), sp,
		   atomic_read(&sp->sk_drops));
}