datagram.c 20.2 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>
L
Linus Torvalds 已提交
25 26 27 28 29 30

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

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

36 37 38 39 40
static inline int ipv6_mapped_addr_any(const struct in6_addr *a)
{
	return (ipv6_addr_v4mapped(a) && (a->s6_addr32[3] == 0));
}

L
Linus Torvalds 已提交
41 42 43 44 45
int ip6_datagram_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
{
	struct sockaddr_in6	*usin = (struct sockaddr_in6 *) uaddr;
	struct inet_sock      	*inet = inet_sk(sk);
	struct ipv6_pinfo      	*np = inet6_sk(sk);
46
	struct in6_addr		*daddr, *final_p, final;
L
Linus Torvalds 已提交
47
	struct dst_entry	*dst;
48
	struct flowi6		fl6;
L
Linus Torvalds 已提交
49
	struct ip6_flowlabel	*flowlabel = NULL;
50
	struct ipv6_txoptions   *opt;
L
Linus Torvalds 已提交
51 52 53 54 55 56 57 58 59 60 61
	int			addr_type;
	int			err;

	if (usin->sin6_family == AF_INET) {
		if (__ipv6_only_sock(sk))
			return -EAFNOSUPPORT;
		err = ip4_datagram_connect(sk, uaddr, addr_len);
		goto ipv4_connected;
	}

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

64 65
	if (usin->sin6_family != AF_INET6)
		return -EAFNOSUPPORT;
L
Linus Torvalds 已提交
66

67
	memset(&fl6, 0, sizeof(fl6));
L
Linus Torvalds 已提交
68
	if (np->sndflow) {
69 70 71
		fl6.flowlabel = usin->sin6_flowinfo&IPV6_FLOWINFO_MASK;
		if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
			flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
L
Linus Torvalds 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
			if (flowlabel == NULL)
				return -EINVAL;
			ipv6_addr_copy(&usin->sin6_addr, &flowlabel->dst);
		}
	}

	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;

100 101
		err = ip4_datagram_connect(sk,
					   (struct sockaddr*) &sin,
L
Linus Torvalds 已提交
102 103 104 105 106
					   sizeof(sin));

ipv4_connected:
		if (err)
			goto out;
107

E
Eric Dumazet 已提交
108
		ipv6_addr_set_v4mapped(inet->inet_daddr, &np->daddr);
L
Linus Torvalds 已提交
109

110 111
		if (ipv6_addr_any(&np->saddr) ||
		    ipv6_mapped_addr_any(&np->saddr))
E
Eric Dumazet 已提交
112
			ipv6_addr_set_v4mapped(inet->inet_saddr, &np->saddr);
B
Brian Haley 已提交
113

114 115
		if (ipv6_addr_any(&np->rcv_saddr) ||
		    ipv6_mapped_addr_any(&np->rcv_saddr)) {
E
Eric Dumazet 已提交
116 117
			ipv6_addr_set_v4mapped(inet->inet_rcv_saddr,
					       &np->rcv_saddr);
E
Eric Dumazet 已提交
118 119 120
			if (sk->sk_prot->rehash)
				sk->sk_prot->rehash(sk);
		}
L
Linus Torvalds 已提交
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135

		goto out;
	}

	if (addr_type&IPV6_ADDR_LINKLOCAL) {
		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;
		}

136 137 138
		if (!sk->sk_bound_dev_if && (addr_type & IPV6_ADDR_MULTICAST))
			sk->sk_bound_dev_if = np->mcast_oif;

L
Linus Torvalds 已提交
139 140 141 142 143 144 145 146
		/* Connect to link-local address requires an interface */
		if (!sk->sk_bound_dev_if) {
			err = -EINVAL;
			goto out;
		}
	}

	ipv6_addr_copy(&np->daddr, daddr);
147
	np->flow_label = fl6.flowlabel;
L
Linus Torvalds 已提交
148

E
Eric Dumazet 已提交
149
	inet->inet_dport = usin->sin6_port;
