ipv6.c 28.9 KB
Newer Older
1
/* SCTP kernel implementation
L
Linus Torvalds 已提交
2 3 4 5 6
 * (C) Copyright IBM Corp. 2002, 2004
 * Copyright (c) 2001 Nokia, Inc.
 * Copyright (c) 2001 La Monte H.P. Yarroll
 * Copyright (c) 2002-2003 Intel Corp.
 *
7
 * This file is part of the SCTP kernel implementation
L
Linus Torvalds 已提交
8 9 10
 *
 * SCTP over IPv6.
 *
11
 * This SCTP implementation is free software;
L
Linus Torvalds 已提交
12 13 14 15 16
 * 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, or (at your option)
 * any later version.
 *
17
 * This SCTP implementation is distributed in the hope that it
L
Linus Torvalds 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
 *		   ************************
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with GNU CC; see the file COPYING.  If not, write to
 * the Free Software Foundation, 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 * Please send any bug reports or fixes you make to the
 * email address(es):
 *    lksctp developers <lksctp-developers@lists.sourceforge.net>
 *
 * Or submit a bug report through the following website:
 *    http://www.sf.net/projects/lksctp
 *
 * Written or modified by:
 *    Le Yanqun		    <yanqun.le@nokia.com>
 *    Hui Huang		    <hui.huang@nokia.com>
 *    La Monte H.P. Yarroll <piggy@acm.org>
 *    Sridhar Samudrala	    <sri@us.ibm.com>
 *    Jon Grimm		    <jgrimm@us.ibm.com>
 *    Ardelle Fan	    <ardelle.fan@intel.com>
 *
 * Based on:
 *	linux/net/ipv6/tcp_ipv6.c
 *
 * Any bugs reported given to us we will try to fix... any fixes shared will
 * be incorporated into the next SCTP release.
 */

50 51
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

L
Linus Torvalds 已提交
52 53 54 55 56 57 58 59 60 61 62
#include <linux/module.h>
#include <linux/errno.h>
#include <linux/types.h>
#include <linux/socket.h>
#include <linux/sockios.h>
#include <linux/net.h>
#include <linux/in.h>
#include <linux/in6.h>
#include <linux/netdevice.h>
#include <linux/init.h>
#include <linux/ipsec.h>
63
#include <linux/slab.h>
L
Linus Torvalds 已提交
64 65 66 67 68 69 70 71

#include <linux/ipv6.h>
#include <linux/icmpv6.h>
#include <linux/random.h>
#include <linux/seq_file.h>

#include <net/protocol.h>
#include <net/ndisc.h>
72
#include <net/ip.h>
L
Linus Torvalds 已提交
73 74 75 76 77 78 79 80 81 82
#include <net/ipv6.h>
#include <net/transp_v6.h>
#include <net/addrconf.h>
#include <net/ip6_route.h>
#include <net/inet_common.h>
#include <net/inet_ecn.h>
#include <net/sctp/sctp.h>

#include <asm/uaccess.h>

83 84
static inline int sctp_v6_addr_match_len(union sctp_addr *s1,
					 union sctp_addr *s2);
85 86 87 88
static void sctp_v6_to_addr(union sctp_addr *addr, struct in6_addr *saddr,
			      __be16 port);
static int sctp_v6_cmp_addr(const union sctp_addr *addr1,
			    const union sctp_addr *addr2);
89

90 91 92 93 94 95
/* Event handler for inet6 address addition/deletion events.
 * The sctp_local_addr_list needs to be protocted by a spin lock since
 * multiple notifiers (say IPv4 and IPv6) may be running at the same
 * time and thus corrupt the list.
 * The reader side is protected with RCU.
 */
A
Adrian Bunk 已提交
96 97
static int sctp_inet6addr_event(struct notifier_block *this, unsigned long ev,
				void *ptr)
98 99
{
	struct inet6_ifaddr *ifa = (struct inet6_ifaddr *)ptr;
100 101
	struct sctp_sockaddr_entry *addr = NULL;
	struct sctp_sockaddr_entry *temp;
102
	int found = 0;
103 104 105 106 107 108 109

	switch (ev) {
	case NETDEV_UP:
		addr = kmalloc(sizeof(struct sctp_sockaddr_entry), GFP_ATOMIC);
		if (addr) {
			addr->a.v6.sin6_family = AF_INET6;
			addr->a.v6.sin6_port = 0;
J
Joe Perches 已提交
110
			ipv6_addr_copy(&addr->a.v6.sin6_addr, &ifa->addr);
111
			addr->a.v6.sin6_scope_id = ifa->idev->dev->ifindex;
112 113 114 115
			addr->valid = 1;
			spin_lock_bh(&sctp_local_addr_lock);
			list_add_tail_rcu(&addr->list, &sctp_local_addr_list);
			spin_unlock_bh(&sctp_local_addr_lock);
116 117 118
		}
		break;
	case NETDEV_DOWN:
119 120 121
		spin_lock_bh(&sctp_local_addr_lock);
		list_for_each_entry_safe(addr, temp,
					&sctp_local_addr_list, list) {
122 123 124
			if (addr->a.sa.sa_family == AF_INET6 &&
					ipv6_addr_equal(&addr->a.v6.sin6_addr,
						&ifa->addr)) {
125
				found = 1;
126 127
				addr->valid = 0;
				list_del_rcu(&addr->list);
128 129 130
				break;
			}
		}
131
		spin_unlock_bh(&sctp_local_addr_lock);
132
		if (found)
133
			call_rcu(&addr->rcu, sctp_local_addr_free);
134 135 136 137 138 139
		break;
	}

	return NOTIFY_DONE;
}

L
Linus Torvalds 已提交
140
static struct notifier_block sctp_inet6addr_notifier = {
141
	.notifier_call = sctp_inet6addr_event,
L
Linus Torvalds 已提交
142 143 144 145
};

/* ICMP error handler. */
SCTP_STATIC void sctp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
146
			     u8 type, u8 code, int offset, __be32 info)
