ext4: Issue the discard operation *before* releasing the blocks to be reused
[linux-2.6/x86.git] / net / sctp / bind_addr.c
blobbef1337316837c8dce7b97bdd89560ecee23cbdd
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)
15 * any later version.
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
29 * email address(es):
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>
46 #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>
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,
56 int flags);
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,
67 int flags)
69 struct sctp_sockaddr_entry *addr;
70 int error = 0;
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,
78 gfp, flags);
79 if (error < 0)
80 goto out;
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,
90 SCTP_SCOPE_LINK, gfp,
91 flags);
92 if (error < 0)
93 goto out;
97 out:
98 if (error)
99 sctp_bind_addr_clean(dest);
101 return error;
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,
111 gfp_t gfp)
113 struct sctp_sockaddr_entry *addr;
114 int error = 0;
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);
121 if (error < 0)
122 break;
125 return error;
128 /* Initialize the SCTP_bind_addr structure for either an endpoint or
129 * an association.
131 void sctp_bind_addr_init(struct sctp_bind_addr *bp, __u16 port)
133 bp->malloced = 0;
135 INIT_LIST_HEAD(&bp->address_list);
136 bp->port = port;
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);
148 list_del(pos);
149 kfree(addr);
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);
160 if (bp->malloced) {
161 kfree(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);
174 if (!addr)
175 return -ENOMEM;
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;
186 addr->valid = 1;
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);
196 return 0;
199 /* Delete an address from the bind address list in the SCTP_bind_addr
200 * structure.
202 int sctp_del_bind_addr(struct sctp_bind_addr *bp, union sctp_addr *del_addr)
204 struct sctp_sockaddr_entry *addr, *temp;
205 int found = 0;
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. */
213 found = 1;
214 addr->valid = 0;
215 list_del_rcu(&addr->list);
216 break;
220 if (found) {
221 call_rcu(&addr->rcu, sctp_local_addr_free);
222 SCTP_DBG_OBJCNT_DEC(addr);
223 return 0;
226 return -EINVAL;
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,
235 int *addrs_len,
236 gfp_t gfp)
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;
247 addrparms_len = 0;
248 len = 0;
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
256 * is only one.
258 if (len == sizeof(union sctp_addr_param)) {
259 retval.v = NULL;
260 goto end_raw;
263 retval.v = kmalloc(len, gfp);
264 if (!retval.v)
265 goto end_raw;
267 addrparms = retval;
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);
273 addrparms.v += len;
274 addrparms_len += len;
277 end_raw:
278 *addrs_len = addrparms_len;
279 return retval;
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;
292 int retval = 0;
293 int len;
294 struct sctp_af *af;
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;
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;
308 af->from_addr_param(&addr, rawaddr, htons(port), 0);
309 retval = sctp_add_bind_addr(bp, &addr, SCTP_ADDR_SRC, gfp);
310 if (retval) {
311 /* Can't finish building the list, clean up. */
312 sctp_bind_addr_clean(bp);
313 break;
316 len = ntohs(param->length);
317 addrs_len -= len;
318 raw_addr_list += len;
321 return retval;
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;
334 int match = 0;
336 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;
345 rcu_read_unlock();
347 return match;
350 /* Does the address 'addr' conflict with any addresses in
351 * the bp.
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;
359 int conflict = 0;
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)
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;
373 rcu_read_lock();
374 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
375 if (!laddr->valid)
376 continue;
378 conflict = sp->pf->cmp_addr(&laddr->a, addr, sp);
379 if (conflict)
380 break;
382 rcu_read_unlock();
384 return conflict;
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;
392 struct sctp_af *af;
393 int state = -1;
395 af = sctp_get_af_specific(addr->sa.sa_family);
396 if (unlikely(!af))
397 return state;
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;
408 rcu_read_unlock();
410 return 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,
418 int addrcnt,
419 struct sctp_sock *opt)
421 struct sctp_sockaddr_entry *laddr;
422 union sctp_addr *addr;
423 void *addr_buf;
424 struct sctp_af *af;
425 int i;
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
429 * can't change.
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);
436 if (!af)
437 break;
439 if (opt->pf->cmp_addr(&laddr->a, addr, opt))
440 break;
442 addr_buf += af->sockaddr_len;
444 if (i == addrcnt)
445 return &laddr->a;
448 return NULL;
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,
455 int flags)
457 int error = 0;
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,
472 gfp);
475 return error;
478 /* Is this a wildcard address? */
479 int sctp_is_any(struct sock *sk, const union sctp_addr *addr)
481 unsigned short fam = 0;
482 struct sctp_af *af;
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;
490 af = sctp_get_af_specific(fam);
491 if (!af)
492 return 0;
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)
506 return 0;
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
514 * option
516 switch (sctp_scope_policy) {
517 case SCTP_SCOPE_POLICY_DISABLE:
518 return 1;
519 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;
535 return 0;
538 /********************************************************************
539 * 3rd Level Abstractions
540 ********************************************************************/
542 /* What is the scope of 'addr'? */
543 sctp_scope_t sctp_scope(const union sctp_addr *addr)
545 struct sctp_af *af;
547 af = sctp_get_af_specific(addr->sa.sa_family);
548 if (!af)
549 return SCTP_SCOPE_UNUSABLE;
551 return af->scope((union sctp_addr *)addr);