blob: cfde934af5c57922bcf4b40283c6f8feee631cc2 [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-2002 Intel Corp.
6 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05007 * This file is part of the SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * These functions work with the state functions in sctp_sm_statefuns.c
10 * to implement the state operations. These functions implement the
11 * steps which require modifying existing data structures.
12 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050013 * This SCTP implementation is free software;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * you can redistribute it and/or modify it under the terms of
15 * the GNU General Public License as published by
16 * the Free Software Foundation; either version 2, or (at your option)
17 * any later version.
18 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050019 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
21 * ************************
22 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
23 * See the GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
Jeff Kirsher4b2f13a2013-12-06 06:28:48 -080026 * along with GNU CC; see the file COPYING. If not, see
27 * <http://www.gnu.org/licenses/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 *
29 * Please send any bug reports or fixes you make to the
30 * email address(es):
Daniel Borkmann91705c62013-07-23 14:51:47 +020031 * lksctp developers <linux-sctp@vger.kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 * Written or modified by:
34 * La Monte H.P. Yarroll <piggy@acm.org>
35 * Karl Knutson <karl@athena.chicago.il.us>
36 * C. Robin <chris@hundredacre.ac.uk>
37 * Jon Grimm <jgrimm@us.ibm.com>
38 * Xingang Guo <xingang.guo@intel.com>
39 * Dajiang Zhang <dajiang.zhang@nokia.com>
40 * Sridhar Samudrala <sri@us.ibm.com>
41 * Daisy Chang <daisyc@us.ibm.com>
42 * Ardelle Fan <ardelle.fan@intel.com>
43 * Kevin Gao <kevin.gao@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 */
45
Joe Perches145ce502010-08-24 13:21:08 +000046#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
47
Herbert Xu5821c762016-01-24 21:20:12 +080048#include <crypto/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/types.h>
50#include <linux/kernel.h>
51#include <linux/ip.h>
52#include <linux/ipv6.h>
53#include <linux/net.h>
54#include <linux/inet.h>
Christian Borntraegerebc3bbc2007-10-23 12:46:32 +020055#include <linux/scatterlist.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090056#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <net/sock.h>
58
59#include <linux/skbuff.h>
60#include <linux/random.h> /* for get_random_bytes */
61#include <net/sctp/sctp.h>
62#include <net/sctp/sm.h>
63
Vlad Yasevich072017b2013-08-09 22:05:36 -040064static struct sctp_chunk *sctp_make_control(const struct sctp_association *asoc,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -030065 __u8 type, __u8 flags, int paylen,
66 gfp_t gfp);
Vlad Yasevich072017b2013-08-09 22:05:36 -040067static struct sctp_chunk *sctp_make_data(const struct sctp_association *asoc,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -030068 __u8 flags, int paylen, gfp_t gfp);
Vlad Yasevich072017b2013-08-09 22:05:36 -040069static struct sctp_chunk *_sctp_make_chunk(const struct sctp_association *asoc,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -030070 __u8 type, __u8 flags, int paylen,
71 gfp_t gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static sctp_cookie_param_t *sctp_pack_cookie(const struct sctp_endpoint *ep,
73 const struct sctp_association *asoc,
74 const struct sctp_chunk *init_chunk,
75 int *cookie_len,
76 const __u8 *raw_addrs, int addrs_len);
77static int sctp_process_param(struct sctp_association *asoc,
78 union sctp_params param,
79 const union sctp_addr *peer_addr,
Al Virodd0fc662005-10-07 07:46:04 +010080 gfp_t gfp);
Vlad Yasevich8ee4be32007-11-29 08:50:35 -050081static void *sctp_addto_param(struct sctp_chunk *chunk, int len,
82 const void *data);
stephen hemminger6daaf0d2014-01-09 22:31:11 -080083static void *sctp_addto_chunk_fixed(struct sctp_chunk *, int len,
84 const void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Vlad Yasevich072017b2013-08-09 22:05:36 -040086/* Control chunk destructor */
87static void sctp_control_release_owner(struct sk_buff *skb)
88{
89 /*TODO: do memory release */
90}
91
92static void sctp_control_set_owner_w(struct sctp_chunk *chunk)
93{
94 struct sctp_association *asoc = chunk->asoc;
95 struct sk_buff *skb = chunk->skb;
96
97 /* TODO: properly account for control chunks.
98 * To do it right we'll need:
99 * 1) endpoint if association isn't known.
100 * 2) proper memory accounting.
101 *
102 * For now don't do anything for now.
103 */
104 skb->sk = asoc ? asoc->base.sk : NULL;
105 skb->destructor = sctp_control_release_owner;
106}
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/* What was the inbound interface for this chunk? */
109int sctp_chunk_iif(const struct sctp_chunk *chunk)
110{
111 struct sctp_af *af;
112 int iif = 0;
113
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700114 af = sctp_get_af_specific(ipver2af(ip_hdr(chunk->skb)->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 if (af)
116 iif = af->skb_iif(chunk->skb);
117
118 return iif;
119}
120
121/* RFC 2960 3.3.2 Initiation (INIT) (1)
122 *
123 * Note 2: The ECN capable field is reserved for future use of
124 * Explicit Congestion Notification.
125 */
126static const struct sctp_paramhdr ecap_param = {
127 SCTP_PARAM_ECN_CAPABLE,
Harvey Harrison09640e62009-02-01 00:45:17 -0800128 cpu_to_be16(sizeof(struct sctp_paramhdr)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129};
130static const struct sctp_paramhdr prsctp_param = {
131 SCTP_PARAM_FWD_TSN_SUPPORT,
Harvey Harrison09640e62009-02-01 00:45:17 -0800132 cpu_to_be16(sizeof(struct sctp_paramhdr)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133};
134
Neil Horman5fa782c2010-04-28 10:30:59 +0000135/* A helper to initialize an op error inside a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 * provided chunk, as most cause codes will be embedded inside an
137 * abort chunk.
138 */
Al Viro5bf2db02006-11-20 16:59:45 -0800139void sctp_init_cause(struct sctp_chunk *chunk, __be16 cause_code,
Wei Yongjun00f1c2d2007-08-21 15:50:01 +0800140 size_t paylen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 sctp_errhdr_t err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 __u16 len;
144
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900145 /* Cause code constants are now defined in network order. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 err.cause = cause_code;
147 len = sizeof(sctp_errhdr_t) + paylen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 err.length = htons(len);
Vlad Yasevich4a1c0102007-01-09 14:35:51 -0800149 chunk->subh.err_hdr = sctp_addto_chunk(chunk, sizeof(sctp_errhdr_t), &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Neil Horman5fa782c2010-04-28 10:30:59 +0000152/* A helper to initialize an op error inside a
153 * provided chunk, as most cause codes will be embedded inside an
154 * abort chunk. Differs from sctp_init_cause in that it won't oops
155 * if there isn't enough space in the op error chunk
156 */
Ioan Orghicidb28aaf2012-07-13 07:16:37 +0000157static int sctp_init_cause_fixed(struct sctp_chunk *chunk, __be16 cause_code,
Neil Horman5fa782c2010-04-28 10:30:59 +0000158 size_t paylen)
159{
160 sctp_errhdr_t err;
161 __u16 len;
162
163 /* Cause code constants are now defined in network order. */
164 err.cause = cause_code;
165 len = sizeof(sctp_errhdr_t) + paylen;
166 err.length = htons(len);
167
Wei Yongjun2e3219b2010-05-17 22:51:58 -0700168 if (skb_tailroom(chunk->skb) < len)
Neil Horman5fa782c2010-04-28 10:30:59 +0000169 return -ENOSPC;
170 chunk->subh.err_hdr = sctp_addto_chunk_fixed(chunk,
171 sizeof(sctp_errhdr_t),
172 &err);
173 return 0;
174}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/* 3.3.2 Initiation (INIT) (1)
176 *
177 * This chunk is used to initiate a SCTP association between two
178 * endpoints. The format of the INIT chunk is shown below:
179 *
180 * 0 1 2 3
181 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
182 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
183 * | Type = 1 | Chunk Flags | Chunk Length |
184 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
185 * | Initiate Tag |
186 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
187 * | Advertised Receiver Window Credit (a_rwnd) |
188 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
189 * | Number of Outbound Streams | Number of Inbound Streams |
190 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
191 * | Initial TSN |
192 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
193 * \ \
194 * / Optional/Variable-Length Parameters /
195 * \ \
196 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
197 *
198 *
199 * The INIT chunk contains the following parameters. Unless otherwise
200 * noted, each parameter MUST only be included once in the INIT chunk.
201 *
202 * Fixed Parameters Status
203 * ----------------------------------------------
204 * Initiate Tag Mandatory
205 * Advertised Receiver Window Credit Mandatory
206 * Number of Outbound Streams Mandatory
207 * Number of Inbound Streams Mandatory
208 * Initial TSN Mandatory
209 *
210 * Variable Parameters Status Type Value
211 * -------------------------------------------------------------
212 * IPv4 Address (Note 1) Optional 5
213 * IPv6 Address (Note 1) Optional 6
214 * Cookie Preservative Optional 9
215 * Reserved for ECN Capable (Note 2) Optional 32768 (0x8000)
216 * Host Name Address (Note 3) Optional 11
217 * Supported Address Types (Note 4) Optional 12
218 */
219struct sctp_chunk *sctp_make_init(const struct sctp_association *asoc,
220 const struct sctp_bind_addr *bp,
Al Virodd0fc662005-10-07 07:46:04 +0100221 gfp_t gfp, int vparam_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000223 struct net *net = sock_net(asoc->base.sk);
Vlad Yasevichb14878c2014-04-17 17:26:50 +0200224 struct sctp_endpoint *ep = asoc->ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 sctp_inithdr_t init;
226 union sctp_params addrs;
227 size_t chunksize;
228 struct sctp_chunk *retval = NULL;
229 int num_types, addrs_len = 0;
230 struct sctp_sock *sp;
231 sctp_supported_addrs_param_t sat;
Al Viro3dbe8652006-11-20 17:25:49 -0800232 __be16 types[2];
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800233 sctp_adaptation_ind_param_t aiparam;
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700234 sctp_supported_ext_param_t ext_param;
235 int num_ext = 0;
236 __u8 extensions[3];
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700237 sctp_paramhdr_t *auth_chunks = NULL,
238 *auth_hmacs = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 /* RFC 2960 3.3.2 Initiation (INIT) (1)
241 *
242 * Note 1: The INIT chunks can contain multiple addresses that
243 * can be IPv4 and/or IPv6 in any combination.
244 */
245 retval = NULL;
246
247 /* Convert the provided bind address list to raw format. */
248 addrs = sctp_bind_addrs_to_raw(bp, &addrs_len, gfp);
249
250 init.init_tag = htonl(asoc->c.my_vtag);
251 init.a_rwnd = htonl(asoc->rwnd);
252 init.num_outbound_streams = htons(asoc->c.sinit_num_ostreams);
253 init.num_inbound_streams = htons(asoc->c.sinit_max_instreams);
254 init.initial_tsn = htonl(asoc->c.initial_tsn);
255
256 /* How many address types are needed? */
257 sp = sctp_sk(asoc->base.sk);
258 num_types = sp->pf->supported_addrs(sp, types);
259
Wei Yongjuna8170c32010-04-28 08:47:21 +0000260 chunksize = sizeof(init) + addrs_len;
261 chunksize += WORD_ROUND(SCTP_SAT_LEN(num_types));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 chunksize += sizeof(ecap_param);
Vlad Yasevich8ee4be32007-11-29 08:50:35 -0500263
Xin Long28aa4c22016-07-09 19:47:40 +0800264 if (asoc->prsctp_enable)
Vlad Yasevich036b5792008-01-07 00:28:16 -0800265 chunksize += sizeof(prsctp_param);
266
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700267 /* ADDIP: Section 4.2.7:
268 * An implementation supporting this extension [ADDIP] MUST list
269 * the ASCONF,the ASCONF-ACK, and the AUTH chunks in its INIT and
270 * INIT-ACK parameters.
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700271 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000272 if (net->sctp.addip_enable) {
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700273 extensions[num_ext] = SCTP_CID_ASCONF;
274 extensions[num_ext+1] = SCTP_CID_ASCONF_ACK;
275 num_ext += 2;
276 }
277
malc6fc791e2009-03-12 09:49:20 +0000278 if (sp->adaptation_ind)
279 chunksize += sizeof(aiparam);
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 chunksize += vparam_len;
282
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700283 /* Account for AUTH related parameters */
Vlad Yasevichb14878c2014-04-17 17:26:50 +0200284 if (ep->auth_enable) {
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700285 /* Add random parameter length*/
286 chunksize += sizeof(asoc->c.auth_random);
287
288 /* Add HMACS parameter length if any were defined */
289 auth_hmacs = (sctp_paramhdr_t *)asoc->c.auth_hmacs;
290 if (auth_hmacs->length)
Wei Yongjuna8170c32010-04-28 08:47:21 +0000291 chunksize += WORD_ROUND(ntohs(auth_hmacs->length));
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700292 else
293 auth_hmacs = NULL;
294
295 /* Add CHUNKS parameter length */
296 auth_chunks = (sctp_paramhdr_t *)asoc->c.auth_chunks;
297 if (auth_chunks->length)
Wei Yongjuna8170c32010-04-28 08:47:21 +0000298 chunksize += WORD_ROUND(ntohs(auth_chunks->length));
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700299 else
Vlad Yasevich9baffaa2007-11-29 08:44:34 -0500300 auth_chunks = NULL;
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700301
302 extensions[num_ext] = SCTP_CID_AUTH;
303 num_ext += 1;
304 }
305
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700306 /* If we have any extensions to report, account for that */
307 if (num_ext)
Wei Yongjuna8170c32010-04-28 08:47:21 +0000308 chunksize += WORD_ROUND(sizeof(sctp_supported_ext_param_t) +
309 num_ext);
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 /* RFC 2960 3.3.2 Initiation (INIT) (1)
312 *
313 * Note 3: An INIT chunk MUST NOT contain more than one Host
314 * Name address parameter. Moreover, the sender of the INIT
315 * MUST NOT combine any other address types with the Host Name
316 * address in the INIT. The receiver of INIT MUST ignore any
317 * other address types if the Host Name address parameter is
318 * present in the received INIT chunk.
319 *
320 * PLEASE DO NOT FIXME [This version does not support Host Name.]
321 */
322
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300323 retval = sctp_make_control(asoc, SCTP_CID_INIT, 0, chunksize, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if (!retval)
325 goto nodata;
326
327 retval->subh.init_hdr =
328 sctp_addto_chunk(retval, sizeof(init), &init);
329 retval->param_hdr.v =
330 sctp_addto_chunk(retval, addrs_len, addrs.v);
331
332 /* RFC 2960 3.3.2 Initiation (INIT) (1)
333 *
334 * Note 4: This parameter, when present, specifies all the
335 * address types the sending endpoint can support. The absence
336 * of this parameter indicates that the sending endpoint can
337 * support any address type.
338 */
339 sat.param_hdr.type = SCTP_PARAM_SUPPORTED_ADDRESS_TYPES;
340 sat.param_hdr.length = htons(SCTP_SAT_LEN(num_types));
341 sctp_addto_chunk(retval, sizeof(sat), &sat);
342 sctp_addto_chunk(retval, num_types * sizeof(__u16), &types);
343
344 sctp_addto_chunk(retval, sizeof(ecap_param), &ecap_param);
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700345
Joe Perches7aa1b542007-12-20 14:03:52 -0800346 /* Add the supported extensions parameter. Be nice and add this
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700347 * fist before addiding the parameters for the extensions themselves
348 */
349 if (num_ext) {
350 ext_param.param_hdr.type = SCTP_PARAM_SUPPORTED_EXT;
351 ext_param.param_hdr.length =
352 htons(sizeof(sctp_supported_ext_param_t) + num_ext);
353 sctp_addto_chunk(retval, sizeof(sctp_supported_ext_param_t),
354 &ext_param);
Vlad Yasevich8ee4be32007-11-29 08:50:35 -0500355 sctp_addto_param(retval, num_ext, extensions);
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700356 }
357
Xin Long28aa4c22016-07-09 19:47:40 +0800358 if (asoc->prsctp_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 sctp_addto_chunk(retval, sizeof(prsctp_param), &prsctp_param);
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700360
malc6fc791e2009-03-12 09:49:20 +0000361 if (sp->adaptation_ind) {
362 aiparam.param_hdr.type = SCTP_PARAM_ADAPTATION_LAYER_IND;
363 aiparam.param_hdr.length = htons(sizeof(aiparam));
364 aiparam.adaptation_ind = htonl(sp->adaptation_ind);
365 sctp_addto_chunk(retval, sizeof(aiparam), &aiparam);
366 }
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700367
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700368 /* Add SCTP-AUTH chunks to the parameter list */
Vlad Yasevichb14878c2014-04-17 17:26:50 +0200369 if (ep->auth_enable) {
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700370 sctp_addto_chunk(retval, sizeof(asoc->c.auth_random),
371 asoc->c.auth_random);
372 if (auth_hmacs)
373 sctp_addto_chunk(retval, ntohs(auth_hmacs->length),
374 auth_hmacs);
375 if (auth_chunks)
376 sctp_addto_chunk(retval, ntohs(auth_chunks->length),
377 auth_chunks);
378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379nodata:
Jesper Juhla51482b2005-11-08 09:41:34 -0800380 kfree(addrs.v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return retval;
382}
383
384struct sctp_chunk *sctp_make_init_ack(const struct sctp_association *asoc,
385 const struct sctp_chunk *chunk,
Al Virodd0fc662005-10-07 07:46:04 +0100386 gfp_t gfp, int unkparam_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
388 sctp_inithdr_t initack;
389 struct sctp_chunk *retval;
390 union sctp_params addrs;
malc6fc791e2009-03-12 09:49:20 +0000391 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 int addrs_len;
393 sctp_cookie_param_t *cookie;
394 int cookie_len;
395 size_t chunksize;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800396 sctp_adaptation_ind_param_t aiparam;
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700397 sctp_supported_ext_param_t ext_param;
398 int num_ext = 0;
399 __u8 extensions[3];
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700400 sctp_paramhdr_t *auth_chunks = NULL,
401 *auth_hmacs = NULL,
402 *auth_random = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 retval = NULL;
405
406 /* Note: there may be no addresses to embed. */
407 addrs = sctp_bind_addrs_to_raw(&asoc->base.bind_addr, &addrs_len, gfp);
408
409 initack.init_tag = htonl(asoc->c.my_vtag);
410 initack.a_rwnd = htonl(asoc->rwnd);
411 initack.num_outbound_streams = htons(asoc->c.sinit_num_ostreams);
412 initack.num_inbound_streams = htons(asoc->c.sinit_max_instreams);
413 initack.initial_tsn = htonl(asoc->c.initial_tsn);
414
415 /* FIXME: We really ought to build the cookie right
416 * into the packet instead of allocating more fresh memory.
417 */
418 cookie = sctp_pack_cookie(asoc->ep, asoc, chunk, &cookie_len,
419 addrs.v, addrs_len);
420 if (!cookie)
421 goto nomem_cookie;
422
423 /* Calculate the total size of allocation, include the reserved
424 * space for reporting unknown parameters if it is specified.
425 */
malc6fc791e2009-03-12 09:49:20 +0000426 sp = sctp_sk(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 chunksize = sizeof(initack) + addrs_len + cookie_len + unkparam_len;
428
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900429 /* Tell peer that we'll do ECN only if peer advertised such cap. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (asoc->peer.ecn_capable)
431 chunksize += sizeof(ecap_param);
432
Wei Yongjun5ffad5a2009-03-12 09:49:18 +0000433 if (asoc->peer.prsctp_capable)
Vlad Yasevich036b5792008-01-07 00:28:16 -0800434 chunksize += sizeof(prsctp_param);
435
Wei Yongjun5ffad5a2009-03-12 09:49:18 +0000436 if (asoc->peer.asconf_capable) {
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700437 extensions[num_ext] = SCTP_CID_ASCONF;
438 extensions[num_ext+1] = SCTP_CID_ASCONF_ACK;
439 num_ext += 2;
440 }
441
malc6fc791e2009-03-12 09:49:20 +0000442 if (sp->adaptation_ind)
443 chunksize += sizeof(aiparam);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700445 if (asoc->peer.auth_capable) {
446 auth_random = (sctp_paramhdr_t *)asoc->c.auth_random;
447 chunksize += ntohs(auth_random->length);
448
449 auth_hmacs = (sctp_paramhdr_t *)asoc->c.auth_hmacs;
450 if (auth_hmacs->length)
Wei Yongjuna8170c32010-04-28 08:47:21 +0000451 chunksize += WORD_ROUND(ntohs(auth_hmacs->length));
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700452 else
453 auth_hmacs = NULL;
454
455 auth_chunks = (sctp_paramhdr_t *)asoc->c.auth_chunks;
456 if (auth_chunks->length)
Wei Yongjuna8170c32010-04-28 08:47:21 +0000457 chunksize += WORD_ROUND(ntohs(auth_chunks->length));
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700458 else
459 auth_chunks = NULL;
460
461 extensions[num_ext] = SCTP_CID_AUTH;
462 num_ext += 1;
463 }
464
Vlad Yasevich8ee4be32007-11-29 08:50:35 -0500465 if (num_ext)
Wei Yongjuna8170c32010-04-28 08:47:21 +0000466 chunksize += WORD_ROUND(sizeof(sctp_supported_ext_param_t) +
467 num_ext);
Vlad Yasevich8ee4be32007-11-29 08:50:35 -0500468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 /* Now allocate and fill out the chunk. */
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300470 retval = sctp_make_control(asoc, SCTP_CID_INIT_ACK, 0, chunksize, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (!retval)
472 goto nomem_chunk;
473
Dan Carpenterb99a4d52010-04-30 22:41:09 -0400474 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
475 *
476 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
477 * HEARTBEAT ACK, * etc.) to the same destination transport
478 * address from which it received the DATA or control chunk
479 * to which it is replying.
480 *
481 * [INIT ACK back to where the INIT came from.]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 */
483 retval->transport = chunk->transport;
Dan Carpenterb99a4d52010-04-30 22:41:09 -0400484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 retval->subh.init_hdr =
486 sctp_addto_chunk(retval, sizeof(initack), &initack);
487 retval->param_hdr.v = sctp_addto_chunk(retval, addrs_len, addrs.v);
488 sctp_addto_chunk(retval, cookie_len, cookie);
489 if (asoc->peer.ecn_capable)
490 sctp_addto_chunk(retval, sizeof(ecap_param), &ecap_param);
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700491 if (num_ext) {
492 ext_param.param_hdr.type = SCTP_PARAM_SUPPORTED_EXT;
493 ext_param.param_hdr.length =
494 htons(sizeof(sctp_supported_ext_param_t) + num_ext);
495 sctp_addto_chunk(retval, sizeof(sctp_supported_ext_param_t),
496 &ext_param);
Vlad Yasevich8ee4be32007-11-29 08:50:35 -0500497 sctp_addto_param(retval, num_ext, extensions);
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (asoc->peer.prsctp_capable)
500 sctp_addto_chunk(retval, sizeof(prsctp_param), &prsctp_param);
501
malc6fc791e2009-03-12 09:49:20 +0000502 if (sp->adaptation_ind) {
503 aiparam.param_hdr.type = SCTP_PARAM_ADAPTATION_LAYER_IND;
504 aiparam.param_hdr.length = htons(sizeof(aiparam));
505 aiparam.adaptation_ind = htonl(sp->adaptation_ind);
506 sctp_addto_chunk(retval, sizeof(aiparam), &aiparam);
507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700509 if (asoc->peer.auth_capable) {
510 sctp_addto_chunk(retval, ntohs(auth_random->length),
511 auth_random);
512 if (auth_hmacs)
513 sctp_addto_chunk(retval, ntohs(auth_hmacs->length),
514 auth_hmacs);
515 if (auth_chunks)
516 sctp_addto_chunk(retval, ntohs(auth_chunks->length),
517 auth_chunks);
518 }
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 /* We need to remove the const qualifier at this point. */
521 retval->asoc = (struct sctp_association *) asoc;
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523nomem_chunk:
524 kfree(cookie);
525nomem_cookie:
Jesper Juhla51482b2005-11-08 09:41:34 -0800526 kfree(addrs.v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return retval;
528}
529
530/* 3.3.11 Cookie Echo (COOKIE ECHO) (10):
531 *
532 * This chunk is used only during the initialization of an association.
533 * It is sent by the initiator of an association to its peer to complete
534 * the initialization process. This chunk MUST precede any DATA chunk
535 * sent within the association, but MAY be bundled with one or more DATA
536 * chunks in the same packet.
537 *
538 * 0 1 2 3
539 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
540 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
541 * | Type = 10 |Chunk Flags | Length |
542 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
543 * / Cookie /
544 * \ \
545 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
546 *
547 * Chunk Flags: 8 bit
548 *
549 * Set to zero on transmit and ignored on receipt.
550 *
551 * Length: 16 bits (unsigned integer)
552 *
553 * Set to the size of the chunk in bytes, including the 4 bytes of
554 * the chunk header and the size of the Cookie.
555 *
556 * Cookie: variable size
557 *
558 * This field must contain the exact cookie received in the
559 * State Cookie parameter from the previous INIT ACK.
560 *
561 * An implementation SHOULD make the cookie as small as possible
562 * to insure interoperability.
563 */
564struct sctp_chunk *sctp_make_cookie_echo(const struct sctp_association *asoc,
565 const struct sctp_chunk *chunk)
566{
567 struct sctp_chunk *retval;
568 void *cookie;
569 int cookie_len;
570
571 cookie = asoc->peer.cookie;
572 cookie_len = asoc->peer.cookie_len;
573
574 /* Build a cookie echo chunk. */
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300575 retval = sctp_make_control(asoc, SCTP_CID_COOKIE_ECHO, 0,
576 cookie_len, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (!retval)
578 goto nodata;
579 retval->subh.cookie_hdr =
580 sctp_addto_chunk(retval, cookie_len, cookie);
581
582 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
583 *
584 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
585 * HEARTBEAT ACK, * etc.) to the same destination transport
586 * address from which it * received the DATA or control chunk
587 * to which it is replying.
588 *
589 * [COOKIE ECHO back to where the INIT ACK came from.]
590 */
591 if (chunk)
592 retval->transport = chunk->transport;
593
594nodata:
595 return retval;
596}
597
598/* 3.3.12 Cookie Acknowledgement (COOKIE ACK) (11):
599 *
600 * This chunk is used only during the initialization of an
601 * association. It is used to acknowledge the receipt of a COOKIE
602 * ECHO chunk. This chunk MUST precede any DATA or SACK chunk sent
603 * within the association, but MAY be bundled with one or more DATA
604 * chunks or SACK chunk in the same SCTP packet.
605 *
606 * 0 1 2 3
607 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
608 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
609 * | Type = 11 |Chunk Flags | Length = 4 |
610 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
611 *
612 * Chunk Flags: 8 bits
613 *
614 * Set to zero on transmit and ignored on receipt.
615 */
616struct sctp_chunk *sctp_make_cookie_ack(const struct sctp_association *asoc,
617 const struct sctp_chunk *chunk)
618{
619 struct sctp_chunk *retval;
620
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300621 retval = sctp_make_control(asoc, SCTP_CID_COOKIE_ACK, 0, 0, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
624 *
625 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
626 * HEARTBEAT ACK, * etc.) to the same destination transport
627 * address from which it * received the DATA or control chunk
628 * to which it is replying.
629 *
630 * [COOKIE ACK back to where the COOKIE ECHO came from.]
631 */
632 if (retval && chunk)
633 retval->transport = chunk->transport;
634
635 return retval;
636}
637
638/*
639 * Appendix A: Explicit Congestion Notification:
640 * CWR:
641 *
642 * RFC 2481 details a specific bit for a sender to send in the header of
643 * its next outbound TCP segment to indicate to its peer that it has
644 * reduced its congestion window. This is termed the CWR bit. For
645 * SCTP the same indication is made by including the CWR chunk.
646 * This chunk contains one data element, i.e. the TSN number that
647 * was sent in the ECNE chunk. This element represents the lowest
648 * TSN number in the datagram that was originally marked with the
649 * CE bit.
650 *
651 * 0 1 2 3
652 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
653 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
654 * | Chunk Type=13 | Flags=00000000| Chunk Length = 8 |
655 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
656 * | Lowest TSN Number |
657 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
658 *
659 * Note: The CWR is considered a Control chunk.
660 */
661struct sctp_chunk *sctp_make_cwr(const struct sctp_association *asoc,
662 const __u32 lowest_tsn,
663 const struct sctp_chunk *chunk)
664{
665 struct sctp_chunk *retval;
666 sctp_cwrhdr_t cwr;
667
668 cwr.lowest_tsn = htonl(lowest_tsn);
Vlad Yasevich072017b2013-08-09 22:05:36 -0400669 retval = sctp_make_control(asoc, SCTP_CID_ECN_CWR, 0,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300670 sizeof(sctp_cwrhdr_t), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 if (!retval)
673 goto nodata;
674
675 retval->subh.ecn_cwr_hdr =
676 sctp_addto_chunk(retval, sizeof(cwr), &cwr);
677
678 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
679 *
680 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
681 * HEARTBEAT ACK, * etc.) to the same destination transport
682 * address from which it * received the DATA or control chunk
683 * to which it is replying.
684 *
685 * [Report a reduced congestion window back to where the ECNE
686 * came from.]
687 */
688 if (chunk)
689 retval->transport = chunk->transport;
690
691nodata:
692 return retval;
693}
694
695/* Make an ECNE chunk. This is a congestion experienced report. */
696struct sctp_chunk *sctp_make_ecne(const struct sctp_association *asoc,
697 const __u32 lowest_tsn)
698{
699 struct sctp_chunk *retval;
700 sctp_ecnehdr_t ecne;
701
702 ecne.lowest_tsn = htonl(lowest_tsn);
Vlad Yasevich072017b2013-08-09 22:05:36 -0400703 retval = sctp_make_control(asoc, SCTP_CID_ECN_ECNE, 0,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300704 sizeof(sctp_ecnehdr_t), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (!retval)
706 goto nodata;
707 retval->subh.ecne_hdr =
708 sctp_addto_chunk(retval, sizeof(ecne), &ecne);
709
710nodata:
711 return retval;
712}
713
Xin Longa6c2f792016-07-09 19:47:43 +0800714static void sctp_set_prsctp_policy(struct sctp_chunk *chunk,
715 const struct sctp_sndrcvinfo *sinfo)
716{
717 if (!chunk->asoc->prsctp_enable)
718 return;
719
720 if (SCTP_PR_TTL_ENABLED(sinfo->sinfo_flags))
721 chunk->prsctp_param =
722 jiffies + msecs_to_jiffies(sinfo->sinfo_timetolive);
Xin Long01aadb32016-07-09 19:47:44 +0800723 else if (SCTP_PR_RTX_ENABLED(sinfo->sinfo_flags))
724 chunk->prsctp_param = sinfo->sinfo_timetolive;
Xin Longa6c2f792016-07-09 19:47:43 +0800725}
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727/* Make a DATA chunk for the given association from the provided
728 * parameters. However, do not populate the data payload.
729 */
730struct sctp_chunk *sctp_make_datafrag_empty(struct sctp_association *asoc,
731 const struct sctp_sndrcvinfo *sinfo,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300732 int data_len, __u8 flags, __u16 ssn,
733 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
735 struct sctp_chunk *retval;
736 struct sctp_datahdr dp;
737 int chunk_len;
738
739 /* We assign the TSN as LATE as possible, not here when
740 * creating the chunk.
741 */
742 dp.tsn = 0;
743 dp.stream = htons(sinfo->sinfo_stream);
744 dp.ppid = sinfo->sinfo_ppid;
745
746 /* Set the flags for an unordered send. */
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -0700747 if (sinfo->sinfo_flags & SCTP_UNORDERED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 flags |= SCTP_DATA_UNORDERED;
749 dp.ssn = 0;
750 } else
751 dp.ssn = htons(ssn);
752
753 chunk_len = sizeof(dp) + data_len;
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300754 retval = sctp_make_data(asoc, flags, chunk_len, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (!retval)
756 goto nodata;
757
758 retval->subh.data_hdr = sctp_addto_chunk(retval, sizeof(dp), &dp);
759 memcpy(&retval->sinfo, sinfo, sizeof(struct sctp_sndrcvinfo));
Xin Longa6c2f792016-07-09 19:47:43 +0800760 sctp_set_prsctp_policy(retval, sinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762nodata:
763 return retval;
764}
765
766/* Create a selective ackowledgement (SACK) for the given
767 * association. This reports on which TSN's we've seen to date,
768 * including duplicates and gaps.
769 */
770struct sctp_chunk *sctp_make_sack(const struct sctp_association *asoc)
771{
772 struct sctp_chunk *retval;
773 struct sctp_sackhdr sack;
774 int len;
775 __u32 ctsn;
776 __u16 num_gabs, num_dup_tsns;
Neil Horman42448542012-06-30 03:04:26 +0000777 struct sctp_association *aptr = (struct sctp_association *)asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 struct sctp_tsnmap *map = (struct sctp_tsnmap *)&asoc->peer.tsn_map;
Vlad Yasevich02015182008-10-08 14:19:01 -0700779 struct sctp_gap_ack_block gabs[SCTP_MAX_GABS];
Neil Horman42448542012-06-30 03:04:26 +0000780 struct sctp_transport *trans;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Vlad Yasevich02015182008-10-08 14:19:01 -0700782 memset(gabs, 0, sizeof(gabs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 ctsn = sctp_tsnmap_get_ctsn(map);
Daniel Borkmannbb333812013-06-28 19:49:40 +0200784
785 pr_debug("%s: sackCTSNAck sent:0x%x\n", __func__, ctsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 /* How much room is needed in the chunk? */
Vlad Yasevich02015182008-10-08 14:19:01 -0700788 num_gabs = sctp_tsnmap_num_gabs(map, gabs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 num_dup_tsns = sctp_tsnmap_num_dups(map);
790
791 /* Initialize the SACK header. */
792 sack.cum_tsn_ack = htonl(ctsn);
793 sack.a_rwnd = htonl(asoc->a_rwnd);
794 sack.num_gap_ack_blocks = htons(num_gabs);
795 sack.num_dup_tsns = htons(num_dup_tsns);
796
797 len = sizeof(sack)
798 + sizeof(struct sctp_gap_ack_block) * num_gabs
799 + sizeof(__u32) * num_dup_tsns;
800
801 /* Create the chunk. */
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300802 retval = sctp_make_control(asoc, SCTP_CID_SACK, 0, len, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (!retval)
804 goto nodata;
805
806 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
807 *
808 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
809 * HEARTBEAT ACK, etc.) to the same destination transport
810 * address from which it received the DATA or control chunk to
811 * which it is replying. This rule should also be followed if
812 * the endpoint is bundling DATA chunks together with the
813 * reply chunk.
814 *
815 * However, when acknowledging multiple DATA chunks received
816 * in packets from different source addresses in a single
817 * SACK, the SACK chunk may be transmitted to one of the
818 * destination transport addresses from which the DATA or
819 * control chunks being acknowledged were received.
820 *
821 * [BUG: We do not implement the following paragraph.
822 * Perhaps we should remember the last transport we used for a
823 * SACK and avoid that (if possible) if we have seen any
824 * duplicates. --piggy]
825 *
826 * When a receiver of a duplicate DATA chunk sends a SACK to a
827 * multi- homed endpoint it MAY be beneficial to vary the
828 * destination address and not use the source address of the
829 * DATA chunk. The reason being that receiving a duplicate
830 * from a multi-homed endpoint might indicate that the return
831 * path (as specified in the source address of the DATA chunk)
832 * for the SACK is broken.
833 *
834 * [Send to the address from which we last received a DATA chunk.]
835 */
836 retval->transport = asoc->peer.last_data_from;
837
838 retval->subh.sack_hdr =
839 sctp_addto_chunk(retval, sizeof(sack), &sack);
840
841 /* Add the gap ack block information. */
842 if (num_gabs)
843 sctp_addto_chunk(retval, sizeof(__u32) * num_gabs,
Vlad Yasevich02015182008-10-08 14:19:01 -0700844 gabs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 /* Add the duplicate TSN information. */
Michele Baldessari196d6752012-12-01 04:49:42 +0000847 if (num_dup_tsns) {
848 aptr->stats.idupchunks += num_dup_tsns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 sctp_addto_chunk(retval, sizeof(__u32) * num_dup_tsns,
850 sctp_tsnmap_get_dups(map));
Michele Baldessari196d6752012-12-01 04:49:42 +0000851 }
Neil Horman42448542012-06-30 03:04:26 +0000852 /* Once we have a sack generated, check to see what our sack
853 * generation is, if its 0, reset the transports to 0, and reset
854 * the association generation to 1
855 *
856 * The idea is that zero is never used as a valid generation for the
857 * association so no transport will match after a wrap event like this,
858 * Until the next sack
859 */
860 if (++aptr->peer.sack_generation == 0) {
861 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
862 transports)
863 trans->sack_generation = 0;
864 aptr->peer.sack_generation = 1;
865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866nodata:
867 return retval;
868}
869
870/* Make a SHUTDOWN chunk. */
871struct sctp_chunk *sctp_make_shutdown(const struct sctp_association *asoc,
872 const struct sctp_chunk *chunk)
873{
874 struct sctp_chunk *retval;
875 sctp_shutdownhdr_t shut;
876 __u32 ctsn;
877
878 ctsn = sctp_tsnmap_get_ctsn(&asoc->peer.tsn_map);
879 shut.cum_tsn_ack = htonl(ctsn);
880
Vlad Yasevich072017b2013-08-09 22:05:36 -0400881 retval = sctp_make_control(asoc, SCTP_CID_SHUTDOWN, 0,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300882 sizeof(sctp_shutdownhdr_t), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if (!retval)
884 goto nodata;
885
886 retval->subh.shutdown_hdr =
887 sctp_addto_chunk(retval, sizeof(shut), &shut);
888
889 if (chunk)
890 retval->transport = chunk->transport;
891nodata:
892 return retval;
893}
894
895struct sctp_chunk *sctp_make_shutdown_ack(const struct sctp_association *asoc,
896 const struct sctp_chunk *chunk)
897{
898 struct sctp_chunk *retval;
899
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300900 retval = sctp_make_control(asoc, SCTP_CID_SHUTDOWN_ACK, 0, 0,
901 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
904 *
905 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
906 * HEARTBEAT ACK, * etc.) to the same destination transport
907 * address from which it * received the DATA or control chunk
908 * to which it is replying.
909 *
910 * [ACK back to where the SHUTDOWN came from.]
911 */
912 if (retval && chunk)
913 retval->transport = chunk->transport;
914
915 return retval;
916}
917
918struct sctp_chunk *sctp_make_shutdown_complete(
919 const struct sctp_association *asoc,
920 const struct sctp_chunk *chunk)
921{
922 struct sctp_chunk *retval;
923 __u8 flags = 0;
924
Jerome Forissier047a2422005-04-28 11:58:43 -0700925 /* Set the T-bit if we have no association (vtag will be
926 * reflected)
927 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 flags |= asoc ? 0 : SCTP_CHUNK_FLAG_T;
929
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300930 retval = sctp_make_control(asoc, SCTP_CID_SHUTDOWN_COMPLETE, flags,
931 0, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
934 *
935 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
936 * HEARTBEAT ACK, * etc.) to the same destination transport
937 * address from which it * received the DATA or control chunk
938 * to which it is replying.
939 *
940 * [Report SHUTDOWN COMPLETE back to where the SHUTDOWN ACK
941 * came from.]
942 */
943 if (retval && chunk)
944 retval->transport = chunk->transport;
945
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900946 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
949/* Create an ABORT. Note that we set the T bit if we have no
Jerome Forissier047a2422005-04-28 11:58:43 -0700950 * association, except when responding to an INIT (sctpimpguide 2.41).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 */
952struct sctp_chunk *sctp_make_abort(const struct sctp_association *asoc,
953 const struct sctp_chunk *chunk,
954 const size_t hint)
955{
956 struct sctp_chunk *retval;
957 __u8 flags = 0;
958
Jerome Forissier047a2422005-04-28 11:58:43 -0700959 /* Set the T-bit if we have no association and 'chunk' is not
960 * an INIT (vtag will be reflected).
961 */
962 if (!asoc) {
963 if (chunk && chunk->chunk_hdr &&
964 chunk->chunk_hdr->type == SCTP_CID_INIT)
965 flags = 0;
966 else
967 flags = SCTP_CHUNK_FLAG_T;
968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300970 retval = sctp_make_control(asoc, SCTP_CID_ABORT, flags, hint,
971 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
974 *
975 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
976 * HEARTBEAT ACK, * etc.) to the same destination transport
977 * address from which it * received the DATA or control chunk
978 * to which it is replying.
979 *
980 * [ABORT back to where the offender came from.]
981 */
982 if (retval && chunk)
983 retval->transport = chunk->transport;
984
985 return retval;
986}
987
988/* Helper to create ABORT with a NO_USER_DATA error. */
989struct sctp_chunk *sctp_make_abort_no_data(
990 const struct sctp_association *asoc,
991 const struct sctp_chunk *chunk, __u32 tsn)
992{
993 struct sctp_chunk *retval;
Al Viro9f81bcd2006-11-20 17:26:34 -0800994 __be32 payload;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 retval = sctp_make_abort(asoc, chunk, sizeof(sctp_errhdr_t)
997 + sizeof(tsn));
998
999 if (!retval)
1000 goto no_mem;
1001
1002 /* Put the tsn back into network byte order. */
1003 payload = htonl(tsn);
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001004 sctp_init_cause(retval, SCTP_ERROR_NO_DATA, sizeof(payload));
1005 sctp_addto_chunk(retval, sizeof(payload), (const void *)&payload);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
1008 *
1009 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
1010 * HEARTBEAT ACK, * etc.) to the same destination transport
1011 * address from which it * received the DATA or control chunk
1012 * to which it is replying.
1013 *
1014 * [ABORT back to where the offender came from.]
1015 */
1016 if (chunk)
1017 retval->transport = chunk->transport;
1018
1019no_mem:
1020 return retval;
1021}
1022
1023/* Helper to create ABORT with a SCTP_ERROR_USER_ABORT error. */
1024struct sctp_chunk *sctp_make_abort_user(const struct sctp_association *asoc,
Al Viro6ce8e9c2014-04-06 21:25:44 -04001025 struct msghdr *msg,
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001026 size_t paylen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027{
1028 struct sctp_chunk *retval;
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001029 void *payload = NULL;
1030 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001032 retval = sctp_make_abort(asoc, NULL, sizeof(sctp_errhdr_t) + paylen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 if (!retval)
1034 goto err_chunk;
1035
1036 if (paylen) {
1037 /* Put the msg_iov together into payload. */
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001038 payload = kmalloc(paylen, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 if (!payload)
1040 goto err_payload;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Al Viro6ce8e9c2014-04-06 21:25:44 -04001042 err = memcpy_from_msg(payload, msg, paylen);
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001043 if (err < 0)
1044 goto err_copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
1046
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001047 sctp_init_cause(retval, SCTP_ERROR_USER_ABORT, paylen);
1048 sctp_addto_chunk(retval, paylen, payload);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 if (paylen)
1051 kfree(payload);
1052
1053 return retval;
1054
1055err_copy:
1056 kfree(payload);
1057err_payload:
1058 sctp_chunk_free(retval);
1059 retval = NULL;
1060err_chunk:
1061 return retval;
1062}
1063
Adrian Bunk5c94bf82007-09-12 15:16:21 +02001064/* Append bytes to the end of a parameter. Will panic if chunk is not big
1065 * enough.
1066 */
1067static void *sctp_addto_param(struct sctp_chunk *chunk, int len,
1068 const void *data)
1069{
1070 void *target;
1071 int chunklen = ntohs(chunk->chunk_hdr->length);
1072
1073 target = skb_put(chunk->skb, len);
1074
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05001075 if (data)
1076 memcpy(target, data, len);
1077 else
1078 memset(target, 0, len);
Adrian Bunk5c94bf82007-09-12 15:16:21 +02001079
1080 /* Adjust the chunk length field. */
1081 chunk->chunk_hdr->length = htons(chunklen + len);
1082 chunk->chunk_end = skb_tail_pointer(chunk->skb);
1083
1084 return target;
1085}
1086
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001087/* Make an ABORT chunk with a PROTOCOL VIOLATION cause code. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088struct sctp_chunk *sctp_make_abort_violation(
1089 const struct sctp_association *asoc,
1090 const struct sctp_chunk *chunk,
1091 const __u8 *payload,
1092 const size_t paylen)
1093{
1094 struct sctp_chunk *retval;
1095 struct sctp_paramhdr phdr;
1096
1097 retval = sctp_make_abort(asoc, chunk, sizeof(sctp_errhdr_t) + paylen
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001098 + sizeof(sctp_paramhdr_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 if (!retval)
1100 goto end;
1101
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001102 sctp_init_cause(retval, SCTP_ERROR_PROTO_VIOLATION, paylen
1103 + sizeof(sctp_paramhdr_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105 phdr.type = htons(chunk->chunk_hdr->type);
1106 phdr.length = chunk->chunk_hdr->length;
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001107 sctp_addto_chunk(retval, paylen, payload);
1108 sctp_addto_param(retval, sizeof(sctp_paramhdr_t), &phdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110end:
1111 return retval;
1112}
1113
Wei Yongjunba016672008-09-30 05:32:24 -07001114struct sctp_chunk *sctp_make_violation_paramlen(
1115 const struct sctp_association *asoc,
1116 const struct sctp_chunk *chunk,
1117 struct sctp_paramhdr *param)
1118{
1119 struct sctp_chunk *retval;
1120 static const char error[] = "The following parameter had invalid length:";
1121 size_t payload_len = sizeof(error) + sizeof(sctp_errhdr_t) +
1122 sizeof(sctp_paramhdr_t);
1123
1124 retval = sctp_make_abort(asoc, chunk, payload_len);
1125 if (!retval)
1126 goto nodata;
1127
1128 sctp_init_cause(retval, SCTP_ERROR_PROTO_VIOLATION,
1129 sizeof(error) + sizeof(sctp_paramhdr_t));
1130 sctp_addto_chunk(retval, sizeof(error), error);
1131 sctp_addto_param(retval, sizeof(sctp_paramhdr_t), param);
1132
1133nodata:
1134 return retval;
1135}
1136
Neil Hormande4594a2012-11-20 10:14:30 +00001137struct sctp_chunk *sctp_make_violation_max_retrans(
1138 const struct sctp_association *asoc,
1139 const struct sctp_chunk *chunk)
1140{
1141 struct sctp_chunk *retval;
1142 static const char error[] = "Association exceeded its max_retans count";
1143 size_t payload_len = sizeof(error) + sizeof(sctp_errhdr_t);
1144
1145 retval = sctp_make_abort(asoc, chunk, payload_len);
1146 if (!retval)
1147 goto nodata;
1148
1149 sctp_init_cause(retval, SCTP_ERROR_PROTO_VIOLATION, sizeof(error));
1150 sctp_addto_chunk(retval, sizeof(error), error);
1151
1152nodata:
1153 return retval;
1154}
1155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156/* Make a HEARTBEAT chunk. */
1157struct sctp_chunk *sctp_make_heartbeat(const struct sctp_association *asoc,
Wei Yongjun92c73af2011-04-19 21:31:47 +00001158 const struct sctp_transport *transport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
Wei Yongjun92c73af2011-04-19 21:31:47 +00001160 struct sctp_chunk *retval;
1161 sctp_sender_hb_info_t hbinfo;
1162
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001163 retval = sctp_make_control(asoc, SCTP_CID_HEARTBEAT, 0,
1164 sizeof(hbinfo), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
1166 if (!retval)
1167 goto nodata;
1168
Wei Yongjun92c73af2011-04-19 21:31:47 +00001169 hbinfo.param_hdr.type = SCTP_PARAM_HEARTBEAT_INFO;
1170 hbinfo.param_hdr.length = htons(sizeof(sctp_sender_hb_info_t));
1171 hbinfo.daddr = transport->ipaddr;
1172 hbinfo.sent_at = jiffies;
1173 hbinfo.hb_nonce = transport->hb_nonce;
1174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 /* Cast away the 'const', as this is just telling the chunk
1176 * what transport it belongs to.
1177 */
1178 retval->transport = (struct sctp_transport *) transport;
Wei Yongjun92c73af2011-04-19 21:31:47 +00001179 retval->subh.hbs_hdr = sctp_addto_chunk(retval, sizeof(hbinfo),
1180 &hbinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182nodata:
1183 return retval;
1184}
1185
1186struct sctp_chunk *sctp_make_heartbeat_ack(const struct sctp_association *asoc,
1187 const struct sctp_chunk *chunk,
1188 const void *payload, const size_t paylen)
1189{
1190 struct sctp_chunk *retval;
1191
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001192 retval = sctp_make_control(asoc, SCTP_CID_HEARTBEAT_ACK, 0, paylen,
1193 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 if (!retval)
1195 goto nodata;
1196
1197 retval->subh.hbs_hdr = sctp_addto_chunk(retval, paylen, payload);
1198
1199 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
1200 *
1201 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
1202 * HEARTBEAT ACK, * etc.) to the same destination transport
1203 * address from which it * received the DATA or control chunk
1204 * to which it is replying.
1205 *
1206 * [HBACK back to where the HEARTBEAT came from.]
1207 */
1208 if (chunk)
1209 retval->transport = chunk->transport;
1210
1211nodata:
1212 return retval;
1213}
1214
1215/* Create an Operation Error chunk with the specified space reserved.
1216 * This routine can be used for containing multiple causes in the chunk.
1217 */
1218static struct sctp_chunk *sctp_make_op_error_space(
1219 const struct sctp_association *asoc,
1220 const struct sctp_chunk *chunk,
1221 size_t size)
1222{
1223 struct sctp_chunk *retval;
1224
Vlad Yasevich072017b2013-08-09 22:05:36 -04001225 retval = sctp_make_control(asoc, SCTP_CID_ERROR, 0,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001226 sizeof(sctp_errhdr_t) + size, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 if (!retval)
1228 goto nodata;
1229
1230 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
1231 *
1232 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
1233 * HEARTBEAT ACK, etc.) to the same destination transport
1234 * address from which it received the DATA or control chunk
1235 * to which it is replying.
1236 *
1237 */
1238 if (chunk)
1239 retval->transport = chunk->transport;
1240
1241nodata:
1242 return retval;
1243}
1244
Neil Horman5fa782c2010-04-28 10:30:59 +00001245/* Create an Operation Error chunk of a fixed size,
1246 * specifically, max(asoc->pathmtu, SCTP_DEFAULT_MAXSEGMENT)
1247 * This is a helper function to allocate an error chunk for
1248 * for those invalid parameter codes in which we may not want
Jorrit Schippersd82603c2012-12-27 17:33:02 +01001249 * to report all the errors, if the incoming chunk is large
Neil Horman5fa782c2010-04-28 10:30:59 +00001250 */
1251static inline struct sctp_chunk *sctp_make_op_error_fixed(
1252 const struct sctp_association *asoc,
1253 const struct sctp_chunk *chunk)
1254{
1255 size_t size = asoc ? asoc->pathmtu : 0;
1256
1257 if (!size)
1258 size = SCTP_DEFAULT_MAXSEGMENT;
1259
1260 return sctp_make_op_error_space(asoc, chunk, size);
1261}
1262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263/* Create an Operation Error chunk. */
1264struct sctp_chunk *sctp_make_op_error(const struct sctp_association *asoc,
1265 const struct sctp_chunk *chunk,
Al Viro63706c52006-11-20 17:00:05 -08001266 __be16 cause_code, const void *payload,
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05001267 size_t paylen, size_t reserve_tail)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
1269 struct sctp_chunk *retval;
1270
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05001271 retval = sctp_make_op_error_space(asoc, chunk, paylen + reserve_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 if (!retval)
1273 goto nodata;
1274
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05001275 sctp_init_cause(retval, cause_code, paylen + reserve_tail);
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001276 sctp_addto_chunk(retval, paylen, payload);
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05001277 if (reserve_tail)
1278 sctp_addto_param(retval, reserve_tail, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280nodata:
1281 return retval;
1282}
1283
Vlad Yasevich4cd57c82007-09-16 19:32:45 -07001284struct sctp_chunk *sctp_make_auth(const struct sctp_association *asoc)
1285{
1286 struct sctp_chunk *retval;
1287 struct sctp_hmac *hmac_desc;
1288 struct sctp_authhdr auth_hdr;
1289 __u8 *hmac;
1290
1291 /* Get the first hmac that the peer told us to use */
1292 hmac_desc = sctp_auth_asoc_get_hmac(asoc);
1293 if (unlikely(!hmac_desc))
1294 return NULL;
1295
Vlad Yasevich072017b2013-08-09 22:05:36 -04001296 retval = sctp_make_control(asoc, SCTP_CID_AUTH, 0,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001297 hmac_desc->hmac_len + sizeof(sctp_authhdr_t),
1298 GFP_ATOMIC);
Vlad Yasevich4cd57c82007-09-16 19:32:45 -07001299 if (!retval)
1300 return NULL;
1301
1302 auth_hdr.hmac_id = htons(hmac_desc->hmac_id);
1303 auth_hdr.shkey_id = htons(asoc->active_key_id);
1304
1305 retval->subh.auth_hdr = sctp_addto_chunk(retval, sizeof(sctp_authhdr_t),
1306 &auth_hdr);
1307
1308 hmac = skb_put(retval->skb, hmac_desc->hmac_len);
1309 memset(hmac, 0, hmac_desc->hmac_len);
1310
1311 /* Adjust the chunk header to include the empty MAC */
1312 retval->chunk_hdr->length =
1313 htons(ntohs(retval->chunk_hdr->length) + hmac_desc->hmac_len);
1314 retval->chunk_end = skb_tail_pointer(retval->skb);
1315
1316 return retval;
1317}
1318
1319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320/********************************************************************
1321 * 2nd Level Abstractions
1322 ********************************************************************/
1323
1324/* Turn an skb into a chunk.
1325 * FIXME: Eventually move the structure directly inside the skb->cb[].
wangweidong3dc0a542013-10-26 16:06:31 +08001326 *
1327 * sctpimpguide-05.txt Section 2.8.2
1328 * M1) Each time a new DATA chunk is transmitted
1329 * set the 'TSN.Missing.Report' count for that TSN to 0. The
1330 * 'TSN.Missing.Report' count will be used to determine missing chunks
1331 * and when to fast retransmit.
1332 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 */
1334struct sctp_chunk *sctp_chunkify(struct sk_buff *skb,
1335 const struct sctp_association *asoc,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001336 struct sock *sk, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337{
1338 struct sctp_chunk *retval;
1339
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001340 retval = kmem_cache_zalloc(sctp_chunk_cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342 if (!retval)
1343 goto nodata;
Daniel Borkmannbb333812013-06-28 19:49:40 +02001344 if (!sk)
1345 pr_debug("%s: chunkifying skb:%p w/o an sk\n", __func__, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
David S. Miller79af02c2005-07-08 21:47:49 -07001347 INIT_LIST_HEAD(&retval->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 retval->skb = skb;
1349 retval->asoc = (struct sctp_association *)asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 retval->singleton = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Neil Hormanc226ef92008-07-25 12:44:09 -04001352 retval->fast_retransmit = SCTP_CAN_FRTX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 /* Polish the bead hole. */
1355 INIT_LIST_HEAD(&retval->transmitted_list);
1356 INIT_LIST_HEAD(&retval->frag_list);
1357 SCTP_DBG_OBJCNT_INC(chunk);
1358 atomic_set(&retval->refcnt, 1);
1359
1360nodata:
1361 return retval;
1362}
1363
1364/* Set chunk->source and dest based on the IP header in chunk->skb. */
1365void sctp_init_addrs(struct sctp_chunk *chunk, union sctp_addr *src,
1366 union sctp_addr *dest)
1367{
Al Virof235fca2006-11-20 17:09:01 -08001368 memcpy(&chunk->source, src, sizeof(union sctp_addr));
Al Viro16b0a032006-11-20 17:13:38 -08001369 memcpy(&chunk->dest, dest, sizeof(union sctp_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
1371
1372/* Extract the source address from a chunk. */
1373const union sctp_addr *sctp_source(const struct sctp_chunk *chunk)
1374{
1375 /* If we have a known transport, use that. */
1376 if (chunk->transport) {
Al Viro6a1e5f32006-11-20 17:12:25 -08001377 return &chunk->transport->ipaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 } else {
1379 /* Otherwise, extract it from the IP header. */
Al Viro6a1e5f32006-11-20 17:12:25 -08001380 return &chunk->source;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 }
1382}
1383
1384/* Create a new chunk, setting the type and flags headers from the
1385 * arguments, reserving enough space for a 'paylen' byte payload.
1386 */
Vlad Yasevich072017b2013-08-09 22:05:36 -04001387static struct sctp_chunk *_sctp_make_chunk(const struct sctp_association *asoc,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001388 __u8 type, __u8 flags, int paylen,
1389 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390{
1391 struct sctp_chunk *retval;
1392 sctp_chunkhdr_t *chunk_hdr;
1393 struct sk_buff *skb;
1394 struct sock *sk;
1395
1396 /* No need to allocate LL here, as this is only a chunk. */
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001397 skb = alloc_skb(WORD_ROUND(sizeof(sctp_chunkhdr_t) + paylen), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 if (!skb)
1399 goto nodata;
1400
1401 /* Make room for the chunk header. */
1402 chunk_hdr = (sctp_chunkhdr_t *)skb_put(skb, sizeof(sctp_chunkhdr_t));
1403 chunk_hdr->type = type;
1404 chunk_hdr->flags = flags;
1405 chunk_hdr->length = htons(sizeof(sctp_chunkhdr_t));
1406
1407 sk = asoc ? asoc->base.sk : NULL;
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001408 retval = sctp_chunkify(skb, asoc, sk, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 if (!retval) {
1410 kfree_skb(skb);
1411 goto nodata;
1412 }
1413
1414 retval->chunk_hdr = chunk_hdr;
1415 retval->chunk_end = ((__u8 *)chunk_hdr) + sizeof(struct sctp_chunkhdr);
1416
Vlad Yasevich4cd57c82007-09-16 19:32:45 -07001417 /* Determine if the chunk needs to be authenticated */
1418 if (sctp_auth_send_cid(type, asoc))
1419 retval->auth = 1;
1420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 return retval;
1422nodata:
1423 return NULL;
1424}
1425
Vlad Yasevich072017b2013-08-09 22:05:36 -04001426static struct sctp_chunk *sctp_make_data(const struct sctp_association *asoc,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001427 __u8 flags, int paylen, gfp_t gfp)
Vlad Yasevich072017b2013-08-09 22:05:36 -04001428{
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001429 return _sctp_make_chunk(asoc, SCTP_CID_DATA, flags, paylen, gfp);
Vlad Yasevich072017b2013-08-09 22:05:36 -04001430}
1431
1432static struct sctp_chunk *sctp_make_control(const struct sctp_association *asoc,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001433 __u8 type, __u8 flags, int paylen,
1434 gfp_t gfp)
Vlad Yasevich072017b2013-08-09 22:05:36 -04001435{
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001436 struct sctp_chunk *chunk;
Vlad Yasevich072017b2013-08-09 22:05:36 -04001437
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001438 chunk = _sctp_make_chunk(asoc, type, flags, paylen, gfp);
Vlad Yasevich072017b2013-08-09 22:05:36 -04001439 if (chunk)
1440 sctp_control_set_owner_w(chunk);
1441
1442 return chunk;
1443}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
1445/* Release the memory occupied by a chunk. */
1446static void sctp_chunk_destroy(struct sctp_chunk *chunk)
1447{
Vlad Yasevicha08de642007-12-20 14:11:47 -08001448 BUG_ON(!list_empty(&chunk->list));
1449 list_del_init(&chunk->transmitted_list);
1450
Daniel Borkmannc4856582014-03-04 16:35:51 +01001451 consume_skb(chunk->skb);
1452 consume_skb(chunk->auth_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454 SCTP_DBG_OBJCNT_DEC(chunk);
1455 kmem_cache_free(sctp_chunk_cachep, chunk);
1456}
1457
1458/* Possibly, free the chunk. */
1459void sctp_chunk_free(struct sctp_chunk *chunk)
1460{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 /* Release our reference on the message tracker. */
1462 if (chunk->msg)
1463 sctp_datamsg_put(chunk->msg);
1464
1465 sctp_chunk_put(chunk);
1466}
1467
1468/* Grab a reference to the chunk. */
1469void sctp_chunk_hold(struct sctp_chunk *ch)
1470{
1471 atomic_inc(&ch->refcnt);
1472}
1473
1474/* Release a reference to the chunk. */
1475void sctp_chunk_put(struct sctp_chunk *ch)
1476{
1477 if (atomic_dec_and_test(&ch->refcnt))
1478 sctp_chunk_destroy(ch);
1479}
1480
1481/* Append bytes to the end of a chunk. Will panic if chunk is not big
1482 * enough.
1483 */
1484void *sctp_addto_chunk(struct sctp_chunk *chunk, int len, const void *data)
1485{
1486 void *target;
1487 void *padding;
1488 int chunklen = ntohs(chunk->chunk_hdr->length);
Wei Yongjun8d614ad2007-08-06 13:55:47 +08001489 int padlen = WORD_ROUND(chunklen) - chunklen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
1491 padding = skb_put(chunk->skb, padlen);
1492 target = skb_put(chunk->skb, len);
1493
1494 memset(padding, 0, padlen);
1495 memcpy(target, data, len);
1496
1497 /* Adjust the chunk length field. */
1498 chunk->chunk_hdr->length = htons(chunklen + padlen + len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001499 chunk->chunk_end = skb_tail_pointer(chunk->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
1501 return target;
1502}
1503
Neil Horman5fa782c2010-04-28 10:30:59 +00001504/* Append bytes to the end of a chunk. Returns NULL if there isn't sufficient
1505 * space in the chunk
1506 */
stephen hemminger6daaf0d2014-01-09 22:31:11 -08001507static void *sctp_addto_chunk_fixed(struct sctp_chunk *chunk,
1508 int len, const void *data)
Neil Horman5fa782c2010-04-28 10:30:59 +00001509{
Wei Yongjun2e3219b2010-05-17 22:51:58 -07001510 if (skb_tailroom(chunk->skb) >= len)
Neil Horman5fa782c2010-04-28 10:30:59 +00001511 return sctp_addto_chunk(chunk, len, data);
1512 else
1513 return NULL;
1514}
1515
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516/* Append bytes from user space to the end of a chunk. Will panic if
1517 * chunk is not big enough.
1518 * Returns a kernel err value.
1519 */
Al Viroe0eb0932014-11-15 01:11:23 -05001520int sctp_user_addto_chunk(struct sctp_chunk *chunk, int len,
1521 struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522{
Al Viroe0eb0932014-11-15 01:11:23 -05001523 void *target;
1524 ssize_t copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
1526 /* Make room in chunk for data. */
1527 target = skb_put(chunk->skb, len);
1528
1529 /* Copy data (whole iovec) into chunk */
Al Viroe0eb0932014-11-15 01:11:23 -05001530 copied = copy_from_iter(target, len, from);
1531 if (copied != len)
1532 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534 /* Adjust the chunk length field. */
1535 chunk->chunk_hdr->length =
1536 htons(ntohs(chunk->chunk_hdr->length) + len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001537 chunk->chunk_end = skb_tail_pointer(chunk->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Al Viroe0eb0932014-11-15 01:11:23 -05001539 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540}
1541
1542/* Helper function to assign a TSN if needed. This assumes that both
1543 * the data_hdr and association have already been assigned.
1544 */
1545void sctp_chunk_assign_ssn(struct sctp_chunk *chunk)
1546{
Vlad Yasevichab3e5e72007-08-02 16:51:42 -04001547 struct sctp_datamsg *msg;
1548 struct sctp_chunk *lchunk;
1549 struct sctp_stream *stream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 __u16 ssn;
1551 __u16 sid;
1552
1553 if (chunk->has_ssn)
1554 return;
1555
Vlad Yasevichab3e5e72007-08-02 16:51:42 -04001556 /* All fragments will be on the same stream */
1557 sid = ntohs(chunk->subh.data_hdr->stream);
1558 stream = &chunk->asoc->ssnmap->out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Vlad Yasevichab3e5e72007-08-02 16:51:42 -04001560 /* Now assign the sequence number to the entire message.
1561 * All fragments must have the same stream sequence number.
1562 */
1563 msg = chunk->msg;
1564 list_for_each_entry(lchunk, &msg->chunks, frag_list) {
1565 if (lchunk->chunk_hdr->flags & SCTP_DATA_UNORDERED) {
1566 ssn = 0;
1567 } else {
1568 if (lchunk->chunk_hdr->flags & SCTP_DATA_LAST_FRAG)
1569 ssn = sctp_ssn_next(stream, sid);
1570 else
1571 ssn = sctp_ssn_peek(stream, sid);
1572 }
1573
1574 lchunk->subh.data_hdr->ssn = htons(ssn);
1575 lchunk->has_ssn = 1;
1576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577}
1578
1579/* Helper function to assign a TSN if needed. This assumes that both
1580 * the data_hdr and association have already been assigned.
1581 */
1582void sctp_chunk_assign_tsn(struct sctp_chunk *chunk)
1583{
1584 if (!chunk->has_tsn) {
1585 /* This is the last possible instant to
1586 * assign a TSN.
1587 */
1588 chunk->subh.data_hdr->tsn =
1589 htonl(sctp_association_get_next_tsn(chunk->asoc));
1590 chunk->has_tsn = 1;
1591 }
1592}
1593
1594/* Create a CLOSED association to use with an incoming packet. */
1595struct sctp_association *sctp_make_temp_asoc(const struct sctp_endpoint *ep,
Alexey Dobriyan3182cd82005-07-11 20:57:47 -07001596 struct sctp_chunk *chunk,
Al Virodd0fc662005-10-07 07:46:04 +01001597 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
1599 struct sctp_association *asoc;
1600 struct sk_buff *skb;
1601 sctp_scope_t scope;
1602 struct sctp_af *af;
1603
1604 /* Create the bare association. */
1605 scope = sctp_scope(sctp_source(chunk));
1606 asoc = sctp_association_new(ep, ep->base.sk, scope, gfp);
1607 if (!asoc)
1608 goto nodata;
1609 asoc->temp = 1;
1610 skb = chunk->skb;
1611 /* Create an entry for the source address of the packet. */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001612 af = sctp_get_af_specific(ipver2af(ip_hdr(skb)->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 if (unlikely(!af))
1614 goto fail;
Al Virod55c41b2006-11-20 17:09:40 -08001615 af->from_skb(&asoc->c.peer_addr, skb, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616nodata:
1617 return asoc;
1618
1619fail:
1620 sctp_association_free(asoc);
1621 return NULL;
1622}
1623
1624/* Build a cookie representing asoc.
1625 * This INCLUDES the param header needed to put the cookie in the INIT ACK.
1626 */
1627static sctp_cookie_param_t *sctp_pack_cookie(const struct sctp_endpoint *ep,
1628 const struct sctp_association *asoc,
1629 const struct sctp_chunk *init_chunk,
1630 int *cookie_len,
1631 const __u8 *raw_addrs, int addrs_len)
1632{
1633 sctp_cookie_param_t *retval;
1634 struct sctp_signed_cookie *cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 int headersize, bodysize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Vlad Yasevich9834a2b2006-01-17 11:52:12 -08001637 /* Header size is static data prior to the actual cookie, including
1638 * any padding.
1639 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001640 headersize = sizeof(sctp_paramhdr_t) +
1641 (sizeof(struct sctp_signed_cookie) -
Vlad Yasevich9834a2b2006-01-17 11:52:12 -08001642 sizeof(struct sctp_cookie));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 bodysize = sizeof(struct sctp_cookie)
1644 + ntohs(init_chunk->chunk_hdr->length) + addrs_len;
1645
1646 /* Pad out the cookie to a multiple to make the signature
1647 * functions simpler to write.
1648 */
1649 if (bodysize % SCTP_COOKIE_MULTIPLE)
1650 bodysize += SCTP_COOKIE_MULTIPLE
1651 - (bodysize % SCTP_COOKIE_MULTIPLE);
1652 *cookie_len = headersize + bodysize;
1653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 /* Clear this memory since we are sending this data structure
1655 * out on the network.
1656 */
Arnaldo Carvalho de Meloaf997d82006-11-21 01:20:33 -02001657 retval = kzalloc(*cookie_len, GFP_ATOMIC);
1658 if (!retval)
1659 goto nodata;
1660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 cookie = (struct sctp_signed_cookie *) retval->body;
1662
1663 /* Set up the parameter header. */
1664 retval->p.type = SCTP_PARAM_STATE_COOKIE;
1665 retval->p.length = htons(*cookie_len);
1666
1667 /* Copy the cookie part of the association itself. */
1668 cookie->c = asoc->c;
1669 /* Save the raw address list length in the cookie. */
1670 cookie->c.raw_addr_list_len = addrs_len;
1671
1672 /* Remember PR-SCTP capability. */
1673 cookie->c.prsctp_capable = asoc->peer.prsctp_capable;
1674
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001675 /* Save adaptation indication in the cookie. */
1676 cookie->c.adaptation_ind = asoc->peer.adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678 /* Set an expiration time for the cookie. */
Daniel Borkmann52db8822013-06-25 18:17:27 +02001679 cookie->c.expiration = ktime_add(asoc->cookie_life,
Marcelo Ricardo Leitnercb5e1732015-12-04 15:14:03 -02001680 ktime_get_real());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
1682 /* Copy the peer's init packet. */
1683 memcpy(&cookie->c.peer_init[0], init_chunk->chunk_hdr,
1684 ntohs(init_chunk->chunk_hdr->length));
1685
1686 /* Copy the raw local address list of the association. */
1687 memcpy((__u8 *)&cookie->c.peer_init[0] +
1688 ntohs(init_chunk->chunk_hdr->length), raw_addrs, addrs_len);
1689
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001690 if (sctp_sk(ep->base.sk)->hmac) {
Herbert Xu5821c762016-01-24 21:20:12 +08001691 SHASH_DESC_ON_STACK(desc, sctp_sk(ep->base.sk)->hmac);
1692 int err;
Herbert Xu1b489e12006-08-20 15:07:14 +10001693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 /* Sign the message. */
Herbert Xu5821c762016-01-24 21:20:12 +08001695 desc->tfm = sctp_sk(ep->base.sk)->hmac;
1696 desc->flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Herbert Xu5821c762016-01-24 21:20:12 +08001698 err = crypto_shash_setkey(desc->tfm, ep->secret_key,
1699 sizeof(ep->secret_key)) ?:
1700 crypto_shash_digest(desc, (u8 *)&cookie->c, bodysize,
1701 cookie->signature);
1702 shash_desc_zero(desc);
1703 if (err)
Herbert Xu1b489e12006-08-20 15:07:14 +10001704 goto free_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 }
1706
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 return retval;
Herbert Xu1b489e12006-08-20 15:07:14 +10001708
1709free_cookie:
1710 kfree(retval);
1711nodata:
1712 *cookie_len = 0;
1713 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714}
1715
1716/* Unpack the cookie from COOKIE ECHO chunk, recreating the association. */
1717struct sctp_association *sctp_unpack_cookie(
1718 const struct sctp_endpoint *ep,
1719 const struct sctp_association *asoc,
Al Virodd0fc662005-10-07 07:46:04 +01001720 struct sctp_chunk *chunk, gfp_t gfp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 int *error, struct sctp_chunk **errp)
1722{
1723 struct sctp_association *retval = NULL;
1724 struct sctp_signed_cookie *cookie;
1725 struct sctp_cookie *bear_cookie;
1726 int headersize, bodysize, fixed_size;
Vlad Yasevich313e7b42006-01-17 11:55:57 -08001727 __u8 *digest = ep->digest;
Daniel Borkmann570617e2013-02-12 05:15:33 +00001728 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 sctp_scope_t scope;
1730 struct sk_buff *skb = chunk->skb;
Daniel Borkmann52db8822013-06-25 18:17:27 +02001731 ktime_t kt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Vlad Yasevich9834a2b2006-01-17 11:52:12 -08001733 /* Header size is static data prior to the actual cookie, including
1734 * any padding.
1735 */
1736 headersize = sizeof(sctp_chunkhdr_t) +
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001737 (sizeof(struct sctp_signed_cookie) -
Vlad Yasevich9834a2b2006-01-17 11:52:12 -08001738 sizeof(struct sctp_cookie));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 bodysize = ntohs(chunk->chunk_hdr->length) - headersize;
1740 fixed_size = headersize + sizeof(struct sctp_cookie);
1741
1742 /* Verify that the chunk looks like it even has a cookie.
1743 * There must be enough room for our cookie and our peer's
1744 * INIT chunk.
1745 */
1746 len = ntohs(chunk->chunk_hdr->length);
1747 if (len < fixed_size + sizeof(struct sctp_chunkhdr))
1748 goto malformed;
1749
1750 /* Verify that the cookie has been padded out. */
1751 if (bodysize % SCTP_COOKIE_MULTIPLE)
1752 goto malformed;
1753
1754 /* Process the cookie. */
1755 cookie = chunk->subh.cookie_hdr;
1756 bear_cookie = &cookie->c;
1757
1758 if (!sctp_sk(ep->base.sk)->hmac)
1759 goto no_hmac;
1760
1761 /* Check the signature. */
Herbert Xu5821c762016-01-24 21:20:12 +08001762 {
1763 SHASH_DESC_ON_STACK(desc, sctp_sk(ep->base.sk)->hmac);
1764 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Herbert Xu5821c762016-01-24 21:20:12 +08001766 desc->tfm = sctp_sk(ep->base.sk)->hmac;
1767 desc->flags = 0;
1768
1769 err = crypto_shash_setkey(desc->tfm, ep->secret_key,
1770 sizeof(ep->secret_key)) ?:
1771 crypto_shash_digest(desc, (u8 *)bear_cookie, bodysize,
1772 digest);
1773 shash_desc_zero(desc);
1774
1775 if (err) {
1776 *error = -SCTP_IERROR_NOMEM;
1777 goto fail;
1778 }
Herbert Xu1b489e12006-08-20 15:07:14 +10001779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
1781 if (memcmp(digest, cookie->signature, SCTP_SIGNATURE_SIZE)) {
Daniel Borkmann570617e2013-02-12 05:15:33 +00001782 *error = -SCTP_IERROR_BAD_SIG;
1783 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 }
1785
1786no_hmac:
1787 /* IG Section 2.35.2:
1788 * 3) Compare the port numbers and the verification tag contained
1789 * within the COOKIE ECHO chunk to the actual port numbers and the
1790 * verification tag within the SCTP common header of the received
1791 * packet. If these values do not match the packet MUST be silently
1792 * discarded,
1793 */
1794 if (ntohl(chunk->sctp_hdr->vtag) != bear_cookie->my_vtag) {
1795 *error = -SCTP_IERROR_BAD_TAG;
1796 goto fail;
1797 }
1798
Al Viro9b1dfad2006-11-20 17:09:17 -08001799 if (chunk->sctp_hdr->source != bear_cookie->peer_addr.v4.sin_port ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 ntohs(chunk->sctp_hdr->dest) != bear_cookie->my_port) {
1801 *error = -SCTP_IERROR_BAD_PORTS;
1802 goto fail;
1803 }
1804
1805 /* Check to see if the cookie is stale. If there is already
1806 * an association, there is no need to check cookie's expiration
1807 * for init collision case of lost COOKIE ACK.
Vlad Yasevichf236218b2006-09-29 17:10:03 -07001808 * If skb has been timestamped, then use the stamp, otherwise
1809 * use current time. This introduces a small possibility that
1810 * that a cookie may be considered expired, but his would only slow
1811 * down the new association establishment instead of every packet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 */
Vlad Yasevichf236218b2006-09-29 17:10:03 -07001813 if (sock_flag(ep->base.sk, SOCK_TIMESTAMP))
Daniel Borkmann52db8822013-06-25 18:17:27 +02001814 kt = skb_get_ktime(skb);
Vlad Yasevichf236218b2006-09-29 17:10:03 -07001815 else
Marcelo Ricardo Leitnercb5e1732015-12-04 15:14:03 -02001816 kt = ktime_get_real();
Vlad Yasevichf236218b2006-09-29 17:10:03 -07001817
Daniel Borkmann67cb9362014-06-11 18:19:28 +02001818 if (!asoc && ktime_before(bear_cookie->expiration, kt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 /*
1820 * Section 3.3.10.3 Stale Cookie Error (3)
1821 *
1822 * Cause of error
1823 * ---------------
1824 * Stale Cookie Error: Indicates the receipt of a valid State
1825 * Cookie that has expired.
1826 */
1827 len = ntohs(chunk->chunk_hdr->length);
1828 *errp = sctp_make_op_error_space(asoc, chunk, len);
1829 if (*errp) {
Daniel Borkmann52db8822013-06-25 18:17:27 +02001830 suseconds_t usecs = ktime_to_us(ktime_sub(kt, bear_cookie->expiration));
Al Viro34bcca22006-11-20 17:27:15 -08001831 __be32 n = htonl(usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 sctp_init_cause(*errp, SCTP_ERROR_STALE_COOKIE,
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001834 sizeof(n));
1835 sctp_addto_chunk(*errp, sizeof(n), &n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 *error = -SCTP_IERROR_STALE_COOKIE;
1837 } else
1838 *error = -SCTP_IERROR_NOMEM;
1839
1840 goto fail;
1841 }
1842
1843 /* Make a new base association. */
1844 scope = sctp_scope(sctp_source(chunk));
1845 retval = sctp_association_new(ep, ep->base.sk, scope, gfp);
1846 if (!retval) {
1847 *error = -SCTP_IERROR_NOMEM;
1848 goto fail;
1849 }
1850
1851 /* Set up our peer's port number. */
1852 retval->peer.port = ntohs(chunk->sctp_hdr->source);
1853
1854 /* Populate the association from the cookie. */
1855 memcpy(&retval->c, bear_cookie, sizeof(*bear_cookie));
1856
1857 if (sctp_assoc_set_bind_addr_from_cookie(retval, bear_cookie,
1858 GFP_ATOMIC) < 0) {
1859 *error = -SCTP_IERROR_NOMEM;
1860 goto fail;
1861 }
1862
1863 /* Also, add the destination address. */
1864 if (list_empty(&retval->base.bind_addr.address_list)) {
Vlad Yasevichf57d96b2007-12-20 14:12:24 -08001865 sctp_add_bind_addr(&retval->base.bind_addr, &chunk->dest,
Marcelo Ricardo Leitner133800d2016-03-08 10:34:28 -03001866 sizeof(chunk->dest), SCTP_ADDR_SRC,
1867 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 }
1869
1870 retval->next_tsn = retval->c.initial_tsn;
1871 retval->ctsn_ack_point = retval->next_tsn - 1;
1872 retval->addip_serial = retval->c.initial_tsn;
1873 retval->adv_peer_ack_point = retval->ctsn_ack_point;
1874 retval->peer.prsctp_capable = retval->c.prsctp_capable;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001875 retval->peer.adaptation_ind = retval->c.adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
1877 /* The INIT stuff will be done by the side effects. */
1878 return retval;
1879
1880fail:
1881 if (retval)
1882 sctp_association_free(retval);
1883
1884 return NULL;
1885
1886malformed:
1887 /* Yikes! The packet is either corrupt or deliberately
1888 * malformed.
1889 */
1890 *error = -SCTP_IERROR_MALFORMED;
1891 goto fail;
1892}
1893
1894/********************************************************************
1895 * 3rd Level Abstractions
1896 ********************************************************************/
1897
1898struct __sctp_missing {
Al Viro9f81bcd2006-11-20 17:26:34 -08001899 __be32 num_missing;
1900 __be16 type;
Eric Dumazetbc105022010-06-03 03:21:52 -07001901} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
1903/*
1904 * Report a missing mandatory parameter.
1905 */
1906static int sctp_process_missing_param(const struct sctp_association *asoc,
1907 sctp_param_t paramtype,
1908 struct sctp_chunk *chunk,
1909 struct sctp_chunk **errp)
1910{
1911 struct __sctp_missing report;
1912 __u16 len;
1913
1914 len = WORD_ROUND(sizeof(report));
1915
1916 /* Make an ERROR chunk, preparing enough room for
1917 * returning multiple unknown parameters.
1918 */
1919 if (!*errp)
1920 *errp = sctp_make_op_error_space(asoc, chunk, len);
1921
1922 if (*errp) {
1923 report.num_missing = htonl(1);
1924 report.type = paramtype;
Vlad Yasevichebdfcad2007-01-15 19:12:31 -08001925 sctp_init_cause(*errp, SCTP_ERROR_MISS_PARAM,
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001926 sizeof(report));
1927 sctp_addto_chunk(*errp, sizeof(report), &report);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 }
1929
1930 /* Stop processing this chunk. */
1931 return 0;
1932}
1933
1934/* Report an Invalid Mandatory Parameter. */
1935static int sctp_process_inv_mandatory(const struct sctp_association *asoc,
1936 struct sctp_chunk *chunk,
1937 struct sctp_chunk **errp)
1938{
1939 /* Invalid Mandatory Parameter Error has no payload. */
1940
1941 if (!*errp)
1942 *errp = sctp_make_op_error_space(asoc, chunk, 0);
1943
1944 if (*errp)
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001945 sctp_init_cause(*errp, SCTP_ERROR_INV_PARAM, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
1947 /* Stop processing this chunk. */
1948 return 0;
1949}
1950
1951static int sctp_process_inv_paramlength(const struct sctp_association *asoc,
1952 struct sctp_paramhdr *param,
1953 const struct sctp_chunk *chunk,
1954 struct sctp_chunk **errp)
1955{
Vlad Yasevich7ab90802007-11-09 11:43:41 -05001956 /* This is a fatal error. Any accumulated non-fatal errors are
1957 * not reported.
1958 */
1959 if (*errp)
1960 sctp_chunk_free(*errp);
1961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 /* Create an error chunk and fill it in with our payload. */
Wei Yongjunba016672008-09-30 05:32:24 -07001963 *errp = sctp_make_violation_paramlen(asoc, chunk, param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
1965 return 0;
1966}
1967
1968
1969/* Do not attempt to handle the HOST_NAME parm. However, do
1970 * send back an indicator to the peer.
1971 */
1972static int sctp_process_hn_param(const struct sctp_association *asoc,
1973 union sctp_params param,
1974 struct sctp_chunk *chunk,
1975 struct sctp_chunk **errp)
1976{
1977 __u16 len = ntohs(param.p->length);
1978
Vlad Yasevich7ab90802007-11-09 11:43:41 -05001979 /* Processing of the HOST_NAME parameter will generate an
1980 * ABORT. If we've accumulated any non-fatal errors, they
1981 * would be unrecognized parameters and we should not include
1982 * them in the ABORT.
1983 */
1984 if (*errp)
1985 sctp_chunk_free(*errp);
1986
1987 *errp = sctp_make_op_error_space(asoc, chunk, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001989 if (*errp) {
1990 sctp_init_cause(*errp, SCTP_ERROR_DNS_FAILED, len);
1991 sctp_addto_chunk(*errp, len, param.v);
1992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994 /* Stop processing this chunk. */
1995 return 0;
1996}
1997
Eric W. Biedermanf53b5b02012-08-07 07:29:08 +00001998static int sctp_verify_ext_param(struct net *net, union sctp_params param)
Vlad Yasevichd6701192007-12-20 14:13:31 -08001999{
2000 __u16 num_ext = ntohs(param.p->length) - sizeof(sctp_paramhdr_t);
2001 int have_auth = 0;
2002 int have_asconf = 0;
2003 int i;
2004
2005 for (i = 0; i < num_ext; i++) {
2006 switch (param.ext->chunks[i]) {
wangweidongf7010e62013-12-23 12:16:52 +08002007 case SCTP_CID_AUTH:
2008 have_auth = 1;
2009 break;
2010 case SCTP_CID_ASCONF:
2011 case SCTP_CID_ASCONF_ACK:
2012 have_asconf = 1;
2013 break;
Vlad Yasevichd6701192007-12-20 14:13:31 -08002014 }
2015 }
2016
2017 /* ADD-IP Security: The draft requires us to ABORT or ignore the
2018 * INIT/INIT-ACK if ADD-IP is listed, but AUTH is not. Do this
2019 * only if ADD-IP is turned on and we are not backward-compatible
2020 * mode.
2021 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002022 if (net->sctp.addip_noauth)
Vlad Yasevichd6701192007-12-20 14:13:31 -08002023 return 1;
2024
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002025 if (net->sctp.addip_enable && !have_auth && have_asconf)
Vlad Yasevichd6701192007-12-20 14:13:31 -08002026 return 0;
2027
2028 return 1;
2029}
2030
Vlad Yasevich131a47e2007-09-16 15:53:56 -07002031static void sctp_process_ext_param(struct sctp_association *asoc,
2032 union sctp_params param)
2033{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002034 struct net *net = sock_net(asoc->base.sk);
Vlad Yasevich131a47e2007-09-16 15:53:56 -07002035 __u16 num_ext = ntohs(param.p->length) - sizeof(sctp_paramhdr_t);
2036 int i;
2037
2038 for (i = 0; i < num_ext; i++) {
2039 switch (param.ext->chunks[i]) {
wangweidongf7010e62013-12-23 12:16:52 +08002040 case SCTP_CID_FWD_TSN:
Xin Long28aa4c22016-07-09 19:47:40 +08002041 if (asoc->prsctp_enable && !asoc->peer.prsctp_capable)
2042 asoc->peer.prsctp_capable = 1;
wangweidongf7010e62013-12-23 12:16:52 +08002043 break;
2044 case SCTP_CID_AUTH:
2045 /* if the peer reports AUTH, assume that he
2046 * supports AUTH.
2047 */
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002048 if (asoc->ep->auth_enable)
wangweidongf7010e62013-12-23 12:16:52 +08002049 asoc->peer.auth_capable = 1;
2050 break;
2051 case SCTP_CID_ASCONF:
2052 case SCTP_CID_ASCONF_ACK:
2053 if (net->sctp.addip_enable)
2054 asoc->peer.asconf_capable = 1;
2055 break;
2056 default:
2057 break;
Vlad Yasevich131a47e2007-09-16 15:53:56 -07002058 }
2059 }
2060}
2061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062/* RFC 3.2.1 & the Implementers Guide 2.2.
2063 *
2064 * The Parameter Types are encoded such that the
2065 * highest-order two bits specify the action that must be
2066 * taken if the processing endpoint does not recognize the
2067 * Parameter Type.
2068 *
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002069 * 00 - Stop processing this parameter; do not process any further
2070 * parameters within this chunk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 *
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002072 * 01 - Stop processing this parameter, do not process any further
2073 * parameters within this chunk, and report the unrecognized
2074 * parameter in an 'Unrecognized Parameter' ERROR chunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 *
2076 * 10 - Skip this parameter and continue processing.
2077 *
2078 * 11 - Skip this parameter and continue processing but
2079 * report the unrecognized parameter in an
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002080 * 'Unrecognized Parameter' ERROR chunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 *
2082 * Return value:
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002083 * SCTP_IERROR_NO_ERROR - continue with the chunk
2084 * SCTP_IERROR_ERROR - stop and report an error.
2085 * SCTP_IERROR_NOMEME - out of memory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 */
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002087static sctp_ierror_t sctp_process_unk_param(const struct sctp_association *asoc,
2088 union sctp_params param,
2089 struct sctp_chunk *chunk,
2090 struct sctp_chunk **errp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091{
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002092 int retval = SCTP_IERROR_NO_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
2094 switch (param.p->type & SCTP_PARAM_ACTION_MASK) {
2095 case SCTP_PARAM_ACTION_DISCARD:
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002096 retval = SCTP_IERROR_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 break;
2098 case SCTP_PARAM_ACTION_SKIP:
2099 break;
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002100 case SCTP_PARAM_ACTION_DISCARD_ERR:
2101 retval = SCTP_IERROR_ERROR;
2102 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 case SCTP_PARAM_ACTION_SKIP_ERR:
2104 /* Make an ERROR chunk, preparing enough room for
2105 * returning multiple unknown parameters.
2106 */
2107 if (NULL == *errp)
Neil Horman5fa782c2010-04-28 10:30:59 +00002108 *errp = sctp_make_op_error_fixed(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
2110 if (*errp) {
Jiri Bohac2205a6e2011-02-17 13:12:08 +00002111 if (!sctp_init_cause_fixed(*errp, SCTP_ERROR_UNKNOWN_PARAM,
2112 WORD_ROUND(ntohs(param.p->length))))
2113 sctp_addto_chunk_fixed(*errp,
2114 WORD_ROUND(ntohs(param.p->length)),
2115 param.v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 } else {
2117 /* If there is no memory for generating the ERROR
2118 * report as specified, an ABORT will be triggered
2119 * to the peer and the association won't be
2120 * established.
2121 */
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002122 retval = SCTP_IERROR_NOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 break;
2125 default:
2126 break;
2127 }
2128
2129 return retval;
2130}
2131
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002132/* Verify variable length parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 * Return values:
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002134 * SCTP_IERROR_ABORT - trigger an ABORT
2135 * SCTP_IERROR_NOMEM - out of memory (abort)
2136 * SCTP_IERROR_ERROR - stop processing, trigger an ERROR
2137 * SCTP_IERROR_NO_ERROR - continue with the chunk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 */
Eric W. Biedermanf53b5b02012-08-07 07:29:08 +00002139static sctp_ierror_t sctp_verify_param(struct net *net,
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002140 const struct sctp_endpoint *ep,
Eric W. Biedermanf53b5b02012-08-07 07:29:08 +00002141 const struct sctp_association *asoc,
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002142 union sctp_params param,
2143 sctp_cid_t cid,
2144 struct sctp_chunk *chunk,
2145 struct sctp_chunk **err_chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146{
Wei Yongjun72da7b32008-04-12 18:39:19 -07002147 struct sctp_hmac_algo_param *hmacs;
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002148 int retval = SCTP_IERROR_NO_ERROR;
Wei Yongjun72da7b32008-04-12 18:39:19 -07002149 __u16 n_elt, id = 0;
2150 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
2152 /* FIXME - This routine is not looking at each parameter per the
2153 * chunk type, i.e., unrecognized parameters should be further
2154 * identified based on the chunk id.
2155 */
2156
2157 switch (param.p->type) {
2158 case SCTP_PARAM_IPV4_ADDRESS:
2159 case SCTP_PARAM_IPV6_ADDRESS:
2160 case SCTP_PARAM_COOKIE_PRESERVATIVE:
2161 case SCTP_PARAM_SUPPORTED_ADDRESS_TYPES:
2162 case SCTP_PARAM_STATE_COOKIE:
2163 case SCTP_PARAM_HEARTBEAT_INFO:
2164 case SCTP_PARAM_UNRECOGNIZED_PARAMETERS:
2165 case SCTP_PARAM_ECN_CAPABLE:
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08002166 case SCTP_PARAM_ADAPTATION_LAYER_IND:
Vlad Yasevichd6701192007-12-20 14:13:31 -08002167 break;
2168
Vlad Yasevich131a47e2007-09-16 15:53:56 -07002169 case SCTP_PARAM_SUPPORTED_EXT:
Eric W. Biedermanf53b5b02012-08-07 07:29:08 +00002170 if (!sctp_verify_ext_param(net, param))
Vlad Yasevichd6701192007-12-20 14:13:31 -08002171 return SCTP_IERROR_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 break;
2173
Vlad Yasevichd6de3092007-12-20 14:10:00 -08002174 case SCTP_PARAM_SET_PRIMARY:
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002175 if (net->sctp.addip_enable)
Vlad Yasevichd6de3092007-12-20 14:10:00 -08002176 break;
2177 goto fallthrough;
2178
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 case SCTP_PARAM_HOST_NAME_ADDRESS:
2180 /* Tell the peer, we won't support this param. */
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002181 sctp_process_hn_param(asoc, param, chunk, err_chunk);
2182 retval = SCTP_IERROR_ABORT;
2183 break;
Vlad Yasevich131a47e2007-09-16 15:53:56 -07002184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 case SCTP_PARAM_FWD_TSN_SUPPORT:
Xin Long28aa4c22016-07-09 19:47:40 +08002186 if (ep->prsctp_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 break;
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002188 goto fallthrough;
2189
2190 case SCTP_PARAM_RANDOM:
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002191 if (!ep->auth_enable)
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002192 goto fallthrough;
2193
2194 /* SCTP-AUTH: Secion 6.1
2195 * If the random number is not 32 byte long the association
2196 * MUST be aborted. The ABORT chunk SHOULD contain the error
2197 * cause 'Protocol Violation'.
2198 */
2199 if (SCTP_AUTH_RANDOM_LENGTH !=
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002200 ntohs(param.p->length) - sizeof(sctp_paramhdr_t)) {
2201 sctp_process_inv_paramlength(asoc, param.p,
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002202 chunk, err_chunk);
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002203 retval = SCTP_IERROR_ABORT;
2204 }
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002205 break;
2206
2207 case SCTP_PARAM_CHUNKS:
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002208 if (!ep->auth_enable)
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002209 goto fallthrough;
2210
2211 /* SCTP-AUTH: Section 3.2
2212 * The CHUNKS parameter MUST be included once in the INIT or
2213 * INIT-ACK chunk if the sender wants to receive authenticated
2214 * chunks. Its maximum length is 260 bytes.
2215 */
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002216 if (260 < ntohs(param.p->length)) {
2217 sctp_process_inv_paramlength(asoc, param.p,
2218 chunk, err_chunk);
2219 retval = SCTP_IERROR_ABORT;
2220 }
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002221 break;
2222
2223 case SCTP_PARAM_HMAC_ALGO:
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002224 if (!ep->auth_enable)
Wei Yongjun72da7b32008-04-12 18:39:19 -07002225 goto fallthrough;
2226
2227 hmacs = (struct sctp_hmac_algo_param *)param.p;
2228 n_elt = (ntohs(param.p->length) - sizeof(sctp_paramhdr_t)) >> 1;
2229
2230 /* SCTP-AUTH: Section 6.1
2231 * The HMAC algorithm based on SHA-1 MUST be supported and
2232 * included in the HMAC-ALGO parameter.
2233 */
2234 for (i = 0; i < n_elt; i++) {
2235 id = ntohs(hmacs->hmac_ids[i]);
2236
2237 if (id == SCTP_AUTH_HMAC_ID_SHA1)
2238 break;
2239 }
2240
2241 if (id != SCTP_AUTH_HMAC_ID_SHA1) {
2242 sctp_process_inv_paramlength(asoc, param.p, chunk,
2243 err_chunk);
2244 retval = SCTP_IERROR_ABORT;
2245 }
2246 break;
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002247fallthrough:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 default:
Daniel Borkmannbb333812013-06-28 19:49:40 +02002249 pr_debug("%s: unrecognized param:%d for chunk:%d\n",
2250 __func__, ntohs(param.p->type), cid);
2251
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002252 retval = sctp_process_unk_param(asoc, param, chunk, err_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 break;
2254 }
2255 return retval;
2256}
2257
2258/* Verify the INIT packet before we process it. */
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002259int sctp_verify_init(struct net *net, const struct sctp_endpoint *ep,
2260 const struct sctp_association *asoc, sctp_cid_t cid,
2261 sctp_init_chunk_t *peer_init, struct sctp_chunk *chunk,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 struct sctp_chunk **errp)
2263{
2264 union sctp_params param;
Daniel Borkmann7613f5f2013-08-27 16:53:52 +02002265 bool has_cookie = false;
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002266 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
Daniel Borkmann7613f5f2013-08-27 16:53:52 +02002268 /* Check for missing mandatory parameters. Note: Initial TSN is
2269 * also mandatory, but is not checked here since the valid range
2270 * is 0..2**32-1. RFC4960, section 3.3.3.
2271 */
2272 if (peer_init->init_hdr.num_outbound_streams == 0 ||
2273 peer_init->init_hdr.num_inbound_streams == 0 ||
2274 peer_init->init_hdr.init_tag == 0 ||
2275 ntohl(peer_init->init_hdr.a_rwnd) < SCTP_DEFAULT_MINWINDOW)
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002276 return sctp_process_inv_mandatory(asoc, chunk, errp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 sctp_walk_params(param, peer_init, init_hdr.params) {
Daniel Borkmann7613f5f2013-08-27 16:53:52 +02002279 if (param.p->type == SCTP_PARAM_STATE_COOKIE)
2280 has_cookie = true;
2281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
2283 /* There is a possibility that a parameter length was bad and
2284 * in that case we would have stoped walking the parameters.
2285 * The current param.p would point at the bad one.
2286 * Current consensus on the mailing list is to generate a PROTOCOL
2287 * VIOLATION error. We build the ERROR chunk here and let the normal
2288 * error handling code build and send the packet.
2289 */
wangweidong26ac8e52013-12-23 12:16:51 +08002290 if (param.v != (void *)chunk->chunk_end)
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002291 return sctp_process_inv_paramlength(asoc, param.p, chunk, errp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
2293 /* The only missing mandatory param possible today is
2294 * the state cookie for an INIT-ACK chunk.
2295 */
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002296 if ((SCTP_CID_INIT_ACK == cid) && !has_cookie)
2297 return sctp_process_missing_param(asoc, SCTP_PARAM_STATE_COOKIE,
2298 chunk, errp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002300 /* Verify all the variable length parameters */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 sctp_walk_params(param, peer_init, init_hdr.params) {
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002302 result = sctp_verify_param(net, ep, asoc, param, cid,
2303 chunk, errp);
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002304 switch (result) {
wangweidongf7010e62013-12-23 12:16:52 +08002305 case SCTP_IERROR_ABORT:
2306 case SCTP_IERROR_NOMEM:
2307 return 0;
2308 case SCTP_IERROR_ERROR:
2309 return 1;
2310 case SCTP_IERROR_NO_ERROR:
2311 default:
2312 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 }
2314
2315 } /* for (loop through all parameters) */
2316
2317 return 1;
2318}
2319
2320/* Unpack the parameters in an INIT packet into an association.
2321 * Returns 0 on failure, else success.
2322 * FIXME: This is an association method.
2323 */
Wei Yongjunde6becdc02011-04-19 21:30:51 +00002324int sctp_process_init(struct sctp_association *asoc, struct sctp_chunk *chunk,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 const union sctp_addr *peer_addr,
Al Virodd0fc662005-10-07 07:46:04 +01002326 sctp_init_chunk_t *peer_init, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002328 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 union sctp_params param;
2330 struct sctp_transport *transport;
2331 struct list_head *pos, *temp;
Wei Yongjunde6becdc02011-04-19 21:30:51 +00002332 struct sctp_af *af;
2333 union sctp_addr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 char *cookie;
Wei Yongjunde6becdc02011-04-19 21:30:51 +00002335 int src_match = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
2337 /* We must include the address that the INIT packet came from.
2338 * This is the only address that matters for an INIT packet.
2339 * When processing a COOKIE ECHO, we retrieve the from address
2340 * of the INIT from the cookie.
2341 */
2342
2343 /* This implementation defaults to making the first transport
2344 * added as the primary transport. The source address seems to
2345 * be a a better choice than any of the embedded addresses.
2346 */
wangweidongcb3f8372013-12-23 12:16:50 +08002347 if (!sctp_assoc_add_peer(asoc, peer_addr, gfp, SCTP_ACTIVE))
Wei Yongjunde6becdc02011-04-19 21:30:51 +00002348 goto nomem;
2349
2350 if (sctp_cmp_addr_exact(sctp_source(chunk), peer_addr))
2351 src_match = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
2353 /* Process the initialization parameters. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 sctp_walk_params(param, peer_init, init_hdr.params) {
Wei Yongjunde6becdc02011-04-19 21:30:51 +00002355 if (!src_match && (param.p->type == SCTP_PARAM_IPV4_ADDRESS ||
2356 param.p->type == SCTP_PARAM_IPV6_ADDRESS)) {
2357 af = sctp_get_af_specific(param_type2af(param.p->type));
2358 af->from_addr_param(&addr, param.addr,
2359 chunk->sctp_hdr->source, 0);
2360 if (sctp_cmp_addr_exact(sctp_source(chunk), &addr))
2361 src_match = 1;
2362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
2364 if (!sctp_process_param(asoc, param, peer_addr, gfp))
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002365 goto clean_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 }
2367
Wei Yongjunde6becdc02011-04-19 21:30:51 +00002368 /* source address of chunk may not match any valid address */
2369 if (!src_match)
2370 goto clean_up;
2371
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002372 /* AUTH: After processing the parameters, make sure that we
2373 * have all the required info to potentially do authentications.
2374 */
2375 if (asoc->peer.auth_capable && (!asoc->peer.peer_random ||
2376 !asoc->peer.peer_hmacs))
2377 asoc->peer.auth_capable = 0;
2378
Vlad Yasevichd6701192007-12-20 14:13:31 -08002379 /* In a non-backward compatible mode, if the peer claims
2380 * support for ADD-IP but not AUTH, the ADD-IP spec states
2381 * that we MUST ABORT the association. Section 6. The section
2382 * also give us an option to silently ignore the packet, which
2383 * is what we'll do here.
Vlad Yasevich6b2f9cb2007-09-16 19:35:39 -07002384 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002385 if (!net->sctp.addip_noauth &&
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -04002386 (asoc->peer.asconf_capable && !asoc->peer.auth_capable)) {
Vlad Yasevich6b2f9cb2007-09-16 19:35:39 -07002387 asoc->peer.addip_disabled_mask |= (SCTP_PARAM_ADD_IP |
2388 SCTP_PARAM_DEL_IP |
2389 SCTP_PARAM_SET_PRIMARY);
Vlad Yasevich88799fe2007-10-24 17:24:23 -04002390 asoc->peer.asconf_capable = 0;
Vlad Yasevichd6701192007-12-20 14:13:31 -08002391 goto clean_up;
Vlad Yasevich6b2f9cb2007-09-16 19:35:39 -07002392 }
2393
Frank Filz3f7a87d2005-06-20 13:14:57 -07002394 /* Walk list of transports, removing transports in the UNKNOWN state. */
2395 list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
2396 transport = list_entry(pos, struct sctp_transport, transports);
2397 if (transport->state == SCTP_UNKNOWN) {
2398 sctp_assoc_rm_peer(asoc, transport);
2399 }
2400 }
2401
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 /* The fixed INIT headers are always in network byte
2403 * order.
2404 */
2405 asoc->peer.i.init_tag =
2406 ntohl(peer_init->init_hdr.init_tag);
2407 asoc->peer.i.a_rwnd =
2408 ntohl(peer_init->init_hdr.a_rwnd);
2409 asoc->peer.i.num_outbound_streams =
2410 ntohs(peer_init->init_hdr.num_outbound_streams);
2411 asoc->peer.i.num_inbound_streams =
2412 ntohs(peer_init->init_hdr.num_inbound_streams);
2413 asoc->peer.i.initial_tsn =
2414 ntohl(peer_init->init_hdr.initial_tsn);
2415
2416 /* Apply the upper bounds for output streams based on peer's
2417 * number of inbound streams.
2418 */
2419 if (asoc->c.sinit_num_ostreams >
2420 ntohs(peer_init->init_hdr.num_inbound_streams)) {
2421 asoc->c.sinit_num_ostreams =
2422 ntohs(peer_init->init_hdr.num_inbound_streams);
2423 }
2424
2425 if (asoc->c.sinit_max_instreams >
2426 ntohs(peer_init->init_hdr.num_outbound_streams)) {
2427 asoc->c.sinit_max_instreams =
2428 ntohs(peer_init->init_hdr.num_outbound_streams);
2429 }
2430
2431 /* Copy Initiation tag from INIT to VT_peer in cookie. */
2432 asoc->c.peer_vtag = asoc->peer.i.init_tag;
2433
2434 /* Peer Rwnd : Current calculated value of the peer's rwnd. */
2435 asoc->peer.rwnd = asoc->peer.i.a_rwnd;
2436
2437 /* Copy cookie in case we need to resend COOKIE-ECHO. */
2438 cookie = asoc->peer.cookie;
2439 if (cookie) {
Arnaldo Carvalho de Meloaf997d82006-11-21 01:20:33 -02002440 asoc->peer.cookie = kmemdup(cookie, asoc->peer.cookie_len, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 if (!asoc->peer.cookie)
2442 goto clean_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 }
2444
2445 /* RFC 2960 7.2.1 The initial value of ssthresh MAY be arbitrarily
2446 * high (for example, implementations MAY use the size of the receiver
2447 * advertised window).
2448 */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002449 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
2450 transports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 transport->ssthresh = asoc->peer.i.a_rwnd;
2452 }
2453
2454 /* Set up the TSN tracking pieces. */
Vlad Yasevich8e1ee182008-10-08 14:18:39 -07002455 if (!sctp_tsnmap_init(&asoc->peer.tsn_map, SCTP_TSN_MAP_INITIAL,
2456 asoc->peer.i.initial_tsn, gfp))
2457 goto clean_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
2459 /* RFC 2960 6.5 Stream Identifier and Stream Sequence Number
2460 *
2461 * The stream sequence number in all the streams shall start
2462 * from 0 when the association is established. Also, when the
2463 * stream sequence number reaches the value 65535 the next
2464 * stream sequence number shall be set to 0.
2465 */
2466
Frank Filz3f7a87d2005-06-20 13:14:57 -07002467 /* Allocate storage for the negotiated streams if it is not a temporary
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002468 * association.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 */
2470 if (!asoc->temp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 int error;
2472
2473 asoc->ssnmap = sctp_ssnmap_new(asoc->c.sinit_max_instreams,
2474 asoc->c.sinit_num_ostreams, gfp);
2475 if (!asoc->ssnmap)
2476 goto clean_up;
2477
Vlad Yasevich07d93962007-05-04 13:55:27 -07002478 error = sctp_assoc_set_id(asoc, gfp);
2479 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 goto clean_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 }
2482
2483 /* ADDIP Section 4.1 ASCONF Chunk Procedures
2484 *
2485 * When an endpoint has an ASCONF signaled change to be sent to the
2486 * remote endpoint it should do the following:
2487 * ...
2488 * A2) A serial number should be assigned to the Chunk. The serial
2489 * number should be a monotonically increasing number. All serial
2490 * numbers are defined to be initialized at the start of the
2491 * association to the same value as the Initial TSN.
2492 */
2493 asoc->peer.addip_serial = asoc->peer.i.initial_tsn - 1;
2494 return 1;
2495
2496clean_up:
2497 /* Release the transport structures. */
2498 list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
2499 transport = list_entry(pos, struct sctp_transport, transports);
Vlad Yasevichadd52372008-09-18 16:28:27 -07002500 if (transport->state != SCTP_ACTIVE)
2501 sctp_assoc_rm_peer(asoc, transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07002503
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504nomem:
2505 return 0;
2506}
2507
2508
2509/* Update asoc with the option described in param.
2510 *
2511 * RFC2960 3.3.2.1 Optional/Variable Length Parameters in INIT
2512 *
2513 * asoc is the association to update.
2514 * param is the variable length parameter to use for update.
2515 * cid tells us if this is an INIT, INIT ACK or COOKIE ECHO.
2516 * If the current packet is an INIT we want to minimize the amount of
2517 * work we do. In particular, we should not build transport
2518 * structures for the addresses.
2519 */
2520static int sctp_process_param(struct sctp_association *asoc,
2521 union sctp_params param,
2522 const union sctp_addr *peer_addr,
Al Virodd0fc662005-10-07 07:46:04 +01002523 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524{
Eric W. Biedermane7ff4a72012-08-07 07:27:02 +00002525 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 union sctp_addr addr;
2527 int i;
2528 __u16 sat;
2529 int retval = 1;
2530 sctp_scope_t scope;
Arnd Bergmann3ef0a252015-09-30 13:26:40 +02002531 u32 stale;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 struct sctp_af *af;
Vlad Yasevichd6de3092007-12-20 14:10:00 -08002533 union sctp_addr_param *addr_param;
2534 struct sctp_transport *t;
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002535 struct sctp_endpoint *ep = asoc->ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
2537 /* We maintain all INIT parameters in network byte order all the
2538 * time. This allows us to not worry about whether the parameters
2539 * came from a fresh INIT, and INIT ACK, or were stored in a cookie.
2540 */
2541 switch (param.p->type) {
2542 case SCTP_PARAM_IPV6_ADDRESS:
2543 if (PF_INET6 != asoc->base.sk->sk_family)
2544 break;
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07002545 goto do_addr_param;
2546
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 case SCTP_PARAM_IPV4_ADDRESS:
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07002548 /* v4 addresses are not allowed on v6-only socket */
2549 if (ipv6_only_sock(asoc->base.sk))
2550 break;
2551do_addr_param:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 af = sctp_get_af_specific(param_type2af(param.p->type));
Al Virodd86d132006-11-20 17:11:13 -08002553 af->from_addr_param(&addr, param.addr, htons(asoc->peer.port), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 scope = sctp_scope(peer_addr);
Eric W. Biedermane7ff4a72012-08-07 07:27:02 +00002555 if (sctp_in_scope(net, &addr, scope))
Al Virodd86d132006-11-20 17:11:13 -08002556 if (!sctp_assoc_add_peer(asoc, &addr, gfp, SCTP_UNCONFIRMED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 return 0;
2558 break;
2559
2560 case SCTP_PARAM_COOKIE_PRESERVATIVE:
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002561 if (!net->sctp.cookie_preserve_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 break;
2563
2564 stale = ntohl(param.life->lifespan_increment);
2565
2566 /* Suggested Cookie Life span increment's unit is msec,
2567 * (1/1000sec).
2568 */
Daniel Borkmann52db8822013-06-25 18:17:27 +02002569 asoc->cookie_life = ktime_add_ms(asoc->cookie_life, stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 break;
2571
2572 case SCTP_PARAM_HOST_NAME_ADDRESS:
Daniel Borkmannbb333812013-06-28 19:49:40 +02002573 pr_debug("%s: unimplemented SCTP_HOST_NAME_ADDRESS\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 break;
2575
2576 case SCTP_PARAM_SUPPORTED_ADDRESS_TYPES:
2577 /* Turn off the default values first so we'll know which
2578 * ones are really set by the peer.
2579 */
2580 asoc->peer.ipv4_address = 0;
2581 asoc->peer.ipv6_address = 0;
2582
Gui Jianfeng140ee962008-03-05 13:43:32 -08002583 /* Assume that peer supports the address family
2584 * by which it sends a packet.
2585 */
2586 if (peer_addr->sa.sa_family == AF_INET6)
2587 asoc->peer.ipv6_address = 1;
2588 else if (peer_addr->sa.sa_family == AF_INET)
2589 asoc->peer.ipv4_address = 1;
2590
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 /* Cycle through address types; avoid divide by 0. */
2592 sat = ntohs(param.p->length) - sizeof(sctp_paramhdr_t);
2593 if (sat)
2594 sat /= sizeof(__u16);
2595
2596 for (i = 0; i < sat; ++i) {
2597 switch (param.sat->types[i]) {
2598 case SCTP_PARAM_IPV4_ADDRESS:
2599 asoc->peer.ipv4_address = 1;
2600 break;
2601
2602 case SCTP_PARAM_IPV6_ADDRESS:
Wei Yongjun6e40a912008-05-09 15:11:17 -07002603 if (PF_INET6 == asoc->base.sk->sk_family)
2604 asoc->peer.ipv6_address = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 break;
2606
2607 case SCTP_PARAM_HOST_NAME_ADDRESS:
2608 asoc->peer.hostname_address = 1;
2609 break;
2610
2611 default: /* Just ignore anything else. */
2612 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 }
2615 break;
2616
2617 case SCTP_PARAM_STATE_COOKIE:
2618 asoc->peer.cookie_len =
2619 ntohs(param.p->length) - sizeof(sctp_paramhdr_t);
2620 asoc->peer.cookie = param.cookie->body;
2621 break;
2622
2623 case SCTP_PARAM_HEARTBEAT_INFO:
2624 /* Would be odd to receive, but it causes no problems. */
2625 break;
2626
2627 case SCTP_PARAM_UNRECOGNIZED_PARAMETERS:
2628 /* Rejected during verify stage. */
2629 break;
2630
2631 case SCTP_PARAM_ECN_CAPABLE:
2632 asoc->peer.ecn_capable = 1;
2633 break;
2634
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08002635 case SCTP_PARAM_ADAPTATION_LAYER_IND:
Vlad Yaseviche69c4e02008-09-15 16:29:49 -04002636 asoc->peer.adaptation_ind = ntohl(param.aind->adaptation_ind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 break;
2638
Vlad Yasevichd6de3092007-12-20 14:10:00 -08002639 case SCTP_PARAM_SET_PRIMARY:
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002640 if (!net->sctp.addip_enable)
Vlad Yasevich0ef46e22008-09-18 16:27:38 -07002641 goto fall_through;
2642
Vlad Yasevichd6de3092007-12-20 14:10:00 -08002643 addr_param = param.v + sizeof(sctp_addip_param_t);
2644
Saran Maruti Ramanaracfbf6542015-01-29 11:05:58 +01002645 af = sctp_get_af_specific(param_type2af(addr_param->p.type));
Daniel Borkmanne40607c2014-11-10 17:54:26 +01002646 if (af == NULL)
2647 break;
2648
Vlad Yasevichd6de3092007-12-20 14:10:00 -08002649 af->from_addr_param(&addr, addr_param,
2650 htons(asoc->peer.port), 0);
2651
2652 /* if the address is invalid, we can't process it.
2653 * XXX: see spec for what to do.
2654 */
2655 if (!af->addr_valid(&addr, NULL, NULL))
2656 break;
2657
2658 t = sctp_assoc_lookup_paddr(asoc, &addr);
2659 if (!t)
2660 break;
2661
2662 sctp_assoc_set_primary(asoc, t);
2663 break;
2664
Vlad Yasevich131a47e2007-09-16 15:53:56 -07002665 case SCTP_PARAM_SUPPORTED_EXT:
2666 sctp_process_ext_param(asoc, param);
2667 break;
2668
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 case SCTP_PARAM_FWD_TSN_SUPPORT:
Xin Long28aa4c22016-07-09 19:47:40 +08002670 if (asoc->prsctp_enable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 asoc->peer.prsctp_capable = 1;
2672 break;
2673 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002674 /* Fall Through */
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002675 goto fall_through;
2676
2677 case SCTP_PARAM_RANDOM:
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002678 if (!ep->auth_enable)
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002679 goto fall_through;
2680
2681 /* Save peer's random parameter */
2682 asoc->peer.peer_random = kmemdup(param.p,
2683 ntohs(param.p->length), gfp);
2684 if (!asoc->peer.peer_random) {
2685 retval = 0;
2686 break;
2687 }
2688 break;
2689
2690 case SCTP_PARAM_HMAC_ALGO:
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002691 if (!ep->auth_enable)
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002692 goto fall_through;
2693
2694 /* Save peer's HMAC list */
2695 asoc->peer.peer_hmacs = kmemdup(param.p,
2696 ntohs(param.p->length), gfp);
2697 if (!asoc->peer.peer_hmacs) {
2698 retval = 0;
2699 break;
2700 }
2701
2702 /* Set the default HMAC the peer requested*/
2703 sctp_auth_asoc_set_default_hmac(asoc, param.hmac_algo);
2704 break;
2705
2706 case SCTP_PARAM_CHUNKS:
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002707 if (!ep->auth_enable)
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002708 goto fall_through;
2709
2710 asoc->peer.peer_chunks = kmemdup(param.p,
2711 ntohs(param.p->length), gfp);
2712 if (!asoc->peer.peer_chunks)
2713 retval = 0;
2714 break;
2715fall_through:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 default:
2717 /* Any unrecognized parameters should have been caught
2718 * and handled by sctp_verify_param() which should be
2719 * called prior to this routine. Simply log the error
2720 * here.
2721 */
Daniel Borkmannbb333812013-06-28 19:49:40 +02002722 pr_debug("%s: ignoring param:%d for association:%p.\n",
2723 __func__, ntohs(param.p->type), asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
2727 return retval;
2728}
2729
2730/* Select a new verification tag. */
2731__u32 sctp_generate_tag(const struct sctp_endpoint *ep)
2732{
2733 /* I believe that this random number generator complies with RFC1750.
2734 * A tag of 0 is reserved for special cases (e.g. INIT).
2735 */
2736 __u32 x;
2737
2738 do {
2739 get_random_bytes(&x, sizeof(__u32));
2740 } while (x == 0);
2741
2742 return x;
2743}
2744
2745/* Select an initial TSN to send during startup. */
2746__u32 sctp_generate_tsn(const struct sctp_endpoint *ep)
2747{
2748 __u32 retval;
2749
2750 get_random_bytes(&retval, sizeof(__u32));
2751 return retval;
2752}
2753
2754/*
2755 * ADDIP 3.1.1 Address Configuration Change Chunk (ASCONF)
2756 * 0 1 2 3
2757 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
2758 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2759 * | Type = 0xC1 | Chunk Flags | Chunk Length |
2760 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2761 * | Serial Number |
2762 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2763 * | Address Parameter |
2764 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2765 * | ASCONF Parameter #1 |
2766 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2767 * \ \
2768 * / .... /
2769 * \ \
2770 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2771 * | ASCONF Parameter #N |
2772 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2773 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002774 * Address Parameter and other parameter will not be wrapped in this function
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 */
2776static struct sctp_chunk *sctp_make_asconf(struct sctp_association *asoc,
2777 union sctp_addr *addr,
2778 int vparam_len)
2779{
2780 sctp_addiphdr_t asconf;
2781 struct sctp_chunk *retval;
2782 int length = sizeof(asconf) + vparam_len;
2783 union sctp_addr_param addrparam;
2784 int addrlen;
2785 struct sctp_af *af = sctp_get_af_specific(addr->v4.sin_family);
2786
2787 addrlen = af->to_addr_param(addr, &addrparam);
2788 if (!addrlen)
2789 return NULL;
2790 length += addrlen;
2791
2792 /* Create the chunk. */
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03002793 retval = sctp_make_control(asoc, SCTP_CID_ASCONF, 0, length,
2794 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 if (!retval)
2796 return NULL;
2797
2798 asconf.serial = htonl(asoc->addip_serial++);
2799
2800 retval->subh.addip_hdr =
2801 sctp_addto_chunk(retval, sizeof(asconf), &asconf);
2802 retval->param_hdr.v =
2803 sctp_addto_chunk(retval, addrlen, &addrparam);
2804
2805 return retval;
2806}
2807
2808/* ADDIP
2809 * 3.2.1 Add IP Address
2810 * 0 1 2 3
2811 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
2812 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2813 * | Type = 0xC001 | Length = Variable |
2814 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2815 * | ASCONF-Request Correlation ID |
2816 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2817 * | Address Parameter |
2818 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2819 *
2820 * 3.2.2 Delete IP Address
2821 * 0 1 2 3
2822 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
2823 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2824 * | Type = 0xC002 | Length = Variable |
2825 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2826 * | ASCONF-Request Correlation ID |
2827 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2828 * | Address Parameter |
2829 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2830 *
2831 */
2832struct sctp_chunk *sctp_make_asconf_update_ip(struct sctp_association *asoc,
2833 union sctp_addr *laddr,
2834 struct sockaddr *addrs,
2835 int addrcnt,
Al Virodbc16db2006-11-20 17:01:42 -08002836 __be16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837{
2838 sctp_addip_param_t param;
2839 struct sctp_chunk *retval;
2840 union sctp_addr_param addr_param;
2841 union sctp_addr *addr;
2842 void *addr_buf;
2843 struct sctp_af *af;
2844 int paramlen = sizeof(param);
2845 int addr_param_len = 0;
2846 int totallen = 0;
2847 int i;
Michio Honda8a07eb02011-04-26 20:19:36 +09002848 int del_pickup = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849
2850 /* Get total length of all the address parameters. */
2851 addr_buf = addrs;
2852 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +00002853 addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 af = sctp_get_af_specific(addr->v4.sin_family);
2855 addr_param_len = af->to_addr_param(addr, &addr_param);
2856
2857 totallen += paramlen;
2858 totallen += addr_param_len;
2859
2860 addr_buf += af->sockaddr_len;
Michio Honda8a07eb02011-04-26 20:19:36 +09002861 if (asoc->asconf_addr_del_pending && !del_pickup) {
2862 /* reuse the parameter length from the same scope one */
2863 totallen += paramlen;
2864 totallen += addr_param_len;
2865 del_pickup = 1;
Daniel Borkmannbb333812013-06-28 19:49:40 +02002866
2867 pr_debug("%s: picked same-scope del_pending addr, "
2868 "totallen for all addresses is %d\n",
2869 __func__, totallen);
Michio Honda8a07eb02011-04-26 20:19:36 +09002870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 }
2872
2873 /* Create an asconf chunk with the required length. */
2874 retval = sctp_make_asconf(asoc, laddr, totallen);
2875 if (!retval)
2876 return NULL;
2877
2878 /* Add the address parameters to the asconf chunk. */
2879 addr_buf = addrs;
2880 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +00002881 addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 af = sctp_get_af_specific(addr->v4.sin_family);
2883 addr_param_len = af->to_addr_param(addr, &addr_param);
2884 param.param_hdr.type = flags;
2885 param.param_hdr.length = htons(paramlen + addr_param_len);
2886 param.crr_id = i;
2887
2888 sctp_addto_chunk(retval, paramlen, &param);
2889 sctp_addto_chunk(retval, addr_param_len, &addr_param);
2890
2891 addr_buf += af->sockaddr_len;
2892 }
Michio Honda8a07eb02011-04-26 20:19:36 +09002893 if (flags == SCTP_PARAM_ADD_IP && del_pickup) {
2894 addr = asoc->asconf_addr_del_pending;
2895 af = sctp_get_af_specific(addr->v4.sin_family);
2896 addr_param_len = af->to_addr_param(addr, &addr_param);
2897 param.param_hdr.type = SCTP_PARAM_DEL_IP;
2898 param.param_hdr.length = htons(paramlen + addr_param_len);
2899 param.crr_id = i;
2900
2901 sctp_addto_chunk(retval, paramlen, &param);
2902 sctp_addto_chunk(retval, addr_param_len, &addr_param);
2903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 return retval;
2905}
2906
2907/* ADDIP
2908 * 3.2.4 Set Primary IP Address
2909 * 0 1 2 3
2910 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
2911 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2912 * | Type =0xC004 | Length = Variable |
2913 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2914 * | ASCONF-Request Correlation ID |
2915 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2916 * | Address Parameter |
2917 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2918 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002919 * Create an ASCONF chunk with Set Primary IP address parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 */
2921struct sctp_chunk *sctp_make_asconf_set_prim(struct sctp_association *asoc,
2922 union sctp_addr *addr)
2923{
2924 sctp_addip_param_t param;
2925 struct sctp_chunk *retval;
2926 int len = sizeof(param);
2927 union sctp_addr_param addrparam;
2928 int addrlen;
2929 struct sctp_af *af = sctp_get_af_specific(addr->v4.sin_family);
2930
2931 addrlen = af->to_addr_param(addr, &addrparam);
2932 if (!addrlen)
2933 return NULL;
2934 len += addrlen;
2935
2936 /* Create the chunk and make asconf header. */
2937 retval = sctp_make_asconf(asoc, addr, len);
2938 if (!retval)
2939 return NULL;
2940
2941 param.param_hdr.type = SCTP_PARAM_SET_PRIMARY;
2942 param.param_hdr.length = htons(len);
2943 param.crr_id = 0;
2944
2945 sctp_addto_chunk(retval, sizeof(param), &param);
2946 sctp_addto_chunk(retval, addrlen, &addrparam);
2947
2948 return retval;
2949}
2950
2951/* ADDIP 3.1.2 Address Configuration Acknowledgement Chunk (ASCONF-ACK)
2952 * 0 1 2 3
2953 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
2954 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2955 * | Type = 0x80 | Chunk Flags | Chunk Length |
2956 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2957 * | Serial Number |
2958 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2959 * | ASCONF Parameter Response#1 |
2960 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2961 * \ \
2962 * / .... /
2963 * \ \
2964 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2965 * | ASCONF Parameter Response#N |
2966 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2967 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002968 * Create an ASCONF_ACK chunk with enough space for the parameter responses.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 */
2970static struct sctp_chunk *sctp_make_asconf_ack(const struct sctp_association *asoc,
2971 __u32 serial, int vparam_len)
2972{
2973 sctp_addiphdr_t asconf;
2974 struct sctp_chunk *retval;
2975 int length = sizeof(asconf) + vparam_len;
2976
2977 /* Create the chunk. */
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03002978 retval = sctp_make_control(asoc, SCTP_CID_ASCONF_ACK, 0, length,
2979 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 if (!retval)
2981 return NULL;
2982
2983 asconf.serial = htonl(serial);
2984
2985 retval->subh.addip_hdr =
2986 sctp_addto_chunk(retval, sizeof(asconf), &asconf);
2987
2988 return retval;
2989}
2990
2991/* Add response parameters to an ASCONF_ACK chunk. */
Al Viro9f81bcd2006-11-20 17:26:34 -08002992static void sctp_add_asconf_response(struct sctp_chunk *chunk, __be32 crr_id,
Al Virodbc16db2006-11-20 17:01:42 -08002993 __be16 err_code, sctp_addip_param_t *asconf_param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994{
2995 sctp_addip_param_t ack_param;
2996 sctp_errhdr_t err_param;
2997 int asconf_param_len = 0;
2998 int err_param_len = 0;
Al Virodbc16db2006-11-20 17:01:42 -08002999 __be16 response_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
3001 if (SCTP_ERROR_NO_ERROR == err_code) {
3002 response_type = SCTP_PARAM_SUCCESS_REPORT;
3003 } else {
3004 response_type = SCTP_PARAM_ERR_CAUSE;
3005 err_param_len = sizeof(err_param);
3006 if (asconf_param)
3007 asconf_param_len =
3008 ntohs(asconf_param->param_hdr.length);
3009 }
3010
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003011 /* Add Success Indication or Error Cause Indication parameter. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 ack_param.param_hdr.type = response_type;
3013 ack_param.param_hdr.length = htons(sizeof(ack_param) +
3014 err_param_len +
3015 asconf_param_len);
3016 ack_param.crr_id = crr_id;
3017 sctp_addto_chunk(chunk, sizeof(ack_param), &ack_param);
3018
3019 if (SCTP_ERROR_NO_ERROR == err_code)
3020 return;
3021
3022 /* Add Error Cause parameter. */
3023 err_param.cause = err_code;
3024 err_param.length = htons(err_param_len + asconf_param_len);
3025 sctp_addto_chunk(chunk, err_param_len, &err_param);
3026
3027 /* Add the failed TLV copied from ASCONF chunk. */
3028 if (asconf_param)
3029 sctp_addto_chunk(chunk, asconf_param_len, asconf_param);
3030}
3031
3032/* Process a asconf parameter. */
Al Virodbc16db2006-11-20 17:01:42 -08003033static __be16 sctp_process_asconf_param(struct sctp_association *asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 struct sctp_chunk *asconf,
3035 sctp_addip_param_t *asconf_param)
3036{
3037 struct sctp_transport *peer;
3038 struct sctp_af *af;
3039 union sctp_addr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 union sctp_addr_param *addr_param;
Al Viro5f242a12006-11-20 17:05:23 -08003041
Joe Perchesea110732011-06-13 16:21:26 +00003042 addr_param = (void *)asconf_param + sizeof(sctp_addip_param_t);
Patrick McHardyc1cc6782008-05-13 23:25:00 -07003043
Wei Yongjun44e65c12009-06-16 14:48:24 +08003044 if (asconf_param->param_hdr.type != SCTP_PARAM_ADD_IP &&
3045 asconf_param->param_hdr.type != SCTP_PARAM_DEL_IP &&
3046 asconf_param->param_hdr.type != SCTP_PARAM_SET_PRIMARY)
3047 return SCTP_ERROR_UNKNOWN_PARAM;
3048
Shan Wei6a435732011-04-18 19:11:47 +00003049 switch (addr_param->p.type) {
Wei Yongjunc4492582008-05-09 15:11:53 -07003050 case SCTP_PARAM_IPV6_ADDRESS:
3051 if (!asoc->peer.ipv6_address)
Wei Yongjun945e5ab2009-04-16 14:21:02 +08003052 return SCTP_ERROR_DNS_FAILED;
Wei Yongjunc4492582008-05-09 15:11:53 -07003053 break;
3054 case SCTP_PARAM_IPV4_ADDRESS:
3055 if (!asoc->peer.ipv4_address)
Wei Yongjun945e5ab2009-04-16 14:21:02 +08003056 return SCTP_ERROR_DNS_FAILED;
Wei Yongjunc4492582008-05-09 15:11:53 -07003057 break;
3058 default:
Wei Yongjun945e5ab2009-04-16 14:21:02 +08003059 return SCTP_ERROR_DNS_FAILED;
Wei Yongjunc4492582008-05-09 15:11:53 -07003060 }
3061
Shan Wei6a435732011-04-18 19:11:47 +00003062 af = sctp_get_af_specific(param_type2af(addr_param->p.type));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 if (unlikely(!af))
Wei Yongjun945e5ab2009-04-16 14:21:02 +08003064 return SCTP_ERROR_DNS_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
Al Virodd86d132006-11-20 17:11:13 -08003066 af->from_addr_param(&addr, addr_param, htons(asoc->peer.port), 0);
Vlad Yasevich42e30bf2007-12-20 14:08:56 -08003067
3068 /* ADDIP 4.2.1 This parameter MUST NOT contain a broadcast
3069 * or multicast address.
3070 * (note: wildcard is permitted and requires special handling so
3071 * make sure we check for that)
3072 */
3073 if (!af->is_any(&addr) && !af->addr_valid(&addr, NULL, asconf->skb))
Wei Yongjun945e5ab2009-04-16 14:21:02 +08003074 return SCTP_ERROR_DNS_FAILED;
Vlad Yasevich42e30bf2007-12-20 14:08:56 -08003075
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 switch (asconf_param->param_hdr.type) {
3077 case SCTP_PARAM_ADD_IP:
Vlad Yasevich42e30bf2007-12-20 14:08:56 -08003078 /* Section 4.2.1:
3079 * If the address 0.0.0.0 or ::0 is provided, the source
3080 * address of the packet MUST be added.
3081 */
3082 if (af->is_any(&addr))
3083 memcpy(&addr, &asconf->source, sizeof(addr));
3084
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 /* ADDIP 4.3 D9) If an endpoint receives an ADD IP address
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003086 * request and does not have the local resources to add this
3087 * new address to the association, it MUST return an Error
3088 * Cause TLV set to the new error code 'Operation Refused
3089 * Due to Resource Shortage'.
3090 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091
Al Virodd86d132006-11-20 17:11:13 -08003092 peer = sctp_assoc_add_peer(asoc, &addr, GFP_ATOMIC, SCTP_UNCONFIRMED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 if (!peer)
3094 return SCTP_ERROR_RSRC_LOW;
3095
3096 /* Start the heartbeat timer. */
Marcelo Ricardo Leitnerba6f5e32016-04-06 15:15:19 -03003097 sctp_transport_reset_hb_timer(peer);
Michio Honda6af29cc2011-06-16 17:14:34 +09003098 asoc->new_transport = peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 break;
3100 case SCTP_PARAM_DEL_IP:
3101 /* ADDIP 4.3 D7) If a request is received to delete the
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003102 * last remaining IP address of a peer endpoint, the receiver
3103 * MUST send an Error Cause TLV with the error cause set to the
3104 * new error code 'Request to Delete Last Remaining IP Address'.
3105 */
Vlad Yasevich42e30bf2007-12-20 14:08:56 -08003106 if (asoc->peer.transport_count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 return SCTP_ERROR_DEL_LAST_IP;
3108
3109 /* ADDIP 4.3 D8) If a request is received to delete an IP
3110 * address which is also the source address of the IP packet
3111 * which contained the ASCONF chunk, the receiver MUST reject
3112 * this request. To reject the request the receiver MUST send
3113 * an Error Cause TLV set to the new error code 'Request to
3114 * Delete Source IP Address'
3115 */
Michio Hondab1364102011-04-26 17:37:02 +09003116 if (sctp_cmp_addr_exact(&asconf->source, &addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 return SCTP_ERROR_DEL_SRC_IP;
3118
Vlad Yasevich42e30bf2007-12-20 14:08:56 -08003119 /* Section 4.2.2
3120 * If the address 0.0.0.0 or ::0 is provided, all
3121 * addresses of the peer except the source address of the
3122 * packet MUST be deleted.
3123 */
3124 if (af->is_any(&addr)) {
3125 sctp_assoc_set_primary(asoc, asconf->transport);
3126 sctp_assoc_del_nonprimary_peers(asoc,
3127 asconf->transport);
lucien7c5a9462015-08-28 17:45:58 +08003128 return SCTP_ERROR_NO_ERROR;
3129 }
3130
3131 /* If the address is not part of the association, the
3132 * ASCONF-ACK with Error Cause Indication Parameter
3133 * which including cause of Unresolvable Address should
3134 * be sent.
3135 */
3136 peer = sctp_assoc_lookup_paddr(asoc, &addr);
3137 if (!peer)
3138 return SCTP_ERROR_DNS_FAILED;
3139
3140 sctp_assoc_rm_peer(asoc, peer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 break;
3142 case SCTP_PARAM_SET_PRIMARY:
Vlad Yasevich42e30bf2007-12-20 14:08:56 -08003143 /* ADDIP Section 4.2.4
3144 * If the address 0.0.0.0 or ::0 is provided, the receiver
3145 * MAY mark the source address of the packet as its
3146 * primary.
3147 */
3148 if (af->is_any(&addr))
3149 memcpy(&addr.v4, sctp_source(asconf), sizeof(addr));
3150
Al Virodd86d132006-11-20 17:11:13 -08003151 peer = sctp_assoc_lookup_paddr(asoc, &addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 if (!peer)
Wei Yongjun945e5ab2009-04-16 14:21:02 +08003153 return SCTP_ERROR_DNS_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154
3155 sctp_assoc_set_primary(asoc, peer);
3156 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 }
3158
3159 return SCTP_ERROR_NO_ERROR;
3160}
3161
Daniel Borkmann9de79222014-10-09 22:55:31 +02003162/* Verify the ASCONF packet before we process it. */
3163bool sctp_verify_asconf(const struct sctp_association *asoc,
3164 struct sctp_chunk *chunk, bool addr_param_needed,
3165 struct sctp_paramhdr **errp)
3166{
3167 sctp_addip_chunk_t *addip = (sctp_addip_chunk_t *) chunk->chunk_hdr;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003168 union sctp_params param;
Daniel Borkmann9de79222014-10-09 22:55:31 +02003169 bool addr_param_seen = false;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003170
Daniel Borkmann9de79222014-10-09 22:55:31 +02003171 sctp_walk_params(param, addip, addip_hdr.params) {
3172 size_t length = ntohs(param.p->length);
3173
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003174 *errp = param.p;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003175 switch (param.p->type) {
Daniel Borkmann9de79222014-10-09 22:55:31 +02003176 case SCTP_PARAM_ERR_CAUSE:
3177 break;
3178 case SCTP_PARAM_IPV4_ADDRESS:
3179 if (length != sizeof(sctp_ipv4addr_param_t))
3180 return false;
lucience7b4cc2015-08-27 16:26:34 +08003181 /* ensure there is only one addr param and it's in the
3182 * beginning of addip_hdr params, or we reject it.
3183 */
3184 if (param.v != addip->addip_hdr.params)
3185 return false;
Daniel Borkmann9de79222014-10-09 22:55:31 +02003186 addr_param_seen = true;
3187 break;
3188 case SCTP_PARAM_IPV6_ADDRESS:
3189 if (length != sizeof(sctp_ipv6addr_param_t))
3190 return false;
lucience7b4cc2015-08-27 16:26:34 +08003191 if (param.v != addip->addip_hdr.params)
3192 return false;
Daniel Borkmann9de79222014-10-09 22:55:31 +02003193 addr_param_seen = true;
3194 break;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003195 case SCTP_PARAM_ADD_IP:
3196 case SCTP_PARAM_DEL_IP:
3197 case SCTP_PARAM_SET_PRIMARY:
Daniel Borkmann9de79222014-10-09 22:55:31 +02003198 /* In ASCONF chunks, these need to be first. */
3199 if (addr_param_needed && !addr_param_seen)
3200 return false;
3201 length = ntohs(param.addip->param_hdr.length);
3202 if (length < sizeof(sctp_addip_param_t) +
3203 sizeof(sctp_paramhdr_t))
3204 return false;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003205 break;
3206 case SCTP_PARAM_SUCCESS_REPORT:
3207 case SCTP_PARAM_ADAPTATION_LAYER_IND:
3208 if (length != sizeof(sctp_addip_param_t))
Daniel Borkmann9de79222014-10-09 22:55:31 +02003209 return false;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003210 break;
3211 default:
Daniel Borkmann9de79222014-10-09 22:55:31 +02003212 /* This is unkown to us, reject! */
3213 return false;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003214 }
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003215 }
3216
Daniel Borkmann9de79222014-10-09 22:55:31 +02003217 /* Remaining sanity checks. */
3218 if (addr_param_needed && !addr_param_seen)
3219 return false;
3220 if (!addr_param_needed && addr_param_seen)
3221 return false;
3222 if (param.v != chunk->chunk_end)
3223 return false;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003224
Daniel Borkmann9de79222014-10-09 22:55:31 +02003225 return true;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003226}
3227
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003228/* Process an incoming ASCONF chunk with the next expected serial no. and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 * return an ASCONF_ACK chunk to be sent in response.
3230 */
3231struct sctp_chunk *sctp_process_asconf(struct sctp_association *asoc,
3232 struct sctp_chunk *asconf)
3233{
Daniel Borkmann9de79222014-10-09 22:55:31 +02003234 sctp_addip_chunk_t *addip = (sctp_addip_chunk_t *) asconf->chunk_hdr;
3235 bool all_param_pass = true;
3236 union sctp_params param;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 sctp_addiphdr_t *hdr;
3238 union sctp_addr_param *addr_param;
3239 sctp_addip_param_t *asconf_param;
3240 struct sctp_chunk *asconf_ack;
Al Virodbc16db2006-11-20 17:01:42 -08003241 __be16 err_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 int length = 0;
Wei Yongjunf3830cc2007-10-15 11:51:03 +09003243 int chunk_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 __u32 serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245
Wei Yongjunf3830cc2007-10-15 11:51:03 +09003246 chunk_len = ntohs(asconf->chunk_hdr->length) - sizeof(sctp_chunkhdr_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 hdr = (sctp_addiphdr_t *)asconf->skb->data;
3248 serial = ntohl(hdr->serial);
3249
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003250 /* Skip the addiphdr and store a pointer to address parameter. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 length = sizeof(sctp_addiphdr_t);
3252 addr_param = (union sctp_addr_param *)(asconf->skb->data + length);
3253 chunk_len -= length;
3254
3255 /* Skip the address parameter and store a pointer to the first
Joe Perches7aa1b542007-12-20 14:03:52 -08003256 * asconf parameter.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003257 */
Shan Wei6a435732011-04-18 19:11:47 +00003258 length = ntohs(addr_param->p.length);
Joe Perchesea110732011-06-13 16:21:26 +00003259 asconf_param = (void *)addr_param + length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 chunk_len -= length;
3261
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003262 /* create an ASCONF_ACK chunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 * Based on the definitions of parameters, we know that the size of
Wei Yongjun2cab86b2011-03-31 23:42:55 +00003264 * ASCONF_ACK parameters are less than or equal to the fourfold of ASCONF
Joe Perches7aa1b542007-12-20 14:03:52 -08003265 * parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 */
Wei Yongjun2cab86b2011-03-31 23:42:55 +00003267 asconf_ack = sctp_make_asconf_ack(asoc, serial, chunk_len * 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 if (!asconf_ack)
3269 goto done;
3270
3271 /* Process the TLVs contained within the ASCONF chunk. */
Daniel Borkmann9de79222014-10-09 22:55:31 +02003272 sctp_walk_params(param, addip, addip_hdr.params) {
3273 /* Skip preceeding address parameters. */
3274 if (param.p->type == SCTP_PARAM_IPV4_ADDRESS ||
3275 param.p->type == SCTP_PARAM_IPV6_ADDRESS)
3276 continue;
3277
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 err_code = sctp_process_asconf_param(asoc, asconf,
Daniel Borkmann9de79222014-10-09 22:55:31 +02003279 param.addip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 /* ADDIP 4.1 A7)
3281 * If an error response is received for a TLV parameter,
3282 * all TLVs with no response before the failed TLV are
3283 * considered successful if not reported. All TLVs after
3284 * the failed response are considered unsuccessful unless
3285 * a specific success indication is present for the parameter.
3286 */
Daniel Borkmann9de79222014-10-09 22:55:31 +02003287 if (err_code != SCTP_ERROR_NO_ERROR)
3288 all_param_pass = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 if (!all_param_pass)
Daniel Borkmann9de79222014-10-09 22:55:31 +02003290 sctp_add_asconf_response(asconf_ack, param.addip->crr_id,
3291 err_code, param.addip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292
3293 /* ADDIP 4.3 D11) When an endpoint receiving an ASCONF to add
3294 * an IP address sends an 'Out of Resource' in its response, it
3295 * MUST also fail any subsequent add or delete requests bundled
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003296 * in the ASCONF.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 */
Daniel Borkmann9de79222014-10-09 22:55:31 +02003298 if (err_code == SCTP_ERROR_RSRC_LOW)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301done:
3302 asoc->peer.addip_serial++;
3303
3304 /* If we are sending a new ASCONF_ACK hold a reference to it in assoc
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003305 * after freeing the reference to old asconf ack if any.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 */
3307 if (asconf_ack) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 sctp_chunk_hold(asconf_ack);
Vlad Yasevicha08de642007-12-20 14:11:47 -08003309 list_add_tail(&asconf_ack->transmitted_list,
3310 &asoc->asconf_ack_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 }
3312
3313 return asconf_ack;
3314}
3315
3316/* Process a asconf parameter that is successfully acked. */
Wei Yongjun425e0f62009-06-16 14:47:30 +08003317static void sctp_asconf_param_success(struct sctp_association *asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 sctp_addip_param_t *asconf_param)
3319{
3320 struct sctp_af *af;
3321 union sctp_addr addr;
3322 struct sctp_bind_addr *bp = &asoc->base.bind_addr;
3323 union sctp_addr_param *addr_param;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 struct sctp_transport *transport;
Sridhar Samudraladc022a92006-07-21 14:49:25 -07003325 struct sctp_sockaddr_entry *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326
Joe Perchesea110732011-06-13 16:21:26 +00003327 addr_param = (void *)asconf_param + sizeof(sctp_addip_param_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328
3329 /* We have checked the packet before, so we do not check again. */
Shan Wei6a435732011-04-18 19:11:47 +00003330 af = sctp_get_af_specific(param_type2af(addr_param->p.type));
Al Virodd86d132006-11-20 17:11:13 -08003331 af->from_addr_param(&addr, addr_param, htons(bp->port), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
3333 switch (asconf_param->param_hdr.type) {
3334 case SCTP_PARAM_ADD_IP:
Vlad Yasevich559cf712007-09-16 16:03:28 -07003335 /* This is always done in BH context with a socket lock
3336 * held, so the list can not change.
3337 */
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -04003338 local_bh_disable();
Vlad Yasevich559cf712007-09-16 16:03:28 -07003339 list_for_each_entry(saddr, &bp->address_list, list) {
Al Virodd86d132006-11-20 17:11:13 -08003340 if (sctp_cmp_addr_exact(&saddr->a, &addr))
Vlad Yasevichf57d96b2007-12-20 14:12:24 -08003341 saddr->state = SCTP_ADDR_SRC;
Sridhar Samudraladc022a92006-07-21 14:49:25 -07003342 }
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -04003343 local_bh_enable();
Wei Yongjun3cd97492009-06-16 10:07:23 +08003344 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
3345 transports) {
Wei Yongjun3cd97492009-06-16 10:07:23 +08003346 dst_release(transport->dst);
Vlad Yasevichc6ef0062011-04-18 19:15:22 +00003347 transport->dst = NULL;
Wei Yongjun3cd97492009-06-16 10:07:23 +08003348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 break;
3350 case SCTP_PARAM_DEL_IP:
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -04003351 local_bh_disable();
Wei Yongjun425e0f62009-06-16 14:47:30 +08003352 sctp_del_bind_addr(bp, &addr);
Michio Honda8a07eb02011-04-26 20:19:36 +09003353 if (asoc->asconf_addr_del_pending != NULL &&
3354 sctp_cmp_addr_exact(asoc->asconf_addr_del_pending, &addr)) {
3355 kfree(asoc->asconf_addr_del_pending);
3356 asoc->asconf_addr_del_pending = NULL;
3357 }
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -04003358 local_bh_enable();
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07003359 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
3360 transports) {
Sridhar Samudraladc022a92006-07-21 14:49:25 -07003361 dst_release(transport->dst);
Vlad Yasevichc6ef0062011-04-18 19:15:22 +00003362 transport->dst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 }
3364 break;
3365 default:
3366 break;
3367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368}
3369
3370/* Get the corresponding ASCONF response error code from the ASCONF_ACK chunk
3371 * for the given asconf parameter. If there is no response for this parameter,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003372 * return the error code based on the third argument 'no_err'.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 * ADDIP 4.1
3374 * A7) If an error response is received for a TLV parameter, all TLVs with no
3375 * response before the failed TLV are considered successful if not reported.
3376 * All TLVs after the failed response are considered unsuccessful unless a
3377 * specific success indication is present for the parameter.
3378 */
Al Virodbc16db2006-11-20 17:01:42 -08003379static __be16 sctp_get_asconf_response(struct sctp_chunk *asconf_ack,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 sctp_addip_param_t *asconf_param,
3381 int no_err)
3382{
3383 sctp_addip_param_t *asconf_ack_param;
3384 sctp_errhdr_t *err_param;
3385 int length;
Wei Yongjunf3830cc2007-10-15 11:51:03 +09003386 int asconf_ack_len;
Al Virodbc16db2006-11-20 17:01:42 -08003387 __be16 err_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388
3389 if (no_err)
3390 err_code = SCTP_ERROR_NO_ERROR;
3391 else
3392 err_code = SCTP_ERROR_REQ_REFUSED;
3393
Wei Yongjunf3830cc2007-10-15 11:51:03 +09003394 asconf_ack_len = ntohs(asconf_ack->chunk_hdr->length) -
3395 sizeof(sctp_chunkhdr_t);
3396
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 /* Skip the addiphdr from the asconf_ack chunk and store a pointer to
3398 * the first asconf_ack parameter.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003399 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 length = sizeof(sctp_addiphdr_t);
3401 asconf_ack_param = (sctp_addip_param_t *)(asconf_ack->skb->data +
3402 length);
3403 asconf_ack_len -= length;
3404
3405 while (asconf_ack_len > 0) {
3406 if (asconf_ack_param->crr_id == asconf_param->crr_id) {
wangweidongcb3f8372013-12-23 12:16:50 +08003407 switch (asconf_ack_param->param_hdr.type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 case SCTP_PARAM_SUCCESS_REPORT:
3409 return SCTP_ERROR_NO_ERROR;
3410 case SCTP_PARAM_ERR_CAUSE:
3411 length = sizeof(sctp_addip_param_t);
Joe Perchesea110732011-06-13 16:21:26 +00003412 err_param = (void *)asconf_ack_param + length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 asconf_ack_len -= length;
3414 if (asconf_ack_len > 0)
3415 return err_param->cause;
3416 else
3417 return SCTP_ERROR_INV_PARAM;
3418 break;
3419 default:
3420 return SCTP_ERROR_INV_PARAM;
3421 }
3422 }
3423
3424 length = ntohs(asconf_ack_param->param_hdr.length);
Joe Perchesea110732011-06-13 16:21:26 +00003425 asconf_ack_param = (void *)asconf_ack_param + length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 asconf_ack_len -= length;
3427 }
3428
3429 return err_code;
3430}
3431
3432/* Process an incoming ASCONF_ACK chunk against the cached last ASCONF chunk. */
3433int sctp_process_asconf_ack(struct sctp_association *asoc,
3434 struct sctp_chunk *asconf_ack)
3435{
3436 struct sctp_chunk *asconf = asoc->addip_last_asconf;
3437 union sctp_addr_param *addr_param;
3438 sctp_addip_param_t *asconf_param;
3439 int length = 0;
3440 int asconf_len = asconf->skb->len;
3441 int all_param_pass = 0;
3442 int no_err = 1;
3443 int retval = 0;
Al Virodbc16db2006-11-20 17:01:42 -08003444 __be16 err_code = SCTP_ERROR_NO_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445
3446 /* Skip the chunkhdr and addiphdr from the last asconf sent and store
3447 * a pointer to address parameter.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003448 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 length = sizeof(sctp_addip_chunk_t);
3450 addr_param = (union sctp_addr_param *)(asconf->skb->data + length);
3451 asconf_len -= length;
3452
3453 /* Skip the address parameter in the last asconf sent and store a
Joe Perches7aa1b542007-12-20 14:03:52 -08003454 * pointer to the first asconf parameter.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003455 */
Shan Wei6a435732011-04-18 19:11:47 +00003456 length = ntohs(addr_param->p.length);
Joe Perchesea110732011-06-13 16:21:26 +00003457 asconf_param = (void *)addr_param + length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 asconf_len -= length;
3459
3460 /* ADDIP 4.1
3461 * A8) If there is no response(s) to specific TLV parameter(s), and no
3462 * failures are indicated, then all request(s) are considered
3463 * successful.
3464 */
3465 if (asconf_ack->skb->len == sizeof(sctp_addiphdr_t))
3466 all_param_pass = 1;
3467
3468 /* Process the TLVs contained in the last sent ASCONF chunk. */
3469 while (asconf_len > 0) {
3470 if (all_param_pass)
3471 err_code = SCTP_ERROR_NO_ERROR;
3472 else {
3473 err_code = sctp_get_asconf_response(asconf_ack,
3474 asconf_param,
3475 no_err);
3476 if (no_err && (SCTP_ERROR_NO_ERROR != err_code))
3477 no_err = 0;
3478 }
3479
3480 switch (err_code) {
3481 case SCTP_ERROR_NO_ERROR:
Wei Yongjun425e0f62009-06-16 14:47:30 +08003482 sctp_asconf_param_success(asoc, asconf_param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 break;
3484
3485 case SCTP_ERROR_RSRC_LOW:
3486 retval = 1;
3487 break;
3488
Wei Yongjuna987f762009-04-07 15:44:29 +08003489 case SCTP_ERROR_UNKNOWN_PARAM:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 /* Disable sending this type of asconf parameter in
3491 * future.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003492 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 asoc->peer.addip_disabled_mask |=
3494 asconf_param->param_hdr.type;
3495 break;
3496
3497 case SCTP_ERROR_REQ_REFUSED:
3498 case SCTP_ERROR_DEL_LAST_IP:
3499 case SCTP_ERROR_DEL_SRC_IP:
3500 default:
3501 break;
3502 }
3503
3504 /* Skip the processed asconf parameter and move to the next
3505 * one.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003506 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507 length = ntohs(asconf_param->param_hdr.length);
Joe Perchesea110732011-06-13 16:21:26 +00003508 asconf_param = (void *)asconf_param + length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 asconf_len -= length;
3510 }
3511
Michio Hondaddc4bbe2011-06-17 11:03:23 +09003512 if (no_err && asoc->src_out_of_asoc_ok) {
Michio Honda8a07eb02011-04-26 20:19:36 +09003513 asoc->src_out_of_asoc_ok = 0;
Michio Hondaddc4bbe2011-06-17 11:03:23 +09003514 sctp_transport_immediate_rtx(asoc->peer.primary_path);
3515 }
Michio Honda8a07eb02011-04-26 20:19:36 +09003516
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 /* Free the cached last sent asconf chunk. */
Vlad Yasevich5f9646c2008-02-05 14:23:44 -05003518 list_del_init(&asconf->transmitted_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 sctp_chunk_free(asconf);
3520 asoc->addip_last_asconf = NULL;
3521
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 return retval;
3523}
3524
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003525/* Make a FWD TSN chunk. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526struct sctp_chunk *sctp_make_fwdtsn(const struct sctp_association *asoc,
3527 __u32 new_cum_tsn, size_t nstreams,
3528 struct sctp_fwdtsn_skip *skiplist)
3529{
3530 struct sctp_chunk *retval = NULL;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003531 struct sctp_fwdtsn_hdr ftsn_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 struct sctp_fwdtsn_skip skip;
3533 size_t hint;
3534 int i;
3535
3536 hint = (nstreams + 1) * sizeof(__u32);
3537
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03003538 retval = sctp_make_control(asoc, SCTP_CID_FWD_TSN, 0, hint, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539
3540 if (!retval)
3541 return NULL;
3542
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 ftsn_hdr.new_cum_tsn = htonl(new_cum_tsn);
3544 retval->subh.fwdtsn_hdr =
3545 sctp_addto_chunk(retval, sizeof(ftsn_hdr), &ftsn_hdr);
3546
3547 for (i = 0; i < nstreams; i++) {
3548 skip.stream = skiplist[i].stream;
3549 skip.ssn = skiplist[i].ssn;
3550 sctp_addto_chunk(retval, sizeof(skip), &skip);
3551 }
3552
3553 return retval;
3554}