L
Linus Torvalds 已提交
147 148 149 150 151 152
{
	struct inet6_dev *idev;
	struct sock *sk;
	struct sctp_association *asoc;
	struct sctp_transport *transport;
	struct ipv6_pinfo *np;
153
	sk_buff_data_t saveip, savesctp;
L
Linus Torvalds 已提交
154 155 156 157 158
	int err;

	idev = in6_dev_get(skb->dev);

	/* Fix up skb to look at the embedded net header. */
159 160
	saveip	 = skb->network_header;
	savesctp = skb->transport_header;
161
	skb_reset_network_header(skb);
162 163
	skb_set_transport_header(skb, offset);
	sk = sctp_err_lookup(AF_INET6, skb, sctp_hdr(skb), &asoc, &transport);
L
Linus Torvalds 已提交
164
	/* Put back, the original pointers. */
165 166
	skb->network_header   = saveip;
	skb->transport_header = savesctp;
L
Linus Torvalds 已提交
167
	if (!sk) {
168
		ICMP6_INC_STATS_BH(dev_net(skb->dev), idev, ICMP6_MIB_INERRORS);
L
Linus Torvalds 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181
		goto out;
	}

	/* Warning:  The sock lock is held.  Remember to call
	 * sctp_err_finish!
	 */

	switch (type) {
	case ICMPV6_PKT_TOOBIG:
		sctp_icmp_frag_needed(sk, asoc, transport, ntohl(info));
		goto out_unlock;
	case ICMPV6_PARAMPROB:
		if (ICMPV6_UNK_NEXTHDR == code) {
182
			sctp_icmp_proto_unreachable(sk, asoc, transport);
L
Linus Torvalds 已提交
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
			goto out_unlock;
		}
		break;
	default:
		break;
	}

	np = inet6_sk(sk);
	icmpv6_err_convert(type, code, &err);
	if (!sock_owned_by_user(sk) && np->recverr) {
		sk->sk_err = err;
		sk->sk_error_report(sk);
	} else {  /* Only an error on timeout */
		sk->sk_err_soft = err;
	}

out_unlock:
200
	sctp_err_finish(sk, asoc);
L
Linus Torvalds 已提交
201 202 203 204 205 206
out:
	if (likely(idev != NULL))
		in6_dev_put(idev);
}

/* Based on tcp_v6_xmit() in tcp_ipv6.c. */
207
static int sctp_v6_xmit(struct sk_buff *skb, struct sctp_transport *transport)
L
Linus Torvalds 已提交
208 209 210
{
	struct sock *sk = skb->sk;
	struct ipv6_pinfo *np = inet6_sk(sk);
211
	struct flowi6 fl6;
L
Linus Torvalds 已提交
212

213
	memset(&fl6, 0, sizeof(fl6));
L
Linus Torvalds 已提交
214

215
	fl6.flowi6_proto = sk->sk_protocol;
L
Linus Torvalds 已提交
216 217 218 219

	/* Fill in the dest address from the route entry passed with the skb
	 * and the source address from the transport.
	 */
220 221
	ipv6_addr_copy(&fl6.daddr, &transport->ipaddr.v6.sin6_addr);
	ipv6_addr_copy(&fl6.saddr, &transport->saddr.v6.sin6_addr);
L
Linus Torvalds 已提交
222

223 224 225 226
	fl6.flowlabel = np->flow_label;
	IP6_ECN_flow_xmit(sk, fl6.flowlabel);
	if (ipv6_addr_type(&fl6.saddr) & IPV6_ADDR_LINKLOCAL)
		fl6.flowi6_oif = transport->saddr.v6.sin6_scope_id;
L
Linus Torvalds 已提交
227
	else
228
		fl6.flowi6_oif = sk->sk_bound_dev_if;
L
Linus Torvalds 已提交
229 230 231

	if (np->opt && np->opt->srcrt) {
		struct rt0_hdr *rt0 = (struct rt0_hdr *) np->opt->srcrt;
232
		ipv6_addr_copy(&fl6.daddr, rt0->addr);
L
Linus Torvalds 已提交
233 234
	}

H
Harvey Harrison 已提交
235
	SCTP_DEBUG_PRINTK("%s: skb:%p, len:%d, src:%pI6 dst:%pI6\n",
236
			  __func__, skb, skb->len,
237
			  &fl6.saddr, &fl6.daddr);
L
Linus Torvalds 已提交
238 239 240

	SCTP_INC_STATS(SCTP_MIB_OUTSCTPPACKS);

241 242 243
	if (!(transport->param_flags & SPP_PMTUD_ENABLE))
		skb->local_df = 1;

244
	return ip6_xmit(sk, skb, &fl6, np->opt);
L
Linus Torvalds 已提交
245 246 247 248 249
}

/* Returns the dst cache entry for the given source and destination ip
 * addresses.
 */
250 251
static void sctp_v6_get_dst(struct sctp_transport *t, union sctp_addr *saddr,
			    struct flowi *fl, struct sock *sk)
