ipv6.c 20.9 KB
Newer Older
Jon Grimm's avatar
Jon Grimm committed
1 2 3
/* SCTP kernel reference Implementation
 * Copyright (c) 2001 Nokia, Inc.
 * Copyright (c) 2001 La Monte H.P. Yarroll
4
 * Copyright (c) 2002-2003 International Business Machines, Corp.
Jon Grimm's avatar
Jon Grimm committed
5
 *
Jon Grimm's avatar
Jon Grimm committed
6
 * This file is part of the SCTP kernel reference Implementation
Jon Grimm's avatar
Jon Grimm committed
7
 *
Jon Grimm's avatar
Jon Grimm committed
8
 * SCTP over IPv6.
Jon Grimm's avatar
Jon Grimm committed
9 10 11
 *
 * The SCTP reference implementation is free software;
 * you can redistribute it and/or modify it under the terms of
Jon Grimm's avatar
Jon Grimm committed
12 13 14
 * the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
Jon Grimm's avatar
Jon Grimm committed
15 16
 *
 * The SCTP reference implementation is distributed in the hope that it
Jon Grimm's avatar
Jon Grimm committed
17 18 19 20
 * 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.
Jon Grimm's avatar
Jon Grimm committed
21
 *
Jon Grimm's avatar
Jon Grimm committed
22 23 24
 * 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,
Jon Grimm's avatar
Jon Grimm committed
25 26
 * Boston, MA 02111-1307, USA.
 *
Jon Grimm's avatar
Jon Grimm committed
27 28 29
 * Please send any bug reports or fixes you make to the
 * email address(es):
 *    lksctp developers <lksctp-developers@lists.sourceforge.net>
Jon Grimm's avatar
Jon Grimm committed
30
 *
Jon Grimm's avatar
Jon Grimm committed
31 32 33
 * Or submit a bug report through the following website:
 *    http://www.sf.net/projects/lksctp
 *
Jon Grimm's avatar
Jon Grimm committed
34
 * Written or modified by:
Jon Grimm's avatar
Jon Grimm committed
35 36 37 38 39 40 41 42
 *    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>
 *
 * Based on:
 *      linux/net/ipv6/tcp_ipv6.c
Jon Grimm's avatar
Jon Grimm committed
43
 *
Jon Grimm's avatar
Jon Grimm committed
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
 * Any bugs reported given to us we will try to fix... any fixes shared will
 * be incorporated into the next SCTP release.
 */

#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/sched.h>
#include <linux/in.h>
#include <linux/in6.h>
#include <linux/netdevice.h>
#include <linux/init.h>
#include <linux/ipsec.h>

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

#include <net/protocol.h>
#include <net/tcp.h>
#include <net/ndisc.h>
#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>

78 79
extern struct notifier_block sctp_inetaddr_notifier;

80 81 82 83 84 85 86 87 88 89 90
/* FIXME: This macro needs to be moved to a common header file. */
#define NIP6(addr) \
        ntohs((addr)->s6_addr16[0]), \
        ntohs((addr)->s6_addr16[1]), \
        ntohs((addr)->s6_addr16[2]), \
        ntohs((addr)->s6_addr16[3]), \
        ntohs((addr)->s6_addr16[4]), \
        ntohs((addr)->s6_addr16[5]), \
        ntohs((addr)->s6_addr16[6]), \
        ntohs((addr)->s6_addr16[7])

91 92 93
/* ICMP error handler. */
void sctp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
		 int type, int code, int offset, __u32 info)
