Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* SCTP kernel reference Implementation |
| 2 | * (C) Copyright IBM Corp. 2001, 2004 |
| 3 | * Copyright (c) 1999-2000 Cisco, Inc. |
| 4 | * Copyright (c) 1999-2001 Motorola, Inc. |
| 5 | * Copyright (c) 2001 Intel Corp. |
| 6 | * Copyright (c) 2001 La Monte H.P. Yarroll |
| 7 | * |
| 8 | * This file is part of the SCTP kernel reference Implementation |
| 9 | * |
| 10 | * This module provides the abstraction for an SCTP association. |
| 11 | * |
| 12 | * The SCTP reference implementation is free software; |
| 13 | * you can redistribute it and/or modify it under the terms of |
| 14 | * the GNU General Public License as published by |
| 15 | * the Free Software Foundation; either version 2, or (at your option) |
| 16 | * any later version. |
| 17 | * |
| 18 | * The SCTP reference implementation is distributed in the hope that it |
| 19 | * will be useful, but WITHOUT ANY WARRANTY; without even the implied |
| 20 | * ************************ |
| 21 | * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| 22 | * See the GNU General Public License for more details. |
| 23 | * |
| 24 | * You should have received a copy of the GNU General Public License |
| 25 | * along with GNU CC; see the file COPYING. If not, write to |
| 26 | * the Free Software Foundation, 59 Temple Place - Suite 330, |
| 27 | * Boston, MA 02111-1307, USA. |
| 28 | * |
| 29 | * Please send any bug reports or fixes you make to the |
| 30 | * email address(es): |
| 31 | * lksctp developers <lksctp-developers@lists.sourceforge.net> |
| 32 | * |
| 33 | * Or submit a bug report through the following website: |
| 34 | * http://www.sf.net/projects/lksctp |
| 35 | * |
| 36 | * Written or modified by: |
| 37 | * La Monte H.P. Yarroll <piggy@acm.org> |
| 38 | * Karl Knutson <karl@athena.chicago.il.us> |
| 39 | * Jon Grimm <jgrimm@us.ibm.com> |
| 40 | * Xingang Guo <xingang.guo@intel.com> |
| 41 | * Hui Huang <hui.huang@nokia.com> |
| 42 | * Sridhar Samudrala <sri@us.ibm.com> |
| 43 | * Daisy Chang <daisyc@us.ibm.com> |
| 44 | * Ryan Layer <rmlayer@us.ibm.com> |
| 45 | * Kevin Gao <kevin.gao@intel.com> |
| 46 | * |
| 47 | * Any bugs reported given to us we will try to fix... any fixes shared will |
| 48 | * be incorporated into the next SCTP release. |
| 49 | */ |
| 50 | |
| 51 | #include <linux/types.h> |
| 52 | #include <linux/fcntl.h> |
| 53 | #include <linux/poll.h> |
| 54 | #include <linux/init.h> |
| 55 | #include <linux/sched.h> |
| 56 | |
| 57 | #include <linux/slab.h> |
| 58 | #include <linux/in.h> |
| 59 | #include <net/ipv6.h> |
| 60 | #include <net/sctp/sctp.h> |
| 61 | #include <net/sctp/sm.h> |
| 62 | |
| 63 | /* Forward declarations for internal functions. */ |
| 64 | static void sctp_assoc_bh_rcv(struct sctp_association *asoc); |
| 65 | |
| 66 | |
| 67 | /* 1st Level Abstractions. */ |
| 68 | |
| 69 | /* Initialize a new association from provided memory. */ |
| 70 | static struct sctp_association *sctp_association_init(struct sctp_association *asoc, |
| 71 | const struct sctp_endpoint *ep, |
| 72 | const struct sock *sk, |
| 73 | sctp_scope_t scope, |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 74 | gfp_t gfp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | { |
| 76 | struct sctp_sock *sp; |
| 77 | int i; |
| 78 | |
| 79 | /* Retrieve the SCTP per socket area. */ |
| 80 | sp = sctp_sk((struct sock *)sk); |
| 81 | |
| 82 | /* Init all variables to a known value. */ |
| 83 | memset(asoc, 0, sizeof(struct sctp_association)); |
| 84 | |
| 85 | /* Discarding const is appropriate here. */ |
| 86 | asoc->ep = (struct sctp_endpoint *)ep; |
| 87 | sctp_endpoint_hold(asoc->ep); |
| 88 | |
| 89 | /* Hold the sock. */ |
| 90 | asoc->base.sk = (struct sock *)sk; |
| 91 | sock_hold(asoc->base.sk); |
| 92 | |
| 93 | /* Initialize the common base substructure. */ |
| 94 | asoc->base.type = SCTP_EP_TYPE_ASSOCIATION; |
| 95 | |
| 96 | /* Initialize the object handling fields. */ |
| 97 | atomic_set(&asoc->base.refcnt, 1); |
| 98 | asoc->base.dead = 0; |
| 99 | asoc->base.malloced = 0; |
| 100 | |
| 101 | /* Initialize the bind addr area. */ |
| 102 | sctp_bind_addr_init(&asoc->base.bind_addr, ep->base.bind_addr.port); |
| 103 | rwlock_init(&asoc->base.addr_lock); |
| 104 | |
| 105 | asoc->state = SCTP_STATE_CLOSED; |
| 106 | |
| 107 | /* Set these values from the socket values, a conversion between |
| 108 | * millsecons to seconds/microseconds must also be done. |
| 109 | */ |
| 110 | asoc->cookie_life.tv_sec = sp->assocparams.sasoc_cookie_life / 1000; |
| 111 | asoc->cookie_life.tv_usec = (sp->assocparams.sasoc_cookie_life % 1000) |
| 112 | * 1000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | asoc->frag_point = 0; |
| 114 | |
| 115 | /* Set the association max_retrans and RTO values from the |
| 116 | * socket values. |
| 117 | */ |
| 118 | asoc->max_retrans = sp->assocparams.sasoc_asocmaxrxt; |
| 119 | asoc->rto_initial = msecs_to_jiffies(sp->rtoinfo.srto_initial); |
| 120 | asoc->rto_max = msecs_to_jiffies(sp->rtoinfo.srto_max); |
| 121 | asoc->rto_min = msecs_to_jiffies(sp->rtoinfo.srto_min); |
| 122 | |
| 123 | asoc->overall_error_count = 0; |
| 124 | |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 125 | /* Initialize the association's heartbeat interval based on the |
| 126 | * sock configured value. |
| 127 | */ |
| 128 | asoc->hbinterval = msecs_to_jiffies(sp->hbinterval); |
| 129 | |
| 130 | /* Initialize path max retrans value. */ |
| 131 | asoc->pathmaxrxt = sp->pathmaxrxt; |
| 132 | |
| 133 | /* Initialize default path MTU. */ |
| 134 | asoc->pathmtu = sp->pathmtu; |
| 135 | |
| 136 | /* Set association default SACK delay */ |
| 137 | asoc->sackdelay = msecs_to_jiffies(sp->sackdelay); |
| 138 | |
| 139 | /* Set the association default flags controlling |
| 140 | * Heartbeat, SACK delay, and Path MTU Discovery. |
| 141 | */ |
| 142 | asoc->param_flags = sp->param_flags; |
| 143 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | /* Initialize the maximum mumber of new data packets that can be sent |
| 145 | * in a burst. |
| 146 | */ |
| 147 | asoc->max_burst = sctp_max_burst; |
| 148 | |
Vladislav Yasevich | 1e7d3d9 | 2005-11-11 16:06:16 -0800 | [diff] [blame] | 149 | /* initialize association timers */ |
| 150 | asoc->timeouts[SCTP_EVENT_TIMEOUT_NONE] = 0; |
| 151 | asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_COOKIE] = asoc->rto_initial; |
| 152 | asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_INIT] = asoc->rto_initial; |
| 153 | asoc->timeouts[SCTP_EVENT_TIMEOUT_T2_SHUTDOWN] = asoc->rto_initial; |
| 154 | asoc->timeouts[SCTP_EVENT_TIMEOUT_T3_RTX] = 0; |
| 155 | asoc->timeouts[SCTP_EVENT_TIMEOUT_T4_RTO] = 0; |
| 156 | |
| 157 | /* sctpimpguide Section 2.12.2 |
| 158 | * If the 'T5-shutdown-guard' timer is used, it SHOULD be set to the |
| 159 | * recommended value of 5 times 'RTO.Max'. |
| 160 | */ |
| 161 | asoc->timeouts[SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD] |
| 162 | = 5 * asoc->rto_max; |
| 163 | |
| 164 | asoc->timeouts[SCTP_EVENT_TIMEOUT_HEARTBEAT] = 0; |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 165 | asoc->timeouts[SCTP_EVENT_TIMEOUT_SACK] = asoc->sackdelay; |
Vladislav Yasevich | 1e7d3d9 | 2005-11-11 16:06:16 -0800 | [diff] [blame] | 166 | asoc->timeouts[SCTP_EVENT_TIMEOUT_AUTOCLOSE] = |
| 167 | sp->autoclose * HZ; |
| 168 | |
| 169 | /* Initilizes the timers */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | for (i = SCTP_EVENT_TIMEOUT_NONE; i < SCTP_NUM_TIMEOUT_TYPES; ++i) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | init_timer(&asoc->timers[i]); |
| 172 | asoc->timers[i].function = sctp_timer_events[i]; |
| 173 | asoc->timers[i].data = (unsigned long) asoc; |
| 174 | } |
| 175 | |
| 176 | /* Pull default initialization values from the sock options. |
| 177 | * Note: This assumes that the values have already been |
| 178 | * validated in the sock. |
| 179 | */ |
| 180 | asoc->c.sinit_max_instreams = sp->initmsg.sinit_max_instreams; |
| 181 | asoc->c.sinit_num_ostreams = sp->initmsg.sinit_num_ostreams; |
| 182 | asoc->max_init_attempts = sp->initmsg.sinit_max_attempts; |
| 183 | |
| 184 | asoc->max_init_timeo = |
| 185 | msecs_to_jiffies(sp->initmsg.sinit_max_init_timeo); |
| 186 | |
| 187 | /* Allocate storage for the ssnmap after the inbound and outbound |
| 188 | * streams have been negotiated during Init. |
| 189 | */ |
| 190 | asoc->ssnmap = NULL; |
| 191 | |
| 192 | /* Set the local window size for receive. |
| 193 | * This is also the rcvbuf space per association. |
| 194 | * RFC 6 - A SCTP receiver MUST be able to receive a minimum of |
| 195 | * 1500 bytes in one SCTP packet. |
| 196 | */ |
Neil Horman | 049b3ff | 2005-11-11 16:08:24 -0800 | [diff] [blame] | 197 | if ((sk->sk_rcvbuf/2) < SCTP_DEFAULT_MINWINDOW) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | asoc->rwnd = SCTP_DEFAULT_MINWINDOW; |
| 199 | else |
Neil Horman | 049b3ff | 2005-11-11 16:08:24 -0800 | [diff] [blame] | 200 | asoc->rwnd = sk->sk_rcvbuf/2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
| 202 | asoc->a_rwnd = asoc->rwnd; |
| 203 | |
| 204 | asoc->rwnd_over = 0; |
| 205 | |
| 206 | /* Use my own max window until I learn something better. */ |
| 207 | asoc->peer.rwnd = SCTP_DEFAULT_MAXWINDOW; |
| 208 | |
| 209 | /* Set the sndbuf size for transmit. */ |
| 210 | asoc->sndbuf_used = 0; |
| 211 | |
Neil Horman | 049b3ff | 2005-11-11 16:08:24 -0800 | [diff] [blame] | 212 | /* Initialize the receive memory counter */ |
| 213 | atomic_set(&asoc->rmem_alloc, 0); |
| 214 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | init_waitqueue_head(&asoc->wait); |
| 216 | |
| 217 | asoc->c.my_vtag = sctp_generate_tag(ep); |
| 218 | asoc->peer.i.init_tag = 0; /* INIT needs a vtag of 0. */ |
| 219 | asoc->c.peer_vtag = 0; |
| 220 | asoc->c.my_ttag = 0; |
| 221 | asoc->c.peer_ttag = 0; |
| 222 | asoc->c.my_port = ep->base.bind_addr.port; |
| 223 | |
| 224 | asoc->c.initial_tsn = sctp_generate_tsn(ep); |
| 225 | |
| 226 | asoc->next_tsn = asoc->c.initial_tsn; |
| 227 | |
| 228 | asoc->ctsn_ack_point = asoc->next_tsn - 1; |
| 229 | asoc->adv_peer_ack_point = asoc->ctsn_ack_point; |
| 230 | asoc->highest_sacked = asoc->ctsn_ack_point; |
| 231 | asoc->last_cwr_tsn = asoc->ctsn_ack_point; |
| 232 | asoc->unack_data = 0; |
| 233 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | /* ADDIP Section 4.1 Asconf Chunk Procedures |
| 235 | * |
| 236 | * When an endpoint has an ASCONF signaled change to be sent to the |
| 237 | * remote endpoint it should do the following: |
| 238 | * ... |
| 239 | * A2) a serial number should be assigned to the chunk. The serial |
| 240 | * number SHOULD be a monotonically increasing number. The serial |
| 241 | * numbers SHOULD be initialized at the start of the |
| 242 | * association to the same value as the initial TSN. |
| 243 | */ |
| 244 | asoc->addip_serial = asoc->c.initial_tsn; |
| 245 | |
David S. Miller | 79af02c | 2005-07-08 21:47:49 -0700 | [diff] [blame] | 246 | INIT_LIST_HEAD(&asoc->addip_chunk_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | |
| 248 | /* Make an empty list of remote transport addresses. */ |
| 249 | INIT_LIST_HEAD(&asoc->peer.transport_addr_list); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 250 | asoc->peer.transport_count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
| 252 | /* RFC 2960 5.1 Normal Establishment of an Association |
| 253 | * |
| 254 | * After the reception of the first data chunk in an |
| 255 | * association the endpoint must immediately respond with a |
| 256 | * sack to acknowledge the data chunk. Subsequent |
| 257 | * acknowledgements should be done as described in Section |
| 258 | * 6.2. |
| 259 | * |
| 260 | * [We implement this by telling a new association that it |
| 261 | * already received one packet.] |
| 262 | */ |
| 263 | asoc->peer.sack_needed = 1; |
| 264 | |
| 265 | /* Assume that the peer recongizes ASCONF until reported otherwise |
| 266 | * via an ERROR chunk. |
| 267 | */ |
| 268 | asoc->peer.asconf_capable = 1; |
| 269 | |
| 270 | /* Create an input queue. */ |
| 271 | sctp_inq_init(&asoc->base.inqueue); |
| 272 | sctp_inq_set_th_handler(&asoc->base.inqueue, |
| 273 | (void (*)(void *))sctp_assoc_bh_rcv, |
| 274 | asoc); |
| 275 | |
| 276 | /* Create an output queue. */ |
| 277 | sctp_outq_init(asoc, &asoc->outqueue); |
| 278 | |
| 279 | if (!sctp_ulpq_init(&asoc->ulpq, asoc)) |
| 280 | goto fail_init; |
| 281 | |
| 282 | /* Set up the tsn tracking. */ |
| 283 | sctp_tsnmap_init(&asoc->peer.tsn_map, SCTP_TSN_MAP_SIZE, 0); |
| 284 | |
| 285 | asoc->need_ecne = 0; |
| 286 | |
| 287 | asoc->assoc_id = 0; |
| 288 | |
| 289 | /* Assume that peer would support both address types unless we are |
| 290 | * told otherwise. |
| 291 | */ |
| 292 | asoc->peer.ipv4_address = 1; |
| 293 | asoc->peer.ipv6_address = 1; |
| 294 | INIT_LIST_HEAD(&asoc->asocs); |
| 295 | |
| 296 | asoc->autoclose = sp->autoclose; |
| 297 | |
| 298 | asoc->default_stream = sp->default_stream; |
| 299 | asoc->default_ppid = sp->default_ppid; |
| 300 | asoc->default_flags = sp->default_flags; |
| 301 | asoc->default_context = sp->default_context; |
| 302 | asoc->default_timetolive = sp->default_timetolive; |
| 303 | |
| 304 | return asoc; |
| 305 | |
| 306 | fail_init: |
| 307 | sctp_endpoint_put(asoc->ep); |
| 308 | sock_put(asoc->base.sk); |
| 309 | return NULL; |
| 310 | } |
| 311 | |
| 312 | /* Allocate and initialize a new association */ |
| 313 | struct sctp_association *sctp_association_new(const struct sctp_endpoint *ep, |
| 314 | const struct sock *sk, |
Alexey Dobriyan | 3182cd84 | 2005-07-11 20:57:47 -0700 | [diff] [blame] | 315 | sctp_scope_t scope, |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 316 | gfp_t gfp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | { |
| 318 | struct sctp_association *asoc; |
| 319 | |
| 320 | asoc = t_new(struct sctp_association, gfp); |
| 321 | if (!asoc) |
| 322 | goto fail; |
| 323 | |
| 324 | if (!sctp_association_init(asoc, ep, sk, scope, gfp)) |
| 325 | goto fail_init; |
| 326 | |
| 327 | asoc->base.malloced = 1; |
| 328 | SCTP_DBG_OBJCNT_INC(assoc); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 329 | SCTP_DEBUG_PRINTK("Created asoc %p\n", asoc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | |
| 331 | return asoc; |
| 332 | |
| 333 | fail_init: |
| 334 | kfree(asoc); |
| 335 | fail: |
| 336 | return NULL; |
| 337 | } |
| 338 | |
| 339 | /* Free this association if possible. There may still be users, so |
| 340 | * the actual deallocation may be delayed. |
| 341 | */ |
| 342 | void sctp_association_free(struct sctp_association *asoc) |
| 343 | { |
| 344 | struct sock *sk = asoc->base.sk; |
| 345 | struct sctp_transport *transport; |
| 346 | struct list_head *pos, *temp; |
| 347 | int i; |
| 348 | |
Vlad Yasevich | de76e69 | 2006-10-30 18:55:11 -0800 | [diff] [blame] | 349 | /* Only real associations count against the endpoint, so |
| 350 | * don't bother for if this is a temporary association. |
| 351 | */ |
| 352 | if (!asoc->temp) { |
| 353 | list_del(&asoc->asocs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | |
Vlad Yasevich | de76e69 | 2006-10-30 18:55:11 -0800 | [diff] [blame] | 355 | /* Decrement the backlog value for a TCP-style listening |
| 356 | * socket. |
| 357 | */ |
| 358 | if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING)) |
| 359 | sk->sk_ack_backlog--; |
| 360 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
| 362 | /* Mark as dead, so other users can know this structure is |
| 363 | * going away. |
| 364 | */ |
| 365 | asoc->base.dead = 1; |
| 366 | |
| 367 | /* Dispose of any data lying around in the outqueue. */ |
| 368 | sctp_outq_free(&asoc->outqueue); |
| 369 | |
| 370 | /* Dispose of any pending messages for the upper layer. */ |
| 371 | sctp_ulpq_free(&asoc->ulpq); |
| 372 | |
| 373 | /* Dispose of any pending chunks on the inqueue. */ |
| 374 | sctp_inq_free(&asoc->base.inqueue); |
| 375 | |
| 376 | /* Free ssnmap storage. */ |
| 377 | sctp_ssnmap_free(asoc->ssnmap); |
| 378 | |
| 379 | /* Clean up the bound address list. */ |
| 380 | sctp_bind_addr_free(&asoc->base.bind_addr); |
| 381 | |
| 382 | /* Do we need to go through all of our timers and |
| 383 | * delete them? To be safe we will try to delete all, but we |
| 384 | * should be able to go through and make a guess based |
| 385 | * on our state. |
| 386 | */ |
| 387 | for (i = SCTP_EVENT_TIMEOUT_NONE; i < SCTP_NUM_TIMEOUT_TYPES; ++i) { |
| 388 | if (timer_pending(&asoc->timers[i]) && |
| 389 | del_timer(&asoc->timers[i])) |
| 390 | sctp_association_put(asoc); |
| 391 | } |
| 392 | |
| 393 | /* Free peer's cached cookie. */ |
Jesper Juhl | a51482b | 2005-11-08 09:41:34 -0800 | [diff] [blame] | 394 | kfree(asoc->peer.cookie); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | |
| 396 | /* Release the transport structures. */ |
| 397 | list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) { |
| 398 | transport = list_entry(pos, struct sctp_transport, transports); |
| 399 | list_del(pos); |
| 400 | sctp_transport_free(transport); |
| 401 | } |
| 402 | |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 403 | asoc->peer.transport_count = 0; |
| 404 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | /* Free any cached ASCONF_ACK chunk. */ |
| 406 | if (asoc->addip_last_asconf_ack) |
| 407 | sctp_chunk_free(asoc->addip_last_asconf_ack); |
| 408 | |
| 409 | /* Free any cached ASCONF chunk. */ |
| 410 | if (asoc->addip_last_asconf) |
| 411 | sctp_chunk_free(asoc->addip_last_asconf); |
| 412 | |
| 413 | sctp_association_put(asoc); |
| 414 | } |
| 415 | |
| 416 | /* Cleanup and free up an association. */ |
| 417 | static void sctp_association_destroy(struct sctp_association *asoc) |
| 418 | { |
| 419 | SCTP_ASSERT(asoc->base.dead, "Assoc is not dead", return); |
| 420 | |
| 421 | sctp_endpoint_put(asoc->ep); |
| 422 | sock_put(asoc->base.sk); |
| 423 | |
| 424 | if (asoc->assoc_id != 0) { |
| 425 | spin_lock_bh(&sctp_assocs_id_lock); |
| 426 | idr_remove(&sctp_assocs_id, asoc->assoc_id); |
| 427 | spin_unlock_bh(&sctp_assocs_id_lock); |
| 428 | } |
| 429 | |
Neil Horman | 049b3ff | 2005-11-11 16:08:24 -0800 | [diff] [blame] | 430 | BUG_TRAP(!atomic_read(&asoc->rmem_alloc)); |
| 431 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | if (asoc->base.malloced) { |
| 433 | kfree(asoc); |
| 434 | SCTP_DBG_OBJCNT_DEC(assoc); |
| 435 | } |
| 436 | } |
| 437 | |
| 438 | /* Change the primary destination address for the peer. */ |
| 439 | void sctp_assoc_set_primary(struct sctp_association *asoc, |
| 440 | struct sctp_transport *transport) |
| 441 | { |
| 442 | asoc->peer.primary_path = transport; |
| 443 | |
| 444 | /* Set a default msg_name for events. */ |
Al Viro | acd2bc9 | 2006-11-20 17:06:04 -0800 | [diff] [blame] | 445 | memcpy(&asoc->peer.primary_addr, &transport->ipaddr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | sizeof(union sctp_addr)); |
| 447 | |
| 448 | /* If the primary path is changing, assume that the |
| 449 | * user wants to use this new path. |
| 450 | */ |
Sridhar Samudrala | ad8fec1 | 2006-07-21 14:48:50 -0700 | [diff] [blame] | 451 | if ((transport->state == SCTP_ACTIVE) || |
| 452 | (transport->state == SCTP_UNKNOWN)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | asoc->peer.active_path = transport; |
| 454 | |
| 455 | /* |
| 456 | * SFR-CACC algorithm: |
| 457 | * Upon the receipt of a request to change the primary |
| 458 | * destination address, on the data structure for the new |
| 459 | * primary destination, the sender MUST do the following: |
| 460 | * |
| 461 | * 1) If CHANGEOVER_ACTIVE is set, then there was a switch |
| 462 | * to this destination address earlier. The sender MUST set |
| 463 | * CYCLING_CHANGEOVER to indicate that this switch is a |
| 464 | * double switch to the same destination address. |
| 465 | */ |
| 466 | if (transport->cacc.changeover_active) |
| 467 | transport->cacc.cycling_changeover = 1; |
| 468 | |
| 469 | /* 2) The sender MUST set CHANGEOVER_ACTIVE to indicate that |
| 470 | * a changeover has occurred. |
| 471 | */ |
| 472 | transport->cacc.changeover_active = 1; |
| 473 | |
| 474 | /* 3) The sender MUST store the next TSN to be sent in |
| 475 | * next_tsn_at_change. |
| 476 | */ |
| 477 | transport->cacc.next_tsn_at_change = asoc->next_tsn; |
| 478 | } |
| 479 | |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 480 | /* Remove a transport from an association. */ |
| 481 | void sctp_assoc_rm_peer(struct sctp_association *asoc, |
| 482 | struct sctp_transport *peer) |
| 483 | { |
| 484 | struct list_head *pos; |
| 485 | struct sctp_transport *transport; |
| 486 | |
| 487 | SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_rm_peer:association %p addr: ", |
| 488 | " port: %d\n", |
| 489 | asoc, |
Al Viro | 09ef7fe | 2006-11-20 17:04:10 -0800 | [diff] [blame] | 490 | (&peer->ipaddr_h), |
| 491 | peer->ipaddr_h.v4.sin_port); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 492 | |
| 493 | /* If we are to remove the current retran_path, update it |
| 494 | * to the next peer before removing this peer from the list. |
| 495 | */ |
| 496 | if (asoc->peer.retran_path == peer) |
| 497 | sctp_assoc_update_retran_path(asoc); |
| 498 | |
| 499 | /* Remove this peer from the list. */ |
| 500 | list_del(&peer->transports); |
| 501 | |
| 502 | /* Get the first transport of asoc. */ |
| 503 | pos = asoc->peer.transport_addr_list.next; |
| 504 | transport = list_entry(pos, struct sctp_transport, transports); |
| 505 | |
| 506 | /* Update any entries that match the peer to be deleted. */ |
| 507 | if (asoc->peer.primary_path == peer) |
| 508 | sctp_assoc_set_primary(asoc, transport); |
| 509 | if (asoc->peer.active_path == peer) |
| 510 | asoc->peer.active_path = transport; |
| 511 | if (asoc->peer.last_data_from == peer) |
| 512 | asoc->peer.last_data_from = transport; |
| 513 | |
| 514 | /* If we remove the transport an INIT was last sent to, set it to |
| 515 | * NULL. Combined with the update of the retran path above, this |
| 516 | * will cause the next INIT to be sent to the next available |
| 517 | * transport, maintaining the cycle. |
| 518 | */ |
| 519 | if (asoc->init_last_sent_to == peer) |
| 520 | asoc->init_last_sent_to = NULL; |
| 521 | |
| 522 | asoc->peer.transport_count--; |
| 523 | |
| 524 | sctp_transport_free(peer); |
| 525 | } |
| 526 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | /* Add a transport address to an association. */ |
| 528 | struct sctp_transport *sctp_assoc_add_peer(struct sctp_association *asoc, |
| 529 | const union sctp_addr *addr, |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 530 | const gfp_t gfp, |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 531 | const int peer_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | { |
| 533 | struct sctp_transport *peer; |
| 534 | struct sctp_sock *sp; |
| 535 | unsigned short port; |
Al Viro | be29681 | 2006-11-20 17:07:06 -0800 | [diff] [blame] | 536 | union sctp_addr tmp; |
| 537 | flip_to_n(&tmp, addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | |
| 539 | sp = sctp_sk(asoc->base.sk); |
| 540 | |
| 541 | /* AF_INET and AF_INET6 share common port field. */ |
| 542 | port = addr->v4.sin_port; |
| 543 | |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 544 | SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_add_peer:association %p addr: ", |
Sridhar Samudrala | ad8fec1 | 2006-07-21 14:48:50 -0700 | [diff] [blame] | 545 | " port: %d state:%d\n", |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 546 | asoc, |
| 547 | addr, |
| 548 | addr->v4.sin_port, |
Sridhar Samudrala | ad8fec1 | 2006-07-21 14:48:50 -0700 | [diff] [blame] | 549 | peer_state); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 550 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | /* Set the port if it has not been set yet. */ |
| 552 | if (0 == asoc->peer.port) |
| 553 | asoc->peer.port = port; |
| 554 | |
| 555 | /* Check to see if this is a duplicate. */ |
Al Viro | be29681 | 2006-11-20 17:07:06 -0800 | [diff] [blame] | 556 | peer = sctp_assoc_lookup_paddr(asoc, &tmp); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 557 | if (peer) { |
Sridhar Samudrala | ad8fec1 | 2006-07-21 14:48:50 -0700 | [diff] [blame] | 558 | if (peer->state == SCTP_UNKNOWN) { |
| 559 | if (peer_state == SCTP_ACTIVE) |
| 560 | peer->state = SCTP_ACTIVE; |
| 561 | if (peer_state == SCTP_UNCONFIRMED) |
| 562 | peer->state = SCTP_UNCONFIRMED; |
| 563 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | return peer; |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 565 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | |
Al Viro | b488c7d | 2006-11-20 17:10:03 -0800 | [diff] [blame^] | 567 | peer = sctp_transport_new(&tmp, gfp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | if (!peer) |
| 569 | return NULL; |
| 570 | |
| 571 | sctp_transport_set_owner(peer, asoc); |
| 572 | |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 573 | /* Initialize the peer's heartbeat interval based on the |
| 574 | * association configured value. |
| 575 | */ |
| 576 | peer->hbinterval = asoc->hbinterval; |
| 577 | |
| 578 | /* Set the path max_retrans. */ |
| 579 | peer->pathmaxrxt = asoc->pathmaxrxt; |
| 580 | |
| 581 | /* Initialize the peer's SACK delay timeout based on the |
| 582 | * association configured value. |
| 583 | */ |
| 584 | peer->sackdelay = asoc->sackdelay; |
| 585 | |
| 586 | /* Enable/disable heartbeat, SACK delay, and path MTU discovery |
| 587 | * based on association setting. |
| 588 | */ |
| 589 | peer->param_flags = asoc->param_flags; |
| 590 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | /* Initialize the pmtu of the transport. */ |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 592 | if (peer->param_flags & SPP_PMTUD_ENABLE) |
| 593 | sctp_transport_pmtu(peer); |
| 594 | else if (asoc->pathmtu) |
| 595 | peer->pathmtu = asoc->pathmtu; |
| 596 | else |
| 597 | peer->pathmtu = SCTP_DEFAULT_MAXSEGMENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | |
| 599 | /* If this is the first transport addr on this association, |
| 600 | * initialize the association PMTU to the peer's PMTU. |
| 601 | * If not and the current association PMTU is higher than the new |
| 602 | * peer's PMTU, reset the association PMTU to the new peer's PMTU. |
| 603 | */ |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 604 | if (asoc->pathmtu) |
| 605 | asoc->pathmtu = min_t(int, peer->pathmtu, asoc->pathmtu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | else |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 607 | asoc->pathmtu = peer->pathmtu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | |
| 609 | SCTP_DEBUG_PRINTK("sctp_assoc_add_peer:association %p PMTU set to " |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 610 | "%d\n", asoc, asoc->pathmtu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 612 | asoc->frag_point = sctp_frag_point(sp, asoc->pathmtu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | |
| 614 | /* The asoc->peer.port might not be meaningful yet, but |
| 615 | * initialize the packet structure anyway. |
| 616 | */ |
| 617 | sctp_packet_init(&peer->packet, peer, asoc->base.bind_addr.port, |
| 618 | asoc->peer.port); |
| 619 | |
| 620 | /* 7.2.1 Slow-Start |
| 621 | * |
| 622 | * o The initial cwnd before DATA transmission or after a sufficiently |
| 623 | * long idle period MUST be set to |
| 624 | * min(4*MTU, max(2*MTU, 4380 bytes)) |
| 625 | * |
| 626 | * o The initial value of ssthresh MAY be arbitrarily high |
| 627 | * (for example, implementations MAY use the size of the |
| 628 | * receiver advertised window). |
| 629 | */ |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 630 | peer->cwnd = min(4*asoc->pathmtu, max_t(__u32, 2*asoc->pathmtu, 4380)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | |
| 632 | /* At this point, we may not have the receiver's advertised window, |
| 633 | * so initialize ssthresh to the default value and it will be set |
| 634 | * later when we process the INIT. |
| 635 | */ |
| 636 | peer->ssthresh = SCTP_DEFAULT_MAXWINDOW; |
| 637 | |
| 638 | peer->partial_bytes_acked = 0; |
| 639 | peer->flight_size = 0; |
| 640 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | /* Set the transport's RTO.initial value */ |
| 642 | peer->rto = asoc->rto_initial; |
| 643 | |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 644 | /* Set the peer's active state. */ |
| 645 | peer->state = peer_state; |
| 646 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | /* Attach the remote transport to our asoc. */ |
| 648 | list_add_tail(&peer->transports, &asoc->peer.transport_addr_list); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 649 | asoc->peer.transport_count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | |
| 651 | /* If we do not yet have a primary path, set one. */ |
| 652 | if (!asoc->peer.primary_path) { |
| 653 | sctp_assoc_set_primary(asoc, peer); |
| 654 | asoc->peer.retran_path = peer; |
| 655 | } |
| 656 | |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 657 | if (asoc->peer.active_path == asoc->peer.retran_path) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | asoc->peer.retran_path = peer; |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 659 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | |
| 661 | return peer; |
| 662 | } |
| 663 | |
| 664 | /* Delete a transport address from an association. */ |
| 665 | void sctp_assoc_del_peer(struct sctp_association *asoc, |
| 666 | const union sctp_addr *addr) |
| 667 | { |
| 668 | struct list_head *pos; |
| 669 | struct list_head *temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | struct sctp_transport *transport; |
| 671 | |
| 672 | list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) { |
| 673 | transport = list_entry(pos, struct sctp_transport, transports); |
Al Viro | 38a0314 | 2006-11-20 17:06:45 -0800 | [diff] [blame] | 674 | if (sctp_cmp_addr_exact(addr, &transport->ipaddr)) { |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 675 | /* Do book keeping for removing the peer and free it. */ |
| 676 | sctp_assoc_rm_peer(asoc, transport); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | break; |
| 678 | } |
| 679 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | } |
| 681 | |
| 682 | /* Lookup a transport by address. */ |
| 683 | struct sctp_transport *sctp_assoc_lookup_paddr( |
| 684 | const struct sctp_association *asoc, |
| 685 | const union sctp_addr *address) |
| 686 | { |
| 687 | struct sctp_transport *t; |
| 688 | struct list_head *pos; |
| 689 | |
| 690 | /* Cycle through all transports searching for a peer address. */ |
| 691 | |
| 692 | list_for_each(pos, &asoc->peer.transport_addr_list) { |
| 693 | t = list_entry(pos, struct sctp_transport, transports); |
Al Viro | be29681 | 2006-11-20 17:07:06 -0800 | [diff] [blame] | 694 | if (sctp_cmp_addr_exact(address, &t->ipaddr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | return t; |
| 696 | } |
| 697 | |
| 698 | return NULL; |
| 699 | } |
| 700 | |
| 701 | /* Engage in transport control operations. |
| 702 | * Mark the transport up or down and send a notification to the user. |
| 703 | * Select and update the new active and retran paths. |
| 704 | */ |
| 705 | void sctp_assoc_control_transport(struct sctp_association *asoc, |
| 706 | struct sctp_transport *transport, |
| 707 | sctp_transport_cmd_t command, |
| 708 | sctp_sn_error_t error) |
| 709 | { |
| 710 | struct sctp_transport *t = NULL; |
| 711 | struct sctp_transport *first; |
| 712 | struct sctp_transport *second; |
| 713 | struct sctp_ulpevent *event; |
Al Viro | 0906e20 | 2006-11-20 17:03:01 -0800 | [diff] [blame] | 714 | struct sockaddr_storage addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | struct list_head *pos; |
| 716 | int spc_state = 0; |
| 717 | |
| 718 | /* Record the transition on the transport. */ |
| 719 | switch (command) { |
| 720 | case SCTP_TRANSPORT_UP: |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 721 | transport->state = SCTP_ACTIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | spc_state = SCTP_ADDR_AVAILABLE; |
| 723 | break; |
| 724 | |
| 725 | case SCTP_TRANSPORT_DOWN: |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 726 | transport->state = SCTP_INACTIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | spc_state = SCTP_ADDR_UNREACHABLE; |
| 728 | break; |
| 729 | |
| 730 | default: |
| 731 | return; |
| 732 | }; |
| 733 | |
| 734 | /* Generate and send a SCTP_PEER_ADDR_CHANGE notification to the |
| 735 | * user. |
| 736 | */ |
Al Viro | 0906e20 | 2006-11-20 17:03:01 -0800 | [diff] [blame] | 737 | memset(&addr, 0, sizeof(struct sockaddr_storage)); |
Al Viro | 09ef7fe | 2006-11-20 17:04:10 -0800 | [diff] [blame] | 738 | flip_to_n((union sctp_addr *)&addr, &transport->ipaddr_h); |
Al Viro | 0906e20 | 2006-11-20 17:03:01 -0800 | [diff] [blame] | 739 | event = sctp_ulpevent_make_peer_addr_change(asoc, &addr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | 0, spc_state, error, GFP_ATOMIC); |
| 741 | if (event) |
| 742 | sctp_ulpq_tail_event(&asoc->ulpq, event); |
| 743 | |
| 744 | /* Select new active and retran paths. */ |
| 745 | |
| 746 | /* Look for the two most recently used active transports. |
| 747 | * |
| 748 | * This code produces the wrong ordering whenever jiffies |
| 749 | * rolls over, but we still get usable transports, so we don't |
| 750 | * worry about it. |
| 751 | */ |
| 752 | first = NULL; second = NULL; |
| 753 | |
| 754 | list_for_each(pos, &asoc->peer.transport_addr_list) { |
| 755 | t = list_entry(pos, struct sctp_transport, transports); |
| 756 | |
Sridhar Samudrala | ad8fec1 | 2006-07-21 14:48:50 -0700 | [diff] [blame] | 757 | if ((t->state == SCTP_INACTIVE) || |
| 758 | (t->state == SCTP_UNCONFIRMED)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | continue; |
| 760 | if (!first || t->last_time_heard > first->last_time_heard) { |
| 761 | second = first; |
| 762 | first = t; |
| 763 | } |
| 764 | if (!second || t->last_time_heard > second->last_time_heard) |
| 765 | second = t; |
| 766 | } |
| 767 | |
| 768 | /* RFC 2960 6.4 Multi-Homed SCTP Endpoints |
| 769 | * |
| 770 | * By default, an endpoint should always transmit to the |
| 771 | * primary path, unless the SCTP user explicitly specifies the |
| 772 | * destination transport address (and possibly source |
| 773 | * transport address) to use. |
| 774 | * |
| 775 | * [If the primary is active but not most recent, bump the most |
| 776 | * recently used transport.] |
| 777 | */ |
Sridhar Samudrala | ad8fec1 | 2006-07-21 14:48:50 -0700 | [diff] [blame] | 778 | if (((asoc->peer.primary_path->state == SCTP_ACTIVE) || |
| 779 | (asoc->peer.primary_path->state == SCTP_UNKNOWN)) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | first != asoc->peer.primary_path) { |
| 781 | second = first; |
| 782 | first = asoc->peer.primary_path; |
| 783 | } |
| 784 | |
| 785 | /* If we failed to find a usable transport, just camp on the |
| 786 | * primary, even if it is inactive. |
| 787 | */ |
| 788 | if (!first) { |
| 789 | first = asoc->peer.primary_path; |
| 790 | second = asoc->peer.primary_path; |
| 791 | } |
| 792 | |
| 793 | /* Set the active and retran transports. */ |
| 794 | asoc->peer.active_path = first; |
| 795 | asoc->peer.retran_path = second; |
| 796 | } |
| 797 | |
| 798 | /* Hold a reference to an association. */ |
| 799 | void sctp_association_hold(struct sctp_association *asoc) |
| 800 | { |
| 801 | atomic_inc(&asoc->base.refcnt); |
| 802 | } |
| 803 | |
| 804 | /* Release a reference to an association and cleanup |
| 805 | * if there are no more references. |
| 806 | */ |
| 807 | void sctp_association_put(struct sctp_association *asoc) |
| 808 | { |
| 809 | if (atomic_dec_and_test(&asoc->base.refcnt)) |
| 810 | sctp_association_destroy(asoc); |
| 811 | } |
| 812 | |
| 813 | /* Allocate the next TSN, Transmission Sequence Number, for the given |
| 814 | * association. |
| 815 | */ |
| 816 | __u32 sctp_association_get_next_tsn(struct sctp_association *asoc) |
| 817 | { |
| 818 | /* From Section 1.6 Serial Number Arithmetic: |
| 819 | * Transmission Sequence Numbers wrap around when they reach |
| 820 | * 2**32 - 1. That is, the next TSN a DATA chunk MUST use |
| 821 | * after transmitting TSN = 2*32 - 1 is TSN = 0. |
| 822 | */ |
| 823 | __u32 retval = asoc->next_tsn; |
| 824 | asoc->next_tsn++; |
| 825 | asoc->unack_data++; |
| 826 | |
| 827 | return retval; |
| 828 | } |
| 829 | |
| 830 | /* Compare two addresses to see if they match. Wildcard addresses |
| 831 | * only match themselves. |
| 832 | */ |
| 833 | int sctp_cmp_addr_exact(const union sctp_addr *ss1, |
| 834 | const union sctp_addr *ss2) |
| 835 | { |
| 836 | struct sctp_af *af; |
| 837 | |
| 838 | af = sctp_get_af_specific(ss1->sa.sa_family); |
| 839 | if (unlikely(!af)) |
| 840 | return 0; |
| 841 | |
| 842 | return af->cmp_addr(ss1, ss2); |
| 843 | } |
| 844 | |
| 845 | /* Return an ecne chunk to get prepended to a packet. |
| 846 | * Note: We are sly and return a shared, prealloced chunk. FIXME: |
| 847 | * No we don't, but we could/should. |
| 848 | */ |
| 849 | struct sctp_chunk *sctp_get_ecne_prepend(struct sctp_association *asoc) |
| 850 | { |
| 851 | struct sctp_chunk *chunk; |
| 852 | |
| 853 | /* Send ECNE if needed. |
| 854 | * Not being able to allocate a chunk here is not deadly. |
| 855 | */ |
| 856 | if (asoc->need_ecne) |
| 857 | chunk = sctp_make_ecne(asoc, asoc->last_ecne_tsn); |
| 858 | else |
| 859 | chunk = NULL; |
| 860 | |
| 861 | return chunk; |
| 862 | } |
| 863 | |
| 864 | /* |
| 865 | * Find which transport this TSN was sent on. |
| 866 | */ |
| 867 | struct sctp_transport *sctp_assoc_lookup_tsn(struct sctp_association *asoc, |
| 868 | __u32 tsn) |
| 869 | { |
| 870 | struct sctp_transport *active; |
| 871 | struct sctp_transport *match; |
| 872 | struct list_head *entry, *pos; |
| 873 | struct sctp_transport *transport; |
| 874 | struct sctp_chunk *chunk; |
Al Viro | dbc16db | 2006-11-20 17:01:42 -0800 | [diff] [blame] | 875 | __be32 key = htonl(tsn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | |
| 877 | match = NULL; |
| 878 | |
| 879 | /* |
| 880 | * FIXME: In general, find a more efficient data structure for |
| 881 | * searching. |
| 882 | */ |
| 883 | |
| 884 | /* |
| 885 | * The general strategy is to search each transport's transmitted |
| 886 | * list. Return which transport this TSN lives on. |
| 887 | * |
| 888 | * Let's be hopeful and check the active_path first. |
| 889 | * Another optimization would be to know if there is only one |
| 890 | * outbound path and not have to look for the TSN at all. |
| 891 | * |
| 892 | */ |
| 893 | |
| 894 | active = asoc->peer.active_path; |
| 895 | |
| 896 | list_for_each(entry, &active->transmitted) { |
| 897 | chunk = list_entry(entry, struct sctp_chunk, transmitted_list); |
| 898 | |
| 899 | if (key == chunk->subh.data_hdr->tsn) { |
| 900 | match = active; |
| 901 | goto out; |
| 902 | } |
| 903 | } |
| 904 | |
| 905 | /* If not found, go search all the other transports. */ |
| 906 | list_for_each(pos, &asoc->peer.transport_addr_list) { |
| 907 | transport = list_entry(pos, struct sctp_transport, transports); |
| 908 | |
| 909 | if (transport == active) |
| 910 | break; |
| 911 | list_for_each(entry, &transport->transmitted) { |
| 912 | chunk = list_entry(entry, struct sctp_chunk, |
| 913 | transmitted_list); |
| 914 | if (key == chunk->subh.data_hdr->tsn) { |
| 915 | match = transport; |
| 916 | goto out; |
| 917 | } |
| 918 | } |
| 919 | } |
| 920 | out: |
| 921 | return match; |
| 922 | } |
| 923 | |
| 924 | /* Is this the association we are looking for? */ |
| 925 | struct sctp_transport *sctp_assoc_is_match(struct sctp_association *asoc, |
| 926 | const union sctp_addr *laddr, |
| 927 | const union sctp_addr *paddr) |
| 928 | { |
| 929 | struct sctp_transport *transport; |
| 930 | |
| 931 | sctp_read_lock(&asoc->base.addr_lock); |
| 932 | |
Al Viro | e2fcced | 2006-11-20 17:08:41 -0800 | [diff] [blame] | 933 | if ((htons(asoc->base.bind_addr.port) == laddr->v4.sin_port) && |
| 934 | (htons(asoc->peer.port) == paddr->v4.sin_port)) { |
| 935 | transport = sctp_assoc_lookup_paddr(asoc, paddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | if (!transport) |
| 937 | goto out; |
| 938 | |
Al Viro | e2fcced | 2006-11-20 17:08:41 -0800 | [diff] [blame] | 939 | if (sctp_bind_addr_match(&asoc->base.bind_addr, laddr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | sctp_sk(asoc->base.sk))) |
| 941 | goto out; |
| 942 | } |
| 943 | transport = NULL; |
| 944 | |
| 945 | out: |
| 946 | sctp_read_unlock(&asoc->base.addr_lock); |
| 947 | return transport; |
| 948 | } |
| 949 | |
| 950 | /* Do delayed input processing. This is scheduled by sctp_rcv(). */ |
| 951 | static void sctp_assoc_bh_rcv(struct sctp_association *asoc) |
| 952 | { |
| 953 | struct sctp_endpoint *ep; |
| 954 | struct sctp_chunk *chunk; |
| 955 | struct sock *sk; |
| 956 | struct sctp_inq *inqueue; |
| 957 | int state; |
| 958 | sctp_subtype_t subtype; |
| 959 | int error = 0; |
| 960 | |
| 961 | /* The association should be held so we should be safe. */ |
| 962 | ep = asoc->ep; |
| 963 | sk = asoc->base.sk; |
| 964 | |
| 965 | inqueue = &asoc->base.inqueue; |
| 966 | sctp_association_hold(asoc); |
| 967 | while (NULL != (chunk = sctp_inq_pop(inqueue))) { |
| 968 | state = asoc->state; |
| 969 | subtype = SCTP_ST_CHUNK(chunk->chunk_hdr->type); |
| 970 | |
| 971 | /* Remember where the last DATA chunk came from so we |
| 972 | * know where to send the SACK. |
| 973 | */ |
| 974 | if (sctp_chunk_is_data(chunk)) |
| 975 | asoc->peer.last_data_from = chunk->transport; |
| 976 | else |
| 977 | SCTP_INC_STATS(SCTP_MIB_INCTRLCHUNKS); |
| 978 | |
| 979 | if (chunk->transport) |
| 980 | chunk->transport->last_time_heard = jiffies; |
| 981 | |
| 982 | /* Run through the state machine. */ |
| 983 | error = sctp_do_sm(SCTP_EVENT_T_CHUNK, subtype, |
| 984 | state, ep, asoc, chunk, GFP_ATOMIC); |
| 985 | |
| 986 | /* Check to see if the association is freed in response to |
| 987 | * the incoming chunk. If so, get out of the while loop. |
| 988 | */ |
| 989 | if (asoc->base.dead) |
| 990 | break; |
| 991 | |
| 992 | /* If there is an error on chunk, discard this packet. */ |
| 993 | if (error && chunk) |
| 994 | chunk->pdiscard = 1; |
| 995 | } |
| 996 | sctp_association_put(asoc); |
| 997 | } |
| 998 | |
| 999 | /* This routine moves an association from its old sk to a new sk. */ |
| 1000 | void sctp_assoc_migrate(struct sctp_association *assoc, struct sock *newsk) |
| 1001 | { |
| 1002 | struct sctp_sock *newsp = sctp_sk(newsk); |
| 1003 | struct sock *oldsk = assoc->base.sk; |
| 1004 | |
| 1005 | /* Delete the association from the old endpoint's list of |
| 1006 | * associations. |
| 1007 | */ |
| 1008 | list_del_init(&assoc->asocs); |
| 1009 | |
| 1010 | /* Decrement the backlog value for a TCP-style socket. */ |
| 1011 | if (sctp_style(oldsk, TCP)) |
| 1012 | oldsk->sk_ack_backlog--; |
| 1013 | |
| 1014 | /* Release references to the old endpoint and the sock. */ |
| 1015 | sctp_endpoint_put(assoc->ep); |
| 1016 | sock_put(assoc->base.sk); |
| 1017 | |
| 1018 | /* Get a reference to the new endpoint. */ |
| 1019 | assoc->ep = newsp->ep; |
| 1020 | sctp_endpoint_hold(assoc->ep); |
| 1021 | |
| 1022 | /* Get a reference to the new sock. */ |
| 1023 | assoc->base.sk = newsk; |
| 1024 | sock_hold(assoc->base.sk); |
| 1025 | |
| 1026 | /* Add the association to the new endpoint's list of associations. */ |
| 1027 | sctp_endpoint_add_asoc(newsp->ep, assoc); |
| 1028 | } |
| 1029 | |
| 1030 | /* Update an association (possibly from unexpected COOKIE-ECHO processing). */ |
| 1031 | void sctp_assoc_update(struct sctp_association *asoc, |
| 1032 | struct sctp_association *new) |
| 1033 | { |
| 1034 | struct sctp_transport *trans; |
| 1035 | struct list_head *pos, *temp; |
| 1036 | |
| 1037 | /* Copy in new parameters of peer. */ |
| 1038 | asoc->c = new->c; |
| 1039 | asoc->peer.rwnd = new->peer.rwnd; |
| 1040 | asoc->peer.sack_needed = new->peer.sack_needed; |
| 1041 | asoc->peer.i = new->peer.i; |
| 1042 | sctp_tsnmap_init(&asoc->peer.tsn_map, SCTP_TSN_MAP_SIZE, |
| 1043 | asoc->peer.i.initial_tsn); |
| 1044 | |
| 1045 | /* Remove any peer addresses not present in the new association. */ |
| 1046 | list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) { |
| 1047 | trans = list_entry(pos, struct sctp_transport, transports); |
Al Viro | be29681 | 2006-11-20 17:07:06 -0800 | [diff] [blame] | 1048 | if (!sctp_assoc_lookup_paddr(new, &trans->ipaddr)) |
Al Viro | 38a0314 | 2006-11-20 17:06:45 -0800 | [diff] [blame] | 1049 | sctp_assoc_del_peer(asoc, &trans->ipaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | } |
| 1051 | |
| 1052 | /* If the case is A (association restart), use |
| 1053 | * initial_tsn as next_tsn. If the case is B, use |
| 1054 | * current next_tsn in case data sent to peer |
| 1055 | * has been discarded and needs retransmission. |
| 1056 | */ |
| 1057 | if (asoc->state >= SCTP_STATE_ESTABLISHED) { |
| 1058 | asoc->next_tsn = new->next_tsn; |
| 1059 | asoc->ctsn_ack_point = new->ctsn_ack_point; |
| 1060 | asoc->adv_peer_ack_point = new->adv_peer_ack_point; |
| 1061 | |
| 1062 | /* Reinitialize SSN for both local streams |
| 1063 | * and peer's streams. |
| 1064 | */ |
| 1065 | sctp_ssnmap_clear(asoc->ssnmap); |
| 1066 | |
| 1067 | } else { |
| 1068 | /* Add any peer addresses from the new association. */ |
| 1069 | list_for_each(pos, &new->peer.transport_addr_list) { |
| 1070 | trans = list_entry(pos, struct sctp_transport, |
| 1071 | transports); |
Al Viro | be29681 | 2006-11-20 17:07:06 -0800 | [diff] [blame] | 1072 | if (!sctp_assoc_lookup_paddr(asoc, &trans->ipaddr)) |
Al Viro | 09ef7fe | 2006-11-20 17:04:10 -0800 | [diff] [blame] | 1073 | sctp_assoc_add_peer(asoc, &trans->ipaddr_h, |
Sridhar Samudrala | ad8fec1 | 2006-07-21 14:48:50 -0700 | [diff] [blame] | 1074 | GFP_ATOMIC, trans->state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | } |
| 1076 | |
| 1077 | asoc->ctsn_ack_point = asoc->next_tsn - 1; |
| 1078 | asoc->adv_peer_ack_point = asoc->ctsn_ack_point; |
| 1079 | if (!asoc->ssnmap) { |
| 1080 | /* Move the ssnmap. */ |
| 1081 | asoc->ssnmap = new->ssnmap; |
| 1082 | new->ssnmap = NULL; |
| 1083 | } |
| 1084 | } |
| 1085 | } |
| 1086 | |
| 1087 | /* Update the retran path for sending a retransmitted packet. |
| 1088 | * Round-robin through the active transports, else round-robin |
| 1089 | * through the inactive transports as this is the next best thing |
| 1090 | * we can try. |
| 1091 | */ |
| 1092 | void sctp_assoc_update_retran_path(struct sctp_association *asoc) |
| 1093 | { |
| 1094 | struct sctp_transport *t, *next; |
| 1095 | struct list_head *head = &asoc->peer.transport_addr_list; |
| 1096 | struct list_head *pos; |
| 1097 | |
| 1098 | /* Find the next transport in a round-robin fashion. */ |
| 1099 | t = asoc->peer.retran_path; |
| 1100 | pos = &t->transports; |
| 1101 | next = NULL; |
| 1102 | |
| 1103 | while (1) { |
| 1104 | /* Skip the head. */ |
| 1105 | if (pos->next == head) |
| 1106 | pos = head->next; |
| 1107 | else |
| 1108 | pos = pos->next; |
| 1109 | |
| 1110 | t = list_entry(pos, struct sctp_transport, transports); |
| 1111 | |
| 1112 | /* Try to find an active transport. */ |
| 1113 | |
Sridhar Samudrala | ad8fec1 | 2006-07-21 14:48:50 -0700 | [diff] [blame] | 1114 | if ((t->state == SCTP_ACTIVE) || |
| 1115 | (t->state == SCTP_UNKNOWN)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | break; |
| 1117 | } else { |
| 1118 | /* Keep track of the next transport in case |
| 1119 | * we don't find any active transport. |
| 1120 | */ |
| 1121 | if (!next) |
| 1122 | next = t; |
| 1123 | } |
| 1124 | |
| 1125 | /* We have exhausted the list, but didn't find any |
| 1126 | * other active transports. If so, use the next |
| 1127 | * transport. |
| 1128 | */ |
| 1129 | if (t == asoc->peer.retran_path) { |
| 1130 | t = next; |
| 1131 | break; |
| 1132 | } |
| 1133 | } |
| 1134 | |
| 1135 | asoc->peer.retran_path = t; |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1136 | |
| 1137 | SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_update_retran_path:association" |
| 1138 | " %p addr: ", |
| 1139 | " port: %d\n", |
| 1140 | asoc, |
Al Viro | 09ef7fe | 2006-11-20 17:04:10 -0800 | [diff] [blame] | 1141 | (&t->ipaddr_h), |
| 1142 | t->ipaddr_h.v4.sin_port); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1143 | } |
| 1144 | |
| 1145 | /* Choose the transport for sending a INIT packet. */ |
| 1146 | struct sctp_transport *sctp_assoc_choose_init_transport( |
| 1147 | struct sctp_association *asoc) |
| 1148 | { |
| 1149 | struct sctp_transport *t; |
| 1150 | |
| 1151 | /* Use the retran path. If the last INIT was sent over the |
| 1152 | * retran path, update the retran path and use it. |
| 1153 | */ |
| 1154 | if (!asoc->init_last_sent_to) { |
| 1155 | t = asoc->peer.active_path; |
| 1156 | } else { |
| 1157 | if (asoc->init_last_sent_to == asoc->peer.retran_path) |
| 1158 | sctp_assoc_update_retran_path(asoc); |
| 1159 | t = asoc->peer.retran_path; |
| 1160 | } |
| 1161 | |
| 1162 | SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_update_retran_path:association" |
| 1163 | " %p addr: ", |
| 1164 | " port: %d\n", |
| 1165 | asoc, |
Al Viro | 09ef7fe | 2006-11-20 17:04:10 -0800 | [diff] [blame] | 1166 | (&t->ipaddr_h), |
| 1167 | t->ipaddr_h.v4.sin_port); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1168 | |
| 1169 | return t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | } |
| 1171 | |
| 1172 | /* Choose the transport for sending a SHUTDOWN packet. */ |
| 1173 | struct sctp_transport *sctp_assoc_choose_shutdown_transport( |
| 1174 | struct sctp_association *asoc) |
| 1175 | { |
| 1176 | /* If this is the first time SHUTDOWN is sent, use the active path, |
| 1177 | * else use the retran path. If the last SHUTDOWN was sent over the |
| 1178 | * retran path, update the retran path and use it. |
| 1179 | */ |
| 1180 | if (!asoc->shutdown_last_sent_to) |
| 1181 | return asoc->peer.active_path; |
| 1182 | else { |
| 1183 | if (asoc->shutdown_last_sent_to == asoc->peer.retran_path) |
| 1184 | sctp_assoc_update_retran_path(asoc); |
| 1185 | return asoc->peer.retran_path; |
| 1186 | } |
| 1187 | |
| 1188 | } |
| 1189 | |
| 1190 | /* Update the association's pmtu and frag_point by going through all the |
| 1191 | * transports. This routine is called when a transport's PMTU has changed. |
| 1192 | */ |
| 1193 | void sctp_assoc_sync_pmtu(struct sctp_association *asoc) |
| 1194 | { |
| 1195 | struct sctp_transport *t; |
| 1196 | struct list_head *pos; |
| 1197 | __u32 pmtu = 0; |
| 1198 | |
| 1199 | if (!asoc) |
| 1200 | return; |
| 1201 | |
| 1202 | /* Get the lowest pmtu of all the transports. */ |
| 1203 | list_for_each(pos, &asoc->peer.transport_addr_list) { |
| 1204 | t = list_entry(pos, struct sctp_transport, transports); |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 1205 | if (!pmtu || (t->pathmtu < pmtu)) |
| 1206 | pmtu = t->pathmtu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | } |
| 1208 | |
| 1209 | if (pmtu) { |
| 1210 | struct sctp_sock *sp = sctp_sk(asoc->base.sk); |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 1211 | asoc->pathmtu = pmtu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | asoc->frag_point = sctp_frag_point(sp, pmtu); |
| 1213 | } |
| 1214 | |
| 1215 | SCTP_DEBUG_PRINTK("%s: asoc:%p, pmtu:%d, frag_point:%d\n", |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 1216 | __FUNCTION__, asoc, asoc->pathmtu, asoc->frag_point); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | } |
| 1218 | |
| 1219 | /* Should we send a SACK to update our peer? */ |
| 1220 | static inline int sctp_peer_needs_update(struct sctp_association *asoc) |
| 1221 | { |
| 1222 | switch (asoc->state) { |
| 1223 | case SCTP_STATE_ESTABLISHED: |
| 1224 | case SCTP_STATE_SHUTDOWN_PENDING: |
| 1225 | case SCTP_STATE_SHUTDOWN_RECEIVED: |
| 1226 | case SCTP_STATE_SHUTDOWN_SENT: |
| 1227 | if ((asoc->rwnd > asoc->a_rwnd) && |
| 1228 | ((asoc->rwnd - asoc->a_rwnd) >= |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 1229 | min_t(__u32, (asoc->base.sk->sk_rcvbuf >> 1), asoc->pathmtu))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | return 1; |
| 1231 | break; |
| 1232 | default: |
| 1233 | break; |
| 1234 | } |
| 1235 | return 0; |
| 1236 | } |
| 1237 | |
| 1238 | /* Increase asoc's rwnd by len and send any window update SACK if needed. */ |
| 1239 | void sctp_assoc_rwnd_increase(struct sctp_association *asoc, unsigned len) |
| 1240 | { |
| 1241 | struct sctp_chunk *sack; |
| 1242 | struct timer_list *timer; |
| 1243 | |
| 1244 | if (asoc->rwnd_over) { |
| 1245 | if (asoc->rwnd_over >= len) { |
| 1246 | asoc->rwnd_over -= len; |
| 1247 | } else { |
| 1248 | asoc->rwnd += (len - asoc->rwnd_over); |
| 1249 | asoc->rwnd_over = 0; |
| 1250 | } |
| 1251 | } else { |
| 1252 | asoc->rwnd += len; |
| 1253 | } |
| 1254 | |
| 1255 | SCTP_DEBUG_PRINTK("%s: asoc %p rwnd increased by %d to (%u, %u) " |
| 1256 | "- %u\n", __FUNCTION__, asoc, len, asoc->rwnd, |
| 1257 | asoc->rwnd_over, asoc->a_rwnd); |
| 1258 | |
| 1259 | /* Send a window update SACK if the rwnd has increased by at least the |
| 1260 | * minimum of the association's PMTU and half of the receive buffer. |
| 1261 | * The algorithm used is similar to the one described in |
| 1262 | * Section 4.2.3.3 of RFC 1122. |
| 1263 | */ |
| 1264 | if (sctp_peer_needs_update(asoc)) { |
| 1265 | asoc->a_rwnd = asoc->rwnd; |
| 1266 | SCTP_DEBUG_PRINTK("%s: Sending window update SACK- asoc: %p " |
| 1267 | "rwnd: %u a_rwnd: %u\n", __FUNCTION__, |
| 1268 | asoc, asoc->rwnd, asoc->a_rwnd); |
| 1269 | sack = sctp_make_sack(asoc); |
| 1270 | if (!sack) |
| 1271 | return; |
| 1272 | |
| 1273 | asoc->peer.sack_needed = 0; |
| 1274 | |
| 1275 | sctp_outq_tail(&asoc->outqueue, sack); |
| 1276 | |
| 1277 | /* Stop the SACK timer. */ |
| 1278 | timer = &asoc->timers[SCTP_EVENT_TIMEOUT_SACK]; |
| 1279 | if (timer_pending(timer) && del_timer(timer)) |
| 1280 | sctp_association_put(asoc); |
| 1281 | } |
| 1282 | } |
| 1283 | |
| 1284 | /* Decrease asoc's rwnd by len. */ |
| 1285 | void sctp_assoc_rwnd_decrease(struct sctp_association *asoc, unsigned len) |
| 1286 | { |
| 1287 | SCTP_ASSERT(asoc->rwnd, "rwnd zero", return); |
| 1288 | SCTP_ASSERT(!asoc->rwnd_over, "rwnd_over not zero", return); |
| 1289 | if (asoc->rwnd >= len) { |
| 1290 | asoc->rwnd -= len; |
| 1291 | } else { |
| 1292 | asoc->rwnd_over = len - asoc->rwnd; |
| 1293 | asoc->rwnd = 0; |
| 1294 | } |
| 1295 | SCTP_DEBUG_PRINTK("%s: asoc %p rwnd decreased by %d to (%u, %u)\n", |
| 1296 | __FUNCTION__, asoc, len, asoc->rwnd, |
| 1297 | asoc->rwnd_over); |
| 1298 | } |
| 1299 | |
| 1300 | /* Build the bind address list for the association based on info from the |
| 1301 | * local endpoint and the remote peer. |
| 1302 | */ |
Alexey Dobriyan | 3182cd84 | 2005-07-11 20:57:47 -0700 | [diff] [blame] | 1303 | int sctp_assoc_set_bind_addr_from_ep(struct sctp_association *asoc, |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 1304 | gfp_t gfp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | { |
| 1306 | sctp_scope_t scope; |
| 1307 | int flags; |
| 1308 | |
| 1309 | /* Use scoping rules to determine the subset of addresses from |
| 1310 | * the endpoint. |
| 1311 | */ |
Al Viro | 09ef7fe | 2006-11-20 17:04:10 -0800 | [diff] [blame] | 1312 | scope = sctp_scope(&asoc->peer.active_path->ipaddr_h); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | flags = (PF_INET6 == asoc->base.sk->sk_family) ? SCTP_ADDR6_ALLOWED : 0; |
| 1314 | if (asoc->peer.ipv4_address) |
| 1315 | flags |= SCTP_ADDR4_PEERSUPP; |
| 1316 | if (asoc->peer.ipv6_address) |
| 1317 | flags |= SCTP_ADDR6_PEERSUPP; |
| 1318 | |
| 1319 | return sctp_bind_addr_copy(&asoc->base.bind_addr, |
| 1320 | &asoc->ep->base.bind_addr, |
| 1321 | scope, gfp, flags); |
| 1322 | } |
| 1323 | |
| 1324 | /* Build the association's bind address list from the cookie. */ |
| 1325 | int sctp_assoc_set_bind_addr_from_cookie(struct sctp_association *asoc, |
Alexey Dobriyan | 3182cd84 | 2005-07-11 20:57:47 -0700 | [diff] [blame] | 1326 | struct sctp_cookie *cookie, |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 1327 | gfp_t gfp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | { |
| 1329 | int var_size2 = ntohs(cookie->peer_init->chunk_hdr.length); |
| 1330 | int var_size3 = cookie->raw_addr_list_len; |
| 1331 | __u8 *raw = (__u8 *)cookie->peer_init + var_size2; |
| 1332 | |
| 1333 | return sctp_raw_to_bind_addrs(&asoc->base.bind_addr, raw, var_size3, |
| 1334 | asoc->ep->base.bind_addr.port, gfp); |
| 1335 | } |
| 1336 | |
| 1337 | /* Lookup laddr in the bind address list of an association. */ |
| 1338 | int sctp_assoc_lookup_laddr(struct sctp_association *asoc, |
| 1339 | const union sctp_addr *laddr) |
| 1340 | { |
| 1341 | int found; |
| 1342 | |
| 1343 | sctp_read_lock(&asoc->base.addr_lock); |
| 1344 | if ((asoc->base.bind_addr.port == ntohs(laddr->v4.sin_port)) && |
Al Viro | 7e1e4a2 | 2006-11-20 17:05:43 -0800 | [diff] [blame] | 1345 | sctp_bind_addr_match(&asoc->base.bind_addr, laddr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 | sctp_sk(asoc->base.sk))) { |
| 1347 | found = 1; |
| 1348 | goto out; |
| 1349 | } |
| 1350 | |
| 1351 | found = 0; |
| 1352 | out: |
| 1353 | sctp_read_unlock(&asoc->base.addr_lock); |
| 1354 | return found; |
| 1355 | } |