L
Linus Torvalds 已提交
252
{
253
	struct sctp_association *asoc = t->asoc;
254
	struct dst_entry *dst = NULL;
255
	struct flowi6 *fl6 = &fl->u.ip6;
256 257 258
	struct sctp_bind_addr *bp;
	struct sctp_sockaddr_entry *laddr;
	union sctp_addr *baddr = NULL;
259
	union sctp_addr *daddr = &t->ipaddr;
260
	union sctp_addr dst_saddr;
261 262 263
	__u8 matchlen = 0;
	__u8 bmatchlen;
	sctp_scope_t scope;
L
Linus Torvalds 已提交
264

265 266
	memset(fl6, 0, sizeof(struct flowi6));
	ipv6_addr_copy(&fl6->daddr, &daddr->v6.sin6_addr);
267 268
	fl6->fl6_dport = daddr->v6.sin6_port;
	fl6->flowi6_proto = IPPROTO_SCTP;
L
Linus Torvalds 已提交
269
	if (ipv6_addr_type(&daddr->v6.sin6_addr) & IPV6_ADDR_LINKLOCAL)
270
		fl6->flowi6_oif = daddr->v6.sin6_scope_id;
271

272
	SCTP_DEBUG_PRINTK("%s: DST=%pI6 ", __func__, &fl6->daddr);
L
Linus Torvalds 已提交
273

274 275 276
	if (asoc)
		fl6->fl6_sport = htons(asoc->base.bind_addr.port);

L
Linus Torvalds 已提交
277
	if (saddr) {
278
		ipv6_addr_copy(&fl6->saddr, &saddr->v6.sin6_addr);
279
		fl6->fl6_sport = saddr->v6.sin6_port;
280
		SCTP_DEBUG_PRINTK("SRC=%pI6 - ", &fl6->saddr);
L
Linus Torvalds 已提交
281 282
	}

283
	dst = ip6_dst_lookup_flow(sk, fl6, NULL, false);
284 285 286
	if (!asoc || saddr)
		goto out;

287 288 289 290 291
	bp = &asoc->base.bind_addr;
	scope = sctp_scope(daddr);
	/* ip6_dst_lookup has filled in the fl6->saddr for us.  Check
	 * to see if we can use it.
	 */
292
	if (!IS_ERR(dst)) {
293 294
		/* Walk through the bind address list and look for a bind
		 * address that matches the source address of the returned dst.
295
		 */
296
		sctp_v6_to_addr(&dst_saddr, &fl6->saddr, htons(bp->port));
297 298
		rcu_read_lock();
		list_for_each_entry_rcu(laddr, &bp->address_list, list) {
299
			if (!laddr->valid || (laddr->state != SCTP_ADDR_SRC))
300
				continue;
301 302 303 304 305 306

			/* Do not compare against v4 addrs */
			if ((laddr->a.sa.sa_family == AF_INET6) &&
			    (sctp_v6_cmp_addr(&dst_saddr, &laddr->a))) {
				rcu_read_unlock();
				goto out;
307 308 309
			}
		}
		rcu_read_unlock();
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
		/* None of the bound addresses match the source address of the
		 * dst. So release it.
		 */
		dst_release(dst);
		dst = NULL;
	}

	/* Walk through the bind address list and try to get the
	 * best source address for a given destination.
	 */
	rcu_read_lock();
	list_for_each_entry_rcu(laddr, &bp->address_list, list) {
		if (!laddr->valid && laddr->state != SCTP_ADDR_SRC)
			continue;
		if ((laddr->a.sa.sa_family == AF_INET6) &&
		    (scope <= sctp_scope(&laddr->a))) {
			bmatchlen = sctp_v6_addr_match_len(daddr, &laddr->a);
			if (!baddr || (matchlen < bmatchlen)) {
				baddr = &laddr->a;
				matchlen = bmatchlen;
			}
331 332
		}
	}
333 334 335
	rcu_read_unlock();
	if (baddr) {
		ipv6_addr_copy(&fl6->saddr, &baddr->v6.sin6_addr);
336 337
		fl6->fl6_sport = baddr->v6.sin6_port;
		dst = ip6_dst_lookup_flow(sk, fl6, NULL, false);
338 339
	}

340
out:
341
	if (!IS_ERR(dst)) {
L
Linus Torvalds 已提交
342 343
		struct rt6_info *rt;
		rt = (struct rt6_info *)dst;
344
		t->dst = dst;
H
Harvey Harrison 已提交
345
		SCTP_DEBUG_PRINTK("rt6_dst:%pI6 rt6_src:%pI6\n",
346
			&rt->rt6i_dst.addr, &fl6->saddr);
347 348 349
	} else {
		t->dst = NULL;
		SCTP_DEBUG_PRINTK("NO ROUTE\n");
L
Linus Torvalds 已提交
350 351 352 353 354 355 356 357 358
	}
}

/* Returns the number of consecutive initial bits that match in the 2 ipv6
 * addresses.
 */
static inline int sctp_v6_addr_match_len(union sctp_addr *s1,
					 union sctp_addr *s2)
{
359
	return ipv6_addr_diff(&s1->v6.sin6_addr, &s2->v6.sin6_addr);
L
Linus Torvalds 已提交
360 361 362 363 364
}

/* Fills in the source address(saddr) based on the destination address(daddr)
 * and asoc's bind address list.
 */
365
static void sctp_v6_get_saddr(struct sctp_sock *sk,
366 367
			      struct sctp_transport *t,
			      struct flowi *fl)
L
Linus Torvalds 已提交
368
{
369 370
	struct flowi6 *fl6 = &fl->u.ip6;
	union sctp_addr *saddr = &t->saddr;
L
Linus Torvalds 已提交
371

372
	SCTP_DEBUG_PRINTK("%s: asoc:%p dst:%p\n", __func__, t->asoc, t->dst);
L
Linus Torvalds 已提交
373

374 375 376
	if (t->dst) {
		saddr->v6.sin6_family = AF_INET6;
		ipv6_addr_copy(&saddr->v6.sin6_addr, &fl6->saddr);
L
Linus Torvalds 已提交
377 378 379 380 381 382 383 384 385 386 387
	}
}

/* Make a copy of all potential local addresses. */
static void sctp_v6_copy_addrlist(struct list_head *addrlist,
				  struct net_device *dev)
{
	struct inet6_dev *in6_dev;
	struct inet6_ifaddr *ifp;
	struct sctp_sockaddr_entry *addr;

388
	rcu_read_lock();
L
Linus Torvalds 已提交
389
	if ((in6_dev = __in6_dev_get(dev)) == NULL) {
390
		rcu_read_unlock();
L
Linus Torvalds 已提交
391 392 393
		return;
	}

394
	read_lock_bh(&in6_dev->lock);
395
	list_for_each_entry(ifp, &in6_dev->addr_list, if_list) {
L
Linus Torvalds 已提交
396 397 398
		/* Add the address to the local list.  */
		addr = t_new(struct sctp_sockaddr_entry, GFP_ATOMIC);
		if (addr) {
399 400
			addr->a.v6.sin6_family = AF_INET6;
			addr->a.v6.sin6_port = 0;
401
			ipv6_addr_copy(&addr->a.v6.sin6_addr, &ifp->addr);
402
			addr->a.v6.sin6_scope_id = dev->ifindex;
403
			addr->valid = 1;
L
Linus Torvalds 已提交
404 405 406 407 408
			INIT_LIST_HEAD(&addr->list);
			list_add_tail(&addr->list, addrlist);
		}
	}

409
	read_unlock_bh(&in6_dev->lock);
410
	rcu_read_unlock();
L
Linus Torvalds 已提交
411 412 413 414 415 416 417
}

