blob: fa261a3594c2e5ac8a348b94444eb1a328641ac1 [file] [log] [blame]
Vlad Yasevich60c778b2008-01-11 09:57:09 -05001/* SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) Copyright IBM Corp. 2001, 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 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05008 * This file is part of the SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * This module provides the abstraction for an SCTP association.
11 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050012 * This SCTP implementation is free software;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * 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 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050018 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * 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
Joe Perches145ce502010-08-24 13:21:08 +000051#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <linux/types.h>
54#include <linux/fcntl.h>
55#include <linux/poll.h>
56#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58#include <linux/slab.h>
59#include <linux/in.h>
60#include <net/ipv6.h>
61#include <net/sctp/sctp.h>
62#include <net/sctp/sm.h>
63
64/* Forward declarations for internal functions. */
David Howellsc4028952006-11-22 14:57:56 +000065static void sctp_assoc_bh_rcv(struct work_struct *work);
Vlad Yasevicha08de642007-12-20 14:11:47 -080066static void sctp_assoc_free_asconf_acks(struct sctp_association *asoc);
Wei Yongjun8b4472c2011-05-24 21:48:02 +000067static void sctp_assoc_free_asconf_queue(struct sctp_association *asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/* 1st Level Abstractions. */
70
71/* Initialize a new association from provided memory. */
72static struct sctp_association *sctp_association_init(struct sctp_association *asoc,
73 const struct sctp_endpoint *ep,
74 const struct sock *sk,
75 sctp_scope_t scope,
Al Virodd0fc662005-10-07 07:46:04 +010076 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +000078 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 struct sctp_sock *sp;
80 int i;
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -070081 sctp_paramhdr_t *p;
82 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 /* Retrieve the SCTP per socket area. */
85 sp = sctp_sk((struct sock *)sk);
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 /* Discarding const is appropriate here. */
88 asoc->ep = (struct sctp_endpoint *)ep;
89 sctp_endpoint_hold(asoc->ep);
90
91 /* Hold the sock. */
92 asoc->base.sk = (struct sock *)sk;
93 sock_hold(asoc->base.sk);
94
95 /* Initialize the common base substructure. */
96 asoc->base.type = SCTP_EP_TYPE_ASSOCIATION;
97
98 /* Initialize the object handling fields. */
99 atomic_set(&asoc->base.refcnt, 1);
100 asoc->base.dead = 0;
101 asoc->base.malloced = 0;
102
103 /* Initialize the bind addr area. */
104 sctp_bind_addr_init(&asoc->base.bind_addr, ep->base.bind_addr.port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 asoc->state = SCTP_STATE_CLOSED;
107
108 /* Set these values from the socket values, a conversion between
109 * millsecons to seconds/microseconds must also be done.
110 */
111 asoc->cookie_life.tv_sec = sp->assocparams.sasoc_cookie_life / 1000;
112 asoc->cookie_life.tv_usec = (sp->assocparams.sasoc_cookie_life % 1000)
113 * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 asoc->frag_point = 0;
Vlad Yasevichf68b2e02009-09-04 18:21:00 -0400115 asoc->user_frag = sp->user_frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 /* Set the association max_retrans and RTO values from the
118 * socket values.
119 */
120 asoc->max_retrans = sp->assocparams.sasoc_asocmaxrxt;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000121 asoc->pf_retrans = net->sctp.pf_retrans;
Neil Horman5aa93bc2012-07-21 07:56:07 +0000122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 asoc->rto_initial = msecs_to_jiffies(sp->rtoinfo.srto_initial);
124 asoc->rto_max = msecs_to_jiffies(sp->rtoinfo.srto_max);
125 asoc->rto_min = msecs_to_jiffies(sp->rtoinfo.srto_min);
126
127 asoc->overall_error_count = 0;
128
Frank Filz52ccb8e2005-12-22 11:36:46 -0800129 /* Initialize the association's heartbeat interval based on the
130 * sock configured value.
131 */
132 asoc->hbinterval = msecs_to_jiffies(sp->hbinterval);
133
134 /* Initialize path max retrans value. */
135 asoc->pathmaxrxt = sp->pathmaxrxt;
136
137 /* Initialize default path MTU. */
138 asoc->pathmtu = sp->pathmtu;
139
140 /* Set association default SACK delay */
141 asoc->sackdelay = msecs_to_jiffies(sp->sackdelay);
Wei Yongjund364d922008-05-09 15:13:26 -0700142 asoc->sackfreq = sp->sackfreq;
Frank Filz52ccb8e2005-12-22 11:36:46 -0800143
144 /* Set the association default flags controlling
145 * Heartbeat, SACK delay, and Path MTU Discovery.
146 */
147 asoc->param_flags = sp->param_flags;
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 /* Initialize the maximum mumber of new data packets that can be sent
150 * in a burst.
151 */
Vlad Yasevich70331572007-03-23 11:34:36 -0700152 asoc->max_burst = sp->max_burst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Vladislav Yasevich1e7d3d92005-11-11 16:06:16 -0800154 /* initialize association timers */
155 asoc->timeouts[SCTP_EVENT_TIMEOUT_NONE] = 0;
156 asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_COOKIE] = asoc->rto_initial;
157 asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_INIT] = asoc->rto_initial;
158 asoc->timeouts[SCTP_EVENT_TIMEOUT_T2_SHUTDOWN] = asoc->rto_initial;
159 asoc->timeouts[SCTP_EVENT_TIMEOUT_T3_RTX] = 0;
160 asoc->timeouts[SCTP_EVENT_TIMEOUT_T4_RTO] = 0;
161
162 /* sctpimpguide Section 2.12.2
163 * If the 'T5-shutdown-guard' timer is used, it SHOULD be set to the
164 * recommended value of 5 times 'RTO.Max'.
165 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900166 asoc->timeouts[SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD]
Vladislav Yasevich1e7d3d92005-11-11 16:06:16 -0800167 = 5 * asoc->rto_max;
168
169 asoc->timeouts[SCTP_EVENT_TIMEOUT_HEARTBEAT] = 0;
Frank Filz52ccb8e2005-12-22 11:36:46 -0800170 asoc->timeouts[SCTP_EVENT_TIMEOUT_SACK] = asoc->sackdelay;
Vladislav Yasevich1e7d3d92005-11-11 16:06:16 -0800171 asoc->timeouts[SCTP_EVENT_TIMEOUT_AUTOCLOSE] =
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000172 min_t(unsigned long, sp->autoclose, net->sctp.max_autoclose) * HZ;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900173
Uwe Kleine-König421f91d2010-06-11 12:17:00 +0200174 /* Initializes the timers */
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800175 for (i = SCTP_EVENT_TIMEOUT_NONE; i < SCTP_NUM_TIMEOUT_TYPES; ++i)
176 setup_timer(&asoc->timers[i], sctp_timer_events[i],
177 (unsigned long)asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 /* Pull default initialization values from the sock options.
180 * Note: This assumes that the values have already been
181 * validated in the sock.
182 */
183 asoc->c.sinit_max_instreams = sp->initmsg.sinit_max_instreams;
184 asoc->c.sinit_num_ostreams = sp->initmsg.sinit_num_ostreams;
185 asoc->max_init_attempts = sp->initmsg.sinit_max_attempts;
186
187 asoc->max_init_timeo =
188 msecs_to_jiffies(sp->initmsg.sinit_max_init_timeo);
189
190 /* Allocate storage for the ssnmap after the inbound and outbound
191 * streams have been negotiated during Init.
192 */
193 asoc->ssnmap = NULL;
194
195 /* Set the local window size for receive.
196 * This is also the rcvbuf space per association.
197 * RFC 6 - A SCTP receiver MUST be able to receive a minimum of
198 * 1500 bytes in one SCTP packet.
199 */
Neil Horman049b3ff2005-11-11 16:08:24 -0800200 if ((sk->sk_rcvbuf/2) < SCTP_DEFAULT_MINWINDOW)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 asoc->rwnd = SCTP_DEFAULT_MINWINDOW;
202 else
Neil Horman049b3ff2005-11-11 16:08:24 -0800203 asoc->rwnd = sk->sk_rcvbuf/2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 asoc->a_rwnd = asoc->rwnd;
206
207 asoc->rwnd_over = 0;
Vlad Yasevich4d3c46e2009-09-04 18:20:59 -0400208 asoc->rwnd_press = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 /* Use my own max window until I learn something better. */
211 asoc->peer.rwnd = SCTP_DEFAULT_MAXWINDOW;
212
213 /* Set the sndbuf size for transmit. */
214 asoc->sndbuf_used = 0;
215
Neil Horman049b3ff2005-11-11 16:08:24 -0800216 /* Initialize the receive memory counter */
217 atomic_set(&asoc->rmem_alloc, 0);
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 init_waitqueue_head(&asoc->wait);
220
221 asoc->c.my_vtag = sctp_generate_tag(ep);
222 asoc->peer.i.init_tag = 0; /* INIT needs a vtag of 0. */
223 asoc->c.peer_vtag = 0;
224 asoc->c.my_ttag = 0;
225 asoc->c.peer_ttag = 0;
226 asoc->c.my_port = ep->base.bind_addr.port;
227
228 asoc->c.initial_tsn = sctp_generate_tsn(ep);
229
230 asoc->next_tsn = asoc->c.initial_tsn;
231
232 asoc->ctsn_ack_point = asoc->next_tsn - 1;
233 asoc->adv_peer_ack_point = asoc->ctsn_ack_point;
234 asoc->highest_sacked = asoc->ctsn_ack_point;
235 asoc->last_cwr_tsn = asoc->ctsn_ack_point;
236 asoc->unack_data = 0;
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 /* ADDIP Section 4.1 Asconf Chunk Procedures
239 *
240 * When an endpoint has an ASCONF signaled change to be sent to the
241 * remote endpoint it should do the following:
242 * ...
243 * A2) a serial number should be assigned to the chunk. The serial
244 * number SHOULD be a monotonically increasing number. The serial
245 * numbers SHOULD be initialized at the start of the
246 * association to the same value as the initial TSN.
247 */
248 asoc->addip_serial = asoc->c.initial_tsn;
249
David S. Miller79af02c2005-07-08 21:47:49 -0700250 INIT_LIST_HEAD(&asoc->addip_chunk_list);
Vlad Yasevicha08de642007-12-20 14:11:47 -0800251 INIT_LIST_HEAD(&asoc->asconf_ack_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 /* Make an empty list of remote transport addresses. */
254 INIT_LIST_HEAD(&asoc->peer.transport_addr_list);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700255 asoc->peer.transport_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 /* RFC 2960 5.1 Normal Establishment of an Association
258 *
259 * After the reception of the first data chunk in an
260 * association the endpoint must immediately respond with a
261 * sack to acknowledge the data chunk. Subsequent
262 * acknowledgements should be done as described in Section
263 * 6.2.
264 *
265 * [We implement this by telling a new association that it
266 * already received one packet.]
267 */
268 asoc->peer.sack_needed = 1;
Wei Yongjund364d922008-05-09 15:13:26 -0700269 asoc->peer.sack_cnt = 0;
Neil Horman42448542012-06-30 03:04:26 +0000270 asoc->peer.sack_generation = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400272 /* Assume that the peer will tell us if he recognizes ASCONF
273 * as part of INIT exchange.
274 * The sctp_addip_noauth option is there for backward compatibilty
275 * and will revert old behavior.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 */
Vlad Yasevich88799fe2007-10-24 17:24:23 -0400277 asoc->peer.asconf_capable = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000278 if (net->sctp.addip_noauth)
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400279 asoc->peer.asconf_capable = 1;
Michio Honda8a07eb02011-04-26 20:19:36 +0900280 asoc->asconf_addr_del_pending = NULL;
281 asoc->src_out_of_asoc_ok = 0;
Michio Honda6af29cc2011-06-16 17:14:34 +0900282 asoc->new_transport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 /* Create an input queue. */
285 sctp_inq_init(&asoc->base.inqueue);
David Howellsc4028952006-11-22 14:57:56 +0000286 sctp_inq_set_th_handler(&asoc->base.inqueue, sctp_assoc_bh_rcv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 /* Create an output queue. */
289 sctp_outq_init(asoc, &asoc->outqueue);
290
291 if (!sctp_ulpq_init(&asoc->ulpq, asoc))
292 goto fail_init;
293
Vlad Yasevich8e1ee182008-10-08 14:18:39 -0700294 memset(&asoc->peer.tsn_map, 0, sizeof(struct sctp_tsnmap));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 asoc->need_ecne = 0;
297
298 asoc->assoc_id = 0;
299
300 /* Assume that peer would support both address types unless we are
301 * told otherwise.
302 */
303 asoc->peer.ipv4_address = 1;
Wei Yongjuna2c39582009-04-07 16:35:11 +0800304 if (asoc->base.sk->sk_family == PF_INET6)
305 asoc->peer.ipv6_address = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 INIT_LIST_HEAD(&asoc->asocs);
307
308 asoc->autoclose = sp->autoclose;
309
310 asoc->default_stream = sp->default_stream;
311 asoc->default_ppid = sp->default_ppid;
312 asoc->default_flags = sp->default_flags;
313 asoc->default_context = sp->default_context;
314 asoc->default_timetolive = sp->default_timetolive;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -0800315 asoc->default_rcv_context = sp->default_rcv_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Michele Baldessari196d6752012-12-01 04:49:42 +0000317 /* SCTP_GET_ASSOC_STATS COUNTERS */
318 memset(&asoc->stats, 0, sizeof(struct sctp_priv_assoc_stats));
319
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -0700320 /* AUTH related initializations */
321 INIT_LIST_HEAD(&asoc->endpoint_shared_keys);
322 err = sctp_auth_asoc_copy_shkeys(ep, asoc, gfp);
323 if (err)
324 goto fail_init;
325
326 asoc->active_key_id = ep->active_key_id;
327 asoc->asoc_shared_key = NULL;
328
329 asoc->default_hmac_id = 0;
330 /* Save the hmacs and chunks list into this association */
331 if (ep->auth_hmacs_list)
332 memcpy(asoc->c.auth_hmacs, ep->auth_hmacs_list,
333 ntohs(ep->auth_hmacs_list->param_hdr.length));
334 if (ep->auth_chunk_list)
335 memcpy(asoc->c.auth_chunks, ep->auth_chunk_list,
336 ntohs(ep->auth_chunk_list->param_hdr.length));
337
338 /* Get the AUTH random number for this association */
339 p = (sctp_paramhdr_t *)asoc->c.auth_random;
340 p->type = SCTP_PARAM_RANDOM;
341 p->length = htons(sizeof(sctp_paramhdr_t) + SCTP_AUTH_RANDOM_LENGTH);
342 get_random_bytes(p+1, SCTP_AUTH_RANDOM_LENGTH);
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return asoc;
345
346fail_init:
347 sctp_endpoint_put(asoc->ep);
348 sock_put(asoc->base.sk);
349 return NULL;
350}
351
352/* Allocate and initialize a new association */
353struct sctp_association *sctp_association_new(const struct sctp_endpoint *ep,
354 const struct sock *sk,
Alexey Dobriyan3182cd82005-07-11 20:57:47 -0700355 sctp_scope_t scope,
Al Virodd0fc662005-10-07 07:46:04 +0100356 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358 struct sctp_association *asoc;
359
360 asoc = t_new(struct sctp_association, gfp);
361 if (!asoc)
362 goto fail;
363
364 if (!sctp_association_init(asoc, ep, sk, scope, gfp))
365 goto fail_init;
366
367 asoc->base.malloced = 1;
368 SCTP_DBG_OBJCNT_INC(assoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700369 SCTP_DEBUG_PRINTK("Created asoc %p\n", asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 return asoc;
372
373fail_init:
374 kfree(asoc);
375fail:
376 return NULL;
377}
378
379/* Free this association if possible. There may still be users, so
380 * the actual deallocation may be delayed.
381 */
382void sctp_association_free(struct sctp_association *asoc)
383{
384 struct sock *sk = asoc->base.sk;
385 struct sctp_transport *transport;
386 struct list_head *pos, *temp;
387 int i;
388
Vlad Yasevichde76e692006-10-30 18:55:11 -0800389 /* Only real associations count against the endpoint, so
390 * don't bother for if this is a temporary association.
391 */
392 if (!asoc->temp) {
393 list_del(&asoc->asocs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Vlad Yasevichde76e692006-10-30 18:55:11 -0800395 /* Decrement the backlog value for a TCP-style listening
396 * socket.
397 */
398 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
399 sk->sk_ack_backlog--;
400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 /* Mark as dead, so other users can know this structure is
403 * going away.
404 */
405 asoc->base.dead = 1;
406
407 /* Dispose of any data lying around in the outqueue. */
408 sctp_outq_free(&asoc->outqueue);
409
410 /* Dispose of any pending messages for the upper layer. */
411 sctp_ulpq_free(&asoc->ulpq);
412
413 /* Dispose of any pending chunks on the inqueue. */
414 sctp_inq_free(&asoc->base.inqueue);
415
Vlad Yasevich8e1ee182008-10-08 14:18:39 -0700416 sctp_tsnmap_free(&asoc->peer.tsn_map);
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 /* Free ssnmap storage. */
419 sctp_ssnmap_free(asoc->ssnmap);
420
421 /* Clean up the bound address list. */
422 sctp_bind_addr_free(&asoc->base.bind_addr);
423
424 /* Do we need to go through all of our timers and
425 * delete them? To be safe we will try to delete all, but we
426 * should be able to go through and make a guess based
427 * on our state.
428 */
429 for (i = SCTP_EVENT_TIMEOUT_NONE; i < SCTP_NUM_TIMEOUT_TYPES; ++i) {
Ying Xue25cc4ae2013-02-03 20:32:57 +0000430 if (del_timer(&asoc->timers[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 sctp_association_put(asoc);
432 }
433
434 /* Free peer's cached cookie. */
Jesper Juhla51482b2005-11-08 09:41:34 -0800435 kfree(asoc->peer.cookie);
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700436 kfree(asoc->peer.peer_random);
437 kfree(asoc->peer.peer_chunks);
438 kfree(asoc->peer.peer_hmacs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 /* Release the transport structures. */
441 list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
442 transport = list_entry(pos, struct sctp_transport, transports);
Thomas Graf45122ca262012-12-06 09:25:05 +0000443 list_del_rcu(pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 sctp_transport_free(transport);
445 }
446
Frank Filz3f7a87d2005-06-20 13:14:57 -0700447 asoc->peer.transport_count = 0;
448
Wei Yongjuna000c012011-05-29 23:23:36 +0000449 sctp_asconf_queue_teardown(asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Michio Honda8a07eb02011-04-26 20:19:36 +0900451 /* Free pending address space being deleted */
452 if (asoc->asconf_addr_del_pending != NULL)
453 kfree(asoc->asconf_addr_del_pending);
454
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -0700455 /* AUTH - Free the endpoint shared keys */
456 sctp_auth_destroy_keys(&asoc->endpoint_shared_keys);
457
458 /* AUTH - Free the association shared key */
459 sctp_auth_key_put(asoc->asoc_shared_key);
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 sctp_association_put(asoc);
462}
463
464/* Cleanup and free up an association. */
465static void sctp_association_destroy(struct sctp_association *asoc)
466{
467 SCTP_ASSERT(asoc->base.dead, "Assoc is not dead", return);
468
469 sctp_endpoint_put(asoc->ep);
470 sock_put(asoc->base.sk);
471
472 if (asoc->assoc_id != 0) {
473 spin_lock_bh(&sctp_assocs_id_lock);
474 idr_remove(&sctp_assocs_id, asoc->assoc_id);
475 spin_unlock_bh(&sctp_assocs_id_lock);
476 }
477
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700478 WARN_ON(atomic_read(&asoc->rmem_alloc));
Neil Horman049b3ff2005-11-11 16:08:24 -0800479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (asoc->base.malloced) {
481 kfree(asoc);
482 SCTP_DBG_OBJCNT_DEC(assoc);
483 }
484}
485
486/* Change the primary destination address for the peer. */
487void sctp_assoc_set_primary(struct sctp_association *asoc,
488 struct sctp_transport *transport)
489{
Vlad Yasevich319fa2a2008-06-16 17:00:29 -0700490 int changeover = 0;
491
492 /* it's a changeover only if we already have a primary path
493 * that we are changing
494 */
495 if (asoc->peer.primary_path != NULL &&
496 asoc->peer.primary_path != transport)
497 changeover = 1 ;
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 asoc->peer.primary_path = transport;
500
501 /* Set a default msg_name for events. */
502 memcpy(&asoc->peer.primary_addr, &transport->ipaddr,
503 sizeof(union sctp_addr));
504
505 /* If the primary path is changing, assume that the
506 * user wants to use this new path.
507 */
Sridhar Samudralaad8fec12006-07-21 14:48:50 -0700508 if ((transport->state == SCTP_ACTIVE) ||
509 (transport->state == SCTP_UNKNOWN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 asoc->peer.active_path = transport;
511
512 /*
513 * SFR-CACC algorithm:
514 * Upon the receipt of a request to change the primary
515 * destination address, on the data structure for the new
516 * primary destination, the sender MUST do the following:
517 *
518 * 1) If CHANGEOVER_ACTIVE is set, then there was a switch
519 * to this destination address earlier. The sender MUST set
520 * CYCLING_CHANGEOVER to indicate that this switch is a
521 * double switch to the same destination address.
Vlad Yaseviche0e9db12009-11-23 15:53:57 -0500522 *
523 * Really, only bother is we have data queued or outstanding on
524 * the association.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 */
Vlad Yaseviche0e9db12009-11-23 15:53:57 -0500526 if (!asoc->outqueue.outstanding_bytes && !asoc->outqueue.out_qlen)
527 return;
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (transport->cacc.changeover_active)
Vlad Yasevich319fa2a2008-06-16 17:00:29 -0700530 transport->cacc.cycling_changeover = changeover;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 /* 2) The sender MUST set CHANGEOVER_ACTIVE to indicate that
533 * a changeover has occurred.
534 */
Vlad Yasevich319fa2a2008-06-16 17:00:29 -0700535 transport->cacc.changeover_active = changeover;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 /* 3) The sender MUST store the next TSN to be sent in
538 * next_tsn_at_change.
539 */
540 transport->cacc.next_tsn_at_change = asoc->next_tsn;
541}
542
Frank Filz3f7a87d2005-06-20 13:14:57 -0700543/* Remove a transport from an association. */
544void sctp_assoc_rm_peer(struct sctp_association *asoc,
545 struct sctp_transport *peer)
546{
547 struct list_head *pos;
548 struct sctp_transport *transport;
549
550 SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_rm_peer:association %p addr: ",
551 " port: %d\n",
552 asoc,
553 (&peer->ipaddr),
Al Virob3f5b3b2006-11-20 17:22:43 -0800554 ntohs(peer->ipaddr.v4.sin_port));
Frank Filz3f7a87d2005-06-20 13:14:57 -0700555
556 /* If we are to remove the current retran_path, update it
557 * to the next peer before removing this peer from the list.
558 */
559 if (asoc->peer.retran_path == peer)
560 sctp_assoc_update_retran_path(asoc);
561
562 /* Remove this peer from the list. */
Thomas Graf45122ca262012-12-06 09:25:05 +0000563 list_del_rcu(&peer->transports);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700564
565 /* Get the first transport of asoc. */
566 pos = asoc->peer.transport_addr_list.next;
567 transport = list_entry(pos, struct sctp_transport, transports);
568
569 /* Update any entries that match the peer to be deleted. */
570 if (asoc->peer.primary_path == peer)
571 sctp_assoc_set_primary(asoc, transport);
572 if (asoc->peer.active_path == peer)
573 asoc->peer.active_path = transport;
Wei Yongjun9494c7c2011-04-12 15:22:22 +0000574 if (asoc->peer.retran_path == peer)
575 asoc->peer.retran_path = transport;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700576 if (asoc->peer.last_data_from == peer)
577 asoc->peer.last_data_from = transport;
578
579 /* If we remove the transport an INIT was last sent to, set it to
580 * NULL. Combined with the update of the retran path above, this
581 * will cause the next INIT to be sent to the next available
582 * transport, maintaining the cycle.
583 */
584 if (asoc->init_last_sent_to == peer)
585 asoc->init_last_sent_to = NULL;
586
Wei Yongjun6345b192009-04-26 23:13:35 +0800587 /* If we remove the transport an SHUTDOWN was last sent to, set it
588 * to NULL. Combined with the update of the retran path above, this
589 * will cause the next SHUTDOWN to be sent to the next available
590 * transport, maintaining the cycle.
591 */
592 if (asoc->shutdown_last_sent_to == peer)
593 asoc->shutdown_last_sent_to = NULL;
594
Wei Yongjun10a43ce2009-04-26 23:14:42 +0800595 /* If we remove the transport an ASCONF was last sent to, set it to
596 * NULL.
597 */
598 if (asoc->addip_last_asconf &&
599 asoc->addip_last_asconf->transport == peer)
600 asoc->addip_last_asconf->transport = NULL;
601
Vlad Yasevich31b02e12009-09-04 18:21:00 -0400602 /* If we have something on the transmitted list, we have to
603 * save it off. The best place is the active path.
604 */
605 if (!list_empty(&peer->transmitted)) {
606 struct sctp_transport *active = asoc->peer.active_path;
607 struct sctp_chunk *ch;
608
609 /* Reset the transport of each chunk on this list */
610 list_for_each_entry(ch, &peer->transmitted,
611 transmitted_list) {
612 ch->transport = NULL;
613 ch->rtt_in_progress = 0;
614 }
615
616 list_splice_tail_init(&peer->transmitted,
617 &active->transmitted);
618
619 /* Start a T3 timer here in case it wasn't running so
620 * that these migrated packets have a chance to get
621 * retrnasmitted.
622 */
623 if (!timer_pending(&active->T3_rtx_timer))
624 if (!mod_timer(&active->T3_rtx_timer,
625 jiffies + active->rto))
626 sctp_transport_hold(active);
627 }
628
Frank Filz3f7a87d2005-06-20 13:14:57 -0700629 asoc->peer.transport_count--;
630
631 sctp_transport_free(peer);
632}
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634/* Add a transport address to an association. */
635struct sctp_transport *sctp_assoc_add_peer(struct sctp_association *asoc,
636 const union sctp_addr *addr,
Al Virodd0fc662005-10-07 07:46:04 +0100637 const gfp_t gfp,
Frank Filz3f7a87d2005-06-20 13:14:57 -0700638 const int peer_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Eric W. Biederman89bf3452012-08-07 07:26:14 +0000640 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 struct sctp_transport *peer;
642 struct sctp_sock *sp;
643 unsigned short port;
644
645 sp = sctp_sk(asoc->base.sk);
646
647 /* AF_INET and AF_INET6 share common port field. */
Al Viro4bdf4b52006-11-20 17:10:20 -0800648 port = ntohs(addr->v4.sin_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Frank Filz3f7a87d2005-06-20 13:14:57 -0700650 SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_add_peer:association %p addr: ",
Sridhar Samudralaad8fec12006-07-21 14:48:50 -0700651 " port: %d state:%d\n",
Frank Filz3f7a87d2005-06-20 13:14:57 -0700652 asoc,
653 addr,
Al Viro4bdf4b52006-11-20 17:10:20 -0800654 port,
Sridhar Samudralaad8fec12006-07-21 14:48:50 -0700655 peer_state);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /* Set the port if it has not been set yet. */
658 if (0 == asoc->peer.port)
659 asoc->peer.port = port;
660
661 /* Check to see if this is a duplicate. */
662 peer = sctp_assoc_lookup_paddr(asoc, addr);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700663 if (peer) {
Vlad Yasevichadd52372008-09-18 16:28:27 -0700664 /* An UNKNOWN state is only set on transports added by
665 * user in sctp_connectx() call. Such transports should be
666 * considered CONFIRMED per RFC 4960, Section 5.4.
667 */
Sridhar Samudralaad8fec12006-07-21 14:48:50 -0700668 if (peer->state == SCTP_UNKNOWN) {
Vlad Yasevichadd52372008-09-18 16:28:27 -0700669 peer->state = SCTP_ACTIVE;
Sridhar Samudralaad8fec12006-07-21 14:48:50 -0700670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return peer;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Eric W. Biederman89bf3452012-08-07 07:26:14 +0000674 peer = sctp_transport_new(net, addr, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (!peer)
676 return NULL;
677
678 sctp_transport_set_owner(peer, asoc);
679
Frank Filz52ccb8e2005-12-22 11:36:46 -0800680 /* Initialize the peer's heartbeat interval based on the
681 * association configured value.
682 */
683 peer->hbinterval = asoc->hbinterval;
684
685 /* Set the path max_retrans. */
686 peer->pathmaxrxt = asoc->pathmaxrxt;
687
Neil Horman5aa93bc2012-07-21 07:56:07 +0000688 /* And the partial failure retrnas threshold */
689 peer->pf_retrans = asoc->pf_retrans;
690
Frank Filz52ccb8e2005-12-22 11:36:46 -0800691 /* Initialize the peer's SACK delay timeout based on the
692 * association configured value.
693 */
694 peer->sackdelay = asoc->sackdelay;
Wei Yongjund364d922008-05-09 15:13:26 -0700695 peer->sackfreq = asoc->sackfreq;
Frank Filz52ccb8e2005-12-22 11:36:46 -0800696
697 /* Enable/disable heartbeat, SACK delay, and path MTU discovery
698 * based on association setting.
699 */
700 peer->param_flags = asoc->param_flags;
701
Vlad Yasevich8da645e2009-09-04 18:21:01 -0400702 sctp_transport_route(peer, NULL, sp);
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 /* Initialize the pmtu of the transport. */
Vlad Yasevich8da645e2009-09-04 18:21:01 -0400705 if (peer->param_flags & SPP_PMTUD_DISABLE) {
706 if (asoc->pathmtu)
707 peer->pathmtu = asoc->pathmtu;
708 else
709 peer->pathmtu = SCTP_DEFAULT_MAXSEGMENT;
710 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 /* If this is the first transport addr on this association,
713 * initialize the association PMTU to the peer's PMTU.
714 * If not and the current association PMTU is higher than the new
715 * peer's PMTU, reset the association PMTU to the new peer's PMTU.
716 */
Frank Filz52ccb8e2005-12-22 11:36:46 -0800717 if (asoc->pathmtu)
718 asoc->pathmtu = min_t(int, peer->pathmtu, asoc->pathmtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 else
Frank Filz52ccb8e2005-12-22 11:36:46 -0800720 asoc->pathmtu = peer->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722 SCTP_DEBUG_PRINTK("sctp_assoc_add_peer:association %p PMTU set to "
Frank Filz52ccb8e2005-12-22 11:36:46 -0800723 "%d\n", asoc, asoc->pathmtu);
Florian Westphal6d0ccba2008-07-18 23:04:39 -0700724 peer->pmtu_pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Vlad Yasevichf68b2e02009-09-04 18:21:00 -0400726 asoc->frag_point = sctp_frag_point(asoc, asoc->pathmtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 /* The asoc->peer.port might not be meaningful yet, but
729 * initialize the packet structure anyway.
730 */
731 sctp_packet_init(&peer->packet, peer, asoc->base.bind_addr.port,
732 asoc->peer.port);
733
734 /* 7.2.1 Slow-Start
735 *
736 * o The initial cwnd before DATA transmission or after a sufficiently
737 * long idle period MUST be set to
738 * min(4*MTU, max(2*MTU, 4380 bytes))
739 *
740 * o The initial value of ssthresh MAY be arbitrarily high
741 * (for example, implementations MAY use the size of the
742 * receiver advertised window).
743 */
Frank Filz52ccb8e2005-12-22 11:36:46 -0800744 peer->cwnd = min(4*asoc->pathmtu, max_t(__u32, 2*asoc->pathmtu, 4380));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 /* At this point, we may not have the receiver's advertised window,
747 * so initialize ssthresh to the default value and it will be set
748 * later when we process the INIT.
749 */
750 peer->ssthresh = SCTP_DEFAULT_MAXWINDOW;
751
752 peer->partial_bytes_acked = 0;
753 peer->flight_size = 0;
Vlad Yasevich46d5a802009-11-23 15:54:00 -0500754 peer->burst_limited = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 /* Set the transport's RTO.initial value */
757 peer->rto = asoc->rto_initial;
Michele Baldessari196d6752012-12-01 04:49:42 +0000758 sctp_max_rto(asoc, peer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Frank Filz3f7a87d2005-06-20 13:14:57 -0700760 /* Set the peer's active state. */
761 peer->state = peer_state;
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 /* Attach the remote transport to our asoc. */
Thomas Graf45122ca262012-12-06 09:25:05 +0000764 list_add_tail_rcu(&peer->transports, &asoc->peer.transport_addr_list);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700765 asoc->peer.transport_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 /* If we do not yet have a primary path, set one. */
768 if (!asoc->peer.primary_path) {
769 sctp_assoc_set_primary(asoc, peer);
770 asoc->peer.retran_path = peer;
771 }
772
Vlad Yasevichfbdf5012010-04-30 22:39:26 -0400773 if (asoc->peer.active_path == asoc->peer.retran_path &&
774 peer->state != SCTP_UNCONFIRMED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 asoc->peer.retran_path = peer;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 return peer;
779}
780
781/* Delete a transport address from an association. */
782void sctp_assoc_del_peer(struct sctp_association *asoc,
783 const union sctp_addr *addr)
784{
785 struct list_head *pos;
786 struct list_head *temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 struct sctp_transport *transport;
788
789 list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
790 transport = list_entry(pos, struct sctp_transport, transports);
791 if (sctp_cmp_addr_exact(addr, &transport->ipaddr)) {
Frank Filz3f7a87d2005-06-20 13:14:57 -0700792 /* Do book keeping for removing the peer and free it. */
793 sctp_assoc_rm_peer(asoc, transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 break;
795 }
796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797}
798
799/* Lookup a transport by address. */
800struct sctp_transport *sctp_assoc_lookup_paddr(
801 const struct sctp_association *asoc,
802 const union sctp_addr *address)
803{
804 struct sctp_transport *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 /* Cycle through all transports searching for a peer address. */
807
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700808 list_for_each_entry(t, &asoc->peer.transport_addr_list,
809 transports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (sctp_cmp_addr_exact(address, &t->ipaddr))
811 return t;
812 }
813
814 return NULL;
815}
816
Vlad Yasevich42e30bf2007-12-20 14:08:56 -0800817/* Remove all transports except a give one */
818void sctp_assoc_del_nonprimary_peers(struct sctp_association *asoc,
819 struct sctp_transport *primary)
820{
821 struct sctp_transport *temp;
822 struct sctp_transport *t;
823
824 list_for_each_entry_safe(t, temp, &asoc->peer.transport_addr_list,
825 transports) {
826 /* if the current transport is not the primary one, delete it */
827 if (t != primary)
828 sctp_assoc_rm_peer(asoc, t);
829 }
Vlad Yasevich42e30bf2007-12-20 14:08:56 -0800830}
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832/* Engage in transport control operations.
833 * Mark the transport up or down and send a notification to the user.
834 * Select and update the new active and retran paths.
835 */
836void sctp_assoc_control_transport(struct sctp_association *asoc,
837 struct sctp_transport *transport,
838 sctp_transport_cmd_t command,
839 sctp_sn_error_t error)
840{
841 struct sctp_transport *t = NULL;
842 struct sctp_transport *first;
843 struct sctp_transport *second;
844 struct sctp_ulpevent *event;
Al Viro0906e202006-11-20 17:03:01 -0800845 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 int spc_state = 0;
Neil Horman5aa93bc2012-07-21 07:56:07 +0000847 bool ulp_notify = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 /* Record the transition on the transport. */
850 switch (command) {
851 case SCTP_TRANSPORT_UP:
Vlad Yasevich1ae4114d2007-03-23 11:32:26 -0700852 /* If we are moving from UNCONFIRMED state due
853 * to heartbeat success, report the SCTP_ADDR_CONFIRMED
854 * state to the user, otherwise report SCTP_ADDR_AVAILABLE.
855 */
856 if (SCTP_UNCONFIRMED == transport->state &&
857 SCTP_HEARTBEAT_SUCCESS == error)
858 spc_state = SCTP_ADDR_CONFIRMED;
859 else
860 spc_state = SCTP_ADDR_AVAILABLE;
Neil Horman5aa93bc2012-07-21 07:56:07 +0000861 /* Don't inform ULP about transition from PF to
862 * active state and set cwnd to 1, see SCTP
863 * Quick failover draft section 5.1, point 5
864 */
865 if (transport->state == SCTP_PF) {
866 ulp_notify = false;
867 transport->cwnd = 1;
868 }
Frank Filz3f7a87d2005-06-20 13:14:57 -0700869 transport->state = SCTP_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 break;
871
872 case SCTP_TRANSPORT_DOWN:
Vlad Yasevich40187882009-06-23 11:28:05 -0400873 /* If the transport was never confirmed, do not transition it
874 * to inactive state. Also, release the cached route since
875 * there may be a better route next time.
Vlad Yasevichcc756892007-08-24 19:30:25 +0900876 */
877 if (transport->state != SCTP_UNCONFIRMED)
878 transport->state = SCTP_INACTIVE;
Vlad Yasevich40187882009-06-23 11:28:05 -0400879 else {
880 dst_release(transport->dst);
881 transport->dst = NULL;
882 }
Vlad Yasevichcc756892007-08-24 19:30:25 +0900883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 spc_state = SCTP_ADDR_UNREACHABLE;
885 break;
886
Neil Horman5aa93bc2012-07-21 07:56:07 +0000887 case SCTP_TRANSPORT_PF:
888 transport->state = SCTP_PF;
889 ulp_notify = false;
890 break;
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 default:
893 return;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896 /* Generate and send a SCTP_PEER_ADDR_CHANGE notification to the
897 * user.
898 */
Neil Horman5aa93bc2012-07-21 07:56:07 +0000899 if (ulp_notify) {
900 memset(&addr, 0, sizeof(struct sockaddr_storage));
901 memcpy(&addr, &transport->ipaddr,
902 transport->af_specific->sockaddr_len);
903 event = sctp_ulpevent_make_peer_addr_change(asoc, &addr,
904 0, spc_state, error, GFP_ATOMIC);
905 if (event)
906 sctp_ulpq_tail_event(&asoc->ulpq, event);
907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 /* Select new active and retran paths. */
910
911 /* Look for the two most recently used active transports.
912 *
913 * This code produces the wrong ordering whenever jiffies
914 * rolls over, but we still get usable transports, so we don't
915 * worry about it.
916 */
917 first = NULL; second = NULL;
918
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700919 list_for_each_entry(t, &asoc->peer.transport_addr_list,
920 transports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Sridhar Samudralaad8fec12006-07-21 14:48:50 -0700922 if ((t->state == SCTP_INACTIVE) ||
Neil Horman5aa93bc2012-07-21 07:56:07 +0000923 (t->state == SCTP_UNCONFIRMED) ||
924 (t->state == SCTP_PF))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 continue;
926 if (!first || t->last_time_heard > first->last_time_heard) {
927 second = first;
928 first = t;
929 }
930 if (!second || t->last_time_heard > second->last_time_heard)
931 second = t;
932 }
933
934 /* RFC 2960 6.4 Multi-Homed SCTP Endpoints
935 *
936 * By default, an endpoint should always transmit to the
937 * primary path, unless the SCTP user explicitly specifies the
938 * destination transport address (and possibly source
939 * transport address) to use.
940 *
941 * [If the primary is active but not most recent, bump the most
942 * recently used transport.]
943 */
Sridhar Samudralaad8fec12006-07-21 14:48:50 -0700944 if (((asoc->peer.primary_path->state == SCTP_ACTIVE) ||
945 (asoc->peer.primary_path->state == SCTP_UNKNOWN)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 first != asoc->peer.primary_path) {
947 second = first;
948 first = asoc->peer.primary_path;
949 }
950
951 /* If we failed to find a usable transport, just camp on the
952 * primary, even if it is inactive.
953 */
954 if (!first) {
955 first = asoc->peer.primary_path;
956 second = asoc->peer.primary_path;
957 }
958
959 /* Set the active and retran transports. */
960 asoc->peer.active_path = first;
961 asoc->peer.retran_path = second;
962}
963
964/* Hold a reference to an association. */
965void sctp_association_hold(struct sctp_association *asoc)
966{
967 atomic_inc(&asoc->base.refcnt);
968}
969
970/* Release a reference to an association and cleanup
971 * if there are no more references.
972 */
973void sctp_association_put(struct sctp_association *asoc)
974{
975 if (atomic_dec_and_test(&asoc->base.refcnt))
976 sctp_association_destroy(asoc);
977}
978
979/* Allocate the next TSN, Transmission Sequence Number, for the given
980 * association.
981 */
982__u32 sctp_association_get_next_tsn(struct sctp_association *asoc)
983{
984 /* From Section 1.6 Serial Number Arithmetic:
985 * Transmission Sequence Numbers wrap around when they reach
986 * 2**32 - 1. That is, the next TSN a DATA chunk MUST use
987 * after transmitting TSN = 2*32 - 1 is TSN = 0.
988 */
989 __u32 retval = asoc->next_tsn;
990 asoc->next_tsn++;
991 asoc->unack_data++;
992
993 return retval;
994}
995
996/* Compare two addresses to see if they match. Wildcard addresses
997 * only match themselves.
998 */
999int sctp_cmp_addr_exact(const union sctp_addr *ss1,
1000 const union sctp_addr *ss2)
1001{
1002 struct sctp_af *af;
1003
1004 af = sctp_get_af_specific(ss1->sa.sa_family);
1005 if (unlikely(!af))
1006 return 0;
1007
1008 return af->cmp_addr(ss1, ss2);
1009}
1010
1011/* Return an ecne chunk to get prepended to a packet.
1012 * Note: We are sly and return a shared, prealloced chunk. FIXME:
1013 * No we don't, but we could/should.
1014 */
1015struct sctp_chunk *sctp_get_ecne_prepend(struct sctp_association *asoc)
1016{
1017 struct sctp_chunk *chunk;
1018
1019 /* Send ECNE if needed.
1020 * Not being able to allocate a chunk here is not deadly.
1021 */
1022 if (asoc->need_ecne)
1023 chunk = sctp_make_ecne(asoc, asoc->last_ecne_tsn);
1024 else
1025 chunk = NULL;
1026
1027 return chunk;
1028}
1029
1030/*
1031 * Find which transport this TSN was sent on.
1032 */
1033struct sctp_transport *sctp_assoc_lookup_tsn(struct sctp_association *asoc,
1034 __u32 tsn)
1035{
1036 struct sctp_transport *active;
1037 struct sctp_transport *match;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 struct sctp_transport *transport;
1039 struct sctp_chunk *chunk;
Al Virodbc16db2006-11-20 17:01:42 -08001040 __be32 key = htonl(tsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
1042 match = NULL;
1043
1044 /*
1045 * FIXME: In general, find a more efficient data structure for
1046 * searching.
1047 */
1048
1049 /*
1050 * The general strategy is to search each transport's transmitted
1051 * list. Return which transport this TSN lives on.
1052 *
1053 * Let's be hopeful and check the active_path first.
1054 * Another optimization would be to know if there is only one
1055 * outbound path and not have to look for the TSN at all.
1056 *
1057 */
1058
1059 active = asoc->peer.active_path;
1060
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001061 list_for_each_entry(chunk, &active->transmitted,
1062 transmitted_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 if (key == chunk->subh.data_hdr->tsn) {
1065 match = active;
1066 goto out;
1067 }
1068 }
1069
1070 /* If not found, go search all the other transports. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001071 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
1072 transports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 if (transport == active)
Xufeng Zhang2317f442013-03-07 21:39:37 +00001075 continue;
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001076 list_for_each_entry(chunk, &transport->transmitted,
1077 transmitted_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 if (key == chunk->subh.data_hdr->tsn) {
1079 match = transport;
1080 goto out;
1081 }
1082 }
1083 }
1084out:
1085 return match;
1086}
1087
1088/* Is this the association we are looking for? */
1089struct sctp_transport *sctp_assoc_is_match(struct sctp_association *asoc,
Eric W. Biederman4110cc22012-08-06 08:41:13 +00001090 struct net *net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 const union sctp_addr *laddr,
1092 const union sctp_addr *paddr)
1093{
1094 struct sctp_transport *transport;
1095
Al Viroe2fcced2006-11-20 17:08:41 -08001096 if ((htons(asoc->base.bind_addr.port) == laddr->v4.sin_port) &&
Eric W. Biederman4110cc22012-08-06 08:41:13 +00001097 (htons(asoc->peer.port) == paddr->v4.sin_port) &&
1098 net_eq(sock_net(asoc->base.sk), net)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 transport = sctp_assoc_lookup_paddr(asoc, paddr);
1100 if (!transport)
1101 goto out;
1102
1103 if (sctp_bind_addr_match(&asoc->base.bind_addr, laddr,
1104 sctp_sk(asoc->base.sk)))
1105 goto out;
1106 }
1107 transport = NULL;
1108
1109out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 return transport;
1111}
1112
1113/* Do delayed input processing. This is scheduled by sctp_rcv(). */
David Howellsc4028952006-11-22 14:57:56 +00001114static void sctp_assoc_bh_rcv(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
David Howellsc4028952006-11-22 14:57:56 +00001116 struct sctp_association *asoc =
1117 container_of(work, struct sctp_association,
1118 base.inqueue.immediate);
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001119 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 struct sctp_endpoint *ep;
1121 struct sctp_chunk *chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 struct sctp_inq *inqueue;
1123 int state;
1124 sctp_subtype_t subtype;
1125 int error = 0;
1126
1127 /* The association should be held so we should be safe. */
1128 ep = asoc->ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130 inqueue = &asoc->base.inqueue;
1131 sctp_association_hold(asoc);
1132 while (NULL != (chunk = sctp_inq_pop(inqueue))) {
1133 state = asoc->state;
1134 subtype = SCTP_ST_CHUNK(chunk->chunk_hdr->type);
1135
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07001136 /* SCTP-AUTH, Section 6.3:
1137 * The receiver has a list of chunk types which it expects
1138 * to be received only after an AUTH-chunk. This list has
1139 * been sent to the peer during the association setup. It
1140 * MUST silently discard these chunks if they are not placed
1141 * after an AUTH chunk in the packet.
1142 */
1143 if (sctp_auth_recv_cid(subtype.chunk, asoc) && !chunk->auth)
1144 continue;
1145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 /* Remember where the last DATA chunk came from so we
1147 * know where to send the SACK.
1148 */
1149 if (sctp_chunk_is_data(chunk))
1150 asoc->peer.last_data_from = chunk->transport;
Michele Baldessari196d6752012-12-01 04:49:42 +00001151 else {
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001152 SCTP_INC_STATS(net, SCTP_MIB_INCTRLCHUNKS);
Michele Baldessari196d6752012-12-01 04:49:42 +00001153 asoc->stats.ictrlchunks++;
1154 if (chunk->chunk_hdr->type == SCTP_CID_SACK)
1155 asoc->stats.isacks++;
1156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 if (chunk->transport)
1159 chunk->transport->last_time_heard = jiffies;
1160
1161 /* Run through the state machine. */
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001162 error = sctp_do_sm(net, SCTP_EVENT_T_CHUNK, subtype,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 state, ep, asoc, chunk, GFP_ATOMIC);
1164
1165 /* Check to see if the association is freed in response to
1166 * the incoming chunk. If so, get out of the while loop.
1167 */
1168 if (asoc->base.dead)
1169 break;
1170
1171 /* If there is an error on chunk, discard this packet. */
1172 if (error && chunk)
1173 chunk->pdiscard = 1;
1174 }
1175 sctp_association_put(asoc);
1176}
1177
1178/* This routine moves an association from its old sk to a new sk. */
1179void sctp_assoc_migrate(struct sctp_association *assoc, struct sock *newsk)
1180{
1181 struct sctp_sock *newsp = sctp_sk(newsk);
1182 struct sock *oldsk = assoc->base.sk;
1183
1184 /* Delete the association from the old endpoint's list of
1185 * associations.
1186 */
1187 list_del_init(&assoc->asocs);
1188
1189 /* Decrement the backlog value for a TCP-style socket. */
1190 if (sctp_style(oldsk, TCP))
1191 oldsk->sk_ack_backlog--;
1192
1193 /* Release references to the old endpoint and the sock. */
1194 sctp_endpoint_put(assoc->ep);
1195 sock_put(assoc->base.sk);
1196
1197 /* Get a reference to the new endpoint. */
1198 assoc->ep = newsp->ep;
1199 sctp_endpoint_hold(assoc->ep);
1200
1201 /* Get a reference to the new sock. */
1202 assoc->base.sk = newsk;
1203 sock_hold(assoc->base.sk);
1204
1205 /* Add the association to the new endpoint's list of associations. */
1206 sctp_endpoint_add_asoc(newsp->ep, assoc);
1207}
1208
1209/* Update an association (possibly from unexpected COOKIE-ECHO processing). */
1210void sctp_assoc_update(struct sctp_association *asoc,
1211 struct sctp_association *new)
1212{
1213 struct sctp_transport *trans;
1214 struct list_head *pos, *temp;
1215
1216 /* Copy in new parameters of peer. */
1217 asoc->c = new->c;
1218 asoc->peer.rwnd = new->peer.rwnd;
1219 asoc->peer.sack_needed = new->peer.sack_needed;
1220 asoc->peer.i = new->peer.i;
Vlad Yasevich8e1ee182008-10-08 14:18:39 -07001221 sctp_tsnmap_init(&asoc->peer.tsn_map, SCTP_TSN_MAP_INITIAL,
1222 asoc->peer.i.initial_tsn, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 /* Remove any peer addresses not present in the new association. */
1225 list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
1226 trans = list_entry(pos, struct sctp_transport, transports);
Vlad Yasevich0c427492010-04-28 08:47:19 +00001227 if (!sctp_assoc_lookup_paddr(new, &trans->ipaddr)) {
1228 sctp_assoc_rm_peer(asoc, trans);
1229 continue;
1230 }
Vlad Yasevich749bf922007-03-19 17:02:30 -07001231
1232 if (asoc->state >= SCTP_STATE_ESTABLISHED)
1233 sctp_transport_reset(trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 }
1235
1236 /* If the case is A (association restart), use
1237 * initial_tsn as next_tsn. If the case is B, use
1238 * current next_tsn in case data sent to peer
1239 * has been discarded and needs retransmission.
1240 */
1241 if (asoc->state >= SCTP_STATE_ESTABLISHED) {
1242 asoc->next_tsn = new->next_tsn;
1243 asoc->ctsn_ack_point = new->ctsn_ack_point;
1244 asoc->adv_peer_ack_point = new->adv_peer_ack_point;
1245
1246 /* Reinitialize SSN for both local streams
1247 * and peer's streams.
1248 */
1249 sctp_ssnmap_clear(asoc->ssnmap);
1250
Vlad Yasevich0b58a812007-03-19 17:01:17 -07001251 /* Flush the ULP reassembly and ordered queue.
1252 * Any data there will now be stale and will
1253 * cause problems.
1254 */
1255 sctp_ulpq_flush(&asoc->ulpq);
1256
Vlad Yasevich749bf922007-03-19 17:02:30 -07001257 /* reset the overall association error count so
1258 * that the restarted association doesn't get torn
1259 * down on the next retransmission timer.
1260 */
1261 asoc->overall_error_count = 0;
1262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 } else {
1264 /* Add any peer addresses from the new association. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001265 list_for_each_entry(trans, &new->peer.transport_addr_list,
1266 transports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (!sctp_assoc_lookup_paddr(asoc, &trans->ipaddr))
1268 sctp_assoc_add_peer(asoc, &trans->ipaddr,
Sridhar Samudralaad8fec12006-07-21 14:48:50 -07001269 GFP_ATOMIC, trans->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
1271
1272 asoc->ctsn_ack_point = asoc->next_tsn - 1;
1273 asoc->adv_peer_ack_point = asoc->ctsn_ack_point;
1274 if (!asoc->ssnmap) {
1275 /* Move the ssnmap. */
1276 asoc->ssnmap = new->ssnmap;
1277 new->ssnmap = NULL;
1278 }
Vlad Yasevich07d93962007-05-04 13:55:27 -07001279
1280 if (!asoc->assoc_id) {
1281 /* get a new association id since we don't have one
1282 * yet.
1283 */
1284 sctp_assoc_set_id(asoc, GFP_ATOMIC);
1285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 }
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -07001287
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07001288 /* SCTP-AUTH: Save the peer parameters from the new assocaitions
1289 * and also move the association shared keys over
1290 */
1291 kfree(asoc->peer.peer_random);
1292 asoc->peer.peer_random = new->peer.peer_random;
1293 new->peer.peer_random = NULL;
1294
1295 kfree(asoc->peer.peer_chunks);
1296 asoc->peer.peer_chunks = new->peer.peer_chunks;
1297 new->peer.peer_chunks = NULL;
1298
1299 kfree(asoc->peer.peer_hmacs);
1300 asoc->peer.peer_hmacs = new->peer.peer_hmacs;
1301 new->peer.peer_hmacs = NULL;
1302
1303 sctp_auth_key_put(asoc->asoc_shared_key);
1304 sctp_auth_asoc_init_active_key(asoc, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305}
1306
1307/* Update the retran path for sending a retransmitted packet.
1308 * Round-robin through the active transports, else round-robin
1309 * through the inactive transports as this is the next best thing
1310 * we can try.
1311 */
1312void sctp_assoc_update_retran_path(struct sctp_association *asoc)
1313{
1314 struct sctp_transport *t, *next;
1315 struct list_head *head = &asoc->peer.transport_addr_list;
1316 struct list_head *pos;
1317
Gui Jianfeng4141ddc2008-06-04 12:37:33 -07001318 if (asoc->peer.transport_count == 1)
1319 return;
1320
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 /* Find the next transport in a round-robin fashion. */
1322 t = asoc->peer.retran_path;
1323 pos = &t->transports;
1324 next = NULL;
1325
1326 while (1) {
1327 /* Skip the head. */
1328 if (pos->next == head)
1329 pos = head->next;
1330 else
1331 pos = pos->next;
1332
1333 t = list_entry(pos, struct sctp_transport, transports);
1334
Gui Jianfeng4141ddc2008-06-04 12:37:33 -07001335 /* We have exhausted the list, but didn't find any
1336 * other active transports. If so, use the next
1337 * transport.
1338 */
1339 if (t == asoc->peer.retran_path) {
1340 t = next;
1341 break;
1342 }
1343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 /* Try to find an active transport. */
1345
Sridhar Samudralaad8fec12006-07-21 14:48:50 -07001346 if ((t->state == SCTP_ACTIVE) ||
1347 (t->state == SCTP_UNKNOWN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 break;
1349 } else {
1350 /* Keep track of the next transport in case
1351 * we don't find any active transport.
1352 */
Vlad Yasevichfbdf5012010-04-30 22:39:26 -04001353 if (t->state != SCTP_UNCONFIRMED && !next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 next = t;
1355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 }
1357
Vlad Yasevichd598b162010-04-30 22:41:09 -04001358 if (t)
1359 asoc->peer.retran_path = t;
Vlad Yasevich25f7bf72011-04-12 15:20:48 +00001360 else
1361 t = asoc->peer.retran_path;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001362
1363 SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_update_retran_path:association"
1364 " %p addr: ",
1365 " port: %d\n",
1366 asoc,
1367 (&t->ipaddr),
Al Virob3f5b3b2006-11-20 17:22:43 -08001368 ntohs(t->ipaddr.v4.sin_port));
Frank Filz3f7a87d2005-06-20 13:14:57 -07001369}
1370
Wei Yongjun9919b452009-05-12 21:52:51 +08001371/* Choose the transport for sending retransmit packet. */
1372struct sctp_transport *sctp_assoc_choose_alter_transport(
1373 struct sctp_association *asoc, struct sctp_transport *last_sent_to)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001374{
Wei Yongjun9919b452009-05-12 21:52:51 +08001375 /* If this is the first time packet is sent, use the active path,
1376 * else use the retran path. If the last packet was sent over the
Frank Filz3f7a87d2005-06-20 13:14:57 -07001377 * retran path, update the retran path and use it.
1378 */
Wei Yongjun9919b452009-05-12 21:52:51 +08001379 if (!last_sent_to)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 return asoc->peer.active_path;
1381 else {
Wei Yongjun9919b452009-05-12 21:52:51 +08001382 if (last_sent_to == asoc->peer.retran_path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 sctp_assoc_update_retran_path(asoc);
1384 return asoc->peer.retran_path;
1385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386}
1387
1388/* Update the association's pmtu and frag_point by going through all the
1389 * transports. This routine is called when a transport's PMTU has changed.
1390 */
David S. Miller02f3d4c2012-07-16 03:57:14 -07001391void sctp_assoc_sync_pmtu(struct sock *sk, struct sctp_association *asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
1393 struct sctp_transport *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 __u32 pmtu = 0;
1395
1396 if (!asoc)
1397 return;
1398
1399 /* Get the lowest pmtu of all the transports. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001400 list_for_each_entry(t, &asoc->peer.transport_addr_list,
1401 transports) {
Vlad Yasevich8a479492007-06-07 14:21:05 -04001402 if (t->pmtu_pending && t->dst) {
David S. Miller02f3d4c2012-07-16 03:57:14 -07001403 sctp_transport_update_pmtu(sk, t, dst_mtu(t->dst));
Vlad Yasevich8a479492007-06-07 14:21:05 -04001404 t->pmtu_pending = 0;
1405 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08001406 if (!pmtu || (t->pathmtu < pmtu))
1407 pmtu = t->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
1409
1410 if (pmtu) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08001411 asoc->pathmtu = pmtu;
Vlad Yasevichf68b2e02009-09-04 18:21:00 -04001412 asoc->frag_point = sctp_frag_point(asoc, pmtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 }
1414
1415 SCTP_DEBUG_PRINTK("%s: asoc:%p, pmtu:%d, frag_point:%d\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001416 __func__, asoc, asoc->pathmtu, asoc->frag_point);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417}
1418
1419/* Should we send a SACK to update our peer? */
1420static inline int sctp_peer_needs_update(struct sctp_association *asoc)
1421{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00001422 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 switch (asoc->state) {
1424 case SCTP_STATE_ESTABLISHED:
1425 case SCTP_STATE_SHUTDOWN_PENDING:
1426 case SCTP_STATE_SHUTDOWN_RECEIVED:
1427 case SCTP_STATE_SHUTDOWN_SENT:
1428 if ((asoc->rwnd > asoc->a_rwnd) &&
Vlad Yasevich90f2f532009-11-23 15:53:57 -05001429 ((asoc->rwnd - asoc->a_rwnd) >= max_t(__u32,
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00001430 (asoc->base.sk->sk_rcvbuf >> net->sctp.rwnd_upd_shift),
Vlad Yasevich90f2f532009-11-23 15:53:57 -05001431 asoc->pathmtu)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 return 1;
1433 break;
1434 default:
1435 break;
1436 }
1437 return 0;
1438}
1439
1440/* Increase asoc's rwnd by len and send any window update SACK if needed. */
Eric Dumazet95c96172012-04-15 05:58:06 +00001441void sctp_assoc_rwnd_increase(struct sctp_association *asoc, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442{
1443 struct sctp_chunk *sack;
1444 struct timer_list *timer;
1445
1446 if (asoc->rwnd_over) {
1447 if (asoc->rwnd_over >= len) {
1448 asoc->rwnd_over -= len;
1449 } else {
1450 asoc->rwnd += (len - asoc->rwnd_over);
1451 asoc->rwnd_over = 0;
1452 }
1453 } else {
1454 asoc->rwnd += len;
1455 }
1456
Vlad Yasevich4d3c46e2009-09-04 18:20:59 -04001457 /* If we had window pressure, start recovering it
1458 * once our rwnd had reached the accumulated pressure
1459 * threshold. The idea is to recover slowly, but up
1460 * to the initial advertised window.
1461 */
1462 if (asoc->rwnd_press && asoc->rwnd >= asoc->rwnd_press) {
1463 int change = min(asoc->pathmtu, asoc->rwnd_press);
1464 asoc->rwnd += change;
1465 asoc->rwnd_press -= change;
1466 }
1467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 SCTP_DEBUG_PRINTK("%s: asoc %p rwnd increased by %d to (%u, %u) "
Harvey Harrison0dc47872008-03-05 20:47:47 -08001469 "- %u\n", __func__, asoc, len, asoc->rwnd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 asoc->rwnd_over, asoc->a_rwnd);
1471
1472 /* Send a window update SACK if the rwnd has increased by at least the
1473 * minimum of the association's PMTU and half of the receive buffer.
1474 * The algorithm used is similar to the one described in
1475 * Section 4.2.3.3 of RFC 1122.
1476 */
1477 if (sctp_peer_needs_update(asoc)) {
1478 asoc->a_rwnd = asoc->rwnd;
1479 SCTP_DEBUG_PRINTK("%s: Sending window update SACK- asoc: %p "
Harvey Harrison0dc47872008-03-05 20:47:47 -08001480 "rwnd: %u a_rwnd: %u\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 asoc, asoc->rwnd, asoc->a_rwnd);
1482 sack = sctp_make_sack(asoc);
1483 if (!sack)
1484 return;
1485
1486 asoc->peer.sack_needed = 0;
1487
1488 sctp_outq_tail(&asoc->outqueue, sack);
1489
1490 /* Stop the SACK timer. */
1491 timer = &asoc->timers[SCTP_EVENT_TIMEOUT_SACK];
Ying Xue25cc4ae2013-02-03 20:32:57 +00001492 if (del_timer(timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 sctp_association_put(asoc);
1494 }
1495}
1496
1497/* Decrease asoc's rwnd by len. */
Eric Dumazet95c96172012-04-15 05:58:06 +00001498void sctp_assoc_rwnd_decrease(struct sctp_association *asoc, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
Vlad Yasevich4d3c46e2009-09-04 18:20:59 -04001500 int rx_count;
1501 int over = 0;
1502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 SCTP_ASSERT(asoc->rwnd, "rwnd zero", return);
1504 SCTP_ASSERT(!asoc->rwnd_over, "rwnd_over not zero", return);
Vlad Yasevich4d3c46e2009-09-04 18:20:59 -04001505
1506 if (asoc->ep->rcvbuf_policy)
1507 rx_count = atomic_read(&asoc->rmem_alloc);
1508 else
1509 rx_count = atomic_read(&asoc->base.sk->sk_rmem_alloc);
1510
1511 /* If we've reached or overflowed our receive buffer, announce
1512 * a 0 rwnd if rwnd would still be positive. Store the
1513 * the pottential pressure overflow so that the window can be restored
1514 * back to original value.
1515 */
1516 if (rx_count >= asoc->base.sk->sk_rcvbuf)
1517 over = 1;
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 if (asoc->rwnd >= len) {
1520 asoc->rwnd -= len;
Vlad Yasevich4d3c46e2009-09-04 18:20:59 -04001521 if (over) {
Vlad Yasevich65883372010-04-30 22:41:10 -04001522 asoc->rwnd_press += asoc->rwnd;
Vlad Yasevich4d3c46e2009-09-04 18:20:59 -04001523 asoc->rwnd = 0;
1524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 } else {
1526 asoc->rwnd_over = len - asoc->rwnd;
1527 asoc->rwnd = 0;
1528 }
Vlad Yasevich4d3c46e2009-09-04 18:20:59 -04001529 SCTP_DEBUG_PRINTK("%s: asoc %p rwnd decreased by %d to (%u, %u, %u)\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001530 __func__, asoc, len, asoc->rwnd,
Vlad Yasevich4d3c46e2009-09-04 18:20:59 -04001531 asoc->rwnd_over, asoc->rwnd_press);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532}
1533
1534/* Build the bind address list for the association based on info from the
1535 * local endpoint and the remote peer.
1536 */
Alexey Dobriyan3182cd82005-07-11 20:57:47 -07001537int sctp_assoc_set_bind_addr_from_ep(struct sctp_association *asoc,
Vlad Yasevich409b95a2009-11-10 08:57:34 +00001538 sctp_scope_t scope, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 int flags;
1541
1542 /* Use scoping rules to determine the subset of addresses from
1543 * the endpoint.
1544 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 flags = (PF_INET6 == asoc->base.sk->sk_family) ? SCTP_ADDR6_ALLOWED : 0;
1546 if (asoc->peer.ipv4_address)
1547 flags |= SCTP_ADDR4_PEERSUPP;
1548 if (asoc->peer.ipv6_address)
1549 flags |= SCTP_ADDR6_PEERSUPP;
1550
Eric W. Biederman4db67e82012-08-06 08:42:04 +00001551 return sctp_bind_addr_copy(sock_net(asoc->base.sk),
1552 &asoc->base.bind_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 &asoc->ep->base.bind_addr,
1554 scope, gfp, flags);
1555}
1556
1557/* Build the association's bind address list from the cookie. */
1558int sctp_assoc_set_bind_addr_from_cookie(struct sctp_association *asoc,
Alexey Dobriyan3182cd82005-07-11 20:57:47 -07001559 struct sctp_cookie *cookie,
Al Virodd0fc662005-10-07 07:46:04 +01001560 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561{
1562 int var_size2 = ntohs(cookie->peer_init->chunk_hdr.length);
1563 int var_size3 = cookie->raw_addr_list_len;
1564 __u8 *raw = (__u8 *)cookie->peer_init + var_size2;
1565
1566 return sctp_raw_to_bind_addrs(&asoc->base.bind_addr, raw, var_size3,
1567 asoc->ep->base.bind_addr.port, gfp);
1568}
1569
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001570/* Lookup laddr in the bind address list of an association. */
1571int sctp_assoc_lookup_laddr(struct sctp_association *asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 const union sctp_addr *laddr)
1573{
Vlad Yasevich559cf712007-09-16 16:03:28 -07001574 int found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 if ((asoc->base.bind_addr.port == ntohs(laddr->v4.sin_port)) &&
1577 sctp_bind_addr_match(&asoc->base.bind_addr, laddr,
Vlad Yasevich559cf712007-09-16 16:03:28 -07001578 sctp_sk(asoc->base.sk)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 return found;
1582}
Vlad Yasevich07d93962007-05-04 13:55:27 -07001583
1584/* Set an association id for a given association */
1585int sctp_assoc_set_id(struct sctp_association *asoc, gfp_t gfp)
1586{
Tejun Heo94960e82013-02-27 17:05:00 -08001587 bool preload = gfp & __GFP_WAIT;
1588 int ret;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001589
1590 /* If the id is already assigned, keep it. */
1591 if (asoc->assoc_id)
Tejun Heo94960e82013-02-27 17:05:00 -08001592 return 0;
Vlad Yasevich07d93962007-05-04 13:55:27 -07001593
Tejun Heo94960e82013-02-27 17:05:00 -08001594 if (preload)
1595 idr_preload(gfp);
Vlad Yasevich07d93962007-05-04 13:55:27 -07001596 spin_lock_bh(&sctp_assocs_id_lock);
Jeff Layton713e00a2013-04-29 16:21:22 -07001597 /* 0 is not a valid assoc_id, must be >= 1 */
1598 ret = idr_alloc_cyclic(&sctp_assocs_id, asoc, 1, 0, GFP_NOWAIT);
Vlad Yasevich07d93962007-05-04 13:55:27 -07001599 spin_unlock_bh(&sctp_assocs_id_lock);
Tejun Heo94960e82013-02-27 17:05:00 -08001600 if (preload)
1601 idr_preload_end();
1602 if (ret < 0)
1603 return ret;
Vlad Yasevich07d93962007-05-04 13:55:27 -07001604
Tejun Heo94960e82013-02-27 17:05:00 -08001605 asoc->assoc_id = (sctp_assoc_t)ret;
1606 return 0;
Vlad Yasevich07d93962007-05-04 13:55:27 -07001607}
Vlad Yasevicha08de642007-12-20 14:11:47 -08001608
Wei Yongjun8b4472c2011-05-24 21:48:02 +00001609/* Free the ASCONF queue */
1610static void sctp_assoc_free_asconf_queue(struct sctp_association *asoc)
1611{
1612 struct sctp_chunk *asconf;
1613 struct sctp_chunk *tmp;
1614
1615 list_for_each_entry_safe(asconf, tmp, &asoc->addip_chunk_list, list) {
1616 list_del_init(&asconf->list);
1617 sctp_chunk_free(asconf);
1618 }
1619}
1620
Vlad Yasevicha08de642007-12-20 14:11:47 -08001621/* Free asconf_ack cache */
1622static void sctp_assoc_free_asconf_acks(struct sctp_association *asoc)
1623{
1624 struct sctp_chunk *ack;
1625 struct sctp_chunk *tmp;
1626
1627 list_for_each_entry_safe(ack, tmp, &asoc->asconf_ack_list,
1628 transmitted_list) {
1629 list_del_init(&ack->transmitted_list);
1630 sctp_chunk_free(ack);
1631 }
1632}
1633
1634/* Clean up the ASCONF_ACK queue */
1635void sctp_assoc_clean_asconf_ack_cache(const struct sctp_association *asoc)
1636{
1637 struct sctp_chunk *ack;
1638 struct sctp_chunk *tmp;
1639
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001640 /* We can remove all the entries from the queue up to
Vlad Yasevicha08de642007-12-20 14:11:47 -08001641 * the "Peer-Sequence-Number".
1642 */
1643 list_for_each_entry_safe(ack, tmp, &asoc->asconf_ack_list,
1644 transmitted_list) {
1645 if (ack->subh.addip_hdr->serial ==
1646 htonl(asoc->peer.addip_serial))
1647 break;
1648
1649 list_del_init(&ack->transmitted_list);
1650 sctp_chunk_free(ack);
1651 }
1652}
1653
1654/* Find the ASCONF_ACK whose serial number matches ASCONF */
1655struct sctp_chunk *sctp_assoc_lookup_asconf_ack(
1656 const struct sctp_association *asoc,
1657 __be32 serial)
1658{
Wei Yongjuna8699812008-02-05 23:35:04 +09001659 struct sctp_chunk *ack;
Vlad Yasevicha08de642007-12-20 14:11:47 -08001660
1661 /* Walk through the list of cached ASCONF-ACKs and find the
1662 * ack chunk whose serial number matches that of the request.
1663 */
1664 list_for_each_entry(ack, &asoc->asconf_ack_list, transmitted_list) {
1665 if (ack->subh.addip_hdr->serial == serial) {
1666 sctp_chunk_hold(ack);
Wei Yongjuna8699812008-02-05 23:35:04 +09001667 return ack;
Vlad Yasevicha08de642007-12-20 14:11:47 -08001668 }
1669 }
1670
Wei Yongjuna8699812008-02-05 23:35:04 +09001671 return NULL;
Vlad Yasevicha08de642007-12-20 14:11:47 -08001672}
Wei Yongjuna000c012011-05-29 23:23:36 +00001673
1674void sctp_asconf_queue_teardown(struct sctp_association *asoc)
1675{
1676 /* Free any cached ASCONF_ACK chunk. */
1677 sctp_assoc_free_asconf_acks(asoc);
1678
1679 /* Free the ASCONF queue. */
1680 sctp_assoc_free_asconf_queue(asoc);
1681
1682 /* Free any cached ASCONF chunk. */
1683 if (asoc->addip_last_asconf)
1684 sctp_chunk_free(asoc->addip_last_asconf);
1685}