1 /* SCTP kernel implementation
2 * (C) Copyright IBM Corp. 2001, 2003
3 * Copyright (c) Cisco 1999,2000
4 * Copyright (c) Motorola 1999,2000,2001
5 * Copyright (c) La Monte H.P. Yarroll 2001
7 * This file is part of the SCTP kernel implementation.
9 * A collection class to handle the storage of transport addresses.
11 * This SCTP implementation is free software;
12 * you can redistribute it and/or modify it under the terms of
13 * the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
17 * This SCTP implementation is distributed in the hope that it
18 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
19 * ************************
20 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
21 * See the GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with GNU CC; see the file COPYING. If not, write to
25 * the Free Software Foundation, 59 Temple Place - Suite 330,
26 * Boston, MA 02111-1307, USA.
28 * Please send any bug reports or fixes you make to the
32 * Or submit a bug report through the following website:
33 * http://www.sf.net/projects/lksctp
35 * Written or modified by:
41 * Any bugs reported given to us we will try to fix... any fixes shared will
42 * be incorporated into the next SCTP release.
45 #include <linux/types.h>
49 #include <net/if_inet6.h>
50 #include <net/sctp/sctp.h>
51 #include <net/sctp/sm.h>
53 /* Forward declarations for internal helpers. */
54 static int sctp_copy_one_addr(struct sctp_bind_addr *, union sctp_addr *,
55 sctp_scope_t scope, gfp_t gfp,
57 static void sctp_bind_addr_clean(struct sctp_bind_addr *);
59 /* First Level Abstractions. */
61 /* Copy 'src' to 'dest' taking 'scope' into account. Omit addresses
62 * in 'src' which have a broader scope than 'scope'.
64 int sctp_bind_addr_copy(struct sctp_bind_addr *dest,
65 const struct sctp_bind_addr *src,
66 sctp_scope_t scope, gfp_t gfp,
69 struct sctp_sockaddr_entry *addr;
72 /* All addresses share the same port. */
73 dest->port = src->port;
75 /* Extract the addresses which are relevant for this scope. */
76 list_for_each_entry(addr, &src->address_list, list) {
77 error = sctp_copy_one_addr(dest, &addr->a, scope,
83 /* If there are no addresses matching the scope and
84 * this is global scope, try to get a link scope address, with
85 * the assumption that we must be sitting behind a NAT.
87 if (list_empty(&dest->address_list) && (SCTP_SCOPE_GLOBAL == scope)) {
88 list_for_each_entry(addr, &src->address_list, list) {
89 error = sctp_copy_one_addr(dest, &addr->a,
99 sctp_bind_addr_clean(dest);
104 /* Exactly duplicate the address lists. This is necessary when doing
105 * peer-offs and accepts. We don't want to put all the current system
106 * addresses into the endpoint. That's useless. But we do want duplicat
107 * the list of bound addresses that the older endpoint used.
109 int sctp_bind_addr_dup(struct sctp_bind_addr *dest,
110 const struct sctp_bind_addr *src,
113 struct sctp_sockaddr_entry *addr;
116 /* All addresses share the same port. */
117 dest->port = src->port;
119 list_for_each_entry(addr, &src->address_list, list) {
120 error = sctp_add_bind_addr(dest, &addr->a, 1, gfp);
128 /* Initialize the SCTP_bind_addr structure for either an endpoint or
131 void sctp_bind_addr_init(struct sctp_bind_addr *bp, __u16 port)
135 INIT_LIST_HEAD(&bp->address_list);
139 /* Dispose of the address list. */
140 static void sctp_bind_addr_clean(struct sctp_bind_addr *bp)
142 struct sctp_sockaddr_entry *addr;
143 struct list_head *pos, *temp;
145 /* Empty the bind address list. */
146 list_for_each_safe(pos, temp, &bp->address_list) {
147 addr = list_entry(pos, struct sctp_sockaddr_entry, list);
150 SCTP_DBG_OBJCNT_DEC(addr);
154 /* Dispose of an SCTP_bind_addr structure */
155 void sctp_bind_addr_free(struct sctp_bind_addr *bp)
157 /* Empty the bind address list. */
158 sctp_bind_addr_clean(bp);
162 SCTP_DBG_OBJCNT_DEC(bind_addr);
166 /* Add an address to the bind address list in the SCTP_bind_addr structure. */
167 int sctp_add_bind_addr(struct sctp_bind_addr *bp, union sctp_addr *new,
168 __u8 addr_state, gfp_t gfp)
170 struct sctp_sockaddr_entry *addr;
172 /* Add the address to the bind address list. */
173 addr = t_new(struct sctp_sockaddr_entry, gfp);
177 memcpy(&addr->a, new, sizeof(*new));
179 /* Fix up the port if it has not yet been set.
180 * Both v4 and v6 have the port at the same offset.
182 if (!addr->a.v4.sin_port)
183 addr->a.v4.sin_port = htons(bp->port);
185 addr->state = addr_state;
188 INIT_LIST_HEAD(&addr->list);
190 /* We always hold a socket lock when calling this function,
191 * and that acts as a writer synchronizing lock.
193 list_add_tail_rcu(&addr->list, &bp->address_list);
194 SCTP_DBG_OBJCNT_INC(addr);
199 /* Delete an address from the bind address list in the SCTP_bind_addr
202 int sctp_del_bind_addr(struct sctp_bind_addr *bp, union sctp_addr *del_addr)
204 struct sctp_sockaddr_entry *addr, *temp;
207 /* We hold the socket lock when calling this function,
208 * and that acts as a writer synchronizing lock.
210 list_for_each_entry_safe(addr, temp, &bp->address_list, list) {
211 if (sctp_cmp_addr_exact(&addr->a, del_addr)) {
212 /* Found the exact match. */
215 list_del_rcu(&addr->list);
221 call_rcu(&addr->rcu, sctp_local_addr_free);
222 SCTP_DBG_OBJCNT_DEC(addr);
229 /* Create a network byte-order representation of all the addresses
230 * formated as SCTP parameters.
232 * The second argument is the return value for the length.
234 union sctp_params sctp_bind_addrs_to_raw(const struct sctp_bind_addr *bp,
238 union sctp_params addrparms;
239 union sctp_params retval;
241 union sctp_addr_param rawaddr;
243 struct sctp_sockaddr_entry *addr;
244 struct list_head *pos;
250 /* Allocate enough memory at once. */
251 list_for_each(pos, &bp->address_list) {
252 len += sizeof(union sctp_addr_param);
255 /* Don't even bother embedding an address if there
258 if (len == sizeof(union sctp_addr_param)) {
263 retval.v = kmalloc(len, gfp);
269 list_for_each_entry(addr, &bp->address_list, list) {
270 af = sctp_get_af_specific(addr->a.v4.sin_family);
271 len = af->to_addr_param(&addr->a, &rawaddr);
272 memcpy(addrparms.v, &rawaddr, len);
274 addrparms_len += len;
278 *addrs_len = addrparms_len;
283 * Create an address list out of the raw address list format (IPv4 and IPv6
284 * address parameters).
286 int sctp_raw_to_bind_addrs(struct sctp_bind_addr *bp, __u8 *raw_addr_list,
287 int addrs_len, __u16 port, gfp_t gfp)
289 union sctp_addr_param *rawaddr;
290 struct sctp_paramhdr *param;
291 union sctp_addr addr;
296 /* Convert the raw address to standard address format */
298 param = (struct sctp_paramhdr *)raw_addr_list;
299 rawaddr = (union sctp_addr_param *)raw_addr_list;
301 af = sctp_get_af_specific(param_type2af(param->type));
304 sctp_bind_addr_clean(bp);
308 af->from_addr_param(&addr, rawaddr, htons(port), 0);
309 retval = sctp_add_bind_addr(bp, &addr, SCTP_ADDR_SRC, gfp);
311 /* Can't finish building the list, clean up. */
312 sctp_bind_addr_clean(bp);
316 len = ntohs(param->length);
318 raw_addr_list += len;
324 /********************************************************************
325 * 2nd Level Abstractions
326 ********************************************************************/
328 /* Does this contain a specified address? Allow wildcarding. */
329 int sctp_bind_addr_match(struct sctp_bind_addr *bp,
330 const union sctp_addr *addr,
331 struct sctp_sock *opt)
333 struct sctp_sockaddr_entry *laddr;
337 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
340 if (opt->pf->cmp_addr(&laddr->a, addr, opt)) {
350 /* Does the address 'addr' conflict with any addresses in
353 int sctp_bind_addr_conflict(struct sctp_bind_addr *bp,
354 const union sctp_addr *addr,
355 struct sctp_sock *bp_sp,
356 struct sctp_sock *addr_sp)
358 struct sctp_sockaddr_entry *laddr;
360 struct sctp_sock *sp;
362 /* Pick the IPv6 socket as the basis of comparison
363 * since it's usually a superset of the IPv4.
364 * If there is no IPv6 socket, then default to bind_addr.
366 if (sctp_opt2sk(bp_sp)->sk_family == AF_INET6)
368 else if (sctp_opt2sk(addr_sp)->sk_family == AF_INET6)
374 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
378 conflict = sp->pf->cmp_addr(&laddr->a, addr, sp);
387 /* Get the state of the entry in the bind_addr_list */
388 int sctp_bind_addr_state(const struct sctp_bind_addr *bp,
389 const union sctp_addr *addr)
391 struct sctp_sockaddr_entry *laddr;
395 af = sctp_get_af_specific(addr->sa.sa_family);
400 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
403 if (af->cmp_addr(&laddr->a, addr)) {
404 state = laddr->state;
413 /* Find the first address in the bind address list that is not present in
414 * the addrs packed array.
416 union sctp_addr *sctp_find_unmatch_addr(struct sctp_bind_addr *bp,
417 const union sctp_addr *addrs,
419 struct sctp_sock *opt)
421 struct sctp_sockaddr_entry *laddr;
422 union sctp_addr *addr;
427 /* This is only called sctp_send_asconf_del_ip() and we hold
428 * the socket lock in that code patch, so that address list
431 list_for_each_entry(laddr, &bp->address_list, list) {
432 addr_buf = (union sctp_addr *)addrs;
433 for (i = 0; i < addrcnt; i++) {
434 addr = (union sctp_addr *)addr_buf;
435 af = sctp_get_af_specific(addr->v4.sin_family);
439 if (opt->pf->cmp_addr(&laddr->a, addr, opt))
442 addr_buf += af->sockaddr_len;
451 /* Copy out addresses from the global local address list. */
452 static int sctp_copy_one_addr(struct sctp_bind_addr *dest,
453 union sctp_addr *addr,
454 sctp_scope_t scope, gfp_t gfp,
459 if (sctp_is_any(NULL, addr)) {
460 error = sctp_copy_local_addr_list(dest, scope, gfp, flags);
461 } else if (sctp_in_scope(addr, scope)) {
462 /* Now that the address is in scope, check to see if
463 * the address type is supported by local sock as
464 * well as the remote peer.
466 if ((((AF_INET == addr->sa.sa_family) &&
467 (flags & SCTP_ADDR4_PEERSUPP))) ||
468 (((AF_INET6 == addr->sa.sa_family) &&
469 (flags & SCTP_ADDR6_ALLOWED) &&
470 (flags & SCTP_ADDR6_PEERSUPP))))
471 error = sctp_add_bind_addr(dest, addr, SCTP_ADDR_SRC,
478 /* Is this a wildcard address? */
479 int sctp_is_any(struct sock *sk, const union sctp_addr *addr)
481 unsigned short fam = 0;
484 /* Try to get the right address family */
485 if (addr->sa.sa_family != AF_UNSPEC)
486 fam = addr->sa.sa_family;
490 af = sctp_get_af_specific(fam);
494 return af->is_any(addr);
497 /* Is 'addr' valid for 'scope'? */
498 int sctp_in_scope(const union sctp_addr *addr, sctp_scope_t scope)
500 sctp_scope_t addr_scope = sctp_scope(addr);
502 /* The unusable SCTP addresses will not be considered with
503 * any defined scopes.
505 if (SCTP_SCOPE_UNUSABLE == addr_scope)
508 * For INIT and INIT-ACK address list, let L be the level of
509 * of requested destination address, sender and receiver
510 * SHOULD include all of its addresses with level greater
511 * than or equal to L.
513 * Address scoping can be selectively controlled via sysctl
516 switch (sctp_scope_policy) {
517 case SCTP_SCOPE_POLICY_DISABLE:
519 case SCTP_SCOPE_POLICY_ENABLE:
520 if (addr_scope <= scope)
523 case SCTP_SCOPE_POLICY_PRIVATE:
524 if (addr_scope <= scope || SCTP_SCOPE_PRIVATE == addr_scope)
527 case SCTP_SCOPE_POLICY_LINK:
528 if (addr_scope <= scope || SCTP_SCOPE_LINK == addr_scope)
538 /********************************************************************
539 * 3rd Level Abstractions
540 ********************************************************************/
542 /* What is the scope of 'addr'? */
543 sctp_scope_t sctp_scope(const union sctp_addr *addr)
547 af = sctp_get_af_specific(addr->sa.sa_family);
549 return SCTP_SCOPE_UNUSABLE;
551 return af->scope((union sctp_addr *)addr);