/* Initialize a sockaddr_storage from in incoming skb. */
static void sctp_v6_from_skb(union sctp_addr *addr,struct sk_buff *skb,
			     int is_saddr)
{
	void *from;
418
	__be16 *port;
L
Linus Torvalds 已提交
419 420 421 422 423 424 425
	struct sctphdr *sh;

	port = &addr->v6.sin6_port;
	addr->v6.sin6_family = AF_INET6;
	addr->v6.sin6_flowinfo = 0; /* FIXME */
	addr->v6.sin6_scope_id = ((struct inet6_skb_parm *)skb->cb)->iif;

426
	sh = sctp_hdr(skb);
L
Linus Torvalds 已提交
427
	if (is_saddr) {
428
		*port  = sh->source;
429
		from = &ipv6_hdr(skb)->saddr;
L
Linus Torvalds 已提交
430
	} else {
431
		*port = sh->dest;
432
		from = &ipv6_hdr(skb)->daddr;
L
Linus Torvalds 已提交
433 434 435 436 437 438 439 440
	}
	ipv6_addr_copy(&addr->v6.sin6_addr, from);
}

/* Initialize an sctp_addr from a socket. */
static void sctp_v6_from_sk(union sctp_addr *addr, struct sock *sk)
{
	addr->v6.sin6_family = AF_INET6;
441
	addr->v6.sin6_port = 0;
442
	ipv6_addr_copy(&addr->v6.sin6_addr, &inet6_sk(sk)->rcv_saddr);
L
Linus Torvalds 已提交
443 444 445 446 447 448 449 450 451 452 453 454
}

/* Initialize sk->sk_rcv_saddr from sctp_addr. */
static void sctp_v6_to_sk_saddr(union sctp_addr *addr, struct sock *sk)
{
	if (addr->sa.sa_family == AF_INET && sctp_sk(sk)->v4mapped) {
		inet6_sk(sk)->rcv_saddr.s6_addr32[0] = 0;
		inet6_sk(sk)->rcv_saddr.s6_addr32[1] = 0;
		inet6_sk(sk)->rcv_saddr.s6_addr32[2] = htonl(0x0000ffff);
		inet6_sk(sk)->rcv_saddr.s6_addr32[3] =
			addr->v4.sin_addr.s_addr;
	} else {
455
		ipv6_addr_copy(&inet6_sk(sk)->rcv_saddr, &addr->v6.sin6_addr);
L
Linus Torvalds 已提交
456 457 458 459 460 461 462 463 464 465 466 467
	}
}

/* Initialize sk->sk_daddr from sctp_addr. */
static void sctp_v6_to_sk_daddr(union sctp_addr *addr, struct sock *sk)
{
	if (addr->sa.sa_family == AF_INET && sctp_sk(sk)->v4mapped) {
		inet6_sk(sk)->daddr.s6_addr32[0] = 0;
		inet6_sk(sk)->daddr.s6_addr32[1] = 0;
		inet6_sk(sk)->daddr.s6_addr32[2] = htonl(0x0000ffff);
		inet6_sk(sk)->daddr.s6_addr32[3] = addr->v4.sin_addr.s_addr;
	} else {
468
		ipv6_addr_copy(&inet6_sk(sk)->daddr, &addr->v6.sin6_addr);
L
Linus Torvalds 已提交
469 470 471 472 473 474
	}
}

/* Initialize a sctp_addr from an address parameter. */
static void sctp_v6_from_addr_param(union sctp_addr *addr,
				    union sctp_addr_param *param,
475
				    __be16 port, int iif)
L
Linus Torvalds 已提交
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492
{
	addr->v6.sin6_family = AF_INET6;
	addr->v6.sin6_port = port;
	addr->v6.sin6_flowinfo = 0; /* BUG */
	ipv6_addr_copy(&addr->v6.sin6_addr, &param->v6.addr);
	addr->v6.sin6_scope_id = iif;
}

/* Initialize an address parameter from a sctp_addr and return the length
 * of the address parameter.
 */
static int sctp_v6_to_addr_param(const union sctp_addr *addr,
				 union sctp_addr_param *param)
{
	int length = sizeof(sctp_ipv6addr_param_t);

	param->v6.param_hdr.type = SCTP_PARAM_IPV6_ADDRESS;
493
	param->v6.param_hdr.length = htons(length);
L
Linus Torvalds 已提交
494 495 496 497 498
	ipv6_addr_copy(&param->v6.addr, &addr->v6.sin6_addr);

	return length;
}

499 500
/* Initialize a sctp_addr from struct in6_addr. */
static void sctp_v6_to_addr(union sctp_addr *addr, struct in6_addr *saddr,
A
Al Viro 已提交
501
			      __be16 port)
L
Linus Torvalds 已提交
502 503 504
{
	addr->sa.sa_family = AF_INET6;
	addr->v6.sin6_port = port;
505
	ipv6_addr_copy(&addr->v6.sin6_addr, saddr);
L
Linus Torvalds 已提交
506 507 508 509 510 511 512 513 514 515 516
}

/* Compare addresses exactly.
 * v4-mapped-v6 is also in consideration.
 */