Jon Grimm's avatar
Jon Grimm committed
94
{
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
	struct ipv6hdr *iph = (struct ipv6hdr *)skb->data;
	struct sctphdr *sh = (struct sctphdr *)(skb->data + offset);
	struct sock *sk;
	sctp_endpoint_t *ep;
	sctp_association_t *asoc;
	struct sctp_transport *transport;
	struct ipv6_pinfo *np;
	char *saveip, *savesctp;
	int err;

	/* Fix up skb to look at the embedded net header. */
	saveip = skb->nh.raw;
	savesctp  = skb->h.raw;
	skb->nh.ipv6h = iph;
	skb->h.raw = (char *)sh;
	sk = sctp_err_lookup(AF_INET6, skb, sh, &ep, &asoc, &transport);
	/* Put back, the original pointers. */
	skb->nh.raw = saveip;
	skb->h.raw = savesctp;
	if (!sk) {
		ICMP6_INC_STATS_BH(Icmp6InErrors);
		return;
	}

	/* 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;
	default:
		break;
	}

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

out_unlock:
	sctp_err_finish(sk, ep, asoc);
142
}
Jon Grimm's avatar
Jon Grimm committed
143 144

/* Based on tcp_v6_xmit() in tcp_ipv6.c. */
145 146
static int sctp_v6_xmit(struct sk_buff *skb, struct sctp_transport *transport, 
			int ipfragok)
Jon Grimm's avatar
Jon Grimm committed
147 148 149 150
{
	struct sock *sk = skb->sk;
	struct ipv6_pinfo *np = inet6_sk(sk);
	struct flowi fl;
151 152
	struct dst_entry *dst = skb->dst;
	struct rt6_info *rt6 = (struct rt6_info *)dst;
Jon Grimm's avatar
Jon Grimm committed
153 154

	fl.proto = sk->protocol;
155

156 157
	/* Fill in the dest address from the route entry passed with the skb
	 * and the source address from the transport.
158
	 */
159
	fl.fl6_dst = &rt6->rt6i_dst.addr;
160
	fl.fl6_src = &transport->saddr.v6.sin6_addr;
Jon Grimm's avatar
Jon Grimm committed
161 162 163 164 165 166 167 168 169 170 171 172

	fl.fl6_flowlabel = np->flow_label;
	IP6_ECN_flow_xmit(sk, fl.fl6_flowlabel);
	fl.oif = sk->bound_dev_if;
	fl.uli_u.ports.sport = inet_sk(sk)->sport;
	fl.uli_u.ports.dport = inet_sk(sk)->dport;

	if (np->opt && np->opt->srcrt) {
		struct rt0_hdr *rt0 = (struct rt0_hdr *) np->opt->srcrt;
		fl.nl_u.ip6_u.daddr = rt0->addr;
	}

173 174 175 176 177 178
	SCTP_DEBUG_PRINTK("%s: skb:%p, len:%d, "
			  "src:%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x "
			  "dst:%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x\n",
			  __FUNCTION__, skb, skb->len, NIP6(fl.fl6_src),
			  NIP6(fl.fl6_dst));

179 180
	SCTP_INC_STATS(SctpOutSCTPPacks);

Jon Grimm's avatar
Jon Grimm committed
181
	return ip6_xmit(sk, skb, &fl, np->opt);
182
}
183 184 185 186

/* Returns the dst cache entry for the given source and destination ip
 * addresses.
 */
187 188
struct dst_entry *sctp_v6_get_dst(sctp_association_t *asoc,
				  union sctp_addr *daddr,
Jon Grimm's avatar
Jon Grimm committed
189
				  union sctp_addr *saddr)
Jon Grimm's avatar
Jon Grimm committed
190
{
191
	struct dst_entry *dst;
192
	struct flowi fl = {
193
		.nl_u = { .ip6_u = { .daddr = &daddr->v6.sin6_addr, } } };
Jon Grimm's avatar
Jon Grimm committed
194

195
	SCTP_DEBUG_PRINTK("%s: DST=%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x ",
196
			  __FUNCTION__, NIP6(fl.fl6_dst));
197 198 199 200 201 202 203

	if (saddr) {
		fl.fl6_src = &saddr->v6.sin6_addr;
		SCTP_DEBUG_PRINTK(
			"SRC=%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x - ",
			NIP6(fl.fl6_src));
	}
204

Jon Grimm's avatar
Jon Grimm committed
205 206
	dst = ip6_route_output(NULL, &fl);
	if (dst) {
207 208 209 210 211 212
		struct rt6_info *rt;
		rt = (struct rt6_info *)dst;
		SCTP_DEBUG_PRINTK(
			"rt6_dst:%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x "
			"rt6_src:%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x\n",
			NIP6(&rt->rt6i_dst.addr), NIP6(&rt->rt6i_src.addr));
Jon Grimm's avatar
Jon Grimm committed
213
	} else {
214
		SCTP_DEBUG_PRINTK("NO ROUTE\n");
Jon Grimm's avatar
Jon Grimm committed
215 216
	}

217 218 219
	return dst;
}

220 221
/* Returns the number of consecutive initial bits that match in the 2 ipv6
 * addresses.
222
 */
223 224 225 226 227 228 229 230 231 232 233
static inline int sctp_v6_addr_match_len(union sctp_addr *s1,
					 union sctp_addr *s2)
{
	struct in6_addr *a1 = &s1->v6.sin6_addr;
	struct in6_addr *a2 = &s2->v6.sin6_addr;
	int i, j;

	for (i = 0; i < 4 ; i++) {
		__u32 a1xora2;

		a1xora2 = a1->s6_addr32[i] ^ a2->s6_addr32[i];
234

235 236 237 238 239 240 241 242 243
		if ((j = fls(ntohl(a1xora2))))
			return (i * 32 + 32 - j);
	}

	return (i*32);
}

/* Fills in the source address(saddr) based on the destination address(daddr)
 * and asoc's bind address list.
244
 */
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
void sctp_v6_get_saddr(sctp_association_t *asoc, struct dst_entry *dst,
		       union sctp_addr *daddr, union sctp_addr *saddr)
{
	sctp_bind_addr_t *bp;
	rwlock_t *addr_lock;
	struct sockaddr_storage_list *laddr;
	struct list_head *pos;
	sctp_scope_t scope;
	union sctp_addr *baddr = NULL;
	__u8 matchlen = 0;
	__u8 bmatchlen;

	SCTP_DEBUG_PRINTK("%s: asoc:%p dst:%p "
			  "daddr:%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x ",
			  __FUNCTION__, asoc, dst, NIP6(&daddr->v6.sin6_addr));

	if (!asoc) {
		ipv6_get_saddr(dst, &daddr->v6.sin6_addr, &saddr->v6.sin6_addr);
		SCTP_DEBUG_PRINTK("saddr from ipv6_get_saddr: "
				  "%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x\n",
				  NIP6(&saddr->v6.sin6_addr));
		return;
	}

	scope = sctp_scope(daddr);

	bp = &asoc->base.bind_addr;
	addr_lock = &asoc->base.addr_lock;

	/* Go through the bind address list and find the best source address
	 * that matches the scope of the destination address.
	 */
	sctp_read_lock(addr_lock);
	list_for_each(pos, &bp->address_list) {
		laddr = list_entry(pos, struct sockaddr_storage_list, list);
		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;
			}
		}
	}

	if (baddr) {
		memcpy(saddr, baddr, sizeof(union sctp_addr));
		SCTP_DEBUG_PRINTK("saddr: "
				  "%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x\n",
				  NIP6(&saddr->v6.sin6_addr));
	} else {
		printk(KERN_ERR "%s: asoc:%p Could not find a valid source "
		       "address for the "
		       "dest:%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x\n",
		       __FUNCTION__, asoc, NIP6(&daddr->v6.sin6_addr));
	}

	sctp_read_unlock(addr_lock);
}

