blob: b893aa6862f4bf92ce1afc2607e43471d5883a53 [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
Vlad Yasevich48143262009-11-23 15:54:01 -050069/* Keep track of the new idr low so that we don't re-use association id
70 * numbers too fast. It is protected by they idr spin lock is in the
71 * range of 1 - INT_MAX.
72 */
73static u32 idr_low = 1;
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76/* 1st Level Abstractions. */
77
78/* Initialize a new association from provided memory. */
79static struct sctp_association *sctp_association_init(struct sctp_association *asoc,
80 const struct sctp_endpoint *ep,
81 const struct sock *sk,
82 sctp_scope_t scope,
Al Virodd0fc662005-10-07 07:46:04 +010083 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +000085 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 struct sctp_sock *sp;
87 int i;
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -070088 sctp_paramhdr_t *p;
89 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 /* Retrieve the SCTP per socket area. */
92 sp = sctp_sk((struct sock *)sk);
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 /* Discarding const is appropriate here. */
95 asoc->ep = (struct sctp_endpoint *)ep;
96 sctp_endpoint_hold(asoc->ep);
97
98 /* Hold the sock. */
99 asoc->base.sk = (struct sock *)sk;
100 sock_hold(asoc->base.sk);
101
102 /* Initialize the common base substructure. */
103 asoc->base.type = SCTP_EP_TYPE_ASSOCIATION;
104
105 /* Initialize the object handling fields. */
106 atomic_set(&asoc->base.refcnt, 1);
107 asoc->base.dead = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 /* Initialize the bind addr area. */
110 sctp_bind_addr_init(&asoc->base.bind_addr, ep->base.bind_addr.port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112 asoc->state = SCTP_STATE_CLOSED;
113
114 /* Set these values from the socket values, a conversion between
115 * millsecons to seconds/microseconds must also be done.
116 */
117 asoc->cookie_life.tv_sec = sp->assocparams.sasoc_cookie_life / 1000;
118 asoc->cookie_life.tv_usec = (sp->assocparams.sasoc_cookie_life % 1000)
119 * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 asoc->frag_point = 0;
Vlad Yasevichf68b2e02009-09-04 18:21:00 -0400121 asoc->user_frag = sp->user_frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 /* Set the association max_retrans and RTO values from the
124 * socket values.
125 */
126 asoc->max_retrans = sp->assocparams.sasoc_asocmaxrxt;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000127 asoc->pf_retrans = net->sctp.pf_retrans;
Neil Horman5aa93bc2012-07-21 07:56:07 +0000128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 asoc->rto_initial = msecs_to_jiffies(sp->rtoinfo.srto_initial);
130 asoc->rto_max = msecs_to_jiffies(sp->rtoinfo.srto_max);
131 asoc->rto_min = msecs_to_jiffies(sp->rtoinfo.srto_min);
132
133 asoc->overall_error_count = 0;
134
Frank Filz52ccb8e2005-12-22 11:36:46 -0800135 /* Initialize the association's heartbeat interval based on the
136 * sock configured value.
137 */
138 asoc->hbinterval = msecs_to_jiffies(sp->hbinterval);
139
140 /* Initialize path max retrans value. */
141 asoc->pathmaxrxt = sp->pathmaxrxt;
142
143 /* Initialize default path MTU. */
144 asoc->pathmtu = sp->pathmtu;
145
146 /* Set association default SACK delay */
147 asoc->sackdelay = msecs_to_jiffies(sp->sackdelay);
Wei Yongjund364d922008-05-09 15:13:26 -0700148 asoc->sackfreq = sp->sackfreq;
Frank Filz52ccb8e2005-12-22 11:36:46 -0800149
150 /* Set the association default flags controlling
151 * Heartbeat, SACK delay, and Path MTU Discovery.
152 */
153 asoc->param_flags = sp->param_flags;
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 /* Initialize the maximum mumber of new data packets that can be sent
156 * in a burst.
157 */
Vlad Yasevich70331572007-03-23 11:34:36 -0700158 asoc->max_burst = sp->max_burst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Vladislav Yasevich1e7d3d92005-11-11 16:06:16 -0800160 /* initialize association timers */
161 asoc->timeouts[SCTP_EVENT_TIMEOUT_NONE] = 0;
162 asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_COOKIE] = asoc->rto_initial;
163 asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_INIT] = asoc->rto_initial;
164 asoc->timeouts[SCTP_EVENT_TIMEOUT_T2_SHUTDOWN] = asoc->rto_initial;
165 asoc->timeouts[SCTP_EVENT_TIMEOUT_T3_RTX] = 0;
166 asoc->timeouts[SCTP_EVENT_TIMEOUT_T4_RTO] = 0;
167
168 /* sctpimpguide Section 2.12.2
169 * If the 'T5-shutdown-guard' timer is used, it SHOULD be set to the
170 * recommended value of 5 times 'RTO.Max'.
171 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900172 asoc->timeouts[SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD]
Vladislav Yasevich1e7d3d92005-11-11 16:06:16 -0800173 = 5 * asoc->rto_max;
174
175 asoc->timeouts[SCTP_EVENT_TIMEOUT_HEARTBEAT] = 0;
Frank Filz52ccb8e2005-12-22 11:36:46 -0800176 asoc->timeouts[SCTP_EVENT_TIMEOUT_SACK] = asoc->sackdelay;
Vladislav Yasevich1e7d3d92005-11-11 16:06:16 -0800177 asoc->timeouts[SCTP_EVENT_TIMEOUT_AUTOCLOSE] =
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000178 min_t(unsigned long, sp->autoclose, net->sctp.max_autoclose) * HZ;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900179
Uwe Kleine-König421f91d2010-06-11 12:17:00 +0200180 /* Initializes the timers */
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800181 for (i = SCTP_EVENT_TIMEOUT_NONE; i < SCTP_NUM_TIMEOUT_TYPES; ++i)
182 setup_timer(&asoc->timers[i], sctp_timer_events[i],
183 (unsigned long)asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 /* Pull default initialization values from the sock options.
186 * Note: This assumes that the values have already been
187 * validated in the sock.
188 */
189 asoc->c.sinit_max_instreams = sp->initmsg.sinit_max_instreams;
190 asoc->c.sinit_num_ostreams = sp->initmsg.sinit_num_ostreams;
191 asoc->max_init_attempts = sp->initmsg.sinit_max_attempts;
192
193 asoc->max_init_timeo =
194 msecs_to_jiffies(sp->initmsg.sinit_max_init_timeo);
195
196 /* Allocate storage for the ssnmap after the inbound and outbound
197 * streams have been negotiated during Init.
198 */
199 asoc->ssnmap = NULL;
200
201 /* Set the local window size for receive.
202 * This is also the rcvbuf space per association.
203 * RFC 6 - A SCTP receiver MUST be able to receive a minimum of
204 * 1500 bytes in one SCTP packet.
205 */
Neil Horman049b3ff2005-11-11 16:08:24 -0800206 if ((sk->sk_rcvbuf/2) < SCTP_DEFAULT_MINWINDOW)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 asoc->rwnd = SCTP_DEFAULT_MINWINDOW;
208 else
Neil Horman049b3ff2005-11-11 16:08:24 -0800209 asoc->rwnd = sk->sk_rcvbuf/2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 asoc->a_rwnd = asoc->rwnd;
212
213 asoc->rwnd_over = 0;
Vlad Yasevich4d3c46e2009-09-04 18:20:59 -0400214 asoc->rwnd_press = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 /* Use my own max window until I learn something better. */
217 asoc->peer.rwnd = SCTP_DEFAULT_MAXWINDOW;
218
219 /* Set the sndbuf size for transmit. */
220 asoc->sndbuf_used = 0;
221
Neil Horman049b3ff2005-11-11 16:08:24 -0800222 /* Initialize the receive memory counter */
223 atomic_set(&asoc->rmem_alloc, 0);
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 init_waitqueue_head(&asoc->wait);
226
227 asoc->c.my_vtag = sctp_generate_tag(ep);
228 asoc->peer.i.init_tag = 0; /* INIT needs a vtag of 0. */
229 asoc->c.peer_vtag = 0;
230 asoc->c.my_ttag = 0;
231 asoc->c.peer_ttag = 0;
232 asoc->c.my_port = ep->base.bind_addr.port;
233
234 asoc->c.initial_tsn = sctp_generate_tsn(ep);
235
236 asoc->next_tsn = asoc->c.initial_tsn;
237
238 asoc->ctsn_ack_point = asoc->next_tsn - 1;
239 asoc->adv_peer_ack_point = asoc->ctsn_ack_point;
240 asoc->highest_sacked = asoc->ctsn_ack_point;
241 asoc->last_cwr_tsn = asoc->ctsn_ack_point;
242 asoc->unack_data = 0;
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 /* ADDIP Section 4.1 Asconf Chunk Procedures
245 *
246 * When an endpoint has an ASCONF signaled change to be sent to the
247 * remote endpoint it should do the following:
248 * ...
249 * A2) a serial number should be assigned to the chunk. The serial
250 * number SHOULD be a monotonically increasing number. The serial
251 * numbers SHOULD be initialized at the start of the
252 * association to the same value as the initial TSN.
253 */
254 asoc->addip_serial = asoc->c.initial_tsn;
255
David S. Miller79af02c2005-07-08 21:47:49 -0700256 INIT_LIST_HEAD(&asoc->addip_chunk_list);
Vlad Yasevicha08de642007-12-20 14:11:47 -0800257 INIT_LIST_HEAD(&asoc->asconf_ack_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 /* Make an empty list of remote transport addresses. */
260 INIT_LIST_HEAD(&asoc->peer.transport_addr_list);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700261 asoc->peer.transport_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 /* RFC 2960 5.1 Normal Establishment of an Association
264 *
265 * After the reception of the first data chunk in an
266 * association the endpoint must immediately respond with a
267 * sack to acknowledge the data chunk. Subsequent
268 * acknowledgements should be done as described in Section
269 * 6.2.
270 *
271 * [We implement this by telling a new association that it
272 * already received one packet.]
273 */
274 asoc->peer.sack_needed = 1;
Wei Yongjund364d922008-05-09 15:13:26 -0700275 asoc->peer.sack_cnt = 0;
Neil Horman42448542012-06-30 03:04:26 +0000276 asoc->peer.sack_generation = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400278 /* Assume that the peer will tell us if he recognizes ASCONF
279 * as part of INIT exchange.
280 * The sctp_addip_noauth option is there for backward compatibilty
281 * and will revert old behavior.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 */
Vlad Yasevich88799fe2007-10-24 17:24:23 -0400283 asoc->peer.asconf_capable = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000284 if (net->sctp.addip_noauth)
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400285 asoc->peer.asconf_capable = 1;
Michio Honda8a07eb02011-04-26 20:19:36 +0900286 asoc->asconf_addr_del_pending = NULL;
287 asoc->src_out_of_asoc_ok = 0;
Michio Honda6af29cc2011-06-16 17:14:34 +0900288 asoc->new_transport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290 /* Create an input queue. */
291 sctp_inq_init(&asoc->base.inqueue);
David Howellsc4028952006-11-22 14:57:56 +0000292 sctp_inq_set_th_handler(&asoc->base.inqueue, sctp_assoc_bh_rcv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 /* Create an output queue. */
295 sctp_outq_init(asoc, &asoc->outqueue);
296
297 if (!sctp_ulpq_init(&asoc->ulpq, asoc))
298 goto fail_init;
299
Vlad Yasevich8e1ee182008-10-08 14:18:39 -0700300 memset(&asoc->peer.tsn_map, 0, sizeof(struct sctp_tsnmap));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 asoc->need_ecne = 0;
303
304 asoc->assoc_id = 0;
305
306 /* Assume that peer would support both address types unless we are
307 * told otherwise.
308 */
309 asoc->peer.ipv4_address = 1;
Wei Yongjuna2c39582009-04-07 16:35:11 +0800310 if (asoc->base.sk->sk_family == PF_INET6)
311 asoc->peer.ipv6_address = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 INIT_LIST_HEAD(&asoc->asocs);
313
314 asoc->autoclose = sp->autoclose;
315
316 asoc->default_stream = sp->default_stream;
317 asoc->default_ppid = sp->default_ppid;
318 asoc->default_flags = sp->default_flags;
319 asoc->default_context = sp->default_context;
320 asoc->default_timetolive = sp->default_timetolive;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -0800321 asoc->default_rcv_context = sp->default_rcv_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Michele Baldessari196d6752012-12-01 04:49:42 +0000323 /* SCTP_GET_ASSOC_STATS COUNTERS */
324 memset(&asoc->stats, 0, sizeof(struct sctp_priv_assoc_stats));
325
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -0700326 /* AUTH related initializations */
327 INIT_LIST_HEAD(&asoc->endpoint_shared_keys);
328 err = sctp_auth_asoc_copy_shkeys(ep, asoc, gfp);
329 if (err)
330 goto fail_init;
331
332 asoc->active_key_id = ep->active_key_id;
333 asoc->asoc_shared_key = NULL;
334
335 asoc->default_hmac_id = 0;
336 /* Save the hmacs and chunks list into this association */
337 if (ep->auth_hmacs_list)
338 memcpy(asoc->c.auth_hmacs, ep->auth_hmacs_list,
339 ntohs(ep->auth_hmacs_list->param_hdr.length));
340 if (ep->auth_chunk_list)
341 memcpy(asoc->c.auth_chunks, ep->auth_chunk_list,
342 ntohs(ep->auth_chunk_list->param_hdr.length));
343
344 /* Get the AUTH random number for this association */
345 p = (sctp_paramhdr_t *)asoc->c.auth_random;
346 p->type = SCTP_PARAM_RANDOM;
347 p->length = htons(sizeof(sctp_paramhdr_t) + SCTP_AUTH_RANDOM_LENGTH);
348 get_random_bytes(p+1, SCTP_AUTH_RANDOM_LENGTH);
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return asoc;
351
352fail_init:
353 sctp_endpoint_put(asoc->ep);
354 sock_put(asoc->base.sk);
355 return NULL;
356}
357
358/* Allocate and initialize a new association */
359struct sctp_association *sctp_association_new(const struct sctp_endpoint *ep,
360 const struct sock *sk,
Alexey Dobriyan3182cd82005-07-11 20:57:47 -0700361 sctp_scope_t scope,
Al Virodd0fc662005-10-07 07:46:04 +0100362 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
364 struct sctp_association *asoc;
365
366 asoc = t_new(struct sctp_association, gfp);
367 if (!asoc)
368 goto fail;
369
370 if (!sctp_association_init(asoc, ep, sk, scope, gfp))
371 goto fail_init;
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 SCTP_DBG_OBJCNT_INC(assoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700374 SCTP_DEBUG_PRINTK("Created asoc %p\n", asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 return asoc;
377
378fail_init:
379 kfree(asoc);
380fail:
381 return NULL;
382}
383
384/* Free this association if possible. There may still be users, so
385 * the actual deallocation may be delayed.
386 */
387void sctp_association_free(struct sctp_association *asoc)
388{
389 struct sock *sk = asoc->base.sk;
390 struct sctp_transport *transport;
391 struct list_head *pos, *temp;
392 int i;
393
Vlad Yasevichde76e692006-10-30 18:55:11 -0800394 /* Only real associations count against the endpoint, so
395 * don't bother for if this is a temporary association.
396 */
397 if (!asoc->temp) {
398 list_del(&asoc->asocs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Vlad Yasevichde76e692006-10-30 18:55:11 -0800400 /* Decrement the backlog value for a TCP-style listening
401 * socket.
402 */
403 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
404 sk->sk_ack_backlog--;
405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 /* Mark as dead, so other users can know this structure is
408 * going away.
409 */
410 asoc->base.dead = 1;
411
412 /* Dispose of any data lying around in the outqueue. */
413 sctp_outq_free(&asoc->outqueue);
414
415 /* Dispose of any pending messages for the upper layer. */
416 sctp_ulpq_free(&asoc->ulpq);
417
418 /* Dispose of any pending chunks on the inqueue. */
419 sctp_inq_free(&asoc->base.inqueue);
420
Vlad Yasevich8e1ee182008-10-08 14:18:39 -0700421 sctp_tsnmap_free(&asoc->peer.tsn_map);
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 /* Free ssnmap storage. */
424 sctp_ssnmap_free(asoc->ssnmap);
425
426 /* Clean up the bound address list. */
427 sctp_bind_addr_free(&asoc->base.bind_addr);
428
429 /* Do we need to go through all of our timers and
430 * delete them? To be safe we will try to delete all, but we
431 * should be able to go through and make a guess based
432 * on our state.
433 */
434 for (i = SCTP_EVENT_TIMEOUT_NONE; i < SCTP_NUM_TIMEOUT_TYPES; ++i) {
Ying Xue25cc4ae2013-02-03 20:32:57 +0000435 if (del_timer(&asoc->timers[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 sctp_association_put(asoc);
437 }
438
439 /* Free peer's cached cookie. */
Jesper Juhla51482b2005-11-08 09:41:34 -0800440 kfree(asoc->peer.cookie);
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700441 kfree(asoc->peer.peer_random);
442 kfree(asoc->peer.peer_chunks);
443 kfree(asoc->peer.peer_hmacs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 /* Release the transport structures. */
446 list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
447 transport = list_entry(pos, struct sctp_transport, transports);
Thomas Graf45122ca262012-12-06 09:25:05 +0000448 list_del_rcu(pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 sctp_transport_free(transport);
450 }
451
Frank Filz3f7a87d2005-06-20 13:14:57 -0700452 asoc->peer.transport_count = 0;
453
Wei Yongjuna000c012011-05-29 23:23:36 +0000454 sctp_asconf_queue_teardown(asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Michio Honda8a07eb02011-04-26 20:19:36 +0900456 /* Free pending address space being deleted */
457 if (asoc->asconf_addr_del_pending != NULL)
458 kfree(asoc->asconf_addr_del_pending);
459
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -0700460 /* AUTH - Free the endpoint shared keys */
461 sctp_auth_destroy_keys(&asoc->endpoint_shared_keys);
462
463 /* AUTH - Free the association shared key */
464 sctp_auth_key_put(asoc->asoc_shared_key);
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 sctp_association_put(asoc);
467}
468
469/* Cleanup and free up an association. */
470static void sctp_association_destroy(struct sctp_association *asoc)
471{
472 SCTP_ASSERT(asoc->base.dead, "Assoc is not dead", return);
473
474 sctp_endpoint_put(asoc->ep);
475 sock_put(asoc->base.sk);
476
477 if (asoc->assoc_id != 0) {
478 spin_lock_bh(&sctp_assocs_id_lock);
479 idr_remove(&sctp_assocs_id, asoc->assoc_id);
480 spin_unlock_bh(&sctp_assocs_id_lock);
481 }
482
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700483 WARN_ON(atomic_read(&asoc->rmem_alloc));
Neil Horman049b3ff2005-11-11 16:08:24 -0800484
Daniel Borkmannff2266c2013-04-15 03:27:17 +0000485 kfree(asoc);
486 SCTP_DBG_OBJCNT_DEC(assoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
489/* Change the primary destination address for the peer. */
490void sctp_assoc_set_primary(struct sctp_association *asoc,
491 struct sctp_transport *transport)
492{
Vlad Yasevich319fa2a2008-06-16 17:00:29 -0700493 int changeover = 0;
494
495 /* it's a changeover only if we already have a primary path
496 * that we are changing
497 */
498 if (asoc->peer.primary_path != NULL &&
499 asoc->peer.primary_path != transport)
500 changeover = 1 ;
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 asoc->peer.primary_path = transport;
503
504 /* Set a default msg_name for events. */
505 memcpy(&asoc->peer.primary_addr, &transport->ipaddr,
506 sizeof(union sctp_addr));
507
508 /* If the primary path is changing, assume that the
509 * user wants to use this new path.
510 */
Sridhar Samudralaad8fec12006-07-21 14:48:50 -0700511 if ((transport->state == SCTP_ACTIVE) ||
512 (transport->state == SCTP_UNKNOWN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 asoc->peer.active_path = transport;
514
515 /*
516 * SFR-CACC algorithm:
517 * Upon the receipt of a request to change the primary
518 * destination address, on the data structure for the new
519 * primary destination, the sender MUST do the following:
520 *
521 * 1) If CHANGEOVER_ACTIVE is set, then there was a switch
522 * to this destination address earlier. The sender MUST set
523 * CYCLING_CHANGEOVER to indicate that this switch is a
524 * double switch to the same destination address.
Vlad Yaseviche0e9db12009-11-23 15:53:57 -0500525 *
526 * Really, only bother is we have data queued or outstanding on
527 * the association.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 */
Vlad Yaseviche0e9db12009-11-23 15:53:57 -0500529 if (!asoc->outqueue.outstanding_bytes && !asoc->outqueue.out_qlen)
530 return;
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (transport->cacc.changeover_active)
Vlad Yasevich319fa2a2008-06-16 17:00:29 -0700533 transport->cacc.cycling_changeover = changeover;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 /* 2) The sender MUST set CHANGEOVER_ACTIVE to indicate that
536 * a changeover has occurred.
537 */
Vlad Yasevich319fa2a2008-06-16 17:00:29 -0700538 transport->cacc.changeover_active = changeover;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 /* 3) The sender MUST store the next TSN to be sent in
541 * next_tsn_at_change.
542 */
543 transport->cacc.next_tsn_at_change = asoc->next_tsn;
544}
545
Frank Filz3f7a87d2005-06-20 13:14:57 -0700546/* Remove a transport from an association. */
547void sctp_assoc_rm_peer(struct sctp_association *asoc,
548 struct sctp_transport *peer)
549{
550 struct list_head *pos;
551 struct sctp_transport *transport;
552
553 SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_rm_peer:association %p addr: ",
554 " port: %d\n",
555 asoc,
556 (&peer->ipaddr),
Al Virob3f5b3b2006-11-20 17:22:43 -0800557 ntohs(peer->ipaddr.v4.sin_port));
Frank Filz3f7a87d2005-06-20 13:14:57 -0700558
559 /* If we are to remove the current retran_path, update it
560 * to the next peer before removing this peer from the list.
561 */
562 if (asoc->peer.retran_path == peer)
563 sctp_assoc_update_retran_path(asoc);
564
565 /* Remove this peer from the list. */
Thomas Graf45122ca262012-12-06 09:25:05 +0000566 list_del_rcu(&peer->transports);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700567
568 /* Get the first transport of asoc. */
569 pos = asoc->peer.transport_addr_list.next;
570 transport = list_entry(pos, struct sctp_transport, transports);
571
572 /* Update any entries that match the peer to be deleted. */
573 if (asoc->peer.primary_path == peer)
574 sctp_assoc_set_primary(asoc, transport);
575 if (asoc->peer.active_path == peer)
576 asoc->peer.active_path = transport;
Wei Yongjun9494c7c2011-04-12 15:22:22 +0000577 if (asoc->peer.retran_path == peer)
578 asoc->peer.retran_path = transport;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700579 if (asoc->peer.last_data_from == peer)
580 asoc->peer.last_data_from = transport;
581
582 /* If we remove the transport an INIT was last sent to, set it to
583 * NULL. Combined with the update of the retran path above, this
584 * will cause the next INIT to be sent to the next available
585 * transport, maintaining the cycle.
586 */
587 if (asoc->init_last_sent_to == peer)
588 asoc->init_last_sent_to = NULL;
589
Wei Yongjun6345b192009-04-26 23:13:35 +0800590 /* If we remove the transport an SHUTDOWN was last sent to, set it
591 * to NULL. Combined with the update of the retran path above, this
592 * will cause the next SHUTDOWN to be sent to the next available
593 * transport, maintaining the cycle.
594 */
595 if (asoc->shutdown_last_sent_to == peer)
596 asoc->shutdown_last_sent_to = NULL;
597
Wei Yongjun10a43ce2009-04-26 23:14:42 +0800598 /* If we remove the transport an ASCONF was last sent to, set it to
599 * NULL.
600 */
601 if (asoc->addip_last_asconf &&
602 asoc->addip_last_asconf->transport == peer)
603 asoc->addip_last_asconf->transport = NULL;
604
Vlad Yasevich31b02e12009-09-04 18:21:00 -0400605 /* If we have something on the transmitted list, we have to
606 * save it off. The best place is the active path.
607 */
608 if (!list_empty(&peer->transmitted)) {
609 struct sctp_transport *active = asoc->peer.active_path;
610 struct sctp_chunk *ch;
611
612 /* Reset the transport of each chunk on this list */
613 list_for_each_entry(ch, &peer->transmitted,
614 transmitted_list) {
615 ch->transport = NULL;
616 ch->rtt_in_progress = 0;
617 }
618
619 list_splice_tail_init(&peer->transmitted,
620 &active->transmitted);
621
622 /* Start a T3 timer here in case it wasn't running so
623 * that these migrated packets have a chance to get
624 * retrnasmitted.
625 */
626 if (!timer_pending(&active->T3_rtx_timer))
627 if (!mod_timer(&active->T3_rtx_timer,
628 jiffies + active->rto))
629 sctp_transport_hold(active);
630 }
631
Frank Filz3f7a87d2005-06-20 13:14:57 -0700632 asoc->peer.transport_count--;
633
634 sctp_transport_free(peer);
635}
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637/* Add a transport address to an association. */
638struct sctp_transport *sctp_assoc_add_peer(struct sctp_association *asoc,
639 const union sctp_addr *addr,
Al Virodd0fc662005-10-07 07:46:04 +0100640 const gfp_t gfp,
Frank Filz3f7a87d2005-06-20 13:14:57 -0700641 const int peer_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Eric W. Biederman89bf3452012-08-07 07:26:14 +0000643 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 struct sctp_transport *peer;
645 struct sctp_sock *sp;
646 unsigned short port;
647
648 sp = sctp_sk(asoc->base.sk);
649
650 /* AF_INET and AF_INET6 share common port field. */
Al Viro4bdf4b52006-11-20 17:10:20 -0800651 port = ntohs(addr->v4.sin_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Frank Filz3f7a87d2005-06-20 13:14:57 -0700653 SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_add_peer:association %p addr: ",
Sridhar Samudralaad8fec12006-07-21 14:48:50 -0700654 " port: %d state:%d\n",
Frank Filz3f7a87d2005-06-20 13:14:57 -0700655 asoc,
656 addr,
Al Viro4bdf4b52006-11-20 17:10:20 -0800657 port,
Sridhar Samudralaad8fec12006-07-21 14:48:50 -0700658 peer_state);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 /* Set the port if it has not been set yet. */
661 if (0 == asoc->peer.port)
662 asoc->peer.port = port;
663
664 /* Check to see if this is a duplicate. */
665 peer = sctp_assoc_lookup_paddr(asoc, addr);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700666 if (peer) {
Vlad Yasevichadd52372008-09-18 16:28:27 -0700667 /* An UNKNOWN state is only set on transports added by
668 * user in sctp_connectx() call. Such transports should be
669 * considered CONFIRMED per RFC 4960, Section 5.4.
670 */
Sridhar Samudralaad8fec12006-07-21 14:48:50 -0700671 if (peer->state == SCTP_UNKNOWN) {
Vlad Yasevichadd52372008-09-18 16:28:27 -0700672 peer->state = SCTP_ACTIVE;
Sridhar Samudralaad8fec12006-07-21 14:48:50 -0700673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return peer;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Eric W. Biederman89bf3452012-08-07 07:26:14 +0000677 peer = sctp_transport_new(net, addr, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (!peer)
679 return NULL;
680
681 sctp_transport_set_owner(peer, asoc);
682
Frank Filz52ccb8e2005-12-22 11:36:46 -0800683 /* Initialize the peer's heartbeat interval based on the
684 * association configured value.
685 */
686 peer->hbinterval = asoc->hbinterval;
687
688 /* Set the path max_retrans. */
689 peer->pathmaxrxt = asoc->pathmaxrxt;
690
Neil Horman5aa93bc2012-07-21 07:56:07 +0000691 /* And the partial failure retrnas threshold */
692 peer->pf_retrans = asoc->pf_retrans;
693
Frank Filz52ccb8e2005-12-22 11:36:46 -0800694 /* Initialize the peer's SACK delay timeout based on the
695 * association configured value.
696 */
697 peer->sackdelay = asoc->sackdelay;
Wei Yongjund364d922008-05-09 15:13:26 -0700698 peer->sackfreq = asoc->sackfreq;
Frank Filz52ccb8e2005-12-22 11:36:46 -0800699
700 /* Enable/disable heartbeat, SACK delay, and path MTU discovery
701 * based on association setting.
702 */
703 peer->param_flags = asoc->param_flags;
704
Vlad Yasevich8da645e2009-09-04 18:21:01 -0400705 sctp_transport_route(peer, NULL, sp);
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 /* Initialize the pmtu of the transport. */
Vlad Yasevich8da645e2009-09-04 18:21:01 -0400708 if (peer->param_flags & SPP_PMTUD_DISABLE) {
709 if (asoc->pathmtu)
710 peer->pathmtu = asoc->pathmtu;
711 else
712 peer->pathmtu = SCTP_DEFAULT_MAXSEGMENT;
713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 /* If this is the first transport addr on this association,
716 * initialize the association PMTU to the peer's PMTU.
717 * If not and the current association PMTU is higher than the new
718 * peer's PMTU, reset the association PMTU to the new peer's PMTU.
719 */
Frank Filz52ccb8e2005-12-22 11:36:46 -0800720 if (asoc->pathmtu)
721 asoc->pathmtu = min_t(int, peer->pathmtu, asoc->pathmtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 else
Frank Filz52ccb8e2005-12-22 11:36:46 -0800723 asoc->pathmtu = peer->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 SCTP_DEBUG_PRINTK("sctp_assoc_add_peer:association %p PMTU set to "
Frank Filz52ccb8e2005-12-22 11:36:46 -0800726 "%d\n", asoc, asoc->pathmtu);
Florian Westphal6d0ccba2008-07-18 23:04:39 -0700727 peer->pmtu_pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Vlad Yasevichf68b2e02009-09-04 18:21:00 -0400729 asoc->frag_point = sctp_frag_point(asoc, asoc->pathmtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 /* The asoc->peer.port might not be meaningful yet, but
732 * initialize the packet structure anyway.
733 */
734 sctp_packet_init(&peer->packet, peer, asoc->base.bind_addr.port,
735 asoc->peer.port);
736
737 /* 7.2.1 Slow-Start
738 *
739 * o The initial cwnd before DATA transmission or after a sufficiently
740 * long idle period MUST be set to
741 * min(4*MTU, max(2*MTU, 4380 bytes))
742 *
743 * o The initial value of ssthresh MAY be arbitrarily high
744 * (for example, implementations MAY use the size of the
745 * receiver advertised window).
746 */
Frank Filz52ccb8e2005-12-22 11:36:46 -0800747 peer->cwnd = min(4*asoc->pathmtu, max_t(__u32, 2*asoc->pathmtu, 4380));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 /* At this point, we may not have the receiver's advertised window,
750 * so initialize ssthresh to the default value and it will be set
751 * later when we process the INIT.
752 */
753 peer->ssthresh = SCTP_DEFAULT_MAXWINDOW;
754
755 peer->partial_bytes_acked = 0;
756 peer->flight_size = 0;
Vlad Yasevich46d5a802009-11-23 15:54:00 -0500757 peer->burst_limited = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 /* Set the transport's RTO.initial value */
760 peer->rto = asoc->rto_initial;
Michele Baldessari196d6752012-12-01 04:49:42 +0000761 sctp_max_rto(asoc, peer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Frank Filz3f7a87d2005-06-20 13:14:57 -0700763 /* Set the peer's active state. */
764 peer->state = peer_state;
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 /* Attach the remote transport to our asoc. */
Thomas Graf45122ca262012-12-06 09:25:05 +0000767 list_add_tail_rcu(&peer->transports, &asoc->peer.transport_addr_list);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700768 asoc->peer.transport_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 /* If we do not yet have a primary path, set one. */
771 if (!asoc->peer.primary_path) {
772 sctp_assoc_set_primary(asoc, peer);
773 asoc->peer.retran_path = peer;
774 }
775
Vlad Yasevichfbdf5012010-04-30 22:39:26 -0400776 if (asoc->peer.active_path == asoc->peer.retran_path &&
777 peer->state != SCTP_UNCONFIRMED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 asoc->peer.retran_path = peer;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 return peer;
782}
783
784/* Delete a transport address from an association. */
785void sctp_assoc_del_peer(struct sctp_association *asoc,
786 const union sctp_addr *addr)
787{
788 struct list_head *pos;
789 struct list_head *temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 struct sctp_transport *transport;
791
792 list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
793 transport = list_entry(pos, struct sctp_transport, transports);
794 if (sctp_cmp_addr_exact(addr, &transport->ipaddr)) {
Frank Filz3f7a87d2005-06-20 13:14:57 -0700795 /* Do book keeping for removing the peer and free it. */
796 sctp_assoc_rm_peer(asoc, transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 break;
798 }
799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
801
802/* Lookup a transport by address. */
803struct sctp_transport *sctp_assoc_lookup_paddr(
804 const struct sctp_association *asoc,
805 const union sctp_addr *address)
806{
807 struct sctp_transport *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 /* Cycle through all transports searching for a peer address. */
810
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700811 list_for_each_entry(t, &asoc->peer.transport_addr_list,
812 transports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (sctp_cmp_addr_exact(address, &t->ipaddr))
814 return t;
815 }
816
817 return NULL;
818}
819
Vlad Yasevich42e30bf2007-12-20 14:08:56 -0800820/* Remove all transports except a give one */
821void sctp_assoc_del_nonprimary_peers(struct sctp_association *asoc,
822 struct sctp_transport *primary)
823{
824 struct sctp_transport *temp;
825 struct sctp_transport *t;
826
827 list_for_each_entry_safe(t, temp, &asoc->peer.transport_addr_list,
828 transports) {
829 /* if the current transport is not the primary one, delete it */
830 if (t != primary)
831 sctp_assoc_rm_peer(asoc, t);
832 }
Vlad Yasevich42e30bf2007-12-20 14:08:56 -0800833}
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835/* Engage in transport control operations.
836 * Mark the transport up or down and send a notification to the user.
837 * Select and update the new active and retran paths.
838 */
839void sctp_assoc_control_transport(struct sctp_association *asoc,
840 struct sctp_transport *transport,
841 sctp_transport_cmd_t command,
842 sctp_sn_error_t error)
843{
844 struct sctp_transport *t = NULL;
845 struct sctp_transport *first;
846 struct sctp_transport *second;
847 struct sctp_ulpevent *event;
Al Viro0906e202006-11-20 17:03:01 -0800848 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 int spc_state = 0;
Neil Horman5aa93bc2012-07-21 07:56:07 +0000850 bool ulp_notify = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 /* Record the transition on the transport. */
853 switch (command) {
854 case SCTP_TRANSPORT_UP:
Vlad Yasevich1ae4114d2007-03-23 11:32:26 -0700855 /* If we are moving from UNCONFIRMED state due
856 * to heartbeat success, report the SCTP_ADDR_CONFIRMED
857 * state to the user, otherwise report SCTP_ADDR_AVAILABLE.
858 */
859 if (SCTP_UNCONFIRMED == transport->state &&
860 SCTP_HEARTBEAT_SUCCESS == error)
861 spc_state = SCTP_ADDR_CONFIRMED;
862 else
863 spc_state = SCTP_ADDR_AVAILABLE;
Neil Horman5aa93bc2012-07-21 07:56:07 +0000864 /* Don't inform ULP about transition from PF to
865 * active state and set cwnd to 1, see SCTP
866 * Quick failover draft section 5.1, point 5
867 */
868 if (transport->state == SCTP_PF) {
869 ulp_notify = false;
870 transport->cwnd = 1;
871 }
Frank Filz3f7a87d2005-06-20 13:14:57 -0700872 transport->state = SCTP_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 break;
874
875 case SCTP_TRANSPORT_DOWN:
Vlad Yasevich40187882009-06-23 11:28:05 -0400876 /* If the transport was never confirmed, do not transition it
877 * to inactive state. Also, release the cached route since
878 * there may be a better route next time.
Vlad Yasevichcc756892007-08-24 19:30:25 +0900879 */
880 if (transport->state != SCTP_UNCONFIRMED)
881 transport->state = SCTP_INACTIVE;
Vlad Yasevich40187882009-06-23 11:28:05 -0400882 else {
883 dst_release(transport->dst);
884 transport->dst = NULL;
885 }
Vlad Yasevichcc756892007-08-24 19:30:25 +0900886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 spc_state = SCTP_ADDR_UNREACHABLE;
888 break;
889
Neil Horman5aa93bc2012-07-21 07:56:07 +0000890 case SCTP_TRANSPORT_PF:
891 transport->state = SCTP_PF;
892 ulp_notify = false;
893 break;
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 default:
896 return;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 /* Generate and send a SCTP_PEER_ADDR_CHANGE notification to the
900 * user.
901 */
Neil Horman5aa93bc2012-07-21 07:56:07 +0000902 if (ulp_notify) {
903 memset(&addr, 0, sizeof(struct sockaddr_storage));
904 memcpy(&addr, &transport->ipaddr,
905 transport->af_specific->sockaddr_len);
906 event = sctp_ulpevent_make_peer_addr_change(asoc, &addr,
907 0, spc_state, error, GFP_ATOMIC);
908 if (event)
909 sctp_ulpq_tail_event(&asoc->ulpq, event);
910 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 /* Select new active and retran paths. */
913
914 /* Look for the two most recently used active transports.
915 *
916 * This code produces the wrong ordering whenever jiffies
917 * rolls over, but we still get usable transports, so we don't
918 * worry about it.
919 */
920 first = NULL; second = NULL;
921
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700922 list_for_each_entry(t, &asoc->peer.transport_addr_list,
923 transports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Sridhar Samudralaad8fec12006-07-21 14:48:50 -0700925 if ((t->state == SCTP_INACTIVE) ||
Neil Horman5aa93bc2012-07-21 07:56:07 +0000926 (t->state == SCTP_UNCONFIRMED) ||
927 (t->state == SCTP_PF))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 continue;
929 if (!first || t->last_time_heard > first->last_time_heard) {
930 second = first;
931 first = t;
932 }
933 if (!second || t->last_time_heard > second->last_time_heard)
934 second = t;
935 }
936
937 /* RFC 2960 6.4 Multi-Homed SCTP Endpoints
938 *
939 * By default, an endpoint should always transmit to the
940 * primary path, unless the SCTP user explicitly specifies the
941 * destination transport address (and possibly source
942 * transport address) to use.
943 *
944 * [If the primary is active but not most recent, bump the most
945 * recently used transport.]
946 */
Sridhar Samudralaad8fec12006-07-21 14:48:50 -0700947 if (((asoc->peer.primary_path->state == SCTP_ACTIVE) ||
948 (asoc->peer.primary_path->state == SCTP_UNKNOWN)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 first != asoc->peer.primary_path) {
950 second = first;
951 first = asoc->peer.primary_path;
952 }
953
954 /* If we failed to find a usable transport, just camp on the
955 * primary, even if it is inactive.
956 */
957 if (!first) {
958 first = asoc->peer.primary_path;
959 second = asoc->peer.primary_path;
960 }
961
962 /* Set the active and retran transports. */
963 asoc->peer.active_path = first;
964 asoc->peer.retran_path = second;
965}
966
967/* Hold a reference to an association. */
968void sctp_association_hold(struct sctp_association *asoc)
969{
970 atomic_inc(&asoc->base.refcnt);
971}
972
973/* Release a reference to an association and cleanup
974 * if there are no more references.
975 */
976void sctp_association_put(struct sctp_association *asoc)
977{
978 if (atomic_dec_and_test(&asoc->base.refcnt))
979 sctp_association_destroy(asoc);
980}
981
982/* Allocate the next TSN, Transmission Sequence Number, for the given
983 * association.
984 */
985__u32 sctp_association_get_next_tsn(struct sctp_association *asoc)
986{
987 /* From Section 1.6 Serial Number Arithmetic:
988 * Transmission Sequence Numbers wrap around when they reach
989 * 2**32 - 1. That is, the next TSN a DATA chunk MUST use
990 * after transmitting TSN = 2*32 - 1 is TSN = 0.
991 */
992 __u32 retval = asoc->next_tsn;
993 asoc->next_tsn++;
994 asoc->unack_data++;
995
996 return retval;
997}
998
999/* Compare two addresses to see if they match. Wildcard addresses
1000 * only match themselves.
1001 */
1002int sctp_cmp_addr_exact(const union sctp_addr *ss1,
1003 const union sctp_addr *ss2)
1004{
1005 struct sctp_af *af;
1006
1007 af = sctp_get_af_specific(ss1->sa.sa_family);
1008 if (unlikely(!af))
1009 return 0;
1010
1011 return af->cmp_addr(ss1, ss2);
1012}
1013
1014/* Return an ecne chunk to get prepended to a packet.
1015 * Note: We are sly and return a shared, prealloced chunk. FIXME:
1016 * No we don't, but we could/should.
1017 */
1018struct sctp_chunk *sctp_get_ecne_prepend(struct sctp_association *asoc)
1019{
1020 struct sctp_chunk *chunk;
1021
1022 /* Send ECNE if needed.
1023 * Not being able to allocate a chunk here is not deadly.
1024 */
1025 if (asoc->need_ecne)
1026 chunk = sctp_make_ecne(asoc, asoc->last_ecne_tsn);
1027 else
1028 chunk = NULL;
1029
1030 return chunk;
1031}
1032
1033/*
1034 * Find which transport this TSN was sent on.
1035 */
1036struct sctp_transport *sctp_assoc_lookup_tsn(struct sctp_association *asoc,
1037 __u32 tsn)
1038{
1039 struct sctp_transport *active;
1040 struct sctp_transport *match;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 struct sctp_transport *transport;
1042 struct sctp_chunk *chunk;
Al Virodbc16db2006-11-20 17:01:42 -08001043 __be32 key = htonl(tsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
1045 match = NULL;
1046
1047 /*
1048 * FIXME: In general, find a more efficient data structure for
1049 * searching.
1050 */
1051
1052 /*
1053 * The general strategy is to search each transport's transmitted
1054 * list. Return which transport this TSN lives on.
1055 *
1056 * Let's be hopeful and check the active_path first.
1057 * Another optimization would be to know if there is only one
1058 * outbound path and not have to look for the TSN at all.
1059 *
1060 */
1061
1062 active = asoc->peer.active_path;
1063
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001064 list_for_each_entry(chunk, &active->transmitted,
1065 transmitted_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067 if (key == chunk->subh.data_hdr->tsn) {
1068 match = active;
1069 goto out;
1070 }
1071 }
1072
1073 /* If not found, go search all the other transports. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001074 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
1075 transports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 if (transport == active)
Xufeng Zhang2317f442013-03-07 21:39:37 +00001078 continue;
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001079 list_for_each_entry(chunk, &transport->transmitted,
1080 transmitted_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 if (key == chunk->subh.data_hdr->tsn) {
1082 match = transport;
1083 goto out;
1084 }
1085 }
1086 }
1087out:
1088 return match;
1089}
1090
1091/* Is this the association we are looking for? */
1092struct sctp_transport *sctp_assoc_is_match(struct sctp_association *asoc,
Eric W. Biederman4110cc22012-08-06 08:41:13 +00001093 struct net *net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 const union sctp_addr *laddr,
1095 const union sctp_addr *paddr)
1096{
1097 struct sctp_transport *transport;
1098
Al Viroe2fcced2006-11-20 17:08:41 -08001099 if ((htons(asoc->base.bind_addr.port) == laddr->v4.sin_port) &&
Eric W. Biederman4110cc22012-08-06 08:41:13 +00001100 (htons(asoc->peer.port) == paddr->v4.sin_port) &&
1101 net_eq(sock_net(asoc->base.sk), net)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 transport = sctp_assoc_lookup_paddr(asoc, paddr);
1103 if (!transport)
1104 goto out;
1105
1106 if (sctp_bind_addr_match(&asoc->base.bind_addr, laddr,
1107 sctp_sk(asoc->base.sk)))
1108 goto out;
1109 }
1110 transport = NULL;
1111
1112out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 return transport;
1114}
1115
1116/* Do delayed input processing. This is scheduled by sctp_rcv(). */
David Howellsc4028952006-11-22 14:57:56 +00001117static void sctp_assoc_bh_rcv(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
David Howellsc4028952006-11-22 14:57:56 +00001119 struct sctp_association *asoc =
1120 container_of(work, struct sctp_association,
1121 base.inqueue.immediate);
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001122 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 struct sctp_endpoint *ep;
1124 struct sctp_chunk *chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 struct sctp_inq *inqueue;
1126 int state;
1127 sctp_subtype_t subtype;
1128 int error = 0;
1129
1130 /* The association should be held so we should be safe. */
1131 ep = asoc->ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
1133 inqueue = &asoc->base.inqueue;
1134 sctp_association_hold(asoc);
1135 while (NULL != (chunk = sctp_inq_pop(inqueue))) {
1136 state = asoc->state;
1137 subtype = SCTP_ST_CHUNK(chunk->chunk_hdr->type);
1138
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07001139 /* SCTP-AUTH, Section 6.3:
1140 * The receiver has a list of chunk types which it expects
1141 * to be received only after an AUTH-chunk. This list has
1142 * been sent to the peer during the association setup. It
1143 * MUST silently discard these chunks if they are not placed
1144 * after an AUTH chunk in the packet.
1145 */
1146 if (sctp_auth_recv_cid(subtype.chunk, asoc) && !chunk->auth)
1147 continue;
1148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 /* Remember where the last DATA chunk came from so we
1150 * know where to send the SACK.
1151 */
1152 if (sctp_chunk_is_data(chunk))
1153 asoc->peer.last_data_from = chunk->transport;
Michele Baldessari196d6752012-12-01 04:49:42 +00001154 else {
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001155 SCTP_INC_STATS(net, SCTP_MIB_INCTRLCHUNKS);
Michele Baldessari196d6752012-12-01 04:49:42 +00001156 asoc->stats.ictrlchunks++;
1157 if (chunk->chunk_hdr->type == SCTP_CID_SACK)
1158 asoc->stats.isacks++;
1159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 if (chunk->transport)
1162 chunk->transport->last_time_heard = jiffies;
1163
1164 /* Run through the state machine. */
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001165 error = sctp_do_sm(net, SCTP_EVENT_T_CHUNK, subtype,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 state, ep, asoc, chunk, GFP_ATOMIC);
1167
1168 /* Check to see if the association is freed in response to
1169 * the incoming chunk. If so, get out of the while loop.
1170 */
1171 if (asoc->base.dead)
1172 break;
1173
1174 /* If there is an error on chunk, discard this packet. */
1175 if (error && chunk)
1176 chunk->pdiscard = 1;
1177 }
1178 sctp_association_put(asoc);
1179}
1180
1181/* This routine moves an association from its old sk to a new sk. */
1182void sctp_assoc_migrate(struct sctp_association *assoc, struct sock *newsk)
1183{
1184 struct sctp_sock *newsp = sctp_sk(newsk);
1185 struct sock *oldsk = assoc->base.sk;
1186
1187 /* Delete the association from the old endpoint's list of
1188 * associations.
1189 */
1190 list_del_init(&assoc->asocs);
1191
1192 /* Decrement the backlog value for a TCP-style socket. */
1193 if (sctp_style(oldsk, TCP))
1194 oldsk->sk_ack_backlog--;
1195
1196 /* Release references to the old endpoint and the sock. */
1197 sctp_endpoint_put(assoc->ep);
1198 sock_put(assoc->base.sk);
1199
1200 /* Get a reference to the new endpoint. */
1201 assoc->ep = newsp->ep;
1202 sctp_endpoint_hold(assoc->ep);
1203
1204 /* Get a reference to the new sock. */
1205 assoc->base.sk = newsk;
1206 sock_hold(assoc->base.sk);
1207
1208 /* Add the association to the new endpoint's list of associations. */
1209 sctp_endpoint_add_asoc(newsp->ep, assoc);
1210}
1211
1212/* Update an association (possibly from unexpected COOKIE-ECHO processing). */
1213void sctp_assoc_update(struct sctp_association *asoc,
1214 struct sctp_association *new)
1215{
1216 struct sctp_transport *trans;
1217 struct list_head *pos, *temp;
1218
1219 /* Copy in new parameters of peer. */
1220 asoc->c = new->c;
1221 asoc->peer.rwnd = new->peer.rwnd;
1222 asoc->peer.sack_needed = new->peer.sack_needed;
1223 asoc->peer.i = new->peer.i;
Vlad Yasevich8e1ee182008-10-08 14:18:39 -07001224 sctp_tsnmap_init(&asoc->peer.tsn_map, SCTP_TSN_MAP_INITIAL,
1225 asoc->peer.i.initial_tsn, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
1227 /* Remove any peer addresses not present in the new association. */
1228 list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
1229 trans = list_entry(pos, struct sctp_transport, transports);
Vlad Yasevich0c427492010-04-28 08:47:19 +00001230 if (!sctp_assoc_lookup_paddr(new, &trans->ipaddr)) {
1231 sctp_assoc_rm_peer(asoc, trans);
1232 continue;
1233 }
Vlad Yasevich749bf922007-03-19 17:02:30 -07001234
1235 if (asoc->state >= SCTP_STATE_ESTABLISHED)
1236 sctp_transport_reset(trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 }
1238
1239 /* If the case is A (association restart), use
1240 * initial_tsn as next_tsn. If the case is B, use
1241 * current next_tsn in case data sent to peer
1242 * has been discarded and needs retransmission.
1243 */
1244 if (asoc->state >= SCTP_STATE_ESTABLISHED) {
1245 asoc->next_tsn = new->next_tsn;
1246 asoc->ctsn_ack_point = new->ctsn_ack_point;
1247 asoc->adv_peer_ack_point = new->adv_peer_ack_point;
1248
1249 /* Reinitialize SSN for both local streams
1250 * and peer's streams.
1251 */
1252 sctp_ssnmap_clear(asoc->ssnmap);
1253
Vlad Yasevich0b58a812007-03-19 17:01:17 -07001254 /* Flush the ULP reassembly and ordered queue.
1255 * Any data there will now be stale and will
1256 * cause problems.
1257 */
1258 sctp_ulpq_flush(&asoc->ulpq);
1259
Vlad Yasevich749bf922007-03-19 17:02:30 -07001260 /* reset the overall association error count so
1261 * that the restarted association doesn't get torn
1262 * down on the next retransmission timer.
1263 */
1264 asoc->overall_error_count = 0;
1265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 } else {
1267 /* Add any peer addresses from the new association. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001268 list_for_each_entry(trans, &new->peer.transport_addr_list,
1269 transports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 if (!sctp_assoc_lookup_paddr(asoc, &trans->ipaddr))
1271 sctp_assoc_add_peer(asoc, &trans->ipaddr,
Sridhar Samudralaad8fec12006-07-21 14:48:50 -07001272 GFP_ATOMIC, trans->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
1274
1275 asoc->ctsn_ack_point = asoc->next_tsn - 1;
1276 asoc->adv_peer_ack_point = asoc->ctsn_ack_point;
1277 if (!asoc->ssnmap) {
1278 /* Move the ssnmap. */
1279 asoc->ssnmap = new->ssnmap;
1280 new->ssnmap = NULL;
1281 }
Vlad Yasevich07d93962007-05-04 13:55:27 -07001282
1283 if (!asoc->assoc_id) {
1284 /* get a new association id since we don't have one
1285 * yet.
1286 */
1287 sctp_assoc_set_id(asoc, GFP_ATOMIC);
1288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 }
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -07001290
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07001291 /* SCTP-AUTH: Save the peer parameters from the new assocaitions
1292 * and also move the association shared keys over
1293 */
1294 kfree(asoc->peer.peer_random);
1295 asoc->peer.peer_random = new->peer.peer_random;
1296 new->peer.peer_random = NULL;
1297
1298 kfree(asoc->peer.peer_chunks);
1299 asoc->peer.peer_chunks = new->peer.peer_chunks;
1300 new->peer.peer_chunks = NULL;
1301
1302 kfree(asoc->peer.peer_hmacs);
1303 asoc->peer.peer_hmacs = new->peer.peer_hmacs;
1304 new->peer.peer_hmacs = NULL;
1305
1306 sctp_auth_key_put(asoc->asoc_shared_key);
1307 sctp_auth_asoc_init_active_key(asoc, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308}
1309
1310/* Update the retran path for sending a retransmitted packet.
1311 * Round-robin through the active transports, else round-robin
1312 * through the inactive transports as this is the next best thing
1313 * we can try.
1314 */
1315void sctp_assoc_update_retran_path(struct sctp_association *asoc)
1316{
1317 struct sctp_transport *t, *next;
1318 struct list_head *head = &asoc->peer.transport_addr_list;
1319 struct list_head *pos;
1320
Gui Jianfeng4141ddc2008-06-04 12:37:33 -07001321 if (asoc->peer.transport_count == 1)
1322 return;
1323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 /* Find the next transport in a round-robin fashion. */
1325 t = asoc->peer.retran_path;
1326 pos = &t->transports;
1327 next = NULL;
1328
1329 while (1) {
1330 /* Skip the head. */
1331 if (pos->next == head)
1332 pos = head->next;
1333 else
1334 pos = pos->next;
1335
1336 t = list_entry(pos, struct sctp_transport, transports);
1337
Gui Jianfeng4141ddc2008-06-04 12:37:33 -07001338 /* We have exhausted the list, but didn't find any
1339 * other active transports. If so, use the next
1340 * transport.
1341 */
1342 if (t == asoc->peer.retran_path) {
1343 t = next;
1344 break;
1345 }
1346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 /* Try to find an active transport. */
1348
Sridhar Samudralaad8fec12006-07-21 14:48:50 -07001349 if ((t->state == SCTP_ACTIVE) ||
1350 (t->state == SCTP_UNKNOWN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 break;
1352 } else {
1353 /* Keep track of the next transport in case
1354 * we don't find any active transport.
1355 */
Vlad Yasevichfbdf5012010-04-30 22:39:26 -04001356 if (t->state != SCTP_UNCONFIRMED && !next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 next = t;
1358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 }
1360
Vlad Yasevichd598b162010-04-30 22:41:09 -04001361 if (t)
1362 asoc->peer.retran_path = t;
Vlad Yasevich25f7bf72011-04-12 15:20:48 +00001363 else
1364 t = asoc->peer.retran_path;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001365
1366 SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_update_retran_path:association"
1367 " %p addr: ",
1368 " port: %d\n",
1369 asoc,
1370 (&t->ipaddr),
Al Virob3f5b3b2006-11-20 17:22:43 -08001371 ntohs(t->ipaddr.v4.sin_port));
Frank Filz3f7a87d2005-06-20 13:14:57 -07001372}
1373
Wei Yongjun9919b452009-05-12 21:52:51 +08001374/* Choose the transport for sending retransmit packet. */
1375struct sctp_transport *sctp_assoc_choose_alter_transport(
1376 struct sctp_association *asoc, struct sctp_transport *last_sent_to)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001377{
Wei Yongjun9919b452009-05-12 21:52:51 +08001378 /* If this is the first time packet is sent, use the active path,
1379 * else use the retran path. If the last packet was sent over the
Frank Filz3f7a87d2005-06-20 13:14:57 -07001380 * retran path, update the retran path and use it.
1381 */
Wei Yongjun9919b452009-05-12 21:52:51 +08001382 if (!last_sent_to)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 return asoc->peer.active_path;
1384 else {
Wei Yongjun9919b452009-05-12 21:52:51 +08001385 if (last_sent_to == asoc->peer.retran_path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 sctp_assoc_update_retran_path(asoc);
1387 return asoc->peer.retran_path;
1388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389}
1390
1391/* Update the association's pmtu and frag_point by going through all the
1392 * transports. This routine is called when a transport's PMTU has changed.
1393 */
David S. Miller02f3d4c2012-07-16 03:57:14 -07001394void sctp_assoc_sync_pmtu(struct sock *sk, struct sctp_association *asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395{
1396 struct sctp_transport *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 __u32 pmtu = 0;
1398
1399 if (!asoc)
1400 return;
1401
1402 /* Get the lowest pmtu of all the transports. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001403 list_for_each_entry(t, &asoc->peer.transport_addr_list,
1404 transports) {
Vlad Yasevich8a479492007-06-07 14:21:05 -04001405 if (t->pmtu_pending && t->dst) {
David S. Miller02f3d4c2012-07-16 03:57:14 -07001406 sctp_transport_update_pmtu(sk, t, dst_mtu(t->dst));
Vlad Yasevich8a479492007-06-07 14:21:05 -04001407 t->pmtu_pending = 0;
1408 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08001409 if (!pmtu || (t->pathmtu < pmtu))
1410 pmtu = t->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 }
1412
1413 if (pmtu) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08001414 asoc->pathmtu = pmtu;
Vlad Yasevichf68b2e02009-09-04 18:21:00 -04001415 asoc->frag_point = sctp_frag_point(asoc, pmtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
1417
1418 SCTP_DEBUG_PRINTK("%s: asoc:%p, pmtu:%d, frag_point:%d\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001419 __func__, asoc, asoc->pathmtu, asoc->frag_point);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420}
1421
1422/* Should we send a SACK to update our peer? */
1423static inline int sctp_peer_needs_update(struct sctp_association *asoc)
1424{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00001425 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 switch (asoc->state) {
1427 case SCTP_STATE_ESTABLISHED:
1428 case SCTP_STATE_SHUTDOWN_PENDING:
1429 case SCTP_STATE_SHUTDOWN_RECEIVED:
1430 case SCTP_STATE_SHUTDOWN_SENT:
1431 if ((asoc->rwnd > asoc->a_rwnd) &&
Vlad Yasevich90f2f532009-11-23 15:53:57 -05001432 ((asoc->rwnd - asoc->a_rwnd) >= max_t(__u32,
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00001433 (asoc->base.sk->sk_rcvbuf >> net->sctp.rwnd_upd_shift),
Vlad Yasevich90f2f532009-11-23 15:53:57 -05001434 asoc->pathmtu)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 return 1;
1436 break;
1437 default:
1438 break;
1439 }
1440 return 0;
1441}
1442
1443/* Increase asoc's rwnd by len and send any window update SACK if needed. */
Eric Dumazet95c96172012-04-15 05:58:06 +00001444void sctp_assoc_rwnd_increase(struct sctp_association *asoc, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
1446 struct sctp_chunk *sack;
1447 struct timer_list *timer;
1448
1449 if (asoc->rwnd_over) {
1450 if (asoc->rwnd_over >= len) {
1451 asoc->rwnd_over -= len;
1452 } else {
1453 asoc->rwnd += (len - asoc->rwnd_over);
1454 asoc->rwnd_over = 0;
1455 }
1456 } else {
1457 asoc->rwnd += len;
1458 }
1459
Vlad Yasevich4d3c46e2009-09-04 18:20:59 -04001460 /* If we had window pressure, start recovering it
1461 * once our rwnd had reached the accumulated pressure
1462 * threshold. The idea is to recover slowly, but up
1463 * to the initial advertised window.
1464 */
1465 if (asoc->rwnd_press && asoc->rwnd >= asoc->rwnd_press) {
1466 int change = min(asoc->pathmtu, asoc->rwnd_press);
1467 asoc->rwnd += change;
1468 asoc->rwnd_press -= change;
1469 }
1470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 SCTP_DEBUG_PRINTK("%s: asoc %p rwnd increased by %d to (%u, %u) "
Harvey Harrison0dc47872008-03-05 20:47:47 -08001472 "- %u\n", __func__, asoc, len, asoc->rwnd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 asoc->rwnd_over, asoc->a_rwnd);
1474
1475 /* Send a window update SACK if the rwnd has increased by at least the
1476 * minimum of the association's PMTU and half of the receive buffer.
1477 * The algorithm used is similar to the one described in
1478 * Section 4.2.3.3 of RFC 1122.
1479 */
1480 if (sctp_peer_needs_update(asoc)) {
1481 asoc->a_rwnd = asoc->rwnd;
1482 SCTP_DEBUG_PRINTK("%s: Sending window update SACK- asoc: %p "
Harvey Harrison0dc47872008-03-05 20:47:47 -08001483 "rwnd: %u a_rwnd: %u\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 asoc, asoc->rwnd, asoc->a_rwnd);
1485 sack = sctp_make_sack(asoc);
1486 if (!sack)
1487 return;
1488
1489 asoc->peer.sack_needed = 0;
1490
1491 sctp_outq_tail(&asoc->outqueue, sack);
1492
1493 /* Stop the SACK timer. */
1494 timer = &asoc->timers[SCTP_EVENT_TIMEOUT_SACK];
Ying Xue25cc4ae2013-02-03 20:32:57 +00001495 if (del_timer(timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 sctp_association_put(asoc);
1497 }
1498}
1499
1500/* Decrease asoc's rwnd by len. */
Eric Dumazet95c96172012-04-15 05:58:06 +00001501void sctp_assoc_rwnd_decrease(struct sctp_association *asoc, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502{
Vlad Yasevich4d3c46e2009-09-04 18:20:59 -04001503 int rx_count;
1504 int over = 0;
1505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 SCTP_ASSERT(asoc->rwnd, "rwnd zero", return);
1507 SCTP_ASSERT(!asoc->rwnd_over, "rwnd_over not zero", return);
Vlad Yasevich4d3c46e2009-09-04 18:20:59 -04001508
1509 if (asoc->ep->rcvbuf_policy)
1510 rx_count = atomic_read(&asoc->rmem_alloc);
1511 else
1512 rx_count = atomic_read(&asoc->base.sk->sk_rmem_alloc);
1513
1514 /* If we've reached or overflowed our receive buffer, announce
1515 * a 0 rwnd if rwnd would still be positive. Store the
1516 * the pottential pressure overflow so that the window can be restored
1517 * back to original value.
1518 */
1519 if (rx_count >= asoc->base.sk->sk_rcvbuf)
1520 over = 1;
1521
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 if (asoc->rwnd >= len) {
1523 asoc->rwnd -= len;
Vlad Yasevich4d3c46e2009-09-04 18:20:59 -04001524 if (over) {
Vlad Yasevich65883372010-04-30 22:41:10 -04001525 asoc->rwnd_press += asoc->rwnd;
Vlad Yasevich4d3c46e2009-09-04 18:20:59 -04001526 asoc->rwnd = 0;
1527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 } else {
1529 asoc->rwnd_over = len - asoc->rwnd;
1530 asoc->rwnd = 0;
1531 }
Vlad Yasevich4d3c46e2009-09-04 18:20:59 -04001532 SCTP_DEBUG_PRINTK("%s: asoc %p rwnd decreased by %d to (%u, %u, %u)\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001533 __func__, asoc, len, asoc->rwnd,
Vlad Yasevich4d3c46e2009-09-04 18:20:59 -04001534 asoc->rwnd_over, asoc->rwnd_press);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535}
1536
1537/* Build the bind address list for the association based on info from the
1538 * local endpoint and the remote peer.
1539 */
Alexey Dobriyan3182cd82005-07-11 20:57:47 -07001540int sctp_assoc_set_bind_addr_from_ep(struct sctp_association *asoc,
Vlad Yasevich409b95a2009-11-10 08:57:34 +00001541 sctp_scope_t scope, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 int flags;
1544
1545 /* Use scoping rules to determine the subset of addresses from
1546 * the endpoint.
1547 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 flags = (PF_INET6 == asoc->base.sk->sk_family) ? SCTP_ADDR6_ALLOWED : 0;
1549 if (asoc->peer.ipv4_address)
1550 flags |= SCTP_ADDR4_PEERSUPP;
1551 if (asoc->peer.ipv6_address)
1552 flags |= SCTP_ADDR6_PEERSUPP;
1553
Eric W. Biederman4db67e82012-08-06 08:42:04 +00001554 return sctp_bind_addr_copy(sock_net(asoc->base.sk),
1555 &asoc->base.bind_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 &asoc->ep->base.bind_addr,
1557 scope, gfp, flags);
1558}
1559
1560/* Build the association's bind address list from the cookie. */
1561int sctp_assoc_set_bind_addr_from_cookie(struct sctp_association *asoc,
Alexey Dobriyan3182cd82005-07-11 20:57:47 -07001562 struct sctp_cookie *cookie,
Al Virodd0fc662005-10-07 07:46:04 +01001563 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
1565 int var_size2 = ntohs(cookie->peer_init->chunk_hdr.length);
1566 int var_size3 = cookie->raw_addr_list_len;
1567 __u8 *raw = (__u8 *)cookie->peer_init + var_size2;
1568
1569 return sctp_raw_to_bind_addrs(&asoc->base.bind_addr, raw, var_size3,
1570 asoc->ep->base.bind_addr.port, gfp);
1571}
1572
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001573/* Lookup laddr in the bind address list of an association. */
1574int sctp_assoc_lookup_laddr(struct sctp_association *asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 const union sctp_addr *laddr)
1576{
Vlad Yasevich559cf712007-09-16 16:03:28 -07001577 int found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 if ((asoc->base.bind_addr.port == ntohs(laddr->v4.sin_port)) &&
1580 sctp_bind_addr_match(&asoc->base.bind_addr, laddr,
Vlad Yasevich559cf712007-09-16 16:03:28 -07001581 sctp_sk(asoc->base.sk)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 return found;
1585}
Vlad Yasevich07d93962007-05-04 13:55:27 -07001586
1587/* Set an association id for a given association */
1588int sctp_assoc_set_id(struct sctp_association *asoc, gfp_t gfp)
1589{
Tejun Heo94960e82013-02-27 17:05:00 -08001590 bool preload = gfp & __GFP_WAIT;
1591 int ret;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001592
1593 /* If the id is already assigned, keep it. */
1594 if (asoc->assoc_id)
Tejun Heo94960e82013-02-27 17:05:00 -08001595 return 0;
Vlad Yasevich07d93962007-05-04 13:55:27 -07001596
Tejun Heo94960e82013-02-27 17:05:00 -08001597 if (preload)
1598 idr_preload(gfp);
Vlad Yasevich07d93962007-05-04 13:55:27 -07001599 spin_lock_bh(&sctp_assocs_id_lock);
Tejun Heo94960e82013-02-27 17:05:00 -08001600 /* 0 is not a valid id, idr_low is always >= 1 */
1601 ret = idr_alloc(&sctp_assocs_id, asoc, idr_low, 0, GFP_NOWAIT);
1602 if (ret >= 0) {
1603 idr_low = ret + 1;
Vlad Yasevich48143262009-11-23 15:54:01 -05001604 if (idr_low == INT_MAX)
1605 idr_low = 1;
1606 }
Vlad Yasevich07d93962007-05-04 13:55:27 -07001607 spin_unlock_bh(&sctp_assocs_id_lock);
Tejun Heo94960e82013-02-27 17:05:00 -08001608 if (preload)
1609 idr_preload_end();
1610 if (ret < 0)
1611 return ret;
Vlad Yasevich07d93962007-05-04 13:55:27 -07001612
Tejun Heo94960e82013-02-27 17:05:00 -08001613 asoc->assoc_id = (sctp_assoc_t)ret;
1614 return 0;
Vlad Yasevich07d93962007-05-04 13:55:27 -07001615}
Vlad Yasevicha08de642007-12-20 14:11:47 -08001616
Wei Yongjun8b4472c2011-05-24 21:48:02 +00001617/* Free the ASCONF queue */
1618static void sctp_assoc_free_asconf_queue(struct sctp_association *asoc)
1619{
1620 struct sctp_chunk *asconf;
1621 struct sctp_chunk *tmp;
1622
1623 list_for_each_entry_safe(asconf, tmp, &asoc->addip_chunk_list, list) {
1624 list_del_init(&asconf->list);
1625 sctp_chunk_free(asconf);
1626 }
1627}
1628
Vlad Yasevicha08de642007-12-20 14:11:47 -08001629/* Free asconf_ack cache */
1630static void sctp_assoc_free_asconf_acks(struct sctp_association *asoc)
1631{
1632 struct sctp_chunk *ack;
1633 struct sctp_chunk *tmp;
1634
1635 list_for_each_entry_safe(ack, tmp, &asoc->asconf_ack_list,
1636 transmitted_list) {
1637 list_del_init(&ack->transmitted_list);
1638 sctp_chunk_free(ack);
1639 }
1640}
1641
1642/* Clean up the ASCONF_ACK queue */
1643void sctp_assoc_clean_asconf_ack_cache(const struct sctp_association *asoc)
1644{
1645 struct sctp_chunk *ack;
1646 struct sctp_chunk *tmp;
1647
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001648 /* We can remove all the entries from the queue up to
Vlad Yasevicha08de642007-12-20 14:11:47 -08001649 * the "Peer-Sequence-Number".
1650 */
1651 list_for_each_entry_safe(ack, tmp, &asoc->asconf_ack_list,
1652 transmitted_list) {
1653 if (ack->subh.addip_hdr->serial ==
1654 htonl(asoc->peer.addip_serial))
1655 break;
1656
1657 list_del_init(&ack->transmitted_list);
1658 sctp_chunk_free(ack);
1659 }
1660}
1661
1662/* Find the ASCONF_ACK whose serial number matches ASCONF */
1663struct sctp_chunk *sctp_assoc_lookup_asconf_ack(
1664 const struct sctp_association *asoc,
1665 __be32 serial)
1666{
Wei Yongjuna8699812008-02-05 23:35:04 +09001667 struct sctp_chunk *ack;
Vlad Yasevicha08de642007-12-20 14:11:47 -08001668
1669 /* Walk through the list of cached ASCONF-ACKs and find the
1670 * ack chunk whose serial number matches that of the request.
1671 */
1672 list_for_each_entry(ack, &asoc->asconf_ack_list, transmitted_list) {
1673 if (ack->subh.addip_hdr->serial == serial) {
1674 sctp_chunk_hold(ack);
Wei Yongjuna8699812008-02-05 23:35:04 +09001675 return ack;
Vlad Yasevicha08de642007-12-20 14:11:47 -08001676 }
1677 }
1678
Wei Yongjuna8699812008-02-05 23:35:04 +09001679 return NULL;
Vlad Yasevicha08de642007-12-20 14:11:47 -08001680}
Wei Yongjuna000c012011-05-29 23:23:36 +00001681
1682void sctp_asconf_queue_teardown(struct sctp_association *asoc)
1683{
1684 /* Free any cached ASCONF_ACK chunk. */
1685 sctp_assoc_free_asconf_acks(asoc);
1686
1687 /* Free the ASCONF queue. */
1688 sctp_assoc_free_asconf_queue(asoc);
1689
1690 /* Free any cached ASCONF chunk. */
1691 if (asoc->addip_last_asconf)
1692 sctp_chunk_free(asoc->addip_last_asconf);
1693}