1 /* SCTP kernel reference 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 reference implementation.
9 * A collection class to handle the storage of transport addresses.
11 * The SCTP reference 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 * The SCTP reference 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
;
70 struct list_head
*pos
;
73 /* All addresses share the same port. */
74 dest
->port
= src
->port
;
76 /* Extract the addresses which are relevant for this scope. */
77 list_for_each(pos
, &src
->address_list
) {
78 addr
= list_entry(pos
, struct sctp_sockaddr_entry
, list
);
79 error
= sctp_copy_one_addr(dest
, &addr
->a
, scope
,
85 /* If there are no addresses matching the scope and
86 * this is global scope, try to get a link scope address, with
87 * the assumption that we must be sitting behind a NAT.
89 if (list_empty(&dest
->address_list
) && (SCTP_SCOPE_GLOBAL
== scope
)) {
90 list_for_each(pos
, &src
->address_list
) {
91 addr
= list_entry(pos
, struct sctp_sockaddr_entry
,
93 error
= sctp_copy_one_addr(dest
, &addr
->a
,
103 sctp_bind_addr_clean(dest
);
108 /* Initialize the SCTP_bind_addr structure for either an endpoint or
111 void sctp_bind_addr_init(struct sctp_bind_addr
*bp
, __u16 port
)
115 INIT_LIST_HEAD(&bp
->address_list
);
119 /* Dispose of the address list. */
120 static void sctp_bind_addr_clean(struct sctp_bind_addr
*bp
)
122 struct sctp_sockaddr_entry
*addr
;
123 struct list_head
*pos
, *temp
;
125 /* Empty the bind address list. */
126 list_for_each_safe(pos
, temp
, &bp
->address_list
) {
127 addr
= list_entry(pos
, struct sctp_sockaddr_entry
, list
);
130 SCTP_DBG_OBJCNT_DEC(addr
);
134 /* Dispose of an SCTP_bind_addr structure */
135 void sctp_bind_addr_free(struct sctp_bind_addr
*bp
)
137 /* Empty the bind address list. */
138 sctp_bind_addr_clean(bp
);
142 SCTP_DBG_OBJCNT_DEC(bind_addr
);
146 /* Add an address to the bind address list in the SCTP_bind_addr structure. */
147 int sctp_add_bind_addr(struct sctp_bind_addr
*bp
, union sctp_addr
*new,
148 __u8 use_as_src
, gfp_t gfp
)
150 struct sctp_sockaddr_entry
*addr
;
152 /* Add the address to the bind address list. */
153 addr
= t_new(struct sctp_sockaddr_entry
, gfp
);
157 memcpy(&addr
->a
, new, sizeof(*new));
159 /* Fix up the port if it has not yet been set.
160 * Both v4 and v6 have the port at the same offset.
162 if (!addr
->a
.v4
.sin_port
)
163 addr
->a
.v4
.sin_port
= htons(bp
->port
);
165 addr
->use_as_src
= use_as_src
;
167 INIT_LIST_HEAD(&addr
->list
);
168 list_add_tail(&addr
->list
, &bp
->address_list
);
169 SCTP_DBG_OBJCNT_INC(addr
);
174 /* Delete an address from the bind address list in the SCTP_bind_addr
177 int sctp_del_bind_addr(struct sctp_bind_addr
*bp
, union sctp_addr
*del_addr
)
179 struct list_head
*pos
, *temp
;
180 struct sctp_sockaddr_entry
*addr
;
182 list_for_each_safe(pos
, temp
, &bp
->address_list
) {
183 addr
= list_entry(pos
, struct sctp_sockaddr_entry
, list
);
184 if (sctp_cmp_addr_exact(&addr
->a
, del_addr
)) {
185 /* Found the exact match. */
188 SCTP_DBG_OBJCNT_DEC(addr
);
197 /* Create a network byte-order representation of all the addresses
198 * formated as SCTP parameters.
200 * The second argument is the return value for the length.
202 union sctp_params
sctp_bind_addrs_to_raw(const struct sctp_bind_addr
*bp
,
206 union sctp_params addrparms
;
207 union sctp_params retval
;
209 union sctp_addr_param rawaddr
;
211 struct sctp_sockaddr_entry
*addr
;
212 struct list_head
*pos
;
218 /* Allocate enough memory at once. */
219 list_for_each(pos
, &bp
->address_list
) {
220 len
+= sizeof(union sctp_addr_param
);
223 /* Don't even bother embedding an address if there
226 if (len
== sizeof(union sctp_addr_param
)) {
231 retval
.v
= kmalloc(len
, gfp
);
237 list_for_each(pos
, &bp
->address_list
) {
238 addr
= list_entry(pos
, struct sctp_sockaddr_entry
, list
);
239 af
= sctp_get_af_specific(addr
->a
.v4
.sin_family
);
240 len
= af
->to_addr_param(&addr
->a
, &rawaddr
);
241 memcpy(addrparms
.v
, &rawaddr
, len
);
243 addrparms_len
+= len
;
247 *addrs_len
= addrparms_len
;
252 * Create an address list out of the raw address list format (IPv4 and IPv6
253 * address parameters).
255 int sctp_raw_to_bind_addrs(struct sctp_bind_addr
*bp
, __u8
*raw_addr_list
,
256 int addrs_len
, __u16 port
, gfp_t gfp
)
258 union sctp_addr_param
*rawaddr
;
259 struct sctp_paramhdr
*param
;
260 union sctp_addr addr
;
265 /* Convert the raw address to standard address format */
267 param
= (struct sctp_paramhdr
*)raw_addr_list
;
268 rawaddr
= (union sctp_addr_param
*)raw_addr_list
;
270 af
= sctp_get_af_specific(param_type2af(param
->type
));
273 sctp_bind_addr_clean(bp
);
277 af
->from_addr_param(&addr
, rawaddr
, htons(port
), 0);
278 retval
= sctp_add_bind_addr(bp
, &addr
, 1, gfp
);
280 /* Can't finish building the list, clean up. */
281 sctp_bind_addr_clean(bp
);
285 len
= ntohs(param
->length
);
287 raw_addr_list
+= len
;
293 /********************************************************************
294 * 2nd Level Abstractions
295 ********************************************************************/
297 /* Does this contain a specified address? Allow wildcarding. */
298 int sctp_bind_addr_match(struct sctp_bind_addr
*bp
,
299 const union sctp_addr
*addr
,
300 struct sctp_sock
*opt
)
302 struct sctp_sockaddr_entry
*laddr
;
303 struct list_head
*pos
;
305 list_for_each(pos
, &bp
->address_list
) {
306 laddr
= list_entry(pos
, struct sctp_sockaddr_entry
, list
);
307 if (opt
->pf
->cmp_addr(&laddr
->a
, addr
, opt
))
314 /* Find the first address in the bind address list that is not present in
315 * the addrs packed array.
317 union sctp_addr
*sctp_find_unmatch_addr(struct sctp_bind_addr
*bp
,
318 const union sctp_addr
*addrs
,
320 struct sctp_sock
*opt
)
322 struct sctp_sockaddr_entry
*laddr
;
323 union sctp_addr
*addr
;
326 struct list_head
*pos
;
329 list_for_each(pos
, &bp
->address_list
) {
330 laddr
= list_entry(pos
, struct sctp_sockaddr_entry
, list
);
332 addr_buf
= (union sctp_addr
*)addrs
;
333 for (i
= 0; i
< addrcnt
; i
++) {
334 addr
= (union sctp_addr
*)addr_buf
;
335 af
= sctp_get_af_specific(addr
->v4
.sin_family
);
339 if (opt
->pf
->cmp_addr(&laddr
->a
, addr
, opt
))
342 addr_buf
+= af
->sockaddr_len
;
351 /* Copy out addresses from the global local address list. */
352 static int sctp_copy_one_addr(struct sctp_bind_addr
*dest
,
353 union sctp_addr
*addr
,
354 sctp_scope_t scope
, gfp_t gfp
,
359 if (sctp_is_any(addr
)) {
360 error
= sctp_copy_local_addr_list(dest
, scope
, gfp
, flags
);
361 } else if (sctp_in_scope(addr
, scope
)) {
362 /* Now that the address is in scope, check to see if
363 * the address type is supported by local sock as
364 * well as the remote peer.
366 if ((((AF_INET
== addr
->sa
.sa_family
) &&
367 (flags
& SCTP_ADDR4_PEERSUPP
))) ||
368 (((AF_INET6
== addr
->sa
.sa_family
) &&
369 (flags
& SCTP_ADDR6_ALLOWED
) &&
370 (flags
& SCTP_ADDR6_PEERSUPP
))))
371 error
= sctp_add_bind_addr(dest
, addr
, 1, gfp
);
377 /* Is this a wildcard address? */
378 int sctp_is_any(const union sctp_addr
*addr
)
380 struct sctp_af
*af
= sctp_get_af_specific(addr
->sa
.sa_family
);
383 return af
->is_any(addr
);
386 /* Is 'addr' valid for 'scope'? */
387 int sctp_in_scope(const union sctp_addr
*addr
, sctp_scope_t scope
)
389 sctp_scope_t addr_scope
= sctp_scope(addr
);
391 /* The unusable SCTP addresses will not be considered with
392 * any defined scopes.
394 if (SCTP_SCOPE_UNUSABLE
== addr_scope
)
397 * For INIT and INIT-ACK address list, let L be the level of
398 * of requested destination address, sender and receiver
399 * SHOULD include all of its addresses with level greater
400 * than or equal to L.
402 if (addr_scope
<= scope
)
408 /********************************************************************
409 * 3rd Level Abstractions
410 ********************************************************************/
412 /* What is the scope of 'addr'? */
413 sctp_scope_t
sctp_scope(const union sctp_addr
*addr
)
417 af
= sctp_get_af_specific(addr
->sa
.sa_family
);
419 return SCTP_SCOPE_UNUSABLE
;
421 return af
->scope((union sctp_addr
*)addr
);