Jon Grimm's avatar
Jon Grimm committed
305 306 307 308 309 310 311 312 313 314 315 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
/* 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 sockaddr_storage_list *addr;

	read_lock(&addrconf_lock);
	if ((in6_dev = __in6_dev_get(dev)) == NULL) {
		read_unlock(&addrconf_lock);
		return;
	}

	read_lock(&in6_dev->lock);
	for (ifp = in6_dev->addr_list; ifp; ifp = ifp->if_next) {
		/* Add the address to the local list.  */
		addr = t_new(struct sockaddr_storage_list, GFP_ATOMIC);
		if (addr) {
			addr->a.v6.sin6_family = AF_INET6;
			addr->a.v6.sin6_port = 0;
			addr->a.v6.sin6_addr = ifp->addr;
			INIT_LIST_HEAD(&addr->list);
			list_add_tail(&addr->list, addrlist);
		}
	}

	read_unlock(&in6_dev->lock);
	read_unlock(&addrconf_lock);
}

/* 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;
	__u16 *port;
	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 = 0; /* FIXME */
348

Jon Grimm's avatar
Jon Grimm committed
349 350 351 352 353 354 355 356 357 358 359
	sh = (struct sctphdr *) skb->h.raw;
	if (is_saddr) {
		*port  = ntohs(sh->source);
		from = &skb->nh.ipv6h->saddr;
	} else {
		*port = ntohs(sh->dest);
		from = &skb->nh.ipv6h->daddr;
	}
	ipv6_addr_copy(&addr->v6.sin6_addr, from);
}