static int sctp_v6_cmp_addr(const union sctp_addr *addr1,
			    const union sctp_addr *addr2)
{
	if (addr1->sa.sa_family != addr2->sa.sa_family) {
		if (addr1->sa.sa_family == AF_INET &&
		    addr2->sa.sa_family == AF_INET6 &&
B
Brian Haley 已提交
517
		    ipv6_addr_v4mapped(&addr2->v6.sin6_addr)) {
L
Linus Torvalds 已提交
518 519 520 521 522 523 524
			if (addr2->v6.sin6_port == addr1->v4.sin_port &&
			    addr2->v6.sin6_addr.s6_addr32[3] ==
			    addr1->v4.sin_addr.s_addr)
				return 1;
		}
		if (addr2->sa.sa_family == AF_INET &&
		    addr1->sa.sa_family == AF_INET6 &&
B
Brian Haley 已提交
525
		    ipv6_addr_v4mapped(&addr1->v6.sin6_addr)) {
L
Linus Torvalds 已提交
526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
			if (addr1->v6.sin6_port == addr2->v4.sin_port &&
			    addr1->v6.sin6_addr.s6_addr32[3] ==
			    addr2->v4.sin_addr.s_addr)
				return 1;
		}
		return 0;
	}
	if (!ipv6_addr_equal(&addr1->v6.sin6_addr, &addr2->v6.sin6_addr))
		return 0;
	/* If this is a linklocal address, compare the scope_id. */
	if (ipv6_addr_type(&addr1->v6.sin6_addr) & IPV6_ADDR_LINKLOCAL) {
		if (addr1->v6.sin6_scope_id && addr2->v6.sin6_scope_id &&
		    (addr1->v6.sin6_scope_id != addr2->v6.sin6_scope_id)) {
			return 0;
		}
	}

	return 1;
}

/* Initialize addr struct to INADDR_ANY. */
A
Al Viro 已提交
547
static void sctp_v6_inaddr_any(union sctp_addr *addr, __be16 port)
L
Linus Torvalds 已提交
548 549 550 551 552 553 554 555 556
{
	memset(addr, 0x00, sizeof(union sctp_addr));
	addr->v6.sin6_family = AF_INET6;
	addr->v6.sin6_port = port;
}

/* Is this a wildcard address? */
static int sctp_v6_is_any(const union sctp_addr *addr)
{
557
	return ipv6_addr_any(&addr->v6.sin6_addr);
L
Linus Torvalds 已提交
558 559 560 561 562 563
}

/* Should this be available for binding?   */
static int sctp_v6_available(union sctp_addr *addr, struct sctp_sock *sp)
{
	int type;
564
	const struct in6_addr *in6 = (const struct in6_addr *)&addr->v6.sin6_addr;
L
Linus Torvalds 已提交
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579

	type = ipv6_addr_type(in6);
	if (IPV6_ADDR_ANY == type)
		return 1;
	if (type == IPV6_ADDR_MAPPED) {
		if (sp && !sp->v4mapped)
			return 0;
		if (sp && ipv6_only_sock(sctp_opt2sk(sp)))
			return 0;
		sctp_v6_map_v4(addr);
		return sctp_get_af_specific(AF_INET)->available(addr, sp);
	}
	if (!(type & IPV6_ADDR_UNICAST))
		return 0;

580
	return ipv6_chk_addr(&init_net, in6, NULL, 0);
L
Linus Torvalds 已提交
581 582 583 584 585 586 587 588 589
}

/* This function checks if the address is a valid address to be used for
 * SCTP.
 *
 * Output:
 * Return 0 - If the address is a non-unicast or an illegal address.
 * Return 1 - If the address is a unicast.
 */
590 591 592
static int sctp_v6_addr_valid(union sctp_addr *addr,
			      struct sctp_sock *sp,
			      const struct sk_buff *skb)
L
Linus Torvalds 已提交
593 594 595 596 597 598 599 600 601 602 603 604 605
{
	int ret = ipv6_addr_type(&addr->v6.sin6_addr);

	/* Support v4-mapped-v6 address. */
	if (ret == IPV6_ADDR_MAPPED) {
		/* Note: This routine is used in input, so v4-mapped-v6
		 * are disallowed here when there is no sctp_sock.
		 */
		if (!sp || !sp->v4mapped)
			return 0;
		if (sp && ipv6_only_sock(sctp_opt2sk(sp)))
			return 0;
		sctp_v6_map_v4(addr);
606
		return sctp_get_af_specific(AF_INET)->addr_valid(addr, sp, skb);
L
Linus Torvalds 已提交
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639
	}

	/* Is this a non-unicast address */
	if (!(ret & IPV6_ADDR_UNICAST))
		return 0;

	return 1;
}

/* What is the scope of 'addr'?  */
static sctp_scope_t sctp_v6_scope(union sctp_addr *addr)
{
	int v6scope;
	sctp_scope_t retval;

	/* The IPv6 scope is really a set of bit fields.
	 * See IFA_* in <net/if_inet6.h>.  Map to a generic SCTP scope.
	 */

	v6scope = ipv6_addr_scope(&addr->v6.sin6_addr);
	switch (v6scope) {
	case IFA_HOST:
		retval = SCTP_SCOPE_LOOPBACK;
		break;
	case IFA_LINK:
		retval = SCTP_SCOPE_LINK;
		break;
	case IFA_SITE:
		retval = SCTP_SCOPE_PRIVATE;
		break;
	default:
		retval = SCTP_SCOPE_GLOBAL;
		break;
640
	}
L
Linus Torvalds 已提交
641 642 643 644 645 646 647 648 649 650 651 652

	return retval;
}

/* Create and initialize a new sk for the socket to be returned by accept(). */
static struct sock *sctp_v6_create_accept_sk(struct sock *sk,
					     struct sctp_association *asoc)
{
	struct sock *newsk;
	struct ipv6_pinfo *newnp, *np = inet6_sk(sk);
	struct sctp6_sock *newsctp6sk;

653
	newsk = sk_alloc(sock_net(sk), PF_INET6, GFP_KERNEL, sk->sk_prot);
L
Linus Torvalds 已提交
654 655 656 657 658
	if (!newsk)
		goto out;

	sock_init_data(NULL, newsk);

659
	sctp_copy_sock(newsk, sk, asoc);
L
Linus Torvalds 已提交
660 661 662 663 664
	sock_reset_flag(sk, SOCK_ZAPPED);

