]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/sctp/bind_addr.c
[SCTP]: Add bind hash locking to the migrate code
[net-next-2.6.git] / net / sctp / bind_addr.c
CommitLineData
1da177e4
LT
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
6 *
7 * This file is part of the SCTP kernel reference implementation.
8 *
9 * A collection class to handle the storage of transport addresses.
10 *
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)
15 * any later version.
16 *
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.
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>
1da177e4
LT
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>
52
53/* Forward declarations for internal helpers. */
54static int sctp_copy_one_addr(struct sctp_bind_addr *, union sctp_addr *,
dd0fc66f 55 sctp_scope_t scope, gfp_t gfp,
3182cd84 56 int flags);
1da177e4
LT
57static 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 */
d808ad9a 64int sctp_bind_addr_copy(struct sctp_bind_addr *dest,
1da177e4 65 const struct sctp_bind_addr *src,
dd0fc66f 66 sctp_scope_t scope, gfp_t gfp,
3182cd84 67 int flags)
1da177e4
LT
68{
69 struct sctp_sockaddr_entry *addr;
70 struct list_head *pos;
71 int error = 0;
72
73 /* All addresses share the same port. */
74 dest->port = src->port;
75
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);
02a8a4db 79 error = sctp_copy_one_addr(dest, &addr->a, scope,
1da177e4
LT
80 gfp, flags);
81 if (error < 0)
82 goto out;
83 }
84
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.
88 */
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,
92 list);
02a8a4db 93 error = sctp_copy_one_addr(dest, &addr->a,
1da177e4
LT
94 SCTP_SCOPE_LINK, gfp,
95 flags);
96 if (error < 0)
97 goto out;
98 }
99 }
100
101out:
102 if (error)
103 sctp_bind_addr_clean(dest);
104
105 return error;
106}
107
108/* Initialize the SCTP_bind_addr structure for either an endpoint or
109 * an association.
110 */
111void sctp_bind_addr_init(struct sctp_bind_addr *bp, __u16 port)
112{
113 bp->malloced = 0;
114
115 INIT_LIST_HEAD(&bp->address_list);
116 bp->port = port;
117}
118
119/* Dispose of the address list. */
120static void sctp_bind_addr_clean(struct sctp_bind_addr *bp)
121{
122 struct sctp_sockaddr_entry *addr;
123 struct list_head *pos, *temp;
124
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);
128 list_del(pos);
129 kfree(addr);
130 SCTP_DBG_OBJCNT_DEC(addr);
131 }
132}
133
134/* Dispose of an SCTP_bind_addr structure */
135void sctp_bind_addr_free(struct sctp_bind_addr *bp)
136{
137 /* Empty the bind address list. */
138 sctp_bind_addr_clean(bp);
139
140 if (bp->malloced) {
141 kfree(bp);
142 SCTP_DBG_OBJCNT_DEC(bind_addr);
143 }
144}
145
146/* Add an address to the bind address list in the SCTP_bind_addr structure. */
147int sctp_add_bind_addr(struct sctp_bind_addr *bp, union sctp_addr *new,
dc022a98 148 __u8 use_as_src, gfp_t gfp)
1da177e4
LT
149{
150 struct sctp_sockaddr_entry *addr;
151
152 /* Add the address to the bind address list. */
153 addr = t_new(struct sctp_sockaddr_entry, gfp);
154 if (!addr)
155 return -ENOMEM;
156
5ab7b859 157 memcpy(&addr->a, new, sizeof(*new));
1da177e4
LT
158
159 /* Fix up the port if it has not yet been set.
160 * Both v4 and v6 have the port at the same offset.
161 */
5ab7b859
AV
162 if (!addr->a.v4.sin_port)
163 addr->a.v4.sin_port = htons(bp->port);
1da177e4 164
dc022a98 165 addr->use_as_src = use_as_src;
29303547 166 addr->valid = 1;
dc022a98 167
1da177e4 168 INIT_LIST_HEAD(&addr->list);
29303547 169 INIT_RCU_HEAD(&addr->rcu);
559cf710
VY
170
171 /* We always hold a socket lock when calling this function,
172 * and that acts as a writer synchronizing lock.
173 */
174 list_add_tail_rcu(&addr->list, &bp->address_list);
1da177e4
LT
175 SCTP_DBG_OBJCNT_INC(addr);
176
177 return 0;
178}
179
180/* Delete an address from the bind address list in the SCTP_bind_addr
181 * structure.
182 */
0ed90fb0 183int sctp_del_bind_addr(struct sctp_bind_addr *bp, union sctp_addr *del_addr)
1da177e4 184{
559cf710 185 struct sctp_sockaddr_entry *addr, *temp;
1da177e4 186
559cf710
VY
187 /* We hold the socket lock when calling this function,
188 * and that acts as a writer synchronizing lock.
189 */
190 list_for_each_entry_safe(addr, temp, &bp->address_list, list) {
c9a08505 191 if (sctp_cmp_addr_exact(&addr->a, del_addr)) {
1da177e4 192 /* Found the exact match. */
559cf710
VY
193 addr->valid = 0;
194 list_del_rcu(&addr->list);
195 break;
1da177e4
LT
196 }
197 }
198
559cf710 199 if (addr && !addr->valid) {
0ed90fb0 200 call_rcu(&addr->rcu, sctp_local_addr_free);
559cf710 201 SCTP_DBG_OBJCNT_DEC(addr);
0ed90fb0 202 return 0;
559cf710
VY
203 }
204
1da177e4
LT
205 return -EINVAL;
206}
207
208/* Create a network byte-order representation of all the addresses
209 * formated as SCTP parameters.
210 *
211 * The second argument is the return value for the length.
212 */
213union sctp_params sctp_bind_addrs_to_raw(const struct sctp_bind_addr *bp,
3182cd84 214 int *addrs_len,
dd0fc66f 215 gfp_t gfp)
1da177e4
LT
216{
217 union sctp_params addrparms;
218 union sctp_params retval;
219 int addrparms_len;
220 union sctp_addr_param rawaddr;
221 int len;
222 struct sctp_sockaddr_entry *addr;
223 struct list_head *pos;
224 struct sctp_af *af;
225
226 addrparms_len = 0;
227 len = 0;
228
229 /* Allocate enough memory at once. */
230 list_for_each(pos, &bp->address_list) {
231 len += sizeof(union sctp_addr_param);
232 }
233
234 /* Don't even bother embedding an address if there
235 * is only one.
236 */
237 if (len == sizeof(union sctp_addr_param)) {
238 retval.v = NULL;
239 goto end_raw;
240 }
241
242 retval.v = kmalloc(len, gfp);
243 if (!retval.v)
244 goto end_raw;
245
246 addrparms = retval;
247
248 list_for_each(pos, &bp->address_list) {
249 addr = list_entry(pos, struct sctp_sockaddr_entry, list);
6244be4e
AV
250 af = sctp_get_af_specific(addr->a.v4.sin_family);
251 len = af->to_addr_param(&addr->a, &rawaddr);
1da177e4
LT
252 memcpy(addrparms.v, &rawaddr, len);
253 addrparms.v += len;
254 addrparms_len += len;
255 }
256
257end_raw:
258 *addrs_len = addrparms_len;
259 return retval;
260}
261
262/*
263 * Create an address list out of the raw address list format (IPv4 and IPv6
264 * address parameters).
265 */
266int sctp_raw_to_bind_addrs(struct sctp_bind_addr *bp, __u8 *raw_addr_list,
dd0fc66f 267 int addrs_len, __u16 port, gfp_t gfp)
1da177e4
LT
268{
269 union sctp_addr_param *rawaddr;
270 struct sctp_paramhdr *param;
271 union sctp_addr addr;
272 int retval = 0;
273 int len;
274 struct sctp_af *af;
275
276 /* Convert the raw address to standard address format */
277 while (addrs_len) {
278 param = (struct sctp_paramhdr *)raw_addr_list;
279 rawaddr = (union sctp_addr_param *)raw_addr_list;
280
281 af = sctp_get_af_specific(param_type2af(param->type));
282 if (unlikely(!af)) {
283 retval = -EINVAL;
284 sctp_bind_addr_clean(bp);
285 break;
286 }
287
dd86d136
AV
288 af->from_addr_param(&addr, rawaddr, htons(port), 0);
289 retval = sctp_add_bind_addr(bp, &addr, 1, gfp);
1da177e4
LT
290 if (retval) {
291 /* Can't finish building the list, clean up. */
292 sctp_bind_addr_clean(bp);
293 break;
294 }
295
296 len = ntohs(param->length);
297 addrs_len -= len;
298 raw_addr_list += len;
299 }
300
301 return retval;
302}
303
304/********************************************************************
305 * 2nd Level Abstractions
306 ********************************************************************/
307
308/* Does this contain a specified address? Allow wildcarding. */
d808ad9a 309int sctp_bind_addr_match(struct sctp_bind_addr *bp,
1da177e4
LT
310 const union sctp_addr *addr,
311 struct sctp_sock *opt)
312{
313 struct sctp_sockaddr_entry *laddr;
559cf710
VY
314 int match = 0;
315
316 rcu_read_lock();
317 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
318 if (!laddr->valid)
319 continue;
320 if (opt->pf->cmp_addr(&laddr->a, addr, opt)) {
321 match = 1;
322 break;
323 }
1da177e4 324 }
559cf710 325 rcu_read_unlock();
1da177e4 326
559cf710 327 return match;
1da177e4
LT
328}
329
330/* Find the first address in the bind address list that is not present in
331 * the addrs packed array.
332 */
333union sctp_addr *sctp_find_unmatch_addr(struct sctp_bind_addr *bp,
334 const union sctp_addr *addrs,
335 int addrcnt,
336 struct sctp_sock *opt)
337{
338 struct sctp_sockaddr_entry *laddr;
339 union sctp_addr *addr;
340 void *addr_buf;
341 struct sctp_af *af;
1da177e4
LT
342 int i;
343
559cf710
VY
344 /* This is only called sctp_send_asconf_del_ip() and we hold
345 * the socket lock in that code patch, so that address list
346 * can't change.
347 */
348 list_for_each_entry(laddr, &bp->address_list, list) {
1da177e4
LT
349 addr_buf = (union sctp_addr *)addrs;
350 for (i = 0; i < addrcnt; i++) {
351 addr = (union sctp_addr *)addr_buf;
352 af = sctp_get_af_specific(addr->v4.sin_family);
d808ad9a 353 if (!af)
559cf710 354 break;
1da177e4 355
5f242a13 356 if (opt->pf->cmp_addr(&laddr->a, addr, opt))
1da177e4
LT
357 break;
358
359 addr_buf += af->sockaddr_len;
360 }
361 if (i == addrcnt)
5ae955cf 362 return &laddr->a;
1da177e4
LT
363 }
364
365 return NULL;
366}
367
368/* Copy out addresses from the global local address list. */
d808ad9a 369static int sctp_copy_one_addr(struct sctp_bind_addr *dest,
1da177e4 370 union sctp_addr *addr,
dd0fc66f 371 sctp_scope_t scope, gfp_t gfp,
3182cd84 372 int flags)
1da177e4
LT
373{
374 int error = 0;
375
376 if (sctp_is_any(addr)) {
377 error = sctp_copy_local_addr_list(dest, scope, gfp, flags);
378 } else if (sctp_in_scope(addr, scope)) {
379 /* Now that the address is in scope, check to see if
380 * the address type is supported by local sock as
381 * well as the remote peer.
382 */
383 if ((((AF_INET == addr->sa.sa_family) &&
384 (flags & SCTP_ADDR4_PEERSUPP))) ||
385 (((AF_INET6 == addr->sa.sa_family) &&
386 (flags & SCTP_ADDR6_ALLOWED) &&
387 (flags & SCTP_ADDR6_PEERSUPP))))
02a8a4db 388 error = sctp_add_bind_addr(dest, addr, 1, gfp);
1da177e4
LT
389 }
390
391 return error;
392}
393
394/* Is this a wildcard address? */
395int sctp_is_any(const union sctp_addr *addr)
396{
397 struct sctp_af *af = sctp_get_af_specific(addr->sa.sa_family);
398 if (!af)
399 return 0;
400 return af->is_any(addr);
401}
402
403/* Is 'addr' valid for 'scope'? */
404int sctp_in_scope(const union sctp_addr *addr, sctp_scope_t scope)
405{
406 sctp_scope_t addr_scope = sctp_scope(addr);
407
408 /* The unusable SCTP addresses will not be considered with
409 * any defined scopes.
410 */
411 if (SCTP_SCOPE_UNUSABLE == addr_scope)
412 return 0;
413 /*
414 * For INIT and INIT-ACK address list, let L be the level of
415 * of requested destination address, sender and receiver
416 * SHOULD include all of its addresses with level greater
417 * than or equal to L.
418 */
419 if (addr_scope <= scope)
420 return 1;
421
422 return 0;
423}
424
425/********************************************************************
426 * 3rd Level Abstractions
427 ********************************************************************/
428
429/* What is the scope of 'addr'? */
430sctp_scope_t sctp_scope(const union sctp_addr *addr)
431{
432 struct sctp_af *af;
433
434 af = sctp_get_af_specific(addr->sa.sa_family);
435 if (!af)
436 return SCTP_SCOPE_UNUSABLE;
437
438 return af->scope((union sctp_addr *)addr);
439}