360 361 362 363 364 365 366 367 368 369 370 371 372 373
/* 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;
	addr->v6.sin6_port = inet_sk(sk)->num;
	addr->v6.sin6_addr = inet6_sk(sk)->rcv_saddr;
}

/* Initialize sk->rcv_saddr from sctp_addr. */
static void sctp_v6_to_sk(union sctp_addr *addr, struct sock *sk)
{
	inet6_sk(sk)->rcv_saddr = addr->v6.sin6_addr;
}

374
/* Initialize a sctp_addr from a dst_entry. */
375 376
static void sctp_v6_dst_saddr(union sctp_addr *addr, struct dst_entry *dst,
			      unsigned short port)
377 378
{
	struct rt6_info *rt = (struct rt6_info *)dst;
379
	addr->sa.sa_family = AF_INET6;
380
	addr->v6.sin6_port = port;
381 382 383 384
	ipv6_addr_copy(&addr->v6.sin6_addr, &rt->rt6i_src.addr);
}

/* Compare addresses exactly.  Well.. almost exactly; ignore scope_id
385
 * for now.  FIXME: v4-mapped-v6.
386
 */
387
static int sctp_v6_cmp_addr(const union sctp_addr *addr1,
388 389 390 391 392
			    const union sctp_addr *addr2)
{
	int match;
	if (addr1->sa.sa_family != addr2->sa.sa_family)
		return 0;
393
	match = !ipv6_addr_cmp((struct in6_addr *)&addr1->v6.sin6_addr,
394
			       (struct in6_addr *)&addr2->v6.sin6_addr);
395

396
	return match;
397 398
}

Jon Grimm's avatar
Jon Grimm committed
399
/* Initialize addr struct to INADDR_ANY. */
400
static void sctp_v6_inaddr_any(union sctp_addr *addr, unsigned short port)
Jon Grimm's avatar
Jon Grimm committed
401 402 403 404 405 406
{
	memset(addr, 0x00, sizeof(union sctp_addr));
	addr->v6.sin6_family = AF_INET6;
	addr->v6.sin6_port = port;
}

407 408 409 410 411 412 413 414
/* Is this a wildcard address? */
static int sctp_v6_is_any(const union sctp_addr *addr)
{
	int type;
	type = ipv6_addr_type((struct in6_addr *)&addr->v6.sin6_addr);
	return IPV6_ADDR_ANY == type;
}

415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
/* Should this be available for binding?   */
static int sctp_v6_available(const union sctp_addr *addr)
{
	int type;
	struct in6_addr *in6 = (struct in6_addr *)&addr->v6.sin6_addr;

	type = ipv6_addr_type(in6);
	if (IPV6_ADDR_ANY == type)
		return 1;
	if (!(type & IPV6_ADDR_UNICAST))
		return 0;

	return ipv6_chk_addr(in6, NULL);
}


431 432 433 434 435 436 437 438 439
/* 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.
 */