	newsctp6sk = (struct sctp6_sock *)newsk;
	inet_sk(newsk)->pinet6 = &newsctp6sk->inet6;

665 666
	sctp_sk(newsk)->v4mapped = sctp_sk(sk)->v4mapped;

L
Linus Torvalds 已提交
667 668 669 670 671 672 673 674 675
	newnp = inet6_sk(newsk);

	memcpy(newnp, np, sizeof(struct ipv6_pinfo));

	/* Initialize sk's sport, dport, rcv_saddr and daddr for getsockname()
	 * and getpeername().
	 */
	sctp_v6_to_sk_daddr(&asoc->peer.primary_addr, newsk);

676
	sk_refcnt_debug_inc(newsk);
L
Linus Torvalds 已提交
677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703

	if (newsk->sk_prot->init(newsk)) {
		sk_common_release(newsk);
		newsk = NULL;
	}

out:
	return newsk;
}

/* Map v4 address to mapped v6 address */
static void sctp_v6_addr_v4map(struct sctp_sock *sp, union sctp_addr *addr)
{
	if (sp->v4mapped && AF_INET == addr->sa.sa_family)
		sctp_v4_map_v6(addr);
}

/* Where did this skb come from?  */
static int sctp_v6_skb_iif(const struct sk_buff *skb)
{
	struct inet6_skb_parm *opt = (struct inet6_skb_parm *) skb->cb;
	return opt->iif;
}

/* Was this packet marked by Explicit Congestion Notification? */
static int sctp_v6_is_ce(const struct sk_buff *skb)
{
704
	return *((__u32 *)(ipv6_hdr(skb))) & htonl(1 << 20);
L
Linus Torvalds 已提交
705 706 707 708 709
}

/* Dump the v6 addr to the seq file. */
static void sctp_v6_seq_dump_addr(struct seq_file *seq, union sctp_addr *addr)
{
H
Harvey Harrison 已提交
710
	seq_printf(seq, "%pI6 ", &addr->v6.sin6_addr);
L
Linus Torvalds 已提交
711 712
}

V
Vlad Yasevich 已提交
713 714 715 716 717
static void sctp_v6_ecn_capable(struct sock *sk)
{
	inet6_sk(sk)->tclass |= INET_ECN_ECT_0;
}

L
Linus Torvalds 已提交
718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 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 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775
/* Initialize a PF_INET6 socket msg_name. */
static void sctp_inet6_msgname(char *msgname, int *addr_len)
{
	struct sockaddr_in6 *sin6;

	sin6 = (struct sockaddr_in6 *)msgname;
	sin6->sin6_family = AF_INET6;
	sin6->sin6_flowinfo = 0;
	sin6->sin6_scope_id = 0; /*FIXME */
	*addr_len = sizeof(struct sockaddr_in6);
}

/* Initialize a PF_INET msgname from a ulpevent. */
static void sctp_inet6_event_msgname(struct sctp_ulpevent *event,
				     char *msgname, int *addrlen)
{
	struct sockaddr_in6 *sin6, *sin6from;

	if (msgname) {
		union sctp_addr *addr;
		struct sctp_association *asoc;

		asoc = event->asoc;
		sctp_inet6_msgname(msgname, addrlen);
		sin6 = (struct sockaddr_in6 *)msgname;
		sin6->sin6_port = htons(asoc->peer.port);
		addr = &asoc->peer.primary_addr;

		/* Note: If we go to a common v6 format, this code
		 * will change.
		 */

		/* Map ipv4 address into v4-mapped-on-v6 address.  */
		if (sctp_sk(asoc->base.sk)->v4mapped &&
		    AF_INET == addr->sa.sa_family) {
			sctp_v4_map_v6((union sctp_addr *)sin6);
			sin6->sin6_addr.s6_addr32[3] =
				addr->v4.sin_addr.s_addr;
			return;
		}

		sin6from = &asoc->peer.primary_addr.v6;
		ipv6_addr_copy(&sin6->sin6_addr, &sin6from->sin6_addr);
		if (ipv6_addr_type(&sin6->sin6_addr) & IPV6_ADDR_LINKLOCAL)
			sin6->sin6_scope_id = sin6from->sin6_scope_id;
	}
}

/* Initialize a msg_name from an inbound skb. */
static void sctp_inet6_skb_msgname(struct sk_buff *skb, char *msgname,
				   int *addr_len)
{
	struct sctphdr *sh;
	struct sockaddr_in6 *sin6;

	if (msgname) {
		sctp_inet6_msgname(msgname, addr_len);
		sin6 = (struct sockaddr_in6 *)msgname;
776
		sh = sctp_hdr(skb);
L
Linus Torvalds 已提交
777 778 779 780
		sin6->sin6_port = sh->source;

		/* Map ipv4 address into v4-mapped-on-v6 address. */
		if (sctp_sk(skb->sk)->v4mapped &&
781
		    ip_hdr(skb)->version == 4) {
L
Linus Torvalds 已提交
782
			sctp_v4_map_v6((union sctp_addr *)sin6);
783
			sin6->sin6_addr.s6_addr32[3] = ip_hdr(skb)->saddr;
L
Linus Torvalds 已提交
784 785 786 787
			return;
		}

		/* Otherwise, just copy the v6 address. */
788
		ipv6_addr_copy(&sin6->sin6_addr, &ipv6_hdr(skb)->saddr);
L
Linus Torvalds 已提交
789 790 791 792 793 794 795 796 797 798 799 800 801 802 803
		if (ipv6_addr_type(&sin6->sin6_addr) & IPV6_ADDR_LINKLOCAL) {
			struct sctp_ulpevent *ev = sctp_skb2event(skb);
			sin6->sin6_scope_id = ev->iif;
		}
	}
}

/* Do we support this AF? */
static int sctp_inet6_af_supported(sa_family_t family, struct sctp_sock *sp)
{
	switch (family) {
	case AF_INET6:
		return 1;
	/* v4-mapped-v6 addresses */
	case AF_INET:
804
		if (!__ipv6_only_sock(sctp_opt2sk(sp)))
L
Linus Torvalds 已提交
805 806 807 808 809 810 811 812 813 814 815 816 817 818 819
			return 1;
	default:
		return 0;
	}
}

