blob: 9085e531d575c275b0a63a8b5554bad4e36a3b2a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* 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>
46#include <linux/sched.h>
47#include <linux/in.h>
48#include <net/sock.h>
49#include <net/ipv6.h>
50#include <net/if_inet6.h>
51#include <net/sctp/sctp.h>
52#include <net/sctp/sm.h>
53
54/* Forward declarations for internal helpers. */
55static int sctp_copy_one_addr(struct sctp_bind_addr *, union sctp_addr *,
Al Virodd0fc662005-10-07 07:46:04 +010056 sctp_scope_t scope, gfp_t gfp,
Alexey Dobriyan3182cd82005-07-11 20:57:47 -070057 int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static void sctp_bind_addr_clean(struct sctp_bind_addr *);
59
60/* First Level Abstractions. */
61
62/* Copy 'src' to 'dest' taking 'scope' into account. Omit addresses
63 * in 'src' which have a broader scope than 'scope'.
64 */
65int sctp_bind_addr_copy(struct sctp_bind_addr *dest,
66 const struct sctp_bind_addr *src,
Al Virodd0fc662005-10-07 07:46:04 +010067 sctp_scope_t scope, gfp_t gfp,
Alexey Dobriyan3182cd82005-07-11 20:57:47 -070068 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
70 struct sctp_sockaddr_entry *addr;
71 struct list_head *pos;
72 int error = 0;
73
74 /* All addresses share the same port. */
75 dest->port = src->port;
76
77 /* Extract the addresses which are relevant for this scope. */
78 list_for_each(pos, &src->address_list) {
79 addr = list_entry(pos, struct sctp_sockaddr_entry, list);
Al Viro09ef7fe2006-11-20 17:04:10 -080080 error = sctp_copy_one_addr(dest, &addr->a_h, scope,
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 gfp, flags);
82 if (error < 0)
83 goto out;
84 }
85
86 /* If there are no addresses matching the scope and
87 * this is global scope, try to get a link scope address, with
88 * the assumption that we must be sitting behind a NAT.
89 */
90 if (list_empty(&dest->address_list) && (SCTP_SCOPE_GLOBAL == scope)) {
91 list_for_each(pos, &src->address_list) {
92 addr = list_entry(pos, struct sctp_sockaddr_entry,
93 list);
Al Viro09ef7fe2006-11-20 17:04:10 -080094 error = sctp_copy_one_addr(dest, &addr->a_h,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 SCTP_SCOPE_LINK, gfp,
96 flags);
97 if (error < 0)
98 goto out;
99 }
100 }
101
102out:
103 if (error)
104 sctp_bind_addr_clean(dest);
105
106 return error;
107}
108
109/* Initialize the SCTP_bind_addr structure for either an endpoint or
110 * an association.
111 */
112void sctp_bind_addr_init(struct sctp_bind_addr *bp, __u16 port)
113{
114 bp->malloced = 0;
115
116 INIT_LIST_HEAD(&bp->address_list);
117 bp->port = port;
118}
119
120/* Dispose of the address list. */
121static void sctp_bind_addr_clean(struct sctp_bind_addr *bp)
122{
123 struct sctp_sockaddr_entry *addr;
124 struct list_head *pos, *temp;
125
126 /* Empty the bind address list. */
127 list_for_each_safe(pos, temp, &bp->address_list) {
128 addr = list_entry(pos, struct sctp_sockaddr_entry, list);
129 list_del(pos);
130 kfree(addr);
131 SCTP_DBG_OBJCNT_DEC(addr);
132 }
133}
134
135/* Dispose of an SCTP_bind_addr structure */
136void sctp_bind_addr_free(struct sctp_bind_addr *bp)
137{
138 /* Empty the bind address list. */
139 sctp_bind_addr_clean(bp);
140
141 if (bp->malloced) {
142 kfree(bp);
143 SCTP_DBG_OBJCNT_DEC(bind_addr);
144 }
145}
146
147/* Add an address to the bind address list in the SCTP_bind_addr structure. */
148int sctp_add_bind_addr(struct sctp_bind_addr *bp, union sctp_addr *new,
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700149 __u8 use_as_src, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
151 struct sctp_sockaddr_entry *addr;
152
153 /* Add the address to the bind address list. */
154 addr = t_new(struct sctp_sockaddr_entry, gfp);
155 if (!addr)
156 return -ENOMEM;
157
Al Viro09ef7fe2006-11-20 17:04:10 -0800158 memcpy(&addr->a_h, new, sizeof(*new));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 /* Fix up the port if it has not yet been set.
161 * Both v4 and v6 have the port at the same offset.
162 */
Al Viro09ef7fe2006-11-20 17:04:10 -0800163 if (!addr->a_h.v4.sin_port)
164 addr->a_h.v4.sin_port = bp->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Al Viro2a6fd782006-11-20 17:04:42 -0800166 flip_to_n(&addr->a, &addr->a_h);
167
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700168 addr->use_as_src = use_as_src;
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 INIT_LIST_HEAD(&addr->list);
171 list_add_tail(&addr->list, &bp->address_list);
172 SCTP_DBG_OBJCNT_INC(addr);
173
174 return 0;
175}
176
177/* Delete an address from the bind address list in the SCTP_bind_addr
178 * structure.
179 */
180int sctp_del_bind_addr(struct sctp_bind_addr *bp, union sctp_addr *del_addr)
181{
182 struct list_head *pos, *temp;
183 struct sctp_sockaddr_entry *addr;
Al Viro5f242a12006-11-20 17:05:23 -0800184 union sctp_addr tmp;
185
186 flip_to_n(&tmp, del_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 list_for_each_safe(pos, temp, &bp->address_list) {
189 addr = list_entry(pos, struct sctp_sockaddr_entry, list);
Al Viro5f242a12006-11-20 17:05:23 -0800190 if (sctp_cmp_addr_exact(&addr->a, &tmp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 /* Found the exact match. */
192 list_del(pos);
193 kfree(addr);
194 SCTP_DBG_OBJCNT_DEC(addr);
195
196 return 0;
197 }
198 }
199
200 return -EINVAL;
201}
202
203/* Create a network byte-order representation of all the addresses
204 * formated as SCTP parameters.
205 *
206 * The second argument is the return value for the length.
207 */
208union sctp_params sctp_bind_addrs_to_raw(const struct sctp_bind_addr *bp,
Alexey Dobriyan3182cd82005-07-11 20:57:47 -0700209 int *addrs_len,
Al Virodd0fc662005-10-07 07:46:04 +0100210 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 union sctp_params addrparms;
213 union sctp_params retval;
214 int addrparms_len;
215 union sctp_addr_param rawaddr;
216 int len;
217 struct sctp_sockaddr_entry *addr;
218 struct list_head *pos;
219 struct sctp_af *af;
220
221 addrparms_len = 0;
222 len = 0;
223
224 /* Allocate enough memory at once. */
225 list_for_each(pos, &bp->address_list) {
226 len += sizeof(union sctp_addr_param);
227 }
228
229 /* Don't even bother embedding an address if there
230 * is only one.
231 */
232 if (len == sizeof(union sctp_addr_param)) {
233 retval.v = NULL;
234 goto end_raw;
235 }
236
237 retval.v = kmalloc(len, gfp);
238 if (!retval.v)
239 goto end_raw;
240
241 addrparms = retval;
242
243 list_for_each(pos, &bp->address_list) {
244 addr = list_entry(pos, struct sctp_sockaddr_entry, list);
Al Viro09ef7fe2006-11-20 17:04:10 -0800245 af = sctp_get_af_specific(addr->a_h.v4.sin_family);
246 len = af->to_addr_param(&addr->a_h, &rawaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 memcpy(addrparms.v, &rawaddr, len);
248 addrparms.v += len;
249 addrparms_len += len;
250 }
251
252end_raw:
253 *addrs_len = addrparms_len;
254 return retval;
255}
256
257/*
258 * Create an address list out of the raw address list format (IPv4 and IPv6
259 * address parameters).
260 */
261int sctp_raw_to_bind_addrs(struct sctp_bind_addr *bp, __u8 *raw_addr_list,
Al Virodd0fc662005-10-07 07:46:04 +0100262 int addrs_len, __u16 port, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
264 union sctp_addr_param *rawaddr;
265 struct sctp_paramhdr *param;
266 union sctp_addr addr;
267 int retval = 0;
268 int len;
269 struct sctp_af *af;
270
271 /* Convert the raw address to standard address format */
272 while (addrs_len) {
273 param = (struct sctp_paramhdr *)raw_addr_list;
274 rawaddr = (union sctp_addr_param *)raw_addr_list;
275
276 af = sctp_get_af_specific(param_type2af(param->type));
277 if (unlikely(!af)) {
278 retval = -EINVAL;
279 sctp_bind_addr_clean(bp);
280 break;
281 }
282
283 af->from_addr_param(&addr, rawaddr, port, 0);
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700284 retval = sctp_add_bind_addr(bp, &addr, 1, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (retval) {
286 /* Can't finish building the list, clean up. */
287 sctp_bind_addr_clean(bp);
288 break;
289 }
290
291 len = ntohs(param->length);
292 addrs_len -= len;
293 raw_addr_list += len;
294 }
295
296 return retval;
297}
298
299/********************************************************************
300 * 2nd Level Abstractions
301 ********************************************************************/
302
303/* Does this contain a specified address? Allow wildcarding. */
304int sctp_bind_addr_match(struct sctp_bind_addr *bp,
305 const union sctp_addr *addr,
306 struct sctp_sock *opt)
307{
308 struct sctp_sockaddr_entry *laddr;
309 struct list_head *pos;
Al Viro5f242a12006-11-20 17:05:23 -0800310 union sctp_addr tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Al Viro5f242a12006-11-20 17:05:23 -0800312 flip_to_n(&tmp, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 list_for_each(pos, &bp->address_list) {
314 laddr = list_entry(pos, struct sctp_sockaddr_entry, list);
Al Viro5f242a12006-11-20 17:05:23 -0800315 if (opt->pf->cmp_addr(&laddr->a, &tmp, opt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return 1;
317 }
318
319 return 0;
320}
321
322/* Find the first address in the bind address list that is not present in
323 * the addrs packed array.
324 */
325union sctp_addr *sctp_find_unmatch_addr(struct sctp_bind_addr *bp,
326 const union sctp_addr *addrs,
327 int addrcnt,
328 struct sctp_sock *opt)
329{
330 struct sctp_sockaddr_entry *laddr;
331 union sctp_addr *addr;
332 void *addr_buf;
333 struct sctp_af *af;
334 struct list_head *pos;
335 int i;
336
337 list_for_each(pos, &bp->address_list) {
338 laddr = list_entry(pos, struct sctp_sockaddr_entry, list);
339
340 addr_buf = (union sctp_addr *)addrs;
341 for (i = 0; i < addrcnt; i++) {
342 addr = (union sctp_addr *)addr_buf;
343 af = sctp_get_af_specific(addr->v4.sin_family);
344 if (!af)
345 return NULL;
346
Al Viro5f242a12006-11-20 17:05:23 -0800347 if (opt->pf->cmp_addr(&laddr->a, addr, opt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 break;
349
350 addr_buf += af->sockaddr_len;
351 }
352 if (i == addrcnt)
Al Viro09ef7fe2006-11-20 17:04:10 -0800353 return &laddr->a_h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
355
356 return NULL;
357}
358
359/* Copy out addresses from the global local address list. */
360static int sctp_copy_one_addr(struct sctp_bind_addr *dest,
361 union sctp_addr *addr,
Al Virodd0fc662005-10-07 07:46:04 +0100362 sctp_scope_t scope, gfp_t gfp,
Alexey Dobriyan3182cd82005-07-11 20:57:47 -0700363 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
365 int error = 0;
366
367 if (sctp_is_any(addr)) {
368 error = sctp_copy_local_addr_list(dest, scope, gfp, flags);
369 } else if (sctp_in_scope(addr, scope)) {
370 /* Now that the address is in scope, check to see if
371 * the address type is supported by local sock as
372 * well as the remote peer.
373 */
374 if ((((AF_INET == addr->sa.sa_family) &&
375 (flags & SCTP_ADDR4_PEERSUPP))) ||
376 (((AF_INET6 == addr->sa.sa_family) &&
377 (flags & SCTP_ADDR6_ALLOWED) &&
378 (flags & SCTP_ADDR6_PEERSUPP))))
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700379 error = sctp_add_bind_addr(dest, addr, 1, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381
382 return error;
383}
384
385/* Is this a wildcard address? */
386int sctp_is_any(const union sctp_addr *addr)
387{
388 struct sctp_af *af = sctp_get_af_specific(addr->sa.sa_family);
389 if (!af)
390 return 0;
391 return af->is_any(addr);
392}
393
394/* Is 'addr' valid for 'scope'? */
395int sctp_in_scope(const union sctp_addr *addr, sctp_scope_t scope)
396{
397 sctp_scope_t addr_scope = sctp_scope(addr);
398
399 /* The unusable SCTP addresses will not be considered with
400 * any defined scopes.
401 */
402 if (SCTP_SCOPE_UNUSABLE == addr_scope)
403 return 0;
404 /*
405 * For INIT and INIT-ACK address list, let L be the level of
406 * of requested destination address, sender and receiver
407 * SHOULD include all of its addresses with level greater
408 * than or equal to L.
409 */
410 if (addr_scope <= scope)
411 return 1;
412
413 return 0;
414}
415
416/********************************************************************
417 * 3rd Level Abstractions
418 ********************************************************************/
419
420/* What is the scope of 'addr'? */
421sctp_scope_t sctp_scope(const union sctp_addr *addr)
422{
423 struct sctp_af *af;
424
425 af = sctp_get_af_specific(addr->sa.sa_family);
426 if (!af)
427 return SCTP_SCOPE_UNUSABLE;
428
429 return af->scope((union sctp_addr *)addr);
430}