L
Linus Torvalds 已提交
150 151 152 153 154 155

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

156 157 158 159 160
	fl6.flowi6_proto = sk->sk_protocol;
	ipv6_addr_copy(&fl6.daddr, &np->daddr);
	ipv6_addr_copy(&fl6.saddr, &np->saddr);
	fl6.flowi6_oif = sk->sk_bound_dev_if;
	fl6.flowi6_mark = sk->sk_mark;
161 162
	fl6.fl6_dport = inet->inet_dport;
	fl6.fl6_sport = inet->inet_sport;
L
Linus Torvalds 已提交
163

164 165
	if (!fl6.flowi6_oif && (addr_type&IPV6_ADDR_MULTICAST))
		fl6.flowi6_oif = np->mcast_oif;
L
Linus Torvalds 已提交
166

167
	security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
V
Venkat Yekkirala 已提交
168

169
	opt = flowlabel ? flowlabel->opt : np->opt;
170
	final_p = fl6_update_dst(&fl6, opt, &final);
L
Linus Torvalds 已提交
171

172
	dst = ip6_dst_lookup_flow(sk, &fl6, final_p, true);
173 174 175
	err = 0;
	if (IS_ERR(dst)) {
		err = PTR_ERR(dst);
L
Linus Torvalds 已提交
176
		goto out;
177
	}
L
Linus Torvalds 已提交
178 179 180 181

	/* source address lookup done in ip6_dst_lookup */

	if (ipv6_addr_any(&np->saddr))
182
		ipv6_addr_copy(&np->saddr, &fl6.saddr);
L
Linus Torvalds 已提交
183 184

	if (ipv6_addr_any(&np->rcv_saddr)) {
185
		ipv6_addr_copy(&np->rcv_saddr, &fl6.saddr);
E
Eric Dumazet 已提交
186
		inet->inet_rcv_saddr = LOOPBACK4_IPV6;
E
Eric Dumazet 已提交
187 188
		if (sk->sk_prot->rehash)
			sk->sk_prot->rehash(sk);
L
Linus Torvalds 已提交
189 190 191
	}

	ip6_dst_store(sk, dst,
192
		      ipv6_addr_equal(&fl6.daddr, &np->daddr) ?
193 194
		      &np->daddr : NULL,
#ifdef CONFIG_IPV6_SUBTREES
195
		      ipv6_addr_equal(&fl6.saddr, &np->saddr) ?
196 197 198
		      &np->saddr :
#endif
		      NULL);
L
Linus Torvalds 已提交
199 200 201 202 203 204 205

	sk->sk_state = TCP_ESTABLISHED;
out:
	fl6_sock_release(flowlabel);
	return err;
}

206
void ipv6_icmp_error(struct sock *sk, struct sk_buff *skb, int err,
A
Al Viro 已提交
207
		     __be16 port, u32 info, u8 *payload)
