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
30 * lksctp developers <lksctp-developers@lists.sourceforge.net>
32 * Or submit a bug report through the following website:
33 * http://www.sf.net/projects/lksctp
35 * Written or modified by:
36 * La Monte H.P. Yarroll <piggy@acm.org>
37 * Karl Knutson <karl@athena.chicago.il.us>
38 * Jon Grimm <jgrimm@us.ibm.com>
39 * Daisy Chang <daisyc@us.ibm.com>
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);
189 INIT_RCU_HEAD(&addr->rcu);
191 /* We always hold a socket lock when calling this function,
192 * and that acts as a writer synchronizing lock.
194 list_add_tail_rcu(&addr->list, &bp->address_list);
195 SCTP_DBG_OBJCNT_INC(addr);
200 /* Delete an address from the bind address list in the SCTP_bind_addr
203 int sctp_del_bind_addr(struct sctp_bind_addr *bp, union sctp_addr *del_addr)
205 struct sctp_sockaddr_entry *addr, *temp;
208 /* We hold the socket lock when calling this function,
209 * and that acts as a writer synchronizing lock.
211 list_for_each_entry_safe(addr, temp, &bp->address_list, list) {
212 if (sctp_cmp_addr_exact(&addr->a, del_addr)) {
213 /* Found the exact match. */
216 list_del_rcu(&addr->list);
222 call_rcu(&addr->rcu, sctp_local_addr_free);
223 SCTP_DBG_OBJCNT_DEC(addr);
230 /* Create a network byte-order representation of all the addresses
231 * formated as SCTP parameters.
233 * The second argument is the return value for the length.
235 union sctp_params sctp_bind_addrs_to_raw(const struct sctp_bind_addr *bp,
239 union sctp_params addrparms;
240 union sctp_params retval;
242 union sctp_addr_param rawaddr;
244 struct sctp_sockaddr_entry *addr;
245 struct list_head *pos;
251 /* Allocate enough memory at once. */
252 list_for_each(pos, &bp->address_list) {
253 len += sizeof(union sctp_addr_param);
256 /* Don't even bother embedding an address if there
259 if (len == sizeof(union sctp_addr_param)) {
264 retval.v = kmalloc(len, gfp);
270 list_for_each_entry(addr, &bp->address_list, list) {
271 af = sctp_get_af_specific(addr->a.v4.sin_family);
272 len = af->to_addr_param(&addr->a, &rawaddr);
273 memcpy(addrparms.v, &rawaddr, len);
275 addrparms_len += len;
279 *addrs_len = addrparms_len;
284 * Create an address list out of the raw address list format (IPv4 and IPv6
285 * address parameters).
287 int sctp_raw_to_bind_addrs(struct sctp_bind_addr *bp, __u8 *raw_addr_list,
288 int addrs_len, __u16 port, gfp_t gfp)
290 union sctp_addr_param *rawaddr;
291 struct sctp_paramhdr *param;
292 union sctp_addr addr;
297 /* Convert the raw address to standard address format */
299 param = (struct sctp_paramhdr *)raw_addr_list;
300 rawaddr = (union sctp_addr_param *)raw_addr_list;
302 af = sctp_get_af_specific(param_type2af(param->type));
305 sctp_bind_addr_clean(bp);
309 af->from_addr_param(&addr, rawaddr, htons(port), 0);
310 retval = sctp_add_bind_addr(bp, &addr, SCTP_ADDR_SRC, gfp);
312 /* Can't finish building the list, clean up. */
313 sctp_bind_addr_clean(bp);
317 len = ntohs(param->length);
319 raw_addr_list += len;
325 /********************************************************************
326 * 2nd Level Abstractions
327 ********************************************************************/
329 /* Does this contain a specified address? Allow wildcarding. */
330 int sctp_bind_addr_match(struct sctp_bind_addr *bp,
331 const union sctp_addr *addr,
332 struct sctp_sock *opt)
334 struct sctp_sockaddr_entry *laddr;
338 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
341 if (opt->pf->cmp_addr(&laddr->a, addr, opt)) {
351 /* Does the address 'addr' conflict with any addresses in
354 int sctp_bind_addr_conflict(struct sctp_bind_addr *bp,
355 const union sctp_addr *addr,
356 struct sctp_sock *bp_sp,
357 struct sctp_sock *addr_sp)
359 struct sctp_sockaddr_entry *laddr;
361 struct sctp_sock *sp;
363 /* Pick the IPv6 socket as the basis of comparison
364 * since it's usually a superset of the IPv4.
365 * If there is no IPv6 socket, then default to bind_addr.
367 if (sctp_opt2sk(bp_sp)->sk_family == AF_INET6)
369 else if (sctp_opt2sk(addr_sp)->sk_family == AF_INET6)
375 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
379 conflict = sp->pf->cmp_addr(&laddr->a, addr, sp);
388 /* Get the state of the entry in the bind_addr_list */
389 int sctp_bind_addr_state(const struct sctp_bind_addr *bp,
390 const union sctp_addr *addr)
392 struct sctp_sockaddr_entry *laddr;
396 af = sctp_get_af_specific(addr->sa.sa_family);
401 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
404 if (af->cmp_addr(&laddr->a, addr)) {
405 state = laddr->state;
414 /* Find the first address in the bind address list that is not present in
415 * the addrs packed array.
417 union sctp_addr *sctp_find_unmatch_addr(struct sctp_bind_addr *bp,
418 const union sctp_addr *addrs,
420 struct sctp_sock *opt)
422 struct sctp_sockaddr_entry *laddr;
423 union sctp_addr *addr;
428 /* This is only called sctp_send_asconf_del_ip() and we hold
429 * the socket lock in that code patch, so that address list
432 list_for_each_entry(laddr, &bp->address_list, list) {
433 addr_buf = (union sctp_addr *)addrs;
434 for (i = 0; i < addrcnt; i++) {
435 addr = (union sctp_addr *)addr_buf;
436 af = sctp_get_af_specific(addr->v4.sin_family);
440 if (opt->pf->cmp_addr(&laddr->a, addr, opt))
443 addr_buf += af->sockaddr_len;
452 /* Copy out addresses from the global local address list. */
453 static int sctp_copy_one_addr(struct sctp_bind_addr *dest,
454 union sctp_addr *addr,
455 sctp_scope_t scope, gfp_t gfp,
460 if (sctp_is_any(addr)) {
461 error = sctp_copy_local_addr_list(dest, scope, gfp, flags);
462 } else if (sctp_in_scope(addr, scope)) {
463 /* Now that the address is in scope, check to see if
464 * the address type is supported by local sock as
465 * well as the remote peer.
467 if ((((AF_INET == addr->sa.sa_family) &&
468 (flags & SCTP_ADDR4_PEERSUPP))) ||
469 (((AF_INET6 == addr->sa.sa_family) &&
470 (flags & SCTP_ADDR6_ALLOWED) &&
471 (flags & SCTP_ADDR6_PEERSUPP))))
472 error = sctp_add_bind_addr(dest, addr, SCTP_ADDR_SRC,
479 /* Is this a wildcard address? */
480 int sctp_is_any(const union sctp_addr *addr)
482 struct sctp_af *af = sctp_get_af_specific(addr->sa.sa_family);
485 return af->is_any(addr);
488 /* Is 'addr' valid for 'scope'? */
489 int sctp_in_scope(const union sctp_addr *addr, sctp_scope_t scope)
491 sctp_scope_t addr_scope = sctp_scope(addr);
493 /* The unusable SCTP addresses will not be considered with
494 * any defined scopes.
496 if (SCTP_SCOPE_UNUSABLE == addr_scope)
499 * For INIT and INIT-ACK address list, let L be the level of
500 * of requested destination address, sender and receiver
501 * SHOULD include all of its addresses with level greater
502 * than or equal to L.
504 if (addr_scope <= scope)
510 /********************************************************************
511 * 3rd Level Abstractions
512 ********************************************************************/
514 /* What is the scope of 'addr'? */
515 sctp_scope_t sctp_scope(const union sctp_addr *addr)
519 af = sctp_get_af_specific(addr->sa.sa_family);
521 return SCTP_SCOPE_UNUSABLE;
523 return af->scope((union sctp_addr *)addr);