blob: bef1337316837c8dce7b97bdd89560ecee23cbdd [file] [log] [blame]
Vlad Yasevich60c778b2008-01-11 09:57:09 -05001/* SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (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
6 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05007 * This file is part of the SCTP kernel implementation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * A collection class to handle the storage of transport addresses.
10 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050011 * This SCTP implementation is free software;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * 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)
15 * any later version.
16 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050017 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * 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.
22 *
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.
27 *
28 * Please send any bug reports or fixes you make to the
29 * email address(es):
30 * lksctp developers <lksctp-developers@lists.sourceforge.net>
31 *
32 * Or submit a bug report through the following website:
33 * http://www.sf.net/projects/lksctp
34 *
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>
40 *
41 * Any bugs reported given to us we will try to fix... any fixes shared will
42 * be incorporated into the next SCTP release.
43 */
44
45#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/in.h>
47#include <net/sock.h>
48#include <net/ipv6.h>
49#include <net/if_inet6.h>
50#include <net/sctp/sctp.h>
51#include <net/sctp/sm.h>
52
53/* Forward declarations for internal helpers. */
54static int sctp_copy_one_addr(struct sctp_bind_addr *, union sctp_addr *,
Al Virodd0fc662005-10-07 07:46:04 +010055 sctp_scope_t scope, gfp_t gfp,
Alexey Dobriyan3182cd842005-07-11 20:57:47 -070056 int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static void sctp_bind_addr_clean(struct sctp_bind_addr *);
58
59/* First Level Abstractions. */
60
61/* Copy 'src' to 'dest' taking 'scope' into account. Omit addresses
62 * in 'src' which have a broader scope than 'scope'.
63 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090064int sctp_bind_addr_copy(struct sctp_bind_addr *dest,
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 const struct sctp_bind_addr *src,
Al Virodd0fc662005-10-07 07:46:04 +010066 sctp_scope_t scope, gfp_t gfp,
Alexey Dobriyan3182cd842005-07-11 20:57:47 -070067 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
69 struct sctp_sockaddr_entry *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 int error = 0;
71
72 /* All addresses share the same port. */
73 dest->port = src->port;
74
75 /* Extract the addresses which are relevant for this scope. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -070076 list_for_each_entry(addr, &src->address_list, list) {
Al Viro02a8a4d2006-11-20 17:12:07 -080077 error = sctp_copy_one_addr(dest, &addr->a, scope,
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 gfp, flags);
79 if (error < 0)
80 goto out;
81 }
82
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.
86 */
87 if (list_empty(&dest->address_list) && (SCTP_SCOPE_GLOBAL == scope)) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -070088 list_for_each_entry(addr, &src->address_list, list) {
Al Viro02a8a4d2006-11-20 17:12:07 -080089 error = sctp_copy_one_addr(dest, &addr->a,
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 SCTP_SCOPE_LINK, gfp,
91 flags);
92 if (error < 0)
93 goto out;
94 }
95 }
96
97out:
98 if (error)
99 sctp_bind_addr_clean(dest);
100
101 return error;
102}
103
Vlad Yasevich8e71a112007-12-06 22:50:54 -0800104/* 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.
108 */
109int sctp_bind_addr_dup(struct sctp_bind_addr *dest,
110 const struct sctp_bind_addr *src,
111 gfp_t gfp)
112{
113 struct sctp_sockaddr_entry *addr;
Vlad Yasevich8e71a112007-12-06 22:50:54 -0800114 int error = 0;
115
116 /* All addresses share the same port. */
117 dest->port = src->port;
118
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700119 list_for_each_entry(addr, &src->address_list, list) {
Vlad Yasevich8e71a112007-12-06 22:50:54 -0800120 error = sctp_add_bind_addr(dest, &addr->a, 1, gfp);
121 if (error < 0)
122 break;
123 }
124
125 return error;
126}
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128/* Initialize the SCTP_bind_addr structure for either an endpoint or
129 * an association.
130 */
131void sctp_bind_addr_init(struct sctp_bind_addr *bp, __u16 port)
132{
133 bp->malloced = 0;
134
135 INIT_LIST_HEAD(&bp->address_list);
136 bp->port = port;
137}
138
139/* Dispose of the address list. */
140static void sctp_bind_addr_clean(struct sctp_bind_addr *bp)
141{
142 struct sctp_sockaddr_entry *addr;
143 struct list_head *pos, *temp;
144
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);
148 list_del(pos);
149 kfree(addr);
150 SCTP_DBG_OBJCNT_DEC(addr);
151 }
152}
153
154/* Dispose of an SCTP_bind_addr structure */
155void sctp_bind_addr_free(struct sctp_bind_addr *bp)
156{
157 /* Empty the bind address list. */
158 sctp_bind_addr_clean(bp);
159
160 if (bp->malloced) {
161 kfree(bp);
162 SCTP_DBG_OBJCNT_DEC(bind_addr);
163 }
164}
165
166/* Add an address to the bind address list in the SCTP_bind_addr structure. */
167int sctp_add_bind_addr(struct sctp_bind_addr *bp, union sctp_addr *new,
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800168 __u8 addr_state, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
170 struct sctp_sockaddr_entry *addr;
171
172 /* Add the address to the bind address list. */
173 addr = t_new(struct sctp_sockaddr_entry, gfp);
174 if (!addr)
175 return -ENOMEM;
176
Al Viro5ab7b852006-11-20 17:10:38 -0800177 memcpy(&addr->a, new, sizeof(*new));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 /* Fix up the port if it has not yet been set.
180 * Both v4 and v6 have the port at the same offset.
181 */
Al Viro5ab7b852006-11-20 17:10:38 -0800182 if (!addr->a.v4.sin_port)
183 addr->a.v4.sin_port = htons(bp->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800185 addr->state = addr_state;
Vlad Yasevich29303542007-09-16 16:02:12 -0700186 addr->valid = 1;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 INIT_LIST_HEAD(&addr->list);
Vlad Yasevich559cf712007-09-16 16:03:28 -0700189
190 /* We always hold a socket lock when calling this function,
191 * and that acts as a writer synchronizing lock.
192 */
193 list_add_tail_rcu(&addr->list, &bp->address_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 SCTP_DBG_OBJCNT_INC(addr);
195
196 return 0;
197}
198
199/* Delete an address from the bind address list in the SCTP_bind_addr
200 * structure.
201 */
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -0400202int sctp_del_bind_addr(struct sctp_bind_addr *bp, union sctp_addr *del_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Vlad Yasevich559cf712007-09-16 16:03:28 -0700204 struct sctp_sockaddr_entry *addr, *temp;
Chidambar 'ilLogict' Zinnoury22626212008-03-11 18:05:02 -0700205 int found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Vlad Yasevich559cf712007-09-16 16:03:28 -0700207 /* We hold the socket lock when calling this function,
208 * and that acts as a writer synchronizing lock.
209 */
210 list_for_each_entry_safe(addr, temp, &bp->address_list, list) {
Al Viroc9a08502006-11-20 17:07:48 -0800211 if (sctp_cmp_addr_exact(&addr->a, del_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 /* Found the exact match. */
Chidambar 'ilLogict' Zinnoury22626212008-03-11 18:05:02 -0700213 found = 1;
Vlad Yasevich559cf712007-09-16 16:03:28 -0700214 addr->valid = 0;
215 list_del_rcu(&addr->list);
216 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
218 }
219
Chidambar 'ilLogict' Zinnoury22626212008-03-11 18:05:02 -0700220 if (found) {
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -0400221 call_rcu(&addr->rcu, sctp_local_addr_free);
Vlad Yasevich559cf712007-09-16 16:03:28 -0700222 SCTP_DBG_OBJCNT_DEC(addr);
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -0400223 return 0;
Vlad Yasevich559cf712007-09-16 16:03:28 -0700224 }
225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return -EINVAL;
227}
228
229/* Create a network byte-order representation of all the addresses
230 * formated as SCTP parameters.
231 *
232 * The second argument is the return value for the length.
233 */
234union sctp_params sctp_bind_addrs_to_raw(const struct sctp_bind_addr *bp,
Alexey Dobriyan3182cd842005-07-11 20:57:47 -0700235 int *addrs_len,
Al Virodd0fc662005-10-07 07:46:04 +0100236 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
238 union sctp_params addrparms;
239 union sctp_params retval;
240 int addrparms_len;
241 union sctp_addr_param rawaddr;
242 int len;
243 struct sctp_sockaddr_entry *addr;
244 struct list_head *pos;
245 struct sctp_af *af;
246
247 addrparms_len = 0;
248 len = 0;
249
250 /* Allocate enough memory at once. */
251 list_for_each(pos, &bp->address_list) {
252 len += sizeof(union sctp_addr_param);
253 }
254
255 /* Don't even bother embedding an address if there
256 * is only one.
257 */
258 if (len == sizeof(union sctp_addr_param)) {
259 retval.v = NULL;
260 goto end_raw;
261 }
262
263 retval.v = kmalloc(len, gfp);
264 if (!retval.v)
265 goto end_raw;
266
267 addrparms = retval;
268
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700269 list_for_each_entry(addr, &bp->address_list, list) {
Al Viro6244be42006-11-20 17:21:44 -0800270 af = sctp_get_af_specific(addr->a.v4.sin_family);
271 len = af->to_addr_param(&addr->a, &rawaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 memcpy(addrparms.v, &rawaddr, len);
273 addrparms.v += len;
274 addrparms_len += len;
275 }
276
277end_raw:
278 *addrs_len = addrparms_len;
279 return retval;
280}
281
282/*
283 * Create an address list out of the raw address list format (IPv4 and IPv6
284 * address parameters).
285 */
286int sctp_raw_to_bind_addrs(struct sctp_bind_addr *bp, __u8 *raw_addr_list,
Al Virodd0fc662005-10-07 07:46:04 +0100287 int addrs_len, __u16 port, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 union sctp_addr_param *rawaddr;
290 struct sctp_paramhdr *param;
291 union sctp_addr addr;
292 int retval = 0;
293 int len;
294 struct sctp_af *af;
295
296 /* Convert the raw address to standard address format */
297 while (addrs_len) {
298 param = (struct sctp_paramhdr *)raw_addr_list;
299 rawaddr = (union sctp_addr_param *)raw_addr_list;
300
301 af = sctp_get_af_specific(param_type2af(param->type));
302 if (unlikely(!af)) {
303 retval = -EINVAL;
304 sctp_bind_addr_clean(bp);
305 break;
306 }
307
Al Virodd86d132006-11-20 17:11:13 -0800308 af->from_addr_param(&addr, rawaddr, htons(port), 0);
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800309 retval = sctp_add_bind_addr(bp, &addr, SCTP_ADDR_SRC, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (retval) {
311 /* Can't finish building the list, clean up. */
312 sctp_bind_addr_clean(bp);
313 break;
314 }
315
316 len = ntohs(param->length);
317 addrs_len -= len;
318 raw_addr_list += len;
319 }
320
321 return retval;
322}
323
324/********************************************************************
325 * 2nd Level Abstractions
326 ********************************************************************/
327
328/* Does this contain a specified address? Allow wildcarding. */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900329int sctp_bind_addr_match(struct sctp_bind_addr *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 const union sctp_addr *addr,
331 struct sctp_sock *opt)
332{
333 struct sctp_sockaddr_entry *laddr;
Vlad Yasevich559cf712007-09-16 16:03:28 -0700334 int match = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Vlad Yasevich559cf712007-09-16 16:03:28 -0700336 rcu_read_lock();
337 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
338 if (!laddr->valid)
339 continue;
340 if (opt->pf->cmp_addr(&laddr->a, addr, opt)) {
341 match = 1;
342 break;
343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
Vlad Yasevich559cf712007-09-16 16:03:28 -0700345 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Vlad Yasevich559cf712007-09-16 16:03:28 -0700347 return match;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
Vlad Yasevich7dab83d2008-07-18 23:05:40 -0700350/* Does the address 'addr' conflict with any addresses in
351 * the bp.
352 */
353int 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)
357{
358 struct sctp_sockaddr_entry *laddr;
359 int conflict = 0;
360 struct sctp_sock *sp;
361
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.
365 */
366 if (sctp_opt2sk(bp_sp)->sk_family == AF_INET6)
367 sp = bp_sp;
368 else if (sctp_opt2sk(addr_sp)->sk_family == AF_INET6)
369 sp = addr_sp;
370 else
371 sp = bp_sp;
372
373 rcu_read_lock();
374 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
375 if (!laddr->valid)
376 continue;
377
378 conflict = sp->pf->cmp_addr(&laddr->a, addr, sp);
379 if (conflict)
380 break;
381 }
382 rcu_read_unlock();
383
384 return conflict;
385}
386
Vlad Yasevich75205f42007-12-20 14:12:59 -0800387/* Get the state of the entry in the bind_addr_list */
388int sctp_bind_addr_state(const struct sctp_bind_addr *bp,
389 const union sctp_addr *addr)
390{
391 struct sctp_sockaddr_entry *laddr;
392 struct sctp_af *af;
393 int state = -1;
394
395 af = sctp_get_af_specific(addr->sa.sa_family);
396 if (unlikely(!af))
397 return state;
398
399 rcu_read_lock();
400 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
401 if (!laddr->valid)
402 continue;
403 if (af->cmp_addr(&laddr->a, addr)) {
404 state = laddr->state;
405 break;
406 }
407 }
408 rcu_read_unlock();
409
410 return state;
411}
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413/* Find the first address in the bind address list that is not present in
414 * the addrs packed array.
415 */
416union sctp_addr *sctp_find_unmatch_addr(struct sctp_bind_addr *bp,
417 const union sctp_addr *addrs,
418 int addrcnt,
419 struct sctp_sock *opt)
420{
421 struct sctp_sockaddr_entry *laddr;
422 union sctp_addr *addr;
423 void *addr_buf;
424 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 int i;
426
Vlad Yasevich559cf712007-09-16 16:03:28 -0700427 /* This is only called sctp_send_asconf_del_ip() and we hold
428 * the socket lock in that code patch, so that address list
429 * can't change.
430 */
431 list_for_each_entry(laddr, &bp->address_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 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);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900436 if (!af)
Vlad Yasevich559cf712007-09-16 16:03:28 -0700437 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Al Viro5f242a12006-11-20 17:05:23 -0800439 if (opt->pf->cmp_addr(&laddr->a, addr, opt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 break;
441
442 addr_buf += af->sockaddr_len;
443 }
444 if (i == addrcnt)
Al Viro5ae955c2006-11-20 17:22:08 -0800445 return &laddr->a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
447
448 return NULL;
449}
450
451/* Copy out addresses from the global local address list. */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900452static int sctp_copy_one_addr(struct sctp_bind_addr *dest,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 union sctp_addr *addr,
Al Virodd0fc662005-10-07 07:46:04 +0100454 sctp_scope_t scope, gfp_t gfp,
Alexey Dobriyan3182cd842005-07-11 20:57:47 -0700455 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
457 int error = 0;
458
Vlad Yasevich52cae8f2008-08-18 10:34:34 -0400459 if (sctp_is_any(NULL, addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 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.
465 */
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))))
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800471 error = sctp_add_bind_addr(dest, addr, SCTP_ADDR_SRC,
472 gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
474
475 return error;
476}
477
478/* Is this a wildcard address? */
Vlad Yasevich52cae8f2008-08-18 10:34:34 -0400479int sctp_is_any(struct sock *sk, const union sctp_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Vlad Yasevich52cae8f2008-08-18 10:34:34 -0400481 unsigned short fam = 0;
482 struct sctp_af *af;
483
484 /* Try to get the right address family */
485 if (addr->sa.sa_family != AF_UNSPEC)
486 fam = addr->sa.sa_family;
487 else if (sk)
488 fam = sk->sk_family;
489
490 af = sctp_get_af_specific(fam);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (!af)
492 return 0;
Vlad Yasevich52cae8f2008-08-18 10:34:34 -0400493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return af->is_any(addr);
495}
496
497/* Is 'addr' valid for 'scope'? */
498int sctp_in_scope(const union sctp_addr *addr, sctp_scope_t scope)
499{
500 sctp_scope_t addr_scope = sctp_scope(addr);
501
502 /* The unusable SCTP addresses will not be considered with
503 * any defined scopes.
504 */
505 if (SCTP_SCOPE_UNUSABLE == addr_scope)
506 return 0;
507 /*
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.
Bhaskar Dutta72388432009-09-03 17:25:47 +0530512 *
513 * Address scoping can be selectively controlled via sysctl
514 * option
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 */
Bhaskar Dutta72388432009-09-03 17:25:47 +0530516 switch (sctp_scope_policy) {
517 case SCTP_SCOPE_POLICY_DISABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 return 1;
Bhaskar Dutta72388432009-09-03 17:25:47 +0530519 case SCTP_SCOPE_POLICY_ENABLE:
520 if (addr_scope <= scope)
521 return 1;
522 break;
523 case SCTP_SCOPE_POLICY_PRIVATE:
524 if (addr_scope <= scope || SCTP_SCOPE_PRIVATE == addr_scope)
525 return 1;
526 break;
527 case SCTP_SCOPE_POLICY_LINK:
528 if (addr_scope <= scope || SCTP_SCOPE_LINK == addr_scope)
529 return 1;
530 break;
531 default:
532 break;
533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 return 0;
536}
537
538/********************************************************************
539 * 3rd Level Abstractions
540 ********************************************************************/
541
542/* What is the scope of 'addr'? */
543sctp_scope_t sctp_scope(const union sctp_addr *addr)
544{
545 struct sctp_af *af;
546
547 af = sctp_get_af_specific(addr->sa.sa_family);
548 if (!af)
549 return SCTP_SCOPE_UNUSABLE;
550
551 return af->scope((union sctp_addr *)addr);
552}