L
Linus Torvalds 已提交
208 209
{
	struct ipv6_pinfo *np  = inet6_sk(sk);
210
	struct icmp6hdr *icmph = icmp6_hdr(skb);
L
Linus Torvalds 已提交
211 212 213 214 215 216 217 218 219
	struct sock_exterr_skb *serr;

	if (!np->recverr)
		return;

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

220 221
	skb->protocol = htons(ETH_P_IPV6);

L
Linus Torvalds 已提交
222 223 224
	serr = SKB_EXT_ERR(skb);
	serr->ee.ee_errno = err;
	serr->ee.ee_origin = SO_EE_ORIGIN_ICMP6;
225
	serr->ee.ee_type = icmph->icmp6_type;
L
Linus Torvalds 已提交
226 227 228 229
	serr->ee.ee_code = icmph->icmp6_code;
	serr->ee.ee_pad = 0;
	serr->ee.ee_info = info;
	serr->ee.ee_data = 0;
230 231
	serr->addr_offset = (u8 *)&(((struct ipv6hdr *)(icmph + 1))->daddr) -
				  skb_network_header(skb);
L
Linus Torvalds 已提交
232 233 234
	serr->port = port;

	__skb_pull(skb, payload - skb->data);
235
	skb_reset_transport_header(skb);
L
Linus Torvalds 已提交
236 237 238 239 240

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

241
void ipv6_local_error(struct sock *sk, int err, struct flowi6 *fl6, u32 info)
L
Linus Torvalds 已提交
242 243 244 245 246 247 248 249 250 251 252 253 254
{
	struct ipv6_pinfo *np = inet6_sk(sk);
	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;

255 256
	skb->protocol = htons(ETH_P_IPV6);

257 258
	skb_put(skb, sizeof(struct ipv6hdr));
	skb_reset_network_header(skb);
259
	iph = ipv6_hdr(skb);
260
	ipv6_addr_copy(&iph->daddr, &fl6->daddr);
L
Linus Torvalds 已提交
261 262 263 264

	serr = SKB_EXT_ERR(skb);
	serr->ee.ee_errno = err;
	serr->ee.ee_origin = SO_EE_ORIGIN_LOCAL;
265
	serr->ee.ee_type = 0;
L
Linus Torvalds 已提交
266 267 268 269
	serr->ee.ee_code = 0;
	serr->ee.ee_pad = 0;
	serr->ee.ee_info = info;
	serr->ee.ee_data = 0;
270
	serr->addr_offset = (u8 *)&iph->daddr - skb_network_header(skb);
271
	serr->port = fl6->fl6_dport;
L
Linus Torvalds 已提交
272

273
	__skb_pull(skb, skb_tail_pointer(skb) - skb->data);
274
	skb_reset_transport_header(skb);
L
Linus Torvalds 已提交
275 276 277 278 279

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

280
void ipv6_local_rxpmtu(struct sock *sk, struct flowi6 *fl6, u32 mtu)
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
{
	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);
297
	ipv6_addr_copy(&iph->daddr, &fl6->daddr);
298 299 300 301 302 303 304

	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;
305
	mtu_info->ip6m_addr.sin6_scope_id = fl6->flowi6_oif;
306 307 308 309 310 311 312 313 314
	ipv6_addr_copy(&mtu_info->ip6m_addr.sin6_addr, &ipv6_hdr(skb)->daddr);

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

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

315
/*
L
Linus Torvalds 已提交
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
 *	Handle MSG_ERRQUEUE
 */
int ipv6_recv_error(struct sock *sk, struct msghdr *msg, int len)
{
	struct ipv6_pinfo *np = inet6_sk(sk);
	struct sock_exterr_skb *serr;
	struct sk_buff *skb, *skb2;
	struct sockaddr_in6 *sin;
	struct {
		struct sock_extended_err ee;
		struct sockaddr_in6	 offender;
	} errhdr;
	int err;
	int copied;

	err = -EAGAIN;
	skb = skb_dequeue(&sk->sk_error_queue);
	if (skb == NULL)
		goto out;

	copied = skb->len;
	if (copied > len) {
		msg->msg_flags |= MSG_TRUNC;
		copied = len;
	}
	err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
	if (err)
		goto out_free_skb;

	sock_recv_timestamp(msg, sk, skb);

	serr = SKB_EXT_ERR(skb);

	sin = (struct sockaddr_in6 *)msg->msg_name;
	if (sin) {
351
		const unsigned char *nh = skb_network_header(skb);
L
Linus Torvalds 已提交
352 353
		sin->sin6_family = AF_INET6;
		sin->sin6_flowinfo = 0;
354
		sin->sin6_port = serr->port;
L
Linus Torvalds 已提交
355
		sin->sin6_scope_id = 0;
356
		if (skb->protocol == htons(ETH_P_IPV6)) {
L
Linus Torvalds 已提交
357
			ipv6_addr_copy(&sin->sin6_addr,
358
				  (struct in6_addr *)(nh + serr->addr_offset));
L
Linus Torvalds 已提交
359
			if (np->sndflow)
360 361 362
				sin->sin6_flowinfo =
					(*(__be32 *)(nh + serr->addr_offset - 24) &
					 IPV6_FLOWINFO_MASK);
L
Linus Torvalds 已提交
363 364 365
			if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL)
				sin->sin6_scope_id = IP6CB(skb)->iif;
		} else {
B
Brian Haley 已提交
366 367
			ipv6_addr_set_v4mapped(*(__be32 *)(nh + serr->addr_offset),
					       &sin->sin6_addr);
L
Linus Torvalds 已提交
368 369 370 371 372 373 374 375 376 377
		}
	}

	memcpy(&errhdr.ee, &serr->ee, sizeof(struct sock_extended_err));
	sin = &errhdr.offender;
	sin->sin6_family = AF_UNSPEC;
	if (serr->ee.ee_origin != SO_EE_ORIGIN_LOCAL) {
		sin->sin6_family = AF_INET6;
		sin->sin6_flowinfo = 0;
		sin->sin6_scope_id = 0;
378
		if (skb->protocol == htons(ETH_P_IPV6)) {
379
			ipv6_addr_copy(&sin->sin6_addr, &ipv6_hdr(skb)->saddr);
L
Linus Torvalds 已提交
380 381 382 383 384 385 386
			if (np->rxopt.all)
				datagram_recv_ctl(sk, msg, skb);
			if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL)
				sin->sin6_scope_id = IP6CB(skb)->iif;
		} else {
			struct inet_sock *inet = inet_sk(sk);

B
Brian Haley 已提交
387 388
			ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
					       &sin->sin6_addr);
L
Linus Torvalds 已提交
389 390 391 392 393 394 395 396 397 398 399 400 401
			if (inet->cmsg_flags)
				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;

	/* Reset and regenerate socket error */
402
	spin_lock_bh(&sk->sk_error_queue.lock);
L
Linus Torvalds 已提交
403 404 405
	sk->sk_err = 0;
	if ((skb2 = skb_peek(&sk->sk_error_queue)) != NULL) {
		sk->sk_err = SKB_EXT_ERR(skb2)->ee.ee_errno;
406
		spin_unlock_bh(&sk->sk_error_queue.lock);
L
Linus Torvalds 已提交
407 408
		sk->sk_error_report(sk);
	} else {
409
		spin_unlock_bh(&sk->sk_error_queue.lock);
L
Linus Torvalds 已提交
410 411
	}

412
out_free_skb:
L
Linus Torvalds 已提交
413 414 415 416 417
	kfree_skb(skb);
out:
	return err;
}

418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
/*
 *	Handle IPV6_RECVPATHMTU
 */
int ipv6_recv_rxpmtu(struct sock *sk, struct msghdr *msg, int len)
{
	struct ipv6_pinfo *np = inet6_sk(sk);
	struct sk_buff *skb;
	struct sockaddr_in6 *sin;
	struct ip6_mtuinfo mtu_info;
	int err;
	int copied;

	err = -EAGAIN;
	skb = xchg(&np->rxpmtu, NULL);
	if (skb == NULL)
		goto out;

	copied = skb->len;
	if (copied > len) {
		msg->msg_flags |= MSG_TRUNC;
		copied = len;
	}
	err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
	if (err)
		goto out_free_skb;

	sock_recv_timestamp(msg, sk, skb);

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

	sin = (struct sockaddr_in6 *)msg->msg_name;
	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;
		ipv6_addr_copy(&sin->sin6_addr, &mtu_info.ip6m_addr.sin6_addr);
	}

	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 已提交
466 467 468 469 470 471


int datagram_recv_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);
472
	unsigned char *nh = skb_network_header(skb);