/* Address matching with wildcards allowed.  This extra level
 * of indirection lets us choose whether a PF_INET6 should
 * disallow any v4 addresses if we so choose.
 */
static int sctp_inet6_cmp_addr(const union sctp_addr *addr1,
			       const union sctp_addr *addr2,
			       struct sctp_sock *opt)
{
	struct sctp_af *af1, *af2;
820
	struct sock *sk = sctp_opt2sk(opt);
L
Linus Torvalds 已提交
821 822 823 824 825 826

	af1 = sctp_get_af_specific(addr1->sa.sa_family);
	af2 = sctp_get_af_specific(addr2->sa.sa_family);

	if (!af1 || !af2)
		return 0;
827 828

	/* If the socket is IPv6 only, v4 addrs will not match */
829
	if (__ipv6_only_sock(sk) && af1 != af2)
830 831
		return 0;

L
Linus Torvalds 已提交
832
	/* Today, wildcard AF_INET/AF_INET6. */
833
	if (sctp_is_any(sk, addr1) || sctp_is_any(sk, addr2))
L
Linus Torvalds 已提交
834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853
		return 1;

	if (addr1->sa.sa_family != addr2->sa.sa_family)
		return 0;

	return af1->cmp_addr(addr1, addr2);
}

/* Verify that the provided sockaddr looks bindable.   Common verification,
 * has already been taken care of.
 */
static int sctp_inet6_bind_verify(struct sctp_sock *opt, union sctp_addr *addr)
{
	struct sctp_af *af;

	/* ASSERT: address family has already been verified. */
	if (addr->sa.sa_family != AF_INET6)
		af = sctp_get_af_specific(addr->sa.sa_family);
	else {
		int type = ipv6_addr_type(&addr->v6.sin6_addr);
854 855
		struct net_device *dev;

L
Linus Torvalds 已提交
856
		if (type & IPV6_ADDR_LINKLOCAL) {
857 858
			if (!addr->v6.sin6_scope_id)
				return 0;
859 860 861 862 863
			rcu_read_lock();
			dev = dev_get_by_index_rcu(&init_net,
						   addr->v6.sin6_scope_id);
			if (!dev ||
			    !ipv6_chk_addr(&init_net, &addr->v6.sin6_addr,
864
					   dev, 0)) {
865
				rcu_read_unlock();
866 867
				return 0;
			}
868
			rcu_read_unlock();
869 870 871
		} else if (type == IPV6_ADDR_MAPPED) {
			if (!opt->v4mapped)
				return 0;
L
Linus Torvalds 已提交
872
		}
873

L
Linus Torvalds 已提交
874 875 876 877 878
		af = opt->pf->af;
	}
	return af->available(addr, opt);
}

879
/* Verify that the provided sockaddr looks sendable.   Common verification,
L
Linus Torvalds 已提交
880 881 882 883 884 885 886 887 888 889 890
 * has already been taken care of.
 */
static int sctp_inet6_send_verify(struct sctp_sock *opt, union sctp_addr *addr)
{
	struct sctp_af *af = NULL;

	/* ASSERT: address family has already been verified. */
	if (addr->sa.sa_family != AF_INET6)
		af = sctp_get_af_specific(addr->sa.sa_family);
	else {
		int type = ipv6_addr_type(&addr->v6.sin6_addr);
891 892
		struct net_device *dev;

L
Linus Torvalds 已提交
893
		if (type & IPV6_ADDR_LINKLOCAL) {
894 895
			if (!addr->v6.sin6_scope_id)
				return 0;
896 897 898 899
			rcu_read_lock();
			dev = dev_get_by_index_rcu(&init_net,
						   addr->v6.sin6_scope_id);
			rcu_read_unlock();
900
			if (!dev)
L
Linus Torvalds 已提交
901 902 903 904 905 906 907 908 909 910 911 912 913 914 915
				return 0;
		}
		af = opt->pf->af;
	}

	return af != NULL;
}

/* Fill in Supported Address Type information for INIT and INIT-ACK
 * chunks.   Note: In the future, we may want to look at sock options
 * to determine whether a PF_INET6 socket really wants to have IPV4
 * addresses.
 * Returns number of addresses supported.
 */
static int sctp_inet6_supported_addrs(const struct sctp_sock *opt,
A
Al Viro 已提交
916
				      __be16 *types)
L
Linus Torvalds 已提交
917
{
918 919 920 921 922 923
	types[0] = SCTP_PARAM_IPV6_ADDRESS;
	if (!opt || !ipv6_only_sock(sctp_opt2sk(opt))) {
		types[1] = SCTP_PARAM_IPV4_ADDRESS;
		return 2;
	}
	return 1;
L
Linus Torvalds 已提交
924 925
}

926
static const struct proto_ops inet6_seqpacket_ops = {
927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943
	.family		   = PF_INET6,
	.owner		   = THIS_MODULE,
	.release	   = inet6_release,
	.bind		   = inet6_bind,
	.connect	   = inet_dgram_connect,
	.socketpair	   = sock_no_socketpair,
	.accept		   = inet_accept,
	.getname	   = inet6_getname,
	.poll		   = sctp_poll,
	.ioctl		   = inet6_ioctl,
	.listen		   = sctp_inet_listen,
	.shutdown	   = inet_shutdown,
	.setsockopt	   = sock_common_setsockopt,
	.getsockopt	   = sock_common_getsockopt,
	.sendmsg	   = inet_sendmsg,
	.recvmsg	   = sock_common_recvmsg,
	.mmap		   = sock_no_mmap,
944
#ifdef CONFIG_COMPAT
945 946
	.compat_setsockopt = compat_sock_common_setsockopt,
	.compat_getsockopt = compat_sock_common_getsockopt,
947
#endif
L
Linus Torvalds 已提交
948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966
};