static int sctp_v6_addr_valid(union sctp_addr *addr)
{
440
	int ret = ipv6_addr_type(&addr->v6.sin6_addr);
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 466 467 468 469 470 471 472 473 474 475 476 477

	/* FIXME:  v4-mapped-v6 address support. */

	/* 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;
	};

	return retval;
478
}
Jon Grimm's avatar
Jon Grimm committed
479

480
/* Create and initialize a new sk for the socket to be returned by accept(). */
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516
struct sock *sctp_v6_create_accept_sk(struct sock *sk,
				      struct sctp_association *asoc)
{
	struct inet_opt *inet = inet_sk(sk);
	struct sock *newsk;
	struct inet_opt *newinet;
	struct ipv6_pinfo *newnp, *np = inet6_sk(sk);
	struct sctp6_sock *newsctp6sk;

	newsk = sk_alloc(PF_INET6, GFP_KERNEL, sizeof(struct sctp6_sock),
			 sk->slab);
	if (!newsk)
		goto out;

	sock_init_data(NULL, newsk);

	newsk->type = SOCK_STREAM;

	newsk->prot = sk->prot;
	newsk->no_check = sk->no_check;
	newsk->reuse = sk->reuse;

	newsk->destruct = inet_sock_destruct;
	newsk->zapped = 0;
	newsk->family = PF_INET6;
	newsk->protocol = IPPROTO_SCTP;
	newsk->backlog_rcv = sk->prot->backlog_rcv;

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

	newinet = inet_sk(newsk);
	newnp = inet6_sk(newsk);

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

517
	ipv6_addr_copy(&newnp->daddr, &asoc->peer.primary_addr.v6.sin6_addr);
518 519 520

	newinet->sport = inet->sport;
	newinet->dport = asoc->peer.port;
521

522 523 524 525 526 527 528 529 530 531 532 533 534 535
#ifdef INET_REFCNT_DEBUG
	atomic_inc(&inet6_sock_nr);
	atomic_inc(&inet_sock_nr);
#endif

	if (0 != newsk->prot->init(newsk)) {
		inet_sock_release(newsk);
		newsk = NULL;
	}

out:
	return newsk;
}

Jon Grimm's avatar
Jon Grimm committed
536 537 538 539 540 541 542 543 544 545 546 547 548
/* 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;
	*addr_len = sizeof(struct sockaddr_in6);
}

/* Initialize a PF_INET msgname from a ulpevent. */
549
static void sctp_inet6_event_msgname(struct sctp_ulpevent *event, char *msgname,
Jon Grimm's avatar
Jon Grimm committed
550
				     int *addrlen)
Jon Grimm's avatar
Jon Grimm committed
551 552 553 554
{
	struct sockaddr_in6 *sin6, *sin6from;

	if (msgname) {
Jon Grimm's avatar
Jon Grimm committed
555
		union sctp_addr *addr;
Jon Grimm's avatar
Jon Grimm committed
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610

		sctp_inet6_msgname(msgname, addrlen);
		sin6 = (struct sockaddr_in6 *)msgname;
		sin6->sin6_port = htons(event->asoc->peer.port);
		addr = &event->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 (AF_INET == addr->sa.sa_family) {
			/* FIXME: Easy, but there was no way to test this
			 * yet.
			 */
			return;
		}

		sin6from = &event->asoc->peer.primary_addr.v6;
		ipv6_addr_copy(&sin6->sin6_addr, &sin6from->sin6_addr);
	}
}

/* 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;
		sh = (struct sctphdr *)skb->h.raw;
		sin6->sin6_port = sh->source;

		/* FIXME: Map ipv4 address into v4-mapped-on-v6 address. */
		if (__constant_htons(ETH_P_IP) == skb->protocol) {
			/* FIXME: Easy, but there was no way to test this
			 * yet.
			 */
			return;
		}

		/* Otherwise, just copy the v6 address. */

		ipv6_addr_copy(&sin6->sin6_addr, &skb->nh.ipv6h->saddr);
		if (ipv6_addr_type(&sin6->sin6_addr) & IPV6_ADDR_LINKLOCAL) {
			struct inet6_skb_parm *opt =
				(struct inet6_skb_parm *) skb->cb;
			sin6->sin6_scope_id = opt->iif;
		}
	}
}

611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
/* Do we support this AF? */
static int sctp_inet6_af_supported(sa_family_t family)
{
	/* FIXME:  v4-mapped-v6 addresses.  The I-D is still waffling
	 * on what to do with sockaddr formats for PF_INET6 sockets.
	 * For now assume we'll support both.
	 */
	switch (family) {
	case AF_INET6:
	case AF_INET:
		return 1;
	default:
		return 0;
	}
}