L
Linus Torvalds 已提交
473 474 475 476 477

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

		src_info.ipi6_ifindex = opt->iif;
478
		ipv6_addr_copy(&src_info.ipi6_addr, &ipv6_hdr(skb)->daddr);
L
Linus Torvalds 已提交
479 480 481 482
		put_cmsg(msg, SOL_IPV6, IPV6_PKTINFO, sizeof(src_info), &src_info);
	}

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

487
	if (np->rxopt.bits.rxtclass) {
488
		int tclass = (ntohl(*(__be32 *)ipv6_hdr(skb)) >> 20) & 0xff;
489 490 491
		put_cmsg(msg, SOL_IPV6, IPV6_TCLASS, sizeof(tclass), &tclass);
	}

492 493
	if (np->rxopt.bits.rxflow && (*(__be32 *)nh & IPV6_FLOWINFO_MASK)) {
		__be32 flowinfo = *(__be32 *)nh & IPV6_FLOWINFO_MASK;
L
Linus Torvalds 已提交
494 495
		put_cmsg(msg, SOL_IPV6, IPV6_FLOWINFO, sizeof(flowinfo), &flowinfo);
	}
496 497

	/* HbH is allowed only once */
L
Linus Torvalds 已提交
498
	if (np->rxopt.bits.hopopts && opt->hop) {
499
		u8 *ptr = nh + opt->hop;
L
Linus Torvalds 已提交
500 501
		put_cmsg(msg, SOL_IPV6, IPV6_HOPOPTS, (ptr[1]+1)<<3, ptr);
	}