static struct inet_protosw sctpv6_seqpacket_protosw = {
	.type          = SOCK_SEQPACKET,
	.protocol      = IPPROTO_SCTP,
	.prot 	       = &sctpv6_prot,
	.ops           = &inet6_seqpacket_ops,
	.no_check      = 0,
	.flags         = SCTP_PROTOSW_FLAG
};
static struct inet_protosw sctpv6_stream_protosw = {
	.type          = SOCK_STREAM,
	.protocol      = IPPROTO_SCTP,
	.prot 	       = &sctpv6_prot,
	.ops           = &inet6_seqpacket_ops,
	.no_check      = 0,
	.flags         = SCTP_PROTOSW_FLAG,
};

967
static int sctp6_rcv(struct sk_buff *skb)
L
Linus Torvalds 已提交
968
{
969
	return sctp_rcv(skb) ? -1 : 0;
L
Linus Torvalds 已提交
970 971
}

972
static const struct inet6_protocol sctpv6_protocol = {
L
Linus Torvalds 已提交
973 974 975 976 977
	.handler      = sctp6_rcv,
	.err_handler  = sctp_v6_err,
	.flags        = INET6_PROTO_NOPOLICY | INET6_PROTO_FINAL,
};

978
static struct sctp_af sctp_af_inet6 = {
979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
	.sa_family	   = AF_INET6,
	.sctp_xmit	   = sctp_v6_xmit,
	.setsockopt	   = ipv6_setsockopt,
	.getsockopt	   = ipv6_getsockopt,
	.get_dst	   = sctp_v6_get_dst,
	.get_saddr	   = sctp_v6_get_saddr,
	.copy_addrlist	   = sctp_v6_copy_addrlist,
	.from_skb	   = sctp_v6_from_skb,
	.from_sk	   = sctp_v6_from_sk,
	.to_sk_saddr	   = sctp_v6_to_sk_saddr,
	.to_sk_daddr	   = sctp_v6_to_sk_daddr,
	.from_addr_param   = sctp_v6_from_addr_param,
	.to_addr_param	   = sctp_v6_to_addr_param,
	.cmp_addr	   = sctp_v6_cmp_addr,
	.scope		   = sctp_v6_scope,
	.addr_valid	   = sctp_v6_addr_valid,
	.inaddr_any	   = sctp_v6_inaddr_any,
	.is_any		   = sctp_v6_is_any,
	.available	   = sctp_v6_available,
	.skb_iif	   = sctp_v6_skb_iif,
	.is_ce		   = sctp_v6_is_ce,
	.seq_dump_addr	   = sctp_v6_seq_dump_addr,
V
Vlad Yasevich 已提交
1001
	.ecn_capable	   = sctp_v6_ecn_capable,
1002 1003
	.net_header_len	   = sizeof(struct ipv6hdr),
	.sockaddr_len	   = sizeof(struct sockaddr_in6),
1004
#ifdef CONFIG_COMPAT
1005 1006
	.compat_setsockopt = compat_ipv6_setsockopt,
	.compat_getsockopt = compat_ipv6_getsockopt,
1007
#endif
L
Linus Torvalds 已提交
1008 1009
};

1010
static struct sctp_pf sctp_pf_inet6 = {
L
Linus Torvalds 已提交
1011 1012 1013 1014 1015 1016 1017 1018 1019
	.event_msgname = sctp_inet6_event_msgname,
	.skb_msgname   = sctp_inet6_skb_msgname,
	.af_supported  = sctp_inet6_af_supported,
	.cmp_addr      = sctp_inet6_cmp_addr,
	.bind_verify   = sctp_inet6_bind_verify,
	.send_verify   = sctp_inet6_send_verify,
	.supported_addrs = sctp_inet6_supported_addrs,
	.create_accept_sk = sctp_v6_create_accept_sk,
	.addr_v4map    = sctp_v6_addr_v4map,
1020
	.af            = &sctp_af_inet6,
L
Linus Torvalds 已提交
1021 1022
};

1023
/* Initialize IPv6 support and register with socket layer.  */
1024
void sctp_v6_pf_init(void)
L
Linus Torvalds 已提交
1025
{
1026
	/* Register the SCTP specific PF_INET6 functions. */
1027
	sctp_register_pf(&sctp_pf_inet6, PF_INET6);
1028 1029

	/* Register the SCTP specific AF_INET6 functions. */
1030
	sctp_register_af(&sctp_af_inet6);
1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
}

void sctp_v6_pf_exit(void)
{
	list_del(&sctp_af_inet6.list);
}

/* Initialize IPv6 support and register with socket layer.  */
int sctp_v6_protosw_init(void)
{
	int rc;
1042 1043

	rc = proto_register(&sctpv6_prot, 1);
L
Linus Torvalds 已提交
1044
	if (rc)
1045
		return rc;
L
Linus Torvalds 已提交
1046 1047 1048 1049 1050

	/* Add SCTPv6(UDP and TCP style) to inetsw6 linked list. */
	inet6_register_protosw(&sctpv6_seqpacket_protosw);
	inet6_register_protosw(&sctpv6_stream_protosw);

1051 1052
	return 0;
}
L
Linus Torvalds 已提交
1053

1054 1055 1056 1057 1058 1059 1060 1061
void sctp_v6_protosw_exit(void)
{
	inet6_unregister_protosw(&sctpv6_seqpacket_protosw);
	inet6_unregister_protosw(&sctpv6_stream_protosw);
	proto_unregister(&sctpv6_prot);
}


1062 1063 1064
/* Register with inet6 layer. */
int sctp_v6_add_protocol(void)
{
L
Linus Torvalds 已提交
1065 1066
	/* Register notifier for inet6 address additions/deletions. */
	register_inet6addr_notifier(&sctp_inet6addr_notifier);
1067 1068 1069 1070 1071

	if (inet6_add_protocol(&sctpv6_protocol, IPPROTO_SCTP) < 0)
		return -EAGAIN;

	return 0;
L
Linus Torvalds 已提交
1072 1073
}

1074 1075 1076 1077 1078
/* Unregister with inet6 layer. */
void sctp_v6_del_protocol(void)
{
	inet6_del_protocol(&sctpv6_protocol, IPPROTO_SCTP);
	unregister_inet6addr_notifier(&sctp_inet6addr_notifier);
L
Linus Torvalds 已提交
1079
}