627 628
/* Address matching with wildcards allowed.  This extra level
 * of indirection lets us choose whether a PF_INET6 should
629
 * disallow any v4 addresses if we so choose.
630
 */
631
static int sctp_inet6_cmp_addr(const union sctp_addr *addr1,
632 633 634
			       const union sctp_addr *addr2,
			       struct sctp_opt *opt)
{
635 636
	struct sctp_af *af1, *af2;

637 638 639 640 641 642 643 644 645 646 647
	af1 = sctp_get_af_specific(addr1->sa.sa_family);
	af2 = sctp_get_af_specific(addr2->sa.sa_family);

	if (!af1 || !af2)
		return 0;
	/* Today, wildcard AF_INET/AF_INET6. */
	if (sctp_is_any(addr1) || sctp_is_any(addr2))
		return 1;

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

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

652 653 654 655 656 657
/* Verify that the provided sockaddr looks bindable.   Common verification,
 * has already been taken care of.
 */
static int sctp_inet6_bind_verify(struct sctp_opt *opt, union sctp_addr *addr)
{
	struct sctp_af *af;
658

659 660 661 662 663 664 665 666
	/* ASSERT: address family has already been verified. */
	if (addr->sa.sa_family != AF_INET6) {
		af = sctp_get_af_specific(addr->sa.sa_family);
	} else
		af = opt->pf->af;

	return af->available(addr);
}
667

668 669 670
/* 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
671
 * addresses.
672 673 674
 * Returns number of addresses supported.
 */
static int sctp_inet6_supported_addrs(const struct sctp_opt *opt,
675
				      __u16 *types)
676 677 678 679 680 681
{
	types[0] = SCTP_PARAM_IPV4_ADDRESS;
	types[1] = SCTP_PARAM_IPV6_ADDRESS;
	return 2;
}

Jon Grimm's avatar
Jon Grimm committed
682 683 684 685
static struct proto_ops inet6_seqpacket_ops = {
	.family     = PF_INET6,
	.release    = inet6_release,
	.bind       = inet6_bind,
Jon Grimm's avatar
Jon Grimm committed
686
	.connect    = inet_dgram_connect,
687 688
	.socketpair = sock_no_socketpair,
	.accept     = inet_accept,
Jon Grimm's avatar
Jon Grimm committed
689
	.getname    = inet6_getname,
690
	.poll       = sctp_poll,
Jon Grimm's avatar
Jon Grimm committed
691
	.ioctl      = inet6_ioctl,
692
	.listen     = sctp_inet_listen,
Jon Grimm's avatar
Jon Grimm committed
693 694
	.shutdown   = inet_shutdown,
	.setsockopt = inet_setsockopt,
695 696 697
	.getsockopt = inet_getsockopt,
	.sendmsg    = inet_sendmsg,
	.recvmsg    = inet_recvmsg,
Jon Grimm's avatar
Jon Grimm committed
698 699 700
	.mmap       = sock_no_mmap,
};

701
static struct inet_protosw sctpv6_seqpacket_protosw = {
702
	.type          = SOCK_SEQPACKET,
Jon Grimm's avatar
Jon Grimm committed
703 704 705 706 707 708 709
	.protocol      = IPPROTO_SCTP,
	.prot 	       = &sctp_prot,
	.ops           = &inet6_seqpacket_ops,
	.capability    = -1,
	.no_check      = 0,
	.flags         = SCTP_PROTOSW_FLAG
};
710 711 712 713 714 715 716 717 718
static struct inet_protosw sctpv6_stream_protosw = {
	.type          = SOCK_STREAM,
	.protocol      = IPPROTO_SCTP,
	.prot 	       = &sctp_prot,
	.ops           = &inet6_seqpacket_ops,
	.capability    = -1,
	.no_check      = 0,
	.flags         = SCTP_PROTOSW_FLAG
};
Jon Grimm's avatar
Jon Grimm committed
719

720 721 722 723
static struct inet6_protocol sctpv6_protocol = {
	.handler      = sctp_rcv,
	.err_handler  = sctp_v6_err,
};
Jon Grimm's avatar
Jon Grimm committed
724

725
static struct sctp_af sctp_ipv6_specific = {
726 727
	.sctp_xmit       = sctp_v6_xmit,
	.setsockopt      = ipv6_setsockopt,
728
	.getsockopt      = ipv6_getsockopt,
729
	.get_dst	 = sctp_v6_get_dst,
730
	.get_saddr	 = sctp_v6_get_saddr,
Jon Grimm's avatar
Jon Grimm committed
731 732
	.copy_addrlist   = sctp_v6_copy_addrlist,
	.from_skb        = sctp_v6_from_skb,
733 734
	.from_sk         = sctp_v6_from_sk,
	.to_sk           = sctp_v6_to_sk,
735 736
	.dst_saddr       = sctp_v6_dst_saddr,
	.cmp_addr        = sctp_v6_cmp_addr,
737 738
	.scope           = sctp_v6_scope,
	.addr_valid      = sctp_v6_addr_valid,
Jon Grimm's avatar
Jon Grimm committed
739
	.inaddr_any      = sctp_v6_inaddr_any,
740
	.is_any          = sctp_v6_is_any,
741
	.available       = sctp_v6_available,
Jon Grimm's avatar
Jon Grimm committed
742
	.net_header_len  = sizeof(struct ipv6hdr),
743
	.sockaddr_len    = sizeof(struct sockaddr_in6),
Jon Grimm's avatar
Jon Grimm committed
744
	.sa_family       = AF_INET6,
745
};
Jon Grimm's avatar
Jon Grimm committed
746

747
static struct sctp_pf sctp_pf_inet6_specific = {
Jon Grimm's avatar
Jon Grimm committed
748 749
	.event_msgname = sctp_inet6_event_msgname,
	.skb_msgname   = sctp_inet6_skb_msgname,
750
	.af_supported  = sctp_inet6_af_supported,
751
	.cmp_addr      = sctp_inet6_cmp_addr,
752
	.bind_verify   = sctp_inet6_bind_verify,
753
	.supported_addrs = sctp_inet6_supported_addrs,
754
	.create_accept_sk = sctp_v6_create_accept_sk,
Jon Grimm's avatar
Jon Grimm committed
755
	.af            = &sctp_ipv6_specific,
Jon Grimm's avatar
Jon Grimm committed
756 757
};

758
/* Initialize IPv6 support and register with inet6 stack.  */
Jon Grimm's avatar
Jon Grimm committed
759
int sctp_v6_init(void)
760
{
761 762 763 764
	/* Register inet6 protocol. */
	if (inet6_add_protocol(&sctpv6_protocol, IPPROTO_SCTP) < 0)
		return -EAGAIN;

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

Jon Grimm's avatar
Jon Grimm committed
769
	/* Register the SCTP specfic PF_INET6 functions. */
770
	sctp_register_pf(&sctp_pf_inet6_specific, PF_INET6);
Jon Grimm's avatar
Jon Grimm committed
771

772 773
	/* Register the SCTP specfic AF_INET6 functions. */
	sctp_register_af(&sctp_ipv6_specific);
Jon Grimm's avatar
Jon Grimm committed
774

775
	/* Register notifier for inet6 address additions/deletions. */
776 777
	register_inet6addr_notifier(&sctp_inetaddr_notifier);

Jon Grimm's avatar
Jon Grimm committed
778
	return 0;
779
}
Jon Grimm's avatar
Jon Grimm committed
780 781 782 783 784

/* IPv6 specific exit support. */
void sctp_v6_exit(void)
{
	list_del(&sctp_ipv6_specific.list);
785
	inet6_del_protocol(&sctpv6_protocol, IPPROTO_SCTP);
786 787
	inet6_unregister_protosw(&sctpv6_seqpacket_protosw);
	inet6_unregister_protosw(&sctpv6_stream_protosw);
788
	unregister_inet6addr_notifier(&sctp_inetaddr_notifier);
789
}