502 503 504 505 506 507 508 509

	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.
		 *
510
		 * Also note that IPV6_RECVRTHDRDSTOPTS is NOT
511 512 513 514
		 * (and WILL NOT be) defined because
		 * IPV6_RECVDSTOPTS is more generic. --yoshfuji
		 */
		unsigned int off = sizeof(struct ipv6hdr);
515
		u8 nexthdr = ipv6_hdr(skb)->nexthdr;
516 517 518

		while (off <= opt->lastopt) {
			unsigned len;
519
			u8 *ptr = nh + off;
520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535

			switch(nexthdr) {
			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];
536
				len = (ptr[1] + 2) << 2;
537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552
				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;
553
		ipv6_addr_copy(&src_info.ipi6_addr, &ipv6_hdr(skb)->daddr);
554 555 556
		put_cmsg(msg, SOL_IPV6, IPV6_2292PKTINFO, sizeof(src_info), &src_info);
	}
	if (np->rxopt.bits.rxohlim) {
557
		int hlim = ipv6_hdr(skb)->hop_limit;
558 559 560
		put_cmsg(msg, SOL_IPV6, IPV6_2292HOPLIMIT, sizeof(hlim), &hlim);
	}
	if (np->rxopt.bits.ohopopts && opt->hop) {
561
		u8 *ptr = nh + opt->hop;
562 563 564
		put_cmsg(msg, SOL_IPV6, IPV6_2292HOPOPTS, (ptr[1]+1)<<3, ptr);
	}
	if (np->rxopt.bits.odstopts && opt->dst0) {
565
		u8 *ptr = nh + opt->dst0;
566
		put_cmsg(msg, SOL_IPV6, IPV6_2292DSTOPTS, (ptr[1]+1)<<3, ptr);
L
Linus Torvalds 已提交
567
	}
568
	if (np->rxopt.bits.osrcrt && opt->srcrt) {
569
		struct ipv6_rt_hdr *rthdr = (struct ipv6_rt_hdr *)(nh + opt->srcrt);
570
		put_cmsg(msg, SOL_IPV6, IPV6_2292RTHDR, (rthdr->hdrlen+1) << 3, rthdr);
L
Linus Torvalds 已提交
571
	}
572
	if (np->rxopt.bits.odstopts && opt->dst1) {
573
		u8 *ptr = nh + opt->dst1;
574
		put_cmsg(msg, SOL_IPV6, IPV6_2292DSTOPTS, (ptr[1]+1)<<3, ptr);
L
Linus Torvalds 已提交
575
	}
576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594
	if (np->rxopt.bits.rxorigdstaddr) {
		struct sockaddr_in6 sin6;
		u16 *ports = (u16 *) skb_transport_header(skb);

		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;
			ipv6_addr_copy(&sin6.sin6_addr, &ipv6_hdr(skb)->daddr);
			sin6.sin6_port = ports[1];
			sin6.sin6_flowinfo = 0;
			sin6.sin6_scope_id = 0;

			put_cmsg(msg, SOL_IPV6, IPV6_ORIGDSTADDR, sizeof(sin6), &sin6);
		}
	}
L
Linus Torvalds 已提交
595 596 597
	return 0;
}

598
int datagram_send_ctl(struct net *net, struct sock *sk,
599
		      struct msghdr *msg, struct flowi6 *fl6,
L
Linus Torvalds 已提交
600
		      struct ipv6_txoptions *opt,
601
		      int *hlimit, int *tclass, int *dontfrag)
L
Linus Torvalds 已提交
602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
{
	struct in6_pktinfo *src_info;
	struct cmsghdr *cmsg;
	struct ipv6_rt_hdr *rthdr;
	struct ipv6_opt_hdr *hdr;
	int len;
	int err = 0;

	for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
		int addr_type;

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

		if (cmsg->cmsg_level != SOL_IPV6)
			continue;

		switch (cmsg->cmsg_type) {
622 623
		case IPV6_PKTINFO:
		case IPV6_2292PKTINFO:
624 625 626
		    {
			struct net_device *dev = NULL;

627
			if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct in6_pktinfo))) {
L
Linus Torvalds 已提交
628 629 630 631 632
				err = -EINVAL;
				goto exit_f;
			}

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

L
Linus Torvalds 已提交
634
			if (src_info->ipi6_ifindex) {
635 636
				if (fl6->flowi6_oif &&
				    src_info->ipi6_ifindex != fl6->flowi6_oif)
L
Linus Torvalds 已提交
637
					return -EINVAL;
638
				fl6->flowi6_oif = src_info->ipi6_ifindex;
L
Linus Torvalds 已提交
639 640
			}

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

643
			rcu_read_lock();
644 645
			if (fl6->flowi6_oif) {
				dev = dev_get_by_index_rcu(net, fl6->flowi6_oif);
646 647
				if (!dev) {
					rcu_read_unlock();
648
					return -ENODEV;
649 650 651
				}
			} else if (addr_type & IPV6_ADDR_LINKLOCAL) {
				rcu_read_unlock();
652
				return -EINVAL;
653
			}
654

655 656
			if (addr_type != IPV6_ADDR_ANY) {
				int strict = __ipv6_addr_src_scope(addr_type) <= IPV6_ADDR_SCOPE_LINKLOCAL;
657 658
				if (!inet_sk(sk)->transparent &&
				    !ipv6_chk_addr(net, &src_info->ipi6_addr,
659 660 661
						   strict ? dev : NULL, 0))
					err = -EINVAL;
				else
662
					ipv6_addr_copy(&fl6->saddr, &src_info->ipi6_addr);
L
Linus Torvalds 已提交
663
			}
664

665
			rcu_read_unlock();
L
Linus Torvalds 已提交
666

667 668 669
			if (err)
				goto exit_f;

L
Linus Torvalds 已提交
670
			break;
671
		    }
L
Linus Torvalds 已提交
672 673

		case IPV6_FLOWINFO:
674
			if (cmsg->cmsg_len < CMSG_LEN(4)) {
L
Linus Torvalds 已提交
675 676 677 678
				err = -EINVAL;
				goto exit_f;
			}

679 680
			if (fl6->flowlabel&IPV6_FLOWINFO_MASK) {
				if ((fl6->flowlabel^*(__be32 *)CMSG_DATA(cmsg))&~IPV6_FLOWINFO_MASK) {
L
Linus Torvalds 已提交
681 682 683 684
					err = -EINVAL;
					goto exit_f;
				}
			}
685
			fl6->flowlabel = IPV6_FLOWINFO_MASK & *(__be32 *)CMSG_DATA(cmsg);
L
Linus Torvalds 已提交
686 687
			break;

688
		case IPV6_2292HOPOPTS:
L
Linus Torvalds 已提交
689
		case IPV6_HOPOPTS:
690
			if (opt->hopopt || cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
L
Linus Torvalds 已提交
691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708
				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;
			}
			if (!capable(CAP_NET_RAW)) {
				err = -EPERM;
				goto exit_f;
			}
			opt->opt_nflen += len;
			opt->hopopt = hdr;
			break;

709
		case IPV6_2292DSTOPTS:
710
			if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
L
Linus Torvalds 已提交
711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732
				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;
			}
			if (!capable(CAP_NET_RAW)) {
				err = -EPERM;
				goto exit_f;
			}
			if (opt->dst1opt) {
				err = -EINVAL;
				goto exit_f;
			}
			opt->opt_flen += len;
			opt->dst1opt = hdr;
			break;

733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759
		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;
			}
			if (!capable(CAP_NET_RAW)) {
				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 已提交
760
		case IPV6_RTHDR:
761
			if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_rt_hdr))) {
L
Linus Torvalds 已提交
762 763 764 765 766 767
				err = -EINVAL;
				goto exit_f;
			}

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

768
			switch (rthdr->type) {
769
#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
770
			case IPV6_SRCRT_TYPE_2:
B
Brian Haley 已提交
771 772 773 774 775
				if (rthdr->hdrlen != 2 ||
				    rthdr->segments_left != 1) {
					err = -EINVAL;
					goto exit_f;
				}
776
				break;
777
#endif
778
			default:
L
Linus Torvalds 已提交
779 780 781 782 783 784
				err = -EINVAL;
				goto exit_f;
			}

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

785
			if (cmsg->cmsg_len < CMSG_LEN(len)) {
L
Linus Torvalds 已提交
786 787 788 789 790 791 792 793 794 795 796 797 798
				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;

799
			if (cmsg->cmsg_type == IPV6_2292RTHDR && opt->dst1opt) {
L
Linus Torvalds 已提交
800 801 802 803 804 805 806 807 808 809
				int dsthdrlen = ((opt->dst1opt->hdrlen+1)<<3);

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

			break;

810
		case IPV6_2292HOPLIMIT:
L
Linus Torvalds 已提交
811 812 813 814 815 816 817
		case IPV6_HOPLIMIT:
			if (cmsg->cmsg_len != CMSG_LEN(sizeof(int))) {
				err = -EINVAL;
				goto exit_f;
			}

			*hlimit = *(int *)CMSG_DATA(cmsg);
818 819 820 821 822
			if (*hlimit < -1 || *hlimit > 0xff) {
				err = -EINVAL;
				goto exit_f;
			}

L
Linus Torvalds 已提交
823 824
			break;

825 826 827 828 829 830 831 832 833 834
		case IPV6_TCLASS:
		    {
			int tc;

			err = -EINVAL;
			if (cmsg->cmsg_len != CMSG_LEN(sizeof(int))) {
				goto exit_f;
			}

			tc = *(int *)CMSG_DATA(cmsg);
835
			if (tc < -1 || tc > 0xff)
836 837 838 839 840
				goto exit_f;

			err = 0;
			*tclass = tc;

841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859
			break;
		    }

		case IPV6_DONTFRAG:
		    {
			int df;

			err = -EINVAL;
			if (cmsg->cmsg_len != CMSG_LEN(sizeof(int))) {
				goto exit_f;
			}

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

			err = 0;
			*dontfrag = df;

860 861
			break;
		    }
L
Linus Torvalds 已提交
862
		default:
863
			LIMIT_NETDEBUG(KERN_DEBUG "invalid cmsg type: %d\n",
864
				       cmsg->cmsg_type);
L
Linus Torvalds 已提交
865
			err = -EINVAL;
866
			goto exit_f;
867
		}
L
Linus Torvalds 已提交
868 869 870 871 872
	}

exit_f:
	return err;
}